diff --git a/doc/contributions.txt b/doc/contributions.txt index 98c80288dad9a6478a1e9a250b8af65da5e6a484..31ea1bbc5b1f2c9930aa5a6484e2885bb5b8cabb 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -14,6 +14,8 @@ Adam Marker VWR-2755 Agathos Frascati CT-246 + CT-317 + CT-352 Aimee Trescothick VWR-1813 VWR-3321 @@ -109,6 +111,8 @@ Biancaluce Robbiani CT-229 CT-230 CT-231 + CT-321 + CT-352 Blakar Ogre VWR-418 VWR-881 @@ -129,6 +133,9 @@ Bulli Schumann CT-222 CT-223 CT-224 + CT-319 + CT-350 + CT-352 bushing Spatula VWR-119 VWR-424 @@ -179,6 +186,9 @@ Eddy Stryker EponymousDylan Ra VWR-1289 VWR-1465 +Eva Nowicka + CT-324 + CT-352 Farallon Greyskin VWR-2036 Feep Larsson @@ -248,7 +258,12 @@ Hoze Menges VWR-255 Ian Kas VWR-8780 (Russian localization) - [NO JIRA] (Ukranian localization) + [NO JIRA] (Ukranian localization) + CT-322 + CT-325 +Irene Muni + CT-324 + CT-352 Iskar Ariantho VWR-1223 VWR-11759 @@ -288,10 +303,15 @@ Lisa Lowe CT-222 CT-223 CT-224 + CT-319 Lockhart Cordoso VWR-108 maciek marksman CT-86 +Magnus Balczo + CT-138 +Malwina Dollinger + CT-138 march Korda SVC-1020 Matthew Dowd @@ -434,9 +454,12 @@ Pf Shan CT-229 CT-230 CT-231 + CT-321 princess niven VWR-5733 CT-85 + CT-320 + CT-352 Renault Clio VWR-1976 Ringo Tuxing @@ -447,6 +470,7 @@ Ringo Tuxing CT-229 CT-230 CT-231 + CT-321 Robin Cornelius VWR-2488 VWR-9557 @@ -462,6 +486,7 @@ Salahzar Stenvaag CT-229 CT-230 CT-231 + CT-321 Sammy Frederix VWR-6186 Scrippy Scofield @@ -482,6 +507,7 @@ Sergen Davies CT-229 CT-230 CT-231 + CT-321 SignpostMarv Martin VWR-153 VWR-154 @@ -540,6 +566,8 @@ Thraxis Epsilon VWR-383 tiamat bingyi CT-246 +TraductoresAnonimos Alter + CT-324 Tue Torok CT-68 CT-69 @@ -551,6 +579,7 @@ Vadim Bigbear VWR-2681 Vixen Heron VWR-2710 + CT-88 Whoops Babii VWR-631 VWR-1640 diff --git a/indra/llcharacter/lleditingmotion.cpp b/indra/llcharacter/lleditingmotion.cpp index 6907df82d448040ab00ada24e1d8590ab8a2d7cc..381d19e6142c47698e6896386a9abeb33cf6777f 100644 --- a/indra/llcharacter/lleditingmotion.cpp +++ b/indra/llcharacter/lleditingmotion.cpp @@ -187,14 +187,6 @@ BOOL LLEditingMotion::onUpdate(F32 time, U8* joint_mask) } focus_pt += mCharacter->getCharacterPosition(); - if (!llfinite(focus_pt.magVecSquared())) - { - LLVector3 tmp = mCharacter->getCharacterPosition() ; - LL_WARNS_ONCE("Animation") << "Non finite focus point in editing motion. focus point: " << focus_pt << " and character position: " << - tmp << " and pointAtPt: " << pointAtPt << - " - ignoring anim" << LL_ENDL; - return FALSE; - } // propagate joint positions to kinematic chain mParentJoint.setPosition( mParentState->getJoint()->getWorldPosition() ); diff --git a/indra/llcommon/llapr.cpp b/indra/llcommon/llapr.cpp index 82530b14891efccd263a0d4d71fbc0878074d007..669afc53303121b99d9bec164ffc7f8d5f57bdc7 100644 --- a/indra/llcommon/llapr.cpp +++ b/indra/llcommon/llapr.cpp @@ -38,6 +38,7 @@ apr_pool_t *gAPRPoolp = NULL; // Global APR memory pool LLVolatileAPRPool *LLAPRFile::sAPRFilePoolp = NULL ; //global volatile APR memory pool. apr_thread_mutex_t *gLogMutexp = NULL; +apr_thread_mutex_t *gCallStacksLogMutexp = NULL; const S32 FULL_VOLATILE_APR_POOL = 1024 ; //number of references to LLVolatileAPRPool @@ -51,6 +52,7 @@ void ll_init_apr() // Initialize the logging mutex apr_thread_mutex_create(&gLogMutexp, APR_THREAD_MUTEX_UNNESTED, gAPRPoolp); + apr_thread_mutex_create(&gCallStacksLogMutexp, APR_THREAD_MUTEX_UNNESTED, gAPRPoolp); } if(!LLAPRFile::sAPRFilePoolp) @@ -72,6 +74,14 @@ void ll_cleanup_apr() apr_thread_mutex_destroy(gLogMutexp); gLogMutexp = NULL; } + if (gCallStacksLogMutexp) + { + // Clean up the logging mutex + + // All other threads NEED to be done before we clean up APR, so this is okay. + apr_thread_mutex_destroy(gCallStacksLogMutexp); + gCallStacksLogMutexp = NULL; + } if (gAPRPoolp) { apr_pool_destroy(gAPRPoolp); diff --git a/indra/llcommon/llapr.h b/indra/llcommon/llapr.h index 44ad2dd50f9c60ec26272376916c87f8e0bc5395..63130a89fcd1d3f5f7d557642c159aacced9a925 100644 --- a/indra/llcommon/llapr.h +++ b/indra/llcommon/llapr.h @@ -49,6 +49,7 @@ #include "llstring.h" extern apr_thread_mutex_t* gLogMutexp; +extern apr_thread_mutex_t* gCallStacksLogMutexp; /** * @brief initialize the common apr constructs -- apr itself, the diff --git a/indra/llcommon/lldate.h b/indra/llcommon/lldate.h index 32825b18dcdc0b4e097efeb7f32801db444fd61e..7cc9c8aceb39956d7910e100433a50440004ad76 100644 --- a/indra/llcommon/lldate.h +++ b/indra/llcommon/lldate.h @@ -140,6 +140,14 @@ class LLDate bool operator!=(const LLDate& rhs) const { return (*this < rhs) || (rhs < *this); } bool operator==(const LLDate& rhs) const { return !(*this != rhs); } + /** + * @brief Compare to epoch UTC. + */ + + bool isNull() const { return mSecondsSinceEpoch == 0.0; } + bool notNull() const { return mSecondsSinceEpoch != 0.0; } + + private: F64 mSecondsSinceEpoch; }; diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index d671decccb4c5dd62633cb10a6581812a0740cc1..b135dafb3c1234e8c541833711fedf7144d01c59 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -1223,9 +1223,62 @@ namespace LLError char** LLCallStacks::sBuffer = NULL ; S32 LLCallStacks::sIndex = 0 ; + class CallStacksLogLock + { + public: + CallStacksLogLock(); + ~CallStacksLogLock(); + bool ok() const { return mOK; } + private: + bool mLocked; + bool mOK; + }; + + CallStacksLogLock::CallStacksLogLock() + : mLocked(false), mOK(false) + { + if (!gCallStacksLogMutexp) + { + mOK = true; + return; + } + + const int MAX_RETRIES = 5; + for (int attempts = 0; attempts < MAX_RETRIES; ++attempts) + { + apr_status_t s = apr_thread_mutex_trylock(gCallStacksLogMutexp); + if (!APR_STATUS_IS_EBUSY(s)) + { + mLocked = true; + mOK = true; + return; + } + + ms_sleep(1); + } + + // We're hosed, we can't get the mutex. Blah. + std::cerr << "CallStacksLogLock::CallStacksLogLock: failed to get mutex for log" + << std::endl; + } + + CallStacksLogLock::~CallStacksLogLock() + { + if (mLocked) + { + apr_thread_mutex_unlock(gCallStacksLogMutexp); + } + } + //static void LLCallStacks::push(const char* function, const int line) { + CallStacksLogLock lock; + if (!lock.ok()) + { + return; + } + if(!sBuffer) { sBuffer = new char*[512] ; @@ -1261,6 +1314,12 @@ namespace LLError //static void LLCallStacks::end(std::ostringstream* _out) { + CallStacksLogLock lock; + if (!lock.ok()) + { + return; + } + if(!sBuffer) { sBuffer = new char*[512] ; @@ -1283,6 +1342,12 @@ namespace LLError //static void LLCallStacks::print() { + CallStacksLogLock lock; + if (!lock.ok()) + { + return; + } + if(sIndex > 0) { llinfos << " ************* PRINT OUT LL CALL STACKS ************* " << llendl ; diff --git a/indra/llcommon/llversionviewer.h b/indra/llcommon/llversionviewer.h index 15f0e9833010faac9d4df3ec1dcf568bfa851f0f..a28d0f72683b84bd603b9f44ada9226c317f0228 100644 --- a/indra/llcommon/llversionviewer.h +++ b/indra/llcommon/llversionviewer.h @@ -35,7 +35,7 @@ const S32 LL_VERSION_MAJOR = 1; const S32 LL_VERSION_MINOR = 24; -const S32 LL_VERSION_PATCH = 0; +const S32 LL_VERSION_PATCH = 2; const S32 LL_VERSION_BUILD = 0; const char * const LL_CHANNEL = "Second Life Release"; diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index 5fb0e57c06ccd0b24d156629249d979db7cc5e93..0762d7c12db790550626933f1242c1e0e691115d 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -2179,7 +2179,9 @@ void LLMenuGL::arrange( void ) { if ((*item_iter)->getVisible()) { - if (!getTornOff() && width + (*item_iter)->getNominalWidth() > max_width - spillover_item_width) + if (!getTornOff() + && item_iter != mItems.begin() // Don't spillover the first item! + && width + (*item_iter)->getNominalWidth() > max_width - spillover_item_width) { // no room for any more items createSpilloverBranch(); @@ -2189,15 +2191,15 @@ void LLMenuGL::arrange( void ) { LLMenuItemGL* itemp = (*spillover_iter); removeChild(itemp); - mSpilloverMenu->append(itemp); + mSpilloverMenu->appendNoArrange(itemp); // *NOTE:Mani Favor addChild() in merge with skinning } + mSpilloverMenu->arrange(); // *NOTE: Mani Remove line in merge with skinning/viewer2.0 branch + mSpilloverMenu->updateParent(LLMenuGL::sMenuContainer); // *NOTE: Mani Remove line in merge with skinning/viewer2.0 branch mItems.erase(item_iter, mItems.end()); - mItems.push_back(mSpilloverBranch); addChild(mSpilloverBranch); height = llmax(height, mSpilloverBranch->getNominalHeight()); width += mSpilloverBranch->getNominalWidth(); - break; } else @@ -2216,7 +2218,9 @@ void LLMenuGL::arrange( void ) { if ((*item_iter)->getVisible()) { - if (!getTornOff() && height + (*item_iter)->getNominalHeight() > max_height - spillover_item_height) + if (!getTornOff() + && item_iter != mItems.begin() // Don't spillover the first item! + && height + (*item_iter)->getNominalHeight() > max_height - spillover_item_height) { // no room for any more items createSpilloverBranch(); @@ -2226,14 +2230,15 @@ void LLMenuGL::arrange( void ) { LLMenuItemGL* itemp = (*spillover_iter); removeChild(itemp); - mSpilloverMenu->append(itemp); + mSpilloverMenu->appendNoArrange(itemp); // *NOTE:Mani Favor addChild() in merge with skinning } + mSpilloverMenu->arrange(); // *NOTE: Mani Remove line in merge with skinning/viewer2.0 branch + mSpilloverMenu->updateParent(LLMenuGL::sMenuContainer); // *NOTE: Mani Remove line in merge with skinning/viewer2.0 branch mItems.erase(item_iter, mItems.end()); mItems.push_back(mSpilloverBranch); addChild(mSpilloverBranch); height += mSpilloverBranch->getNominalHeight(); width = llmax( width, mSpilloverBranch->getNominalWidth() ); - break; } else @@ -2478,6 +2483,15 @@ BOOL LLMenuGL::append( LLMenuItemGL* item ) return TRUE; } +// *NOTE:Mani - appendNoArrange() should be removed when merging to skinning/viewer2.0 +// Its added as a fix to a viewer 1.23 bug that has already been address by skinning work. +BOOL LLMenuGL::appendNoArrange( LLMenuItemGL* item ) +{ + mItems.push_back( item ); + addChild( item ); + return TRUE; +} + // add a separator to this menu BOOL LLMenuGL::appendSeparator( const std::string &separator_name ) { diff --git a/indra/llui/llmenugl.h b/indra/llui/llmenugl.h index a2ef968bcd8855f10957ae444089ee1d17b39215..030b81b58cb08774d29ea607738dc06f6967dd3e 100644 --- a/indra/llui/llmenugl.h +++ b/indra/llui/llmenugl.h @@ -439,6 +439,10 @@ class LLMenuGL // Add the menu item to this menu. virtual BOOL append( LLMenuItemGL* item ); + // *NOTE:Mani - appendNoArrange() should be removed when merging to skinning/viewer2.0 + // Its added as a fix to a viewer 1.23 bug that has already been address by skinning work. + virtual BOOL appendNoArrange( LLMenuItemGL* item ); + // add a separator to this menu virtual BOOL appendSeparator( const std::string &separator_name = LLStringUtil::null ); diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index 2ae96726af111f3255cfe65206b42da25f6648ce..6b7dd0a3dee4f5f49f4035716c4ceaaec3ddfda8 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -310,7 +310,7 @@ void LLNotificationForm::addElement(const std::string& type, const std::string& LLSD element; element["type"] = type; element["name"] = name; - element["label"] = name; + element["text"] = name; element["value"] = value; element["index"] = mFormData.size(); mFormData.append(element); @@ -525,7 +525,12 @@ std::string LLNotification::getSelectedOptionName(const LLSD& response) void LLNotification::respond(const LLSD& response) { mRespondedTo = true; - LLNotificationFunctorRegistry::instance().getFunctor(mResponseFunctorName)(asLLSD(), response); + // look up the functor + LLNotificationFunctorRegistry::ResponseFunctor functor = + LLNotificationFunctorRegistry::instance().getFunctor(mResponseFunctorName); + // and then call it + functor(asLLSD(), response); + if (mTemporaryResponder) { LLNotificationFunctorRegistry::instance().unregisterFunctor(mResponseFunctorName); diff --git a/indra/llui/llpanel.cpp b/indra/llui/llpanel.cpp index 92d045d1149caa74350334d6e50b982695adb4e0..28780c7adb234c704b592f44e7eb0c1588600c62 100644 --- a/indra/llui/llpanel.cpp +++ b/indra/llui/llpanel.cpp @@ -1085,11 +1085,15 @@ struct LLLayoutStack::LLEmbeddedPanel { if (mOrientation == HORIZONTAL) { - return mVisibleAmt * clamp_rescale(mCollapseAmt, 0.f, 1.f, 1.f, (F32)mMinWidth / (F32)mPanel->getRect().getWidth()); + F32 collapse_amt = + clamp_rescale(mCollapseAmt, 0.f, 1.f, 1.f, (F32)mMinWidth / (F32)llmax(1, mPanel->getRect().getWidth())); + return mVisibleAmt * collapse_amt; } else { - return mVisibleAmt * clamp_rescale(mCollapseAmt, 0.f, 1.f, 1.f, (F32)mMinHeight / (F32)mPanel->getRect().getHeight()); + F32 collapse_amt = + clamp_rescale(mCollapseAmt, 0.f, 1.f, 1.f, llmin(1.f, (F32)mMinHeight / (F32)llmax(1, mPanel->getRect().getHeight()))); + return mVisibleAmt * collapse_amt; } } diff --git a/indra/llwindow/lldxhardware.cpp b/indra/llwindow/lldxhardware.cpp index beab131856ce20facdceb6924615c76c7079d22f..e0cb82d2be56f7f18a3c7502604a4c0b04782c1d 100644 --- a/indra/llwindow/lldxhardware.cpp +++ b/indra/llwindow/lldxhardware.cpp @@ -624,7 +624,37 @@ LLSD LLDXHardware::getDisplayInfo() ret["DeviceName"] = device_name; std::string device_driver= get_string(device_containerp, L"szDriverVersion"); ret["DriverVersion"] = device_driver; - } + + // ATI has a slightly different version string + if(device_name.length() >= 4 && device_name.substr(0,4) == "ATI ") + { + // get the key + HKEY hKey; + const DWORD RV_SIZE = 100; + WCHAR release_version[RV_SIZE]; + + // Hard coded registry entry. Using this since it's simpler for now. + // And using EnumDisplayDevices to get a registry key also requires + // a hard coded Query value. + if(ERROR_SUCCESS == RegOpenKey(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\ATI Technologies\\CBT"), &hKey)) + { + // get the value + DWORD dwType = REG_SZ; + DWORD dwSize = sizeof(WCHAR) * RV_SIZE; + if(ERROR_SUCCESS == RegQueryValueEx(hKey, TEXT("ReleaseVersion"), + NULL, &dwType, (LPBYTE)release_version, &dwSize)) + { + // print the value + // windows doesn't guarantee to be null terminated + release_version[RV_SIZE - 1] = NULL; + ret["DriverVersion"] = utf16str_to_utf8str(release_version); + + } + RegCloseKey(hKey); + } + } + } + LCleanup: SAFE_RELEASE(file_containerp); SAFE_RELEASE(driver_containerp); diff --git a/indra/llxml/llcontrol.cpp b/indra/llxml/llcontrol.cpp index d9ed45ab9ddae6ab8f733177b963e756ab2e8082..8bd04d727cf5ded9193ba03be44120065bd3fba6 100644 --- a/indra/llxml/llcontrol.cpp +++ b/indra/llxml/llcontrol.cpp @@ -309,10 +309,13 @@ BOOL LLControlGroup::declareControl(const std::string& name, eControlType type, { if (persist && existing_control->isType(type)) { - // Sometimes we need to declare a control *after* it has been loaded from a settings file. - LLSD cur_value = existing_control->getValue(); // get the current value - existing_control->setDefaultValue(initial_val); // set the default to the declared value - existing_control->setValue(cur_value); // now set to the loaded value + if (!existing_control->llsd_compare(existing_control->getDefault(), initial_val)) + { + // Sometimes we need to declare a control *after* it has been loaded from a settings file. + LLSD cur_value = existing_control->getValue(); // get the current value + existing_control->setDefaultValue(initial_val); // set the default to the declared value + existing_control->setValue(cur_value); // now set to the loaded value + } } else { @@ -1059,10 +1062,10 @@ U32 LLControlGroup::loadFromFile(const std::string& filename, bool set_default_v } U32 validitems = 0; - bool persist = true; bool hidefromsettingseditor = false; for(LLSD::map_const_iterator itr = settings.beginMap(); itr != settings.endMap(); ++itr) { + bool persist = true; name = (*itr).first; control_map = (*itr).second; @@ -1171,13 +1174,13 @@ static std::string get_warn_name(const std::string& name) void LLControlGroup::addWarning(const std::string& name) { + // Note: may get called more than once per warning + // (e.g. if allready loaded from a settings file), + // but that is OK, declareBOOL will handle it std::string warnname = get_warn_name(name); - if(mNameTable.find(warnname) == mNameTable.end()) - { - std::string comment = std::string("Enables ") + name + std::string(" warning dialog"); - declareBOOL(warnname, TRUE, comment); - mWarnings.insert(warnname); - } + std::string comment = std::string("Enables ") + name + std::string(" warning dialog"); + declareBOOL(warnname, TRUE, comment); + mWarnings.insert(warnname); } BOOL LLControlGroup::getWarning(const std::string& name) diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 00818938693a8a4557b08ef7dc9935765eebecb2..7ae92129dc314a127b9cf0b562a80386c2e88547 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -4801,16 +4801,16 @@ <real>1.0</real> </array> </map> - <key>IMInChatHistory</key> + <key>IMInChatConsole</key> <map> <key>Comment</key> - <string>Copy IM into chat history</string> + <string>Copy IM into background chat console</string> <key>Persist</key> <integer>1</integer> <key>Type</key> <string>Boolean</string> <key>Value</key> - <integer>0</integer> + <integer>1</integer> </map> <key>IMShowTimestamps</key> <map> @@ -6501,8 +6501,8 @@ <key>Value</key> <array> <integer>0</integer> - <integer>550</integer> - <integer>500</integer> + <integer>586</integer> + <integer>576</integer> <integer>0</integer> </array> </map> @@ -7383,6 +7383,17 @@ <key>Value</key> <integer>0</integer> </map> + <key>RenderHUDParticles</key> + <map> + <key>Comment</key> + <string>Display particle systems in HUD attachments (experimental)</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>0</integer> + </map> <key>RenderHiddenSelections</key> <map> <key>Comment</key> @@ -11629,7 +11640,7 @@ <key>Type</key> <string>Boolean</string> <key>Value</key> - <integer>1</integer> + <integer>0</integer> </map> <key>WaterEditPresets</key> <map> diff --git a/indra/newview/character/avatar_lad.xml b/indra/newview/character/avatar_lad.xml index f484167cab02ce214cfaa8ffd1b7454e90fe0f69..0ed5663ec1c1a626c9cbf5b183844bc0b86ae364 100644 --- a/indra/newview/character/avatar_lad.xml +++ b/indra/newview/character/avatar_lad.xml @@ -5615,13 +5615,31 @@ </param> </layer> - <layer - name="head_bodypaint"> - <texture - local_texture="head_bodypaint" /> - </layer> + <layer + name="highlight"> + <texture + tga_file="head_highlights_alpha.tga" + file_is_mask="TRUE" /> - <layer + + <param + id="159" + group="1" + name="Shading" + wearable="skin" + value_min="0" + value_max="1"> + <param_color> + <value + color="255, 255, 255, 0" /> + + + <value + color="255, 255, 255, 64" /> + </param_color> + </param> + </layer> + <layer name="rosyface"> <texture tga_file="rosyface_alpha.tga" @@ -5651,52 +5669,6 @@ </layer> <layer - name="freckles" - fixed_color="120,47,20,128"> - <param - id="165" - group="0" - wearable="skin" - edit_group="skin_facedetail" - edit_group_order="2" - name="Freckles" - label_min="Less" - label_max="More" - value_min="0" - value_max="1" - camera_distance=".3" - camera_elevation=".07"> - <param_alpha - tga_file="freckles_alpha.tga" - skip_if_zero="true" - domain="0.5" /> - </param> - </layer> - - <layer - name="highlight"> - <texture - tga_file="head_highlights_alpha.tga" - file_is_mask="TRUE" /> - - <param - id="159" - group="1" - name="Shading" - wearable="skin" - value_min="0" - value_max="1"> - <param_color> - <value - color="255, 255, 255, 0" /> - - <value - color="255, 255, 255, 64" /> - </param_color> - </param> - </layer> - - <layer name="lips"> <texture tga_file="lips_mask.tga" @@ -5757,8 +5729,29 @@ domain="0.3" /> </param> </layer>--> - <layer + name="freckles" + fixed_color="120,47,20,128"> + <param + id="165" + group="0" + wearable="skin" + edit_group="skin_facedetail" + edit_group_order="2" + name="Freckles" + label_min="Less" + label_max="More" + value_min="0" + value_max="1" + camera_distance=".3" + camera_elevation=".07"> + <param_alpha + tga_file="freckles_alpha.tga" + skip_if_zero="true" + domain="0.5" /> + </param> + </layer> + <layer name="eyebrowsbump" render_pass="bump"> <texture @@ -6546,6 +6539,11 @@ </param> </layer> + <layer + name="head_bodypaint"> + <texture + local_texture="head_bodypaint" /> + </layer> </layer_set> <!-- =========================================================== --> diff --git a/indra/newview/installers/windows/lang_nl.nsi b/indra/newview/installers/windows/lang_nl.nsi index c8ffa8bfcd733b6fe4d588bb3213148e2e2b7215..8884b1e8585416464c522dad2f002b3a8338326f 100644 Binary files a/indra/newview/installers/windows/lang_nl.nsi and b/indra/newview/installers/windows/lang_nl.nsi differ diff --git a/indra/newview/linux_tools/launch_url.sh b/indra/newview/linux_tools/launch_url.sh index d2c8919d46e0707b66d7b93ad237391507e22450..404ea36f2601820a61a3d58a9b07685ee9894b68 100755 --- a/indra/newview/linux_tools/launch_url.sh +++ b/indra/newview/linux_tools/launch_url.sh @@ -7,17 +7,15 @@ # # On Unixoids we try, in order of decreasing priority: # - $BROWSER if set (preferred) -# - kfmclient openURL +# - Default GNOME browser +# - Default KDE browser # - x-www-browser -# - opera -# - firefox -# - mozilla -# - netscape +# - The first browser in $BROWSER_COMMANDS that is found. URL="$1" if [ -z "$URL" ]; then - echo "Usage: $0 URL" + echo "Usage: $(basename "$0") URL" exit fi @@ -47,46 +45,42 @@ if [ ! -z "$XBROWSER" ]; then echo "$0: Trying some others..." fi -# else kfmclient -# (embodies KDE concept of 'preferred browser') -if which kfmclient >/dev/null; then - kfmclient openURL "$URL" & - exit -fi - -# else x-www-browser -# (Debianesque idea of a working X browser) -if which x-www-browser >/dev/null; then - x-www-browser "$URL" & - exit -fi - -# else opera -# (if user has opera in their path, they probably went to the -# trouble of installing it -> prefer it) -if which opera >/dev/null; then - opera "$URL" & +# Launcher the default GNOME browser. +if [ ! -z "$GNOME_DESKTOP_SESSION_ID" ] && which gnome-open >/dev/null; then + gnome-open "$URL" & exit fi -# else firefox -if which firefox >/dev/null; then - firefox "$URL" & +# Launch the default KDE browser. +if [ ! -z "$KDE_FULL_SESSION" ] && which kfmclient >/dev/null; then + kfmclient openURL "$URL" & exit fi -# else mozilla -if which mozilla >/dev/null; then - mozilla "$URL" & - exit -fi - -# else netscape -if which netscape >/dev/null; then - netscape "$URL" & - exit -fi +# List of browser commands that will be tried in the order listed. x-www-browser +# will be tried first, which is a debian alternative. +BROWSER_COMMANDS=" \ + x-www-browser \ + firefox \ + mozilla-firefox \ + iceweasel \ + iceape \ + opera \ + epiphany-browser \ + epiphany-gecko \ + epiphany-webkit \ + epiphany \ + mozilla \ + seamonkey \ + galeon \ + dillo \ + netscape" +for browser_cmd in $BROWSER_COMMANDS; do + if which $browser_cmd >/dev/null; then + $browser_cmd "$URL" & + exit + fi +done echo '$0: Failed to find a known browser. Please consider setting the $BROWSER environment variable.' - -# end. +exit 1 diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 9785940ff66f823128a55ebfe386cb8538d46af2..98526c8a570b6e6cf7f54b0cce8a533c9da9f856 100644 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -1315,167 +1315,166 @@ LLQuaternion LLAgent::getQuat() const //----------------------------------------------------------------------------- // calcFocusOffset() //----------------------------------------------------------------------------- -LLVector3 LLAgent::calcFocusOffset(LLViewerObject *object, LLVector3 pos_agent, S32 x, S32 y) +LLVector3 LLAgent::calcFocusOffset(LLViewerObject *object, LLVector3 original_focus_point, S32 x, S32 y) { // calculate offset based on view direction BOOL is_avatar = object->isAvatar(); - LLMatrix4 obj_matrix = is_avatar ? ((LLVOAvatar*)object)->mPelvisp->getWorldMatrix() : object->getRenderMatrix(); - LLQuaternion obj_rot = is_avatar ? ((LLVOAvatar*)object)->mPelvisp->getWorldRotation() : object->getRenderRotation(); - LLVector3 obj_pos = is_avatar ? ((LLVOAvatar*)object)->mPelvisp->getWorldPosition() : object->getRenderPosition(); - LLQuaternion inv_obj_rot = ~obj_rot; - - LLVector3 obj_dir_abs = obj_pos - LLViewerCamera::getInstance()->getOrigin(); - obj_dir_abs.rotVec(inv_obj_rot); - obj_dir_abs.normalize(); - obj_dir_abs.abs(); - + // since the animation system allows the avatars facing and position to deviate from its nominal LLViewerObject/LLDrawable transform + // calculate the focus-specific orientation for avatars based off the pelvis joint + // NOTE: pelvis no longer good candidate, removed. DEV-30589 + LLMatrix4 obj_matrix = object->getRenderMatrix(); + LLQuaternion obj_rot = object->getRenderRotation(); + LLVector3 obj_pos = object->getRenderPosition(); + LLQuaternion inv_obj_rot = ~obj_rot; // get inverse of rotation LLVector3 object_extents = object->getScale(); // make sure they object extents are non-zero object_extents.clamp(0.001f, F32_MAX); - LLVector3 object_half_extents = object_extents * 0.5f; - obj_dir_abs.mV[VX] = obj_dir_abs.mV[VX] / object_extents.mV[VX]; - obj_dir_abs.mV[VY] = obj_dir_abs.mV[VY] / object_extents.mV[VY]; - obj_dir_abs.mV[VZ] = obj_dir_abs.mV[VZ] / object_extents.mV[VZ]; + // obj_to_cam_ray is unit vector pointing from object center to camera, in the coordinate frame of the object + LLVector3 obj_to_cam_ray = obj_pos - LLViewerCamera::getInstance()->getOrigin(); + obj_to_cam_ray.rotVec(inv_obj_rot); + obj_to_cam_ray.normalize(); - LLVector3 normal; - if (obj_dir_abs.mV[VX] > obj_dir_abs.mV[VY] && obj_dir_abs.mV[VX] > obj_dir_abs.mV[VZ]) + // obj_to_cam_ray_proportions are the (positive) ratios of + // the obj_to_cam_ray x,y,z components with the x,y,z object dimensions. + LLVector3 obj_to_cam_ray_proportions; + obj_to_cam_ray_proportions.mV[VX] = llabs(obj_to_cam_ray.mV[VX] / object_extents.mV[VX]); + obj_to_cam_ray_proportions.mV[VY] = llabs(obj_to_cam_ray.mV[VY] / object_extents.mV[VY]); + obj_to_cam_ray_proportions.mV[VZ] = llabs(obj_to_cam_ray.mV[VZ] / object_extents.mV[VZ]); + + // find the largest ratio stored in obj_to_cam_ray_proportions + // this corresponds to the object's local axial plane (XY, YZ, XZ) that is *most* facing the camera + LLVector3 longest_object_axis; + // is x-axis longest? + if (obj_to_cam_ray_proportions.mV[VX] > obj_to_cam_ray_proportions.mV[VY] + && obj_to_cam_ray_proportions.mV[VX] > obj_to_cam_ray_proportions.mV[VZ]) { - normal.setVec(obj_matrix.getFwdRow4()); + // then grab it + longest_object_axis.setVec(obj_matrix.getFwdRow4()); } - else if (obj_dir_abs.mV[VY] > obj_dir_abs.mV[VZ]) + // is y-axis longest? + else if (obj_to_cam_ray_proportions.mV[VY] > obj_to_cam_ray_proportions.mV[VZ]) { - normal.setVec(obj_matrix.getLeftRow4()); + // then grab it + longest_object_axis.setVec(obj_matrix.getLeftRow4()); } + // otherwise, use z axis else { - normal.setVec(obj_matrix.getUpRow4()); + longest_object_axis.setVec(obj_matrix.getUpRow4()); } - normal.normalize(); + + // Use this axis as the normal to project mouse click on to plane with that normal, at the object center. + // This generates a point behind the mouse cursor that is approximately in the middle of the object in + // terms of depth. + // We do this to allow the camera rotation tool to "tumble" the object by rotating the camera. + // If the focus point were the object surface under the mouse, camera rotation would introduce an undesirable + // eccentricity to the object orientation + LLVector3 focus_plane_normal(longest_object_axis); + focus_plane_normal.normalize(); LLVector3d focus_pt_global; - // RN: should we check return value for valid pick? - gViewerWindow->mousePointOnPlaneGlobal(focus_pt_global, x, y, gAgent.getPosGlobalFromAgent(obj_pos), normal); + gViewerWindow->mousePointOnPlaneGlobal(focus_pt_global, x, y, gAgent.getPosGlobalFromAgent(obj_pos), focus_plane_normal); LLVector3 focus_pt = gAgent.getPosAgentFromGlobal(focus_pt_global); - // find vector from camera to focus point in object coordinates - LLVector3 camera_focus_vec = focus_pt - LLViewerCamera::getInstance()->getOrigin(); - // convert to object-local space - camera_focus_vec.rotVec(inv_obj_rot); + + // find vector from camera to focus point in object space + LLVector3 camera_to_focus_vec = focus_pt - LLViewerCamera::getInstance()->getOrigin(); + camera_to_focus_vec.rotVec(inv_obj_rot); // find vector from object origin to focus point in object coordinates - LLVector3 focus_delta = focus_pt - obj_pos; + LLVector3 focus_offset_from_object_center = focus_pt - obj_pos; // convert to object-local space - focus_delta.rotVec(inv_obj_rot); + focus_offset_from_object_center.rotVec(inv_obj_rot); - // calculate clip percentage needed to get focus offset back in bounds along the camera_focus axis + // We need to project the focus point back into the bounding box of the focused object. + // Do this by calculating the XYZ scale factors needed to get focus offset back in bounds along the camera_focus axis LLVector3 clip_fraction; + // for each axis... for (U32 axis = VX; axis <= VZ; axis++) { - F32 clip_amt; - if (focus_delta.mV[axis] > 0.f) + //...calculate distance that focus offset sits outside of bounding box along that axis... + //NOTE: dist_out_of_bounds keeps the sign of focus_offset_from_object_center + F32 dist_out_of_bounds; + if (focus_offset_from_object_center.mV[axis] > 0.f) { - clip_amt = llmax(0.f, focus_delta.mV[axis] - object_half_extents.mV[axis]); + dist_out_of_bounds = llmax(0.f, focus_offset_from_object_center.mV[axis] - (object_extents.mV[axis] * 0.5f)); } else { - clip_amt = llmin(0.f, focus_delta.mV[axis] + object_half_extents.mV[axis]); + dist_out_of_bounds = llmin(0.f, focus_offset_from_object_center.mV[axis] + (object_extents.mV[axis] * 0.5f)); } - // don't divide by very small nunber - if (llabs(camera_focus_vec.mV[axis]) < 0.0001f) + //...then calculate the scale factor needed to push camera_to_focus_vec back in bounds along current axis + if (llabs(camera_to_focus_vec.mV[axis]) < 0.0001f) { + // don't divide by very small number clip_fraction.mV[axis] = 0.f; } else { - clip_fraction.mV[axis] = clip_amt / camera_focus_vec.mV[axis]; + clip_fraction.mV[axis] = dist_out_of_bounds / camera_to_focus_vec.mV[axis]; } } LLVector3 abs_clip_fraction = clip_fraction; abs_clip_fraction.abs(); - // find greatest shrinkage factor and + // find axis of focus offset that is *most* outside the bounding box and use that to // rescale focus offset to inside object extents - if (abs_clip_fraction.mV[VX] > abs_clip_fraction.mV[VY] && - abs_clip_fraction.mV[VX] > abs_clip_fraction.mV[VZ]) + if (abs_clip_fraction.mV[VX] > abs_clip_fraction.mV[VY] + && abs_clip_fraction.mV[VX] > abs_clip_fraction.mV[VZ]) { - focus_delta -= clip_fraction.mV[VX] * camera_focus_vec; + focus_offset_from_object_center -= clip_fraction.mV[VX] * camera_to_focus_vec; } else if (abs_clip_fraction.mV[VY] > abs_clip_fraction.mV[VZ]) { - focus_delta -= clip_fraction.mV[VY] * camera_focus_vec; + focus_offset_from_object_center -= clip_fraction.mV[VY] * camera_to_focus_vec; } else { - focus_delta -= clip_fraction.mV[VZ] * camera_focus_vec; + focus_offset_from_object_center -= clip_fraction.mV[VZ] * camera_to_focus_vec; } // convert back to world space - focus_delta.rotVec(obj_rot); + focus_offset_from_object_center.rotVec(obj_rot); + // now, based on distance of camera from object relative to object size + // push the focus point towards the near surface of the object when (relatively) close to the objcet + // or keep the focus point in the object middle when (relatively) far + // NOTE: leave focus point in middle of avatars, since the behavior you want when alt-zooming on avatars + // is almost always "tumble about middle" and not "spin around surface point" if (!is_avatar) { - //unproject relative clicked coordinate from window coordinate using GL - /*GLint viewport[4]; - GLdouble modelview[16]; - GLdouble projection[16]; - GLfloat winX, winY, winZ; - GLdouble posX, posY, posZ; - - // convert our matrices to something that has a multiply that works - glh::matrix4f newModel((F32*)LLViewerCamera::getInstance()->getModelview().mMatrix); - glh::matrix4f tmpObjMat((F32*)obj_matrix.mMatrix); - newModel *= tmpObjMat; - - for(U32 i = 0; i < 16; ++i) - { - modelview[i] = newModel.m[i]; - projection[i] = LLViewerCamera::getInstance()->getProjection().mMatrix[i/4][i%4]; - } - glGetIntegerv( GL_VIEWPORT, viewport ); - - winX = ((F32)x) * gViewerWindow->getDisplayScale().mV[VX]; - winY = ((F32)y) * gViewerWindow->getDisplayScale().mV[VY]; - glReadPixels( llfloor(winX), llfloor(winY), 1, 1, GL_DEPTH_COMPONENT, GL_FLOAT, &winZ ); - - gluUnProject( winX, winY, winZ, modelview, projection, viewport, &posX, &posY, &posZ);*/ - - LLVector3 obj_rel = pos_agent - object->getRenderPosition(); + LLVector3 obj_rel = original_focus_point - object->getRenderPosition(); - LLVector3 obj_center = LLVector3(0, 0, 0) * object->getRenderMatrix(); - //now that we have the object relative position, we should bias toward the center of the object //based on the distance of the camera to the focus point vs. the distance of the camera to the focus F32 relDist = llabs(obj_rel * LLViewerCamera::getInstance()->getAtAxis()); - F32 viewDist = dist_vec(obj_center + obj_rel, LLViewerCamera::getInstance()->getOrigin()); + F32 viewDist = dist_vec(obj_pos + obj_rel, LLViewerCamera::getInstance()->getOrigin()); LLBBox obj_bbox = object->getBoundingBoxAgent(); F32 bias = 0.f; + // virtual_camera_pos is the camera position we are simulating by backing the camera off + // and adjusting the FOV LLVector3 virtual_camera_pos = gAgent.getPosAgentFromGlobal(mFocusTargetGlobal + (getCameraPositionGlobal() - mFocusTargetGlobal) / (1.f + mCameraFOVZoomFactor)); - if(obj_bbox.containsPointAgent(virtual_camera_pos)) - { - // if the camera is inside the object (large, hollow objects, for example) - // force focus point all the way to destination depth, away from object center - bias = 1.f; - } - else + // if the camera is inside the object (large, hollow objects, for example) + // leave focus point all the way to destination depth, away from object center + if(!obj_bbox.containsPointAgent(virtual_camera_pos)) { // perform magic number biasing of focus point towards surface vs. planar center bias = clamp_rescale(relDist/viewDist, 0.1f, 0.7f, 0.0f, 1.0f); + obj_rel = lerp(focus_offset_from_object_center, obj_rel, bias); } - - obj_rel = lerp(focus_delta, obj_rel, bias); - - return LLVector3(obj_rel); + + focus_offset_from_object_center = obj_rel; } - return LLVector3(focus_delta.mV[VX], focus_delta.mV[VY], focus_delta.mV[VZ]); + return focus_offset_from_object_center; } //----------------------------------------------------------------------------- diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 640b835da20043cea7180d6f90b31f989b54bf9b..0c34d018a23833a5f3009b70b934017c8f4804e7 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2042,8 +2042,18 @@ bool LLAppViewer::initConfiguration() void LLAppViewer::checkForCrash(void) { -#if LL_SEND_CRASH_REPORTS - if (gLastExecEvent == LAST_EXEC_FROZE || gLastExecEvent == LAST_EXEC_OTHER_CRASH) +#if 1 //*REMOVE:Mani LL_SEND_CRASH_REPORTS + //*NOTE:Mani The current state of the crash handler has the MacOSX + // sending all crash reports as freezes, in order to let + // the MacOSX CrashRepoter generate stacks before spawning the + // SL crash logger. + // The Linux and Windows clients generate their own stacks and + // spawn the SL crash logger immediately. This may change in the future. +#if LL_DARWIN + if(gLastExecEvent != LAST_EXEC_NORMAL) +#else + if (gLastExecEvent == LAST_EXEC_FROZE || gLastExecEvent == LAST_EXEC_OTHER_CRASH) +#endif { llinfos << "Last execution froze, requesting to send crash report." << llendl; // @@ -2285,7 +2295,7 @@ void LLAppViewer::handleViewerCrash() llinfos << "Handle viewer crash entry." << llendl; //print out recorded call stacks if there are any. - LLError::LLCallStacks::print() ; + LLError::LLCallStacks::print(); LLAppViewer* pApp = LLAppViewer::instance(); if (pApp->beingDebugged()) @@ -3728,6 +3738,35 @@ void LLAppViewer::disconnectViewer() { gFloaterView->restoreAll(); } + + + std::list<LLFloater*> floaters_to_close; + for(LLView::child_list_const_iter_t it = gFloaterView->getChildList()->begin(); + it != gFloaterView->getChildList()->end(); + ++it) + { + // The following names are defined in the + // floater_image_preview.xml + // floater_sound_preview.xml + // floater_animation_preview.xml + // files. + LLFloater* fl = static_cast<LLFloater*>(*it); + if(fl + && (fl->getName() == "Image Preview" + || fl->getName() == "Sound Preview" + || fl->getName() == "Animation Preview" + )) + { + floaters_to_close.push_back(fl); + } + } + + while(!floaters_to_close.empty()) + { + LLFloater* fl = floaters_to_close.front(); + floaters_to_close.pop_front(); + fl->close(); + } } if (LLSelectMgr::getInstance()) diff --git a/indra/newview/llappviewermacosx.cpp b/indra/newview/llappviewermacosx.cpp index 1c32f0c564dc62ab94fbbe0e06fe512d073022b5..7c2e341bedc151efc3d7d416e3c6f63b38b38053 100644 --- a/indra/newview/llappviewermacosx.cpp +++ b/indra/newview/llappviewermacosx.cpp @@ -135,6 +135,31 @@ bool LLAppViewerMacOSX::init() return LLAppViewer::init(); } +bool LLAppViewerMacOSX::initLogging() +{ + // Remove the crash stack log from previous executions. + // Since we've started logging a new instance of the app, we can assume + // The old crash stack is invalid for the next crash report. + char path[MAX_PATH]; + FSRef folder; + if(FSFindFolder(kUserDomain, kLogsFolderType, false, &folder) == noErr) + { + // folder is an FSRef to ~/Library/Logs/ + if(FSRefMakePath(&folder, (UInt8*)&path, sizeof(path)) == noErr) + { + std::string pathname = std::string(path) + std::string("/CrashReporter/"); + std::string mask = "Second Life*"; + std::string file_name; + while(gDirUtilp->getNextFileInDir(pathname, mask, file_name, false)) + { + LLFile::remove(pathname + file_name); + } + } + } + + return LLAppViewer::initLogging(); +} + // MacOSX may add and addition command line arguement for the process serial number. // The option takes a form like '-psn_0_12345'. The following method should be able to recognize // and either ignore or return a pair of values for the option. diff --git a/indra/newview/llappviewermacosx.h b/indra/newview/llappviewermacosx.h index bc841fc3a72966c28f11616118bc17aa29b8088f..0928916a578b16aa350ed2a191b4a5a1510395ce 100644 --- a/indra/newview/llappviewermacosx.h +++ b/indra/newview/llappviewermacosx.h @@ -55,6 +55,7 @@ class LLAppViewerMacOSX : public LLAppViewer virtual void handleSyncCrashTrace(); std::string generateSerialNumber(); + virtual bool initLogging(); virtual bool initParseCommandLine(LLCommandLineParser& clp); }; diff --git a/indra/newview/llassetuploadresponders.cpp b/indra/newview/llassetuploadresponders.cpp index 5b04e241a181672f9554fb8de260efb5ecb49edb..4fca9b1f19d69b3330eb71e2d2a949672c689776 100644 --- a/indra/newview/llassetuploadresponders.cpp +++ b/indra/newview/llassetuploadresponders.cpp @@ -171,6 +171,9 @@ void LLAssetUploadResponder::uploadUpload(const LLSD& content) void LLAssetUploadResponder::uploadFailure(const LLSD& content) { + // remove the "Uploading..." message + LLUploadDialog::modalUploadFinished(); + std::string reason = content["state"]; // deal with L$ errors if (reason == "insufficient funds") diff --git a/indra/newview/llcurrencyuimanager.cpp b/indra/newview/llcurrencyuimanager.cpp index 71ecca5d417023a65ac36909db58a3fefbed4661..86821249a07da5781aa3030a80af8bc81c3f4084 100644 --- a/indra/newview/llcurrencyuimanager.cpp +++ b/indra/newview/llcurrencyuimanager.cpp @@ -121,7 +121,8 @@ LLCurrencyUIManager::Impl::Impl(LLPanel& dialog) : mPanel(dialog), mHidden(false), mError(false), - mUserCurrencyBuy(1000), mUserEnteredCurrencyBuy(false), + mUserCurrencyBuy(2000), // note, this is a default, real value set in llfloaterbuycurrency.cpp + mUserEnteredCurrencyBuy(false), mSiteCurrencyEstimated(false), mSiteCurrencyEstimatedCost(0), mBought(false), diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index 2652387bfe966df2fca85eddbb4d8e961a0be20f..810799d27c0780fbec26a3ea9c42d35cc0f4968a 100644 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -59,7 +59,11 @@ #include "llappviewer.h" #include "llglheaders.h" #include "llmediamanager.h" +#include "llwindow.h" +#if LL_WINDOWS +#include "lldxhardware.h" +#endif extern LLCPUInfo gSysCPU; extern LLMemoryInfo gSysMemory; @@ -193,6 +197,20 @@ LLFloaterAbout::LLFloaterAbout() support.append( (const char*) glGetString(GL_RENDERER) ); support.append("\n"); +#if LL_WINDOWS + getWindow()->incBusyCount(); + getWindow()->setCursor(UI_CURSOR_ARROW); + support.append("Windows Graphics Driver Version: "); + LLSD driver_info = gDXHardware.getDisplayInfo(); + if (driver_info.has("DriverVersion")) + { + support.append(driver_info["DriverVersion"]); + } + support.append("\n"); + getWindow()->decBusyCount(); + getWindow()->setCursor(UI_CURSOR_ARROW); +#endif + support.append("OpenGL Version: "); support.append( (const char*) glGetString(GL_VERSION) ); support.append("\n"); diff --git a/indra/newview/llfloaterbulkpermission.cpp b/indra/newview/llfloaterbulkpermission.cpp index 4697296e1665beaa6db6a801b9219fb1a4ab0329..d4e1e981253b51405a5f7bc3e9c89da3034b4c52 100644 --- a/indra/newview/llfloaterbulkpermission.cpp +++ b/indra/newview/llfloaterbulkpermission.cpp @@ -61,6 +61,7 @@ LLFloaterBulkPermission::LLFloaterBulkPermission(const LLSD& seed) : mDone(FALSE mID.generate(); LLUICtrlFactory::getInstance()->buildFloater(this,"floater_bulk_perms.xml"); childSetEnabled("next_owner_transfer", gSavedSettings.getBOOL("BulkChangeNextOwnerCopy")); + childSetAction("help", onHelpBtn, this); childSetAction("apply", onApplyBtn, this); childSetAction("close", onCloseBtn, this); childSetAction("check_all", onCheckAll, this); @@ -149,6 +150,11 @@ void LLFloaterBulkPermission::onApplyBtn(void* user_data) self->doApply(); } +void LLFloaterBulkPermission::onHelpBtn(void* user_data) +{ + LLNotifications::instance().add("HelpBulkPermission"); +} + void LLFloaterBulkPermission::onCloseBtn(void* user_data) { LLFloaterBulkPermission* self = static_cast<LLFloaterBulkPermission*>(user_data); diff --git a/indra/newview/llfloaterbulkpermission.h b/indra/newview/llfloaterbulkpermission.h index 09af27045ab2794e782a587ff2b1a92f74f71ca5..a26b5b4f79163d33551159be938d4642f68126a8 100644 --- a/indra/newview/llfloaterbulkpermission.h +++ b/indra/newview/llfloaterbulkpermission.h @@ -76,6 +76,7 @@ class LLFloaterBulkPermission : public LLFloater, public LLVOInventoryListener, U8 key, bool is_new); + static void onHelpBtn(void* user_data); static void onCloseBtn(void* user_data); static void onApplyBtn(void* user_data); static void onCommitCopy(LLUICtrl* ctrl, void* data); diff --git a/indra/newview/llfloaterbuycurrency.cpp b/indra/newview/llfloaterbuycurrency.cpp index 37cac9e27191bae62b071948243d66e492b31e13..cfbc5da7618e9ba76e44f112f1e474ded3fd4df6 100644 --- a/indra/newview/llfloaterbuycurrency.cpp +++ b/indra/newview/llfloaterbuycurrency.cpp @@ -46,7 +46,7 @@ #include "llwindow.h" #include "llappviewer.h" -static const S32 STANDARD_BUY_AMOUNT = 1000; +static const S32 STANDARD_BUY_AMOUNT = 2000; static const S32 MINIMUM_BALANCE_AMOUNT = 0; class LLFloaterBuyCurrencyUI diff --git a/indra/newview/llfloaterchat.cpp b/indra/newview/llfloaterchat.cpp index 682ed8e26bbfe60530f66c4172a8c21531da295f..ea529d18830ec933e890ea38cc8a612ad7dab3b7 100644 --- a/indra/newview/llfloaterchat.cpp +++ b/indra/newview/llfloaterchat.cpp @@ -398,7 +398,7 @@ void LLFloaterChat::addChat(const LLChat& chat, size = INSTANT_MSG_SIZE; } // We display anything if it's not an IM. If it's an IM, check pref... - if ( !from_instant_message || gSavedSettings.getBOOL("IMInChatHistory") ) + if ( !from_instant_message || gSavedSettings.getBOOL("IMInChatConsole") ) { gConsole->addLine(chat.mText, size, text_color); } @@ -406,9 +406,6 @@ void LLFloaterChat::addChat(const LLChat& chat, if(from_instant_message && gSavedPerAccountSettings.getBOOL("LogChatIM")) log_chat_text(chat); - - if(from_instant_message && gSavedSettings.getBOOL("IMInChatHistory")) - addChatHistory(chat,false); LLTextParser* highlight = LLTextParser::getInstance(); highlight->triggerAlerts(gAgent.getID(), gAgent.getPositionGlobal(), chat.mText, gViewerWindow->getWindow()); diff --git a/indra/newview/llfloaterimagepreview.cpp b/indra/newview/llfloaterimagepreview.cpp index c8a76cbe55a4cba0084ba86486667b7af291e4ed..d39824ee05065137d595cbbb4d90e6b1af6e3dcf 100644 --- a/indra/newview/llfloaterimagepreview.cpp +++ b/indra/newview/llfloaterimagepreview.cpp @@ -52,6 +52,7 @@ #include "llui.h" #include "llviewercamera.h" #include "llviewerwindow.h" +#include "llviewerobjectlist.h" #include "llvoavatar.h" #include "pipeline.h" #include "lluictrlfactory.h" @@ -110,7 +111,7 @@ BOOL LLFloaterImagePreview::postBuild() childHide("bad_image_text"); - if (mRawImagep.notNull()) + if (mRawImagep.notNull() && gAgent.getRegion() != NULL) { mAvatarPreview = new LLImagePreviewAvatar(256, 256); mAvatarPreview->setPreviewTarget("mPelvis", "mUpperBodyMesh0", mRawImagep, 2.f, FALSE); @@ -612,7 +613,7 @@ LLImagePreviewAvatar::LLImagePreviewAvatar(S32 width, S32 height) : LLDynamicTex mCameraPitch = 0.f; mCameraZoom = 1.f; - mDummyAvatar = new LLVOAvatar(LLUUID::null, LL_PCODE_LEGACY_AVATAR, gAgent.getRegion()); + mDummyAvatar = (LLVOAvatar*)gObjectList.createObjectViewer(LL_PCODE_LEGACY_AVATAR, gAgent.getRegion()); mDummyAvatar->createDrawable(&gPipeline); mDummyAvatar->mIsDummy = TRUE; mDummyAvatar->mSpecialRenderMode = 2; diff --git a/indra/newview/llfloatersnapshot.cpp b/indra/newview/llfloatersnapshot.cpp index 34dbce67c2b869bb45d6f58520c00896be09d5e0..e68d699d0332263f19af4802cdb762b794251428 100644 --- a/indra/newview/llfloatersnapshot.cpp +++ b/indra/newview/llfloatersnapshot.cpp @@ -236,7 +236,7 @@ LLSnapshotLivePreview::LLSnapshotLivePreview (const LLRect& rect) : mImageScaled[0] = FALSE; mImageScaled[1] = FALSE; - mMaxImageSize = MAX_IMAGE_SIZE ; + mMaxImageSize = MAX_SNAPSHOT_IMAGE_SIZE ; mKeepAspectRatio = gSavedSettings.getBOOL("KeepAspectForSnapshot") ; mThumbnailUpdateLock = FALSE ; mThumbnailUpToDate = FALSE ; @@ -255,13 +255,13 @@ LLSnapshotLivePreview::~LLSnapshotLivePreview() void LLSnapshotLivePreview::setMaxImageSize(S32 size) { - if(size < MAX_IMAGE_SIZE) + if(size < MAX_SNAPSHOT_IMAGE_SIZE) { mMaxImageSize = size; } else { - mMaxImageSize = MAX_IMAGE_SIZE ; + mMaxImageSize = MAX_SNAPSHOT_IMAGE_SIZE ; } } diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 2697ef25f9493fa2a92b89853368946f019b9e50..e4459e38bd20837f142cf4ab75ff8bf4c795a75d 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -3452,7 +3452,8 @@ void LLObjectBridge::buildContextMenu(LLMenuGL& menu, U32 flags) items.push_back(std::string("Object Wear")); items.push_back(std::string("Attach To")); items.push_back(std::string("Attach To HUD")); - items.push_back(std::string("Restore to Last Position")); + // commented out for DEV-32347 + //items.push_back(std::string("Restore to Last Position")); LLMenuGL* attach_menu = menu.getChildMenuByName("Attach To", TRUE); LLMenuGL* attach_hud_menu = menu.getChildMenuByName("Attach To HUD", TRUE); diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp index 841330483c3d67a1e2ada8c9b8c7c112b002e0b6..40b1c641460629484abe06d96492868b33ccfaca 100644 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -67,7 +67,6 @@ #include "llfloaterchat.h" #include "llimpanel.h" #include "llimview.h" -#include "lltrans.h" #include "llnotifications.h" #include "lluistring.h" #include "llviewerobject.h" @@ -507,35 +506,42 @@ void notify_automute_callback(const LLUUID& agent_id, const std::string& first_n U32 temp_data = (U32) (uintptr_t) user_data; LLMuteList::EAutoReason reason = (LLMuteList::EAutoReason)temp_data; - std::string auto_message; + std::string notif_name; switch (reason) { default: case LLMuteList::AR_IM: - auto_message = LLTrans::getString("AutoUnmuteByIM"); + notif_name = "AutoUnmuteByIM"; break; case LLMuteList::AR_INVENTORY: - auto_message = LLTrans::getString("AutoUnmuteByInventory"); + notif_name = "AutoUnmuteByInventory"; break; case LLMuteList::AR_MONEY: - auto_message = LLTrans::getString("AutoUnmuteByMoney"); + notif_name = "AutoUnmuteByMoney"; break; } - std::string message = LLNotification::format(auto_message, - LLSD().insert("FIRST", first_name).insert("LAST", last_name)); - - if (reason == LLMuteList::AR_IM) + LLSD args; + args["FIRST"] = first_name; + args["LAST"] = last_name; + + LLNotificationPtr notif_ptr = LLNotifications::instance().add(notif_name, args); + if (notif_ptr) { - LLFloaterIMPanel *timp = gIMMgr->findFloaterBySession(agent_id); - if (timp) + std::string message = notif_ptr->getMessage(); + + if (reason == LLMuteList::AR_IM) { - timp->addHistoryLine(message); + LLFloaterIMPanel *timp = gIMMgr->findFloaterBySession(agent_id); + if (timp) + { + timp->addHistoryLine(message); + } } - } - LLChat auto_chat(message); - LLFloaterChat::addChat(auto_chat, FALSE, FALSE); + LLChat auto_chat(message); + LLFloaterChat::addChat(auto_chat, FALSE, FALSE); + } } diff --git a/indra/newview/llpanelclassified.cpp b/indra/newview/llpanelclassified.cpp index afaaea28f0b235b913a8d8e3960e2ac404692279..9e4f9709a89b338861f8a9f8aa1ab48a78904728 100644 --- a/indra/newview/llpanelclassified.cpp +++ b/indra/newview/llpanelclassified.cpp @@ -754,22 +754,18 @@ void LLPanelClassified::refresh() mDescEditor->setEnabled(is_self); //mPriceEditor->setEnabled(is_self); mCategoryCombo->setEnabled(is_self); + mMatureCombo->setEnabled(is_self); if( is_self ) { if( mMatureCombo->getCurrentIndex() == 0 ) { // It's a new panel. - // PG regions must have PG classifieds. AO must have mature. - // Only Mature can be PG or Mature. + // PG regions should have PG classifieds. AO should have mature. - constrainAccessCombo(); + setDefaultAccessCombo(); } } - else - { - mMatureCombo->setEnabled( FALSE ); - } if (mAutoRenewCheck) { @@ -1007,7 +1003,7 @@ void LLPanelClassified::onClickSet(void* data) self->mLocationEditor->setText(location_text); self->mLocationChanged = true; - self->constrainAccessCombo(); + self->setDefaultAccessCombo(); // Set this to null so it updates on the next save. self->mParcelID.setNull(); @@ -1137,35 +1133,22 @@ void LLFloaterPriceForListing::buttonCore(S32 button, void* data) } } -void LLPanelClassified::constrainAccessCombo() +void LLPanelClassified::setDefaultAccessCombo() { - // Location changed. - // PG regions must have PG classifieds. AO must have mature. - // Only Mature can be PG or Mature. - - bool pref_visible = TRUE; + // PG regions should have PG classifieds. AO should have mature. - S32 force_access = MATURE_UNDEFINED; LLViewerRegion *regionp = gAgent.getRegion(); switch( regionp->getSimAccess() ) { case SIM_ACCESS_PG: - force_access = PG_CONTENT; + mMatureCombo->setCurrentByIndex(PG_CONTENT); break; case SIM_ACCESS_ADULT: - force_access = MATURE_CONTENT; + mMatureCombo->setCurrentByIndex(MATURE_CONTENT); break; default: // You are free to move about the cabin. break; } - - if ( force_access != MATURE_UNDEFINED ) - { - pref_visible = FALSE; - mMatureCombo->setCurrentByIndex(force_access); - } - - mMatureCombo->setEnabled(pref_visible); } diff --git a/indra/newview/llpanelclassified.h b/indra/newview/llpanelclassified.h index 68a5a3332109bdce3fa0d1f2d9f4c6ba324f2875..417eddf460622b331b3cc55af2ce03271df6e150 100644 --- a/indra/newview/llpanelclassified.h +++ b/indra/newview/llpanelclassified.h @@ -120,7 +120,7 @@ class LLPanelClassified : public LLPanel static void focusReceived(LLFocusableElement* ctrl, void* data); static void onCommitAny(LLUICtrl* ctrl, void* data); - void constrainAccessCombo(); // Force AO and PG regions to proper classified access + void setDefaultAccessCombo(); // Default AO and PG regions to proper classified access BOOL checkDirty(); // Update and return mDirty diff --git a/indra/newview/llpanelplace.cpp b/indra/newview/llpanelplace.cpp index 815152c69fe2e6248f212641a718b5bea35b7700..7ca362263427da3656eb589402aab9322f2d18de 100644 --- a/indra/newview/llpanelplace.cpp +++ b/indra/newview/llpanelplace.cpp @@ -466,7 +466,8 @@ bool LLPanelPlace::callbackAuctionWebPage(const LLSD& notification, const LLSD& if (0 == option) { std::string url; - url = AUCTION_URL + llformat("%010d", response["auction_id"].asInteger()); + S32 auction_id = notification["payload"]["auction_id"].asInteger(); + url = AUCTION_URL + llformat("%010d", auction_id ); llinfos << "Loading auction page " << url << llendl; diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index 564313980d0c510004ed5ef4fcc7029434dd05ed..0c6b2980dc8fddaff942556c27612d7d07775556 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -5392,6 +5392,11 @@ void dialog_refresh_all() gPieObject->arrange(); } + if( gPieAttachment->getVisible() ) + { + gPieAttachment->arrange(); + } + LLFloaterProperties::dirtyAll(); LLFloaterInspect::dirty(); } diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 984646e95906104bf3984241ab616b57707be39c..2c0d11baabc7eb638a099cf14371f169b97d304c 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3424,7 +3424,7 @@ void LLStartUp::multimediaInit() { LL_DEBUGS("AppInit") << "Initializing Multimedia...." << LL_ENDL; std::string msg = LLTrans::getString("LoginInitializingMultimedia"); - set_startup_status(0.50f, msg.c_str(), gAgent.mMOTD.c_str()); + set_startup_status(0.42f, msg.c_str(), gAgent.mMOTD.c_str()); display_startup(); LLViewerMedia::initClass(); diff --git a/indra/newview/lltexlayer.cpp b/indra/newview/lltexlayer.cpp index eea4acf053cd1a2683d41ae9212952518bd410a7..b05da8c6d8dcff424935dabbfe611a49dcbebaf6 100644 --- a/indra/newview/lltexlayer.cpp +++ b/indra/newview/lltexlayer.cpp @@ -68,8 +68,12 @@ S32 LLTexLayerSetBuffer::sGLBumpByteCount = 0; //----------------------------------------------------------------------------- // LLBakedUploadData() //----------------------------------------------------------------------------- -LLBakedUploadData::LLBakedUploadData( LLVOAvatar* avatar, LLTexLayerSetBuffer* layerset_buffer, const LLUUID & id ) : +LLBakedUploadData::LLBakedUploadData( LLVOAvatar* avatar, + LLTexLayerSet* layerset, + LLTexLayerSetBuffer* layerset_buffer, + const LLUUID & id ) : mAvatar( avatar ), + mLayerSet( layerset ), mLayerSetBuffer( layerset_buffer ), mID(id) { @@ -485,7 +489,8 @@ void LLTexLayerSetBuffer::readBackAndUpload(U8* baked_bump_data) if( valid ) { // baked_upload_data is owned by the responder and deleted after the request completes - LLBakedUploadData* baked_upload_data = new LLBakedUploadData( gAgent.getAvatarObject(), this, asset_id ); + LLBakedUploadData* baked_upload_data = + new LLBakedUploadData( gAgent.getAvatarObject(), this->mTexLayerSet, this, asset_id ); mUploadID = asset_id; // upload the image @@ -547,40 +552,51 @@ void LLTexLayerSetBuffer::onTextureUploadComplete(const LLUUID& uuid, void* user // Sanity check: only the user's avatar should be uploading textures. if( baked_upload_data->mAvatar == avatar ) { - // Because the avatar is still valid, it's layerset buffers should be valid also. - LLTexLayerSetBuffer* layerset_buffer = baked_upload_data->mLayerSetBuffer; - layerset_buffer->mUploadPending = FALSE; - - if (layerset_buffer->mUploadID.isNull()) + // Composite may have changed since the pointer was stored - need to do some checking. + LLTexLayerSetBuffer* prev_layerset_buffer = baked_upload_data->mLayerSetBuffer; + // Can't just call getComposite() because this will trigger creation if none exists. + LLTexLayerSetBuffer* curr_layerset_buffer = + baked_upload_data->mLayerSet->hasComposite()?baked_upload_data->mLayerSet->getComposite():NULL; + + if (prev_layerset_buffer != curr_layerset_buffer) { - // The upload got canceled, we should be in the process of baking a new texture - // so request an upload with the new data - layerset_buffer->requestUpload(); + llinfos << "Baked texture out of date, composite no longer valid, ignored" << llendl; } - else if( baked_upload_data->mID == layerset_buffer->mUploadID ) + else { - // This is the upload we're currently waiting for. - layerset_buffer->mUploadID.setNull(); - - if( result >= 0 ) + curr_layerset_buffer->mUploadPending = FALSE; + + if (curr_layerset_buffer->mUploadID.isNull()) + { + // The upload got canceled, we should be in the process of baking a new texture + // so request an upload with the new data + curr_layerset_buffer->requestUpload(); + } + else if( baked_upload_data->mID == curr_layerset_buffer->mUploadID ) { - ETextureIndex baked_te = avatar->getBakedTE( layerset_buffer->mTexLayerSet ); - U64 now = LLFrameTimer::getTotalTime(); // Record starting time - llinfos << "Baked texture upload took " << (S32)((now - baked_upload_data->mStartTime) / 1000) << " ms" << llendl; - avatar->setNewBakedTexture( baked_te, uuid ); + // This is the upload we're currently waiting for. + curr_layerset_buffer->mUploadID.setNull(); + + if( result >= 0 ) + { + ETextureIndex baked_te = avatar->getBakedTE( curr_layerset_buffer->mTexLayerSet ); + U64 now = LLFrameTimer::getTotalTime(); // Record starting time + llinfos << "Baked texture upload took " << (S32)((now - baked_upload_data->mStartTime) / 1000) << " ms" << llendl; + avatar->setNewBakedTexture( baked_te, uuid ); + } + else + { + llinfos << "Baked upload failed. Reason: " << result << llendl; + // *FIX: retry upload after n seconds, asset server could be busy + } } else { - llinfos << "Baked upload failed. Reason: " << result << llendl; - // *FIX: retry upload after n seconds, asset server could be busy + llinfos << "Received baked texture out of date, ignored." << llendl; } - } - else - { - llinfos << "Received baked texture out of date, ignored." << llendl; - } - avatar->dirtyMesh(); + avatar->dirtyMesh(); + } } } else diff --git a/indra/newview/lltexlayer.h b/indra/newview/lltexlayer.h index 18e6d6b24f5506fe7d73e2e14e7d6ef82287cbe8..1924d0bee39da91ca0f6da051023db4c2dce98bf 100644 --- a/indra/newview/lltexlayer.h +++ b/indra/newview/lltexlayer.h @@ -534,14 +534,22 @@ class LLTexStaticImageList }; // Used by LLTexLayerSetBuffer for a callback. + +// For DEV-DEV-31590, "Heap corruption and crash after outfit +// changes", added the mLayerSet member. The current +// LLTexLayerSetBuffer can be found by querying mLayerSet->mComposite, +// but we still store the original mLayerSetBuffer here so we can +// detect when an upload is out of date. This prevents a memory +// stomp. See LLTexLayerSetBuffer::onTextureUploadComplete() for usage. class LLBakedUploadData { public: - LLBakedUploadData( LLVOAvatar* avatar, LLTexLayerSetBuffer* layerset_buffer, const LLUUID & id); + LLBakedUploadData( LLVOAvatar* avatar, LLTexLayerSet* layerset, LLTexLayerSetBuffer* layerset_buffer, const LLUUID & id); ~LLBakedUploadData() {} LLUUID mID; LLVOAvatar* mAvatar; // just backlink, don't LLPointer + LLTexLayerSet* mLayerSet; LLTexLayerSetBuffer* mLayerSetBuffer; LLUUID mWearableAssets[WT_COUNT]; U64 mStartTime; // Used to measure time baked texture upload requires diff --git a/indra/newview/llviewercamera.cpp b/indra/newview/llviewercamera.cpp index f54830f39f4bf13b7ccf81340cf08db7370ba079..72d1494d9632b9bbe2a163db08d6ea6a00591eb5 100644 --- a/indra/newview/llviewercamera.cpp +++ b/indra/newview/llviewercamera.cpp @@ -772,7 +772,7 @@ BOOL LLViewerCamera::areVertsVisible(LLViewerObject* volumep, BOOL all_verts) // changes local camera and broadcasts change /* virtual */ void LLViewerCamera::setView(F32 vertical_fov_rads) { - F32 old_fov = LLViewerCamera::getInstance()->getDefaultFOV(); + F32 old_fov = LLViewerCamera::getInstance()->getView(); // cap the FoV vertical_fov_rads = llclamp(vertical_fov_rads, getMinView(), getMaxView()); diff --git a/indra/newview/llviewerdisplay.cpp b/indra/newview/llviewerdisplay.cpp index 54c6f0a71ff2ce8f359a7d6bf8d51232e30fd97c..977582ba247d32e52259e09d1a5140ee2bd12d4a 100644 --- a/indra/newview/llviewerdisplay.cpp +++ b/indra/newview/llviewerdisplay.cpp @@ -514,7 +514,12 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) { //don't draw hud objects in this frame gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD); } - + + if (gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_HUD_PARTICLES)) + { //don't draw hud particles in this frame + gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD_PARTICLES); + } + //upkeep gl name pools LLGLNamePool::upkeepPools(); @@ -884,16 +889,26 @@ void render_hud_attachments() hud_cam.setOrigin(-1.f,0,0); hud_cam.setAxes(LLVector3(1,0,0), LLVector3(0,1,0), LLVector3(0,0,1)); LLViewerCamera::updateFrustumPlanes(hud_cam, TRUE); + + bool render_particles = gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_PARTICLES) && gSavedSettings.getBOOL("RenderHUDParticles"); //only render hud objects U32 mask = gPipeline.getRenderTypeMask(); + // turn off everything gPipeline.setRenderTypeMask(0); - if (!gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_HUD)) + // turn on HUD + gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD); + // turn on HUD particles + gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD_PARTICLES); + + // if particles are off, turn off hud-particles as well + if (!render_particles) { - gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD); + // turn back off HUD particles + gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_HUD_PARTICLES); } - BOOL has_ui = gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_UI); + bool has_ui = gPipeline.hasRenderDebugFeatureMask(LLPipeline::RENDER_DEBUG_FEATURE_UI); if (has_ui) { gPipeline.toggleRenderDebugFeature((void*) LLPipeline::RENDER_DEBUG_FEATURE_UI); diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index a50ff1df9fff2101d34db28eb30979a6e3a310e5..fe91da05faceecb623fd00c797829aaa136274df 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -212,6 +212,7 @@ #include "llwlanimator.h" #include "llwlparammanager.h" #include "llwaterparammanager.h" +#include "llfloaternotificationsconsole.h" #include "lltexlayer.h" @@ -297,6 +298,8 @@ void handle_dump_group_info(void *); void handle_dump_capabilities_info(void *); void handle_dump_focus(void*); +// Advanced->Consoles menu +void handle_show_notifications_console(void*); void handle_region_dump_settings(void*); void handle_region_dump_temp_asset_data(void*); void handle_region_clear_temp_asset_data(void*); @@ -746,7 +749,16 @@ void init_client_menu(LLMenuGL* menu) (void*)gDebugView->mMemoryView, '0', MASK_CONTROL|MASK_SHIFT ) ); #endif + + sub->appendSeparator(); + + // Debugging view for unified notifications + sub->append(new LLMenuItemCallGL("Notifications Console...", + &handle_show_notifications_console, NULL, NULL, '5', MASK_CONTROL|MASK_SHIFT )); + + sub->appendSeparator(); + sub->append(new LLMenuItemCallGL("Region Info to Debug Console", &handle_region_dump_settings, NULL)); sub->append(new LLMenuItemCallGL("Group Info to Debug Console", @@ -1023,7 +1035,8 @@ void init_debug_ui_menu(LLMenuGL* menu) menu->appendSeparator(); menu->append(new LLMenuItemCallGL("Web Browser Test", &handle_web_browser_test)); - menu->append(new LLMenuItemCallGL("Buy Currency Test", &handle_buy_currency_test)); + // commented out until work is complete: DEV-32268 + // menu->append(new LLMenuItemCallGL("Buy Currency Test", &handle_buy_currency_test)); menu->append(new LLMenuItemCallGL("Editable UI", &edit_ui)); menu->append(new LLMenuItemCallGL( "Dump SelectMgr", &dump_select_mgr)); menu->append(new LLMenuItemCallGL( "Dump Inventory", &dump_inventory)); @@ -1592,15 +1605,20 @@ class LLObjectEnableTouch : public view_listener_t // Update label based on the node touch name if available. LLSelectNode* node = LLSelectMgr::getInstance()->getSelection()->getFirstRootNode(); + + std::string touch_text; if (node && node->mValid && !node->mTouchName.empty()) { - gMenuHolder->childSetText("Object Touch", node->mTouchName); + touch_text = node->mTouchName; } else { - gMenuHolder->childSetText("Object Touch", userdata["data"].asString()); + touch_text = userdata["data"].asString(); } + gMenuHolder->childSetText("Object Touch", touch_text); + gMenuHolder->childSetText("Attachment Object Touch", touch_text); + return true; } }; @@ -2605,6 +2623,11 @@ void handle_region_dump_settings(void*) } } +void handle_show_notifications_console(void *) +{ + LLFloaterNotificationConsole::showInstance(); +} + void handle_dump_group_info(void *) { llinfos << "group " << gAgent.mGroupName << llendl; @@ -2865,7 +2888,9 @@ class LLEditEnableCustomizeAvatar : public view_listener_t { bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata) { - bool new_value = gAgent.areWearablesLoaded(); + bool new_value = (gAgent.getAvatarObject() && + gAgent.getAvatarObject()->isFullyLoaded() && + gAgent.areWearablesLoaded()); gMenuHolder->findControl(userdata["control"].asString())->setValue(new_value); return true; } diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 520de0e403e2124c559bf5c265636526a013f84a..bbfd480e0bbf5ab51916ace4eaec5ba3b87409b7 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -5246,6 +5246,7 @@ void process_script_dialog(LLMessageSystem* msg, void**) S32 button_count = msg->getNumberOfBlocks("Buttons"); if (button_count > SCRIPT_DIALOG_MAX_BUTTONS) { + llwarns << "Too many script dialog buttons - omitting some" << llendl; button_count = SCRIPT_DIALOG_MAX_BUTTONS; } @@ -5454,7 +5455,15 @@ void process_covenant_reply(LLMessageSystem* msg, void**) LLFloaterBuyLand::updateEstateName(estate_name); // standard message, not from system - std::string last_modified = std::string("Last Modified ") + formatted_time((time_t)covenant_timestamp); + std::string last_modified; + if (covenant_timestamp == 0) + { + last_modified = LLTrans::getString("covenant_never_modified"); + } + else + { + last_modified = LLTrans::getString("covenant_modified") + " " + formatted_time((time_t)covenant_timestamp); + } LLPanelEstateCovenant::updateLastModified(last_modified); LLPanelLandCovenant::updateLastModified(last_modified); diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index 728509e39ca671d7e94c4873c9a22e825037cd1e..d64700b523addab0b6e7cadd44e0be6df2e288f4 100644 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -569,6 +569,7 @@ LLViewerTextEditor::LLViewerTextEditor(const std::string& name, const LLFontGL* font, BOOL allow_embedded_items) : LLTextEditor(name, rect, max_length, default_text, font, allow_embedded_items), + mDragItemChar(0), mDragItemSaved(FALSE), mInventoryCallback(new LLEmbeddedNotecardOpener) { @@ -694,6 +695,7 @@ BOOL LLViewerTextEditor::handleMouseDown(S32 x, S32 y, MASK mask) if (item_at_pos) { mDragItem = item_at_pos; + mDragItemChar = wc; mDragItemSaved = LLEmbeddedItems::getEmbeddedItemSaved(wc); gFocusMgr.setMouseCapture( this ); mMouseDownX = x; @@ -907,8 +909,9 @@ BOOL LLViewerTextEditor::handleMouseUp(S32 x, S32 y, MASK mask) { if(mDragItemSaved) { - openEmbeddedItem(mDragItem); - }else + openEmbeddedItem(mDragItem, mDragItemChar); + } + else { showUnsavedAlertDialog(mDragItem); } @@ -1060,7 +1063,15 @@ BOOL LLViewerTextEditor::handleDragAndDrop(S32 x, S32 y, MASK mask, std::string& tooltip_msg) { BOOL handled = FALSE; - + + LLToolDragAndDrop::ESource source = LLToolDragAndDrop::getInstance()->getSource(); + if (LLToolDragAndDrop::SOURCE_NOTECARD == source) + { + // We currently do not handle dragging items from one notecard to another + // since items in a notecard must be in Inventory to be verified. See DEV-2891. + return FALSE; + } + if (mTakesNonScrollClicks) { if (getEnabled() && acceptsTextInput()) @@ -1096,7 +1107,7 @@ BOOL LLViewerTextEditor::handleDragAndDrop(S32 x, S32 y, MASK mask, case DAD_GESTURE: { LLInventoryItem *item = (LLInventoryItem *)cargo_data; - if( allowsEmbeddedItems() ) + if( item && allowsEmbeddedItems() ) { U32 mask_next = item->getPermissions().getMaskNextOwner(); if((mask_next & PERM_ITEM_UNRESTRICTED) == PERM_ITEM_UNRESTRICTED) @@ -1302,13 +1313,14 @@ BOOL LLViewerTextEditor::openEmbeddedItemAtPos(S32 pos) { if( pos < getLength()) { - LLInventoryItem* item = LLEmbeddedItems::getEmbeddedItem( getWChar(pos) ); + llwchar wc = getWChar(pos); + LLInventoryItem* item = LLEmbeddedItems::getEmbeddedItem( wc ); if( item ) { - BOOL saved = LLEmbeddedItems::getEmbeddedItemSaved( getWChar(pos) ); + BOOL saved = LLEmbeddedItems::getEmbeddedItemSaved( wc ); if (saved) { - return openEmbeddedItem(item); + return openEmbeddedItem(item, wc); } else { @@ -1320,25 +1332,25 @@ BOOL LLViewerTextEditor::openEmbeddedItemAtPos(S32 pos) } -BOOL LLViewerTextEditor::openEmbeddedItem(LLInventoryItem* item) +BOOL LLViewerTextEditor::openEmbeddedItem(LLInventoryItem* item, llwchar wc) { switch( item->getType() ) { case LLAssetType::AT_TEXTURE: - openEmbeddedTexture( item ); + openEmbeddedTexture( item, wc ); return TRUE; case LLAssetType::AT_SOUND: - openEmbeddedSound( item ); + openEmbeddedSound( item, wc ); return TRUE; case LLAssetType::AT_NOTECARD: - openEmbeddedNotecard( item ); + openEmbeddedNotecard( item, wc ); return TRUE; case LLAssetType::AT_LANDMARK: - openEmbeddedLandmark( item ); + openEmbeddedLandmark( item, wc ); return TRUE; case LLAssetType::AT_LSL_TEXT: @@ -1347,7 +1359,7 @@ BOOL LLViewerTextEditor::openEmbeddedItem(LLInventoryItem* item) case LLAssetType::AT_BODYPART: case LLAssetType::AT_ANIMATION: case LLAssetType::AT_GESTURE: - showCopyToInvDialog( item ); + showCopyToInvDialog( item, wc ); return TRUE; default: return FALSE; @@ -1356,7 +1368,7 @@ BOOL LLViewerTextEditor::openEmbeddedItem(LLInventoryItem* item) } -void LLViewerTextEditor::openEmbeddedTexture( LLInventoryItem* item ) +void LLViewerTextEditor::openEmbeddedTexture( LLInventoryItem* item, llwchar wc ) { // See if we can bring an existing preview to the front // *NOTE: Just for embedded Texture , we should use getAssetUUID(), @@ -1384,7 +1396,7 @@ void LLViewerTextEditor::openEmbeddedTexture( LLInventoryItem* item ) } } -void LLViewerTextEditor::openEmbeddedSound( LLInventoryItem* item ) +void LLViewerTextEditor::openEmbeddedSound( LLInventoryItem* item, llwchar wc ) { // Play sound locally LLVector3d lpos_global = gAgent.getPositionGlobal(); @@ -1393,18 +1405,18 @@ void LLViewerTextEditor::openEmbeddedSound( LLInventoryItem* item ) { gAudiop->triggerSound(item->getAssetUUID(), gAgentID, SOUND_GAIN, LLAudioEngine::AUDIO_TYPE_UI, lpos_global); } - showCopyToInvDialog( item ); + showCopyToInvDialog( item, wc ); } -void LLViewerTextEditor::openEmbeddedLandmark( LLInventoryItem* item ) +void LLViewerTextEditor::openEmbeddedLandmark( LLInventoryItem* item, llwchar wc ) { std::string title = std::string(" ") + LLLandmarkBridge::prefix() + item->getName(); open_landmark((LLViewerInventoryItem*)item, title, FALSE, item->getUUID(), TRUE); } -void LLViewerTextEditor::openEmbeddedNotecard( LLInventoryItem* item ) +void LLViewerTextEditor::openEmbeddedNotecard( LLInventoryItem* item, llwchar wc ) { copyInventory(item, gInventoryCallbacks.registerCB(mInventoryCallback)); } @@ -1432,11 +1444,12 @@ bool LLViewerTextEditor::onNotecardDialog(const LLSD& notification, const LLSD& -void LLViewerTextEditor::showCopyToInvDialog( LLInventoryItem* item ) +void LLViewerTextEditor::showCopyToInvDialog( LLInventoryItem* item, llwchar wc ) { LLSD payload; - payload["item_id"] = item->getUUID(); - payload["notecard_id"] = mNotecardInventoryID; + LLUUID item_id = item->getUUID(); + payload["item_id"] = item_id; + payload["item_wc"] = LLSD::Integer(wc); LLNotifications::instance().add( "ConfirmItemCopy", LLSD(), payload, boost::bind(&LLViewerTextEditor::onCopyToInvDialog, this, _1, _2)); } @@ -1446,8 +1459,11 @@ bool LLViewerTextEditor::onCopyToInvDialog(const LLSD& notification, const LLSD& S32 option = LLNotification::getSelectedOption(notification, response); if( 0 == option ) { - LLInventoryItem* itemp = gInventory.getItem(notification["payload"]["item_id"].asUUID()); - copyInventory(itemp); + LLUUID item_id = notification["payload"]["item_id"].asUUID(); + llwchar wc = llwchar(notification["payload"]["item_wc"].asInteger()); + LLInventoryItem* itemp = LLEmbeddedItems::getEmbeddedItem(wc); + if (itemp) + copyInventory(itemp); } return false; } diff --git a/indra/newview/llviewertexteditor.h b/indra/newview/llviewertexteditor.h index 1ed60a57feb5cfb07502cce4821bc957a3572e2a..f29caee602e56afcc7ec48d1e1c108f2101771ad 100644 --- a/indra/newview/llviewertexteditor.h +++ b/indra/newview/llviewertexteditor.h @@ -105,21 +105,22 @@ class LLViewerTextEditor : public LLTextEditor BOOL getEmbeddedItemToolTipAtPos(S32 pos, LLWString &wmsg) const; BOOL openEmbeddedItemAtPos( S32 pos ); - BOOL openEmbeddedItem(LLInventoryItem* item); + BOOL openEmbeddedItem(LLInventoryItem* item, llwchar wc); S32 insertEmbeddedItem(S32 pos, LLInventoryItem* item); - void openEmbeddedTexture( LLInventoryItem* item ); - void openEmbeddedSound( LLInventoryItem* item ); - void openEmbeddedLandmark( LLInventoryItem* item ); - void openEmbeddedNotecard( LLInventoryItem* item); - void showCopyToInvDialog( LLInventoryItem* item ); + void openEmbeddedTexture( LLInventoryItem* item, llwchar wc ); + void openEmbeddedSound( LLInventoryItem* item, llwchar wc ); + void openEmbeddedLandmark( LLInventoryItem* item, llwchar wc ); + void openEmbeddedNotecard( LLInventoryItem* item, llwchar wc); + void showCopyToInvDialog( LLInventoryItem* item, llwchar wc ); void showUnsavedAlertDialog( LLInventoryItem* item ); bool onCopyToInvDialog(const LLSD& notification, const LLSD& response ); static bool onNotecardDialog(const LLSD& notification, const LLSD& response ); LLPointer<LLInventoryItem> mDragItem; + llwchar mDragItemChar; BOOL mDragItemSaved; class LLEmbeddedItems* mEmbeddedItemList; diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index c827d3fcf4c44057f5c23a6d4663d1738e39c29a..f2fcad88615eeb07db218b2385fca2ecfa8500f9 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1424,29 +1424,10 @@ void LLViewerWindow::initBase() // Console llassert( !gConsole ); - LLRect console_rect = full_window; - console_rect.mTop -= 24; - - console_rect.mBottom += getChatConsoleBottomPad(); - - // TODO: Eliminate magic constants - please used named constants if changing this - don't be a programmer hater - console_rect.mLeft += 24; //gSavedSettings.getS32("StatusBarButtonWidth") + gSavedSettings.getS32("StatusBarPad"); - - if (gSavedSettings.getBOOL("ChatFullWidth")) - { - console_rect.mRight -= 10; - } - else - { - // Make console rect somewhat narrow so having inventory open is - // less of a problem. - console_rect.mRight = console_rect.mLeft + 2 * width / 3; - } - gConsole = new LLConsole( "console", gSavedSettings.getS32("ConsoleBufferSize"), - console_rect, + getChatConsoleRect(), gSavedSettings.getS32("ChatFontSize"), gSavedSettings.getF32("ChatPersistTime") ); gConsole->setFollows(FOLLOWS_LEFT | FOLLOWS_RIGHT | FOLLOWS_BOTTOM); @@ -2205,12 +2186,12 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask) } } - // Debugging view for unified notifications -- we need Ctrl+Shift+Alt to get it - // since Ctrl+Shift maps to Nighttime under windlight. + // Debugging view for unified notifications: CTRL-SHIFT-5 + // *FIXME: Having this special-cased right here (just so this can be invoked from the login screen) sucks. if ((MASK_SHIFT & mask) - && (MASK_CONTROL & mask) - && (MASK_ALT & mask) - && ('N' == key || 'n' == key)) + && (!(MASK_ALT & mask)) + && (MASK_CONTROL & mask) + && ('5' == key)) { LLFloaterNotificationConsole::showInstance(); return TRUE; @@ -2811,7 +2792,7 @@ BOOL LLViewerWindow::handlePerFrameHover() } // Always update console - LLRect console_rect = gConsole->getRect(); + LLRect console_rect = getChatConsoleRect(); console_rect.mBottom = gHUDView->getRect().mBottom + getChatConsoleBottomPad(); gConsole->reshape(console_rect.getWidth(), console_rect.getHeight()); gConsole->setRect(console_rect); @@ -4823,6 +4804,33 @@ S32 LLViewerWindow::getChatConsoleBottomPad() return offset; } +LLRect LLViewerWindow::getChatConsoleRect() +{ + LLRect full_window(0, getWindowHeight(), getWindowWidth(), 0); + LLRect console_rect = full_window; + + const S32 CONSOLE_PADDING_TOP = 24; + const S32 CONSOLE_PADDING_LEFT = 24; + const S32 CONSOLE_PADDING_RIGHT = 10; + + console_rect.mTop -= CONSOLE_PADDING_TOP; + console_rect.mBottom += getChatConsoleBottomPad(); + + console_rect.mLeft += CONSOLE_PADDING_LEFT; + + if (gSavedSettings.getBOOL("ChatFullWidth")) + { + console_rect.mRight -= CONSOLE_PADDING_RIGHT; + } + else + { + // Make console rect somewhat narrow so having inventory open is + // less of a problem. + console_rect.mRight = console_rect.mLeft + 2 * getWindowWidth() / 3; + } + + return console_rect; +} //---------------------------------------------------------------------------- diff --git a/indra/newview/llviewerwindow.h b/indra/newview/llviewerwindow.h index e0ddac6fa5d667866e9a501a5594e3241671eaec..509a7c4884f340482aa65a6e8157a241ba99cef1 100644 --- a/indra/newview/llviewerwindow.h +++ b/indra/newview/llviewerwindow.h @@ -125,7 +125,7 @@ class LLPickInfo }; -#define MAX_IMAGE_SIZE 6144 //6 * 1024, max snapshot image size 6144 * 6144 +static const U32 MAX_SNAPSHOT_IMAGE_SIZE = 6 * 1024; // max snapshot image size 6144 * 6144 class LLViewerWindow : public LLWindowCallbacks { @@ -371,6 +371,7 @@ class LLViewerWindow : public LLWindowCallbacks void initFonts(F32 zoom_factor = 1.f); void schedulePick(LLPickInfo& pick_info); S32 getChatConsoleBottomPad(); // Vertical padding for child console rect, varied by bottom clutter + LLRect getChatConsoleRect(); // Get optimal cosole rect. public: LLWindow* mWindow; // graphical window object diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index b06652a5dcf1d95236ce4be4b4b35af30e5bdd60..168b0056e5a2383764d79d775d13a2b6fc37415d 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -769,6 +769,7 @@ LLVOAvatar::LLVOAvatar(const LLUUID& id, mBakedTextureData[i].mLastTextureIndex = IMG_DEFAULT_AVATAR; mBakedTextureData[i].mTexLayerSet = NULL; mBakedTextureData[i].mIsLoaded = false; + mBakedTextureData[i].mIsUsed = false; mBakedTextureData[i].mMaskTexName = 0; mBakedTextureData[i].mTextureIndex = getTextureIndex((EBakedTextureIndex)i); } @@ -1451,6 +1452,7 @@ void LLVOAvatar::getSpatialExtents(LLVector3& newMin, LLVector3& newMax) LLVector3 pos = getRenderPosition(); newMin = pos - buffer; newMax = pos + buffer; + float max_attachment_span = DEFAULT_MAX_PRIM_SCALE * 5.0f; //stretch bounding box by joint positions for (polymesh_map_t::iterator i = mMeshes.begin(); i != mMeshes.end(); ++i) @@ -1487,8 +1489,18 @@ void LLVOAvatar::getSpatialExtents(LLVector3& newMin, LLVector3& newMax) if (bridge) { const LLVector3* ext = bridge->getSpatialExtents(); - update_min_max(newMin,newMax,ext[0]); - update_min_max(newMin,newMax,ext[1]); + LLVector3 distance = (ext[1] - ext[0]); + + // Only add the prim to spatial extents calculations if it isn't a megaprim. + // max_attachment_span calculated at the start of the function + // (currently 5 times our max prim size) + if (distance.mV[0] < max_attachment_span + && distance.mV[1] < max_attachment_span + && distance.mV[2] < max_attachment_span) + { + update_min_max(newMin,newMax,ext[0]); + update_min_max(newMin,newMax,ext[1]); + } } } } @@ -4140,9 +4152,13 @@ U32 LLVOAvatar::renderSkinned(EAvatarRenderPass pass) if (pass == AVATAR_RENDER_PASS_SINGLE) { const bool should_alpha_mask = mHasBakedHair && isTextureDefined(TEX_HEAD_BAKED) && isTextureDefined(TEX_UPPER_BAKED) - && isTextureDefined(TEX_LOWER_BAKED) && mBakedTextureData[BAKED_HEAD].mIsLoaded + && isTextureDefined(TEX_LOWER_BAKED) + && mBakedTextureData[BAKED_HEAD].mIsLoaded && mBakedTextureData[BAKED_UPPER].mIsLoaded && mBakedTextureData[BAKED_LOWER].mIsLoaded - && !LLDrawPoolAlpha::sShowDebugAlpha; // Don't alpha mask if "Highlight Transparent" checked + && mBakedTextureData[BAKED_HEAD].mIsUsed + && mBakedTextureData[BAKED_UPPER].mIsUsed && mBakedTextureData[BAKED_LOWER].mIsUsed + && !LLDrawPoolAlpha::sShowDebugAlpha // Don't alpha mask if "Highlight Transparent" checked + && !(isSelf() && gAgent.cameraCustomizeAvatar()); // don't alpha mask if in customize mode LLGLState test(GL_ALPHA_TEST, should_alpha_mask); @@ -4179,11 +4195,8 @@ U32 LLVOAvatar::renderSkinned(EAvatarRenderPass pass) if (!LLDrawPoolAvatar::sSkipTransparent || LLPipeline::sImpostorRender) { - if (!mIsDummy) - { - LLGLEnable blend(GL_BLEND); - LLGLEnable test(GL_ALPHA_TEST); - } + LLGLState blend(GL_BLEND, !mIsDummy); + LLGLState test(GL_ALPHA_TEST, !mIsDummy); num_indices += renderTransparent(first_pass); } } @@ -4261,7 +4274,11 @@ U32 LLVOAvatar::renderRigid() if (isTextureVisible(TEX_EYES_BAKED) || mIsDummy) { // If the meshes need to be drawn, enable alpha masking but not blending - bool should_alpha_mask = mHasBakedHair && mBakedTextureData[BAKED_EYES].mIsLoaded; + bool should_alpha_mask = mHasBakedHair + && mBakedTextureData[BAKED_EYES].mIsLoaded + && mBakedTextureData[BAKED_EYES].mIsUsed + && !(isSelf() && gAgent.cameraCustomizeAvatar()); + LLGLState test(GL_ALPHA_TEST, should_alpha_mask); if (should_alpha_mask) @@ -6896,6 +6913,7 @@ void LLVOAvatar::updateMeshTextures() if (use_lkg_baked_layer[i] && !self_customizing ) { LLViewerImage* baked_img = gImageList.getImageFromHost( mBakedTextureData[i].mLastTextureIndex, target_host ); + mBakedTextureData[i].mIsUsed = TRUE; for (U32 k=0; k < mBakedTextureData[i].mMeshes.size(); k++) { mBakedTextureData[i].mMeshes[k]->setTexture( baked_img ); @@ -6925,6 +6943,7 @@ void LLVOAvatar::updateMeshTextures() { mBakedTextureData[i].mTexLayerSet->createComposite(); mBakedTextureData[i].mTexLayerSet->setUpdatesEnabled( TRUE ); + mBakedTextureData[i].mIsUsed = FALSE; for (U32 k=0; k < mBakedTextureData[i].mMeshes.size(); k++) { mBakedTextureData[i].mMeshes[k]->setLayerSet( mBakedTextureData[i].mTexLayerSet ); @@ -6935,7 +6954,7 @@ void LLVOAvatar::updateMeshTextures() // ! BACKWARDS COMPATIBILITY ! // Workaround for viewing avatars from old viewers that haven't baked hair textures. // if (!isTextureDefined(mBakedTextureData[BAKED_HAIR].mTextureIndex)) - if (!is_layer_baked[BAKED_HAIR]) + if (!is_layer_baked[BAKED_HAIR] || self_customizing) { const LLColor4 color = mTexHairColor ? mTexHairColor->getColor() : LLColor4(1,1,1,1); LLViewerImage* hair_img = getTEImage( TEX_HAIR ); @@ -6948,10 +6967,6 @@ void LLVOAvatar::updateMeshTextures() } else { - for (U32 i = 0; i < mBakedTextureData[BAKED_HAIR].mMeshes.size(); i++) - { - mBakedTextureData[BAKED_HAIR].mMeshes[i]->setColor( 1.f, 1.f, 1.f, 1.f ); - } mHasBakedHair = TRUE; } @@ -7761,7 +7776,7 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys ) } LLMemType mt(LLMemType::MTYPE_AVATAR); - + // llinfos << "processAvatarAppearance start " << mID << llendl; BOOL is_first_appearance_message = !mFirstAppearanceMessageReceived; @@ -7789,6 +7804,18 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys ) unpackTEMessage(mesgsys, _PREHASH_ObjectData); // dumpAvatarTEs( "POST processAvatarAppearance()" ); + // prevent the overwriting of valid baked textures with invalid baked textures + for (U8 baked_index = 0; baked_index < mBakedTextureData.size(); baked_index++) + { + if (!isTextureDefined(mBakedTextureData[baked_index].mTextureIndex) + && mBakedTextureData[baked_index].mLastTextureIndex != IMG_DEFAULT + && baked_index != BAKED_SKIRT) + { + setTEImage(mBakedTextureData[baked_index].mTextureIndex, gImageList.getImage(mBakedTextureData[baked_index].mLastTextureIndex)); + } + } + + //llinfos << "Received AvatarAppearance: " << (mIsSelf ? "(self): " : "(other): ") << std::endl << // (isTextureDefined(TEX_HEAD_BAKED) ? "HEAD " : "head " ) << (getTEImage(TEX_HEAD_BAKED)->getID()) << std::endl << // (isTextureDefined(TEX_UPPER_BAKED) ? "UPPER " : "upper " ) << (getTEImage(TEX_UPPER_BAKED)->getID()) << std::endl << @@ -8079,6 +8106,7 @@ void LLVOAvatar::useBakedTexture( const LLUUID& id ) if (id == image_baked->getID()) { mBakedTextureData[i].mIsLoaded = true; + mBakedTextureData[i].mIsUsed = true; mBakedTextureData[i].mLastTextureIndex = id; for (U32 k = 0; k < mBakedTextureData[i].mMeshes.size(); k++) { @@ -8095,6 +8123,17 @@ void LLVOAvatar::useBakedTexture( const LLUUID& id ) { setLocalTexture(*local_tex_iter, getTEImage(*local_tex_iter), TRUE); } + + // ! BACKWARDS COMPATIBILITY ! + // Workaround for viewing avatars from old viewers that haven't baked hair textures. + // This is paired with similar code in updateMeshTextures that sets hair mesh color. + if (i == BAKED_HAIR) + { + for (U32 i = 0; i < mBakedTextureData[BAKED_HAIR].mMeshes.size(); i++) + { + mBakedTextureData[BAKED_HAIR].mMeshes[i]->setColor( 1.f, 1.f, 1.f, 1.f ); + } + } } } diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index 50eec80ba7da854ca5dead93f4d41cf740a58ddf..f8b2c068ffa3aac9687cbef833a85872af113c0e 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -699,6 +699,7 @@ class LLVOAvatar : LLUUID mLastTextureIndex; LLTexLayerSet* mTexLayerSet; bool mIsLoaded; + bool mIsUsed; LLVOAvatarDefines::ETextureIndex mTextureIndex; U32 mMaskTexName; // Stores pointers to the joint meshes that this baked texture deals with diff --git a/indra/newview/llvopartgroup.cpp b/indra/newview/llvopartgroup.cpp index 82003daaf46a4a95d9ba6a8064706a5435e5959a..29036f4947bf0e7717846a3f7e2644aa304fb736 100644 --- a/indra/newview/llvopartgroup.cpp +++ b/indra/newview/llvopartgroup.cpp @@ -365,7 +365,7 @@ LLParticlePartition::LLParticlePartition() LLHUDParticlePartition::LLHUDParticlePartition() : LLParticlePartition() { - mDrawableType = LLPipeline::RENDER_TYPE_HUD; + mDrawableType = LLPipeline::RENDER_TYPE_HUD_PARTICLES; mPartitionType = LLViewerRegion::PARTITION_HUD_PARTICLE; } @@ -509,7 +509,7 @@ LLDrawable* LLVOHUDPartGroup::createDrawable(LLPipeline *pipeline) { pipeline->allocDrawable(this); mDrawable->setLit(FALSE); - mDrawable->setRenderType(LLPipeline::RENDER_TYPE_HUD); + mDrawable->setRenderType(LLPipeline::RENDER_TYPE_HUD_PARTICLES); return mDrawable; } diff --git a/indra/newview/llvotree.cpp b/indra/newview/llvotree.cpp index 3b76127eb25de27131e4ef28be6bab97702ee789..3fd5054fd1143a46b17403b29bb5039c74579bff 100644 --- a/indra/newview/llvotree.cpp +++ b/indra/newview/llvotree.cpp @@ -329,6 +329,9 @@ U32 LLVOTree::processUpdateMessage(LLMessageSystem *mesgsys, mBillboardRatio = sSpeciesTable[mSpecies]->mBillboardRatio; mTrunkAspect = sSpeciesTable[mSpecies]->mTrunkAspect; mBranchAspect = sSpeciesTable[mSpecies]->mBranchAspect; + + // position change not caused by us, etc. make sure to rebuild. + gPipeline.markRebuild(mDrawable, LLDrawable::REBUILD_ALL); return retval; } @@ -397,6 +400,31 @@ BOOL LLVOTree::idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time) { gPipeline.markRebuild(mDrawable, LLDrawable::REBUILD_ALL, FALSE); } + else + { + // we're not animating but we may *still* need to + // regenerate the mesh if we moved, since position + // and rotation are baked into the mesh. + // *TODO: I don't know what's so special about trees + // that they don't get REBUILD_POSITION automatically + // at a higher level. + const LLVector3 &this_position = getPositionAgent(); + if (this_position != mLastPosition) + { + gPipeline.markRebuild(mDrawable, LLDrawable::REBUILD_POSITION); + mLastPosition = this_position; + } + else + { + const LLQuaternion &this_rotation = getRotation(); + + if (this_rotation != mLastRotation) + { + gPipeline.markRebuild(mDrawable, LLDrawable::REBUILD_POSITION); + mLastRotation = this_rotation; + } + } + } } mTrunkLOD = trunk_LOD; diff --git a/indra/newview/llvotree.h b/indra/newview/llvotree.h index 473f1c340ec84379592fbda74d3bcb0db7a1556e..42a6d54f6239b79d7bf8279aa7634e9f1a357168 100644 --- a/indra/newview/llvotree.h +++ b/indra/newview/llvotree.h @@ -179,6 +179,11 @@ class LLVOTree : public LLViewerObject F32 mTrunkAspect; // Ratio between width/length of trunk F32 mBranchAspect; // Ratio between width/length of branch F32 mRandomLeafRotate; // How much to randomly rotate leaves about arbitrary axis + + // cache last position+rotation so we can detect the need for a + // complete rebuild when not animating + LLVector3 mLastPosition; + LLQuaternion mLastRotation; U32 mFrameCount; diff --git a/indra/newview/llworldmapview.cpp b/indra/newview/llworldmapview.cpp index 99f559cc79099eec3c5a42b41ea47c6eb45f3672..2e18b710a72ea0accaaa4f1894c58d2a682b462a 100644 --- a/indra/newview/llworldmapview.cpp +++ b/indra/newview/llworldmapview.cpp @@ -305,8 +305,8 @@ void LLWorldMapView::draw() const S32 width = getRect().getWidth(); const S32 height = getRect().getHeight(); - const S32 half_width = width / 2; - const S32 half_height = height / 2; + const F32 half_width = F32(width) / 2.0f; + const F32 half_height = F32(height) / 2.0f; LLVector3d camera_global = gAgent.getCameraPositionGlobal(); LLLocalClipRect clip(getLocalRect()); @@ -350,8 +350,8 @@ void LLWorldMapView::draw() // Find x and y position relative to camera's center. LLVector3d rel_region_pos = origin_global - camera_global; - S32 relative_x = lltrunc((rel_region_pos.mdV[0] / REGION_WIDTH_METERS) * gMapScale); - S32 relative_y = lltrunc((rel_region_pos.mdV[1] / REGION_WIDTH_METERS) * gMapScale); + F32 relative_x = (rel_region_pos.mdV[0] / REGION_WIDTH_METERS) * gMapScale; + F32 relative_y = (rel_region_pos.mdV[1] / REGION_WIDTH_METERS) * gMapScale; F32 pix_width = gMapScale*(layer->LayerExtents.getWidth() + 1); F32 pix_height = gMapScale*(layer->LayerExtents.getHeight() + 1); @@ -456,8 +456,8 @@ void LLWorldMapView::draw() // Find x and y position relative to camera's center. LLVector3d rel_region_pos = origin_global - camera_global; - S32 relative_x = lltrunc((rel_region_pos.mdV[0] / REGION_WIDTH_METERS) * gMapScale); - S32 relative_y = lltrunc((rel_region_pos.mdV[1] / REGION_WIDTH_METERS) * gMapScale); + F32 relative_x = (rel_region_pos.mdV[0] / REGION_WIDTH_METERS) * gMapScale; + F32 relative_y = (rel_region_pos.mdV[1] / REGION_WIDTH_METERS) * gMapScale; // When the view isn't panned, 0,0 = center of rectangle F32 bottom = sPanY + half_height + relative_y; diff --git a/indra/newview/pipeline.h b/indra/newview/pipeline.h index 0ec4e43806433f8d88cbb58055cab654e43fe4f7..1a32b30831cfe026100be5dce0157196ba73aab6 100644 --- a/indra/newview/pipeline.h +++ b/indra/newview/pipeline.h @@ -323,6 +323,7 @@ class LLPipeline RENDER_TYPE_VOLUME, RENDER_TYPE_PARTICLES, RENDER_TYPE_CLOUDS, + RENDER_TYPE_HUD_PARTICLES }; enum LLRenderDebugFeatureMask diff --git a/indra/newview/skins/default/xui/de/floater_about.xml b/indra/newview/skins/default/xui/de/floater_about.xml index 238dfd5baf7bcd3f9d64c27858bb33b307f2ff33..c3935882af678cfb65529e97541a02849e845f97 100644 --- a/indra/newview/skins/default/xui/de/floater_about.xml +++ b/indra/newview/skins/default/xui/de/floater_about.xml @@ -20,13 +20,14 @@ SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) xmlrpc-epi Copyright (C) 2000 Epinions, Inc. zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. +google-perftools Copyright (c) 2005, Google Inc. Alle Rechte vorbehalten. Details siehe licenses.txt. Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf.G.722.1 Anhang C) -I get by with a little help from my friends. (etwa: Ich überlebe mit ein bisschen Unterstützung von meinen Freunden.) --Richard Starkey +Um im Geschäftsleben erfolreich zu sein, sei kühn, sei schnell, sei anders. --Henry Marchant </text_editor> <text name="you_are_at"> Sie befinden sich in [POSITION] diff --git a/indra/newview/skins/default/xui/de/floater_about_land.xml b/indra/newview/skins/default/xui/de/floater_about_land.xml index c2b22caa2090ba963c2b7ec539ee114a8e532f38..93e7297fd230ab5bb4b9ce8fb57f0957392cd619 100644 --- a/indra/newview/skins/default/xui/de/floater_about_land.xml +++ b/indra/newview/skins/default/xui/de/floater_about_land.xml @@ -8,6 +8,18 @@ <text name="Description:"> Beschreibung: </text> + <text name="LandType"> + Typ: + </text> + <text name="LandTypeText"> + Mainland / Homestead + </text> + <text name="ContentRating"> + Einstufung: + </text> + <text name="ContentRatingText"> + Adult + </text> <text name="Owner:"> Eigentümer: </text> @@ -29,9 +41,10 @@ Nicht zu verkaufen. </text> <text name="For Sale: Price L$[PRICE]."> - Preis: [PRICE] L$. + Preis: [PRICE] L$ ([PRICE_PER_SQM] L$/qm.). </text> - <button label="Land verkaufen..." label_selected="Land verkaufen..." name="Sell Land..." bottom="-200"/> + <text name="SalePending"/> + <button bottom="-222" label="Land verkaufen..." label_selected="Land verkaufen..." name="Sell Land..."/> <text name="For sale to"> Zum Verkauf an: [BUYER] </text> @@ -41,7 +54,7 @@ <text name="Selling with no objects in parcel." width="237"> Objekte sind im Verkauf nicht eingeschlossen. </text> - <button label="Landverkauf abbrechen" label_selected="Landverkauf abbrechen" name="Cancel Land Sale" bottom="-204"/> + <button bottom="-222" label="Landverkauf abbrechen" label_selected="Landverkauf abbrechen" name="Cancel Land Sale"/> <text name="Claimed:"> Gekauft am: </text> @@ -52,7 +65,7 @@ Gebiet: </text> <text name="PriceText"> - 4048 qm + 4048 qm. </text> <text name="Traffic:"> Traffic: @@ -76,7 +89,7 @@ Gebiet: </string> <string name="area_size_text"> - [AREA] qm + [AREA] qm. </string> <string name="auction_id_text"> Auktions-ID: [ID] @@ -108,17 +121,11 @@ </string> </panel> <panel label="Vertrag" name="land_covenant_panel"> - <text name="covenant_timestamp_text"> - Letzte Änderung am Mittwoch, den 31. Dez. 1969, 16:00:00 - </text> - <text name="region_name_lbl"> - Region: - </text> - <text name="region_name_text"> - leyla + <text name="estate_section_lbl"> + Grundstück: </text> <text name="estate_name_lbl"> - Grundstück: + Name: </text> <text name="estate_name_text"> Mainland @@ -129,15 +136,46 @@ <text name="estate_owner_text"> (keiner) </text> + <text_editor name="covenant_editor"> + Für dieses Grundstück fehlt der Vertrag. + </text_editor> + <text name="covenant_timestamp_text"> + Letzte Änderung am Mittwoch, den 31. Dez. 1969, 16:00:00 + </text> + <text name="region_section_lbl"> + Region: + </text> + <text name="region_name_lbl"> + Name: + </text> + <text name="region_name_text"> + leyla + </text> + <text name="region_landtype_lbl"> + Typ: + </text> + <text name="region_landtype_text"> + Mainland / Homestead + </text> + <text name="region_maturity_lbl"> + Einstufung: + </text> + <text name="region_maturity_text"> + Adult + </text> + <text name="resellable_lbl"> + Wiederverkauf: + </text> <text name="resellable_clause"> - Gekauftes Land in dieser Region kann nicht wiederverkauft werden. + Land in dieser Region kann nicht wiederverkauft werden. + </text> + <text name="changeable_lbl"> + Unterteilen: </text> <text name="changeable_clause"> - Gekauftes Land in dieser Region kann nicht zusammengelegt/geteilt werden. + Land in dieser Region kann nicht zusammengelegt/geteilt +werden. </text> - <text_editor name="covenant_editor"> - Für dieses Grundstück fehlt der Vertrag. - </text_editor> <string name="can_resell"> Gekauftes Land in dieser Region kann wiederverkauft werden. </string> @@ -145,10 +183,12 @@ Gekauftes Land in dieser Region kann nicht wiederverkauft werden. </string> <string name="can_change"> - Gekauftes Land in dieser Region kann zusammengelegt und geteilt werden. + Gekauftes Land in dieser Region kann zusammengelegt und +geteilt werden. </string> <string name="can_not_change"> - Gekauftes Land in dieser Region kann nicht zusammengelegt und geteilt werden. + Gekauftes Land in dieser Region kann nicht zusammengelegt +und geteilt werden. </string> </panel> <panel label="Objekte" name="land_objects_panel"> @@ -170,49 +210,49 @@ <text name="Primitives parcel supports:" width="200"> Von Parzelle unterstützte Primitiva: </text> - <text name="object_contrib_text" left="204" width="152"> + <text left="204" name="object_contrib_text" width="152"> [COUNT] </text> <text name="Primitives on parcel:"> Primitiva auf Parzelle: </text> - <text name="total_objects_text" left="204" width="48"> + <text left="204" name="total_objects_text" width="48"> [COUNT] </text> - <text name="Owned by parcel owner:" left="14" width="200"> + <text left="14" name="Owned by parcel owner:" width="200"> Im Eigentum des Parzellenbesitzers: </text> - <text name="owner_objects_text" left="204" width="48"> + <text left="204" name="owner_objects_text" width="48"> [COUNT] </text> <button label="Anzeigen" label_selected="Anzeigen" name="ShowOwner" right="-135" width="60"/> - <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOwner..." tool_tip="Objekte an ihre Eigentümer zurückgeben." right="-10" width="119"/> - <text name="XXXXSet to group:" left="14" width="200"> - Der Gruppe übereignen: + <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOwner..." right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." width="119"/> + <text left="14" name="Set to group:"> + Der Gruppe zugeordnet: </text> - <text name="group_objects_text" left="204" width="48"> + <text left="204" name="group_objects_text" width="48"> [COUNT] </text> - <button label="Anzeigen" label_selected="Anzeigen" name="ShowGroup" width="60" right="-135" /> - <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnGroup..." tool_tip="Objekte an ihre Eigentümer zurückgeben." right="-10" width="119"/> - <text name="Owned by others:" left="14" width="128"> + <button label="Anzeigen" label_selected="Anzeigen" name="ShowGroup" right="-135" width="60"/> + <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnGroup..." right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." width="119"/> + <text left="14" name="Owned by others:" width="128"> Im Eigentum anderer: </text> - <text name="other_objects_text" left="204" width="48"> + <text left="204" name="other_objects_text" width="48"> [COUNT] </text> <button label="Anzeigen" label_selected="Anzeigen" name="ShowOther" right="-135" width="60"/> - <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOther..." tool_tip="Objekte an ihre Eigentümer zurückgeben." right="-10" width="119"/> - <text name="Selected / sat upon:" left="14" width="140"> + <button label="Zurückgeben..." label_selected="Zurückgeben..." name="ReturnOther..." right="-10" tool_tip="Objekte an ihre Eigentümer zurückgeben." width="119"/> + <text left="14" name="Selected / sat upon:" width="140"> Ausgewählt/gesessen auf: </text> - <text name="selected_objects_text" left="204" width="48"> + <text left="204" name="selected_objects_text" width="48"> [COUNT] </text> - <text name="Autoreturn" width="380" left="4" > + <text left="4" name="Autoreturn" width="380"> Objekte anderer Einwohner automatisch zurückgeben (Minuten, 0 für aus): </text> - <line_editor name="clean other time" right="-10" width="56" /> + <line_editor name="clean other time" right="-10" width="56"/> <text name="Object Owners:"> Objekteigentümer: </text> @@ -253,14 +293,64 @@ <check_box label="Sicher (kein Schaden)" name="check safe" tool_tip="Falls aktiviert, wird Land auf Option „Sicher“ eingestellt, Kampfschäden sind deaktiviert. Falls nicht aktiviert, sind Kampfschäden aktiviert."/> <check_box label="Kein Stoßen" name="PushRestrictCheck" tool_tip="Verhindert Skripte am Stoßen. Durch Aktivieren dieser Option verhindern Sie störendes Verhalten auf Ihrem Land."/> <check_box label="Ort in Suche anzeigen (30 L$/Woche) unter" name="ShowDirectoryCheck" tool_tip="Diese Parzelle in Suchergebnissen anzeigen."/> - <combo_box name="land category" left="266" width="130"> + <string name="search_enabled_tooltip"> + Diese Parzelle in Suchergebnissen anzeigen. + </string> + <string name="search_disabled_small_tooltip"> + Diese Option ist nicht aktiviert, da diese Parzelle nicht größer als 128 qm ist. +Nur große Parzellen können in der Suche aufgeführt werden. + </string> + <string name="search_disabled_permissions_tooltip"> + Diese Option ist nicht aktiviert, da Sie die Parzellenoptionen nicht verändern können. + </string> + <combo_box name="land category with adult"> + <combo_item name="AnyCategory"> + Alle Kategorien + </combo_item> + <combo_item name="LindenLocation"> + Lindenort + </combo_item> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Arts&Culture"> + Kunst & Kultur + </combo_item> + <combo_item name="Business"> + Business + </combo_item> + <combo_item name="Educational"> + Bildung + </combo_item> + <combo_item name="Gaming"> + Spielen + </combo_item> + <combo_item name="Hangout"> + Treffpunkt + </combo_item> + <combo_item name="NewcomerFriendly"> + Anfängergerecht + </combo_item> + <combo_item name="Parks&Nature"> + Parks und Natur + </combo_item> + <combo_item name="Residential"> + Wohngebiet + </combo_item> + <combo_item name="Shopping"> + Shopping + </combo_item> + <combo_item name="Other"> + Sonstige + </combo_item> + </combo_box> + <combo_box left="266" name="land category" width="130"> <combo_item name="AnyCategory"> Alle Kategorien </combo_item> <combo_item name="LindenLocation"> Lindenort </combo_item> - <combo_item name="Arts&Culture"> Kunst und Kultur </combo_item> @@ -293,7 +383,19 @@ </combo_item> </combo_box> <button label="?" label_selected="?" name="?"/> - <check_box name="MatureCheck" /> + <check_box label="Mature-Inhalt" name="MatureCheck" tool_tip=""/> + <string name="mature_check_mature"> + Mature-Inhalt + </string> + <string name="mature_check_adult"> + Adult-Inhalt + </string> + <string name="mature_check_mature_tooltip"> + Die Informationen oder Inhalte Ihrer Parzelle sind „Mature“. + </string> + <string name="mature_check_adult_tooltip"> + Die Informationen oder Inhalte Ihrer Parzelle sind „Adult“. + </string> <text name="Snapshot:"> Foto: </text> @@ -304,12 +406,12 @@ <string name="landing_point_none"> (keiner) </string> - <button label="Festlegen" label_selected="Festlegen" name="Set" tool_tip="Legt den Landepunkt fest, an dem Besucher ankommen. Legt die Position Ihres Avatars innerhalb dieser Parzelle fest." width="70" left="234"/> - <button label="Löschen" label_selected="Löschen" name="Clear" tool_tip="Landepunkt löschen." width="70" left="312"/> + <button label="Festlegen" label_selected="Festlegen" left="234" name="Set" tool_tip="Legt den Landepunkt fest, an dem Besucher ankommen. Legt die Position Ihres Avatars innerhalb dieser Parzelle fest." width="70"/> + <button label="Löschen" label_selected="Löschen" left="312" name="Clear" tool_tip="Landepunkt löschen." width="70"/> <text name="Teleport Routing: "> Teleport-Route: </text> - <combo_box name="landing type" tool_tip="Teleport-Route -- festlegen, wie Teleports auf Ihrem Land gehandhabt werden sollen." > + <combo_box name="landing type" tool_tip="Teleport-Route -- festlegen, wie Teleports auf Ihrem Land gehandhabt werden sollen."> <combo_item name="Blocked"> Blockiert </combo_item> @@ -371,21 +473,14 @@ Optionen: <text name="Sound:"> Sound: </text> - <check_box label="Umgebungssound auf diese Parzelle beschränken" name="check sound local"/> + <check_box label="Gesten- und Objektgeräusche auf diese Parzelle beschränken" name="check sound local"/> + <button label="?" label_selected="?" left="418" name="?"/> <text name="Voice settings:"> Voice: </text> - <radio_group name="parcel_voice_channel" width="310"> - <radio_item name="Estate"> - Voice-Channel des Grundstücks verwenden - </radio_item> - <radio_item name="Private"> - Einen privaten Voice-Channel verwenden - </radio_item> - <radio_item name="Disabled"> - Umgebungssound auf dieser Parzelle deaktivieren - </radio_item> - </radio_group> + <check_box label="Voice-Chat aktivieren" name="parcel_enable_voice_channel"/> + <check_box label="Voice-Chat aktivieren (vom Grundstück festgelegt)" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Voice-Chat auf diese Parzelle beschränken" name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="Zugang" name="land_access_panel"> <text name="Limit access to this parcel to:"> diff --git a/indra/newview/skins/default/xui/de/floater_avatar_picker.xml b/indra/newview/skins/default/xui/de/floater_avatar_picker.xml index b6b879234536e82815ccef83d8c0cf6d90e61a9c..c546d91d72c6ebafd859f57e007845ec051d149d 100644 --- a/indra/newview/skins/default/xui/de/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/de/floater_avatar_picker.xml @@ -1,17 +1,45 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatarpicker" title="Einwohner auswählen"> - <text name="instruct_search_resident_name" height="32" bottom="-56"> -Geben Sie einen Teil des Namens des + <tab_container name="ResidentChooserTabs"> + <panel label="Suchen" name="SearchPanel"> + <text name="InstructSearchResidentName"> + Geben Sie einen Teil des Namens des Einwohners ein: - </text> - <button label="Suchen" label_selected="Suchen" name="Find" /> - <scroll_list name="Names" height="138" bottom_delta="-144"/> - <text name="Or select their calling card:"> - Oder wählen Sie eine Visitenkarte: - </text> - <button label="Auswählen" label_selected="Auswählen" name="Select" /> - <button label="Schließen" label_selected="Schließen" name="Close" /> - <text name="NotFound"> + </text> + <line_editor bottom_delta="-36" name="Edit" /> + <button label="Suchen" label_selected="Suchen" name="Find"/> + <scroll_list height="74" name="SearchResults" bottom_delta="-79"/> + </panel> + <panel label="Visitenkarten" name="CallingCardsPanel"> + <text name="InstructSelectCallingCard"> + Wählen Sie eine Visitenkarte: + </text> + </panel> + <panel label="In meiner Nähe" name="NearMePanel"> + <text name="InstructSelectResident"> + Einwohner in der Nähe +auswählen: + </text> + <button font="SansSerifSmall" label="Liste aktualisieren" label_selected="Liste aktualisieren" name="Refresh" left_delta="10" width="105"/> + <slider label="Bereich" name="near_me_range" bottom_delta="-36"/> + <text name="meters"> + Meter + </text> + <scroll_list bottom_delta="-169" height="159" name="NearMe" /> + </panel> + </tab_container> + <button label="Auswählen" label_selected="Auswählen" name="Select"/> + <button label="Abbrechen" label_selected="Abbrechen" name="Cancel"/> + <string name="not_found"> „[TEXT]“ nicht gefunden - </text> + </string> + <string name="no_one_near"> + Niemand in der Nähe + </string> + <string name="no_results"> + Keine Ergebnisse + </string> + <string name="searching"> + Suchen... + </string> </floater> diff --git a/indra/newview/skins/default/xui/de/floater_avatar_textures.xml b/indra/newview/skins/default/xui/de/floater_avatar_textures.xml index 13c41560b796a2e6b6d814fab1a854afa1838bca..823d6de78b82b9d1911463390e6c476130e0ae19 100644 --- a/indra/newview/skins/default/xui/de/floater_avatar_textures.xml +++ b/indra/newview/skins/default/xui/de/floater_avatar_textures.xml @@ -1,30 +1,31 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatar_texture_debug" title="Avatar-Texturen"> - <text name="baked_label" width="128"> + <text name="label"> Gebackene Texturen </text> <text name="composite_label" width="150"> Zusammengesetzte Texturen </text> - <texture_picker label="Kopf" name="baked_head" /> - <texture_picker label="Make-Up" name="head_bodypaint" /> - <texture_picker label="Haar" name="hair" /> - <button label="Abladen" label_selected="Abladen" name="Dump" /> - <texture_picker label="Augen" name="baked_eyes" /> - <texture_picker label="Auge" name="eye_texture" /> - <texture_picker label="Oberkörper" name="baked_upper_body" /> - <texture_picker label="Oberkörpertattoo" name="upper_bodypaint" /> - <texture_picker label="Unterhemd" name="undershirt" /> - <texture_picker label="Handschuhe" name="gloves" /> - <texture_picker label="Hemd" name="shirt" /> - <texture_picker label="Oberjacke" name="upper_jacket" /> - <texture_picker label="Unterkörper" name="baked_lower_body" /> - <texture_picker label="Unterkörpertattoo" name="lower_bodypaint" /> - <texture_picker label="Unterhose" name="underpants" /> - <texture_picker label="Socken" name="socks" /> - <texture_picker label="Schuhe" name="shoes" /> - <texture_picker label="Hose" name="pants" /> - <texture_picker label="Jacke" name="jacket" /> - <texture_picker label="Rock" name="baked_skirt" /> - <texture_picker label="Rock" name="skirt_texture" /> + <button label="Läd IDs in Konsole ab" label_selected="Abladen" name="Dump"/> + <texture_picker label="Haare" name="hair-baked"/> + <texture_picker label="Haar" name="hair"/> + <texture_picker label="Kopf" name="head-baked"/> + <texture_picker label="Make-Uup" name="head bodypaint"/> + <texture_picker label="Augen" name="eyes-baked"/> + <texture_picker label="Auge" name="iris"/> + <texture_picker label="Oberkörper" name="upper-baked"/> + <texture_picker label="Oberkörpertattoo" name="upper bodypaint"/> + <texture_picker label="Unterhemd" name="undershirt"/> + <texture_picker label="Handschuhe" name="gloves"/> + <texture_picker label="Hemd" name="shirt"/> + <texture_picker label="Oberjacke" name="upper jacket"/> + <texture_picker label="Unterkörper" name="lower-baked"/> + <texture_picker label="Unterkörper-Tätowierung" name="lower bodypaint"/> + <texture_picker label="Unterhose" name="underpants"/> + <texture_picker label="Socken" name="socks"/> + <texture_picker label="Schuhe" name="shoes"/> + <texture_picker label="Hose" name="pants"/> + <texture_picker label="Jacke" name="lower jacket"/> + <texture_picker label="Rock" name="skirt-baked"/> + <texture_picker label="Rock" name="skirt"/> </floater> diff --git a/indra/newview/skins/default/xui/de/floater_bulk_perms.xml b/indra/newview/skins/default/xui/de/floater_bulk_perms.xml new file mode 100644 index 0000000000000000000000000000000000000000..f058a0ed96725e360875f3c4b040feb5cf09a6f9 --- /dev/null +++ b/indra/newview/skins/default/xui/de/floater_bulk_perms.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floaterbulkperms" title="Mehrere Inhaltsberechtigungen ändern"> + <text name="applyto"> + Inhaltsarten + </text> + <check_box label="Animation" name="check_animation"/> + <check_box label="Körperteile" name="check_bodypart"/> + <check_box label="Kleidung" name="check_clothing"/> + <check_box label="Gesten" name="check_gesture"/> + <check_box label="Landmarken" name="check_landmark"/> + <check_box label="Notizkarten" name="check_notecard"/> + <check_box label="Objekte" name="check_object"/> + <check_box label="Skripts" name="check_script"/> + <check_box label="Sounds" name="check_sound"/> + <check_box label="Texturen" name="check_texture"/> + <button label="Alle auswählen" label_selected="Alle" name="check_all"/> + <button label="Keine" label_selected="Keine" name="check_none"/> + <text name="newperms"> + Neue Berechtigungen + </text> + <check_box label="Mit Gruppe teilen" name="share_with_group"/> + <check_box label="Kopieren allen erlauben" name="everyone_copy"/> + <text name="NextOwnerLabel"> + Nächster Eigentümer kann: + </text> + <check_box label="Bearbeiten" name="next_owner_modify"/> + <check_box label="Kopieren" name="next_owner_copy"/> + <check_box label="Verkaufen/Weggeben" name="next_owner_transfer"/> + <button label="Hilfe" name="help"/> + <button label="Ãœbernehmen" name="apply"/> + <button label="Schließen" name="close"/> + <string name="nothing_to_modify_text"> + Auswahl enthält keinen Inhalt, der bearbeitet werden kann. + </string> + <string name="status_text"> + Berechtigungen werden eingestellt auf [NAME] + </string> + <string name="start_text"> + Start: Anforderung auf Änderung der Berechtigung... + </string> + <string name="done_text"> + Ende: Anforderung auf Änderung der Berechtigung. + </string> +</floater> diff --git a/indra/newview/skins/default/xui/de/floater_buy_land.xml b/indra/newview/skins/default/xui/de/floater_buy_land.xml index 332c900190fe1be1581344ded2fae1d0008ff7b2..1dbc0669140f002de4cd610750408e47c1850c0e 100644 --- a/indra/newview/skins/default/xui/de/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/de/floater_buy_land.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="buy land" title="Land kaufen"> <text name="region_name_label"> Region: @@ -6,6 +6,12 @@ <text left="580" name="region_name_text"> (unbekannt) </text> + <text name="region_type_label"> + Typ: + </text> + <text left="580" name="region_type_text"> + (unbekannt) + </text> <text name="estate_name_label"> Grundstück: </text> @@ -22,10 +28,10 @@ Gekauftes Land in dieser Region: </text> <text name="resellable_clause"> - Gekauftes Land in dieser Region kann oder kann nicht wiederverkauft werden. + Wiederverkauf möglich oder nicht möglich. </text> <text name="changeable_clause"> - kann oder kann nicht zusammengelegt/unterteilt werden. + Darft oder darf nicht zusammengelegt/unterteilt werden. </text> <text name="covenant_text"> Sie müssen dem Grundstücksvertrag zustimmen: @@ -33,7 +39,7 @@ <text_editor name="covenant_editor"> Wird geladen... </text_editor> - <check_box label="Ich stimme dem obigen Vertrag zu." name="agree_covenant" /> + <check_box label="Ich stimme dem obigen Vertrag zu." name="agree_covenant"/> <text name="info_parcel_label"> Parzelle: </text> @@ -44,21 +50,23 @@ Größe: </text> <text name="info_size"> - 1024 qm + 1024 qm. </text> <text name="info_price_label"> Preis: </text> <text name="info_price"> - 1500 L$, Objekte eingeschlossen + 1500 L$ +(L$ 1,1 L$/qm) +Objekte im Verkauf eingeschlossen </text> - <text name="info_action" width="275"> + <text name="info_action"> Bei Landkauf: </text> <text name="error_message"> Irgendetwas stimmt nicht. </text> - <button label="Gehe zu Website" name="error_web" /> + <button label="Gehe zu Website" name="error_web"/> <text name="account_action"> Macht Sie zum Premium-Mitglied. </text> @@ -80,7 +88,7 @@ Erhöhen Sie Ihre monatlichen Landnutzungsgebühren auf 40 US$/month. </text> <text name="land_use_reason"> - Sie besitzen 1.309 qm Land. + Sie besitzen 1309 qm Land. Diese Parzelle ist 512 qm groß. </text> <text name="purchase_action"> @@ -101,127 +109,134 @@ Diese Parzelle ist 512 qm groß. <text name="currency_balance"> Sie haben 2.100 L$. </text> - <check_box label="[AMOUNT] Quadratmeter des Beitrags von Gruppe nehmen." - name="remove_contribution" /> - <button label="Kaufen" name="buy_btn" /> - <button label="Abbrechen" name="cancel_btn" /> - <text name="can_resell"> + <check_box label="[AMOUNT] Quadratmeter des Beitrags von Gruppe nehmen." name="remove_contribution"/> + <button label="Kaufen" name="buy_btn"/> + <button label="Abbrechen" name="cancel_btn"/> + <string name="can_resell"> Verkauf möglich. - </text> - <text name="can_not_resell"> + </string> + <string name="can_not_resell"> Verkauf nicht möglich. - </text> - <text name="can_change"> + </string> + <string name="can_change"> Zusammenlegen/unterteilen möglich. - </text> - <text name="can_not_change"> + </string> + <string name="can_not_change"> Zusammenlegen/unterteilen nicht möglich. - </text> - <text name="cant_buy_for_group"> + </string> + <string name="cant_buy_for_group"> Sie sind nicht berechtigt, Land für die aktive Gruppe zu kaufen. - </text> - <text name="no_land_selected"> + </string> + <string name="no_land_selected"> Kein Land ausgewählt. - </text> - <text name="multiple_parcels_selected"> + </string> + <string name="multiple_parcels_selected"> Mehrere unterschiedliche Parzellen ausgewählt. Verkleinern Sie Ihre Auswahl. - </text> - <text name="no_permission"> + </string> + <string name="no_permission"> Sie sind nicht berechtigt, Land für die aktive Gruppe zu kaufen. - </text> - <text name="parcel_not_for_sale"> + </string> + <string name="parcel_not_for_sale"> Die ausgewählte Parzelle steht nicht zum Verkauf. - </text> - <text name="group_already_owns"> + </string> + <string name="group_already_owns"> Die Parzelle befindet sich bereits in Gruppenbesitz. - </text> - <text name="you_already_own"> + </string> + <string name="you_already_own"> Die Parzelle gehört Ihnen bereits. - </text> - <text name="set_to_sell_to_other"> + </string> + <string name="set_to_sell_to_other"> Die ausgewählte Parzelle steht zum Verkauf an Dritte. - </text> - <text name="no_public_land"> + </string> + <string name="no_public_land"> Das ausgewählte Land beinhaltet kein öffentliches Land. - </text> - <text name="not_owned_by_you"> + </string> + <string name="not_owned_by_you"> Sie haben Land ausgewählt, das einer anderen Person gehört. Verkleinern Sie Ihre Auswahl. - </text> - <text name="processing"> + </string> + <string name="processing"> Kauf wird abgewickelt... (Dies kann 1 bis 2 Minuten dauern.) - </text> - <text name="fetching_error"> + </string> + <string name="fetching_error"> Fehler bei Abfrage der Landkauf-Informationen. - </text> - <text name="buying_will"> + </string> + <string name="buying_will"> Bei Landkauf: - </text> - <text name="buying_for_group"> - Kaufe Land für Gruppe: - </text> - <text name="cannot_buy_now"> + </string> + <string name="buying_for_group"> + Landkauf für Gruppe: + </string> + <string name="cannot_buy_now"> Kaufen jetzt nicht möglich: - </text> - <text name="not_for_sale"> + </string> + <string name="not_for_sale"> Nicht zu verkaufen: - </text> - <text name="none_needed"> + </string> + <string name="none_needed"> nicht benötigt - </text> - <text name="must_upgrade"> + </string> + <string name="must_upgrade"> Sie müssen Ihr Konto upgraden, um Land kaufen zu können. - </text> - <text name="cant_own_land"> + </string> + <string name="cant_own_land"> Mit Ihrem Konto können Sie Land kaufen. - </text> - <text name="land_holdings"> + </string> + <string name="land_holdings"> Sie besitzen [BUYER] qm Land. - </text> - <text name="pay_to_for_land"> + </string> + <string name="pay_to_for_land"> [SELLER] [AMOUNT] L$ für das Land bezahlen - </text> - <text name="buy_for_US"> - [AMOUNT] L$ für ca. [AMOUNT2] US$ kaufen , - </text> - <text name="parcel_meters"> + </string> + <string name="buy_for_US"> + [AMOUNT] L$ für circa [AMOUNT2] US$ kaufen, + </string> + <string name="parcel_meters"> Diese Parzelle ist [AMOUNT] qm groß. - </text> - <text name="premium_land"> - Für dieses Land gilt ein Aufschlag. Es wird mit [AMOUNT] qm angesetzt. - </text> - <text name="discounted_land"> - Für dieses Land gilt ein Rabatt. Es wird mit [AMOUNT] qm angesetzt. - </text> - <text name="meters_supports_object"> - [AMOUNT] qm + </string> + <string name="premium_land"> + Dieses Land ist eine Premium-Immobilie. Es wird mit [AMOUNT] qm angesetzt. + </string> + <string name="discounted_land"> + Dieses Land ist im Angebot. Es wird mit [AMOUNT] qm angesetzt. + </string> + <string name="meters_supports_object"> + [AMOUNT] qm. unterstützt [AMOUNT2] Objekte - </text> - <text name="sold_with_objects"> + </string> + <string name="sold_with_objects"> mit Objekten verkauft - </text> - <text name="insufficient_land_credits"> - Die Gruppe [GROUP] benötigt ausreichende Landnutzungsrechte für diese Parzelle, um den Kauf abzuschließen. - </text> - <text name="have_enough_lindens"> + </string> + <string name="sold_without_objects"> + Objekte nicht im Verkauf mit eingeschlossen + </string> + <string name="info_price_string"> + [PRICE] L$ +([PRICE_PER_SQM] L$/qm) +[SOLD_WITH_OBJECTS] + </string> + <string name="insufficient_land_credits"> + Die Gruppe [GROUP] benötigt ausreichende gespendete Landnutzungsrechte, um die Parzelle abzudecken, bevor der Kauf abgeschlossen werden kann. + </string> + <string name="have_enough_lindens"> Sie haben [AMOUNT] L$, genug zum Kauf dieses Landes. - </text> - <text name="not_enough_lindens"> + </string> + <string name="not_enough_lindens"> Sie haben nur [AMOUNT] L$, brauchen aber mindestens [AMOUNT2] L$. - </text> - <text name="balance_left"> + </string> + <string name="balance_left"> Nach dem Einkauf verbleiben Ihnen noch [AMOUNT] L$. - </text> - <text name="balance_needed"> + </string> + <string name="balance_needed"> Für dieses Land müssen Sie mindestens [AMOUNT] L$ kaufen. - </text> - <text name="no_parcel_selected"> + </string> + <string name="no_parcel_selected"> (keine Parzelle ausgewählt) - </text> - <text name="buy_currency"> + </string> + <string name="buy_currency"> [LINDENS] L$ für ca. [USD] US$ kaufen - </text> + </string> </floater> diff --git a/indra/newview/skins/default/xui/de/floater_customize.xml b/indra/newview/skins/default/xui/de/floater_customize.xml index 7ceb7bd3ae0d16e175831a880936c9084f1e3c78..b27e5d22b4fbe00a5a21a3d77a115ff1b4fd79d2 100644 --- a/indra/newview/skins/default/xui/de/floater_customize.xml +++ b/indra/newview/skins/default/xui/de/floater_customize.xml @@ -1,534 +1,484 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater customize" title="Aussehen"> <tab_container name="customize tab container"> - <panel label="Körperteile" /> - <panel label="Körperteile" name="body_parts_placeholder" /> + <panel label="Körperteile" name="body_parts_placeholder"/> <panel label="Form" name="Shape"> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> - <button label="Körper" label_selected="Körper" name="Body" /> - <button label="Kopf" label_selected="Kopf" name="Head" /> - <button label="Augen" label_selected="Augen" name="Eyes" /> - <button label="Ohren" label_selected="Ohren" name="Ears" /> - <button label="Nase" label_selected="Nase" name="Nose" /> - <button label="Mund" label_selected="Mund" name="Mouth" /> - <button label="Kinn" label_selected="Kinn" name="Chin" /> - <button label="Oberkörper" label_selected="Oberkörper" name="Torso" /> - <button label="Beine" label_selected="Beine" name="Legs" /> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> + <button label="Körper" label_selected="Körper" name="Body"/> + <button label="Kopf" label_selected="Kopf" name="Head"/> + <button label="Augen" label_selected="Augen" name="Eyes"/> + <button label="Ohren" label_selected="Ohren" name="Ears"/> + <button label="Nase" label_selected="Nase" name="Nose"/> + <button label="Mund" label_selected="Mund" name="Mouth"/> + <button label="Kinn" label_selected="Kinn" name="Chin"/> + <button label="Oberkörper" label_selected="Oberkörper" name="Torso"/> + <button label="Beine" label_selected="Beine" name="Legs"/> <radio_group name="sex radio"> - <radio_item type="string" length="1" name="radio"> + <radio_item length="1" name="radio" type="string"> Weiblich </radio_item> - <radio_item type="string" length="1" name="radio2"> + <radio_item length="1" name="radio2" type="string"> Männlich </radio_item> </radio_group> - <button label="Zufällig" label_selected="Zufällig" name="Randomize" /> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie eine Körperform aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch eine neue Körperform erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <button label="Neue Form/Gestalt" label_selected="Neue Form/Gestalt" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> + <text name="Item Action Label" right="100"> + Form: + </text> + <button label="Neue Form/Gestalt" label_selected="Neue Form/Gestalt" name="Create New"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> </panel> <panel label="Haut" name="Skin"> - <button label="Hautfarbe" label_selected="Hautfarbe" left="2" name="Skin Color" - width="92" /> - <button label="Gesichtsdetails" label_selected="Gesichtsdetails" left="2" - name="Face Detail" width="92" /> - <button label="Make-Uup" label_selected="Make-Uup" left="2" name="Makeup" width="92" /> - <button label="Körperdetails" label_selected="Körperdetails" left="2" - name="Body Detail" width="92" /> - <text type="string" length="1" name="title"> + <button label="Hautfarbe" label_selected="Hautfarbe" left="2" name="Skin Color" width="92"/> + <button label="Gesichtsdetails" label_selected="Gesichtsdetails" left="2" name="Face Detail" width="92"/> + <button label="Make-Uup" label_selected="Make-Uup" left="2" name="Makeup" width="92"/> + <button label="Körperdetails" label_selected="Körperdetails" left="2" name="Body Detail" width="92"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie eine Haut aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch eine neue Haut erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Kopftattoo" name="Head Tattoos" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <texture_picker label="Obere Tattoos" name="Upper Tattoos" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <texture_picker label="Untere Tattoos" name="Lower Tattoos" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <button label="Zufällig" label_selected="Zufällig" left="2" name="Randomize" - width="92" /> - <button label="Neue Haut" label_selected="Neue Haut" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Haut: + </text> + <texture_picker label="Kopftattoo" name="Head Tattoos" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <texture_picker label="Obere Tattoos" name="Upper Tattoos" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <texture_picker label="Untere Tattoos" name="Lower Tattoos" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <button label="Neue Haut" label_selected="Neue Haut" name="Create New"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Haar" name="Hair"> - <button label="Farbe" label_selected="Farbe" name="Color" /> - <button label="Stil" label_selected="Stil" name="Style" /> - <button label="Augenbrauen" label_selected="Augenbrauen" name="Eyebrows" /> - <button label="Gesichtshaar" label_selected="Gesichtshaar" name="Facial" /> - <text type="string" length="1" name="title"> + <button label="Farbe" label_selected="Farbe" name="Color"/> + <button label="Stil" label_selected="Stil" name="Style"/> + <button label="Augenbrauen" label_selected="Augenbrauen" name="Eyebrows"/> + <button label="Gesichtshaar" label_selected="Gesichtshaar" name="Facial"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie Haare aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch neue Haare erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Textur" name="Texture" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <button label="Zufällig" label_selected="Zufällig" name="Randomize" /> - <button label="Neue Haare" label_selected="Neue Haare" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Haare: + </text> + <texture_picker label="Textur" name="Texture" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <button label="Neue Haare" label_selected="Neue Haare" name="Create New"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Augen" name="Eyes"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie Augen aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch neue Augen erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Iris" name="Iris" tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <button label="Zufällig" label_selected="Zufällig" name="Randomize" /> - <button label="Neue Augen" label_selected="Neue Augen" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Augen: + </text> + <texture_picker label="Iris" name="Iris" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <button label="Neue Augen" label_selected="Neue Augen" name="Create New"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> - <panel label="Kleidung" /> - <panel label="Kleidung" name="clothes_placeholder" /> + <panel label="Kleidung" name="clothes_placeholder"/> <panel label="Hemd" name="Shirt"> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neues Hemd" label_selected="Neues Hemd" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> - <text type="string" length="1" name="title"> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neues Hemd" label_selected="Neues Hemd" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie ein Hemd aus dem Inventar auf Ihren Avatar, um es zu tragen. Sie können auch ein neues Hemd erstellen und dieses anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> + <text name="Item Action Label" right="100"> + Hemd: + </text> </panel> <panel label="Hose" name="Pants"> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neue Hose" label_selected="Neue Hose" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> - <text type="string" length="1" name="title"> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neue Hose" label_selected="Neue Hose" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie eine Hose aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch eine neue Hose erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> + <text name="Item Action Label" right="100"> + Hose: + </text> </panel> <panel label="Schuhe" name="Shoes"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie Schuhe aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch neue Schuhe erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neue Schuhe" label_selected="Neue Schuhe" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Schuhe: + </text> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neue Schuhe" label_selected="Neue Schuhe" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Socken" name="Socks"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie Socken aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch neue Socken erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neue Socken" label_selected="Neue Socken" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Socken: + </text> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neue Socken" label_selected="Neue Socken" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Jacke" name="Jacket"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie eine Jacke aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch eine neue Jacke erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Oberstoff" name="Upper Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <texture_picker label="Unterstoff" name="Lower Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neue Jacke" label_selected="Neue Jacke" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Jacke: + </text> + <texture_picker label="Oberstoff" name="Upper Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <texture_picker label="Unterstoff" name="Lower Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neue Jacke" label_selected="Neue Jacke" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Handschuhe" name="Gloves"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie Handschuhe aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch neue Handschuhe erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neue Handschuhe" label_selected="Neue Handschuhe" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Handschuhe: + </text> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neue Handschuhe" label_selected="Neue Handschuhe" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Unterhemd" name="Undershirt"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie ein Unterhemd aus dem Inventar auf Ihren Avatar, um es zu tragen. Sie können auch ein neues Unterhemd erstellen und dieses anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neues Unterhemd" label_selected="Neues Unterhemd" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Unterhemd: + </text> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neues Unterhemd" label_selected="Neues Unterhemd" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Unterhose" name="Underpants"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie eine Unterhose aus dem Inventar auf Ihren Avatar, um sie zu tragen. Sie können auch eine neue Unterhose erstellen und diese anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neue Unterhose" label_selected="Neue Unterhose" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Unterhose: + </text> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neue Unterhose" label_selected="Neue Unterhose" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> <panel label="Rock" name="Skirt"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: bearbeiten nicht möglich </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: wird geladen... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: nicht getragen </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> In [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Ziehen Sie einen Rock aus dem Inventar auf Ihren Avatar, um ihn zu tragen. Sie können auch einen neuen Rock erstellen und diesen anziehen. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Sie sind nicht berechtigt, diese Kleidung zu bearbeiten. </text> - <texture_picker label="Stoff" name="Fabric" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <color_swatch label="Farbe/Ton" name="Color/Tint" - tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> - <button label="Neuer Rock" label_selected="Neuer Rock" name="Create New" /> - <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" left="19" - name="Take Off" /> - <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" - name="Save" /> - <button font="SansSerifSmall" label="Speichern unter" label_selected="Speichern unter" - left="194" name="Save As" width="100" /> - <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" - name="Revert" /> + <text name="Item Action Label" right="100"> + Rock: + </text> + <texture_picker label="Stoff" name="Fabric" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <color_swatch label="Farbe/Ton" name="Color/Tint" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen"/> + <button label="Neuer Rock" label_selected="Neuer Rock" name="Create New"/> + <button font="SansSerifSmall" label="Ausziehen" label_selected="Ausziehen" name="Take Off"/> + <button font="SansSerifSmall" label="Speichern" label_selected="Speichern" left="107" name="Save"/> + <button font="SansSerifSmall" label="Speichern unter..." label_selected="Speichern unter..." left="194" name="Save As" width="105"/> + <button font="SansSerifSmall" label="Zurücksetzen" label_selected="Zurücksetzen" name="Revert"/> </panel> </tab_container> - <button label="Outfit erstellen" label_selected="Outfit erstellen" name="Make Outfit" /> - <button label="Alles speichern" label_selected="Alles speichern" name="Save All" /> - <button label="Schließen" label_selected="Schließen" name="Close" /> + <button label="Abbrechen" label_selected="Abbrechen" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="Outfit erstellen..." label_selected="Outfit erstellen..." name="Make Outfit" width="115"/> </floater> diff --git a/indra/newview/skins/default/xui/de/floater_font_test.xml b/indra/newview/skins/default/xui/de/floater_font_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..54278fc094a775d99d3bb4acc8b38e39fe6f2a85 --- /dev/null +++ b/indra/newview/skins/default/xui/de/floater_font_test.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="Schriftart-Test"> + <text name="linea"> + OverrideTest, sollte hier als Times angezeigt werden. (Aus default/xui/en-us) + </text> +</floater> diff --git a/indra/newview/skins/default/xui/de/floater_joystick.xml b/indra/newview/skins/default/xui/de/floater_joystick.xml index bf3083a14b2b8f24cd54a84200a1a1033afb7a48..407556bf2c1f2f76f50bf8aec2a6cdf86d921740 100644 --- a/indra/newview/skins/default/xui/de/floater_joystick.xml +++ b/indra/newview/skins/default/xui/de/floater_joystick.xml @@ -1,23 +1,31 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="Joystick" title="Joystick-Konfiguration"> - <check_box name="enable_joystick" width="80" >Joystick aktivieren:</check_box> - <text name="joystick_type" left="140" width="360"></text> - <spinner label="X-Achse" name="JoystickAxis1" /> - <spinner label="Y-Achse" name="JoystickAxis2" /> - <spinner label="Z-Achse" name="JoystickAxis0" /> - <spinner label="Neigungswinkel" name="JoystickAxis4" /> - <spinner label="Gierwinkel" name="JoystickAxis5" /> - <spinner label="Rollwinkel" name="JoystickAxis3" /> - <spinner label="Zoom" name="JoystickAxis6" /> - <check_box label="Direkt-Zoom" name="ZoomDirect" /> - <check_box label="3D-Cursor" left="300" name="Cursor3D" /> - <check_box label="Automatisch ausrichten" left="390" name="AutoLeveling" /> + <check_box name="enable_joystick" width="80"> + Joystick aktivieren: + </check_box> + <text left="140" name="joystick_type" width="360"/> + <spinner label="X-Achse" name="JoystickAxis1"/> + <spinner label="Y-Achse" name="JoystickAxis2"/> + <spinner label="Z-Achse" name="JoystickAxis0"/> + <spinner label="Neigungswinkel" name="JoystickAxis4"/> + <spinner label="Gierwinkel" name="JoystickAxis5"/> + <spinner label="Rollwinkel" name="JoystickAxis3"/> + <spinner label="Zoom" name="JoystickAxis6"/> + <check_box label="Direkt-Zoom" name="ZoomDirect"/> + <check_box label="3D-Cursor" left="300" name="Cursor3D"/> + <check_box label="Automatisch ausrichten" left="390" name="AutoLeveling"/> <text name="Control Modes:"> Steuermodi: </text> - <check_box name="JoystickAvatarEnabled">Avatar</check_box> - <check_box name="JoystickBuildEnabled">Bauen</check_box> - <check_box name="JoystickFlycamEnabled">Flycam</check_box> + <check_box name="JoystickAvatarEnabled"> + Avatar + </check_box> + <check_box name="JoystickBuildEnabled"> + Bauen + </check_box> + <check_box name="JoystickFlycamEnabled"> + Flycam + </check_box> <text name="XScale"> X-Skala </text> @@ -63,7 +71,9 @@ <text name="ZoomDeadZone"> Zoom-Totzone </text> - <button label="SpaceNavigator-Standards" name="SpaceNavigatorDefaults" /> + <button label="SpaceNavigator-Standards" name="SpaceNavigatorDefaults"/> + <button label="OK" label_selected="OK" name="ok_btn"/> + <button label="Abbrechen" label_selected="Abbrechen" name="cancel_btn"/> <string name="JoystickMonitor"> Joystick-Monitor </string> diff --git a/indra/newview/skins/default/xui/de/floater_land_holdings.xml b/indra/newview/skins/default/xui/de/floater_land_holdings.xml index 25944895a2752d883364a599a9ec425a54a2e2f6..685490338295eef0a635d2d04364d5aecbaf28aa 100644 --- a/indra/newview/skins/default/xui/de/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/de/floater_land_holdings.xml @@ -1,21 +1,20 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="land holdings floater" title="Mein Land"> <scroll_list name="parcel list"> - <column label="Name" name="name" /> - <column label="Lage" name="location" /> - <column label="Gebiet" name="area" /> - <column label="" name="hidden" /> + <column label="Parzellenname" name="name"/> + <column label="Region" name="location"/> + <column label="Typ" name="type"/> + <column label="Gebiet" name="area"/> + <column label="" name="hidden"/> </scroll_list> - <button label="Teleportieren" label_selected="Teleportieren" name="Teleport" - tool_tip="Zum Mittelpunkt dieses Landes teleportieren." /> - <button label="Auf Karte" label_selected="Auf Karte" name="Show on Map" - tool_tip="Dieses Land auf der Weltkarte anzeigen." /> + <button label="Teleportieren" label_selected="Teleportieren" name="Teleport" tool_tip="Zum Mittelpunkt dieses Landes teleportieren."/> + <button label="Auf Karte" label_selected="Auf Karte" name="Show on Map" tool_tip="Dieses Land auf der Weltkarte anzeigen."/> <text name="contrib_label"> Beiträge zu Ihren Gruppen: </text> <scroll_list name="grant list"> - <column label="Gruppe" name="group" /> - <column label="Gebiet" name="area" /> + <column label="Gruppe" name="group"/> + <column label="Gebiet" name="area"/> </scroll_list> <text name="allowed_label"> Zulässiger Landbesitz bei aktuellem Zahlungsplan: diff --git a/indra/newview/skins/default/xui/de/floater_notification.xml b/indra/newview/skins/default/xui/de/floater_notification.xml new file mode 100644 index 0000000000000000000000000000000000000000..48ff900d5a9d84fa9a5ea99b688ec66ea6f7320c --- /dev/null +++ b/indra/newview/skins/default/xui/de/floater_notification.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="notification" title="Konsole: Meldungen"> + <text_editor name="payload"> + Wird geladen... + </text_editor> + <combo_box label="Antwort" name="response"/> +</floater> diff --git a/indra/newview/skins/default/xui/de/floater_notifications_console.xml b/indra/newview/skins/default/xui/de/floater_notifications_console.xml new file mode 100644 index 0000000000000000000000000000000000000000..a1cd69899c4e87a16e29f0ba016de3c423fc564b --- /dev/null +++ b/indra/newview/skins/default/xui/de/floater_notifications_console.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="notifications_console" title="Konsole: Meldungen"> + <combo_box label="Meldungsart auswählen" name="notification_types" width="412" /> + <button label="Hinzufügen" name="add_notification" left="417" width="78" /> +</floater> diff --git a/indra/newview/skins/default/xui/de/floater_perm_prefs.xml b/indra/newview/skins/default/xui/de/floater_perm_prefs.xml new file mode 100644 index 0000000000000000000000000000000000000000..83ec725487fb47ae535f30e7c92037f6a072f524 --- /dev/null +++ b/indra/newview/skins/default/xui/de/floater_perm_prefs.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="perm prefs" title="Hochlade-Berechtigungen (Standard)"> + <panel label="Berechtigungen" name="permissions"> + <button label="?" label_selected="?" name="help"/> + <check_box label="Mit Gruppe teilen" name="share_with_group"/> + <check_box label="Kopieren allen erlauben" name="everyone_copy"/> + <text name="NextOwnerLabel"> + Nächster Eigentümer kann: + </text> + <check_box label="Bearbeiten" name="next_owner_modify"/> + <check_box label="Kopieren" name="next_owner_copy"/> + <check_box label="Verkaufen/Weggeben" name="next_owner_transfer" left_delta="80"/> + </panel> + <button label="OK" label_selected="OK" name="ok"/> + <button label="Abbrechen" label_selected="Abbrechen" name="cancel"/> +</floater> diff --git a/indra/newview/skins/default/xui/de/floater_report_abuse.xml b/indra/newview/skins/default/xui/de/floater_report_abuse.xml index c51a77426cfa446d87f748f74af5831d041c78a7..6a7246d1e6b4b4a81b3712260618268ce0e843a7 100644 --- a/indra/newview/skins/default/xui/de/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/de/floater_report_abuse.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater_report_abuse" title="Missbrauch melden"> <texture_picker label="" name="screenshot"/> - <check_box label="Screenshot einschließen" name="screen_check" bottom_delta="-20"/> + <check_box bottom_delta="-20" label="Screenshot einschließen" name="screen_check"/> <text name="reporter_title"> Melder: </text> @@ -47,9 +47,9 @@ dann auf das Objekt: <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> Alter> Erwachsener Einwohner in Teen Second Life </combo_item> - - - + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + Alter > Minderjähriger Einwohner außerhalb Teen Second Life + </combo_item> <combo_item name="Assault__Combat_sandbox___unsafe_area"> Angriff> Kampf-Sandbox / unsichere Region </combo_item> @@ -119,15 +119,15 @@ dann auf das Objekt: <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> Unanständigkeit > Anstößige Inhalte oder Handlungen in der Öffentlichkeit </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> Unanständigkeit > Anstößiger Avatarname </combo_item> - - - + <combo_item name="Indecency__Mature_content_in_PG_region"> + Unanständigkeit > Unangemessener Inhalt oder unangemessenes Verhalten in PG-Region + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + Unanständigkeit > Unangemessener Inhalt oder unangemessenes Verhalten in Mature-Region + </combo_item> <combo_item name="Intellectual_property_infringement_Content_Removal"> Urheberrechtsverletzung > Entfernen von Inhalten </combo_item> @@ -175,8 +175,8 @@ dann auf das Objekt: Missbrauchs, relevantem Chat/IM und wählen Sie das Objekt, wenn möglich. </text> - <text_editor bottom_delta="-136" height="130" name="details_edit" /> - <text name="incomplete_title" bottom_delta="-20"> + <text_editor bottom_delta="-136" height="130" name="details_edit"/> + <text bottom_delta="-20" name="incomplete_title"> Hinweis: Unvollständige Meldungen werden nicht bearbeitet. </text> <button label="Abbrechen" label_selected="Abbrechen" name="cancel_btn"/> diff --git a/indra/newview/skins/default/xui/de/floater_sell_land.xml b/indra/newview/skins/default/xui/de/floater_sell_land.xml index 554957c8b01eb3810ab2e838a4d154e97a9f6770..d4ec0fa729e0a6ebaa0518ad84eb62e567c6c408 100644 --- a/indra/newview/skins/default/xui/de/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/de/floater_sell_land.xml @@ -1,26 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <floater name="sell land" title="Land verkaufen"> - <text bottom_delta="119" follows="top|left" font="SansSerifSmall" left="16" - name="info_parcel_label" text_color="white" width="64"> + <text name="info_parcel_label"> Parzelle: </text> - <text bottom_delta="-5" follows="top|left" font="SansSerif" height="16" left="64" - name="info_parcel" text_color="white"> + <text bottom_delta="-5" height="16" name="info_parcel"> PARZELLENNAME </text> <text name="info_size_label"> Größe: </text> - <text bottom_delta="-21" follows="top|left" font="SansSerif" height="32" left="56" - name="info_size" text_color="white"> + <text bottom_delta="-21" height="32" name="info_size"> [AREA] qm </text> - <text follows="top|left" font="SansSerifHuge" height="28" left="16" - name="info_action" text_color="white" bottom_delta="-32" width="200"> + <text height="28" name="info_action" bottom_delta="-57"> Zum Verkauf dieser Parzelle: </text> - <icon bottom_delta="-76" name="step_price" /> + <icon bottom_delta="-80" name="step_price" /> <text name="price_label"> Preis festlegen: </text> @@ -33,17 +29,15 @@ dieser Parzelle: <text name="price_per_m"> ([PER_METER] L$ pro Quadratmeter) </text> - <icon follows="top|left" height="64" image_name="badge_note.tga" left="0" - name="step_sell_to" width="64" /> - <text bottom_delta="38" follows="top|left" height="16" left="72" name="sell_to_label" - right="-20" text_color="white"> + <icon height="64" left="0" name="step_sell_to" width="64" /> + <text bottom_delta="38" left="72" name="sell_to_label" right="-20"> Land verkaufen an: </text> - <text follows="top|left" height="16" left="72" name="sell_to_text" bottom_delta="-16" right="-10"> + <text height="16" left="72" name="sell_to_text" bottom_delta="-16" right="-10"> Wählen Sie, ob der Verkauf offen oder auf eine bestimmte Person beschränkt ist. </text> - <combo_box follows="top|right" height="16" left="72" name="sell_to" bottom_delta="-32" width="140"> + <combo_box height="16" left="72" name="sell_to" bottom_delta="-32" width="140"> <combo_item name="--selectone--"> -- select one -- </combo_item> @@ -70,8 +64,8 @@ wechseln den Eigentümer. Ja, Objekte mit Land verkaufen </radio_item> </radio_group> - <button label="Objekte anzeigen" name="show_objects" /> - <text name="nag_message_label"> + <button label="Objekte anzeigen" name="show_objects" width="116"/> + <text name="nag_message_label"> ACHTUNG: Verkäufe sind endgültig. </text> <button label="Land zum Verkauf freigeben" width="180" name="sell_btn" /> diff --git a/indra/newview/skins/default/xui/de/floater_snapshot.xml b/indra/newview/skins/default/xui/de/floater_snapshot.xml index c7a366ae87b1d78604bcddd810068de1bf881ccb..401aa740847151b408b43c1d92dbc7f8418408c4 100644 --- a/indra/newview/skins/default/xui/de/floater_snapshot.xml +++ b/indra/newview/skins/default/xui/de/floater_snapshot.xml @@ -8,7 +8,7 @@ Per E-Mail senden </radio_item> <radio_item name="texture"> - Im Inventar speichern (L$10) + Im Inventar speichern ([AMOUNT] L$) </radio_item> <radio_item name="local"> Auf Festplatte speichern @@ -19,7 +19,7 @@ </text> <button label="Foto aktualisieren" name="new_snapshot_btn"/> <button label="Senden" name="send_btn"/> - <button label="Speichern (L$10)" name="upload_btn"/> + <button label="Speichern ([AMOUNT] L$)" name="upload_btn"/> <flyout_button label="Speichern" name="save_btn" tool_tip="Bild als Datei speichern"> <flyout_button_item name="save_item"> Speichern diff --git a/indra/newview/skins/default/xui/de/floater_sound_preview.xml b/indra/newview/skins/default/xui/de/floater_sound_preview.xml index cf2c979daa5ce03b6e44043190524f72f7c78b3e..552b4b0f27c93a1d48d379d3d14e44ea503694a6 100644 --- a/indra/newview/skins/default/xui/de/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/de/floater_sound_preview.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="Name/Description" title="sound.wav"> +<floater name="Sound Preview" title="sound.wav"> <text name="name_label"> Name: </text> @@ -7,7 +7,7 @@ Beschreibung: </text> <button label="Abbrechen" label_selected="Abbrechen" name="cancel_btn" /> - <button label="Hochladen (10 L$)" label_selected="Hochladen (10 L$)" name="ok_btn" /> + <button label="Hochladen ([AMOUNT] L$)" label_selected="Hochladen ([AMOUNT] L$)" name="ok_btn" /> <text name="text"> Bitrate (kbit/s): </text> diff --git a/indra/newview/skins/default/xui/de/floater_statistics.xml b/indra/newview/skins/default/xui/de/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..26e976a59c154e0c4541a776e573bf5438077b98 --- /dev/null +++ b/indra/newview/skins/default/xui/de/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="Statistikleiste"/> diff --git a/indra/newview/skins/default/xui/de/floater_tools.xml b/indra/newview/skins/default/xui/de/floater_tools.xml index b428585f127c85ee94cd108c669186bb59fed392..cef204eb5fc753c76cf092888218b19273d4871d 100644 --- a/indra/newview/skins/default/xui/de/floater_tools.xml +++ b/indra/newview/skins/default/xui/de/floater_tools.xml @@ -1,35 +1,23 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="toolbox floater" title=""> - <button label="" label_selected="" name="button focus" tool_tip="Fokus" /> - <text name="tool label" /> - <button label="" label_selected="" name="button move" tool_tip="Verschieben" /> - <text left="40" name="tool label2" width="70" /> - <button label="" label_selected="" name="button edit" tool_tip="Bearbeiten" /> - <text left="92" name="tool label3" width="70" /> - <button label="" label_selected="" name="button create" tool_tip="Erstellen" /> - <text left="170" name="tool label4" width="70" /> - <button label="" label_selected="" name="button land" tool_tip="Land" /> - <text left="240" name="tool label5" /> - <check_box label="Zoom" name="radio zoom" /> - <check_box label="Orbit (Strg)" name="radio orbit" /> - <check_box label="Schwenken (Strg-Umschalt)" name="radio pan" /> - <check_box label="Verschieben" name="radio move" /> - <check_box label="Heben (Strg)" name="radio lift" /> - <check_box label="Rotieren (Strg-Umschalt)" name="radio spin" /> - <check_box label="Position" name="radio position" /> - <check_box label="Drehen (Strg)" name="radio rotate" /> - <check_box label="Dehnen (Strg-Umschalt)" name="radio stretch" /> - <check_box label="Textur auswählen" name="radio select face" /> - <check_box label="Verknüpfte Teile bearbeiten" name="checkbox edit linked parts" /> - <check_box label="Raster verwenden" name="checkbox snap to grid" /> - <button label="Optionen..." label_selected="Optionen..." name="Options..." /> - <check_box label="Beide Seiten dehnen" name="checkbox uniform" /> - <check_box label="Texturen dehnen" name="checkbox stretch textures" /> + <button label="" label_selected="" name="button focus" tool_tip="Fokus"/> + <button label="" label_selected="" name="button move" tool_tip="Verschieben"/> + <button label="" label_selected="" name="button edit" tool_tip="Bearbeiten"/> + <button label="" label_selected="" name="button create" tool_tip="Erstellen"/> + <button label="" label_selected="" name="button land" tool_tip="Land"/> + <check_box label="Zoom" name="radio zoom"/> + <check_box label="Orbit (Strg)" name="radio orbit"/> + <check_box label="Schwenken (Strg-Umschalt)" name="radio pan"/> + <check_box label="Verschieben" name="radio move"/> + <check_box label="Heben (Strg)" name="radio lift"/> + <check_box label="Rotieren (Strg-Umschalt)" name="radio spin"/> + <check_box label="Position" name="radio position"/> + <check_box label="Drehen (Strg)" name="radio rotate"/> + <check_box label="Dehnen (Strg-Umschalt)" name="radio stretch"/> + <check_box label="Textur auswählen" name="radio select face"/> + <check_box label="Verknüpfte Teile bearbeiten" name="checkbox edit linked parts"/> <text name="text ruler mode"> - Linealmodus: - </text> - <text name="text status"> - Zum Verschieben ziehen, zum Kopieren Umschalttaste-Ziehen + Lineal: </text> <combo_box name="combobox grid mode"> <combo_item name="World"> @@ -42,51 +30,55 @@ Referenz </combo_item> </combo_box> - <button label="" label_selected="" name="ToolCube" tool_tip="Würfel" /> - <button label="" label_selected="" name="ToolPrism" tool_tip="Prisma" /> - <button label="" label_selected="" name="ToolPyramid" tool_tip="Pyramide" /> - <button label="" label_selected="" name="ToolTetrahedron" tool_tip="Tetraeder" /> - <button label="" label_selected="" name="ToolCylinder" tool_tip="Zylinder" /> - <button label="" label_selected="" name="ToolHemiCylinder" tool_tip="Halbzylinder" /> - <button label="" label_selected="" name="ToolCone" tool_tip="Kegel" /> - <button label="" label_selected="" name="ToolHemiCone" tool_tip="Halbkegel" /> - <button label="" label_selected="" name="ToolSphere" tool_tip="Kugel" /> - <button label="" label_selected="" name="ToolHemiSphere" tool_tip="Halbkugel" /> - <check_box label="Kopierauswahl" name="checkbox copy selection" /> - <button label="" label_selected="" name="ToolTorus" tool_tip="Torus" /> - <button label="" label_selected="" name="ToolTube" tool_tip="Rohr" /> - <button label="" label_selected="" name="ToolRing" tool_tip="Ring" /> - <button label="" label_selected="" name="ToolTree" tool_tip="Baum" /> - <button label="" label_selected="" name="ToolGrass" tool_tip="Gras" /> - <check_box label="Tool ausgewählt lassen" name="checkbox sticky" /> - <check_box label="Kopie zentrieren" name="checkbox copy centers" /> - <check_box label="Kopie drehen" name="checkbox copy rotates" /> - <check_box label="Land auswählen" name="radio select land" /> - <check_box label="Land einebnen" name="radio flatten" /> - <check_box label="Land anheben" name="radio raise" /> - <check_box label="Land absenken" name="radio lower" /> - <check_box label="Land glätten" name="radio smooth" /> - <check_box label="Land rau machen" name="radio noise" /> - <check_box label="Land zurückführen" name="radio revert" /> - <combo_box name="combobox brush size"> - <combo_item name="Small"> - Klein - </combo_item> - <combo_item name="Medium"> - Mittel - </combo_item> - <combo_item name="Large"> - Groß - </combo_item> - </combo_box> + <check_box label="Beide Seiten dehnen" name="checkbox uniform"/> + <check_box label="Texturen dehnen" name="checkbox stretch textures"/> + <check_box label="Raster verwenden" name="checkbox snap to grid"/> + <button label="Optionen..." label_selected="Optionen..." name="Options..."/> + <text name="text status"> + Zum Verschieben ziehen, zum Kopieren Umschalttaste-Ziehen + </text> + <button label="" label_selected="" name="ToolCube" tool_tip="Würfel"/> + <button label="" label_selected="" name="ToolPrism" tool_tip="Prisma"/> + <button label="" label_selected="" name="ToolPyramid" tool_tip="Pyramide"/> + <button label="" label_selected="" name="ToolTetrahedron" tool_tip="Tetraeder"/> + <button label="" label_selected="" name="ToolCylinder" tool_tip="Zylinder"/> + <button label="" label_selected="" name="ToolHemiCylinder" tool_tip="Halbzylinder"/> + <button label="" label_selected="" name="ToolCone" tool_tip="Kegel"/> + <button label="" label_selected="" name="ToolHemiCone" tool_tip="Halbkegel"/> + <button label="" label_selected="" name="ToolSphere" tool_tip="Kugel"/> + <button label="" label_selected="" name="ToolHemiSphere" tool_tip="Halbkugel"/> + <button label="" label_selected="" name="ToolTorus" tool_tip="Torus"/> + <button label="" label_selected="" name="ToolTube" tool_tip="Rohr"/> + <button label="" label_selected="" name="ToolRing" tool_tip="Ring"/> + <button label="" label_selected="" name="ToolTree" tool_tip="Baum"/> + <button label="" label_selected="" name="ToolGrass" tool_tip="Gras"/> + <check_box label="Auswahl behalten" name="checkbox sticky"/> + <check_box label="Auswahl kopieren" name="checkbox copy selection"/> + <check_box label="Zentrieren" name="checkbox copy centers"/> + <check_box label="Drehen" name="checkbox copy rotates"/> + <check_box label="Land auswählen" name="radio select land"/> + <check_box label="Einebnen" name="radio flatten"/> + <check_box label="Anheben" name="radio raise"/> + <check_box label="Absenken" name="radio lower"/> + <check_box label="Glätten" name="radio smooth"/> + <check_box label="Aufrauen" name="radio noise"/> + <check_box label="Zurücksetzen" name="radio revert"/> + <button label="Ãœbernehmen" label_selected="Ãœbernehmen" name="button apply to selection" tool_tip="Ausgewähltes Land ändern"/> + <text name="Bulldozer:"> + Planierraupe: + </text> + <text name="Dozer Size:"> + Größe + </text> <text name="Strength:"> - Stärke: + Stärke + </text> + <text name="obj_count"> + Ausgewählte Objekte: [COUNT] + </text> + <text name="prim_count"> + Primitive: [COUNT] </text> - <button label="Auf Auswahl anwenden" label_selected="Auf Auswahl anwenden" - name="button apply to selection" tool_tip="Ausgewähltes Land ändern" /> - <check_box label="Eigentümer anzeigen" name="checkbox show owners" /> - <button label="Mehr >>" name="button more" tool_tip="Erweiterte Optionen" /> - <button label="<< Weniger" name="button less" tool_tip="Erweiterte Optionen" /> <tab_container name="Object Info Tabs" tab_max_width="150" tab_min_width="30"> <panel label="Allgemein" name="General"> <text name="Name:"> @@ -101,50 +93,39 @@ <text name="Creator Name"> Thrax Linden </text> - <button label="Profil..." label_selected="Profil..." name="button creator profile" /> + <button label="Profil..." label_selected="Profil..." name="button creator profile"/> <text name="Owner:"> Eigentümer: </text> <text name="Owner Name"> Thrax Linden </text> - <button label="Profil..." label_selected="Profil..." name="button owner profile" /> + <button label="Profil..." label_selected="Profil..." name="button owner profile"/> <text name="Group:"> Gruppe: </text> <text name="Group Name Proxy"> Die Lindens </text> - <button label="Festlegen..." label_selected="Festlegen..." name="button set group" /> - <text name="prim info"> - 1 Objekt, 1 Primitivum - </text> + <button label="Festlegen..." label_selected="Festlegen..." name="button set group"/> <text name="Permissions:"> Berechtigungen: </text> <text name="perm_modify"> Sie können dieses Objekt ändern. </text> - <check_box label="Mit Gruppe teilen" left="6" name="checkbox share with group" - tool_tip="Gruppenmitgliedern Verschieben, Ändern, Kopieren und Löschen gestatten." /> - <text name="text deed continued"> + <check_box label="Mit Gruppe teilen" left="6" name="checkbox share with group" tool_tip="Allen Mitgliedern der zugeordneten Gruppe die Erlaubnis erteilen, Ihre Berechtigungen für dieses Objekt zu teilen und zu verwenden. Sie müssen Ãœbereignen, um Rollenbeschränkungen zu aktivieren."/> + <string name="text deed continued"> Ãœbertragung... - </text> - <text name="text deed"> + </string> + <string name="text deed"> Ãœbertragung - </text> - <button label="Ãœbertragung..." label_selected="Ãœbertragung..." name="button deed" - tool_tip="In der Gruppe gemeinsam verwendete Objekte können von einem Gruppenfunktionär übertragen werden." /> - <check_box label="Verschieben durch beliebige Personen zulassen" left="6" - name="checkbox allow everyone move" /> - <check_box label="Kopieren durch beliebige Personen zulassen" left="6" - name="checkbox allow everyone copy" /> - <check_box label="In Suche anzeigen" left="6" name="search_check" - tool_tip="Dieses Objekt in Suchergebnissen anzeigen" /> - <check_box label="Zu verkaufen" left="6" name="checkbox for sale" /> - <text name="Price: L$"> - Preis: L$ - </text> + </string> + <button label="Ãœbertragung..." label_selected="Ãœbertragung..." name="button deed" tool_tip="In der Gruppe gemeinsam verwendete Objekte können von einem Gruppenfunktionär übertragen werden."/> + <check_box label="Verschieben durch beliebige Personen zulassen" left="6" name="checkbox allow everyone move"/> + <check_box label="Kopieren durch beliebige Personen zulassen" left="6" name="checkbox allow everyone copy"/> + <check_box label="In Suche anzeigen" left="6" name="search_check" tool_tip="Dieses Objekt in Suchergebnissen anzeigen"/> + <check_box label="Zu verkaufen" left="6" name="checkbox for sale"/> <text name="Cost"> Preis:L$ </text> @@ -162,9 +143,9 @@ <text name="Next owner can:"> Nächster Eigentümer kann: </text> - <check_box label="Ändern" name="checkbox next owner can modify" /> - <check_box label="Kopieren" name="checkbox next owner can copy" /> - <check_box label="Wiederverkaufen" left_delta="75" name="checkbox next owner can transfer" /> + <check_box label="Ändern" name="checkbox next owner can modify"/> + <check_box label="Kopieren" name="checkbox next owner can copy"/> + <check_box label="Wiederverkaufen" left_delta="75" name="checkbox next owner can transfer"/> <text name="label click action"> Bei Linksklicken: </text> @@ -209,21 +190,21 @@ <text name="F:"> F: </text> - <text name="text modify info 1"> + <string name="text modify info 1"> Sie können dieses Objekt ändern. - </text> - <text name="text modify info 2"> + </string> + <string name="text modify info 2"> Sie können diese Objekte ändern. - </text> - <text name="text modify info 3"> + </string> + <string name="text modify info 3"> Sie können dieses Objekt nicht ändern. - </text> - <text name="text modify info 4"> + </string> + <string name="text modify info 4"> Sie können diese Objekte nicht ändern. - </text> - <text name="text modify warning"> + </string> + <string name="text modify warning"> Gesamtes Objekt muss gewählt werden, um Berechtigungen festzulegen. - </text> + </string> <string name="Cost Default"> Preis:L$ </string> @@ -247,32 +228,28 @@ <text name="edit_object"> Objektparameter bearbeiten: </text> - <check_box label="Gesperrt" name="checkbox locked" - tool_tip="Verhindert, dass Objekt verschoben oder gelöscht wird. Oft beim Bauen nützlich, um unbeabsichtigte Bearbeitungen zu vermeiden." /> - <check_box label="Physisch" name="Physical Checkbox Ctrl" - tool_tip="Gestattet, das Objekt geschoben und von Schwerkraft beeinflusst wird" /> - <check_box label="Temporär" name="Temporary Checkbox Ctrl" - tool_tip="Verursacht, dass Objekt 1 Minute nach Erstellung gelöscht wird." /> - <check_box label="Phantom" name="Phantom Checkbox Ctrl" - tool_tip="Verursacht, dass Objekt nicht mit anderen Objekten oder Avataren kollidiert" /> + <check_box label="Gesperrt" name="checkbox locked" tool_tip="Verhindert, dass Objekt verschoben oder gelöscht wird. Oft beim Bauen nützlich, um unbeabsichtigte Bearbeitungen zu vermeiden."/> + <check_box label="Physisch" name="Physical Checkbox Ctrl" tool_tip="Gestattet, das Objekt geschoben und von Schwerkraft beeinflusst wird"/> + <check_box label="Temporär" name="Temporary Checkbox Ctrl" tool_tip="Verursacht, dass Objekt 1 Minute nach Erstellung gelöscht wird."/> + <check_box label="Phantom" name="Phantom Checkbox Ctrl" tool_tip="Verursacht, dass Objekt nicht mit anderen Objekten oder Avataren kollidiert"/> <text name="label position"> Position (Meter) </text> - <spinner label="X" name="Pos X" /> - <spinner label="Y" name="Pos Y" /> - <spinner label="Z" name="Pos Z" /> + <spinner label="X" name="Pos X"/> + <spinner label="Y" name="Pos Y"/> + <spinner label="Z" name="Pos Z"/> <text name="label size"> Größe (Meter) </text> - <spinner label="X" name="Scale X" /> - <spinner label="Y" name="Scale Y" /> - <spinner label="Z" name="Scale Z" /> + <spinner label="X" name="Scale X"/> + <spinner label="Y" name="Scale Y"/> + <spinner label="Z" name="Scale Z"/> <text name="label rotation"> Rotation (Grad) </text> - <spinner label="X" name="Rot X" /> - <spinner label="Y" name="Rot Y" /> - <spinner label="Z" name="Rot Z" /> + <spinner label="X" name="Rot X"/> + <spinner label="Y" name="Rot Y"/> + <spinner label="Z" name="Rot Z"/> <text name="label material"> Material </text> @@ -331,16 +308,16 @@ <text left="115" name="text cut" width="146"> Pfadschnitt Beginn und Ende </text> - <spinner label="B" left="115" name="cut begin" /> - <spinner label="E" left="115" name="cut end" /> + <spinner label="B" left="115" name="cut begin"/> + <spinner label="E" left="115" name="cut end"/> <text left="115" name="text hollow"> Hohl </text> <text left="115" name="text skew"> Versatz </text> - <spinner left="115" name="Scale 1" /> - <spinner left="115" name="Skew" /> + <spinner left="115" name="Scale 1"/> + <spinner left="115" name="Skew"/> <text left="115" name="Hollow Shape"> Hohlform </text> @@ -361,47 +338,48 @@ <text left="115" name="text twist"> Torsion </text> - <spinner label="B" left="115" name="Twist Begin" /> - <spinner label="E" left="115" name="Twist End" /> + <spinner label="B" left="115" name="Twist Begin"/> + <spinner label="E" left="115" name="Twist End"/> <text left="115" name="scale_taper"> Verjüngung </text> <text left="115" name="scale_hole"> Lochgröße </text> - <spinner label="X" left="115" name="Taper Scale X" /> - <spinner label="Y" left="115" name="Taper Scale Y" /> + <spinner label="X" left="115" name="Taper Scale X"/> + <spinner label="Y" left="115" name="Taper Scale Y"/> <text left="115" name="text topshear"> Verscherung </text> - <spinner label="X" left="115" name="Shear X" /> - <spinner label="Y" left="115" name="Shear Y" /> - <text name="advanced_cut" left="115" width="153"> + <spinner label="X" left="115" name="Shear X"/> + <spinner label="Y" left="115" name="Shear Y"/> + <text left="115" name="advanced_cut" width="153"> Profilschnitt-Beginn und Ende </text> - <text name="advanced_dimple" left="115"> + <text left="115" name="advanced_dimple"> Vertiefung-Beginn und Ende </text> - <spinner label="B" name="Path Limit Begin" left="115"/> - <spinner label="E" name="Path Limit End" /> - <text name="text taper2" left="115"> + <text name="advanced_slice"> + Anfang/Ende abschneiden + </text> + <spinner label="B" left="115" name="Path Limit Begin"/> + <spinner label="E" name="Path Limit End"/> + <text left="115" name="text taper2"> Verjüngung </text> - <spinner label="X" name="Taper X" left="115"/> - <spinner label="Y" name="Taper Y" /> - <text name="text radius delta" left="115"> + <spinner label="X" left="115" name="Taper X"/> + <spinner label="Y" name="Taper Y"/> + <text left="115" name="text radius delta"> Radius </text> <text name="text revolutions" width="74"> Umdrehungen </text> - <spinner left="115" name="Radius Offset" /> - <texture_picker label="Textur für gestaltetes Primitiv" name="sculpt texture control" - tool_tip="Klicken Sie hier, um ein Bild auszuwählen" /> - <check_box label="Spiegeln" name="sculpt mirror control" - tool_tip="Geformtes Primitiv entlang der X-Achse spiegeln." bottom_delta="-34" /> - <check_box label="Wenden" name="sculpt invert control" - tool_tip="Dreht die Normalen des geformten Primitivs von innen nach außen." /> + <spinner left="115" name="Radius Offset"/> + <texture_picker label="Textur für gestaltetes +Primitiv" name="sculpt texture control" tool_tip="Klicken Sie hier, um ein Bild auszuwählen"/> + <check_box bottom_delta="-34" label="Spiegeln" name="sculpt mirror control" tool_tip="Geformtes Primitiv entlang der X-Achse spiegeln."/> + <check_box label="Wenden" name="sculpt invert control" tool_tip="Dreht die Normalen des geformten Primitivs von innen nach außen."/> <text name="label sculpt type"> Naht </text> @@ -430,37 +408,34 @@ <text name="edit_object"> Objekteigenschaften bearbeiten: </text> - <check_box label="Flexibler Weg" name="Flexible1D Checkbox Ctrl" - tool_tip="Gestattet, dass Objekt um die Z-Achse gebogen wird. (nur Client-Seite)" /> - <spinner label="Weichheit" name="FlexNumSections" /> - <spinner label="Schwerkraft" name="FlexGravity" /> - <spinner label="Ziehen" name="FlexFriction" /> - <spinner label="Wind" name="FlexWind" /> - <spinner label="Spannung" name="FlexTension" /> - <spinner label="Erzwingen X" name="FlexForceX" /> - <spinner label="Erzwingen Y" name="FlexForceY" /> - <spinner label="Erzwingen Z" name="FlexForceZ" /> - <check_box label="Licht" name="Light Checkbox Ctrl" - tool_tip="Verursacht, dass Objekt Licht emittiert" /> + <check_box label="Flexibler Weg" name="Flexible1D Checkbox Ctrl" tool_tip="Gestattet, dass Objekt um die Z-Achse gebogen wird. (nur Client-Seite)"/> + <spinner label="Weichheit" name="FlexNumSections"/> + <spinner label="Schwerkraft" name="FlexGravity"/> + <spinner label="Ziehen" name="FlexFriction"/> + <spinner label="Wind" name="FlexWind"/> + <spinner label="Spannung" name="FlexTension"/> + <spinner label="Erzwingen X" name="FlexForceX"/> + <spinner label="Erzwingen Y" name="FlexForceY"/> + <spinner label="Erzwingen Z" name="FlexForceZ"/> + <check_box label="Licht" name="Light Checkbox Ctrl" tool_tip="Verursacht, dass Objekt Licht emittiert"/> <text name="label color"> Farbe </text> - <color_swatch label="" name="colorswatch" tool_tip="Klicken, um Farbauswahl zu öffnen" /> - <spinner label="Intensität" name="Light Intensity" /> - <spinner label="Radius" name="Light Radius" /> - <spinner label="Abnehmend" name="Light Falloff" /> + <color_swatch label="" name="colorswatch" tool_tip="Klicken, um Farbauswahl zu öffnen"/> + <spinner label="Intensität" name="Light Intensity"/> + <spinner label="Radius" name="Light Radius"/> + <spinner label="Abnehmend" name="Light Falloff"/> </panel> <panel label="Textur" name="Texture"> - <texture_picker label="Textur" name="texture control" - tool_tip="Klicken, um ein Bild zu wählen" /> - <color_swatch label="Farbe" name="colorswatch" tool_tip="Klicken, um Farbauswahl zu öffnen" /> + <texture_picker label="Textur" name="texture control" tool_tip="Klicken, um ein Bild zu wählen"/> + <color_swatch label="Farbe" name="colorswatch" tool_tip="Klicken, um Farbauswahl zu öffnen"/> <text name="color trans"> Transparenz % </text> <text name="glow label"> Leuchten </text> - <check_box label="Ganz hell" name="checkbox fullbright" /> + <check_box label="Ganz hell" name="checkbox fullbright"/> <text name="tex gen"> Zuordnung </text> @@ -551,92 +526,100 @@ <text name="tex scale"> Wiederholungen </text> - <spinner label="Horizontal (U)" name="TexScaleU" /> - <check_box label="Umkehren" name="checkbox flip s" /> - <spinner label="Vertikal (V)" name="TexScaleV" /> - <check_box label="Umkehren" name="checkbox flip t" /> + <spinner label="Horizontal (U)" name="TexScaleU"/> + <check_box label="Umkehren" name="checkbox flip s"/> + <spinner label="Vertikal (V)" name="TexScaleV"/> + <check_box label="Umkehren" name="checkbox flip t"/> <text name="tex rotate"> Rotation (Grad) </text> - <text name="string repeats per meter"> + <string name="string repeats per meter"> Kacheln pro Meter - </text> - <text name="string repeats per face"> + </string> + <string name="string repeats per face"> Wiederholungen pro Fläche - </text> + </string> <text name="rpt"> Kacheln pro Meter </text> - <button label="Ãœbernehmen" label_selected="Ãœbernehmen" name="button apply" /> + <button label="Ãœbernehmen" label_selected="Ãœbernehmen" name="button apply"/> <text name="tex offset"> Versatz </text> - <spinner label="Horizontal (U)" name="TexOffsetU" /> - <spinner label="Vertikal (V)" name="TexOffsetV" /> + <spinner label="Horizontal (U)" name="TexOffsetU"/> + <spinner label="Vertikal (V)" name="TexOffsetV"/> <text name="textbox autofix"> Medientextur ausrichten (zuerst laden) </text> - <button label="Ausrichten" label_selected="Ausrichten" name="button align" /> + <button label="Ausrichten" label_selected="Ausrichten" name="button align"/> </panel> <panel label="Inhalt" name="Contents"> - <button label="Neues Skript..." label_selected="Neues Skript..." - name="button new script" /> + <button label="Neues Skript" label_selected="Neues Skript..." name="button new script"/> + <button label="Berechtigungen..." name="button permissions" width="118"/> </panel> </tab_container> <panel name="land info panel"> + <text name="label_parcel_info"> + Parzelleninformation + </text> <text name="label_area_price"> Preis: L$ [PRICE] für [AREA] m2. </text> <text name="label_area"> Fläche: [AREA] m2 </text> - <button label="Land kaufen..." label_selected="Land kaufen..." name="button buy land" width="110" /> - <button label="Land aufgeben..." label_selected="Land aufgeben..." width="110" - name="button abandon land" /> - <button label="Unterteilen..." label_selected="Unterteilen..." width="110" - name="button subdivide land" /> - <button label="Zusammenlegen" label_selected="Zusammenlegen" name="button join land" width="110" /> - <button label="Info zu Land..." label_selected="Info zu Land..." width="110" - name="button about land" /> + <button label="Info zu Land..." label_selected="Info zu Land..." name="button about land" width="110"/> + <check_box label="Eigentümer anzeigen" name="checkbox show owners" tool_tip="Parzellen nach Eigentümer farbig kennzeichnen"/> + <button label="?" label_selected="?" name="button show owners help" left_delta="130"/> + <text name="label_parcel_modify"> + Parzelle ändern + </text> + <button label="Unterteilen..." label_selected="Unterteilen..." name="button subdivide land" width="110"/> + <button label="Zusammenlegen" label_selected="Zusammenlegen" name="button join land" width="110"/> + <text name="label_parcel_trans"> + Land-Transaktionen + </text> + <button label="Land kaufen..." label_selected="Land kaufen..." name="button buy land" width="110"/> + <button label="Land aufgeben..." label_selected="Land aufgeben..." name="button abandon land" width="110"/> </panel> - <text name="status_rotate"> + <string name="status_rotate"> An den farbigen Bändern ziehen, um das Objekt zu drehen - </text> - <text name="status_scale"> + </string> + <string name="status_scale"> Klicken und ziehen, um die ausgewählte Seite zu dehnen - </text> - <text name="status_move"> + </string> + <string name="status_move"> Maus verschiebt, Umschalt-Taste und Maus kopiert - </text> - <text name="status_modifyland"> + </string> + <string name="status_modifyland"> Klicken und halten, um das Land zu bearbeiten - </text> - <text name="status_camera"> + </string> + <string name="status_camera"> Klicken und ziehen, um die Ansicht zu ändern - </text> - <text name="status_grab"> - Objekt neu positionieren - </text> - <text name="status_place"> - Mausklick erstellt, Umschalt-Mausklick wählt aus - </text> - <text name="status_selectland"> + </string> + <string name="status_grab"> + Ziehen, um Objekte zu verschieben, Strg zum Heben, Strg-Umschalt zum Drehen + </string> + <string name="status_place"> + Inworld klicken, um zu bauen. + </string> + <string name="status_selectland"> Klicken und ziehen, um Land auszuwählen - </text> - <text name="grid_screen_text"> + </string> + <string name="grid_screen_text"> Bildschirm - </text> - <text name="grid_local_text"> + </string> + <string name="grid_local_text"> Lokal - </text> - <text name="grid_world_text"> + </string> + <string name="grid_world_text"> Welt - </text> - <text name="grid_reference_text"> + </string> + <string name="grid_reference_text"> Referenz - </text> - <text name="grid_attachment_text"> + </string> + <string name="grid_attachment_text"> Anhang - </text> + </string> </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 44d5dd0496dfe8f58e8a20050306bc9b2ea8ed04..d28b55e8a84d48af618bc32173959a6d2bb749d7 100644 --- a/indra/newview/skins/default/xui/de/floater_world_map.xml +++ b/indra/newview/skins/default/xui/de/floater_world_map.xml @@ -4,43 +4,29 @@ <panel label="Objekte" name="objects_mapview"/> <panel label="Terrain" name="terrain_mapview"/> </tab_container> - <text font="SansSerifSmall" name="land_for_sale_label"> - Land erhaeltlich - </text> - <text name="auction_label"> - Auktion - </text> <text name="you_label"> Sie </text> <text name="home_label"> Zuhause </text> - <button label="Nach Hause" label_selected="Nach Hause" name="Go Home" tool_tip="Nach Hause teleportieren"/> - <text name="person_label"> - Person - </text> - <check_box label=" " name="people_chk"/> - <text name="infohub_label"> - Infohub - </text> - <check_box label=" " name="infohub_chk"/> - <text name="telehub_label"> - Telehub + <text name="auction_label"> + Auktion </text> - <check_box label=" " name="telehubchk"/> - <text font="SansSerifSmall" name="land_for_sale_label2"> + <text font="SansSerifSmall" name="land_for_sale_label"> Land erhaeltlich </text> - <check_box label=" " name="land_for_sale_chk"/> + <button label="Nach Hause" label_selected="Nach Hause" name="Go Home" tool_tip="Nach Hause teleportieren"/> + <check_box label="Einwohner" name="people_chk"/> + <check_box label="Infohub" name="infohub_chk"/> + <check_box label="Telehub" name="telehubchk"/> + <check_box label="Land zu verkaufen" name="land_for_sale_chk"/> <text name="events_label"> - Events + Events: </text> - <check_box label=" " name="event_chk"/> - - - - <check_box label=" " name="event_mature_chk"/> + <check_box label="PG" name="event_chk"/> + <check_box label="Mature" name="event_mature_chk"/> + <check_box label="Adult" name="event_adult_chk"/> <combo_box label="Online-Freunde" name="friend combo" tool_tip="Freund, der auf Karte angezeigt werden soll"> <combo_item name="none_selected"> Online-Freunde diff --git a/indra/newview/skins/default/xui/de/menu_inventory.xml b/indra/newview/skins/default/xui/de/menu_inventory.xml index 97b47dd5699c858cbee3a22dcd8320d2a21ff801..e05b2e9f1a39454e530ae548769fd372af6ab3e3 100644 --- a/indra/newview/skins/default/xui/de/menu_inventory.xml +++ b/indra/newview/skins/default/xui/de/menu_inventory.xml @@ -1,65 +1,66 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="Popup"> - <menu_item_call label="Kaufen" name="Task Buy" /> - <menu_item_call label="Öffnen" name="Task Open" /> - <menu_item_call label="Wiedergeben/Abspielen" name="Task Play" /> - <menu_item_call label="Eigenschaften" name="Task Properties" /> - <menu_item_call label="Umbenennen" name="Task Rename" /> - <menu_item_call label="Löschen" name="Task Remove" /> - <menu_item_call label="Papierkorb ausleeren" name="Empty Trash" /> - <menu_item_call label="Fundstücke ausleeren" name="Empty Lost And Found" /> - <menu_item_call label="Neuer Ordner" name="New Folder" /> - <menu_item_call label="Neues Skript" name="New Script" /> - <menu_item_call label="Neue Notiz" name="New Note" /> - <menu_item_call label="Neue Geste" name="New Gesture" /> + <menu_item_call label="Kaufen" name="Task Buy"/> + <menu_item_call label="Öffnen" name="Task Open"/> + <menu_item_call label="Wiedergeben/Abspielen" name="Task Play"/> + <menu_item_call label="Eigenschaften" name="Task Properties"/> + <menu_item_call label="Umbenennen" name="Task Rename"/> + <menu_item_call label="Löschen" name="Task Remove"/> + <menu_item_call label="Papierkorb ausleeren" name="Empty Trash"/> + <menu_item_call label="Fundstücke ausleeren" name="Empty Lost And Found"/> + <menu_item_call label="Neuer Ordner" name="New Folder"/> + <menu_item_call label="Neues Skript" name="New Script"/> + <menu_item_call label="Neue Notiz" name="New Note"/> + <menu_item_call label="Neue Geste" name="New Gesture"/> <menu name="New Clothes"> - <menu_item_call label="Neues Hemd" name="New Shirt" /> - <menu_item_call label="Neue Hose" name="New Pants" /> - <menu_item_call label="Neue Schuhe" name="New Shoes" /> - <menu_item_call label="Neue Socken" name="New Socks" /> - <menu_item_call label="Neue Jacke" name="New Jacket" /> - <menu_item_call label="Neuer Rock" name="New Skirt" /> - <menu_item_call label="Neue Handschuhe" name="New Gloves" /> - <menu_item_call label="Neues Unterhemd" name="New Undershirt" /> - <menu_item_call label="Neue Unterhose" name="New Underpants" /> + <menu_item_call label="Neues Hemd" name="New Shirt"/> + <menu_item_call label="Neue Hose" name="New Pants"/> + <menu_item_call label="Neue Schuhe" name="New Shoes"/> + <menu_item_call label="Neue Socken" name="New Socks"/> + <menu_item_call label="Neue Jacke" name="New Jacket"/> + <menu_item_call label="Neuer Rock" name="New Skirt"/> + <menu_item_call label="Neue Handschuhe" name="New Gloves"/> + <menu_item_call label="Neues Unterhemd" name="New Undershirt"/> + <menu_item_call label="Neue Unterhose" name="New Underpants"/> </menu> <menu name="New Body Parts"> - <menu_item_call label="Neue Form/Gestalt" name="New Shape" /> - <menu_item_call label="Neue Haut" name="New Skin" /> - <menu_item_call label="Neues Haar" name="New Hair" /> - <menu_item_call label="Neue Augen" name="New Eyes" /> + <menu_item_call label="Neue Form/Gestalt" name="New Shape"/> + <menu_item_call label="Neue Haut" name="New Skin"/> + <menu_item_call label="Neues Haar" name="New Hair"/> + <menu_item_call label="Neue Augen" name="New Eyes"/> </menu> - <menu_item_call label="Teleportieren" name="Landmark Open" /> - <menu_item_call label="Öffnen" name="Animation Open" /> - <menu_item_call label="Öffnen" name="Sound Open" /> - <menu_item_call label="Objekt löschen" name="Purge Item" /> - <menu_item_call label="Objekt wiederherstellen" name="Restore Item" /> - <menu_item_call label="Öffnen" name="Open" /> - <menu_item_call label="Eigenschaften" name="Properties" /> - <menu_item_call label="Umbenennen" name="Rename" /> - <menu_item_call label="Asset-UUID kopieren" name="Copy Asset UUID" /> - <menu_item_call label="Kopieren" name="Copy" /> - <menu_item_call label="Einfügen" name="Paste" /> - <menu_item_call label="Löschen" name="Delete" /> - <menu_item_call label="Zum Outfit hinzufügen" name="Add To Outfit" /> - <menu_item_call label="Outfit ersetzen" name="Replace Outfit" /> - <menu_item_call label="Objekte abnehmen" name="Take Off Items" /> - <menu_item_call label="Konferenz-Chat starten" name="Conference Chat Folder" /> - <menu_item_call label="Wiedergeben/Abspielen" name="Sound Play" /> - <menu_item_call label="Landmarken-Info" name="Teleport To Landmark" /> - <menu_item_call label="In Welt abspielen" name="Animation Play" /> - <menu_item_call label="Lokal wiedergeben" name="Animation Audition" /> - <menu_item_call label="Instant Message senden" name="Send Instant Message" /> - <menu_item_call label="Teleport anbieten..." name="Offer Teleport..." /> - <menu_item_call label="Konferenz-Chat starten" name="Conference Chat" /> - <menu_item_call label="Aktivieren" name="Activate" /> - <menu_item_call label="Deaktivieren" name="Deactivate" /> - <menu_item_call label="Von Körper abnehmen" name="Detach From Yourself" /> - <menu_item_call label="Anziehen" name="Object Wear" /> - <menu label="Anhängen an" name="Attach To" /> - <menu label="An HUD hängen" name="Attach To HUD" /> - <menu_item_call label="Anziehen" name="Wearable Wear" /> - <menu_item_call label="Bearbeiten" name="Wearable Edit" /> - <menu_item_call label="Ausziehen" name="Take Off" /> - <menu_item_call label="--keine Optionen--" name="--no options--" /> + <menu_item_call label="Teleportieren" name="Landmark Open"/> + <menu_item_call label="Öffnen" name="Animation Open"/> + <menu_item_call label="Öffnen" name="Sound Open"/> + <menu_item_call label="Objekt löschen" name="Purge Item"/> + <menu_item_call label="Objekt wiederherstellen" name="Restore Item"/> + <menu_item_call label="Öffnen" name="Open"/> + <menu_item_call label="Eigenschaften" name="Properties"/> + <menu_item_call label="Umbenennen" name="Rename"/> + <menu_item_call label="Asset-UUID kopieren" name="Copy Asset UUID"/> + <menu_item_call label="Kopieren" name="Copy"/> + <menu_item_call label="Einfügen" name="Paste"/> + <menu_item_call label="Löschen" name="Delete"/> + <menu_item_call label="Objekte abnehmen" name="Take Off Items"/> + <menu_item_call label="Zum Outfit hinzufügen" name="Add To Outfit"/> + <menu_item_call label="Outfit ersetzen" name="Replace Outfit"/> + <menu_item_call label="Konferenz-Chat starten" name="Conference Chat Folder"/> + <menu_item_call label="Wiedergeben/Abspielen" name="Sound Play"/> + <menu_item_call label="Landmarken-Info" name="Teleport To Landmark"/> + <menu_item_call label="In Welt abspielen" name="Animation Play"/> + <menu_item_call label="Lokal wiedergeben" name="Animation Audition"/> + <menu_item_call label="Instant Message senden" name="Send Instant Message"/> + <menu_item_call label="Teleport anbieten..." name="Offer Teleport..."/> + <menu_item_call label="Konferenz-Chat starten" name="Conference Chat"/> + <menu_item_call label="Aktivieren" name="Activate"/> + <menu_item_call label="Deaktivieren" name="Deactivate"/> + <menu_item_call label="Von Körper abnehmen" name="Detach From Yourself"/> + <menu_item_call label="Zu letzter Position zurücksetzen" name="Restore to Last Position"/> + <menu_item_call label="Anziehen" name="Object Wear"/> + <menu label="Anhängen an" name="Attach To"/> + <menu label="An HUD hängen" name="Attach To HUD"/> + <menu_item_call label="Bearbeiten" name="Wearable Edit"/> + <menu_item_call label="Anziehen" name="Wearable Wear"/> + <menu_item_call label="Ausziehen" name="Take Off"/> + <menu_item_call label="--keine Optionen--" name="--no options--"/> </menu> diff --git a/indra/newview/skins/default/xui/de/menu_mini_map.xml b/indra/newview/skins/default/xui/de/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..9b7117cf42c5c76416ab04c919965a2c3afda344 --- /dev/null +++ b/indra/newview/skins/default/xui/de/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="Zoom Nah" name="Zoom Close"/> + <menu_item_call label="Zoom Mittel" name="Zoom Medium"/> + <menu_item_call label="Zoom Weit" name="Zoom Far"/> + <menu_item_call label="Verfolgung abschalten" name="Stop Tracking"/> + <menu_item_call label="Profil..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/de/menu_viewer.xml b/indra/newview/skins/default/xui/de/menu_viewer.xml index 9305d0731a39496160932414ef9220854eccb44b..279024616af42e1104fb436d63f6e6bd2aa42dd6 100644 --- a/indra/newview/skins/default/xui/de/menu_viewer.xml +++ b/indra/newview/skins/default/xui/de/menu_viewer.xml @@ -2,10 +2,14 @@ <menu_bar name="Main Menu"> <menu label="Datei" name="File"> <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> - <menu_item_call label="Bild hochladen ([COST] L$)..." name="Upload Image"/> - <menu_item_call label="Sound hochladen ([COST] L$)..." name="Upload Sound"/> - <menu_item_call label="Animation hochladen ([COST] L$)..." name="Upload Animation"/> - <menu_item_call label="Mehrfach-Upload ([COST] L$ pro Datei)..." name="Bulk Upload"/> + <menu label="Hochladen" name="upload"> + <menu_item_call label="Bild ([COST] L$)..." name="Upload Image"/> + <menu_item_call label="Sound ([COST] L$)..." name="Upload Sound"/> + <menu_item_call label="Animation ([COST] L$)..." name="Upload Animation"/> + <menu_item_call label="Mehrfach-Upload ([COST] L$ pro Datei)..." name="Bulk Upload"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Standard-Berechtigungen einstellen..." name="perm prefs"/> + </menu> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Fenster schließen" name="Close Window"/> <menu_item_call label="Alle Fenster schließen" name="Close All Windows"/> @@ -19,7 +23,7 @@ </menu> <menu label="Bearbeiten" name="Edit"> <menu_item_call label="Rückgängig" name="Undo"/> - <menu_item_call label="Neu" name="Redo"/> + <menu_item_call label="Wiederherstellen" name="Redo"/> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Ausschneiden" name="Cut"/> <menu_item_call label="Kopieren" name="Copy"/> @@ -68,7 +72,7 @@ <menu_item_check label="Symbolleiste" name="Toolbar"/> <menu_item_check label="Lokaler Chat" name="Chat History"/> <menu_item_check label="Unterhalten" name="Instant Message"/> - <menu_item_call label="Inventar" name="Inventory"/> + <menu_item_check label="Inventar" name="Inventory"/> <menu_item_check label="Aktive Sprecher" name="Active Speakers"/> <menu_item_check label="Stummschalten-Liste" name="Mute List"/> <menu_item_separator label="-----------" name="separator2"/> @@ -79,6 +83,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_check label="Statistikleiste" name="Statistics Bar"/> <menu_item_check label="Grundstücksgrenzen" name="Property Lines"/> + <menu_item_check label="Absperrungen" name="Banlines"/> <menu_item_check label="Landeigentümer" name="Land Owners"/> <menu_item_separator label="-----------" name="separator4"/> <menu label="Schwebe-Tipps" name="Hover Tips"> @@ -111,14 +116,14 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="Als abwesend anzeigen" name="Set Away"/> <menu_item_call label="Als beschäftigt anzeigen" name="Set Busy"/> - <menu_item_call label="Alle Animationen stoppen" name="Stop All Animations"/> + <menu_item_call label="Avatar nicht mehr animieren" name="Stop Animating My Avatar"/> <menu_item_call label="Tasten freigeben" name="Release Keys"/> <menu_item_separator label="-----------" name="separator4"/> <menu_item_call label="Kontostatistik..." name="Account History..."> - <on_click name="AccountHistory_url" userdata="WebLaunchAccountHistory,http://secondlife.com/account/transactions.php?lang=de" /> + <on_click name="AccountHistory_url" userdata="WebLaunchAccountHistory,http://secondlife.com/account/transactions.php?lang=de"/> </menu_item_call> <menu_item_call label="Mein Konto verwalten..." name="Manage My Account..."> - <on_click name="ManageMyAccount_url" userdata="WebLaunchJoinNow,http://secondlife.com/account/index.php?lang=de" /> + <on_click name="ManageMyAccount_url" userdata="WebLaunchJoinNow,http://secondlife.com/account/index.php?lang=de"/> </menu_item_call> <menu_item_call label="L$ kaufen..." name="Buy and Sell L$..."/> <menu_item_separator label="-----------" name="separator5"/> @@ -166,7 +171,6 @@ <menu_item_call label="Auf Auswahl zoomen" name="Zoom to Selection"/> <menu_item_call label="Objekt kaufen" name="Menu Object Take"/> <menu_item_call label="Kopie nehmen/machen" name="Take Copy"/> - <menu_item_call label="Objekt wieder im Inventar speichern" name="Save Object Back to My Inventory"/> <menu_item_call label="Objekt wieder in Objektinhalt speichern" name="Save Object Back to Object Contents"/> <menu_item_separator label="-----------" name="separator6"/> <menu_item_call label="Skriptwarnung/Fehlerfenster anzeigen" name="Show Script Warning/Error Window"/> @@ -184,7 +188,9 @@ <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Offizielles Linden-Blog..." name="Official Linden Blog..."/> <menu_item_separator label="-----------" name="separator2"/> - <menu_item_call label="Scripting-Portal..." name="Scripting Portal..."/> + <menu_item_call label="Scripting-Portal..." name="Scripting Portal..."> + <on_click name="ScriptingPortal_url" userdata="WebLaunchLSLWiki,http://wiki.secondlife.com/wiki/LSL_Portal/de" /> + </menu_item_call> <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="Missbrauch melden..." name="Report Abuse..."/> <menu_item_call label="Rempler, Stöße und Schläge..." name="Bumps, Pushes &amp; Hits..."/> @@ -192,14 +198,15 @@ <menu_item_separator label="-----------" name="separator7"/> <menu label="Fehlermeldungen" name="Bug Reporting"> <menu_item_call label="Allgemeiner Probleme-Tracker..." name="Public Issue Tracker..."/> - <menu_item_call label="Hilfe zum Allgemeinen Probleme-Tracker..." name="Publc Issue Tracker Help..."/> + <menu_item_call label="Hilfe zum Allgemeinen Probleme-Tracker..." name="Publc Issue Tracker Help..."> + <on_click name="PublicIssueTrackerHelp_url" userdata="WebLaunchPublicIssueHelp,http://wiki.secondlife.com/wiki/Issue_tracker/de" /> + </menu_item_call> <menu_item_separator label="-----------" name="separator7"/> <menu_item_call label="Fehlermeldungs-1x1..." name="Bug Reporing 101..."> - <on_click function="PromptShowURL" name="BugReporting101_url" - userdata="WebLaunchBugReport101,http://wiki.secondlife.com/wiki/Bug_Reporting_101" /> + <on_click name="BugReporting101_url" userdata="WebLaunchBugReport101,http://wiki.secondlife.com/wiki/Bug_Reporting_101/de"/> </menu_item_call> <menu_item_call label="Sicherheitsfragen..." name="Security Issues..."> - <on_click name="SecurityIssues_url" userdata="WebLaunchSecurityIssues,http://wiki.secondlife.com/wiki/Security_issues/de" /> + <on_click name="SecurityIssues_url" userdata="WebLaunchSecurityIssues,http://wiki.secondlife.com/wiki/Security_issues/de"/> </menu_item_call> <menu_item_call label="QA-Wiki..." name="QA Wiki..."/> <menu_item_separator label="-----------" name="separator9"/> diff --git a/indra/newview/skins/default/xui/de/notifications.xml b/indra/newview/skins/default/xui/de/notifications.xml index 72b21da528a9b35919853b2dfaf676cf71f1fa42..e920b2451f5c985e7940cc6b6c2145d24862bc3e 100644 --- a/indra/newview/skins/default/xui/de/notifications.xml +++ b/indra/newview/skins/default/xui/de/notifications.xml @@ -1,20 +1,14 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> Nicht mehr anzeigen - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> Diese Option immer auswählen - </global> - + </global> <template name="okbutton"> <form> <button - - name="OK" text="$yestext"/> </form> @@ -23,8 +17,6 @@ <template name="okignore"> <form> <button - - name="OK" text="$yestext"/> <ignore text="$ignoretext"/> @@ -34,12 +26,9 @@ <template name="okcancelbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> </form> @@ -48,12 +37,9 @@ <template name="okcancelignore"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> <ignore text="$ignoretext"/> @@ -63,12 +49,9 @@ <template name="okhelpbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Help" text="$helptext"/> </form> @@ -77,232 +60,118 @@ <template name="yesnocancelbuttons"> <form> <button - - name="Yes" text="$yestext"/> <button - name="No" text="$notext"/> <button - name="Cancel" text="$canceltext"/> </form> </template> + <notification functor="GenericAcknowledge" label="Unbekannter Warnhinweis" name="MissingAlert"> + Ihre Version von Second Life kann den gerade empfangenen Warnhinweis nicht anzeigen. - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -Der Fehler „[_NAME]“ fehlt in notifications.xml. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -Floater-Fehler: Folgende Steuerelemente wurden nicht gefunden: +Fehlerdetails: Der Warnhinweis „[_NAME]“ wurde in notifications.xml nicht gefunden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + Floater-Fehler: Folgende Steuerelemente wurden nicht gefunden: [CONTROLS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -Derzeit ist kein Tutorial verfügbar. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Ja"/> - </notification> - - <notification - - name="WearableSave" - > -Änderung an aktueller Kleidung/Körperteil speichern? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Nicht speichern" - yestext="Speichern"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -Der Text für ein Skript konnte aus folgendem Grund nicht hochgeladen werden: [REASON]. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -Eine kompiliertes Skript konnte aus folgendem Grund nicht hochgeladen werden: [REASON]. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="WriteAnimationFail" - > -Fehler beim Schreiben von Animationsdaten. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -Eine Auktions-Screenshot konnte aus folgendem Grund nicht hochgeladen werden: [REASON] - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -Es kann nur jeweils der Inhalt von einem Objekt angezeigt werden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + Derzeit ist kein Tutorial verfügbar. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Ja"/> + </notification> + <notification name="BadInstallation"> + Beim Aktualisieren von Second Life ist ein Fehler aufgetreten. Bitte laden Sie die aktuellste Version von secondlife.com herunter. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LoginFailedNoNetwork"> + Netzwerk Fehler: Eine Verbindung konnte nicht hergestellt werden. +„[DIAGNOSTIC]“ +Bitte überprüfen Sie Ihre Netzwerkverbindung. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MessageTemplateNotFound"> + Meldungsvorlage [PATH] nicht gefunden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="WearableSave"> + Änderung an aktueller Kleidung/Körperteil speichern? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Nicht speichern" yestext="Speichern"/> + </notification> + <notification name="CompileQueueSaveText"> + Der Text für ein Skript konnte aus folgendem Grund nicht hochgeladen werden: [REASON]. Bitte versuchen Sie es erneut. + </notification> + <notification name="CompileQueueSaveBytecode"> + Eine kompiliertes Skript konnte aus folgendem Grund nicht hochgeladen werden: [REASON]. Bitte versuchen Sie es erneut. + </notification> + <notification name="WriteAnimationFail"> + Fehler beim Schreiben von Animationsdaten. Bitte versuchen Sie es erneut. + </notification> + <notification name="UploadAuctionSnapshotFail"> + Eine Auktions-Screenshot konnte aus folgendem Grund nicht hochgeladen werden: [REASON] + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + Es kann nur jeweils der Inhalt von einem Objekt angezeigt werden. Wählen Sie ein einzelnes Objekt aus und versuchen Sie es erneut. - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -Änderung an Kleidung/Körperteilen speichern? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Nicht speichern" - yestext="Alles speichern"/> - </notification> - - <notification - - name="GrantModifyRights" - > -Die Gewährung von Änderungsrechten an andere Einwohner ermöglicht es diesen, JEDES BELIEBIGE Objekt zu ändern oder an sich zu nehmen, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig beim Erteilen dieser Erlaubnis. + </notification> + <notification name="SaveClothingBodyChanges"> + Änderung an Kleidung/Körperteilen speichern? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Nicht speichern" yestext="Alles speichern"/> + </notification> + <notification name="GrantModifyRights"> + Die Gewährung von Änderungsrechten an andere Einwohner ermöglicht es diesen, JEDES BELIEBIGE Objekt zu ändern oder an sich zu nehmen, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig beim Erteilen dieser Erlaubnis. Möchten Sie [FIRST_NAME] [LAST_NAME] Änderungsrechte gewähren? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -Die Gewährung von Änderungsrechten an andere Einwohner ermöglicht es diesen, JEDES BELIEBIGE Objekt zu ändern, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig beim Erteilen dieser Erlaubnis. + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + Die Gewährung von Änderungsrechten an andere Einwohner ermöglicht es diesen, JEDES BELIEBIGE Objekt zu ändern, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig beim Erteilen dieser Erlaubnis. Möchten Sie den ausgewählten Einwohnern Änderungsrechte gewähren? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -Möchten Sie [FIRST_NAME] [LAST_NAME] die Änderungsrechte entziehen? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -Möchten Sie den ausgewählten Einwohnern die Änderungsrechte entziehen? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -Gruppe konnte nicht erstellt werden. + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="RevokeModifyRights"> + Möchten Sie [FIRST_NAME] [LAST_NAME] die Änderungsrechte entziehen? + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + Möchten Sie den ausgewählten Einwohnern die Änderungsrechte entziehen? + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="UnableToCreateGroup"> + Gruppe konnte nicht erstellt werden. [MESSAGE] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Änderungen verwerfen" - yestext="Änderungen übernehmen"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -Geben Sie einen Betreff für die Gruppenmitteilung ein. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -Sie sind im Begriff, Gruppenmitgliedern die Rolle [ROLE_NAME] zuzuweisen. + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Änderungen verwerfen" yestext="Änderungen übernehmen"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + Geben Sie einen Betreff für die Gruppenmitteilung ein. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + Sie sind im Begriff, Gruppenmitgliedern die Rolle [ROLE_NAME] zuzuweisen. Diese Rolle kann Mitgliedern nicht mehr entzogen werden. Sie müssen die Rolle selbst niederlegen. Möchten Sie fortfahren? - <usetemplate - ignoretext="Beim Hinzufügen von Gruppenmitgliedern zur Eigentümerrolle" - name="okcancelignore" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -Sie sind im Begriff, der Rolle „[ROLE_NAME]“ die Fähigkeit „[ACTION_NAME]“ zuzuweisen. + <usetemplate ignoretext="Beim Hinzufügen von Gruppenmitgliedern zur Eigentümerrolle" name="okcancelignore" notext="Nein" yestext="Ja"/> + </notification> + <notification name="AssignDangerousActionWarning"> + Sie sind im Begriff, der Rolle „[ROLE_NAME]“ die Fähigkeit „[ACTION_NAME]“ zuzuweisen. *ACHTUNG* Mitglieder in einer Rolle mit dieser Fähigkeit können sich selbst - @@ -312,17 +181,10 @@ Sie sind im Begriff, der Rolle „[ROLE_NAME]“ die Fähigkeit „[ACTION_NAME] verleihen. Der Rolle „[ROLE_NAME]“ diese Fähigkeit zuweisen? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -Sie sind im Begriff, der Rolle „[ROLE_NAME]“ die Fähigkeit „[ACTION_NAME]“ zuzuweisen. + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + Sie sind im Begriff, der Rolle „[ROLE_NAME]“ die Fähigkeit „[ACTION_NAME]“ zuzuweisen. *ACHTUNG* Mitglieder in einer Rolle mit dieser Fähigkeit können sich selbst - @@ -330,2911 +192,1529 @@ Sie sind im Begriff, der Rolle „[ROLE_NAME]“ die Fähigkeit „[ACTION_NAME] damit fast Eigentümerrechte erreichen. Der Rolle „[ROLE_NAME]“ diese Fähigkeit zuweisen? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -Auswahl von „In Suche veröffentlichen“ + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="ClickPublishHelpLand"> + Auswahl von „In Suche veröffentlichen“ Dieses Kontrollkästchen zeigt Folgendes an: - diese Parzelle in den Suchergebnissen - die öffentlichen Objekte dieser Parzelle - diese Parzelle in der Websuche - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -Diese Parzelle kann nicht in der Suche angezeigt werden, da sie sich in einer Region befindet, die das verbietet. - </notification> - - <notification - - name="ClickPublishHelpAvatar" - > -Auswahl von „In Suche anzeigen“ zeigt Folgendes an: + </notification> + <notification name="ClickSoundHelpLand"> + Medien und Musik können nur innerhalb der Parzelle abgespielt werden. Sound- und Voice-Chat-Optionen können auf die Parzelle beschränkt werden oder von Einwohnern außerhalb der Parzelle, entsprechend ihrer Alterseinstufung, gehört werden. Möchten Sie unsere Knowledgebase besuchen, um mehr darüber zu erfahren, wie diese Optionen eingestellt werden können? + <url name="url"> + http://wiki.secondlife.com/wiki/Medien_auf_Parzellen_(KB) + </url> + <usetemplate name="okcancelbuttons" notext="Schließen" yestext="Zur Knowledgbase"/> + </notification> + <notification name="ClickSearchHelpAll"> + Die Suchergebnisse wurde aufgrund der entsprechenden Registerkarte, Ihrer Alterseinstufung, der gewählten Kategorie und anderen Faktoren geordnet. Bitte besuchen Sie unsere Knowledgebase, um weitere Informationen zu erhalten. + <url name="url"> + http://wiki.secondlife.com/wiki/FAQ_zur_Suchfunktion_(KB) + </url> + <usetemplate name="okcancelbuttons" notext="Schließen" yestext="Zur Knowledgbase"/> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + Diese Parzelle kann nicht in der Suche angezeigt werden, da sie sich in einer Region befindet, die das verbietet. + </notification> + <notification name="ClickPublishHelpAvatar"> + Auswahl von „In Suche anzeigen“ zeigt Folgendes an: - Ihr Profil in den Suchergebnissen - einen Link auf Ihr Profil in den öffentlichen Gruppenseiten - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -Auf der [SECOND_LIFE] Website können Sie anderen Einwohnern eine Partnerschaft vorschlagen und bestehende Partnerschaften lösen. + </notification> + <notification name="ClickPartnerHelpAvatar"> + Auf der [SECOND_LIFE] Website können Sie anderen Einwohnern eine Partnerschaft vorschlagen und bestehende Partnerschaften lösen. Die Second Life Website für weitere Informationen über Partnerschaften öffnen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Gehe zu Seite"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -Wenn dieser Einwohner einen Webprofil-URL angegeben hat, können Sie: + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Gehe zu Seite"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + Ihre Standardberechtigung funktionieren in älteren Regionen möglicherweise nicht. + </notification> + <notification name="ClickWebProfileHelpAvatar"> + Wenn dieser Einwohner einen Webprofil-URL angegeben hat, können Sie: * Auf „Laden“ klicken und die Seite in dieser Web-Registerkarte anzeigen. * Auf Laden > „In externem Browser“ klicken und die Seite im Standard-Browser anzeigen. * Auf Laden > „Start-URL“ klicken und zum Webprofil des Bewohners zurückkehren. In Ihrem eigenen Profil können Sie jeden beliebigen URL als Ihr Webprofil eingeben und mit OK übernehmen. Wenn sich andere Einwohner Ihr Profil ansehen, können sie diesen URL besuchen. - </notification> - - <notification - - name="JoinGroupCanAfford" - > -Der Beitritt zu dieser Gruppe kostet [COST] L$. + </notification> + <notification name="JoinGroupCanAfford"> + Der Beitritt zu dieser Gruppe kostet [COST] L$. Fortfahren? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Beitreten"/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -Der Beitritt zu dieser Gruppe kostet [COST] L$. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Beitreten"/> + </notification> + <notification name="JoinGroupCannotAfford"> + Der Beitritt zu dieser Gruppe kostet [COST] L$. Sie haben nicht genug L$, um dieser Gruppe beizutreten. - </notification> - - <notification - - name="LandBuyPass" - > -Sie können dieses Land („[PARCEL_NAME]“) für [COST] L$ + </notification> + <notification name="LandBuyPass"> + Sie können dieses Land („[PARCEL_NAME]“) für [COST] L$ [TIME] Stunden lang betreten. Pass kaufen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -Der Verkaufspreis muss beim allgemeinen Verkauf über 0 L$ liegen. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + Der Verkaufspreis muss beim allgemeinen Verkauf über 0 L$ liegen. Wählen Sie eine bestimmte Person aus, wenn Sie für 0 L$ verkaufen. - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -Die ausgewählten [LAND_SIZE] qm Land werden zum Verkauf freigegeben. + </notification> + <notification name="ConfirmLandSaleChange"> + Die ausgewählten [LAND_SIZE] qm Land werden zum Verkauf freigegeben. Der Verkaufspreis beträgt [SALE_PRICE] L$ und wird automatisch für den Verkauf an [NAME] autorisiert. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -ACHTUNG: Wenn Sie auf „An jeden verkaufen“ klicken, kann jeder in Second Life Ihr Land kaufen, auch Einwohner in anderen Regionen. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + ACHTUNG: Wenn Sie auf „An jeden verkaufen“ klicken, kann jeder in Second Life Ihr Land kaufen, auch Einwohner in anderen Regionen. Die ausgewählten [LAND_SIZE] qm Land werden zum Verkauf freigegeben. Der Verkaufspreis beträgt [SALE_PRICE] L$ und wird automatisch für den Verkauf an [NAME] autorisiert. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -Möchten Sie alle Ihre Objekte auf dieser Parzelle, die der Gruppe „[NAME]“ gehören, zurück in das jeweilige Inventar ihrer vorherigen Eigentümer transferieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + Möchten Sie alle Ihre Objekte auf dieser Parzelle, die der Gruppe „[NAME]“ gehören, zurück in das jeweilige Inventar ihrer vorherigen Eigentümer transferieren? *WARNUNG* Alle nicht transferierbaren Objekte, die der Gruppe übertragen wurden, werden dabei gelöscht! Objekte: [N] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedByUser" - > -Möchten Sie alle Objekte auf dieser Parzelle, die dem Einwohner „[NAME]“ gehören, in das jeweilige Inventar ihrer Eigentümer transferieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + Möchten Sie alle Objekte auf dieser Parzelle, die dem Einwohner „[NAME]“ gehören, in das jeweilige Inventar ihrer Eigentümer transferieren? Objekte: [N] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedBySelf" - > -Möchten Sie alle Objekte auf dieser Parzelle, die Ihnen gehören, zurück in Ihr Inventar transferieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + Möchten Sie alle Objekte auf dieser Parzelle, die Ihnen gehören, zurück in Ihr Inventar transferieren? Objekte: [N] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -Möchten Sie alle Objekte auf dieser Parzelle, die NICHT Ihnen gehören, in das Inventar ihrer Eigentümer transferieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + Möchten Sie alle Objekte auf dieser Parzelle, die NICHT Ihnen gehören, in das Inventar ihrer Eigentümer transferieren? Transferierbare Objekte, die an eine Gruppe übertragen wurden, werden ihren vorherigen Eigentümern zurückgegeben. *WARNUNG* Alle nicht transferierbaren Objekte, die der Gruppe übertragen wurden, werden dabei gelöscht! Objekte: [N] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByUser" - > -Möchten Sie alle Objekte auf dieser Parzelle, die NICHT [NAME] gehören, in das Inventar ihrer Eigentümer transferieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + Möchten Sie alle Objekte auf dieser Parzelle, die NICHT [NAME] gehören, in das Inventar ihrer Eigentümer transferieren? Transferierbare Objekte, die an eine Gruppe übertragen wurden, werden ihren vorherigen Eigentümern zurückgegeben. *WARNUNG* Alle nicht transferierbaren Objekte, die der Gruppe übertragen wurden, werden dabei gelöscht! Objekte: [N] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ReturnAllTopObjects" - > -Möchten Sie alle aufgeführten Objekte ihren Eigentümern zurückgeben? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="DisableAllTopObjects" - > -Möchten Sie alle Objekte in dieser Region deaktivieren? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -Objekte auf dieser Parzelle, die von der Gruppe [NAME] nicht gemeinsam genutzt werden, an ihre Eigentümer zurückgeben? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ReturnAllTopObjects"> + Möchten Sie alle aufgeführten Objekte ihren Eigentümern zurückgeben? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="DisableAllTopObjects"> + Möchten Sie alle Objekte in dieser Region deaktivieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + Objekte auf dieser Parzelle, die von der Gruppe [NAME] nicht gemeinsam genutzt werden, an ihre Eigentümer zurückgeben? Objekte: [N] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="UnableToDisableOutsideScripts" - > -Skriptdeaktivierung nicht möglich. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + Skriptdeaktivierung nicht möglich. Für die gesamte Region ist Schaden aktiviert. Damit Waffen funktionieren, müssen Skripts erlaubt sein. - </notification> - - <notification - - name="MustBeInParcel" - > -Sie müssen auf einer Landparzelle stehen, um ihren Landepunkt festzulegen. - </notification> - - <notification - - name="PromptRecipientEmail" - > -Bitte geben Sie für den/die Empfänger eine gültige Email-Adresse ein. - </notification> - - <notification - - name="PromptSelfEmail" - > -Geben Sie Ihre E-Mail-Adresse ein. - </notification> - - <notification - - name="PromptMissingSubjMsg" - > -Foto mit Standardbetreff bzw. -nachricht als E-Mail versenden? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ErrorProcessingSnapshot" - > -Fehler beim Verarbeiten der Fotodaten - </notification> - - <notification - - name="ErrorEncodingSnapshot" - > -Fehler beim Erstellen des Fotos! - </notification> - - <notification - - name="ErrorUploadingPostcard" - > -Ein Foto konnte aus folgendem Grund nicht gesendet werden: [REASON] - </notification> - - <notification - - name="ErrorUploadingReportScreenshot" - > -Ein Report-Screenshot konnte aus folgendem Grund nicht hochgeladen werden: [REASON] - </notification> - - <notification - - name="MustAgreeToLogIn" - > -Bevor Sie sich in [SECOND_LIFE] anmelden können, müssen Sie den Nutzungsbedingungen zustimmen. - </notification> - - <notification - - name="CouldNotPutOnOutfit" - > -Outfit konnte nicht angezogen werden. + </notification> + <notification name="MustBeInParcel"> + Sie müssen auf einer Landparzelle stehen, um ihren Landepunkt festzulegen. + </notification> + <notification name="PromptRecipientEmail"> + Bitte geben Sie für den/die Empfänger eine gültige Email-Adresse ein. + </notification> + <notification name="PromptSelfEmail"> + Geben Sie Ihre E-Mail-Adresse ein. + </notification> + <notification name="PromptMissingSubjMsg"> + Foto mit Standardbetreff bzw. -nachricht als E-Mail versenden? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + Fehler beim Verarbeiten der Fotodaten + </notification> + <notification name="ErrorEncodingSnapshot"> + Fehler beim Erstellen des Fotos! + </notification> + <notification name="ErrorUploadingPostcard"> + Ein Foto konnte aus folgendem Grund nicht gesendet werden: [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + Ein Report-Screenshot konnte aus folgendem Grund nicht hochgeladen werden: [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + Bevor Sie sich in [SECOND_LIFE] anmelden können, müssen Sie den Nutzungsbedingungen zustimmen. + </notification> + <notification name="CouldNotPutOnOutfit"> + Outfit konnte nicht angezogen werden. Der Outfit-Ordner enthält keine Kleidung, Körperteile oder Anhänge. - </notification> - - <notification - - name="CannotWearTrash" - > -Kleider oder Körperteile im Papierkorb können nicht getragen werden - </notification> - - <notification - - name="CannotWearInfoNotComplete" - > -Sie können das Objekt nicht anziehen, weil es noch nicht geladen wurde. Warten Sie kurz und versuchen Sie es dann noch einmal. - </notification> - - <notification - - name="MustHaveAccountToLogIn" - > -Hoppla! Da fehlt noch etwas. + </notification> + <notification name="CannotWearTrash"> + Kleider oder Körperteile im Papierkorb können nicht getragen werden + </notification> + <notification name="CannotWearInfoNotComplete"> + Sie können das Objekt nicht anziehen, weil es noch nicht geladen wurde. Warten Sie kurz und versuchen Sie es dann noch einmal. + </notification> + <notification name="MustHaveAccountToLogIn"> + Hoppla! Da fehlt noch etwas. Geben Sie bitte den Vor- und den Nachnamen Ihres Avatars ein. Sie benötigen ein Benutzerkonto, um [SECOND_LIFE] betreten zu können. Möchten Sie jetzt ein Benutzerkonto anlegen? - <usetemplate - name="okcancelbuttons" - notext="Erneut versuchen" - yestext="Neues Benutzerkonto anlegen"/> - </notification> - - <notification - - name="AddClassified" - > -Anzeigen erscheinen für eine Woche unter „Anzeigen“ im Suchverzeichnis. Füllen Sie Ihre Anzeige aus und klicken Sie auf „Veröffentlichen...“, um sie zum Verzeichnis hinzuzufügen. Sie werden gebeten, einen Preis zu bezahlen, wenn Sie auf „Veröffentlichen“ klicken. Wenn Sie mehr bezahlen oder ein Benutzer nach Ihren Suchbegriffen sucht, erscheint Ihre Anzeige weiter oben in der Liste. - <usetemplate - ignoretext="Beim Hinzufügen einer neuen Anzeige" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="DeleteClassified" - > -Anzeige „[NAME]“ löschen? + <usetemplate name="okcancelbuttons" notext="Erneut versuchen" yestext="Neues Benutzerkonto anlegen"/> + </notification> + <notification name="AddClassified"> + Anzeigen erscheinen für eine Woche unter „Anzeigen“ im Suchverzeichnis. Füllen Sie Ihre Anzeige aus und klicken Sie auf „Veröffentlichen...“, um sie zum Verzeichnis hinzuzufügen. Sie werden gebeten, einen Preis zu bezahlen, wenn Sie auf „Veröffentlichen“ klicken. Wenn Sie mehr bezahlen oder ein Benutzer nach Ihren Suchbegriffen sucht, erscheint Ihre Anzeige weiter oben in der Liste. + <usetemplate ignoretext="Beim Hinzufügen einer neuen Anzeige" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="DeleteClassified"> + Anzeige „[NAME]“ löschen? Gebühren werden nicht rückerstattet. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ClassifiedSave" - > -Änderung an Anzeige [NAME] speichern? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Nicht speichern" - yestext="Speichern"/> - </notification> - - <notification - - name="DeleteAvatarPick" - > -Auswahl [PICK] löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="PromptGoToEventsPage" - > -Zur [SECOND_LIFE] Events-Webseite? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="SelectProposalToView" - > -Wählen Sie ein Angebot zur Ansicht. - </notification> - - <notification - - name="SelectHistoryItemToView" - > -Wählen Sie ein Element zur Ansicht. - </notification> - - <notification - - name="ResetShowNextTimeDialogs" - > -Möchten Sie alle Popups wieder aktivieren, die Sie zuvor auf „Nicht mehr anzeigen“ gesetzt haben? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -Möchten Sie alle Popups, die übersprungen werden können, deaktivieren? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="CacheWillClear" - > -Der Cache wird nach einem Neustart von [SECOND_LIFE] geleert. - </notification> - - <notification - - name="CacheWillBeMoved" - > -Der Cache wird nach einem Neustart von [SECOND_LIFE] verschoben. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ClassifiedSave"> + Änderung an Anzeige [NAME] speichern? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Nicht speichern" yestext="Speichern"/> + </notification> + <notification name="DeleteAvatarPick"> + Auswahl [PICK] löschen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="PromptGoToEventsPage"> + Zur [SECOND_LIFE] Events-Webseite? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="SelectProposalToView"> + Wählen Sie ein Angebot zur Ansicht. + </notification> + <notification name="SelectHistoryItemToView"> + Wählen Sie ein Element zur Ansicht. + </notification> + <notification name="ResetShowNextTimeDialogs"> + Möchten Sie alle Popups wieder aktivieren, die Sie zuvor auf „Nicht mehr anzeigen“ gesetzt haben? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + Möchten Sie alle Popups, die übersprungen werden können, deaktivieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + Der Cache wird nach einem Neustart von [SECOND_LIFE] geleert. + </notification> + <notification name="CacheWillBeMoved"> + Der Cache wird nach einem Neustart von [SECOND_LIFE] verschoben. Hinweis: Der Cache wird dabei gelöscht/geleert. - </notification> - - <notification - - name="ChangeConnectionPort" - > -Die Port-Einstellungen werden nach einem Neustart von [SECOND_LIFE] wirksam. - </notification> - - - - <notification - - name="GoToAuctionPage" - > -Zur [SECOND_LIFE]-Webseite, um Auktionen anzuzeigen oder ein Gebot abzugeben? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="SaveChanges" - > -Änderungen speichern? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Nicht speichern" - yestext="Speichern"/> - </notification> - - <notification - - name="GestureSaveFailedTooManySteps" - > -Speichern der Geste fehlgeschlagen. + </notification> + <notification name="ChangeConnectionPort"> + Die Port-Einstellungen werden nach einem Neustart von [SECOND_LIFE] wirksam. + </notification> + <notification name="ChangeSkin"> + Die neue Benutzeroberfläche wird nach einem Neustart von [SECOND_LIFE] angewendet. + </notification> + <notification name="GoToAuctionPage"> + Zur [SECOND_LIFE]-Webseite, um Auktionen anzuzeigen oder ein Gebot abzugeben? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="SaveChanges"> + Änderungen speichern? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Nicht speichern" yestext="Speichern"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + Speichern der Geste fehlgeschlagen. Die Geste besteht aus zu vielen Schritten. Löschen Sie einige Schritte und versuchen Sie es erneut. - </notification> - - <notification - - name="GestureSaveFailedTryAgain" - > -Speichern der Geste fehlgeschlagen. Warten Sie kurz und versuchen Sie es dann noch einmal. - </notification> - - <notification - - name="GestureSaveFailedObjectNotFound" - > -Geste konnte nicht gespeichert werden, da das Objekt oder das zugehörige Objektinventar nicht gefunden wurden. + </notification> + <notification name="GestureSaveFailedTryAgain"> + Speichern der Geste fehlgeschlagen. Warten Sie kurz und versuchen Sie es dann noch einmal. + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + Geste konnte nicht gespeichert werden, da das Objekt oder das zugehörige Objektinventar nicht gefunden wurden. Das Objekt ist möglicherweise außer Reichweite oder wurde gelöscht. - </notification> - - <notification - - name="GestureSaveFailedReason" - > -Eine Geste konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie die Geste bitte später. - </notification> - - <notification - - name="SaveNotecardFailObjectNotFound" - > -Notizkarte konnte nicht gespeichert werden, da das Objekt oder das zugehörige Objektinventar nicht gefunden wurden. + </notification> + <notification name="GestureSaveFailedReason"> + Eine Geste konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie die Geste bitte später. + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + Notizkarte konnte nicht gespeichert werden, da das Objekt oder das zugehörige Objektinventar nicht gefunden wurden. Das Objekt ist möglicherweise außer Reichweite oder wurde gelöscht. - </notification> - - <notification - - name="SaveNotecardFailReason" - > -Eine Notizkarte konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie die Notizkarte bitte später. - </notification> - - <notification - - name="ScriptCannotUndo" - > -Es konnten nicht alle Änderungen in Ihrer Skriptversion rückgängig gemacht werden. + </notification> + <notification name="SaveNotecardFailReason"> + Eine Notizkarte konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie die Notizkarte bitte später. + </notification> + <notification name="ScriptCannotUndo"> + Es konnten nicht alle Änderungen in Ihrer Skriptversion rückgängig gemacht werden. Möchten Sie die letzte gespeicherte Version vom Server laden? (**Warnung** Dieser Vorgang kann nicht rückgängig gemacht werden.) - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="SaveScriptFailReason" - > -Ein Skript konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie das Skript bitte später. - </notification> - - <notification - - name="SaveScriptFailObjectNotFound" - > -Skript konnte nicht gespeichert werden, weil das zugehörige Objekt nicht gefunden wurde. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="SaveScriptFailReason"> + Ein Skript konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie das Skript bitte später. + </notification> + <notification name="SaveScriptFailObjectNotFound"> + Skript konnte nicht gespeichert werden, weil das zugehörige Objekt nicht gefunden wurde. Das Objekt ist möglicherweise außer Reichweite oder wurde gelöscht. - </notification> - - <notification - - name="SaveBytecodeFailReason" - > -Ein kompiliertes Skript konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie das Skript bitte später. - </notification> - - <notification - - name="CouldNotStartStopScript" - > -Skript konnte nicht gestartet oder beendet werden, weil das zugehörige Objekt nicht gefunden wurde. + </notification> + <notification name="SaveBytecodeFailReason"> + Ein kompiliertes Skript konnte aus folgendem Grund nicht gespeichert werden: [REASON]. Speichern Sie das Skript bitte später. + </notification> + <notification name="CouldNotStartStopScript"> + Skript konnte nicht gestartet oder beendet werden, weil das zugehörige Objekt nicht gefunden wurde. Das Objekt ist möglicherweise außer Reichweite oder wurde gelöscht. - </notification> - - <notification - - name="CannotDownloadFile" - > -Dateidownload nicht möglich - </notification> - - <notification - - name="CannotWriteFile" - > -Datei [[FILE]] kann nicht geschrieben werden - </notification> - - <notification - - name="UnsupportedHardware" - > -Achtung: Ihr System erfüllt nicht die Mindestanforderungen von Second Life. Dies kann eine schlechte Darstellungsleistung in Second Life zur Folge haben. Für nicht unterstützte Systemkonfigurationen bieten wir keinen technischen Support. + </notification> + <notification name="CannotDownloadFile"> + Dateidownload nicht möglich + </notification> + <notification name="CannotWriteFile"> + Datei [[FILE]] kann nicht geschrieben werden + </notification> + <notification name="UnsupportedHardware"> + Achtung: Ihr System erfüllt nicht die Mindestanforderungen von Second Life. Dies kann eine schlechte Darstellungsleistung in Second Life zur Folge haben. Für nicht unterstützte Systemkonfigurationen bieten wir keinen technischen Support. MINSPECS Die Seite [_URL] für weitere Informationen öffnen? - <url option="0" name="url"> - + <url name="url" option="0"> http://secondlife.com/support/sysreqs.php?lang=de - </url> - <usetemplate - ignoretext="Bei Entdeckung nicht unterstützter Hardware" - name="okcancelignore" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="UnknownGPU" - > -Ihr System verwendet eine uns zurzeit unbekannte Grafikkarte. + </url> + <usetemplate ignoretext="Bei Entdeckung nicht unterstützter Hardware" name="okcancelignore" notext="Nein" yestext="Ja"/> + </notification> + <notification name="UnknownGPU"> + Ihr System verwendet eine uns zurzeit unbekannte Grafikkarte. Dies ist häufig der Fall bei neuer Hardware, die wir noch nicht testen konnten. Second Life funktioniert aller Voraussicht nach normal, möglicherweise müssen Sie aber die Grafikeinstellungen anpassen. (Bearbeiten > Einstellungen > Grafik). - <form name="form"> - <ignore name="ignore" - text="Bei Entdeckung einer unbekannten Grafikkarte"/> - </form> - </notification> - - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] ist bei der Initialisierung der Grafiktreiber abgestürzt. + <form name="form"> + <ignore name="ignore" text="Bei Entdeckung einer unbekannten Grafikkarte"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] ist bei der Initialisierung der Grafiktreiber abgestürzt. Die Grafikqualität wird auf eine niedrige Stufe zurückgesetzt, um einige typische Treiberfehler zu vermeiden. Einige Grafikfunktionen werden ausgeschaltet. Wir empfehlen die Aktualisierung Ihrer Grafikkartentreiber. Sie können die Grafikqualität unter „Einstellungen“ > „Grafik“ wieder erhöhen. - </notification> - - <notification - - name="RegionNoTerraforming" - > -Die Region [REGION] erlaubt kein Terraforming. - </notification> - - <notification - - name="CannotCopyWarning" - > -Sie sind nicht berechtigt, dieses Objekt zu kopieren und verlieren es aus Ihrem Inventar, wenn Sie es weggeben. Möchten Sie dieses Objekt anbieten? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="CannotGiveItem" - > -Inventarobjekt kann nicht übergeben werden. - </notification> - - <notification - - name="TransactionCancelled" - > -Transaktion abgebrochen. - </notification> - - <notification - - name="TooManyItems" - > -Es können maximal 42 Objekte auf einmal in das Inventar transferiert werden. - </notification> - - <notification - - name="NoItems" - > -Sie sind nicht berechtigt, die ausgewählten Objekte zu kopieren. - </notification> - - <notification - - name="CannotCopyCountItems" - > -Sie sind nicht berechtigt, [COUNT] der ausgewählten Objekte zu kopieren. Diese Objekte werden aus Ihrem Inventar gelöscht. + </notification> + <notification name="RegionNoTerraforming"> + Die Region [REGION] erlaubt kein Terraforming. + </notification> + <notification name="CannotCopyWarning"> + Sie sind nicht berechtigt, dieses Objekt zu kopieren und verlieren es aus Ihrem Inventar, wenn Sie es weggeben. Möchten Sie dieses Objekt anbieten? + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="CannotGiveItem"> + Inventarobjekt kann nicht übergeben werden. + </notification> + <notification name="TransactionCancelled"> + Transaktion abgebrochen. + </notification> + <notification name="TooManyItems"> + Es können maximal 42 Objekte auf einmal in das Inventar transferiert werden. + </notification> + <notification name="NoItems"> + Sie sind nicht berechtigt, die ausgewählten Objekte zu kopieren. + </notification> + <notification name="CannotCopyCountItems"> + Sie sind nicht berechtigt, [COUNT] der ausgewählten Objekte zu kopieren. Diese Objekte werden aus Ihrem Inventar gelöscht. Möchten Sie diese Objekte weggeben? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="CannotGiveCategory" - > -Sie sind nicht berechtigt, den ausgewählten Ordner zu kopieren. - </notification> - - <notification - - name="FreezeAvatar" - > -Diesen Avatar einfrieren? + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="CannotGiveCategory"> + Sie sind nicht berechtigt, den ausgewählten Ordner zu kopieren. + </notification> + <notification name="FreezeAvatar"> + Diesen Avatar einfrieren? Der Avatar wird außer Gefecht gesetzt und kann sich nicht mehr bewegen, chatten oder mit der Welt interagieren. - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Auftauen" - yestext="Einfrieren"/> - </notification> - - <notification - - name="FreezeAvatarFullname" - > -[AVATAR_NAME] einfrieren? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Auftauen" yestext="Einfrieren"/> + </notification> + <notification name="FreezeAvatarFullname"> + [AVATAR_NAME] einfrieren? Der Avatar wird außer Gefecht gesetzt und kann sich nicht mehr bewegen, chatten oder mit der Welt interagieren. - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Auftauen" - yestext="Einfrieren"/> - </notification> - - <notification - - name="EjectAvatarFullname" - > -[AVATAR_NAME] von Ihrem Land werfen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Ausschließen und Verbannen" - yestext="Ausschließen"/> - </notification> - - <notification - - name="EjectAvatarNoBan" - > -Diesen Avatar aus Ihrem Land werfen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Hinauswerfen"/> - </notification> - - <notification - - name="EjectAvatarFullnameNoBan" - > -[AVATAR_NAME] aus Ihrem Land werfen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Hinauswerfen"/> - </notification> - - <notification - - name="AcquireErrorTooManyObjects" - > -FEHLER: Zu viele Objekte ausgewählt. - </notification> - - <notification - - name="AcquireErrorObjectSpan" - > -FEHLER: Die Objekte überspannen mehrere Regionen. + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Auftauen" yestext="Einfrieren"/> + </notification> + <notification name="EjectAvatarFullname"> + [AVATAR_NAME] von Ihrem Land werfen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Ausschließen und Verbannen" yestext="Ausschließen"/> + </notification> + <notification name="EjectAvatarNoBan"> + Diesen Avatar aus Ihrem Land werfen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Hinauswerfen"/> + </notification> + <notification name="EjectAvatarFullnameNoBan"> + [AVATAR_NAME] aus Ihrem Land werfen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Hinauswerfen"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + FEHLER: Zu viele Objekte ausgewählt. + </notification> + <notification name="AcquireErrorObjectSpan"> + FEHLER: Die Objekte überspannen mehrere Regionen. Verschieben Sie alle betreffenden Objekte in dieselbe Region. - </notification> - - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] [URL] für Informationen zum Deviseneinkauf öffnen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="UnableToLinkObjects" - > -Verknüpfung dieser [COUNT] Objekte nicht möglich. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="UnableToLinkObjects"> + Verknüpfung dieser [COUNT] Objekte nicht möglich. Sie können maximal [MAX] Objekte verknüpfen. - </notification> - - <notification - - name="CannotLinkIncompleteSet" - > -Sie können nur vollständige Objektsätze verknüpfen und Sie müssen mehr als ein Objekt auswählen. - </notification> - - <notification - - name="CannotLinkModify" - > -Verknüpfung nicht möglich, da Sie nicht alle Objekte bearbeiten dürfen. + </notification> + <notification name="CannotLinkIncompleteSet"> + Sie können nur vollständige Objektsätze verknüpfen und Sie müssen mehr als ein Objekt auswählen. + </notification> + <notification name="CannotLinkModify"> + Verknüpfung nicht möglich, da Sie nicht alle Objekte bearbeiten dürfen. Stellen Sie sicher, dass kein Objekt gesperrt ist und alle Objekte Ihnen gehören. - </notification> - - <notification - - name="CannotLinkDifferentOwners" - > -Verknüpfung nicht möglich, da nicht alle Objekte denselben Eigentümer haben. + </notification> + <notification name="CannotLinkDifferentOwners"> + Verknüpfung nicht möglich, da nicht alle Objekte denselben Eigentümer haben. Stellen Sie sicher, dass alle ausgewählten Objekte Ihnen gehören. - </notification> - - <notification - - name="NoFileExtension" - > -Kein Dateityp für Datei: „[FILE]“ + </notification> + <notification name="NoFileExtension"> + Kein Dateityp für Datei: „[FILE]“ Vergewissern Sie sich, dass die Datei den richtigen Dateityp hat. - </notification> - - <notification - - name="InvalidFileExtension" - > -Ungültige Datei-Endung [EXTENSION] + </notification> + <notification name="InvalidFileExtension"> + Ungültige Datei-Endung [EXTENSION] Erwartet wurde [VALIDS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -Sounddatei konnte nicht hochgeladen werden: + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + Sounddatei konnte nicht hochgeladen werden: [FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -Die Datei ist anscheinend keine RIFF WAVE-Datei: + </notification> + <notification name="SoundFileNotRIFF"> + Die Datei ist anscheinend keine RIFF WAVE-Datei: [FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -Die Datei ist anscheinend keine PCM WAVE-Audiodatei: + </notification> + <notification name="SoundFileNotPCM"> + Die Datei ist anscheinend keine PCM WAVE-Audiodatei: [FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -Die Datei hat eine ungültige Anzahl Tonkanäle (muss Mono oder Stereo sein): + </notification> + <notification name="SoundFileInvalidChannelCount"> + Die Datei hat eine ungültige Anzahl Tonkanäle (muss Mono oder Stereo sein): [FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -Die Sample-Rate dieser Datei wird nicht unterstützt (muss 44,1 K sein): + </notification> + <notification name="SoundFileInvalidSampleRate"> + Die Sample-Rate dieser Datei wird nicht unterstützt (muss 44,1 K sein): [FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -Die Word-Größe dieser Datei wird nicht unterstützt (muss 8 oder 16 Bit sein): + </notification> + <notification name="SoundFileInvalidWordSize"> + Die Word-Größe dieser Datei wird nicht unterstützt (muss 8 oder 16 Bit sein): [FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -„Daten“-Chunk in WAV-Header nicht gefunden: + </notification> + <notification name="SoundFileInvalidHeader"> + „Daten“-Chunk in WAV-Header nicht gefunden: [FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -Audiodatei ist zu lang (max. 10 Sekunden): + </notification> + <notification name="SoundFileInvalidTooLong"> + Audiodatei ist zu lang (max. 10 Sekunden): [FILE] - </notification> - - <notification - - name="ProblemWithFile" - > -Problem mit Datei [FILE]: + </notification> + <notification name="ProblemWithFile"> + Problem mit Datei [FILE]: [ERROR] - </notification> - - <notification - - name="CannotOpenTemporarySoundFile" - > -Temporäre komprimierte Sounddatei konnte nicht geöffnet werden: [FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -Unbekannter Vorbis-Kodierungsfehler in: [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -Ressourcendatei beschädigt: [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -Unbekannte Linden-Ressourcenversion in Datei: [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -Ausgabedatei konnte nicht erstellt werden: [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -Der Mehrfach-Upload von Animationsdateien wird zurzeit nicht unterstützt. - </notification> - - <notification - - name="CannotUploadReason" - > -Datei [FILE] kann aus folgendem Grund nicht hochgeladen werden: [REASON] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + Temporäre komprimierte Sounddatei konnte nicht geöffnet werden: [FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + Unbekannter Vorbis-Kodierungsfehler in: [FILE] + </notification> + <notification name="CannotEncodeFile"> + Datei konnte nicht kodiert werden: [FILE] + </notification> + <notification name="CorruptResourceFile"> + Ressourcendatei beschädigt: [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + Unbekannte Linden-Ressourcenversion in Datei: [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + Ausgabedatei konnte nicht erstellt werden: [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + Der Mehrfach-Upload von Animationsdateien wird zurzeit nicht unterstützt. + </notification> + <notification name="CannotUploadReason"> + Datei [FILE] kann aus folgendem Grund nicht hochgeladen werden: [REASON] Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -Sie können hier keine Landmarke erstellen, da der Landeigentümer dies verboten hat. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -„Rekompilieren“ nicht möglich. + </notification> + <notification name="CannotCreateLandmarkNotOwner"> + Sie können hier keine Landmarke erstellen, da der Landeigentümer dies verboten hat. + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + „Rekompilieren“ nicht möglich. Objekt mit Skript wählen. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -„Rekompilieren“ nicht möglich. + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + „Rekompilieren“ nicht möglich. Wählen Sie Objekte mit Skripts, die Sie bearbeiten dürfen. - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -„Zurücksetzen“ nicht möglich. + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + „Zurücksetzen“ nicht möglich. Wählen Sie Objekte mit Skripts. - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -„Zurücksetzen“ nicht möglich. + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + „Zurücksetzen“ nicht möglich. Wählen Sie Objekte mit Skripts, die Sie bearbeiten dürfen. - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -„Ausführen“ von Skripts nicht möglich. + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + „Ausführen“ von Skripts nicht möglich. Wählen Sie Objekte mit Skripts. - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -„Deaktivieren“ von Skripts nicht möglich. + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + „Deaktivieren“ von Skripts nicht möglich. Wählen Sie Objekte mit Skripts. - </notification> - - <notification - - name="NoFrontmostFloater" - > -Kein vorderster Floater zum Speichern. - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -Ihre Suchanfrage wurde geändert. + </notification> + <notification name="NoFrontmostFloater"> + Kein vorderster Floater zum Speichern. + </notification> + <notification name="SeachFilteredOnShortWords"> + Ihre Suchanfrage wurde geändert. Zu kurze Begriffe wurden entfernt. Ihre Suchanfrage: [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -Ihre Suchbegriffe sind zu kurz. + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + Ihre Suchbegriffe sind zu kurz. Es wurde keine Suche durchgeführt. - </notification> - - <notification - - name="CouldNotTeleportReason" - > -Teleport fehlgeschlagen. + </notification> + <notification name="CouldNotTeleportReason"> + Teleport fehlgeschlagen. [REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -Landeigentümer kann nicht festgelegt werden: + </notification> + <notification name="invalid_tport"> + Bei der Bearbeitung Ihrer Teleport-Anfrage ist ein Problem aufgetreten. Sie müssen sich zum Teleportieren eventuell neu anmelden. Wenn Sie diese Nachricht weiterhin erhalten, konsultieren Sie bitte die Tech-Support-FAQ unter: +www.secondlife.com/support + </notification> + <notification name="invalid_region_handoff"> + Bei der Bearbeitung Ihres Regionswechsels ist ein Problem aufgetreten. Sie müssen sich zum Wechsel der Region eventuell neu anmelden. Wenn Sie diese Nachricht weiterhin erhalten, konsultieren Sie bitte die Tech-Support-FAQ unter: +www.secondlife.com/support + </notification> + <notification name="blocked_tport"> + Teleportieren ist zurzeit leider nicht möglich. Versuchen Sie es später noch einmal. +Wenn der Teleport dann immer noch nicht funktioniert, melden Sie sich bitte ab und wieder an. + </notification> + <notification name="nolandmark_tport"> + Das System konnte das Landmarken-Ziel nicht finden. + </notification> + <notification name="timeout_tport"> + Das System konnte keine Teleport-Verbindung herstellen. +Versuchen Sie es später noch einmal. + </notification> + <notification name="noaccess_tport"> + Sie haben leider keinen Zugang zu diesem Teleport-Ziel. + </notification> + <notification name="missing_attach_tport"> + Ihre Anhänge sind noch nicht eingetroffen. Warten Sie kurz oder melden Sie sich ab und wieder an, bevor Sie einen neuen Teleport-Versuch unternehmen. + </notification> + <notification name="too_many_uploads_tport"> + Die Asset-Warteschlange in dieser Region ist zurzeit überlastet. +Ihre Teleport-Anfrage kann nicht sofort bearbeitet werden. Versuchen Sie es in einigen Minuten erneut oder besuchen Sie eine weniger überfüllte Region. + </notification> + <notification name="expired_tport"> + Das System konnte Ihre Teleport-Anfrage nicht rechtzeitig bearbeiten. Versuchen Sie es in einigen Minuten erneut. + </notification> + <notification name="expired_region_handoff"> + Das System konnte Ihre Anfrage zum Regionswechsel nicht rechtzeitig bearbeiten. Versuchen Sie es in einigen Minuten erneut. + </notification> + <notification name="no_host"> + Teleport-Ziel wurde nicht gefunden. Das Ziel ist entweder im Moment nicht verfügbar oder existiert nicht mehr. Versuchen Sie es in einigen Minuten erneut. + </notification> + <notification name="no_inventory_host"> + Das Inventarsystem ist zurzeit nicht verfügbar. + </notification> + <notification name="CannotSetLandOwnerNothingSelected"> + Landeigentümer kann nicht festgelegt werden: Keine Parzelle ausgewählt. - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -Eine erzwungene Landübertragung ist nicht möglich, da die Auswahl mehrere Regionen umfasst. Wählen Sie ein kleineres Gebiet und versuchen Sie es erneut. - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -Diese Parzelle steht zur Auktion. Eine zwangsweise Eigentumsübertragung beendet die Auktion und verärgert womöglich Einwohner, die bereits ein Gebot abgegeben haben. Eigentumsübertragung erzwingen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -Inhaltsidentifizierung nicht möglich: + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + Eine erzwungene Landübertragung ist nicht möglich, da die Auswahl mehrere Regionen umfasst. Wählen Sie ein kleineres Gebiet und versuchen Sie es erneut. + </notification> + <notification name="ForceOwnerAuctionWarning"> + Diese Parzelle steht zur Auktion. Eine zwangsweise Eigentumsübertragung beendet die Auktion und verärgert womöglich Einwohner, die bereits ein Gebot abgegeben haben. Eigentumsübertragung erzwingen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + Inhaltsidentifizierung nicht möglich: Keine Parzelle ausgewählt. - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -Inhaltsidentifizierung nicht möglich: + </notification> + <notification name="CannotContentifyNoRegion"> + Inhaltsidentifizierung nicht möglich: Keine Region ausgewählt. - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandNothingSelected"> + Land kann nicht aufgegeben werden: Keine Parzelle ausgewählt. - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandNoRegion"> + Land kann nicht aufgegeben werden: Region nicht gefunden. - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -Land kann nicht gekauft werden: + </notification> + <notification name="CannotBuyLandNothingSelected"> + Land kann nicht gekauft werden: Keine Parzelle ausgewählt. - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -Land kann nicht gekauft werden: + </notification> + <notification name="CannotBuyLandNoRegion"> + Land kann nicht gekauft werden: Kann die Region nicht finden, in der sich dieses Land befindet. - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -Das Fenster „Land kaufen“ kann erst geschlossen werden, + </notification> + <notification name="CannotCloseFloaterBuyLand"> + Das Fenster „Land kaufen“ kann erst geschlossen werden, nachdem Second Life den Transaktionspreis geschätzt hat. - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -Land kann nicht übertragen werden: + </notification> + <notification name="CannotDeedLandNothingSelected"> + Land kann nicht übertragen werden: Keine Parzelle ausgewählt. - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -Land kann nicht übertragen werden: + </notification> + <notification name="CannotDeedLandNoGroup"> + Land kann nicht übertragen werden: Keine Gruppe ausgewählt. - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -Land kann nicht übertragen werden: + </notification> + <notification name="CannotDeedLandNoRegion"> + Land kann nicht übertragen werden: Kann die Region nicht finden, in der sich dieses Land befindet. Bitte melden Sie dies über „Hilfe“ > „Fehler melden“. - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -Land kann nicht übertragen werden: + </notification> + <notification name="CannotDeedLandMultipleSelected"> + Land kann nicht übertragen werden: Mehrere Parzellen ausgewählt. Wählen Sie eine einzelne Parzelle. - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -Dieser Ort kann Streaming-Medien abspielen. + </notification> + <notification name="ParcelCanPlayMedia"> + Dieser Ort kann Streaming-Medien abspielen. Streaming-Medien erfordern eine schnelle Internet-Verbindung. Streaming-Medien abspielen, wenn verfügbar? (Sie können diese Option später unter „Einstellungen“ > „Audio & Video“ ändern.) - <usetemplate - name="okcancelbuttons" - notext="Deaktivieren" - yestext="Medien wiedergeben"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -Land kann nicht übertragen werden: + <usetemplate name="okcancelbuttons" notext="Deaktivieren" yestext="Medien wiedergeben"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + Land kann nicht übertragen werden: Warte auf Server für Eigentümerinformationen. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -Land kann nicht übertragen werden: + </notification> + <notification name="CannotDeedLandNoTransfer"> + Land kann nicht übertragen werden: Die Region [REGION] erlaubt keine Landübertragung. - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandWatingForServer"> + Land kann nicht aufgegeben werden: Server muss Parzelleninformation aktualisieren. Versuchen Sie es in einigen Sekunden erneut. - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandSelected"> + Land kann nicht aufgegeben werden: Die ausgewählten Parzellen gehören Ihnen nicht. Wählen Sie eine einzelne Parzelle. - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandDontOwn"> + Land kann nicht aufgegeben werden: Ihnen fehlt die Berechtigung zur Freigabe dieser Parzelle. Parzellen, die Ihnen gehören, werden grün dargestellt. - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + Land kann nicht aufgegeben werden: Kann die Region nicht finden, in der sich dieses Land befindet. Bitte melden Sie dies über „Hilfe“ > „Fehler melden“. - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandNoTransfer"> + Land kann nicht aufgegeben werden: Die Region [REGION] erlaubt keine Landübertragung. - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -Land kann nicht aufgegeben werden: + </notification> + <notification name="CannotReleaseLandPartialSelection"> + Land kann nicht aufgegeben werden: Zum Freigeben müssen Sie eine ganze Parzelle auswählen. Wählen Sie eine ganze Parzelle oder teilen Sie Ihre Parzelle. - </notification> - - <notification - - name="ReleaseLandWarning" - > -Sie sind im Begriff, [AREA] qm Land aufzugeben. + </notification> + <notification name="ReleaseLandWarning"> + Sie sind im Begriff, [AREA] qm Land aufzugeben. Wenn Sie diese Parzelle aufgeben, wird sie ohne L$-Erstattung von Ihrem Landbesitz entfernt. Dieses Land aufgeben? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -Land kann nicht aufgeteilt werden: + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + Land kann nicht aufgeteilt werden: Keine Parzellen ausgewählt. - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -Land kann nicht aufgeteilt werden: + </notification> + <notification name="CannotDivideLandPartialSelection"> + Land kann nicht aufgeteilt werden: Sie haben eine ganze Parzelle ausgewählt. Wählen Sie einen Parzellenabschnitt aus. - </notification> - - <notification - - name="LandDivideWarning" - > -Wenn Sie dieses Land teilen, wird diese Parzelle in zwei geteilt, jede mit ihren eigenen Einstellungen. Einige dieser Einstellungen werden aufgrund dieses Vorgangs zurückgesetzt. + </notification> + <notification name="LandDivideWarning"> + Wenn Sie dieses Land teilen, wird diese Parzelle in zwei geteilt, jede mit ihren eigenen Einstellungen. Einige dieser Einstellungen werden aufgrund dieses Vorgangs zurückgesetzt. Land teilen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -Land kann nicht aufgeteilt werden: + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + Land kann nicht aufgeteilt werden: Kann die Region nicht finden, in der sich dieses Land befindet. Bitte melden Sie dies über „Hilfe“ > „Fehler melden“. - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -Land kann nicht zusammengelegt werden: + </notification> + <notification name="CannotJoinLandNoRegion"> + Land kann nicht zusammengelegt werden: Kann die Region nicht finden, in der sich dieses Land befindet. Bitte melden Sie dies über „Hilfe“ > „Fehler melden“. - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -Land kann nicht zusammengelegt werden: + </notification> + <notification name="CannotJoinLandNothingSelected"> + Land kann nicht zusammengelegt werden: Keine Parzellen ausgewählt. - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -Land kann nicht zusammengelegt werden: + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + Land kann nicht zusammengelegt werden: Sie haben nur eine Parzelle ausgewählt. Wählen Sie Land auf beiden Parzellen aus. - </notification> - - <notification - - name="CannotJoinLandSelection" - > -Land kann nicht zusammengelegt werden: + </notification> + <notification name="CannotJoinLandSelection"> + Land kann nicht zusammengelegt werden: Sie müssen mehrere Parzellen auswählen. Wählen Sie Land auf beiden Parzellen aus. - </notification> - - <notification - - name="JoinLandWarning" - > -Beim Zusammenlegen entsteht aus den vom Auswahlrechteck + </notification> + <notification name="JoinLandWarning"> + Beim Zusammenlegen entsteht aus den vom Auswahlrechteck erfassten Parzellen eine große Parzelle. Sie müssen der neuen Parzelle einen Namen geben und ihre Optionen festlegen. Land zusammenlegen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -Um das Objekt kopieren oder anzeigen zu können, müssen Sie zuerst diese Notizkarte speichern. Notizkarte speichern? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -Dieses Objekt in Ihr Inventar kopieren? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Kopieren"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -Auflösung konnte nicht auf [RESX] x [RESY] gesetzt werden - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -Fehler: Nicht definierte Gräser: [SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -Fehler: Nicht definierte Bäume: [SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -„[NAME]“ konnte nicht in Kleidungsdatei gespeichert werden. Geben Sie Speicherplatz auf dem Computer frei und speichern Sie das Kleidungsstück erneut. - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -[NAME] kann nicht in Zentral-Asset-Speicher geladen werden. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ShowOwnersHelp"> + Eigentümer anzeigen: +Parzellen farblich kennzeichnen, um Eigentumsart anzuzeigen. + +Grün = Ihr Land +Blau = Das Land Ihrer Gruppe +Rot = Im Eigentum anderer +Geld = Zum Verkauf +Lila = Zur Auktion +Grau = Öffentlich + </notification> + <notification name="ConfirmNotecardSave"> + Um das Objekt kopieren oder anzeigen zu können, müssen Sie zuerst diese Notizkarte speichern. Notizkarte speichern? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmItemCopy"> + Dieses Objekt in Ihr Inventar kopieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Kopieren"/> + </notification> + <notification name="ResolutionSwitchFail"> + Auflösung konnte nicht auf [RESX] x [RESY] gesetzt werden + </notification> + <notification name="ErrorUndefinedGrasses"> + Fehler: Nicht definierte Gräser: [SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + Fehler: Nicht definierte Bäume: [SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + „[NAME]“ konnte nicht in Kleidungsdatei gespeichert werden. Geben Sie Speicherplatz auf dem Computer frei und speichern Sie das Kleidungsstück erneut. + </notification> + <notification name="CannotSaveToAssetStore"> + [NAME] kann nicht in Zentral-Asset-Speicher geladen werden. Dies ist ein temporärer Fehler. Bitte passen Sie das Kleidungsstück in einigen Minuten noch einmal an und speichern Sie es erneut. Tritt dieses Problem wiederholt auf, klicken Sie auf das Pulldown-Menü „Hilfe“ > „Fehler melden“ und geben Sie Details zu Ihrem Netzwerk-Setup an. - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -Sie wurden von [SECOND_LIFE] abgemeldet: + </notification> + <notification name="YouHaveBeenLoggedOut"> + Sie wurden von [SECOND_LIFE] abgemeldet: [MESSAGE] Klicken Sie auf „IM & Chat anzeigen“, um vorhandene Nachrichten und Chat weiterhin anzuzeigen. Klicken Sie andernfalls auf „Beenden“, um [SECOND_LIFE] sofort zu beenden. - <usetemplate - name="okcancelbuttons" - notext="Beenden" - yestext="IM & Chat anzeigen"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -Landkauf für Gruppe nicht möglich: + <usetemplate name="okcancelbuttons" notext="Beenden" yestext="IM & Chat anzeigen"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + Landkauf für Gruppe nicht möglich: Sie sind nicht berechtigt, Land für die aktive Gruppe zu kaufen. - </notification> - - <notification - - label="Freund hinzufügen" - name="AddFriend" - > -Freunde können sich gegenseitig die Berechtigung erteilen, sich auf der Karte zu verfolgen und Online-Status Benachrichtigungen zu empfangen. + </notification> + <notification label="Freund hinzufügen" name="AddFriend"> + Freunde können sich gegenseitig die Berechtigung erteilen, sich auf der Karte zu verfolgen und Online-Status Benachrichtigungen zu empfangen. [NAME] Freundschaft anbieten? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - label="Freund hinzufügen" - name="AddFriendWithMessage" - > -Freunde können sich gegenseitig die Berechtigung erteilen, sich auf der Karte zu verfolgen und Online-Status Benachrichtigungen zu empfangen. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification label="Freund hinzufügen" name="AddFriendWithMessage"> + Freunde können sich gegenseitig die Berechtigung erteilen, sich auf der Karte zu verfolgen und Online-Status Benachrichtigungen zu empfangen. [NAME] Freundschaft anbieten? - <form name="form"> - <input name="message" type="text"> -Wollen wir Freunde sein? - </input> - <button - - - name="Offer" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -Möchten Sie [FIRST_NAME] [LAST_NAME] aus Ihrer Freundesliste entfernen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -Möchten Sie mehrere Freunde aus Ihrer Freundesliste entfernen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -Möchten Sie alle geskripteten Objekte von + <form name="form"> + <input name="message" type="text"> + Wollen wir Freunde sein? + </input> + <button name="Offer" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + Möchten Sie [FIRST_NAME] [LAST_NAME] aus Ihrer Freundesliste entfernen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + Möchten Sie mehrere Freunde aus Ihrer Freundesliste entfernen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + Möchten Sie alle geskripteten Objekte von ** [AVATAR_NAME] ** auf allen anderen Ländern in diesem Sim löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -Möchten Sie ALLE geskripteten Objekte von + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + Möchten Sie ALLE geskripteten Objekte von ** [AVATAR_NAME] ** auf ALLEN LÄNDERN in diesem Sim LÖSCHEN? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -Möchten Sie ALLE Objekte (einschließlich geskriptete) von + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + Möchten Sie ALLE Objekte (einschließlich geskriptete) von ** [AVATAR_NAME] ** auf ALLEN LÄNDERN in diesem Sim LÖSCHEN? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -Geben Sie einen Namen für die Anzeige ein. - </notification> - - <notification - - name="MinClassifiedPrice" - > -Der Mindestbetrag für die Listung ist [MIN_PRICE] L$. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="BlankClassifiedName"> + Geben Sie einen Namen für die Anzeige ein. + </notification> + <notification name="MinClassifiedPrice"> + Der Mindestbetrag für die Listung ist [MIN_PRICE] L$. Geben sie einen höheren Betrag ein. - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -Mindestens ein ausgewähltes Objekt ist gesperrt. + </notification> + <notification name="ConfirmObjectDeleteLock"> + Mindestens ein ausgewähltes Objekt ist gesperrt. Möchten Sie diese Objekte löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -Mindestens ein ausgewähltes Objekt kann nicht kopiert werden. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + Mindestens ein ausgewähltes Objekt kann nicht kopiert werden. Möchten Sie diese Objekte löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -Mindestens eines der ausgewählten Objekt gehört nicht Ihnen. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + Mindestens eines der ausgewählten Objekt gehört nicht Ihnen. Möchten Sie diese Objekte löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -Mindestens ein Objekt ist gesperrt. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + Mindestens ein Objekt ist gesperrt. Mindestens ein Objekt kann nicht kopiert werden. Möchten Sie diese Objekte löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -Mindestens ein Objekt ist gesperrt. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + Mindestens ein Objekt ist gesperrt. Mindestens ein Objekt gehört nicht Ihnen. Möchten Sie diese Objekte löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -Mindestens ein Objekt kann nicht kopiert werden. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + Mindestens ein Objekt kann nicht kopiert werden. Mindestens ein Objekt gehört nicht Ihnen. Möchten Sie diese Objekte löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -Mindestens ein Objekt ist gesperrt. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + Mindestens ein Objekt ist gesperrt. Mindestens ein Objekt kann nicht kopiert werden. Mindestens ein Objekt gehört nicht Ihnen. Möchten Sie diese Objekte löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -Mindestens ein Objekt ist gesperrt. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + Mindestens ein Objekt ist gesperrt. Möchten Sie diese Objekte nehmen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -Nicht alle Objekte, die Sie aufgenommen haben, gehören Ihnen. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + Nicht alle Objekte, die Sie aufgenommen haben, gehören Ihnen. Wenn Sie fortfahren, werden die Rechte für den nächsten Eigentümer angewandt und Sie können die Objekte möglicherweise nicht bearbeiten oder kopieren. Möchten Sie diese Objekte nehmen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -Mindestens ein Objekt ist gesperrt. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + Mindestens ein Objekt ist gesperrt. Nicht alle Objekte, die Sie aufgenommen haben, gehören Ihnen. Wenn Sie fortfahren, werden die Rechte für den nächsten Eigentümer abgefragt und Sie können die Objekte möglicherweise nicht bearbeiten oder kopieren. Die aktuelle Auswahl können Sie jedoch aufnehmen. Möchten Sie diese Objekte nehmen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -Landkauf nicht möglich, da die Auswahl mehrere Regionen umfasst. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + Landkauf nicht möglich, da die Auswahl mehrere Regionen umfasst. Wählen Sie ein kleineres Gebiet und versuchen Sie es erneut. - </notification> - - <notification - - name="DeedLandToGroup" - > -Die Schenkung dieser Parzelle setzt voraus, dass die Gruppe über ausreichende Landnutzungsrechte verfügt. + </notification> + <notification name="DeedLandToGroup"> + Die Schenkung dieser Parzelle setzt voraus, dass die Gruppe über ausreichende Landnutzungsrechte verfügt. Dem Eigentümer wird der Kaufpreis für das Land nicht rückerstattet. Bei Verkauf der übertragenen Parzelle wird der Erlös zwischen den Gruppenmitgliedern aufgeteilt. Der Gruppe „[GROUP_NAME]“ [AREA] m² Land schenken? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -Die Schenkung dieser Parzelle setzt voraus, dass die Gruppe über ausreichende Landnutzungsrechte verfügt. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + Die Schenkung dieser Parzelle setzt voraus, dass die Gruppe über ausreichende Landnutzungsrechte verfügt. Die Schenkung beinhaltet eine Landübertragung an die Gruppe von „[FIRST_NAME] [LAST_NAME]“. Dem Eigentümer wird der Kaufpreis für das Land nicht rückerstattet. Bei Verkauf der übertragenen Parzelle wird der Erlös zwischen den Gruppenmitgliedern aufgeteilt. Der Gruppe „[GROUP_NAME]“ [AREA] m² Land schenken? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > -Es wurden sichere Anzeige-Einstellungen gewählt, da die Option -safe verwendet wurde. - </notification> - - <notification - - name="DisplaySetToRecommended" - > -Es wurden die für Ihre Systemkonfiguration empfohlenen Anzeige-Einstellungen gewählt. - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -Ihr [TYPE]-Ort ist zurzeit nicht verfügbar. [HELP] + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="DisplaySetToSafe"> + Es wurden sichere Anzeige-Einstellungen gewählt, da die Option -safe verwendet wurde. + </notification> + <notification name="DisplaySetToRecommended"> + Es wurden die für Ihre Systemkonfiguration empfohlenen Anzeige-Einstellungen gewählt. + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + Ihr [TYPE]-Ort ist zurzeit nicht verfügbar. [HELP] Sie wurden zur nächstgelegenen Region teleportiert. - </notification> - - <notification - - name="ClothingLoading" - > -Ihre Kleidung wird noch heruntergeladen. + </notification> + <notification name="ClothingLoading"> + Ihre Kleidung wird noch heruntergeladen. Sie können [SECOND_LIFE] normal verwenden. Andere Benutzer können Sie korrekt dargestellt sehen. - <form name="form"> - <ignore name="ignore" - text="Wenn das Herunterladen von Kleidung lange dauert"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -Die Installation von [SECOND_LIFE] ist abgeschlossen. + <form name="form"> + <ignore name="ignore" text="Wenn das Herunterladen von Kleidung lange dauert"/> + </form> + </notification> + <notification name="FirstRun"> + Die Installation von [SECOND_LIFE] ist abgeschlossen. Wenn Sie [SECOND_LIFE] das erste Mal verwenden, müssen Sie ein Konto anlegen, bevor Sie sich anmelden können. Möchten Sie auf www.secondlife.com ein Konto erstellen? - <usetemplate - name="okcancelbuttons" - notext="Weiter" - yestext="Neues Konto..."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -Die Verbindung kann nicht hergestellt werden. Möglicherweise besteht ein Problem mit Ihrer Internetverbindung oder den Second Life-Servern. + <usetemplate name="okcancelbuttons" notext="Weiter" yestext="Neues Konto..."/> + </notification> + <notification name="LoginPacketNeverReceived"> + Die Verbindung kann nicht hergestellt werden. Möglicherweise besteht ein Problem mit Ihrer Internetverbindung oder den Second Life-Servern. Ãœberprüfen Sie Ihre Internetverbindung und versuchen Sie es dann erneut, oder klicken Sie auf „Hilfe“, um zu unserer Supportseite zu gelangen, oder klicken Sie auf „Teleportieren“, um nach Hause zu teleportieren. - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="Hilfe"/> - <button - - name="Teleport" - text="Teleportieren"/> - </form> - </notification> - - <notification - - name="WelcomeChooseSex" - > -Ihr Avatar erscheint jeden Moment. + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="Hilfe"/> + <button name="Teleport" text="Teleportieren"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + Ihr Avatar erscheint jeden Moment. Benutzen Sie die Pfeiltasten, um sich fortzubewegen. Drücken Sie F1 für Hilfe oder für weitere Informationen über [SECOND_LIFE]. Bitte wählen Sie einen männlichen oder weiblichen Avatar. Sie können sich später noch umentscheiden. - <usetemplate - name="okcancelbuttons" - notext="Weiblich" - yestext="Männlich"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] [PRICE] L$ Sie haben nicht genügend L$, um diese Aktion auszuführen. - </notification> - - <notification - - name="GrantedModifyRights" - > -Sie verfügen über Änderungsrechte für die Objekte von [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="RevokedModifyRights" - > -Ihnen wurden die Änderungsrechte für die Objekte von [FIRST_NAME] [LAST_NAME] entzogen. - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -Der Kartencache dieser Region wird geleert. + <usetemplate name="okcancelbuttons" notext="Weiblich" yestext="Männlich"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] [PRICE] L$ Sie haben nicht genügend L$, um diese Aktion auszuführen. + </notification> + <notification name="GrantedModifyRights"> + Sie verfügen über Änderungsrechte für die Objekte von [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="RevokedModifyRights"> + Ihnen wurden die Änderungsrechte für die Objekte von [FIRST_NAME] [LAST_NAME] entzogen. + </notification> + <notification name="FlushMapVisibilityCaches"> + Der Kartencache dieser Region wird geleert. Diese Aktion ist nur beim Debugging sinnvoll. (Auf dem Produktionssystem warten Sie einfach 5 Minuten. Die Karten werden nach erneuter Anmeldung automatisch aktualisiert.) - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -Es kann nur jeweils der Inhalt von einem Objekt kopiert werden. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + Sie können jeweils nur ein Objekt kaufen. Wählen Sie ein einzelnes Objekt aus und versuchen Sie es erneut. + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + Es kann nur jeweils der Inhalt von einem Objekt kopiert werden. Wählen Sie ein einzelnes Objekt aus und versuchen Sie es erneut. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -Alle Einwohner in dieser Region nach Hause teleportieren? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -Möchten Sie wirklich alle Objekte zurückgeben, die [USER_NAME] gehören? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -Die Regionstexturen konnten nicht festgelegt werden: + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + Alle Einwohner in dieser Region nach Hause teleportieren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + Möchten Sie wirklich alle Objekte zurückgeben, die [USER_NAME] gehören? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + Die Regionstexturen konnten nicht festgelegt werden: Die Terraintextur [TEXTURE_NUM] hat eine ungültige Bit-Tiefe [TEXTURE_BIT_DEPTH]. Ersetzen Sie die Textur [TEXTURE_NUM] mit einer Bilddatei von maximal 512x512 und 24 Bit und klicken Sie dann erneut auf „Übernehmen“. - </notification> - - <notification - - name="InvalidTerrainSize" - > -Die Regionstexturen konnten nicht festgelegt werden: + </notification> + <notification name="InvalidTerrainSize"> + Die Regionstexturen konnten nicht festgelegt werden: Die Terraintextur [TEXTURE_NUM] ist mit [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y] zu groß. Ersetzen Sie die Textur [TEXTURE_NUM] mit einer Bilddatei von maximal 512x512 und 24 Bit und klicken Sie dann erneut auf „Übernehmen“. - </notification> - - <notification - - name="RawUploadStarted" - > -Hochladen gestartet. Je nach Verbindungsgeschwindigkeit kann der Vorgang bis zu 2 Minuten dauern. - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -Möchten Sie das aktuelle Terrain formen, es zum Mittelpunkt der oberen und unteren Terraingrenzen und zum Standard des „Zurücksetzen“-Tools machen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -Es sind maximal [MAX_AGENTS] zulässige Einwohner erlaubt. - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -Es sind maximal [MAX_BANNED] verbannte Einwohner erlaubt. - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -Fehler beim Versuch, [NUM_ADDED] Agenten hinzuzufügen: + </notification> + <notification name="RawUploadStarted"> + Hochladen gestartet. Je nach Verbindungsgeschwindigkeit kann der Vorgang bis zu 2 Minuten dauern. + </notification> + <notification name="ConfirmBakeTerrain"> + Möchten Sie das aktuelle Terrain formen, es zum Mittelpunkt der oberen und unteren Terraingrenzen und zum Standard des „Zurücksetzen“-Tools machen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + Es sind maximal [MAX_AGENTS] zulässige Einwohner erlaubt. + </notification> + <notification name="MaxBannedAgentsOnRegion"> + Es sind maximal [MAX_BANNED] verbannte Einwohner erlaubt. + </notification> + <notification name="MaxAgentOnRegionBatch"> + Fehler beim Versuch, [NUM_ADDED] Agenten hinzuzufügen: Ãœberschreitet den Grenzwert [MAX_AGENTS] [LIST_TYPE] um [NUM_EXCESS]. - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -Es sind maximal [MAX_GROUPS] zulässige Gruppen erlaubt. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Formen"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -Es sind maximal [MAX_MANAGER] verbannte Einwohner erlaub. - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -Der Eigentümer des Grundstücks kann nicht zur Liste der „Verbannten Einwohner“ hinzugefügt werden. - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -Das Aussehen lässt sich erst ändern, wenn Kleider und Form/Gestalt geladen sind. - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -Der Name der Anzeige muss mit einem Buchstaben von A bis Z oder einer Ziffer beginnen. Satzzeichen sind nicht erlaubt. - </notification> - - <notification - - name="CantSetBuyObject" - > -„Objekt kaufen“ nicht möglich, da das Objekt nicht zum Verkauf freigegeben ist. + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + Es sind maximal [MAX_GROUPS] zulässige Gruppen erlaubt. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Formen"/> + </notification> + <notification name="MaxManagersOnRegion"> + Es sind maximal [MAX_MANAGER] verbannte Einwohner erlaub. + </notification> + <notification name="OwnerCanNotBeDenied"> + Der Eigentümer des Grundstücks kann nicht zur Liste der „Verbannten Einwohner“ hinzugefügt werden. + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + Das Aussehen lässt sich erst ändern, wenn Kleider und Form/Gestalt geladen sind. + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + Der Name der Anzeige muss mit einem Buchstaben von A bis Z oder einer Ziffer beginnen. Satzzeichen sind nicht erlaubt. + </notification> + <notification name="CantSetBuyObject"> + „Objekt kaufen“ nicht möglich, da das Objekt nicht zum Verkauf freigegeben ist. Geben Sie das Objekt zum Verkauf frei und versuchen Sie es erneut. - </notification> - - <notification - - name="FinishedRawDownload" - > -Raw-Terrain-Datei wurde heruntergeladen nach: + </notification> + <notification name="FinishedRawDownload"> + Raw-Terrain-Datei wurde heruntergeladen nach: [DOWNLOAD_PATH]. - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -Eine neue Version von [SECOND_LIFE] ist verfügbar. + </notification> + <notification name="DownloadWindowsMandatory"> + Eine neue Version von [SECOND_LIFE] ist verfügbar. [MESSAGE] Sie müssen das Update herunterladen, um [SECOND_LIFE] weiter verwenden zu können. - <usetemplate - name="okcancelbuttons" - notext="Beenden" - yestext="Herunterladen"/> - </notification> - - <notification - - name="DownloadWindows" - > -Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. + <usetemplate name="okcancelbuttons" notext="Beenden" yestext="Herunterladen"/> + </notification> + <notification name="DownloadWindows"> + Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. [MESSAGE] Dieses Update ist nicht erforderlich, für bessere Leistung und Stabilität sollte es jedoch installiert werden. - <usetemplate - name="okcancelbuttons" - notext="Weiter" - yestext="Herunterladen"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. + <usetemplate name="okcancelbuttons" notext="Weiter" yestext="Herunterladen"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. [MESSAGE] Dieses Update ist nicht erforderlich, für bessere Leistung und Stabilität sollte es jedoch installiert werden. - <usetemplate - name="okcancelbuttons" - notext="Weiter" - yestext="Herunterladen"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -Eine neue Version von [SECOND_LIFE] ist verfügbar. + <usetemplate name="okcancelbuttons" notext="Weiter" yestext="Herunterladen"/> + </notification> + <notification name="DownloadMacMandatory"> + Eine neue Version von [SECOND_LIFE] ist verfügbar. [MESSAGE] Sie müssen das Update herunterladen, um [SECOND_LIFE] weiter verwenden zu können. In Ihren Anwendungsordner herunterladen? - <usetemplate - name="okcancelbuttons" - notext="Beenden" - yestext="Herunterladen"/> - </notification> - - <notification - - name="DownloadMac" - > -Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. + <usetemplate name="okcancelbuttons" notext="Beenden" yestext="Herunterladen"/> + </notification> + <notification name="DownloadMac"> + Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. [MESSAGE] Dieses Update ist nicht erforderlich, für bessere Leistung und Stabilität sollte es jedoch installiert werden. In Ihren Anwendungsordner herunterladen? - <usetemplate - name="okcancelbuttons" - notext="Weiter" - yestext="Herunterladen"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. + <usetemplate name="okcancelbuttons" notext="Weiter" yestext="Herunterladen"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + Eine aktualisierte Version von [SECOND_LIFE] ist verfügbar. [MESSAGE] Dieses Update ist nicht erforderlich, für bessere Leistung und Stabilität sollte es jedoch installiert werden. In Ihren Anwendungsordner herunterladen? - <usetemplate - name="okcancelbuttons" - notext="Weiter" - yestext="Herunterladen"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -Bei Ãœbertragung dieses Objekts erhält die Gruppe: + <usetemplate name="okcancelbuttons" notext="Weiter" yestext="Herunterladen"/> + </notification> + <notification name="DeedObjectToGroup"> + Bei Ãœbertragung dieses Objekts erhält die Gruppe: * An das Objekt bezahlte L$ - <usetemplate - ignoretext="Beim Ãœbertragen von Objekten an Gruppen" - name="okcancelignore" - notext="Abbrechen" - yestext="Ãœbertragung"/> - </notification> - - <notification - - name="WebLaunchExternalTarget" - > -Den System-Webbrowser öffnen, um diesen Inhalt anzuzeigen? - <usetemplate - ignoretext="Wenn der System-Webbrowser zur Anzeige einer Webseite geöffnet wird" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchJoinNow" - > -Zu www.secondlife.com, um Ihr Konto zu verwalten? - <usetemplate - ignoretext="Beim Starten eines Browsers, um Ihr Konto zu verwalten" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchBugReport101" - > -Informieren Sie sich im [SECOND_LIFE] Wiki, wie man Fehler richtig meldet. - <usetemplate - ignoretext="Beim Starten eines Browsers, um das Fehlermeldungs-Wiki anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSecurityIssues" - > -Informieren Sie sich im [SECOND_LIFE] Wiki, wie man Sicherheitsprobleme richtig meldet. - <usetemplate - ignoretext="Beim Starten eines Browsers, um das Sicherheitsfragen-Wiki anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchQAWiki" - > -Besuchen Sie das [SECOND_LIFE] QA-Wiki. - <usetemplate - ignoretext="Beim Starten eines Browsers, um das QA-Wiki anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssue" - > -Im [SECOND_LIFE] Allgemeine-Fragen-Tracker können Sie Fehler und andere Probleme melden. - <usetemplate - ignoretext="Beim Starten eines Browsers, um den Allgemeine Probleme Tracker anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="Gehe zu Seite"/> - </notification> - - <notification - - name="WebLaunchPublicIssueHelp" - > -Informieren Sie sich im [SECOND_LIFE] Wiki über den Allgemeine Fragen-Tracker. - <usetemplate - ignoretext="Beim Starten eines Browsers, um das Allgemeine Fragen-Wiki anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="Gehe zu Seite"/> - </notification> - - <notification - - name="WebLaunchSupportWiki" - > -Im offiziellen Linden-Blog finden Sie die neuesten Nachrichten und Informationen. - <usetemplate - ignoretext="Beim Starten eines Browsers, um das Blog anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLGuide" - > -Zur Scripting-Anleitung, um Scripting-Hilfe zu erhalten? - <usetemplate - ignoretext="Beim Starten eines Browsers, um die Scripting-Anleitung anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLWiki" - > -Zum LSL-Portal, um Scripting-Hilfe zu erhalten? - <usetemplate - ignoretext="Beim Starten eines Browsers, um das LSL-Portal anzuzeigen" - name="okcancelignore" - notext="Abbrechen" - yestext="Gehe zu Seite"/> - </notification> - - <notification - - name="ReturnToOwner" - > -Möchten Sie die ausgewählten Objekte an ihre Eigentümer zurückgeben? Transferierbare übertragene Objekte werden ihren früheren Eigentümern zurückgegeben. + <usetemplate ignoretext="Beim Ãœbertragen von Objekten an Gruppen" name="okcancelignore" notext="Abbrechen" yestext="Ãœbertragung"/> + </notification> + <notification name="WebLaunchExternalTarget"> + Den System-Webbrowser öffnen, um diesen Inhalt anzuzeigen? + <usetemplate ignoretext="Wenn der System-Webbrowser zur Anzeige einer Webseite geöffnet wird" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="WebLaunchJoinNow"> + Zu www.secondlife.com, um Ihr Konto zu verwalten? + <usetemplate ignoretext="Beim Starten eines Browsers, um Ihr Konto zu verwalten" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="WebLaunchBugReport101"> + Informieren Sie sich im [SECOND_LIFE] Wiki, wie man Fehler richtig meldet. + <usetemplate ignoretext="Beim Starten eines Browsers, um das Fehlermeldungs-Wiki anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="WebLaunchSecurityIssues"> + Informieren Sie sich im [SECOND_LIFE] Wiki, wie man Sicherheitsprobleme richtig meldet. + <usetemplate ignoretext="Beim Starten eines Browsers, um das Sicherheitsfragen-Wiki anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="WebLaunchQAWiki"> + Besuchen Sie das [SECOND_LIFE] QA-Wiki. + <usetemplate ignoretext="Beim Starten eines Browsers, um das QA-Wiki anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssue"> + Im [SECOND_LIFE] Allgemeine-Fragen-Tracker können Sie Fehler und andere Probleme melden. + <usetemplate ignoretext="Beim Starten eines Browsers, um den Allgemeine Probleme Tracker anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="Gehe zu Seite"/> + </notification> + <notification name="WebLaunchPublicIssueHelp"> + Informieren Sie sich im [SECOND_LIFE] Wiki über den Allgemeine Fragen-Tracker. + <usetemplate ignoretext="Beim Starten eines Browsers, um das Allgemeine Fragen-Wiki anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="Gehe zu Seite"/> + </notification> + <notification name="WebLaunchSupportWiki"> + Im offiziellen Linden-Blog finden Sie die neuesten Nachrichten und Informationen. + <usetemplate ignoretext="Beim Starten eines Browsers, um das Blog anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLGuide"> + Zur Scripting-Anleitung, um Scripting-Hilfe zu erhalten? + <usetemplate ignoretext="Beim Starten eines Browsers, um die Scripting-Anleitung anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLWiki"> + Zum LSL-Portal, um Scripting-Hilfe zu erhalten? + <usetemplate ignoretext="Beim Starten eines Browsers, um das LSL-Portal anzuzeigen" name="okcancelignore" notext="Abbrechen" yestext="Gehe zu Seite"/> + </notification> + <notification name="ReturnToOwner"> + Möchten Sie die ausgewählten Objekte an ihre Eigentümer zurückgeben? Transferierbare übertragene Objekte werden ihren früheren Eigentümern zurückgegeben. *WARNUNG* Nicht transferierbare übertragene Objekte werden dabei gelöscht! - <usetemplate - ignoretext="Beim Zurückgeben von Objekten an ihre Eigentümer" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -Sie sind Mitglied der Gruppe [GROUP]. + <usetemplate ignoretext="Beim Zurückgeben von Objekten an ihre Eigentümer" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="GroupLeaveConfirmMember"> + Sie sind Mitglied der Gruppe [GROUP]. Diese Gruppe verlassen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmKick" - > -Möchten Sie WIRKLICH alle Benutzer aus dem Grid werfen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Alle Benutzer hinauswerfen"/> - </notification> - - <notification - - name="MuteLinden" - > -Lindens können nicht stummgeschaltet werden. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="Objekt nach Name stummschalten fehlgeschlagen" - name="MuteByNameFailed" - > -Dieser Name ist bereits stummgeschaltet. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -Diese Aktion ist zwar erlaubt, aber beim Löschen von Inhalten wird das Objekt beschädigt. Möchten Sie dieses Element löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -Sie können gerade keine Visitenkarte übergeben. Warten Sie kurz und versuchen Sie es dann noch einmal. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -Sie können gerade keine Freundschaft anbieten. Warten Sie kurz und versuchen Sie es dann noch einmal. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -Beschäftigt-Modus aktiviert. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmKick"> + Möchten Sie WIRKLICH alle Benutzer aus dem Grid werfen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Alle Benutzer hinauswerfen"/> + </notification> + <notification name="MuteLinden"> + Lindens können nicht stummgeschaltet werden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + Eine Parzelle, die bereits zum Verkauf freigegeben ist, kann nicht versteigert werden. Deaktivieren Sie den Landverkauf, wenn Sie das Land zur Versteigerung freigeben möchten. + </notification> + <notification label="Objekt nach Name stummschalten fehlgeschlagen" name="MuteByNameFailed"> + Dieser Name ist bereits stummgeschaltet. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + Diese Aktion ist zwar erlaubt, aber beim Löschen von Inhalten wird das Objekt beschädigt. Möchten Sie dieses Element löschen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="CantOfferCallingCard"> + Sie können gerade keine Visitenkarte übergeben. Warten Sie kurz und versuchen Sie es dann noch einmal. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + Sie können gerade keine Freundschaft anbieten. Warten Sie kurz und versuchen Sie es dann noch einmal. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="BusyModeSet"> + Beschäftigt-Modus aktiviert. Chat und Instant Messages werden ausgeblendet. Instant Messages erhalten Ihre Beschäftigt-Antwort. Alle Teleport-Angebote werden ausgeschlagen. Alle Inventar-Angebote werden in den Papierkorb verschoben. - <usetemplate - ignoretext="Beim Aktivieren des Beschäftigt-Modus" - name="okignore" - yestext="OK"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -Sie sind bereits in zu vielen Gruppen Mitglied und können keiner weiteren beitreten. Bitte verlassen Sie eine Gruppe, bevor Sie dieser beitreten oder lehnen Sie das Angebot ab. + <usetemplate ignoretext="Beim Aktivieren des Beschäftigt-Modus" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + Sie sind bereits in zu vielen Gruppen Mitglied und können keiner weiteren beitreten. Bitte verlassen Sie eine Gruppe, bevor Sie dieser beitreten oder lehnen Sie das Angebot ab. Die Option zum Austritt aus einer Gruppe finden Sie unter „Bearbeiten“ > „Gruppen...“. [NAME] hat Sie eingeladen, einer Gruppe beizutreten. [INVITE] - <usetemplate - name="okcancelbuttons" - notext="Ablehnen" - yestext="Beitreten"/> - </notification> - - <notification - - name="KickUser" - > -Beim Hinauswerfen dieses Benutzers welche Meldung anzeigen? - <form name="form"> - <input name="message" type="text"> -Sie wurden von einem Administrator abgemeldet. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -Beim Hinauswerfen aller Personen vom Grid welche Meldung anzeigen? - <form name="form"> - <input name="message" type="text"> -Sie wurden von einem Administrator abgemeldet. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -Beim Einfrieren dieses Benutzers welche Meldung anzeigen? - <form name="form"> - <input name="message" type="text"> -Sie wurden eingefroren. Bewegen oder Chatten ist nicht mehr möglich. Ein Administrator wird sich über IM an Sie wenden - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -Beim Auftauen dieses Benutzers welche Meldung anzeigen? - <form name="form"> - <input name="message" type="text"> -Sie sind nicht mehr eingefroren. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -Teleport an Ihre Position mit der folgenden Meldung anbieten? - <form name="form"> - <input name="message" type="text"> -Triff mich in [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -Benutzer an Ihrem Standort herbeirufen? - <form name="form"> - <input name="message" type="text"> -Triff mich in [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -Möchten Sie sich wirklich teleportieren? - <usetemplate - ignoretext="Beim Teleportieren von einer Landmarke im Inventar" - name="okcancelignore" - notext="Abbrechen" - yestext="Teleportieren"/> - </notification> - - <notification - - label="Nachricht an alle auf diesem Grundstück" - name="MessageEstate" - > -Geben Sie eine kurze Nachricht ein, die an jede Person auf Ihrem Grundstück gesendet wird. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - label="Linden-Grundstück ändern" - name="ChangeLindenEstate" - > -Sie sind im Begriff, ein Grundstück in Linden-Besitz (Mainland, Teen-Raster, Orientierung usw.) zu verändern. + <usetemplate name="okcancelbuttons" notext="Ablehnen" yestext="Beitreten"/> + </notification> + <notification name="KickUser"> + Beim Hinauswerfen dieses Benutzers welche Meldung anzeigen? + <form name="form"> + <input name="message" type="text"> + Sie wurden von einem Administrator abgemeldet. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="KickAllUsers"> + Beim Hinauswerfen aller Personen vom Grid welche Meldung anzeigen? + <form name="form"> + <input name="message" type="text"> + Sie wurden von einem Administrator abgemeldet. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="FreezeUser"> + Beim Einfrieren dieses Benutzers welche Meldung anzeigen? + <form name="form"> + <input name="message" type="text"> + Sie wurden eingefroren. Bewegen oder Chatten ist nicht mehr möglich. Ein Administrator wird sich über IM an Sie wenden + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="UnFreezeUser"> + Beim Auftauen dieses Benutzers welche Meldung anzeigen? + <form name="form"> + <input name="message" type="text"> + Sie sind nicht mehr eingefroren. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="OfferTeleport"> + Teleport an Ihre Position mit der folgenden Meldung anbieten? + <form name="form"> + <input name="message" type="text"> + Triff mich in [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + Benutzer an Ihrem Standort herbeirufen? + <form name="form"> + <input name="message" type="text"> + Triff mich in [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + Möchten Sie sich wirklich teleportieren? + <usetemplate ignoretext="Beim Teleportieren von einer Landmarke im Inventar" name="okcancelignore" notext="Abbrechen" yestext="Teleportieren"/> + </notification> + <notification label="Nachricht an alle auf diesem Grundstück" name="MessageEstate"> + Geben Sie eine kurze Nachricht ein, die an jede Person auf Ihrem Grundstück gesendet wird. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification label="Linden-Grundstück ändern" name="ChangeLindenEstate"> + Sie sind im Begriff, ein Grundstück in Linden-Besitz (Mainland, Teen-Raster, Orientierung usw.) zu verändern. Dies ist ÄUSSERST GEFÄHRLICH, da es grundlegende Auswirkungen auf das Benutzererlebnis hat. Auf dem Mainland werden tausende Regionen geändert, was den Spaceserver stark belastet. Fortfahren? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - label="Zugang zu Linden-Grundstück ändern" - name="ChangeLindenAccess" - > -Sie sind im Begriff, die Zugangsliste für ein Grundstück in Linden-Besitz (Mainland, Teen-Raster, Orientierung usw.) zu verändern. + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification label="Zugang zu Linden-Grundstück ändern" name="ChangeLindenAccess"> + Sie sind im Begriff, die Zugangsliste für ein Grundstück in Linden-Besitz (Mainland, Teen-Raster, Orientierung usw.) zu verändern. Dies ist GEFÄHRLICH und sollte nur erfolgen, um Objekte/L$ per Hack in und aus dem Raster zu entfernen. Tausende Regionen werden verändert und der Spaceserver wird dadurch stark belastet. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateAllowedAgentAdd" - > -Nur für dieses Grundstück oder für alle [ALL_ESTATES] zur Erlaubnisliste hinzufügen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateAllowedAgentRemove" - > -Nur für dieses Grundstück oder für alle [ALL_ESTATES] von Erlaubnisliste entfernen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateAllowedGroupAdd" - > -Nur für dieses Grundstück oder für alle [ALL_ESTATES] zur Gruppen-Erlaubnisliste hinzufügen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateAllowedGroupRemove" - > -Nur für dieses Grundstück oder für alle [ALL_ESTATES] von Gruppen-Erlaubnisliste entfernen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateBannedAgentAdd" - > -Zugang nur für dieses Grundstück oder für [ALL_ESTATES] verweigern? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateBannedAgentRemove" - > -Einwohner nur für dieses Grundstück oder für alle [ALL_ESTATES] von der Bannliste entfernen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateManagerAdd" - > -Verwalter nur für dieses Grundstück oder für [ALL_ESTATES] festlegen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Grundstück wählen" - name="EstateManagerRemove" - > -Verwalter nur für dieses Grundstück oder für [ALL_ESTATES] entfernen? - <usetemplate - canceltext="Abbrechen" - name="yesnocancelbuttons" - notext="Alle Grundstücke" - yestext="Dieses Grundstück"/> - </notification> - - <notification - - label="Rauswurf bestätigen" - name="EstateKickUser" - > -Benutzer [EVIL_USER] von diesem Grundstück werfen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="EstateChangeCovenant" - > -Möchten Sie den Grundstücksvertrag wirklich ändern? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ProblemImportingEstateCovenant" - > -Problem beim Import des Grundstückvertrags. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -Es gibt Probleme beim Hinzufügen eines neuen Grundstücksverwalters. Bei mindestens einem Grundstück ist die Verwalterliste voll. - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Notizkarten-Asset konnte nicht geladen werden. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -Unzureichende Rechte, um die mit der angeforderten Asset-ID verbundene Notizkarte anzuzeigen. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MissingNotecardAssetID" - > -Asset-ID für Notizkarte fehlt in Datenbank. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PublishClassified" - > -Hinweis: Anzeigengebühren werden nicht zurückerstattet. - -Anzeige für [AMOUNT] L$ veröffentlichen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - - - - - <notification - - label="Neustart bestätigen" - name="ConfirmRestart" - > -Möchten Sie diese Region in 2 Minuten neu starten? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - label="Nachricht an alle in dieser Region" - name="MessageRegion" - > -Geben Sie eine kurze Nachricht ein, die an jede Person in dieser Region gesendet wird. - <form name="form"> - <input name="message" type="text"/> + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification label="Grundstück wählen" name="EstateAllowedAgentAdd"> + Nur für dieses Grundstück oder für alle [ALL_ESTATES] zur Erlaubnisliste hinzufügen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Grundstück wählen" name="EstateAllowedAgentRemove"> + Nur für dieses Grundstück oder für alle [ALL_ESTATES] von Erlaubnisliste entfernen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Grundstück wählen" name="EstateAllowedGroupAdd"> + Nur für dieses Grundstück oder für alle [ALL_ESTATES] zur Gruppen-Erlaubnisliste hinzufügen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Grundstück wählen" name="EstateAllowedGroupRemove"> + Nur für dieses Grundstück oder für alle [ALL_ESTATES] von Gruppen-Erlaubnisliste entfernen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Grundstück wählen" name="EstateBannedAgentAdd"> + Zugang nur für dieses Grundstück oder für [ALL_ESTATES] verweigern? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Grundstück wählen" name="EstateBannedAgentRemove"> + Einwohner nur für dieses Grundstück oder für alle [ALL_ESTATES] von der Bannliste entfernen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Grundstück wählen" name="EstateManagerAdd"> + Verwalter nur für dieses Grundstück oder für [ALL_ESTATES] festlegen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Grundstück wählen" name="EstateManagerRemove"> + Verwalter nur für dieses Grundstück oder für [ALL_ESTATES] entfernen? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Alle Grundstücke" yestext="Dieses Grundstück"/> + </notification> + <notification label="Rauswurf bestätigen" name="EstateKickUser"> + Benutzer [EVIL_USER] von diesem Grundstück werfen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="EstateChangeCovenant"> + Möchten Sie den Grundstücksvertrag wirklich ändern? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + Sie dürfen diese Region aufgrund Ihrer Alterseinstufung nicht betreten. Der Grund hierfür ist möglicherweise, dass Sie nicht altersüberprüft sind. + +Bitte vergewissern Sie sich, dass Sie den aktuellsten Viewer installiert haben und besuchen Sie unsere Knowledgebase, um mehr über Regionen mit dieser Altereinstufung zu erfahren. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + Sie dürfen diese Region aufgrund Ihrer Alterseinstufung nicht betreten. + +Möchten Sie unsere Knowledgebase besuchen, um mehr Informationen über Altereinstufung zu erhalten? + <url name="url"> + http://wiki.secondlife.com/wiki/Alterseinstufung:_Ein_%C3%9Cberblick_(KB) + </url> + <usetemplate ignoretext="Wenn Regionzugang aufgrund von Alterseinstufung gesperrt ist" name="okcancelignore" notext="Schließen" yestext="Zur Knowledgbase"/> + </notification> + <notification name="RegionEntryAccessBlocked_Notify"> + Aufgrund Ihrer Alterseinstufung dürfen Sie diese Region nicht betreten. + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + Sie dürfen diese Region aufgrund der Einstellung Ihrer Alterseinstufung nicht betreten. + +Klicken Sie auf „Einstellung ändern“, um Ihre Einstellung für Altereinstufung sofort zu ändern und Zugang zu erhalten. Sie können ab sofort [REGIONMATURITY]-Inhalt suchen und auf diesen zugreifen. Falls Sie diese Einstellung später rückgängig machen möchten, gehen Sie zu Bearbeiten > Einstellungen... > Allgemein. + <form name="form"> <button - - name="OK" - text="OK"/> + text="Einstellung ändern"/> <button - name="Cancel" - text="Abbrechen"/> + text="Schließen"/> + <ignore name="ignore" text="Wenn Regionzugang aufgrund von Einstellung für Alterseinstufung gesperrt ist"/> </form> - </notification> + </notification> + <notification name="LandClaimAccessBlocked"> + Sie haben aufgrund Ihrer Alterseinstufung keinen Anspruch auf dieses Land. Der Grund hierfür ist möglicherweise, dass Sie nicht altersüberprüft sind. + +Bitte vergewissern Sie sich, dass Sie den aktuellsten Viewer installiert haben und besuchen Sie unsere Knowledgebase, um mehr über Regionen mit dieser Altereinstufung zu erfahren. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + Sie haben aufgrund Ihrer Alterseinstufung keinen Anspruch auf dieses Land. + +Möchten Sie unsere Knowledgebase besuchen, um mehr Informationen über Altereinstufung zu erhalten? + <url name="url"> + http://wiki.secondlife.com/wiki/Alterseinstufung:_Ein_%C3%9Cberblick_(KB) + </url> + <usetemplate ignoretext="Wenn Landanspruch aufgrund von Alterseinstufung gesperrt ist" name="okcancelignore" notext="Schließen" yestext="Zur Knowledgbase"/> + </notification> + <notification name="LandClaimAccessBlocked_Notify"> + Sie haben aufgrund Ihrer Alterseinstufung keinen Anspruch auf dieses Land. + </notification> + <notification name="LandClaimAccessBlocked_Change"> + Sie haben aufgrund der Einstellung Ihrer Alterseinstufung keinen Anspruch auf dieses Land. + +Klicken Sie auf „Einstellung ändern“, um Ihre Einstellung für Altereinstufung sofort zu ändern und Zugang zu erhalten. Sie können ab sofort [REGIONMATURITY]-Inhalt suchen und auf diesen zugreifen. Falls Sie diese Einstellung später rückgängig machen möchten, gehen Sie zu Bearbeiten > Einstellungen... > Allgemein. + <usetemplate ignoretext="Wenn Landanspruch aufgrund von Einstellung der Alterseinstufung gesperrt ist" name="okcancelignore" notext="Schließen" yestext="Einstellung ändern"/> + </notification> + <notification name="LandBuyAccessBlocked"> + Sie können aufgrund Ihrer Alterseinstufung dieses Land nicht kaufen. Der Grund hierfür ist möglicherweise, dass Sie nicht altersüberprüft sind. + +Bitte vergewissern Sie sich, dass Sie den aktuellsten Viewer installiert haben und besuchen Sie unsere Knowledgebase, um mehr über Regionen mit dieser Altereinstufung zu erfahren. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + Sie können aufgrund Ihrer Alterseinstufung dieses Land nicht kaufen. + +Möchten Sie unsere Knowledgebase besuchen, um mehr Informationen über Altereinstufung zu erhalten? + <url name="url"> + http://wiki.secondlife.com/wiki/Alterseinstufung:_Ein_%C3%9Cberblick_(KB) + </url> + <usetemplate ignoretext="Wenn Landkauf aufgrund von Alterseinstufung gesperrt ist" name="okcancelignore" notext="Schließen" yestext="Zur Knowledgbase"/> + </notification> + <notification name="LandBuyAccessBlocked_Notify"> + Sie können aufgrund Ihrer Alterseinstufung dieses Land nicht kaufen. + </notification> + <notification name="LandBuyAccessBlocked_Change"> + Sie können aufgrund Ihrer Einstellung für Alterseinstufung dieses Land nicht kaufen. + +Klicken Sie auf „Einstellung ändern“, um Ihre Einstellung für Altereinstufung sofort zu ändern und Zugang zu erhalten. Sie können ab sofort [REGIONMATURITY]-Inhalt suchen und auf diesen zugreifen. Falls Sie diese Einstellung später rückgängig machen möchten, gehen Sie zu Bearbeiten > Einstellungen... > Allgemein. + <usetemplate ignoretext="Wenn Landkauf aufgrund von Einstellung für Alterseinstufung gesperrt ist" name="okcancelignore" notext="Schließen" yestext="Einstellung ändern"/> + </notification> + <notification name="TooManyPrimsSelected"> + "Zu viele Prims wurden ausgewählt. Bitte wählen Sie höchstens [MAX_PRIM_COUNT] Prims aus und versuchen Sie es erneut." + </notification> + <notification name="ProblemImportingEstateCovenant"> + Problem beim Import des Grundstückvertrags. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + Es gibt Probleme beim Hinzufügen eines neuen Grundstücksverwalters. Bei mindestens einem Grundstück ist die Verwalterliste voll. + </notification> + <notification name="ProblemAddingEstateGeneric"> + Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. + </notification> + <notification name="UnableToLoadNotecardAsset"> + Notizkarten-Asset konnte nicht geladen werden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="NotAllowedToViewNotecard"> + Unzureichende Rechte, um die mit der angeforderten Asset-ID verbundene Notizkarte anzuzeigen. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + Asset-ID für Notizkarte fehlt in Datenbank. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + Hinweis: Anzeigengebühren werden nicht zurückerstattet. + +Anzeige für [AMOUNT] L$ veröffentlichen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="SetClassifiedMature"> + Enthält diese Anzeige Mature-Inhalte? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="SetGroupMature"> + Beschäftigt sich diese Gruppe mit Mature-Inhalten? + <usetemplate canceltext="Abbrechen" name="yesnocancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification label="Neustart bestätigen" name="ConfirmRestart"> + Möchten Sie diese Region in 2 Minuten neu starten? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification label="Nachricht an alle in dieser Region" name="MessageRegion"> + Geben Sie eine kurze Nachricht ein, die an jede Person in dieser Region gesendet wird. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification label="Terraformen blockieren" name="HelpRegionBlockTerraform"> + Wenn diese Option aktiviert ist, können Landeigentümer Ihr Land nicht terraformen. Ausgenommen davon ist die parzelleneigene Einstellung „Terrain bearbeiten“. - <notification - - label="Terraformen blockieren" - name="HelpRegionBlockTerraform" - > -Wenn diese Option aktiviert ist, können Landeigentümer Ihr Land nicht terraformen. Ausgenommen davon ist die parzelleneigene Einstellung „Terrain bearbeiten“. +Standard: deaktiviert + </notification> + <notification label="Fliegen blockieren" name="HelpRegionBlockFly"> + Wenn diese Option aktiviert ist, ist Fliegen in dieser Region nicht möglich, auch wenn für die Parzelle eine andere Einstellung aktiv ist. Standard: deaktiviert - </notification> + </notification> + <notification label="Mehrere Inhaltsberechtigungen ändern" name="HelpBulkPermission"> + Mit dem Werkzeug „Mehrere Berechtigungen“ können Sie Berechtigungen für mehrere Objekte in den Inhalten des ausgewählten Objekts schnell ändern. Bitte beachten Sie, dass Sie nur Berechtigungen an den Objekten im Inhalt der ausgewählten Objekte einstellen, nicht Berechtigungen an dem/den Container-Objekt(en=) selbst. - <notification - - label="Fliegen blockieren" - name="HelpRegionBlockFly" - > -Wenn diese Option aktiviert ist, ist Fliegen in dieser Region nicht möglich, auch wenn für die Parzelle eine andere Einstellung aktiv ist. +Bitte beachten Sie auch, dass die Berechtigungen nicht auf eingebettete Inhalte der enthaltenen Objekte angewandt werden. Ihre Auftrag wird nur an Objekten ausgeführt, die sie sich in diesem Level befinden. -Standard: deaktiviert - </notification> +Sie können auswählen, welche Objektarten Sie ändern möchten, indem Sie diese in der Liste unter „Inhaltsarten“ auswählen. Wenn Sie Texturen auswählen, sind Fotos mit eingeschlossen. + +* Mit diesem Werkzeug können Sie nur an Objekten, die Sie ändern dürfen, Änderungen vornehmen. +* Sie können dem nächsten Eigentümer keine Berechtigungen geben, die Sie nicht besitzen. +* Die Berechtigungen für den nächsten Eigentümer sind nur Anfragen. Wenn ein Objekt nicht alle Berechtigungen annehmen kann, dann werden keine seiner Berechtigungen geändert. + +Wenn Sie bereit sind, die Berechtigungen mehrfach zu ändern, klicken Sie auf Ãœbernehmen und warten Sie, bis die Ergebnisse angezeigt werden. - <notification - - label="Schaden zulassen" - name="HelpRegionAllowDamage" - > -Wenn diese Option aktiviert ist, ist das Gesundheitssystem auf allen Parzellen aktiviert, unabhängig von den Parzelleneinstellungen. Ist die Option links deaktiviert, können die Parzelleneigentümer das Gesundheitssystem individuell einschalten. +Wenn Sie das Fenster „Mehrfach-Berechtigungen“ schließen, während die Berechtigungen geändert werden, wird der Vorgang gestoppt. + </notification> + <notification label="Schaden zulassen" name="HelpRegionAllowDamage"> + Wenn diese Option aktiviert ist, ist das Gesundheitssystem auf allen Parzellen aktiviert, unabhängig von den Parzelleneinstellungen. Ist die Option links deaktiviert, können die Parzelleneigentümer das Gesundheitssystem individuell einschalten. Standard: deaktiviert - </notification> - - <notification - - label="Avatar-Limit" - name="HelpRegionAgentLimit" - > -Legt die maximale Anzahl an Avataren für diese Region fest. + </notification> + <notification label="Avatar-Limit" name="HelpRegionAgentLimit"> + Legt die maximale Anzahl an Avataren für diese Region fest. Die Leistung hängt von der Anzahl der Avatare in der Region ab. Standard: 40 - </notification> - - <notification - - label="Objektbonus" - name="HelpRegionObjectBonus" - > -Der Objektbonus ist ein Multiplikator für die Anzahl an zulässigen Primitiven auf einer Parzelle. Gültig sind Werte zwischen 1 und 10. „1“ erlaubt auf einer 512 qm großen Parzelle 117 Objekte. „2“ erlaubt auf einer 512 qm großen Parzelle 234 Objekte, also die doppelte Menge. Die maximale Objektanzahl in einer Region beträgt unabhängig vom Objektbonus 15.000. + </notification> + <notification label="Objektbonus" name="HelpRegionObjectBonus"> + Der Objektbonus ist ein Multiplikator für die Anzahl an zulässigen Primitiven auf einer Parzelle. Gültig sind Werte zwischen 1 und 10. „1“ erlaubt auf einer 512 qm großen Parzelle 117 Objekte. „2“ erlaubt auf einer 512 qm großen Parzelle 234 Objekte, also die doppelte Menge. Die maximale Objektanzahl in einer Region beträgt unabhängig vom Objektbonus 15.000. Eine nachträglich Senkung des Objektbonus führt dazu, dass Objekte zurückgegeben oder gelöscht werden. Standard: 1.0 - </notification> - - - - - <notification - - label="Stoßen beschränken" - name="HelpRegionRestrictPushObject" - > -Aktivieren sie diese Option, um in der gesamten Region das Stoßen zu beschränken. Wenn aktiviert, können Einwohner nur von sich selbst oder vom Parzelleneigentümer gestoßen werden. + </notification> + <notification label="Alterseinstufung" name="HelpRegionMaturity"> + Legt die Alterseinstufung für die Region fest. Dies wird in der Menüleiste oben im Viewer angezeigt und auch in den Kurzinfos auf der Weltkarte, wenn der Cursor über diese Region schwebt. Diese Einstellung wirkt sich auch auf den Zugang zu dieser Region und die Suchergebnisse aus. Andere Einwohner können Regionen nur dann betreten oder Suchergebnisse anzeigen, wenn Ihre Alterseinstufung in Ihren Einstellungen der Alterseinstellung der Region bzw. Suchergebnisse entsprechen. + +Es kann eine Weile dauern, bis diese Änderung auf der Karte angezeigt wird. + </notification> + <notification label="Stoßen beschränken" name="HelpRegionRestrictPushObject"> + Aktivieren sie diese Option, um in der gesamten Region das Stoßen zu beschränken. Wenn aktiviert, können Einwohner nur von sich selbst oder vom Parzelleneigentümer gestoßen werden. (Stoßen meint die LSL-Funktion llPushObject().) Standard: deaktiviert - </notification> - - <notification - - label="Parzelle zusammenlegen/teilen" - name="HelpParcelChanges" - > -Dieses Kontrollkästchen steuert, ob Parzellen des Grundstückseigentümers zusammengelegt bzw. unterteilt werden können. Wenn deaktiviert: + </notification> + <notification label="Parzelle zusammenlegen/teilen" name="HelpParcelChanges"> + Dieses Kontrollkästchen steuert, ob Parzellen des Grundstückseigentümers zusammengelegt bzw. unterteilt werden können. Wenn deaktiviert: * Nur Grundstückseigentümer bzw. –verwalter können Parzellen zusammenlegen/teilen. * Sie können nur Parzellen zusammenlegen/teilen, die dem Eigentümer oder einer Gruppe gehören, bei der sie entsprechende Gruppenrechte innehaben. Wenn aktiviert: * Die Parzelleneigentümer können ihre Parzellen selbst zusammenlegen/teilen. * Parzellen in Gruppeneigentum können von Mitgliedern mit den entsprechenden Rechten zusammengelegt bzw. unterteilt werden. Standard: aktiviert - </notification> - - <notification - - label="Nicht in Suche anzeigen" - name="HelpRegionSearch" - > -Wenn Sie diese Option auswählen, können Parzelleneigentümer ihre Parzellen nicht in der Suche anzeigen lassen + </notification> + <notification label="Nicht in Suche anzeigen" name="HelpRegionSearch"> + Wenn Sie diese Option auswählen, können Parzelleneigentümer ihre Parzellen nicht in der Suche anzeigen lassen Standard: deaktiviert - </notification> - - <notification - - label="Alterseinstufung der Region ändern" - name="RegionMaturityChange" - > -Die Alterseinstufung dieser Region wurde aktualisiert. + </notification> + <notification label="Alterseinstufung der Region ändern" name="RegionMaturityChange"> + Die Alterseinstufung dieser Region wurde aktualisiert. Es kann eine Weile dauern, bis sich die Änderung auf die Karte auswirkt. - </notification> - - <notification - - label="Landwiederverkauf" - name="HelpRegionLandResell" - > -Grundstückseigentümer und -verwalter können jedes Land im Besitz des Grundstückseigentümers verkaufen. + </notification> + <notification label="Landwiederverkauf" name="HelpRegionLandResell"> + Grundstückseigentümer und -verwalter können jedes Land im Besitz des Grundstückseigentümers verkaufen. Ist diese Option deaktiviert, können Käufer ihr Land in dieser Region nicht weiterverkaufen. Ist die Option aktiviert, können Käufer ihr Land in dieser Region weiterverkaufen. Standard: deaktiviert - </notification> - - <notification - - label="Skripts deaktivieren" - name="HelpRegionDisableScripts" - > -Schlechte Sim-Performance ist oftmals auf ein Skript zurückzuführen. Öffnen Sie die Statistikleiste (Strg-Umschalt-1). Sehen Sie sich den Wert für „Simulator Physics FPS“ (Simulator Physik-FPS) an. + </notification> + <notification label="Skripts deaktivieren" name="HelpRegionDisableScripts"> + Schlechte Sim-Performance ist oftmals auf ein Skript zurückzuführen. Öffnen Sie die Statistikleiste (Strg-Umschalt-1). Sehen Sie sich den Wert für „Simulator Physics FPS“ (Simulator Physik-FPS) an. Wenn der Wert unter 45 liegt, öffnen Sie den Bereich „Time“ (Zeit) ganz unten in der Statistikleiste. Wenn der Wert für „Script Time“ (Skriptzeit) 25 ms oder höher ist, klicken Sie auf „Top-Skripts“. Der Name und die Position der Skripts, die für die schlechte Performance verantwortlich sind, werden angezeigt. Wenn Sie das Kontrollkästchen „Skripts deaktivieren“ aktivieren und auf „Übernehmen“ klicken, werden alle Skripts in der Region zeitweilig deaktiviert. Dieser Schritt ist eventuell notwendig, damit Sie an die Position des gemeldeten „Top-Skripts“ reisen können. Sobald Sie dort angekommen sind, sollten Sie das Skript auf die Ursache des Problems hin untersuchen. Möglicherweise müssen Sie sich an den Skript-Eigentümer wenden oder das Objekt löschen bzw. zurückgeben. Um die Skripte in der Region wieder zu aktivieren, deaktivieren Sie „Skript deaktivieren“ und klicken Sie auf „Übernehmen“. Standard: deaktiviert - </notification> - - <notification - - label="Kollisionen deaktivieren" - name="HelpRegionDisableCollisions" - > -Schlechte Sim-Performance ist oftmals auf physische Objekte zurückzuführen. + </notification> + <notification label="Kollisionen deaktivieren" name="HelpRegionDisableCollisions"> + Schlechte Sim-Performance ist oftmals auf physische Objekte zurückzuführen. Öffnen Sie die Statistikleiste (Strg-Umschalt-1). Sehen Sie sich den Wert „Simulator Physics FPS“ an. Liegt dieser unter 45, öffnen Sie unten in der Statistikleiste den „Time“-Bereich. Liegt die „Sim Time (Physics)“ bei 20 ms oder darüber, klicken Sie auf „Top-Kollisionsobjekte“. Der Name und der Standort der physischen Objekte, die das Problem verursachen, werden angezeigt. @@ -3243,495 +1723,239 @@ Kollidiert es ständig mit anderen Objekten? Wenden Sie sich eventuell an den Ei Deaktivieren Sie die Option „Kollisionen deaktivieren“ und klicken Sie auf „Übernehmen“, um Kollisionen in dieser Region wieder zu aktivieren. Standard: deaktiviert - </notification> - - <notification - - label="Physik deaktivieren" - name="HelpRegionDisablePhysics" - > -Das Deaktivieren der Physik ähnelt dem Deaktivieren von Kollisionen, außer dass die gesamte Physiksimulation ausgeschaltet wird. Das hat nicht nur zur Folge, dass Objekte nicht mehr kollidieren, sondern dass Avatare sich nicht mehr bewegen können. + </notification> + <notification label="Physik deaktivieren" name="HelpRegionDisablePhysics"> + Das Deaktivieren der Physik ähnelt dem Deaktivieren von Kollisionen, außer dass die gesamte Physiksimulation ausgeschaltet wird. Das hat nicht nur zur Folge, dass Objekte nicht mehr kollidieren, sondern dass Avatare sich nicht mehr bewegen können. Diese Option sollte nur verwendet werden, wenn das Deaktivieren von Kollisionen keine ausreichende Leistungssteigerung bringt, um Physikprobleme in der Region oder die Top-Kollisionsobjekte zu erkennen. Schalten Sie die Physiksimulation hinterher wieder ein. Andernfalls können sich Avatare nicht mehr bewegen. Standard: deaktiviert - </notification> - - <notification - - label="Top-Kollisionsobjekte" - name="HelpRegionTopColliders" - > -Zeigt eine Liste der Objekte mit den potenziell meisten Objekt-Objekt-Kollisionen an. Diese Objekte können die Leistung beeinträchtigen. Wählen Sie „Ansicht“ > „Statistikleiste“ aus und sehen Sie unter „Simulator“ > „Time“ > „Sim Time (Physics)“ nach, ob die Physikberechnung länger als 20 ms dauert. - </notification> - - <notification - - label="Top-Skripts" - name="HelpRegionTopScripts" - > -Zeigt eine Liste der Objekte an, die die meiste Zeit benötigen, um LSL-Skripts auszuführen. Diese Objekte können die Leistung beeinträchtigen. + </notification> + <notification label="Top-Kollisionsobjekte" name="HelpRegionTopColliders"> + Zeigt eine Liste der Objekte mit den potenziell meisten Objekt-Objekt-Kollisionen an. Diese Objekte können die Leistung beeinträchtigen. Wählen Sie „Ansicht“ > „Statistikleiste“ aus und sehen Sie unter „Simulator“ > „Time“ > „Sim Time (Physics)“ nach, ob die Physikberechnung länger als 20 ms dauert. + </notification> + <notification label="Top-Skripts" name="HelpRegionTopScripts"> + Zeigt eine Liste der Objekte an, die die meiste Zeit benötigen, um LSL-Skripts auszuführen. Diese Objekte können die Leistung beeinträchtigen. Wählen Sie „Ansicht“ > „Statistikleiste“ und sehen Sie unter „Simulator“ > „Time“ > „Script Time“ nach, ob mehr als 25 ms für Skripts benötigt werden. - </notification> - - <notification - - label="Region neu starten" - name="HelpRegionRestart" - > -Starten Sie den Serverprozess für diese Region nach der 2-Minuten-Warnung neu. Die Verbindung aller Einwohner in dieser Region wird getrennt. Die Region wird gespeichert und sollte nach 90 Sekunden wieder verfügbar sein. + </notification> + <notification label="Region neu starten" name="HelpRegionRestart"> + Starten Sie den Serverprozess für diese Region nach der 2-Minuten-Warnung neu. Die Verbindung aller Einwohner in dieser Region wird getrennt. Die Region wird gespeichert und sollte nach 90 Sekunden wieder verfügbar sein. Der Neustart der Region behebt die meisten Leistungs-probleme, sollte aber nur nach Anweisung erfolgen. - </notification> - - <notification - - label="Wasserhöhe" - name="HelpRegionWaterHeight" - > -Die Höhe der Wasserlinie in Metern. Liegt dieser Wert unter 20 und haben Sie Wasser nahe am Rand der Welt oder „offenes“ Wasser definiert, wird eine deutliche Lücke sichtbar. + </notification> + <notification label="Wasserhöhe" name="HelpRegionWaterHeight"> + Die Höhe der Wasserlinie in Metern. Liegt dieser Wert unter 20 und haben Sie Wasser nahe am Rand der Welt oder „offenes“ Wasser definiert, wird eine deutliche Lücke sichtbar. Standard: 20 - </notification> - - <notification - - label="Obere Terraingrenze" - name="HelpRegionTerrainRaise" - > -Der maximale Betrag in Metern, um den Parzelleneigentümer ihr Terrain über die Standardhöhe des „geformten“ Terrains erhöhen können. + </notification> + <notification label="Obere Terraingrenze" name="HelpRegionTerrainRaise"> + Der maximale Betrag in Metern, um den Parzelleneigentümer ihr Terrain über die Standardhöhe des „geformten“ Terrains erhöhen können. Standard: 4 - </notification> - - <notification - - label="Untere Terraingrenze" - name="HelpRegionTerrainLower" - > -Der maximale Betrag in Metern, um den Parzelleneigentümer ihr Terrain unter die Standardhöhe des „geformten“ Terrains absenken können. + </notification> + <notification label="Untere Terraingrenze" name="HelpRegionTerrainLower"> + Der maximale Betrag in Metern, um den Parzelleneigentümer ihr Terrain unter die Standardhöhe des „geformten“ Terrains absenken können. Standard: -4 - </notification> - - <notification - - label="RAW-Terrain hochladen" - name="HelpRegionUploadRaw" - > -Mit dieser Schaltfläche laden Sie eine RAW-Datei in die Region hoch, in der Sie sich befinden. + </notification> + <notification label="RAW-Terrain hochladen" name="HelpRegionUploadRaw"> + Mit dieser Schaltfläche laden Sie eine RAW-Datei in die Region hoch, in der Sie sich befinden. Die Datei muss die korrekten Maße (RGB, 256x256) und 13 Kanäle haben. Um eine neue Terraindatei zu erstellen, laden Sie am besten die vorhandene RAW-Datei herunter. Beginnen Sie damit, den Rot-Kanal (Höhe des Landes) zu bearbeiten und laden Sie die Datei wieder hoch. Der Ladevorgang kann bis zu 45 Sekunden dauern. Beachten Sie, dass beim Hochladen einer Terraindatei die Objekte auf dem Land *nicht* verschoben werden, sondern nur das Land und die mit den Parzellen verbundenen Berechtigungen. Dies kann dazu führen, dass Objekte unter dem Terrain verschwinden. Weitere Informationen zur Bearbeitung der Höhendaten der Region enthält die F1-Hilfe. - </notification> - - <notification - - label="RAW-Terrain herunterladen" - name="HelpRegionDownloadRaw" - > -Mit dieser Schaltfläche laden Sie eine Datei herunter, welche die Höhendaten, Maße, den Verkaufsstatus der Parzelle und einige Parzellenrechte für diese Region enthält. Wenn Sie diese Datei in einem Programm wie Photoshop öffnen, müssen Sie die Bilddaten eingeben. Diese sind: RGB, 256x256 mit 13 Kanälen. Anders lässt sich diese Terraindatei nicht öffnen. + </notification> + <notification label="RAW-Terrain herunterladen" name="HelpRegionDownloadRaw"> + Mit dieser Schaltfläche laden Sie eine Datei herunter, welche die Höhendaten, Maße, den Verkaufsstatus der Parzelle und einige Parzellenrechte für diese Region enthält. Wenn Sie diese Datei in einem Programm wie Photoshop öffnen, müssen Sie die Bilddaten eingeben. Diese sind: RGB, 256x256 mit 13 Kanälen. Anders lässt sich diese Terraindatei nicht öffnen. Weitere Informationen zur Bearbeitung der Höhendaten der Region enthält die F1-Hilfe. - </notification> - - <notification - - label="Grundstücksonne verwenden" - name="HelpRegionUseEstateSun" - > -Aktivieren Sie diese Option, um in dieser Region denselben Sonnenstand wie auf dem restlichen Grundstück einzustellen. + </notification> + <notification label="Grundstücksonne verwenden" name="HelpRegionUseEstateSun"> + Aktivieren Sie diese Option, um in dieser Region denselben Sonnenstand wie auf dem restlichen Grundstück einzustellen. Standard: aktiviert - </notification> - - <notification - - label="Sonne fest" - name="HelpRegionFixedSun" - > -Aktivieren Sie diese Option, um den Sonnenstand auf die im Regler definierte Position festzulegen und die Animation auszuschalten. + </notification> + <notification label="Sonne fest" name="HelpRegionFixedSun"> + Aktivieren Sie diese Option, um den Sonnenstand auf die im Regler definierte Position festzulegen und die Animation auszuschalten. Standard: deaktiviert - </notification> - - <notification - - label="Terrain formen" - name="HelpRegionBakeTerrain" - > -Mit dieser Schaltfläche speichern Sie die aktuelle Terrain-Form als neuen Standard für die Region. Nach der Formung können Sie und andere das Land mit der Option „Terrain bearbeiten“ > „Zurücksetzen“ in den ursprünglichen Zustand zurückversetzen. Das geformte Terrain ist auch das Zentrum für die oberen und unteren Terraingrenzen. - </notification> - - <notification - - label="Grundstücksverwalter" - name="HelpEstateEstateManager" - > -Ein Grundstücksverwalter ist ein Einwohner, dem Sie die Kontrolle über die Regions- und Grundstückseinstellungen übertragen haben. Ein Grundstücksverwalter kann alle Einstellungen ändern, außer das Hochladen, Herunterladen und Formen von Terrain. Vor allem kann er Einwohner auf dem Grundstück erlauben und davon verbannen. + </notification> + <notification label="Terrain formen" name="HelpRegionBakeTerrain"> + Mit dieser Schaltfläche speichern Sie die aktuelle Terrain-Form als neuen Standard für die Region. Nach der Formung können Sie und andere das Land mit der Option „Terrain bearbeiten“ > „Zurücksetzen“ in den ursprünglichen Zustand zurückversetzen. Das geformte Terrain ist auch das Zentrum für die oberen und unteren Terraingrenzen. + </notification> + <notification label="Grundstücksverwalter" name="HelpEstateEstateManager"> + Ein Grundstücksverwalter ist ein Einwohner, dem Sie die Kontrolle über die Regions- und Grundstückseinstellungen übertragen haben. Ein Grundstücksverwalter kann alle Einstellungen ändern, außer das Hochladen, Herunterladen und Formen von Terrain. Vor allem kann er Einwohner auf dem Grundstück erlauben und davon verbannen. Nur der Eigentümer kann den Grundstücksverwalter bestimmen und entlassen. Der Verwalter hat dieses Recht nicht. Wählen Sie nur vertrauenswürdige Einwohner als Grundstücksverwalter, da Sie letztlich für deren Handlungen verantwortlich sind. - </notification> - - <notification - - label="Globale Zeit verwenden" - name="HelpEstateUseGlobalTime" - > -Aktivieren Sie diese Option, um auf Ihrem Grundstück denselben Sonnenstand wie auf dem Linden-„Mainland“ einzustellen. + </notification> + <notification label="Globale Zeit verwenden" name="HelpEstateUseGlobalTime"> + Aktivieren Sie diese Option, um auf Ihrem Grundstück denselben Sonnenstand wie auf dem Linden-„Mainland“ einzustellen. Standard: aktiviert - </notification> - - <notification - - label="Sonne fest" - name="HelpEstateFixedSun" - > -Aktivieren Sie diese Option, um den Sonnenstand auf die im Regler definierte Position festzulegen und die Animation auszuschalten. - </notification> - - <notification - - label="Öffentlich" - name="HelpEstateExternallyVisible" - > -Aktivieren Sie diese Option, um Einwohnern den Zugang zu diesem Grundstück zu erlauben, ohne auf der Zugangsliste zu stehen. + </notification> + <notification label="Sonne fest" name="HelpEstateFixedSun"> + Aktivieren Sie diese Option, um den Sonnenstand auf die im Regler definierte Position festzulegen und die Animation auszuschalten. + </notification> + <notification label="Öffentlich" name="HelpEstateExternallyVisible"> + Aktivieren Sie diese Option, um Einwohnern den Zugang zu diesem Grundstück zu erlauben, ohne auf der Zugangsliste zu stehen. Standard: aktiviert - </notification> - - <notification - - label="Direktteleport zulassen" - name="HelpEstateAllowDirectTeleport" - > -Wenn aktiviert, können sich Einwohner an jede Stelle auf Ihrem Grundstück teleportieren. Wenn deaktiviert, werden Einwohner zum nächstgelegenen Telehub teleportiert. + </notification> + <notification label="Direktteleport zulassen" name="HelpEstateAllowDirectTeleport"> + Wenn aktiviert, können sich Einwohner an jede Stelle auf Ihrem Grundstück teleportieren. Wenn deaktiviert, werden Einwohner zum nächstgelegenen Telehub teleportiert. Standard: deaktiviert - </notification> - - <notification - - label="Zugang erlauben" - name="HelpEstateAllowResident" - > -Der Zugang zu diesem Grundstück wird auf die hier aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist nur verfügbar, wenn „Öffentlich“ deaktiviert ist. - </notification> - - <notification - - label="Gruppenzugang erlauben" - name="HelpEstateAllowGroup" - > -Der Zugang zu diesem Grundstück wird auf die hier aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist nur verfügbar, wenn „Öffentlich“ deaktiviert ist. - </notification> - - <notification - - label="E-Mail-Adresse für Missbrauchsmeldungen" - name="HelpEstateAbuseEmailAddress" - > -Geben Sie hier eine E-Mail-Adresse ein, an die Missbrauchsmeldungen von diesem Grundstück gesendet werden. + </notification> + <notification label="Zugang erlauben" name="HelpEstateAllowResident"> + Der Zugang zu diesem Grundstück wird auf die hier aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist nur verfügbar, wenn „Öffentlich“ deaktiviert ist. + </notification> + <notification label="Gruppenzugang erlauben" name="HelpEstateAllowGroup"> + Der Zugang zu diesem Grundstück wird auf die hier aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist nur verfügbar, wenn „Öffentlich“ deaktiviert ist. + </notification> + <notification label="E-Mail-Adresse für Missbrauchsmeldungen" name="HelpEstateAbuseEmailAddress"> + Geben Sie hier eine E-Mail-Adresse ein, an die Missbrauchsmeldungen von diesem Grundstück gesendet werden. Wenn dieses Feld leer ist, werden Missbrauchsmeldungen nur an Linden Lab gesendet. - </notification> - - <notification - - label="Zugang verweigern" - name="HelpEstateBanResident" - > -Einwohnern auf dieser Liste wird der Zugang zum Grundstück verwehrt, unabhängig von etwaigen anderen Einstellungen. - </notification> - - <notification - - label="Voice-Chat erlauben" - name="HelpEstateVoiceChat" - > -Die Parzellen auf diesem Grundstück können über eigene Voice-Channel verfügen, die es Einwohnern ermöglichen, sich mit anderen Personen in der Nähe zu unterhalten. + </notification> + <notification label="Zugang verweigern" name="HelpEstateBanResident"> + Einwohnern auf dieser Liste wird der Zugang zum Grundstück verwehrt, unabhängig von etwaigen anderen Einstellungen. + </notification> + <notification label="Voice-Chat erlauben" name="HelpEstateVoiceChat"> + Die Parzellen auf diesem Grundstück können über eigene Voice-Channel verfügen, die es Einwohnern ermöglichen, sich mit anderen Personen in der Nähe zu unterhalten. Standard: deaktiviert - </notification> - - <notification - - label="Falsche Voice-Version" - name="VoiceVersionMismatch" - > -Diese Version von Second ist mit dem Voice-Chat-Feature in dieser Region nicht kompatibel. Damit Voice-Chat funktioniert, müssen Sie Second Life aktualisieren. - </notification> - - <notification - - label="Grunstücksvertrag" - name="HelpEstateCovenant" - > -Ein Grundstücksvertrag ermöglicht es Ihnen, Grundstücksparzellen zu verkaufen. Ohne Vertrag können Sie kein Land verkaufen. Wenn Sie keine Regeln festlegen oder Käufern vor dem Kauf keine anderen Informationen über das Land bereitstellen möchten, können Sie die Vertrags-Notizkarte auch leer lassen. + </notification> + <notification label="Falsche Voice-Version" name="VoiceVersionMismatch"> + Diese Version von Second ist mit dem Voice-Chat-Feature in dieser Region nicht kompatibel. Damit Voice-Chat funktioniert, müssen Sie Second Life aktualisieren. + </notification> + <notification label="Grunstücksvertrag" name="HelpEstateCovenant"> + Ein Grundstücksvertrag ermöglicht es Ihnen, Grundstücksparzellen zu verkaufen. Ohne Vertrag können Sie kein Land verkaufen. Wenn Sie keine Regeln festlegen oder Käufern vor dem Kauf keine anderen Informationen über das Land bereitstellen möchten, können Sie die Vertrags-Notizkarte auch leer lassen. Ein Vertrag kann Regeln und Richtlinien, kulturelle Informationen oder einfach nur Ihre eigenen Erwartungen bezüglich der Landnutzung durch den Käufer enthalten. Das kann Zoning, Baubeschränkungen, Zahloptionen und alle möglichen anderen Informationen betreffen, die der neue Eigentümer Ihrer Meinung nach kennen und akzeptieren sollte. Der Käufer muss dem Vertrag durch Auswahl dieses Kontrollkästchens zustimmen, bevor der Kauf abgeschlossen werden kann. Grundstücksverträge sind jederzeit unter „Land-Info“ für jede Parzelle einsehbar, für die ein Vertrag definiert wurde. - </notification> - - <notification - - label="Objekte können nicht gekauft werden" - name="BuyObjectOneOwner" - > -Objekte können nicht von mehreren Eigentümern gleichzeitig gekauft werden. + </notification> + <notification label="Objekte können nicht gekauft werden" name="BuyObjectOneOwner"> + Objekte können nicht von mehreren Eigentümern gleichzeitig gekauft werden. Wählen Sie ein einzelnes Objekt aus und versuchen Sie es erneut. - </notification> - - <notification - - label="Inhalte können nicht gekauft werden" - name="BuyContentsOneOnly" - > -Inhalte können jeweils nur für ein Objekt gekauft werden. + </notification> + <notification label="Inhalte können nicht gekauft werden" name="BuyContentsOneOnly"> + Inhalte können jeweils nur für ein Objekt gekauft werden. Wählen Sie ein einzelnes Objekt aus und versuchen Sie es erneut. - </notification> - - <notification - - label="Inhalte können nicht gekauft werden" - name="BuyContentsOneOwner" - > -Objekte können nicht von mehreren Eigentümern gleichzeitig gekauft werden. + </notification> + <notification label="Inhalte können nicht gekauft werden" name="BuyContentsOneOwner"> + Objekte können nicht von mehreren Eigentümern gleichzeitig gekauft werden. Wählen Sie ein einzelnes Objekt aus und versuchen Sie es erneut. - </notification> - - <notification - - name="BuyOriginal" - > -Von [OWNER] Originalobjekt für [PRICE] L$ kaufen? + </notification> + <notification name="BuyOriginal"> + Von [OWNER] Originalobjekt für [PRICE] L$ kaufen? Sie werden der Eigentümer dieses Objekts. Sie können das Objekt: Bearbeiten: [MODIFYPERM] Kopieren: [COPYPERM] Verkaufen oder weggeben: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -Originalobjekt für [PRICE] L$ kaufen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="BuyOriginalNoOwner"> + Originalobjekt für [PRICE] L$ kaufen? Sie werden der Eigentümer dieses Objekts. Sie können das Objekt: Bearbeiten: [MODIFYPERM] Kopieren: [COPYPERM] Verkaufen oder weggeben: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopy" - > -Von [OWNER] Kopie für [PRICE] L$ kaufen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="BuyCopy"> + Von [OWNER] Kopie für [PRICE] L$ kaufen? Das Objekt wird in Ihr Inventar kopiert. Sie können das Objekt: Bearbeiten: [MODIFYPERM] Kopieren: [COPYPERM] Verkaufen oder weggeben: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -Kopie für [PRICE] L$ kaufen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="BuyCopyNoOwner"> + Kopie für [PRICE] L$ kaufen? Das Objekt wird in Ihr Inventar kopiert. Sie können das Objekt: Bearbeiten: [MODIFYPERM] Kopieren: [COPYPERM] Verkaufen oder weggeben: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="BuyContents" - > -Von [OWNER] Inhalte für [PRICE] L$ kaufen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="BuyContents"> + Von [OWNER] Inhalte für [PRICE] L$ kaufen? Die Inhalte werden in Ihr Inventar kopiert. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -Inhalte für [PRICE] L$ kaufen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="BuyContentsNoOwner"> + Inhalte für [PRICE] L$ kaufen? Die Inhalte werden in Ihr Inventar kopiert. - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -Transaktion: + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmPurchase"> + Transaktion: [ACTION] Möchten Sie diesen Kauf fortsetzen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -Transaktion: + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + Transaktion: [ACTION] Möchten Sie diesen Kauf fortsetzen? Geben Sie Ihr Kennwort erneut ein und klicken Sie auf OK. - <form name="form"> - <input - name="message" - type="password"/> - <button - - - name="ConfirmPurchase" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -Hinweis: + <form name="form"> + <input name="message" type="password"/> + <button name="ConfirmPurchase" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="SetPickLocation"> + Hinweis: Sie haben die Position dieser Auswahl aktualisiert, aber die anderen Daten behalten ihre ursprünglichen Werte. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -Sie haben „nicht kopierfähige“ Inventarobjekte ausgewählt. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + Sie haben „nicht kopierfähige“ Inventarobjekte ausgewählt. Diese Objekte werden nicht kopiert, sondern in Ihr Inventar verschoben. Inventarobjekt(e) verschieben? - <usetemplate - ignoretext="Beim Verschieben von nicht-kopierfähigem Inventar von Objekten" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -Sie haben „nicht kopierfähige“ Inventarobjekte ausgewählt. Diese Objekte werden nicht kopiert, sondern in Ihr Inventar verschoben. + <usetemplate ignoretext="Beim Verschieben von nicht-kopierfähigem Inventar von Objekten" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromScriptedObject"> + Sie haben „nicht kopierfähige“ Inventarobjekte ausgewählt. Diese Objekte werden nicht kopiert, sondern in Ihr Inventar verschoben. Da es sich um ein geskriptetes Objekt handelt, geht die Skriptfunktion beim Verschieben in das Inventar möglicherweise verloren. Inventarobjekt(e) verschieben? - <usetemplate - ignoretext="Beim Verschieben von nicht-kopierfähigem Inventar von geskripteten Objekten" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ClickActionNotPayable" - > -Achtung: Die Klick-Aktion „Objekt bezahlen“ wurde definiert, sie funktioniert aber nur, wenn ein Skript mit einem money() Ereignis hinzugefügt wird. - <form name="form"> - <ignore name="ignore" - text="Beim Einrichten von Events mit „Objektbezahlung“ ohne Geld"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -Sie haben keine Berechtigung zum Kopieren von Elementen in diesem Objekt. - </notification> - - <notification - - name="WebLaunchAccountHistory" - > -Zur Second Life-Website, um Ihre Kontostatistik anzuzeigen? - <usetemplate - ignoretext="Beim Laden der Kontostatistik-Website" - name="okcancelignore" - notext="Abbrechen" - yestext="Gehe zu Seite"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -Die Support-Website von Second Life öffnen? - <usetemplate - ignoretext="Bei Besuch der Second Life Support-Website." - name="okcancelignore" - notext="Abbrechen" - yestext="Los"/> - </notification> - - <notification - - name="ConfirmQuit" - > -Wirklich beenden? - <usetemplate - ignoretext="Beim Beenden von Second Life." - name="okcancelignore" - notext="Weiter" - yestext="Beenden"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -Verwenden Sie dieses Tool, um Verletzungen der Servicebedingungen und Community-Standards zu melden. Siehe: + <usetemplate ignoretext="Beim Verschieben von nicht-kopierfähigem Inventar von geskripteten Objekten" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ClickActionNotPayable"> + Achtung: Die Klick-Aktion „Objekt bezahlen“ wurde definiert, sie funktioniert aber nur, wenn ein Skript mit einem money() Ereignis hinzugefügt wird. + <form name="form"> + <ignore name="ignore" text="Beim Einrichten von Events mit „Objektbezahlung“ ohne Geld"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + Sie haben keine Berechtigung zum Kopieren von Elementen in diesem Objekt. + </notification> + <notification name="WebLaunchAccountHistory"> + Zur Second Life-Website, um Ihre Kontostatistik anzuzeigen? + <usetemplate ignoretext="Beim Laden der Kontostatistik-Website" name="okcancelignore" notext="Abbrechen" yestext="Gehe zu Seite"/> + </notification> + <notification name="ClickOpenF1Help"> + Die Support-Website von Second Life öffnen? + <usetemplate ignoretext="Bei Besuch der Second Life Support-Website." name="okcancelignore" notext="Abbrechen" yestext="Los"/> + </notification> + <notification name="ConfirmQuit"> + Wirklich beenden? + <usetemplate ignoretext="Beim Beenden von Second Life." name="okcancelignore" notext="Weiter" yestext="Beenden"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + Verwenden Sie dieses Tool, um Verletzungen der Servicebedingungen und Community-Standards zu melden. Siehe: http://secondlife.com/corporate/tos.php http://secondlife.com/corporate/cs.php @@ -3739,102 +1963,58 @@ http://secondlife.com/corporate/cs.php Alle gemeldeten Verletzungen der Servicebedingungen und Community-Standards werden geprüft und geklärt Sie können den Prozess im Incident Report (Vorfallsbericht) verfolgen: http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -WICHTIG: Diese Meldung wird an den Eigentümer der Region gesendet, in der Sie sich gerade befinden, nicht an Linden Lab. + </notification> + <notification name="HelpReportAbuseEmailEO"> + WICHTIG: Diese Meldung wird an den Eigentümer der Region gesendet, in der Sie sich gerade befinden, nicht an Linden Lab. - Als besonderen Service für Einwohner und Besucher übernimmt der Eigentümer dieser Region die Bearbeitung aller anfallenden Meldungen. Von diesem Standort aus eingereichte Meldungen werden nicht von Linden Lab bearbeitet. Der Eigentümer der Region bearbeitet Meldungen auf Grundlage der Richtlinien, die im für diese Region geltenden Grundstücksvertrag festgelegt sind. (Den Vertrag können Sie unter „Welt“ > „Land-Info“ einsehen.) - Das Resultat, das sich aus dieser Meldung ergibt, betrifft nur diese Region; der Einwohnerzugang zu anderen Bereichen von Second Life ist davon nicht betroffen. Nur Linden Lab kann den Zugang zu Second Life beschränken. - </notification> - - <notification - - name="HelpReportBug" - > -Verwenden Sie dieses Tool *nur*, um technische Features zu melden, die nicht wie beschrieben oder erwartet funktionieren. Bitte machen Sie so viele Angaben wie möglich. Sie können auf die automatische Antwort-E-Mail antworten, um Ihre Meldung noch zu ergänzen. + </notification> + <notification name="HelpReportBug"> + Verwenden Sie dieses Tool *nur*, um technische Features zu melden, die nicht wie beschrieben oder erwartet funktionieren. Bitte machen Sie so viele Angaben wie möglich. Sie können auf die automatische Antwort-E-Mail antworten, um Ihre Meldung noch zu ergänzen. Alle gemeldeten Fehler werden geprüft und bewertet. Sie erhalten keine persönliche Antwort auf Ihre E-Mail. - Bei technischen Problemen wenden Sie sich bitte an den Support unter: http://secondlife.com/community/support.php - Hinweis: Unvollständige Meldungen werden nicht bearbeitet. - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -Wählen Sie eine Missbrauchskategorie aus. + </notification> + <notification name="HelpReportAbuseSelectCategory"> + Wählen Sie eine Missbrauchskategorie aus. Die Angabe einer Kategorie hilft uns bei der Bearbeitung des Berichts. - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -Wählen Sie eine Fehler-Kategorie aus. + </notification> + <notification name="HelpReportBugSelectCategory"> + Wählen Sie eine Fehler-Kategorie aus. Die Angabe einer Kategorie hilft uns bei der Bearbeitung des Berichts. - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -Geben Sie den Namen des Täters ein. + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + Geben Sie den Namen des Täters ein. Eine genaue Angabe hilft uns, Fälle von Missbrauch zu ahnden. - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -Bitte geben Sie den Ort an, an dem der Missbrauch stattgefunden hat. + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + Bitte geben Sie den Ort an, an dem der Missbrauch stattgefunden hat. Eine genaue Angabe hilft uns, Fälle von Missbrauch zu ahnden. - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -Bitte geben Sie eine Zusammenfassung des Vorfalls ein. + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + Bitte geben Sie eine Zusammenfassung des Vorfalls ein. Eine genaue Zusammenfassung hilft uns, Fälle von Missbrauch zu ahnden. - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -Bitte geben Sie eine Zusammenfassung des Fehlers ein. + </notification> + <notification name="HelpReportBugSummaryEmpty"> + Bitte geben Sie eine Zusammenfassung des Fehlers ein. Eine genaue Zusammenfassung hilft uns, Fehler schneller zu beseitigen. - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -Bitte geben Sie eine ausführliche Beschreibung des Vorfalls ein. + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + Bitte geben Sie eine ausführliche Beschreibung des Vorfalls ein. Eine möglichst genaue Beschreibung mit Namen und Einzelheiten hilft uns, Fälle von Missbrauch zu ahnden. - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -Bitte geben Sie eine ausführliche Fehlerbeschreibung ein. + </notification> + <notification name="HelpReportBugDetailsEmpty"> + Bitte geben Sie eine ausführliche Fehlerbeschreibung ein. Eine möglichst genaue Beschreibung mit Schritten zur Reproduktion des Fehlers hilft uns, Fehler schneller zu beseitigen. - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Sehr geehrte(r) Einwohner(in), + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + Sehr geehrte(r) Einwohner(in), Sie melden eine Urheberrechtsverletzung. Sind Sie wirklich sicher, dass Sie eine Verletzung des Urheberrechts melden möchten? @@ -3847,143 +2027,61 @@ Wenn Sie mit der Missbrauchmeldung jetzt fortfahren möchten, schließen Sie bit Vielen Dank, Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -Die folgenden erforderlichen Komponenten fehlen in [FLOATER]: + </notification> + <notification name="FailedRequirementsCheck"> + Die folgenden erforderlichen Komponenten fehlen in [FLOATER]: [COMPONENTS] - </notification> - - <notification - - label="Vorhandenen Anhang ersetzen" - name="ReplaceAttachment" - > -An dieser Körperstelle ist bereits ein Objekt angebracht. + </notification> + <notification label="Vorhandenen Anhang ersetzen" name="ReplaceAttachment"> + An dieser Körperstelle ist bereits ein Objekt angebracht. Möchten Sie es mit dem ausgewählten Objekt ersetzen? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Beim Wechseln von Anhängen"/> - <button - - ignore="Replace Automatically" - - name="Yes" - text="OK"/> - <button - ignore="Never Replace" - - name="No" - text="Abbrechen"/> - </form> - </notification> - - <notification - - label="Beschäftigt-Modus-Warnung" - name="BusyModePay" - > -Sie sind im Beschäftigt-Modus, sodass Sie im Austausch für diese Zahlung keine Objekte erhalten können. + <form name="form"> + <ignore name="ignore" save_option="true" text="Beim Wechseln von Anhängen"/> + <button ignore="Automatisch ersetzen" name="Yes" text="OK"/> + <button ignore="Nie ersetzen" name="No" text="Abbrechen"/> + </form> + </notification> + <notification label="Beschäftigt-Modus-Warnung" name="BusyModePay"> + Sie sind im Beschäftigt-Modus, sodass Sie im Austausch für diese Zahlung keine Objekte erhalten können. Möchten Sie den Bechäftigt-Modus verlassen, bevor Sie diese Transaktion abschließen? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Beim Bezahlen einer Person oder eines Objekts im Beschäftigt-Modus"/> - <button - - ignore="Always leave Busy Mode" - - name="Yes" - text="OK"/> - <button - ignore="Never leave Busy Mode" - - name="No" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="ConfirmEmptyTrash" - > -Möchten Sie den Inhalt Ihres Papierkorbs wirklich löschen? - <usetemplate - ignoretext="Beim Leeren des Inventar-Papierkorbs" - name="okcancelignore" - notext="Abbrechen" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmClearBrowserCache" - > -Möchten Sie Ihren Browser-Cache wirklich leeren? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Ja"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -Sind Sie sicher, dass Sie Ihre Cookies löschen möchten? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Ja"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -Die Liste mit gespeicherten URLs wirklich löschen? - <usetemplate - name="okcancelbuttons" - notext="Abbrechen" - yestext="Ja"/> - </notification> - - <notification - - name="ConfirmEmptyLostAndFound" - > -Möchten Sie den Inhalt Ihres Fundstücke-Ordners wirklich permanent löschen? - <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: + <form name="form"> + <ignore name="ignore" save_option="true" text="Beim Bezahlen einer Person oder eines Objekts im Beschäftigt-Modus"/> + <button ignore="Beschäftigt-Modus immer deaktivieren" name="Yes" text="OK"/> + <button ignore="Beschäftigt-Modus aktiviert lassen" name="No" text="Abbrechen"/> + </form> + </notification> + <notification name="ConfirmEmptyTrash"> + Möchten Sie den Inhalt Ihres Papierkorbs wirklich löschen? + <usetemplate ignoretext="Beim Leeren des Inventar-Papierkorbs" name="okcancelignore" notext="Abbrechen" yestext="OK"/> + </notification> + <notification name="ConfirmClearBrowserCache"> + Möchten Sie Ihren Browser-Cache wirklich leeren? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Ja"/> + </notification> + <notification name="ConfirmClearCookies"> + Sind Sie sicher, dass Sie Ihre Cookies löschen möchten? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Ja"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + Die Liste mit gespeicherten URLs wirklich löschen? + <usetemplate name="okcancelbuttons" notext="Abbrechen" yestext="Ja"/> + </notification> + <notification name="ConfirmEmptyLostAndFound"> + Möchten Sie den Inhalt Ihres Fundstücke-Ordners wirklich permanent löschen? + <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: [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"/> - </form> - </notification> - - <notification - - name="GraphicsPreferencesHelp" - > -Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung im Client. Im Fenster „Einstellungen“ > „Grafik“ stehen vier Grafikeinstellungen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Die Grafikeinstellungen lassen sich auch individuell anpassen; aktivieren Sie das Kontrollkästchen „Benutzerdefiniert“, um die folgenden Einstellungen zu bearbeiten: + <form name="form"> + <ignore name="ignore" text="Beim Kopieren einer SLURL in die Zwischenablage"/> + </form> + </notification> + <notification name="GraphicsPreferencesHelp"> + Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung im Client. Im Fenster „Einstellungen“ > „Grafik“ stehen vier Grafikeinstellungen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Die Grafikeinstellungen lassen sich auch individuell anpassen; aktivieren Sie das Kontrollkästchen „Benutzerdefiniert“, um die folgenden Einstellungen zu bearbeiten: Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. @@ -4002,74 +2100,33 @@ Gitterdetails: Legt den Detailgrad bzw. die Anzahl an Dreiecken bei der Berechnu Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. Terraindetails: Legt den Detailgrad bei der Berechnung der Terraintextur fest. - </notification> - - <notification - - name="WLSavePresetAlert" - > -Die gespeicherte Voreinstellung überschreiben? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="WLDeletePresetAlert" - > -[SKY] löschen? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="WLNoEditDefault" - > -Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. - </notification> - - <notification - - name="WLMissingSky" - > -Diese Tageszyklusdatei verweist auf eine fehlende Himmel-Datei: [SKY]. - </notification> - - <notification - - name="PPSaveEffectAlert" - > -Post-Processing-Effekt bereits vorhanden. Möchten Sie ihn überschreiben? - <usetemplate - name="okcancelbuttons" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="HelpEditSky" - > -Verschieben Sie die WindLight-Regler, um verschiedene Himmelsansichten zu erstellen und zu speichern. - </notification> - - <notification - - name="HelpEditDayCycle" - > -Wählen Sie für jede Tageszeit eine Himmelsansicht aus. - </notification> - - <notification - - name="EnvSettingsHelpButton" - > -Diese Einstellungen haben Auswirkung auf die lokale Darstellung der Umwelt auf Ihrem Computer. Zugriff auf alle Einstellungen haben Sie nur, wenn Ihre Grafikkarte Atmosphären-Shader unterstützt. + </notification> + <notification name="WLSavePresetAlert"> + Die gespeicherte Voreinstellung überschreiben? + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="WLDeletePresetAlert"> + [SKY] löschen? + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="WLNoEditDefault"> + Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. + </notification> + <notification name="WLMissingSky"> + Diese Tageszyklusdatei verweist auf eine fehlende Himmel-Datei: [SKY]. + </notification> + <notification name="PPSaveEffectAlert"> + Post-Processing-Effekt bereits vorhanden. Möchten Sie ihn überschreiben? + <usetemplate name="okcancelbuttons" notext="Nein" yestext="Ja"/> + </notification> + <notification name="HelpEditSky"> + Verschieben Sie die WindLight-Regler, um verschiedene Himmelsansichten zu erstellen und zu speichern. + </notification> + <notification name="HelpEditDayCycle"> + Wählen Sie für jede Tageszeit eine Himmelsansicht aus. + </notification> + <notification name="EnvSettingsHelpButton"> + Diese Einstellungen haben Auswirkung auf die lokale Darstellung der Umwelt auf Ihrem Computer. Zugriff auf alle Einstellungen haben Sie nur, wenn Ihre Grafikkarte Atmosphären-Shader unterstützt. Mit dem Regler „Tageszeit“ stellen Sie die lokal in Ihrem Viewer dargestellte Tageszeit ein. @@ -4084,13 +2141,9 @@ Klicken Sie auf „Grundstückszeit verw.“, um die aktuelle Zeit in der Region Klicken Sie auf „Himmel (erweitert)“, um einen Editor mit erweiterten Einstellungen für die Himmeldarstellung anzuzeigen. Klicken Sie auf „Wasser (erweitert)“, um einen Editor mit erweiterten Einstellungen für die Wasserdarstellung anzuzeigen. - </notification> - - <notification - - name="HelpDayCycle" - > -Im Tageszyklus-Editor steuern Sie den Tag-/Nachtzyklus am Second Life Himmel. Dabei handelt es sich um den Zyklus, der mit dem Tageszeit-Regler im Umwelt-Basiseditor gesteuert wird. + </notification> + <notification name="HelpDayCycle"> + Im Tageszyklus-Editor steuern Sie den Tag-/Nachtzyklus am Second Life Himmel. Dabei handelt es sich um den Zyklus, der mit dem Tageszeit-Regler im Umwelt-Basiseditor gesteuert wird. Der Tageszyklus-Editor verwendet sogenannte Keyframes zur Steuerung des Tag-/Nachtablaufs. Dabei handelt es sich um „Schlüsselbilder“ (die grauen Kreise auf der Zeitskala), für die bestimmte Himmelseinstellungen definiert wurden. Bei voranschreitender Tageszeit interpoliert WindLight den Ãœbergang zwischen diesen Keyframes und erzeugt eine entsprechende Himmelsanimation. @@ -4101,1670 +2154,861 @@ Keyframes lassen sich einfach entlang der Zeitskala verschieben, oder Sie geben „Zykluslänge“ bestimmt die Gesamtlänge eines „Tages“. Ein niedriger Wert (z.B. 2 Minuten) führt dazu, dass ein ganzer 24-Stunden-Tag innerhalb von zwei Minuten Echtzeit abgespult wird! Wenn Sie alle Einstellungen auf der Zeitskala und für die einzelnen Keyframes vorgenommen haben, können Sie mit „Start“ und „Stopp“ die Animation anzeigen. Das funktioniert natürlich genauso interaktiv, indem Sie den gelben Pfeil über der Zeitskala verschieben. Mit der Schaltfläche „Grundstückszeit verw.“ synchronisieren Sie die Tageszeit und -länge mit den auf dem Grundstück geltenden Einstellungen. Ihre Tageszyklus-Einstellungen lassen sich mit den Schaltflächen „Testtag speichern“ und „Testtag laden“ speichern bzw. laden. Bis dato kann nur ein Tageszyklus gleichzeitig in Verwendung sein. - </notification> - - <notification - - name="HelpBlueHorizon" - > -Mit den Reglern für Rot/Grün/Blau (RGB) steuern Sie die Farbe des Himmels. Verwenden Sie den Intensitätsregler (I), um alle drei RGB-Regler gleichzeitig zu verschieben. - </notification> - - <notification - - name="HelpHazeHorizon" - > -Horizonttrübung ist einer der wichtigsten Parameter, um die Gesamtlichtsituation in der Szene zu steuern. Damit lassen sich viele Belichtungseinstellungen simulieren, z.B. ein Ãœberstrahlen durch die Sonne oder starker Dunst. - </notification> - - <notification - - name="HelpBlueDensity" - > -Farbintensität steuert die Gesamtfarbsättigung von Himmel und Nebel. Je weiter Sie den Intensitätsregler (I) nach rechts verschieben, desto heller und lebendiger werden die Farben. Wenn Sie ihn ganz nach links verschieben, verlieren die Farben an Intensität und gehen in Schwarz oder Weiß über. Volle Kontrolle über die Farbsättigung des Himmels bieten ihnen die Regler für Rot/Grün/Blau (RGB). - </notification> - - <notification - - name="HelpHazeDensity" - > -Trübungsintensität steuert die Stärke des grauen Dunsts in der Atmosphäre. Damit lassen sich zum Beispiel starker Rauch oder Luftverschmutzung simulieren. Auch für Nebel und Sprühregen geeignet. - </notification> - - <notification - - name="HelpDensityMult" - > -Der Dichtemultiplikator beeinflusst die Gesamtdichte der Atmosphäre. Niedrige Einstellungen erzeugen den Eindruck dünner, sauberer Luft, hohe Einstellungen erzeugen den Eindruck schweren Smogs. - </notification> - - <notification - - name="HelpDistanceMult" - > -Steuert die Entfernungswirkung von WindLight. Ein Wert von Null schaltet den Einfluss von WindLight auf Terrain und Objekte praktisch aus. Werte über 1 simulieren größere Entfernungen und verstärken den Atmosphäreneffekt. - </notification> - - <notification - - name="HelpMaxAltitude" - > -Max. Höhe steuert die Höhenberechnungen von WindLight bei der Berechnung der atmosphärischen Beleuchtung. Zu späteren Tageszeiten lässt sich damit zum Beispiel die „Intensität“ des Sonnenuntergangs beeinflussen. - </notification> - - <notification - - name="HelpSunlightColor" - > -Steuert Farbe und Intensität von direktem Licht in der Szene. - </notification> - - <notification - - name="HelpSunAmbient" - > -Steuert Farbe und Intensität von atmosphärischem Umgebungslicht in der Szene. - </notification> - - <notification - - name="HelpSunGlow" - > -Der Regler „Größe“ steuert die Größe der Sonne. + </notification> + <notification name="HelpBlueHorizon"> + Mit den Reglern für Rot/Grün/Blau (RGB) steuern Sie die Farbe des Himmels. Verwenden Sie den Intensitätsregler (I), um alle drei RGB-Regler gleichzeitig zu verschieben. + </notification> + <notification name="HelpHazeHorizon"> + Horizonttrübung ist einer der wichtigsten Parameter, um die Gesamtlichtsituation in der Szene zu steuern. Damit lassen sich viele Belichtungseinstellungen simulieren, z.B. ein Ãœberstrahlen durch die Sonne oder starker Dunst. + </notification> + <notification name="HelpBlueDensity"> + Farbintensität steuert die Gesamtfarbsättigung von Himmel und Nebel. Je weiter Sie den Intensitätsregler (I) nach rechts verschieben, desto heller und lebendiger werden die Farben. Wenn Sie ihn ganz nach links verschieben, verlieren die Farben an Intensität und gehen in Schwarz oder Weiß über. Volle Kontrolle über die Farbsättigung des Himmels bieten ihnen die Regler für Rot/Grün/Blau (RGB). + </notification> + <notification name="HelpHazeDensity"> + Trübungsintensität steuert die Stärke des grauen Dunsts in der Atmosphäre. Damit lassen sich zum Beispiel starker Rauch oder Luftverschmutzung simulieren. Auch für Nebel und Sprühregen geeignet. + </notification> + <notification name="HelpDensityMult"> + Der Dichtemultiplikator beeinflusst die Gesamtdichte der Atmosphäre. Niedrige Einstellungen erzeugen den Eindruck dünner, sauberer Luft, hohe Einstellungen erzeugen den Eindruck schweren Smogs. + </notification> + <notification name="HelpDistanceMult"> + Steuert die Entfernungswirkung von WindLight. Ein Wert von Null schaltet den Einfluss von WindLight auf Terrain und Objekte praktisch aus. Werte über 1 simulieren größere Entfernungen und verstärken den Atmosphäreneffekt. + </notification> + <notification name="HelpMaxAltitude"> + Max. Höhe steuert die Höhenberechnungen von WindLight bei der Berechnung der atmosphärischen Beleuchtung. Zu späteren Tageszeiten lässt sich damit zum Beispiel die „Intensität“ des Sonnenuntergangs beeinflussen. + </notification> + <notification name="HelpSunlightColor"> + Steuert Farbe und Intensität von direktem Licht in der Szene. + </notification> + <notification name="HelpSunAmbient"> + Steuert Farbe und Intensität von atmosphärischem Umgebungslicht in der Szene. + </notification> + <notification name="HelpSunGlow"> + Der Regler „Größe“ steuert die Größe der Sonne. Der Regler „Fokus“ steuert, wie unscharf die Sonne am Himmel erscheint. - </notification> - - <notification - - name="HelpSceneGamma" - > -Regelt den Hell/Dunkel-Wert des Bildschirms. - </notification> - - <notification - - name="HelpStarBrightness" - > -Regelt die Helligkeit der Sterne am Himmel. - </notification> - - <notification - - name="HelpTimeOfDay" - > -Steuert die Sonnenstellung am Himmel. + </notification> + <notification name="HelpSceneGamma"> + Regelt den Hell/Dunkel-Wert des Bildschirms. + </notification> + <notification name="HelpStarBrightness"> + Regelt die Helligkeit der Sterne am Himmel. + </notification> + <notification name="HelpTimeOfDay"> + Steuert die Sonnenstellung am Himmel. Entspricht der Elevation. - </notification> - - <notification - - name="HelpEastAngle" - > -Steuert die Sonnenstellung am Himmel. + </notification> + <notification name="HelpEastAngle"> + Steuert die Sonnenstellung am Himmel. Entspricht dem Azimut. - </notification> - - <notification - - name="HelpCloudColor" - > -Steuert die Wolkenfarbe. Generell empfiehlt sich hier ein Weißton, aber hey, warum nicht ein bisschen Spaß haben? - </notification> - - <notification - - name="HelpCloudDetail" - > -Steuert das Detailbild, welches über das Wolken-Hauptbild gelegt wird. X und Y bestimmen seine Position. D (Dichte) regelt, wie ausgebeult oder zerrissen die Wolken wirken. - </notification> - - <notification - - name="HelpCloudDensity" - > -Mit den X- und Y-Reglern steuern Sie die Position der Wolken, mit dem Regler D die Wolkendichte. - </notification> - - <notification - - name="HelpCloudCoverage" - > -Steuert, wie stark die Wolken den Himmel bedecken. - </notification> - - <notification - - name="HelpCloudScale" - > -Steuert die Skalierung des Wolkenbilds auf der Himmelskuppel. - </notification> - - <notification - - name="HelpCloudScrollX" - > -Steuert die Bewegungsgeschwindigkeit der Wolken in X-Richtung. - </notification> - - <notification - - name="HelpCloudScrollY" - > -Steuert die Bewegungsgeschwindigkeit der Wolken in Y-Richtung. - </notification> - - <notification - - name="HelpClassicClouds" - > -Aktivieren Sie dieses Kontrollkästchen, um die Darstellung der klassischen Second Life Wolken zusätzlich zu den WindLight-Wolken zu erzwingen. - </notification> - - <notification - - name="HelpWaterFogColor" - > -Steuert die Farbe der Wassertrübung - </notification> - - <notification - - name="HelpWaterFogDensity" - > -Steuert die Dichte der Wassertrübung und wie weit Sie unter Wasser sehen können. - </notification> - - <notification - - name="HelpUnderWaterFogMod" - > -Beeinflusst die Auswirkung des Wassertrübungs-Exponenten und regelt die Sichtweite Ihres Avatars unter Wasser. - </notification> - - <notification - - name="HelpWaterGlow" - > -Steuert, wie groß der Anteil der leuchtenden Wasseroberfläche ist. - </notification> - - <notification - - name="HelpWaterNormalScale" - > -Steuert die Skalierung der drei Elementarwellen, die das Wasser ausmachen. - </notification> - - <notification - - name="HelpWaterFresnelScale" - > -Steuert die winkelabhängige Lichtreflexion. - </notification> - - <notification - - name="HelpWaterFresnelOffset" - > -Steuert die Intensität des reflektierten Lichts. - </notification> - - <notification - - name="HelpWaterScaleAbove" - > -Steuert die Stärke der Lichtbrechung von oberhalb der Wasseroberfläche aus gesehen. - </notification> - - <notification - - name="HelpWaterScaleBelow" - > -Steuert die Stärke der Lichtbrechung von unterhalb der Wasseroberfläche aus gesehen. - </notification> - - <notification - - name="HelpWaterBlurMultiplier" - > -Steuert die Mischung von Wellen und Reflexionen. - </notification> - - <notification - - name="HelpWaterNormalMap" - > -Ermöglicht die Auswahl einer Normal-Map zur Berechnung von Reflexionen/Brechungen auf dem Wasser. - </notification> - - <notification - - name="HelpWaterWave1" - > -Steuert die Bewegungsgeschwindigkeit und -richtung der großen Normal-Map-Version in X- und Y-Richtung. - </notification> - - <notification - - name="HelpWaterWave2" - > -Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen Normal-Map-Version in X- und Y-Richtung. - </notification> - - <notification - - name="NewSkyPreset" - > -Wählen Sie einen Namen für den neuen Himmel. - <form name="form"> - <input name="message" type="text"> -Neue Voreinstellung - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="ExistsSkyPresetAlert" - > -Voreinstellung bereits vorhanden! - </notification> - - <notification - - name="NewWaterPreset" - > -Wählen Sie einen Namen für die neue Wasservoreinstellung. - <form name="form"> - <input name="message" type="text"> -Neue Voreinstellung - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="ExistsWaterPresetAlert" - > -Voreinstellung bereits vorhanden! - </notification> - - <notification - - name="WaterNoEditDefault" - > -Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. - </notification> - - <notification - - name="ChatterBoxSessionStartError" - > -Neue Chat-Sitzung mit [RECIPIENT] konnte nicht gestartet werden. + </notification> + <notification name="HelpCloudColor"> + Steuert die Wolkenfarbe. Generell empfiehlt sich hier ein Weißton, aber hey, warum nicht ein bisschen Spaß haben? + </notification> + <notification name="HelpCloudDetail"> + Steuert das Detailbild, welches über das Wolken-Hauptbild gelegt wird. X und Y bestimmen seine Position. D (Dichte) regelt, wie ausgebeult oder zerrissen die Wolken wirken. + </notification> + <notification name="HelpCloudDensity"> + Mit den X- und Y-Reglern steuern Sie die Position der Wolken, mit dem Regler D die Wolkendichte. + </notification> + <notification name="HelpCloudCoverage"> + Steuert, wie stark die Wolken den Himmel bedecken. + </notification> + <notification name="HelpCloudScale"> + Steuert die Skalierung des Wolkenbilds auf der Himmelskuppel. + </notification> + <notification name="HelpCloudScrollX"> + Steuert die Bewegungsgeschwindigkeit der Wolken in X-Richtung. + </notification> + <notification name="HelpCloudScrollY"> + Steuert die Bewegungsgeschwindigkeit der Wolken in Y-Richtung. + </notification> + <notification name="HelpClassicClouds"> + Aktivieren Sie dieses Kontrollkästchen, um die Darstellung der klassischen Second Life Wolken zusätzlich zu den WindLight-Wolken zu erzwingen. + </notification> + <notification name="HelpWaterFogColor"> + Steuert die Farbe der Wassertrübung + </notification> + <notification name="HelpWaterFogDensity"> + Steuert die Dichte der Wassertrübung und wie weit Sie unter Wasser sehen können. + </notification> + <notification name="HelpUnderWaterFogMod"> + Beeinflusst die Auswirkung des Wassertrübungs-Exponenten und regelt die Sichtweite Ihres Avatars unter Wasser. + </notification> + <notification name="HelpWaterGlow"> + Steuert, wie groß der Anteil der leuchtenden Wasseroberfläche ist. + </notification> + <notification name="HelpWaterNormalScale"> + Steuert die Skalierung der drei Elementarwellen, die das Wasser ausmachen. + </notification> + <notification name="HelpWaterFresnelScale"> + Steuert die winkelabhängige Lichtreflexion. + </notification> + <notification name="HelpWaterFresnelOffset"> + Steuert die Intensität des reflektierten Lichts. + </notification> + <notification name="HelpWaterScaleAbove"> + Steuert die Stärke der Lichtbrechung von oberhalb der Wasseroberfläche aus gesehen. + </notification> + <notification name="HelpWaterScaleBelow"> + Steuert die Stärke der Lichtbrechung von unterhalb der Wasseroberfläche aus gesehen. + </notification> + <notification name="HelpWaterBlurMultiplier"> + Steuert die Mischung von Wellen und Reflexionen. + </notification> + <notification name="HelpWaterNormalMap"> + Ermöglicht die Auswahl einer Normal-Map zur Berechnung von Reflexionen/Brechungen auf dem Wasser. + </notification> + <notification name="HelpWaterWave1"> + Steuert die Bewegungsgeschwindigkeit und -richtung der großen Normal-Map-Version in X- und Y-Richtung. + </notification> + <notification name="HelpWaterWave2"> + Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen Normal-Map-Version in X- und Y-Richtung. + </notification> + <notification name="NewSkyPreset"> + Wählen Sie einen Namen für den neuen Himmel. + <form name="form"> + <input name="message" type="text"> + Neue Voreinstellung + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + Voreinstellung bereits vorhanden! + </notification> + <notification name="NewWaterPreset"> + Wählen Sie einen Namen für die neue Wasservoreinstellung. + <form name="form"> + <input name="message" type="text"> + Neue Voreinstellung + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + Voreinstellung bereits vorhanden! + </notification> + <notification name="WaterNoEditDefault"> + Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. + </notification> + <notification name="ChatterBoxSessionStartError"> + Neue Chat-Sitzung mit [RECIPIENT] konnte nicht gestartet werden. [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ForceCloseChatterBoxSession" - > -Ihre Chat-Sitzung mit [NAME] muss beendet werden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + Ihre Chat-Sitzung mit [NAME] muss beendet werden. [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="Cannot_Purchase_an_Attachment" - > -Objekte können nicht gekauft werden, solange sie Teil eines Anhangs sind. - </notification> - - <notification - - label="Info zur Abfrage der Abbucherlaubnis" - name="DebitPermissionDetails" - > -Wenn Sie dieser Anfrage zustimmen, erhält das Skript die Erlaubnis, regelmäßig Linden-Dollar (L$) von Ihrem Konto abzubuchen. Diese Erlaubnis kann nur zurückgezogen werden, wenn der Eigentümer das Objekt löscht oder die Skripts in dem Objekt zurücksetzt. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AutoWearNewClothing" - > -Möchten Sie das neu erstellte Kleidungsstück automatisch anziehen? - <usetemplate - ignoretext="Neue Kleidung automatisch tragen" - name="okcancelignore" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="NotAgeVerified" - > -Um Zugang zu dieser Parzelle zu erhalten, müssen Sie sich einer Altersprüfung unterziehen. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + Objekte können nicht gekauft werden, solange sie Teil eines Anhangs sind. + </notification> + <notification label="Info zur Abfrage der Abbucherlaubnis" name="DebitPermissionDetails"> + Wenn Sie dieser Anfrage zustimmen, erhält das Skript die Erlaubnis, regelmäßig Linden-Dollar (L$) von Ihrem Konto abzubuchen. Diese Erlaubnis kann nur zurückgezogen werden, wenn der Eigentümer das Objekt löscht oder die Skripts in dem Objekt zurücksetzt. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + Möchten Sie das neu erstellte Kleidungsstück automatisch anziehen? + <usetemplate ignoretext="Neue Kleidung automatisch tragen" name="okcancelignore" notext="Nein" yestext="Ja"/> + </notification> + <notification name="NotAgeVerified"> + Um Zugang zu dieser Parzelle zu erhalten, müssen Sie sich einer Altersprüfung unterziehen. Möchten Sie auf der Second Life Website eine Altersüberprüfung durchführen? [_URL] - <url option="0" name="url"> - + <url name="url" option="0"> https://secondlife.com/account/verification.php?lang=de - </url> - <usetemplate - ignoretext="Auf fehlende Altersprüfung aufmerksam machen" - name="okcancelignore" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="Cannot enter parcel: no payment info on file" - > -Um Zugang zu dieser Parzelle zu erhalten, müssen Sie Zahlungsinformationen hinterlegt haben. + </url> + <usetemplate ignoretext="Auf fehlende Altersprüfung aufmerksam machen" name="okcancelignore" notext="Nein" yestext="Ja"/> + </notification> + <notification name="Cannot enter parcel: no payment info on file"> + Um Zugang zu dieser Parzelle zu erhalten, müssen Sie Zahlungsinformationen hinterlegt haben. Möchten Sie die Second Life Website öffnen, um diese Angaben zu hinterlegen? [_URL] - <url option="0" name="url"> - + <url name="url" option="0"> https://secondlife.com/account/index.php?lang=de - </url> - <usetemplate - ignoretext="Auf fehlende Zahlungsinformationen aufmerksam machen" - name="okcancelignore" - notext="Nein" - yestext="Ja"/> - </notification> - - <notification - - name="MissingString" - > -Der String „[STRING_NAME]“ fehlt in strings.xml - </notification> - - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> - - <notification - - name="Cancelled" - > -Abgebrochen - </notification> - - <notification - - name="CancelledSit" - > -Sitzen beendet - </notification> - - <notification - - name="CancelledAttach" - > -Anhängen abgebrochen - </notification> - - <notification - - name="ReplacedMissingWearable" - > -Fehlende(s) Kleidung/Körperteil mit Standard ersetzt. - </notification> - - <notification - - name="GroupNotice" - > -Betreff: [SUBJECT], Nachricht: [MESSAGE] - </notification> - - <notification - - name="FriendOnline" - > -[FIRST] [LAST] ist online - </notification> - - <notification - - name="FriendOffline" - > -[FIRST] [LAST] ist offline - </notification> - - <notification - - name="AddSelfFriend" - > -Sie können sich nicht selbst als Freund hinzufügen. - </notification> - - <notification - - name="UploadingAuctionSnapshot" - > -In-Welt- und Website-Fotos werden hochgeladen... + </url> + <usetemplate ignoretext="Auf fehlende Zahlungsinformationen aufmerksam machen" name="okcancelignore" notext="Nein" yestext="Ja"/> + </notification> + <notification name="MissingString"> + Der String „[STRING_NAME]“ fehlt in strings.xml + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + Abgebrochen + </notification> + <notification name="CancelledSit"> + Sitzen beendet + </notification> + <notification name="CancelledAttach"> + Anhängen abgebrochen + </notification> + <notification name="ReplacedMissingWearable"> + Fehlende(s) Kleidung/Körperteil mit Standard ersetzt. + </notification> + <notification name="GroupNotice"> + Betreff: [SUBJECT], Nachricht: [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] ist online + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] ist offline + </notification> + <notification name="AddSelfFriend"> + Sie können sich nicht selbst als Freund hinzufügen. + </notification> + <notification name="UploadingAuctionSnapshot"> + In-Welt- und Website-Fotos werden hochgeladen... (Dauert ca. 5 Minuten.) - </notification> - - <notification - - name="UploadPayment" - > -Sie haben für das Hochladen [AMOUNT] L$ bezahlt. - </notification> - - <notification - - name="UploadWebSnapshotDone" - > -Das Website-Foto wurde hochgeladen. - </notification> - - <notification - - name="UploadSnapshotDone" - > -In-Welt-Foto hochgeladen - </notification> - - <notification - - name="TerrainDownloaded" - > -Terrain.raw heruntergeladen - </notification> - - <notification - - name="GestureMissing" - > -Geste [NAME] fehlt in Datenbank. - </notification> - - <notification - - name="UnableToLoadGesture" - > -Geste [NAME] konnte nicht geladen werden. + </notification> + <notification name="UploadPayment"> + Sie haben für das Hochladen [AMOUNT] L$ bezahlt. + </notification> + <notification name="UploadWebSnapshotDone"> + Das Website-Foto wurde hochgeladen. + </notification> + <notification name="UploadSnapshotDone"> + In-Welt-Foto hochgeladen + </notification> + <notification name="TerrainDownloaded"> + Terrain.raw heruntergeladen + </notification> + <notification name="GestureMissing"> + Geste [NAME] fehlt in Datenbank. + </notification> + <notification name="UnableToLoadGesture"> + Geste [NAME] konnte nicht geladen werden. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="LandmarkMissing" - > -Landmarke fehlt in Datenbank. - </notification> - - <notification - - name="UnableToLoadLandmark" - > -Landmarke konnte nicht geladen werden. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="CapsKeyOn" - > -Die Feststelltaste ist aktiv. + </notification> + <notification name="LandmarkMissing"> + Landmarke fehlt in Datenbank. + </notification> + <notification name="UnableToLoadLandmark"> + Landmarke konnte nicht geladen werden. Bitte versuchen Sie es erneut. + </notification> + <notification name="CapsKeyOn"> + Die Feststelltaste ist aktiv. Da dies Auswirkung auf die Kennworteingabe hat, sollten Sie die Taste besser ausschalten. - </notification> - - <notification - - name="NotecardMissing" - > -Notizkarte fehlt in Datenbank. - </notification> - - <notification - - name="NotecardNoPermissions" - > -Unzureichende Rechte zur Anzeige der Notizkarte. - </notification> - - <notification - - name="RezItemNoPermissions" - > -Keine Berechtigung zum Rezzen von Objekten. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Notizkarte konnte nicht geladen werden. + </notification> + <notification name="NotecardMissing"> + Notizkarte fehlt in Datenbank. + </notification> + <notification name="NotecardNoPermissions"> + Unzureichende Rechte zur Anzeige der Notizkarte. + </notification> + <notification name="RezItemNoPermissions"> + Keine Berechtigung zum Rezzen von Objekten. + </notification> + <notification name="UnableToLoadNotecard"> + Notizkarten-Asset konnte nicht geladen werden. + </notification> + <notification name="ScriptMissing"> + Skript fehlt in Datenbank. + </notification> + <notification name="ScriptNoPermissions"> + Unzureichende Rechte zur Anzeige des Skripts. + </notification> + <notification name="UnableToLoadScript"> + Skript konnte nicht geladen werden. Bitte versuchen Sie es erneut. + </notification> + <notification name="IncompleteInventory"> + Die von Ihnen angebotenen Inhalte sind noch nicht vollständig lokal verfügbar. Warten Sie kurz und wiederholen Sie dann das Angebot. + </notification> + <notification name="CannotModifyProtectedCategories"> + Geschützte Kategorien können nicht geändert werden. + </notification> + <notification name="CannotRemoveProtectedCategories"> + Geschützte Kategorien können nicht entfernt werden. + </notification> + <notification name="OfferedCard"> + Sie haben [FIRST] [LAST] eine Visitenkarte angeboten. + </notification> + <notification name="UnableToBuyWhileDownloading"> + Kauf nicht möglich. Objektdaten werden noch geladen. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="ScriptMissing" - > -Skript fehlt in Datenbank. - </notification> - - <notification - - name="ScriptNoPermissions" - > -Unzureichende Rechte zur Anzeige des Skripts. - </notification> - - <notification - - name="UnableToLoadScript" - > -Skript konnte nicht geladen werden. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="IncompleteInventory" - > -Die von Ihnen angebotenen Inhalte sind noch nicht vollständig lokal verfügbar. Warten Sie kurz und wiederholen Sie dann das Angebot. - </notification> - - <notification - - name="CannotModifyProtectedCategories" - > -Geschützte Kategorien können nicht geändert werden. - </notification> - - <notification - - name="CannotRemoveProtectedCategories" - > -Geschützte Kategorien können nicht entfernt werden. - </notification> - - <notification - - name="OfferedCard" - > -Sie haben [FIRST] [LAST] eine Visitenkarte angeboten. - </notification> - - <notification - - name="OfferedFriendship" - > -Sie haben [FIRST] [LAST] die Freundschaft angeboten. - </notification> - - <notification - - name="UnableToBuyWhileDownloading" - > -Kauf nicht möglich. Objektdaten werden noch geladen. + </notification> + <notification name="UnableToLinkWhileDownloading"> + Verknüpfung nicht möglich. Objektdaten werden noch geladen. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="UnableToLinkWhileDownloading" - > -Verknüpfung nicht möglich. Objektdaten werden noch geladen. -Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -Objekte können nicht von mehreren Eigentümern gleichzeitig gekauft werden. + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + Objekte können nicht von mehreren Eigentümern gleichzeitig gekauft werden. Wählen Sie ein einzelnes Objekt aus. - </notification> - - <notification - - name="ObjectNotForSale" - > -Objekt ist nicht zu verkaufen. - </notification> - - <notification - - name="EnteringGodMode" - > -Gott-Modus aktiviert, Level [LEVEL] - </notification> - - <notification - - name="LeavingGodMode" - > -Gott-Modus deaktiviert, Level [LEVEL] - </notification> - - <notification - - name="CopyFailed" - > -Kopieren aufgrund fehlender Kopierrechte fehlgeschlagen - </notification> - - <notification - - name="InventoryAccepted" - > -[NAME] hat Ihr Inventarangebot akzeptiert. - </notification> - - <notification - - name="InventoryDeclined" - > -[NAME] hat Ihr Inventarangebot abgelehnt. - </notification> - - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> - - <notification - - name="CallingCardAccepted" - > -Ihre Visitenkarte wurde akzeptiert. - </notification> - - <notification - - name="CallingCardDeclined" - > -Ihre Visitenkarte wurde abgelehnt. - </notification> - - <notification - - name="TeleportToLandmark" - > -Jetzt, nachdem Sie das Mainland erreicht haben, können Sie sich an Positionen wie „[NAME]“ teleportieren, indem Sie unten rechts im Fenster auf „Inventar“ klicken und den Ordner „Landmarken“ auswählen. + </notification> + <notification name="ObjectNotForSale"> + Objekt ist nicht zu verkaufen. + </notification> + <notification name="EnteringGodMode"> + Gott-Modus aktiviert, Level [LEVEL] + </notification> + <notification name="LeavingGodMode"> + Gott-Modus deaktiviert, Level [LEVEL] + </notification> + <notification name="CopyFailed"> + Kopieren aufgrund fehlender Kopierrechte fehlgeschlagen + </notification> + <notification name="InventoryAccepted"> + [NAME] hat Ihr Inventarangebot akzeptiert. + </notification> + <notification name="InventoryDeclined"> + [NAME] hat Ihr Inventarangebot abgelehnt. + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + Ihre Visitenkarte wurde akzeptiert. + </notification> + <notification name="CallingCardDeclined"> + Ihre Visitenkarte wurde abgelehnt. + </notification> + <notification name="TeleportToLandmark"> + Jetzt, nachdem Sie das Mainland erreicht haben, können Sie sich an Positionen wie „[NAME]“ teleportieren, indem Sie unten rechts im Fenster auf „Inventar“ klicken und den Ordner „Landmarken“ auswählen. Klicken Sie eine Landmarke doppelt an und wählen Sie „Teleportieren“, um an diesen Ort zu gelangen. - </notification> - - <notification - - name="TeleportToPerson" - > -Jetzt, nachdem Sie das Mainland erreicht haben, können Sie mit Einwohnern wie „[NAME]“ Kontakt aufnehmen, indem Sie unten rechts im Fenster auf „Inventar“ klicken und den Ordner „Visitenkarten“ auswählen. + </notification> + <notification name="TeleportToPerson"> + Jetzt, nachdem Sie das Mainland erreicht haben, können Sie mit Einwohnern wie „[NAME]“ Kontakt aufnehmen, indem Sie unten rechts im Fenster auf „Inventar“ klicken und den Ordner „Visitenkarten“ auswählen. Klicken Sie die Karte doppelt an, wählen Sie „Instant Message“ und geben Sie eine Nachricht ein. - </notification> - - <notification - - name="CantSelectLandFromMultipleRegions" - > -Land kann nicht über Servergrenzen hinweg ausgewählt werden. + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + Land kann nicht über Servergrenzen hinweg ausgewählt werden. Wählen Sie eine kleinere Landfläche. - </notification> - - <notification - - name="GroupVote" - > -[NAME] hat eine Abstimmung vorgeschlagen über: -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="Abstimmen"/> - <button - - name="Later" - text="Später"/> - </form> - </notification> - - <notification - - name="SystemMessage" - > + </notification> + <notification name="SearchWordBanned"> + Einige Begriffe in Ihrer Suchanfrage wurden ausgeschlossen, aufgrund von in den Community Standards definierten Inhaltsbeschränkungen. + </notification> + <notification name="NoContentToSearch"> + Bitte wählen Sie mindestens eine Inhaltsart für die Suche aus (PG, Mature oder Adult). + </notification> + <notification name="GroupVote"> + [NAME] hat eine Abstimmung vorgeschlagen über: [MESSAGE] - </notification> - - <notification - - name="EventNotification" - > -Event-Benachrichtigung: + <form name="form"> + <button name="VoteNow" text="Abstimmen"/> + <button name="Later" text="Später"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + Event-Benachrichtigung: [NAME] [DATE] - <form name="form"> - <button - - name="Teleport" - text="Teleportieren"/> - <button - - name="Description" - text="Beschreibung"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="TransferObjectsHighlighted" - > -Alle Objekte auf dieser Parzelle, die an den Käufer der Parzelle übertragen werden, sind jetzt markiert. + <form name="form"> + <button name="Teleport" text="Teleportieren"/> + <button name="Description" text="Beschreibung"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + Alle Objekte auf dieser Parzelle, die an den Käufer der Parzelle übertragen werden, sind jetzt markiert. * Ãœbertragene Bäume und Gräser sind nicht markiert. - <form name="form"> - <button - - name="Done" - text="Fertig"/> - </form> - </notification> - - <notification - - name="DeactivatedGesturesTrigger" - > -Gesten mit demselben Trigger wurden deaktiviert: + <form name="form"> + <button name="Done" text="Fertig"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + Gesten mit demselben Trigger wurden deaktiviert: [NAMES] - </notification> - - <notification - - name="NoQuickTime" - > -Apple QuickTime ist auf Ihrem System anscheinend nicht installiert. + </notification> + <notification name="NoQuickTime"> + Apple QuickTime ist auf Ihrem System anscheinend nicht installiert. Laden Sie QuickTime von der QuickTime-Webseite (http://www.apple.com/de/quicktime) herunter, um auf Parzellen, die diese Funktion unterstützen, Streaming-Inhalte wiederzugeben. - </notification> - - <notification - - name="OwnedObjectsReturned" - > -Ihre Objekte auf der ausgewählten Parzelle wurden in Ihr Inventar transferiert. - </notification> - - <notification - - name="OtherObjectsReturned" - > -Die Objekte von [FIRST] [LAST] auf dieser Parzelle wurden in das Inventar dieser Person transferiert. - </notification> - - <notification - - name="OtherObjectsReturned2" - > -Die Objekte von [FIRST] [LAST] auf dieser + </notification> + <notification name="OwnedObjectsReturned"> + Ihre Objekte auf der ausgewählten Parzelle wurden in Ihr Inventar transferiert. + </notification> + <notification name="OtherObjectsReturned"> + Die Objekte von [FIRST] [LAST] auf dieser Parzelle wurden in das Inventar dieser Person transferiert. + </notification> + <notification name="OtherObjectsReturned2"> + Die Objekte von [FIRST] [LAST] auf dieser Parzelle von „[NAME]“ wurden an ihren Eigentümer zurückgegeben. - </notification> - - <notification - - name="GroupObjectsReturned" - > -Die mit der Gruppe [GROUPNAME] gemeinsam genutzten Objekte auf dieser Parzelle wurden in das Inventar ihrer Eigentümer transferiert. + </notification> + <notification name="GroupObjectsReturned"> + Die mit der Gruppe [GROUPNAME] gemeinsam genutzten Objekte auf dieser Parzelle wurden in das Inventar ihrer Eigentümer transferiert. Transferierbare übertragene Objekte wurden an ihre früheren Eigentümer zurückgegeben. Nicht transferierbare an die Gruppe übertragene Objekte wurden gelöscht. - </notification> - - <notification - - name="UnOwnedObjectsReturned" - > -Alle Objekte auf der ausgewählten Parzelle, die NICHT Ihnen gehören, wurden ihren Eigentümern zurückgegeben. - </notification> - - <notification - - name="NotSafe" - > -Auf diesem Land ist Schaden aktiviert („Unsicher“). + </notification> + <notification name="UnOwnedObjectsReturned"> + Alle Objekte auf der ausgewählten Parzelle, die NICHT Ihnen gehören, wurden ihren Eigentümern zurückgegeben. + </notification> + <notification name="NotSafe"> + Auf diesem Land ist Schaden aktiviert („Unsicher“). Verletzungen sind möglich. Wenn Sie sterben, werden Sie zu Ihrem Heimatstandort teleportiert. - </notification> - - <notification - - name="NoFly" - > -Auf diesem Land ist Fliegen deaktiviert („Fliegen aus“). + </notification> + <notification name="NoFly"> + Auf diesem Land ist Fliegen deaktiviert („Fliegen aus“). Fliegen ist hier nicht möglich. - </notification> - - <notification - - name="PushRestricted" - > -Auf diesem Land gilt „Kein Stoßen“. + </notification> + <notification name="PushRestricted"> + Auf diesem Land gilt „Kein Stoßen“. Sie können keine anderen Personen stoßen, außer Ihnen gehört das Land. - </notification> - - <notification - - name="NoVoice" - > -Auf diesem Land ist Voice deaktiviert. - </notification> - - <notification - - name="NoBuild" - > -Auf diesem Land ist Bauen deaktiviert („Bauen aus“). + </notification> + <notification name="NoVoice"> + Auf diesem Land ist Voice deaktiviert. + </notification> + <notification name="NoBuild"> + Auf diesem Land ist Bauen deaktiviert („Bauen aus“). Sie können hier keine Objekte erstellen. - </notification> - - <notification - - name="ScriptsStopped" - > -Ein Administrator hat die Skriptausführung in dieser Region vorübergehend deaktiviert. - </notification> - - <notification - - name="ScriptsNotRunning" - > -In dieser Region werden keine Skipts ausgeführt. - </notification> - - <notification - - name="NoOutsideScripts" - > -Auf diesem Land sind externe Skripts deaktiviert + </notification> + <notification name="ScriptsStopped"> + Ein Administrator hat die Skriptausführung in dieser Region vorübergehend deaktiviert. + </notification> + <notification name="ScriptsNotRunning"> + In dieser Region werden keine Skipts ausgeführt. + </notification> + <notification name="NoOutsideScripts"> + Auf diesem Land sind externe Skripts deaktiviert („Externe Skripts aus“). Nur Skripts, die dem Landeigentümer gehören, funktionieren. - </notification> - - <notification - - name="ClaimPublicLand" - > -Öffentliches Land kann nur in der Region in Besitz genommen werden, in der Sie sich befinden. - </notification> - - <notification - - name="ObjectGiveItem" - > -Das Objekt [OBJECTFROMNAME] von [FIRST] [LAST] hat Ihnen Folgendes übergeben: [OBJECTTYPE] ([OBJECTNAME]). - <form name="form"> - <button - - name="Keep" - text="Behalten"/> - <button - - name="Discard" - text="Verwerfen"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="ObjectGiveItemUnknownUser" - > -Das Objekt [OBJECTFROMNAME] von (unbekannt) hat Ihnen Folgendes übergeben: [OBJECTTYPE] ([OBJECTNAME]). - <form name="form"> - <button - - name="Keep" - text="Behalten"/> - <button - - name="Discard" - text="Verwerfen"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="UserGiveItem" - > -[NAME] hat Ihnen ein [OBJECTTYPE] namens „[OBJECTNAME]“ gegeben. - <form name="form"> - <button - - name="Keep" - text="Behalten"/> - <button - - name="Discard" - text="Verwerfen"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="GodMessage" - > -[NAME] -[MESSAGE] - </notification> - - <notification - - name="JoinGroup" - > -[MESSAGE] - <form name="form"> - <button - - name="Join" - text="Beitreten"/> - <button - - name="Decline" - text="Ablehnen"/> - <button - - name="Info" - text="Info"/> - </form> - </notification> - - <notification - - name="TeleportOffered" - > -[NAME] hat angeboten, Sie zu ihrem/seinem Standort zu teleportieren: - + </notification> + <notification name="ClaimPublicLand"> + Öffentliches Land kann nur in der Region in Besitz genommen werden, in der Sie sich befinden. + </notification> + <notification name="RegionTPAccessBlocked"> + Sie dürfen diese Region aufgrund Ihrer Alterseinstufung nicht betreten. Sie müssen eventuell eine Altersüberprüfung vornehmen und/oder den aktuellsten Viewer installieren. + +Bitte besuchen Sie unsere Knowledgebase, um mehr Details über Zugang zu Regionen mit dieser Alterseinstufung zu erhalten. + </notification> + <notification name="URBannedFromRegion"> + Sie dürfen diese Region nicht betreten. + </notification> + <notification name="NoTeenGridAccess"> + Ihr Konto kann keine Verbindung zu dieser Teen Grid-Region herstellen. + </notification> + <notification name="NoHelpIslandTP"> + Sie können nicht zurück nach Help Island teleportieren. +Gehen Sie zu „Help Island Public“ und wiederholen sie das Tutorial. + </notification> + <notification name="ImproperPaymentStatus"> + Die für den Zutritt zu dieser Region erforderlichen Zahlungsinformationen liegen nicht vor. + </notification> + <notification name="MustGetAgeRgion"> + Sie müssen alterüberprüft sein, um diese Region betreten zu können. + </notification> + <notification name="MustGetAgeParcel"> + Sie müssen alterüberprüft sein, um diese Parzelle betreten zu können. + </notification> + <notification name="NoDestRegion"> + Keine Zielregion gefunden. + </notification> + <notification name="NotAllowedInDest"> + Der Zutritt wurde Ihnen verweigert. + </notification> + <notification name="RegionParcelBan"> + Diese Parzelle ist abgesperrt und kann nicht überquert werden. Versuchen Sie einen anderen Weg. + </notification> + <notification name="TelehubRedirect"> + Sie wurden zu einem Telehub umgeleitet. + </notification> + <notification name="CouldntTPCloser"> + Ein Teleport näher am Ziel ist leider nicht möglich. + </notification> + <notification name="TPCancelled"> + Teleport abgebrochen. + </notification> + <notification name="FullRegionTryAgain"> + Die Region, die Sie betreten möchten, ist im Moment voll. +Versuchen Sie es in einigen Minuten erneut. + </notification> + <notification name="GeneralFailure"> + Allgemeiner Fehler. + </notification> + <notification name="RoutedWrongRegion"> + In falsche Region umgeleitet. Bitte versuchen Sie es erneut. + </notification> + <notification name="NoValidAgentID"> + Keine gültige Agent ID. + </notification> + <notification name="NoValidSession"> + Keine gültige Sitzungs-ID. + </notification> + <notification name="NoValidCircuit"> + Kein gültiger Verbindungscode. + </notification> + <notification name="NoValidTimestamp"> + Kein gültiger Zeitstempel. + </notification> + <notification name="NoPendingConnection"> + Verbindung kann nicht hergestellt werden. + </notification> + <notification name="InternalUsherError"> + Interner Fehler beim Versuch, Verbindung mit Agent Usher herzustellen. + </notification> + <notification name="NoGoodTPDestination"> + In dieser Region konnte kein gültiges Teleportziel gefunden werden. + </notification> + <notification name="InternalErrorRegionResolver"> + Interner Fehler bei Teleport. + </notification> + <notification name="NoValidLanding"> + Ein gültiger Landpunkt konnte nicht gefunden werden. + </notification> + <notification name="NoValidParcel"> + Es konnte keine gültige Parzelle gefunden werden. + </notification> + <notification name="ObjectGiveItem"> + Das Objekt [OBJECTFROMNAME] von [FIRST] [LAST] hat Ihnen Folgendes übergeben: [OBJECTTYPE] ([OBJECTNAME]). + <form name="form"> + <button name="Keep" text="Behalten"/> + <button name="Discard" text="Verwerfen"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + Das Objekt [OBJECTFROMNAME] von (unbekannt) hat Ihnen Folgendes übergeben: [OBJECTTYPE] ([OBJECTNAME]). + <form name="form"> + <button name="Keep" text="Behalten"/> + <button name="Discard" text="Verwerfen"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME] hat Ihnen ein [OBJECTTYPE] namens „[OBJECTNAME]“ gegeben. + <form name="form"> + <button name="Keep" text="Behalten"/> + <button name="Discard" text="Verwerfen"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="Teleportieren"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="Beitreten"/> + <button name="Decline" text="Ablehnen"/> + <button name="Info" text="Info"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME] hat angeboten, Sie zu ihrem/seinem Standort zu teleportieren: - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="Teleportieren"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="Später"/> - <button - - name="GoNow..." - text="Jetzt gehen..."/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME] bietet Ihnen die Freundschaft an. + <form name="form"> + <button name="Later" text="Später"/> + <button name="GoNow..." text="Jetzt gehen..."/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME] bietet Ihnen die Freundschaft an. [MESSAGE] (Standardmäßig werden Sie gegenseitig ihren Online-Status sehen können.) - <form name="form"> - <button - - name="Accept" - text="Akzeptieren"/> - <button - - name="Decline" - text="Ablehnen"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME] bietet Ihnen die Freundschaft an. + <form name="form"> + <button name="Accept" text="Akzeptieren"/> + <button name="Decline" text="Ablehnen"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME] bietet Ihnen die Freundschaft an. (Sie werden dadurch den gegenseitigen Online-Status sehen können.) - <form name="form"> - <button - - name="Accept" - text="Akzeptieren"/> - <button - - name="Decline" - text="Ablehnen"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -[NAME] hat Ihr Freundschaftsangebot akzeptiert. - </notification> - - <notification - - name="FriendshipDeclined" - > -[NAME] hat Ihr Freundschaftsangebot abgelehnt. - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST] bietet Ihnen eine Visitenkarte an. + <form name="form"> + <button name="Accept" text="Akzeptieren"/> + <button name="Decline" text="Ablehnen"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + [NAME] hat Ihr Freundschaftsangebot akzeptiert. + </notification> + <notification name="FriendshipDeclined"> + [NAME] hat Ihr Freundschaftsangebot abgelehnt. + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST] bietet Ihnen eine Visitenkarte an. Dies erstellt ein Lesezeichen in Ihrem Inventar, damit Sie diesen Einwohner jederzeit über IM erreichen. - <form name="form"> - <button - - name="Accept" - text="Akzeptieren"/> - <button - - name="Decline" - text="Ablehnen"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -Region wird in [MINUTES] Minuten neu gestartet. + <form name="form"> + <button name="Accept" text="Akzeptieren"/> + <button name="Decline" text="Ablehnen"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + Region wird in [MINUTES] Minuten neu gestartet. Wenn Sie in dieser Region bleiben, werden Sie abgemeldet. - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -Region wird in [SECONDS] Sekunden neu gestartet. + </notification> + <notification name="RegionRestartSeconds"> + Region wird in [SECONDS] Sekunden neu gestartet. Wenn Sie in dieser Region bleiben, werden Sie abgemeldet. - </notification> - - <notification - - name="LoadWebPage" - > -Webseite [URL] laden? + </notification> + <notification name="LoadWebPage"> + Webseite [URL] laden? [MESSAGE] Von Objekt: [OBJECTNAME], Eigentümer: [NAME]? - <form name="form"> - <button - - name="Gotopage" - text="Gehe zu Seite"/> - <button - - name="Cancel" - text="Abbrechen"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -[TYPE] nicht in Datenbank. - </notification> - - <notification - - name="FailedToFindWearable" - > -[TYPE] namens [DESC] nicht in Datenbank. - </notification> - - <notification - - name="ScriptQuestion" - > -Das Objekt „[OBJECTNAME]“, Eigentum von „[NAME]“, möchte: + <form name="form"> + <button name="Gotopage" text="Zur Seite"/> + <button name="Cancel" text="Abbrechen"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + [TYPE] nicht in Datenbank. + </notification> + <notification name="FailedToFindWearable"> + [TYPE] namens [DESC] nicht in Datenbank. + </notification> + <notification name="InvalidWearable"> + Dieser Artikel verwendet eine Funktion, die Ihr Viewer nicht unterstützt. Bitte aktualisieren Sie Ihre Version von Second Life, um diesen Artikel anziehen zu können. + </notification> + <notification name="ScriptQuestion"> + Das Objekt „[OBJECTNAME]“, Eigentum von „[NAME]“, möchte: [QUESTIONS] Ist das OK? - <form name="form"> - <button - - name="Yes" - text="Ja"/> - <button - - name="No" - text="Nein"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -Das Objekt „[OBJECTNAME]“, Eigentum von „[NAME]“, möchte: + <form name="form"> + <button name="Yes" text="Ja"/> + <button name="No" text="Nein"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + Das Objekt „[OBJECTNAME]“, Eigentum von „[NAME]“, möchte: [QUESTIONS] Wenn Sie diesem Objekt und seinem Ersteller nicht vertrauen, sollten Sie diese Anfrage ablehnen. Klicken Sie für weitere Informationen auf „Info...“. Anfrage gestatten? - <form name="form"> - <button - - name="Grant" - text="Gewähren"/> - <button - - name="Deny" - text="Verweigern"/> - <button - - name="Details" - text="Info..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -[FIRST] [LAST]s „[TITLE]“ + <form name="form"> + <button name="Grant" text="Gewähren"/> + <button name="Deny" text="Verweigern"/> + <button name="Details" text="Info..."/> + </form> + </notification> + <notification name="ScriptDialog"> + [FIRST] [LAST]s „[TITLE]“ [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorieren"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -[GROUPNAME]s „[TITLE]“ + <form name="form"> + <button name="Ignore" text="Ignorieren"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + [GROUPNAME]s „[TITLE]“ [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorieren"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -Sie haben gerade [AMOUNT] L$ erhalten. + <form name="form"> + <button name="Ignore" text="Ignorieren"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + Sie haben gerade [AMOUNT] L$ erhalten. Objekte und andere Benutzer können Ihnen L$ geben. Ihren Kontostand sehen Sie in der oberen rechten Ecke des Bildschirms. - </notification> - - <notification - - name="FirstBalanceDecrease" - > -Sie haben gerade [AMOUNT] L$ bezahlt. + </notification> + <notification name="FirstBalanceDecrease"> + Sie haben gerade [AMOUNT] L$ bezahlt. Ihren Kontostand sehen Sie in der oberen rechten Ecke des Bildschirms. - </notification> - - <notification - - name="FirstSit" - > -Sie sitzen. + </notification> + <notification name="FirstSit"> + Sie sitzen. Benutzen Sie die Pfeil- oder WASD-Tasten, um die Ansicht zu ändern. Klicken Sie auf „Aufstehen“, um aufzustehen. - </notification> - - <notification - - name="FirstMap" - > -Zum Verschieben der Karte klicken und ziehen. + </notification> + <notification name="FirstMap"> + Zum Verschieben der Karte klicken und ziehen. Zum Teleportieren doppelklicken. Nutzen Sie die Optionen links, um Dinge zu finden und um verschiedene Hintergründe anzuzeigen. - </notification> - - <notification - - name="FirstBuild" - > -In einigen Bereichen von [SECOND_LIFE] können Sie neue Objekte erstellen. + </notification> + <notification name="FirstBuild"> + In einigen Bereichen von [SECOND_LIFE] können Sie neue Objekte erstellen. Verwenden Sie zum Bauen die Werkzeuge oben links. Mit den Strg- und Alt-Tasten können Sie schnell zwischen den Werkzeugen umschalten. Drücken Sie Esc, um das Bauen abzubrechen. - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -Die linke Maustaste ermöglicht Objektinteraktionen. + </notification> + <notification name="FirstLeftClickNoHit"> + Die linke Maustaste ermöglicht Objektinteraktionen. Der Mauszeiger zeigt eine Hand, wenn Sie mit dem Objekt interagieren können. Die rechte Maustaste zeigt immer ein Aktionsmenü an. - </notification> - - <notification - - name="FirstTeleport" - > -Diese Region unterstützt keine direkten Teleports. Sie wurden zum nächstgelegenen Telehub transportiert. + </notification> + <notification name="FirstTeleport"> + Diese Region unterstützt keine direkten Teleports. Sie wurden zum nächstgelegenen Telehub transportiert. Ihr Ziel ist mit einem großen roten Strahl markiert. Folgen Sie dem roten Pfeil zum Strahl oder klicken Sie auf den Pfeil, um den Strahl zu entfernen. - </notification> - - <notification - - name="FirstOverrideKeys" - > -Ihre Bewegungstasten werden jetzt von einem Objekt gesteuert. + </notification> + <notification name="FirstOverrideKeys"> + Ihre Bewegungstasten werden jetzt von einem Objekt gesteuert. Probieren Sie die Pfeil- oder WASD-Tasten aus. Manche Objekte (wie Waffen) müssen per Mouselook gesteuert werden. Drücken Sie dazu „M“. - </notification> - - <notification - - name="FirstAppearance" - > -Sie bearbeiten gerade Ihr Aussehen. + </notification> + <notification name="FirstAppearance"> + Sie bearbeiten gerade Ihr Aussehen. Benutzen Sie die Pfeiltasten zum Drehen und Zoomen. Klicken Sie auf „Alles speichern“, wenn Sie fertig sind, um Ihr Aussehen zu speichern. Sie können Ihr Aussehen jederzeit verändern. - </notification> - - <notification - - name="FirstInventory" - > -Ihr Inventar. Es enthält Objekte, Notizkarten, Kleidung und andere Dinge in Ihrem Besitz. + </notification> + <notification name="FirstInventory"> + Ihr Inventar. Es enthält Objekte, Notizkarten, Kleidung und andere Dinge in Ihrem Besitz. * Zum Anziehen eines Objekts oder Outfit-Ordners ziehen Sie es/ihn auf sich. * Um ein Objekt in der Welt abzulegen, ziehen Sie es auf den Boden. * Zum Lesen einer Notizkarte klicken Sie sie doppelt an. - </notification> - - <notification - - name="FirstSandbox" - > -Dies ist eine Sandkastenregion. + </notification> + <notification name="FirstSandbox"> + Dies ist eine Sandkastenregion. Objekte, die Sie hier bauen, können gelöscht werden, wenn Sie das Gebiet verlassen. Sandkästen werden regelmäßig gereinigt. Weitere Informationen hierzu finden Sie oben im Bild neben dem Regionsnamen. Sandkastenregionen kommen selten vor und sind entsprechend gekennzeichnet. - </notification> - - <notification - - name="FirstFlexible" - > -Dieses Objekt ist flexibel. + </notification> + <notification name="FirstFlexible"> + Dieses Objekt ist flexibel. Ein flexibles Objekt ist ein Phantom und nicht physisch, bis die Option „Flexibel“ deaktiviert wurde. - </notification> - - <notification - - name="FirstDebugMenus" - > -Sie haben das Advanced-Menü aktiviert. + </notification> + <notification name="FirstDebugMenus"> + Sie haben das Advanced-Menü aktiviert. Dieses Menü enthält nützliche Funktionen zum Debuggen von Second Life. Drücken Sie in Windows Strg-Alt-D (Mac: Befehl-Opt-Umschalt-D) zum Ein- und Ausschalten dieses Menüs. - </notification> - - <notification - - name="FirstSculptedPrim" - > -Sie bearbeiten ein geformtes Primitiv. + </notification> + <notification name="FirstSculptedPrim"> + Sie bearbeiten ein geformtes Primitiv. Geformte Primitive benötigen eine spezielle Textur, die ihre Form definiert. Beispiele für Formtexturen finden Sie in der Inventarbibliothek. - </notification> - - <notification - - name="FirstMedia" - > -Sie haben die Medienwiedergabe gestartet. Unter „Audio und Video“ im Fenster „Einstellungen“ können Sie festlegen, dass Medien automatisch wiedergegeben werden. Beachten Sie, dass dies bei nicht vertrauenswürdigen Medienseiten ein Sicherheitsrisiko darstellen kann. - </notification> - - <notification - - name="MaxListSelectMessage" - > -Sie können maximal [MAX_SELECT] Objekte + </notification> + <notification name="FirstMedia"> + Sie haben die Medienwiedergabe gestartet. Unter „Audio und Video“ im Fenster „Einstellungen“ können Sie festlegen, dass Medien automatisch wiedergegeben werden. Beachten Sie, dass dies bei nicht vertrauenswürdigen Medienseiten ein Sicherheitsrisiko darstellen kann. + </notification> + <notification name="MaxListSelectMessage"> + Sie können maximal [MAX_SELECT] Objekte von der Liste auswählen. - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME] lädt Sie zu einem Voice-Chat ein. + </notification> + <notification name="VoiceInviteP2P"> + [NAME] lädt Sie zu einem Voice-Chat ein. Klicken Sie auf „Akzeptieren“, um dem Gespräch beizutreten, oder auf „Ablehnen“, um die Einladung auszuschlagen. Klicken Sie auf „Stummschalten“, um diesen Anrufer stumm zu schalten. - <form name="form"> - <button - - name="Accept" - text="Akzeptieren"/> - <button - - name="Decline" - text="Ablehnen"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -[FIRST] [LAST] hat eine Instant Message erhalten; die Stummschaltung wurde aufgehoben. - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -[FIRST] [LAST] hat Geld erhalten; die Stummschaltung wurde aufgehoben. - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -[FIRST] [LAST] wurde ein Inventarobjekt angeboten; die Stummschaltung wurde aufgehoben. - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME] ist einem Voice-Chat mit der Gruppe [GROUP] beigetreten. + <form name="form"> + <button name="Accept" text="Akzeptieren"/> + <button name="Decline" text="Ablehnen"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + [FIRST] [LAST] hat eine Instant Message erhalten; die Stummschaltung wurde aufgehoben. + </notification> + <notification name="AutoUnmuteByMoney"> + [FIRST] [LAST] hat Geld erhalten; die Stummschaltung wurde aufgehoben. + </notification> + <notification name="AutoUnmuteByInventory"> + [FIRST] [LAST] wurde ein Inventarobjekt angeboten; die Stummschaltung wurde aufgehoben. + </notification> + <notification name="VoiceInviteGroup"> + [NAME] ist einem Voice-Chat mit der Gruppe [GROUP] beigetreten. Klicken Sie auf „Akzeptieren“, um dem Gespräch beizutreten, oder auf „Ablehnen“, um die Einladung auszuschlagen. Klicken Sie auf „Stummschalten“, um diesen Anrufer stumm zu schalten. - <form name="form"> - <button - - name="Accept" - text="Akzeptieren"/> - <button - - name="Decline" - text="Ablehnen"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME] ist einem Voice-Konferenz-Chat beigetreten. + <form name="form"> + <button name="Accept" text="Akzeptieren"/> + <button name="Decline" text="Ablehnen"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME] ist einem Voice-Konferenz-Chat beigetreten. Klicken Sie auf „Akzeptieren“, um dem Gespräch beizutreten, oder auf „Ablehnen“, um die Einladung auszuschlagen. Klicken Sie auf „Stummschalten“, um diesen Benutzer stumm zu schalten. - <form name="form"> - <button - - name="Accept" - text="Akzeptieren"/> - <button - - name="Decline" - text="Ablehnen"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME] lädt Sie zu einem Konferenz-Chat ein. + <form name="form"> + <button name="Accept" text="Akzeptieren"/> + <button name="Decline" text="Ablehnen"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME] lädt Sie zu einem Konferenz-Chat ein. Klicken Sie auf „Akzeptieren“, um dem Chat beizutreten, oder auf „Ablehnen“, um die Einladung auszuschlagen. Klicken Sie auf „Stummschalten“, um diesen Benutzer stumm zu schalten. - <form name="form"> - <button - - name="Accept" - text="Akzeptieren"/> - <button - - name="Decline" - text="Ablehnen"/> - <button - - name="Mute" - text="Stummschalten"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -Der Voice-Chat, dem Sie beitreten möchten, [VOICE_CHANNEL_NAME], hat seine maximale Teilnehmerzahl erreicht. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -Es tut uns Leid. Dieses Gebiet hat seine maximale Kapazität für Voice-Gespräche erreicht. Bitte versuchen Sie es in einem anderen Gebiet. - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -Sie haben [VOICE_CHANNEL_NAME] verlassen. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME] hat das Gespräch beendet. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME] hat Ihren Anruf abgelehnt. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME] ist zurzeit nicht erreichbar. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -Verbindung zu [VOICE_CHANNEL_NAME] nicht möglich. Bitte versuchen Sie es später. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. - </notification> - - <notification - - name="VoiceLoginRetry" - > -Wir erstellen einen Voice-Kanal für Sie. Bitte warten Sie einen Moment. - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -Zugang zur Parzelle verweigert, Sie gehören keiner berechtigten Gruppe an. - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -Zugang zur Parzelle verweigert. Sie wurden verbannt. - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -Zugang zur Parzelle verweigert. Sie stehen nicht auf der Zugangsliste. - </notification> - - <notification - - name="VoiceNotAllowed" - > -Sie sind nicht berechtigt, einem Voice-Chat in [VOICE_CHANNEL_NAME] beizutreten. - </notification> - - <notification - - name="VoiceCallGenericError" - > -Fehler beim Versuch, eine Voice-Chat-Verbindung zu [VOICE_CHANNEL_NAME] herzustellen. Bitte versuchen Sie es erneut. - </notification> - - <notification - - name="ServerVersionChanged" - > -Die Region, die Sie betreten haben, verwendet eine andere Simulatorversion. Klicken Sie auf diese Nachricht, um weitere Informationen zu erhalten. - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -Die URL, die Sie angeklickt haben, kann in diesem Web Browser nicht geöffnet werden. - </notification> - - <global name="UnsupportedCPU"> -- Ihre CPU-Geschwindigkeit entspricht nicht den Mindestanforderungen. - </global> - - <global name="UnsupportedGLRequirements"> -Ihr Computer entspricht nicht den Hardwareanforderungen von Second Life. Second Life setzt eine OpenGL-Grafikkarte mit Multitextur-Unterstützung voraus. Falls Ihre Grafikkarte diese Funktion unterstützt, installieren Sie die neuesten Treiber sowie die aktuellen Service Packs und Patches für Ihr Betriebssystem. + <form name="form"> + <button name="Accept" text="Akzeptieren"/> + <button name="Decline" text="Ablehnen"/> + <button name="Mute" text="Stummschalten"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + Der Voice-Chat, dem Sie beitreten möchten, [VOICE_CHANNEL_NAME], hat seine maximale Teilnehmerzahl erreicht. Bitte versuchen Sie es erneut. + </notification> + <notification name="ProximalVoiceChannelFull"> + Es tut uns Leid. Dieses Gebiet hat seine maximale Kapazität für Voice-Gespräche erreicht. Bitte versuchen Sie es in einem anderen Gebiet. + </notification> + <notification name="VoiceChannelDisconnected"> + Sie haben [VOICE_CHANNEL_NAME] verlassen. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME] hat das Gespräch beendet. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME] hat Ihren Anruf abgelehnt. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME] ist zurzeit nicht erreichbar. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. + </notification> + <notification name="VoiceChannelJoinFailed"> + Verbindung zu [VOICE_CHANNEL_NAME] nicht möglich. Bitte versuchen Sie es später. Sie werden nun wieder mit dem Umgebungs-Voice-Chat verbunden. + </notification> + <notification name="VoiceLoginRetry"> + Wir erstellen einen Voice-Kanal für Sie. Bitte warten Sie einen Moment. + </notification> + <notification name="Cannot enter parcel: not a group member"> + Zugang zur Parzelle verweigert, Sie gehören keiner berechtigten Gruppe an. + </notification> + <notification name="Cannot enter parcel: banned"> + Zugang zur Parzelle verweigert. Sie wurden verbannt. + </notification> + <notification name="Cannot enter parcel: not on access list"> + Zugang zur Parzelle verweigert. Sie stehen nicht auf der Zugangsliste. + </notification> + <notification name="VoiceNotAllowed"> + Sie sind nicht berechtigt, einem Voice-Chat in [VOICE_CHANNEL_NAME] beizutreten. + </notification> + <notification name="VoiceCallGenericError"> + Fehler beim Versuch, eine Voice-Chat-Verbindung zu [VOICE_CHANNEL_NAME] herzustellen. Bitte versuchen Sie es erneut. + </notification> + <notification name="ServerVersionChanged"> + Die Region, die Sie betreten haben, verwendet eine andere Simulatorversion. Klicken Sie auf diese Nachricht, um weitere Informationen zu erhalten. + </notification> + <notification name="UnableToOpenCommandURL"> + Die URL, die Sie angeklickt haben, kann in diesem Web Browser nicht geöffnet werden. + </notification> + <global name="UnsupportedCPU"> + - Ihre CPU-Geschwindigkeit entspricht nicht den Mindestanforderungen. + </global> + <global name="UnsupportedGLRequirements"> + Ihr Computer entspricht nicht den Hardwareanforderungen von Second Life. Second Life setzt eine OpenGL-Grafikkarte mit Multitextur-Unterstützung voraus. Falls Ihre Grafikkarte diese Funktion unterstützt, installieren Sie die neuesten Treiber sowie die aktuellen Service Packs und Patches für Ihr Betriebssystem. Sollte das Problem fortbestehen, finden Sie weitere Hilfestellung unter: http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- Ihre Grafikkarte entspricht nicht den Mindestanforderungen. - </global> - - <global name="UnsupportedRAM"> -- Ihr Arbeitsspeicher entspricht nicht den Mindestanforderungen. - </global> - - <global name="PermYes"> -Ja - </global> - - <global name="PermNo"> -Nein - </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - Ihre Grafikkarte entspricht nicht den Mindestanforderungen. + </global> + <global name="UnsupportedRAM"> + - Ihr Arbeitsspeicher entspricht nicht den Mindestanforderungen. + </global> + <global name="PermYes"> + Ja + </global> + <global name="PermNo"> + Nein + </global> </notifications> - diff --git a/indra/newview/skins/default/xui/de/panel_group_general.xml b/indra/newview/skins/default/xui/de/panel_group_general.xml index c05f6ca09b9245f92b53ea37ebb83c3775128546..ce19248755755f595dfdedfdf1450dea1705395c 100644 --- a/indra/newview/skins/default/xui/de/panel_group_general.xml +++ b/indra/newview/skins/default/xui/de/panel_group_general.xml @@ -18,7 +18,7 @@ Bewegen Sie die Maus über die Optionen, um weitere Informationen anzuzeigen. <text name="prepend_founded_by"> Gegründet von </text> - <text name="founder_name" left_delta="79"> + <text left_delta="79" name="founder_name"> (wartet) </text> <text name="group_charter_label"> @@ -49,7 +49,17 @@ Bewegen Sie die Maus über die Optionen, um weitere Informationen anzuzeigen. <check_box label="Registrierung offen" name="open_enrollement" tool_tip="Festlegen, ob der Gruppenbeitritt ohne Einladung zulässig ist."/> <check_box label="Beitrittsgebühr: L$" name="check_enrollment_fee" tool_tip="Festlegen, ob Neumitglieder eine Beitrittsgebühr zahlen müssen." width="125"/> <spinner name="spin_enrollment_fee" tool_tip="Wenn „Beitrittsgebühr“ aktiviert ist, müssen neue Mitglieder diesen Betrag zahlen."/> - + <combo_box name="group_mature_check" tool_tip="Festlegen, ob die Informationen Ihrer Gruppe „Mature“ sind."> + <combo_item name="select_mature"> + - Mature wählen - + </combo_item> + <combo_item name="mature"> + Mature-Inhalt + </combo_item> + <combo_item name="pg"> + PG-Inhalt + </combo_item> + </combo_box> <panel name="title_container"> <text name="active_title_label"> Mein aktiver Titel diff --git a/indra/newview/skins/default/xui/de/panel_group_invite.xml b/indra/newview/skins/default/xui/de/panel_group_invite.xml index 96af8e30213c8e54405db5d14f2f7ede2098ea71..84ba91a63f9a13198703ce539df924bc4c9a20f4 100644 --- a/indra/newview/skins/default/xui/de/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/de/panel_group_invite.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel label="Mitglied einladen" name="invite_panel"> <text name="help_text"> - Sie können mehrere Einwohner zu Ihrer -Gruppe einladen. Klicken Sie auf -„Personenauswahl öffnen“. + Sie können mehrere Einwohner in Ihre +Gruppe einladen. Klicken Sie hierzu +auf „Einwohnerliste öffnen“. </text> - <button label="Personenauswahl öffnen" name="add_button" tool_tip="" /> + <button label="Einwohnerliste öffnen" name="add_button" tool_tip=""/> <name_list name="invitee_list" tool_tip="Halten Sie zur Mehrfachauswahl die Strg-Taste gedrückt und klicken Sie auf die Einwohnernamen." /> <button label="Auswahl aus Liste löschen" name="remove_button" diff --git a/indra/newview/skins/default/xui/de/panel_group_land_money.xml b/indra/newview/skins/default/xui/de/panel_group_land_money.xml index 15d3b08482ef630e0bc2fe4376ef2a8b2b4724c7..c038d97822ff41e3aa159da27629fd3b5c8e5450 100644 --- a/indra/newview/skins/default/xui/de/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/de/panel_group_land_money.xml @@ -1,15 +1,15 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Land und L$" name="land_money_tab"> - <text name="help_text"> - Es werden Parzellen in Gruppenbesitz und Beitragsdetails angezeigt. Ein Warnhinweis wird angezeigt, solange der Wert für das Insgesamt verwendete Land gleich oder weniger ist als der Gesamtbeitrag. Die Registerkarten „Planung“, „Details“ und „Verkäufe“ enthalten Informationen über die Gruppenfinanzen. - </text> - <button label="?" name="help_button" /> - <text name="cant_view_group_land_text"> + <string name="help_text"> + Parzellen in Gruppenbesitz werden zusammen mit Beitragsdetails angezeigt. Ein Warnhinweis wird angezeigt, solange der Wert für das insgesamt verwendete Land gleich oder weniger ist als der Gesamtbeitrag. Die Registerkarten „Planung“, „Details“ und „Verkäufe“ enthalten Informationen über die Gruppenfinanzen. + </string> + <button label="?" name="help_button"/> + <string name="cant_view_group_land_text"> Sie sind nicht berechtigt, Landeigentum der Gruppe anzuzeigen. - </text> - <text name="cant_view_group_accounting_text"> + </string> + <string name="cant_view_group_accounting_text"> Sie sind nicht berechtigt, die Finanzinformationen der Gruppe anzuzeigen. - </text> + </string> <string name="loading_txt"> Wird geladen... </string> @@ -17,12 +17,13 @@ Land in Gruppenbesitz </text> <scroll_list name="group_parcel_list"> - <column label="Parzellenname" name="name" /> - <column label="Region" name="location" /> - <column label="Gebiet" name="area" /> - <column label="" name="hidden" /> + <column label="Parzellenname" name="name"/> + <column label="Region" name="location"/> + <column label="Typ" name="type"/> + <column label="Gebiet" name="area"/> + <column label="" name="hidden"/> </scroll_list> - <button label="Auf Karte" label_selected="Auf Karte" name="map_button" /> + <button label="Auf Karte" label_selected="Auf Karte" name="map_button"/> <text name="total_contributed_land_label"> Gesamtbeitrag: </text> @@ -44,9 +45,6 @@ <text name="your_contribution_label"> Ihr Beitrag: </text> - <text name="your_contribution_max_value_append"> - qm - </text> <string name="land_contrib_error"> Ihr Landbeitrag kann nicht festgelegt werden. </string> @@ -70,19 +68,15 @@ das verwendete Land gehalten werden kann. <text_editor name="group_money_details_text"> Wird berechnet... </text_editor> - <button label="< Früher" label_selected="< Früher" - name="earlier_details_button" tool_tip="Zurück in der Zeit" /> - <button label="Später >" label_selected="Später >" name="later_details_button" - tool_tip="Weiter in der Zeit" /> + <button label="< Früher" label_selected="< Früher" name="earlier_details_button" tool_tip="Zurück in der Zeit"/> + <button label="Später >" label_selected="Später >" name="later_details_button" tool_tip="Weiter in der Zeit"/> </panel> <panel label="Verkäufe" name="group_money_sales_tab"> <text_editor name="group_money_sales_text"> Wird berechnet... </text_editor> - <button label="< Früher" label_selected="< Früher" name="earlier_sales_button" - tool_tip="Zurück in der Zeit" /> - <button label="Später >" label_selected="Später >" name="later_sales_button" - tool_tip="Weiter in der Zeit" /> + <button label="< Früher" label_selected="< Früher" name="earlier_sales_button" tool_tip="Zurück in der Zeit"/> + <button label="Später >" label_selected="Später >" name="later_sales_button" tool_tip="Weiter in der Zeit"/> </panel> </tab_container> </panel> diff --git a/indra/newview/skins/default/xui/de/panel_group_roles.xml b/indra/newview/skins/default/xui/de/panel_group_roles.xml index f5671fc85210974b70a15bffcbc92cd5f49a16b9..d4589f83e420a550043aa535e44c77c0a86130dc 100644 --- a/indra/newview/skins/default/xui/de/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/de/panel_group_roles.xml @@ -51,7 +51,7 @@ Mitglieder diese Fähigkeit haben. <column label="Ãœbertragene Landanteile" name="donated" width="156"/> <column label="Letzte Anmeldung" name="online"/> </name_list> - <button label="Neue Person einladen..." name="member_invite"/> + <button label="Neues Mitglied einladen..." name="member_invite"/> <button label="Aus Gruppe werfen" name="member_eject"/> <string name="help_text"> Sie können Mitgliedern Rollen zuweisen und entziehen. diff --git a/indra/newview/skins/default/xui/de/panel_notifications_channel.xml b/indra/newview/skins/default/xui/de/panel_notifications_channel.xml new file mode 100644 index 0000000000000000000000000000000000000000..e2166f7baf77fb6e5c2e4e297bc1f98b7ab75091 --- /dev/null +++ b/indra/newview/skins/default/xui/de/panel_notifications_channel.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<panel name="notifications_panel"> + <layout_stack name="stack1"> + <scroll_list name="notifications_list"> + <column label="Name" name="name"/> + <column label="Inhalt" name="content"/> + <column label="Datum" name="date"/> + </scroll_list> + <scroll_list name="notification_rejects_list"> + <column label="Name" name="name"/> + <column label="Inhalt" name="content"/> + <column label="Datum" name="date"/> + </scroll_list> + </layout_stack> +</panel> diff --git a/indra/newview/skins/default/xui/de/panel_preferences_general.xml b/indra/newview/skins/default/xui/de/panel_preferences_general.xml index 3365c5c428bcf14ab3b7b7be47d61bc768fd3e67..40b4909e84f29faea18fc0976a3d71e6efe884a1 100644 --- a/indra/newview/skins/default/xui/de/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/de/panel_preferences_general.xml @@ -33,10 +33,28 @@ </text> <check_box label="Auflösungsunabhängigen Maßstab verwenden" name="ui_auto_scale"/> <spinner label="Timeout für Abwesenheit:" name="afk_timeout_spinner"/> - <check_box label="Minikarte drehen" name="rotate_mini_map_checkbox"/> <check_box label="L$ Eingänge und Ausgaben melden" name="notify_money_change_checkbox"/> - <check_box label="Standard-Farbauswahl verwenden" name="use_system_color_picker_checkbox" tool_tip="Standard-Farbauswahl des Systems anstelle des Second Life-eigenen verwenden."/> - <check_box label="Suchleiste in Menüleiste anzeigen" name="show_search_panel" tool_tip="Die eingebettete Suchleiste anzeigen."/> + <text name="maturity_desired_label" bottom="-312"> + Einstufung: + </text> + <text name="maturity_desired_prompt" bottom="-312"> + Ich möchte auf Inhalt mit folgender +Alterseinstufung zugreifen: + </text> + <combo_box name="maturity_desired_combobox" bottom="-330" left="336"> + <combo_item name="Desired_Adult"> + PG, Mature und Adult + </combo_item> + <combo_item name="Desired_Mature"> + PG und Mature + </combo_item> + <combo_item name="Desired_PG"> + Nur PG + </combo_item> + </combo_box> + <text name="maturity_desired_textbox" bottom="-324" left="336"> + Nur PG + </text> <text name="start_location_textbox"> Startposition: </text> @@ -55,13 +73,13 @@ <text name="language_textbox"> Sprache: </text> - <text name="language_textbox2"> + <text left_delta="313" name="language_textbox2"> (Erfordert Neustart) </text> <string name="region_name_prompt"> <Region eingeben> </string> - <combo_box name="crash_behavior_combobox"> + <combo_box name="crash_behavior_combobox" width="166"> <combo_item name="Askbeforesending"> Vor dem Senden fragen </combo_item> @@ -72,7 +90,7 @@ Nie senden </combo_item> </combo_box> - <combo_box name="language_combobox"> + <combo_box name="language_combobox" width="166"> <combo_item name="System Default Language"> Betriebssystem-Einstellung </combo_item> @@ -91,15 +109,30 @@ <combo_item name="French"> Français (Französisch) - Beta </combo_item> + <combo_item name="Italian"> + Italiano (Italienisch) - Beta + </combo_item> <combo_item name="Hungarian"> Magyar (Ungarisch) - Beta </combo_item> + <combo_item name="Dutch"> + Nederlands (Niederländisch) - Beta + </combo_item> <combo_item name="Polish"> Polski (Polnisch) - Beta </combo_item> <combo_item name="Portugese"> Português (Portugiesisch) - Beta </combo_item> + <combo_item name="Russian"> + РуÑÑкий (Russian) - Beta + </combo_item> + <combo_item name="Turkish"> + Türkçe (Türkisch) - Beta + </combo_item> + <combo_item name="Ukrainian"> + УкраїнÑька (Ukrainisch) - Beta + </combo_item> <combo_item name="Chinese"> ä¸æ–‡ (简体) (Chinesisch) - Beta </combo_item> diff --git a/indra/newview/skins/default/xui/de/panel_region_covenant.xml b/indra/newview/skins/default/xui/de/panel_region_covenant.xml index 8f1f1c2597fd2cadffe7a7e0e1cfe807f61068ae..a72f0e424023eb832aac0b54984fc1c255d085fc 100644 --- a/indra/newview/skins/default/xui/de/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/de/panel_region_covenant.xml @@ -1,50 +1,84 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Vertrag" name="Covenant"> + <text name="estate_section_lbl"> + Grundstück: + </text> + <text name="estate_name_lbl"> + Name: + </text> + <text name="estate_name_text"> + Mainland + </text> + <text name="estate_owner_lbl"> + Eigentümer: + </text> + <text name="estate_owner_text"> + (keiner) + </text> + <text name="estate_cov_lbl"> + Vertrag: + </text> + <text name="covenant_timestamp_text"> + Letzte Änderung am Mittwoch, den 31. Dez. 1969, 16:00:00 + </text> + <button label="?" name="covenant_help"/> + <text_editor bottom="-247" height="162" name="covenant_editor"> + Für dieses Grundstück fehlt der Vertrag. + </text_editor> + <button label="Zurücksetzen" name="reset_covenant"/> <text name="covenant_help_text"> - Änderungen am Vertrag werden für alle Parzellen auf dem Grundstück übernommen. + Änderungen am Vertrag werden für alle Parzellen auf dem + Grundstück übernommen. </text> - <text name="region_name_lbl"> + <text bottom_delta="-36" name="covenant_instructions"> + Ziehen Sie eine Notizkarte an diese Stelle, um den Vertrag für dieses + Grundstück zu ändern. + </text> + <text bottom_delta="-36" name="region_section_lbl"> Region: </text> + <text name="region_name_lbl"> + Name: + </text> <text name="region_name_text"> - (unbekannt) + leyla </text> - <text name="estate_name_lbl"> - Grundstück: + <text name="region_landtype_lbl"> + Typ: </text> - <text name="estate_name_text"> - (unbekannt) + <text name="region_landtype_text"> + Mainland / Homestead </text> - <text name="covenent_instructions"> - Ziehen Sie eine Notizkarte an diese Stelle, um den Vertrag für dieses Grundstück zu ändern. + <text name="region_maturity_lbl"> + Einstufung: </text> - <button label="?" name="covenant_help" /> - <button label="Zurücksetzen" name="reset_covenant" /> - <text name="estate_owner_lbl"> - Grundstückseigentümer: + <text name="region_maturity_text"> + Adult </text> - <text name="estate_owner_text"> - (unbekannt) + <text name="resellable_lbl"> + Wiederverkauf: </text> <text name="resellable_clause"> - Gekauftes Land in dieser Region kann oder kann nicht wiederverkauft werden. + Land in dieser Region kann nicht wiederverkauft werden. + </text> + <text name="changeable_lbl"> + Unterteilen: </text> <text name="changeable_clause"> - Gekauftes Land in dieser Region kann oder kann nicht zusammengelegt und geteilt werden. + Land in dieser Region kann nicht zusammengelegt/geteilt werden. </text> - <text_editor name="covenant_editor"> - Wird geladen... - </text_editor> - <text name="can_resell"> + <string name="can_resell"> Gekauftes Land in dieser Region kann wiederverkauft werden. - </text> - <text name="can_not_resell"> + </string> + <string name="can_not_resell"> Gekauftes Land in dieser Region kann nicht wiederverkauft werden. - </text> - <text name="can_change"> - Gekauftes Land in dieser Region kann zusammengelegt und geteilt werden. - </text> - <text name="can_not_change"> - Gekauftes Land in dieser Region kann nicht zusammengelegt und geteilt werden. - </text> + </string> + <string name="can_change"> + Gekauftes Land in dieser Region kann zusammengelegt und +geteilt werden. + </string> + <string name="can_not_change"> + Gekauftes Land in dieser Region kann nicht zusammengelegt +und geteilt werden. + </string> </panel> diff --git a/indra/newview/skins/default/xui/de/panel_region_general.xml b/indra/newview/skins/default/xui/de/panel_region_general.xml index 6cf3e69d31a7d0b25a5d233cc86c99f81562837d..9980393ab032f9aa08116a907f34da6685d601aa 100644 --- a/indra/newview/skins/default/xui/de/panel_region_general.xml +++ b/indra/newview/skins/default/xui/de/panel_region_general.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Region" name="General"> <text name="region_text_lbl"> Region: @@ -12,34 +12,48 @@ <text name="version_channel_text"> unbekannt </text> - <check_box label="Terraformen blockieren" name="block_terraform_check" /> - <button label="?" name="terraform_help" /> - <check_box label="Fliegen blockieren" name="block_fly_check" /> - <button label="?" name="fly_help" /> - <check_box label="Schaden zulassen" name="allow_damage_check" /> - <button label="?" name="damage_help" /> - <check_box label="Stoßen beschränken" name="restrict_pushobject" /> - <button label="?" name="restrict_pushobject_help" /> - <check_box label="Landwiederverkauf zulassen" name="allow_land_resell_check" /> - <button label="?" name="land_resell_help" /> - <check_box label="Landumverteilung zulassen" name="allow_parcel_changes_check" /> - <button label="?" name="parcel_changes_help" /> - <check_box label="Landanzeige in Suche blockieren" name="block_parcel_search_check" - tool_tip="Diese Region und ihre Parzellen in Suchergebnissen anzeigen" /> - <button label="?" name="parcel_search_help" /> - <spinner label="Avatar-Limit" name="agent_limit_spin" /> - <button label="?" name="agent_limit_help" /> - <spinner label="Objektbonus" name="object_bonus_spin" /> - <button label="?" name="object_bonus_help" /> + <text name="region_type_lbl"> + Typ: + </text> + <text name="region_type"> + unbekannt + </text> + <check_box label="Terraformen blockieren" name="block_terraform_check"/> + <button label="?" name="terraform_help"/> + <check_box label="Fliegen blockieren" name="block_fly_check"/> + <button label="?" name="fly_help"/> + <check_box label="Schaden zulassen" name="allow_damage_check"/> + <button label="?" name="damage_help"/> + <check_box label="Stoßen beschränken" name="restrict_pushobject"/> + <button label="?" name="restrict_pushobject_help"/> + <check_box label="Landwiederverkauf zulassen" name="allow_land_resell_check"/> + <button label="?" name="land_resell_help"/> + <check_box label="Landumverteilung zulassen" name="allow_parcel_changes_check"/> + <button label="?" name="parcel_changes_help"/> + <check_box label="Landanzeige in Suche blockieren" name="block_parcel_search_check" tool_tip="Diese Region und ihre Parzellen in Suchergebnissen anzeigen"/> + <button label="?" name="parcel_search_help"/> + <spinner label="Avatar-Limit" name="agent_limit_spin"/> + <button label="?" name="agent_limit_help"/> + <spinner label="Objektbonus" name="object_bonus_spin"/> + <button label="?" name="object_bonus_help"/> <text label="Alterseinstufung" name="access_text"> - Alterseinstufung: + Einstufung: </text> - - - <button label="?" name="access_help" /> - <button label="Ãœbernehmen" name="apply_btn" /> - <button label="Einen Benutzer nach Hause teleportieren..." name="kick_btn" /> - <button label="Alle Benutzer nach Hause teleportieren..." name="kick_all_btn" /> - <button label="Nachricht an Region senden..." name="im_btn" /> - <button label="Telehub verwalten..." name="manage_telehub_btn" /> + <combo_box label="Mature" name="access_combo"> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Mature"> + Mature + </combo_item> + <combo_item name="PG"> + PG + </combo_item> + </combo_box> + <button label="?" name="access_help"/> + <button label="Ãœbernehmen" name="apply_btn"/> + <button label="Einen Benutzer nach Hause teleportieren..." name="kick_btn"/> + <button label="Alle Benutzer nach Hause teleportieren..." name="kick_all_btn"/> + <button label="Nachricht an Region senden..." name="im_btn"/> + <button label="Telehub verwalten..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/de/strings.xml b/indra/newview/skins/default/xui/de/strings.xml index 07f3269541feba51963f2b1a0f247d462ffe06af..3436cfac1e9bdda6b9111eb435831f4072603e39 100644 --- a/indra/newview/skins/default/xui/de/strings.xml +++ b/indra/newview/skins/default/xui/de/strings.xml @@ -1,10 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. - It is only for those strings which don't belong in a floater. + It is only for those strings which do not belong in a floater. For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> - <!-- Login --> <string name="LoginInProgress"> Anmeldevorgang gestartet. [APP_NAME] reagiert möglicherweise nicht. Bitte warten. </string> @@ -56,34 +55,24 @@ <string name="LoginDownloadingClothing"> Kleidung wird geladen... </string> - <string name="LoginFailedNoNetwork"> - Netzwerk Fehler: Eine Verbindung konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Netzwerkverbindung. - </string> - <!-- Disconnection --> <string name="AgentLostConnection"> In dieser Region kann es zu Problemen kommen. Bitte überprüfen Sie Ihre Internetverbindung. </string> - <!-- Tooltip, llhoverview.cpp --> <string name="TooltipPerson"> Person </string> - <!-- Object under mouse pointer is an avatar --> <string name="TooltipNoName"> (namenlos) </string> - <!-- No name on an object --> <string name="TooltipOwner"> Eigentümer: </string> - <!-- Owner name follows --> <string name="TooltipPublic"> Öffentlich </string> - <!-- Public permissions on an object --> <string name="TooltipIsGroup"> (Gruppe) </string> - <!-- The name before this text is that of a group --> <string name="TooltipFlagScript"> Skript </string> @@ -114,11 +103,9 @@ <string name="TooltipForSaleL$"> Zum Verkauf: [AMOUNT] L$ </string> - <!-- L$ version --> <string name="TooltipForSaleMsg"> Zum Verkauf: [MESSAGE] </string> - <!-- Message (RetrievingData) --> <string name="TooltipFlagGroupBuild"> Gruppenbau </string> @@ -131,7 +118,6 @@ <string name="TooltipFlagNotSafe"> Unsicher </string> - <!-- damage area --> <string name="TooltipFlagNoFly"> Fliegen aus </string> @@ -147,35 +133,27 @@ <string name="TooltipMustSingleDrop"> Sie können nur ein einzelnes Objekt hierher ziehen </string> - <!-- Indicates that an avatar's name or other similar datum is being retrieved. General usage. --> <string name="RetrievingData"> Laden... </string> <string name="ReleaseNotes"> Versionshinweise </string> - <!-- Indicates something is being loaded. Maybe should be merged with RetrievingData --> <string name="LoadingData"> Wird geladen... </string> - <!-- namecache --> - <!-- Avatar name: text shown for LLUUID::null --> <string name="AvatarNameNobody"> (niemand) </string> - <!-- Avatar name: text shown while fetching name --> <string name="AvatarNameWaiting"> (wartet) </string> - <!-- Avatar name: text shown as an alternative to AvatarNameFetching, easter egg. --> <string name="AvatarNameHippos"> (hippos) </string> - <!-- Group name: text shown for LLUUID::null --> <string name="GroupNameNone"> (keiner) </string> - <!-- Asset errors. Used in llassetstorage.cpp, translation from error code to error message. --> <string name="AssetErrorNone"> Kein Fehler </string> @@ -203,10 +181,12 @@ <string name="AssetErrorCircuitGone"> Verbindung verloren </string> + <string name="AssetErrorPriceMismatch"> + Viewer und Server sind sich nicht über Preis einig + </string> <string name="AssetErrorUnknownStatus"> Status unbekannt </string> - <!-- llvoavatar. Displayed in the avatar's chat bubble --> <string name="AvatarEditingApparance"> (Aussehen wird bearbeitet) </string> @@ -219,7 +199,6 @@ <string name="AvatarMuted"> Stummgeschaltet </string> - <!-- animations --> <string name="anim_express_afraid"> Ängstlich </string> @@ -433,11 +412,79 @@ <string name="worldmap_offline"> Offline </string> - <!-- Chat --> <string name="whisper"> flüstert: </string> <string name="shout"> ruft: </string> + <string name="SIM_ACCESS_PG"> + PG + </string> + <string name="SIM_ACCESS_MATURE"> + Mature + </string> + <string name="SIM_ACCESS_ADULT"> + Adult + </string> + <string name="SIM_ACCESS_DOWN"> + Offline + </string> + <string name="SIM_ACCESS_MIN"> + Unbekannt + </string> + <string name="land_type_unknown"> + (unbekannt) + </string> + <string name="covenant_never_modified"> + Zuletzt geändert: (nie) + </string> + <string name="covenant_modified"> + Zuletzt geändert: + </string> + <string name="all_files"> + Alle Dateien + </string> + <string name="sound_files"> + Sounds + </string> + <string name="animation_files"> + Animationen + </string> + <string name="image_files"> + Bilder + </string> + <string name="save_file_verb"> + Speichern + </string> + <string name="load_file_verb"> + Laden + </string> + <string name="targa_image_files"> + Targa-Bilder + </string> + <string name="bitmap_image_files"> + Bitmap-Bilder + </string> + <string name="avi_movie_file"> + AVI-Filmdatei + </string> + <string name="xaf_animation_file"> + XAF Anim-Datei + </string> + <string name="xml_file"> + XML-Datei + </string> + <string name="dot_raw_file"> + RAW-Datei + </string> + <string name="compressed_image_files"> + Komprimierte Bilder + </string> + <string name="load_files"> + Dateien laden + </string> + <string name="choose_the_directory"> + Verzeichnis auswählen + </string> </strings> diff --git a/indra/newview/skins/default/xui/de/teleport_strings.xml b/indra/newview/skins/default/xui/de/teleport_strings.xml index 7d1a154310a4c5b75d585a6324b82ef20e5859e7..31f92dc920b382e8f9fe1492ec6e88d29f7efc31 100644 --- a/indra/newview/skins/default/xui/de/teleport_strings.xml +++ b/indra/newview/skins/default/xui/de/teleport_strings.xml @@ -2,21 +2,16 @@ <teleport_messages name=""> <message_set name="errors"> <message name="invalid_tport"> - Bei der Bearbeitung Ihrer Teleport-Anfrage ist ein Problem aufgetreten. Sie müssen -sich zum Teleportieren eventuell neu anmelden. Wenn Sie diese -Nachricht weiterhin erhalten, konsultieren Sie bitte die Tech-Support-FAQ unter: + Bei der Bearbeitung Ihrer Teleport-Anfrage ist ein Problem aufgetreten. Sie müssen sich zum Teleportieren eventuell neu anmelden. Wenn Sie diese Nachricht weiterhin erhalten, konsultieren Sie bitte die Tech-Support-FAQ unter: www.secondlife.com/support </message> <message name="invalid_region_handoff"> - Bei der Bearbeitung Ihres Regionswechsels ist ein Problem aufgetreten. Sie müssen -sich zum Wechsel der Region eventuell neu anmelden. Wenn Sie diese -Nachricht weiterhin erhalten, konsultieren Sie bitte die Tech-Support-FAQ unter: -www.secondlife.com/support. + Bei der Bearbeitung Ihres Regionswechsels ist ein Problem aufgetreten. Sie müssen sich zum Wechsel der Region eventuell neu anmelden. Wenn Sie diese Nachricht weiterhin erhalten, konsultieren Sie bitte die Tech-Support-FAQ unter: +www.secondlife.com/support </message> <message name="blocked_tport"> Teleportieren ist zurzeit leider nicht möglich. Versuchen Sie es später noch einmal. -Wenn der Teleport dann immer noch nicht funktioniert, melden Sie -sich bitte ab und wieder an. +Wenn der Teleport dann immer noch nicht funktioniert, melden Sie sich bitte ab und wieder an. </message> <message name="nolandmark_tport"> Das System konnte das Landmarken-Ziel nicht finden. @@ -29,27 +24,20 @@ Versuchen Sie es später noch einmal. Sie haben leider keinen Zugang zu diesem Teleport-Ziel. </message> <message name="missing_attach_tport"> - Ihre Anhänge sind noch nicht eingetroffen. Warten Sie kurz -oder melden Sie sich ab und wieder an, bevor Sie einen neuen -Teleport-Versuch unternehmen. + Ihre Anhänge sind noch nicht eingetroffen. Warten Sie kurz oder melden Sie sich ab und wieder an, bevor Sie einen neuen Teleport-Versuch unternehmen. </message> <message name="too_many_uploads_tport"> Die Asset-Warteschlange in dieser Region ist zurzeit überlastet. -Ihre Teleport-Anfrage kann nicht sofort bearbeitet werden. Versuchen Sie es -in einigen Minuten erneut oder besuchen Sie eine weniger überfüllte Region. +Ihre Teleport-Anfrage kann nicht sofort bearbeitet werden. Versuchen Sie es in einigen Minuten erneut oder besuchen Sie eine weniger überfüllte Region. </message> <message name="expired_tport"> - Das System konnte Ihre Teleport-Anfrage nicht -rechtzeitig bearbeiten. Versuchen Sie es in einigen Minuten erneut. + Das System konnte Ihre Teleport-Anfrage nicht rechtzeitig bearbeiten. Versuchen Sie es in einigen Minuten erneut. </message> <message name="expired_region_handoff"> - Das System konnte Ihre Anfrage zum Regionswechsel nicht -rechtzeitig bearbeiten. Versuchen Sie es in einigen Minuten erneut. + Das System konnte Ihre Anfrage zum Regionswechsel nicht rechtzeitig bearbeiten. Versuchen Sie es in einigen Minuten erneut. </message> <message name="no_host"> - Teleport-Ziel wurde nicht gefunden. Das Ziel ist -entweder im Moment nicht verfügbar oder existiert nicht mehr. Versuchen Sie es -in einigen Minuten erneut. + Teleport-Ziel wurde nicht gefunden. Das Ziel ist entweder im Moment nicht verfügbar oder existiert nicht mehr. Versuchen Sie es in einigen Minuten erneut. </message> <message name="no_inventory_host"> Das Inventarsystem ist zurzeit nicht verfügbar. diff --git a/indra/newview/skins/default/xui/es/floater_about.xml b/indra/newview/skins/default/xui/es/floater_about.xml index 0b3143a0e88204d484401a76f6034ee7ea7699b1..d6fbc3875295866fae0ad9624efea17d70ad0314 100644 --- a/indra/newview/skins/default/xui/es/floater_about.xml +++ b/indra/newview/skins/default/xui/es/floater_about.xml @@ -28,7 +28,7 @@ Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) - Me las apañaré con un poco de ayuda de mis amigos. -- Richard Starkey + Para tener éxito en los negocios, se atrevido, se el primero, se diferente. (Henry Marchant) </text_editor> <string name="you_are_at"> Está en [POSITION] diff --git a/indra/newview/skins/default/xui/es/floater_about_land.xml b/indra/newview/skins/default/xui/es/floater_about_land.xml index 526327d28b05c1fd23dd59ba5e7c55f8c062853b..767b384a2df64e083ad6f80779e901ab7bd1ad49 100644 --- a/indra/newview/skins/default/xui/es/floater_about_land.xml +++ b/indra/newview/skins/default/xui/es/floater_about_land.xml @@ -8,6 +8,18 @@ <text length="1" name="Description:" type="string"> Descripción: </text> + <text name="LandType"> + Tipo: + </text> + <text name="LandTypeText"> + Mainland / Homestead + </text> + <text name="ContentRating"> + Calificación: + </text> + <text name="ContentRatingText"> + 'Adult' + </text> <text length="1" name="Owner:" type="string"> Propietario: </text> @@ -29,7 +41,7 @@ No está en venta. </text> <text length="1" name="For Sale: Price L$[PRICE]." type="string"> - Precio: [PRICE] L$ + Precio: [PRICE] L$ ([PRICE_PER_SQM] L$/m²). </text> <button label="Vender el terreno..." label_selected="Vender el terreno..." name="Sell Land..."/> <text length="1" name="For sale to" type="string"> @@ -41,7 +53,7 @@ <text length="1" name="Selling with no objects in parcel." type="string"> Los objetos no se incluyen en la venta. </text> - <button label="Cancelar la venta del terreno" label_selected="Cancelar la venta del terreno" name="Cancel Land Sale"/> + <button font="SansSerifSmall" left="275" width="165" label="Cancelar la venta del terreno" label_selected="Cancelar la venta del terreno" name="Cancel Land Sale"/> <text length="1" name="Claimed:" type="string"> Reclamada: </text> @@ -60,9 +72,9 @@ <text length="1" name="DwellText" type="string"> 0 </text> - <button label="Comprar terreno..." label_selected="Comprar terreno..." name="Buy Land..."/> + <button label="Comprar terreno..." label_selected="Comprar terreno..." left="130" name="Buy Land..." width="125"/> <button label="Comprar para el grupo..." label_selected="Comprar para el grupo..." name="Buy For Group..."/> - <button label="Comprar un pase..." label_selected="Comprar un pase..." name="Buy Pass..." tool_tip="Un pase le da acceso temporal a este terreno."/> + <button label="Comprar un pase..." label_selected="Comprar un pase..." left="130" width="125" name="Buy Pass..." tool_tip="Un pase le da acceso temporal a este terreno."/> <button label="Abandonar el terreno..." label_selected="Abandonar el terreno..." name="Abandon Land..."/> <button label="Reclamar el terreno..." label_selected="Reclamar el terreno..." name="Reclaim Land..."/> <button label="Venta Linden..." label_selected="Venta Linden..." name="Linden Sale..." tool_tip="El terreno debe estar en propiedad, con contenido, y no estar en subasta."/> @@ -108,36 +120,60 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s </string> </panel> <panel label="Contrato" name="land_covenant_panel"> + <text name="estate_section_lbl"> + Estado: + </text> + <text length="1" name="estate_name_lbl" type="string"> + Nombre: + </text> + <text length="1" name="estate_name_text" type="string"> + mainland + </text> + <text length="1" name="estate_owner_lbl" type="string"> + Propietario: + </text> + <text length="1" name="estate_owner_text" type="string"> + (nadie) + </text> + <text_editor length="1" name="covenant_editor" type="string"> + No se ha aportado un contrato para este estado. + </text_editor> <text length="1" name="covenant_timestamp_text" type="string"> Última modificación, Dic Miér 31 16:00:00 1969 </text> - <text length="1" name="region_name_lbl" type="string"> + <text name="region_section_lbl"> Región: </text> + <text length="1" name="region_name_lbl" type="string"> + Nombre: + </text> <text length="1" name="region_name_text" type="string"> leyla </text> - <text length="1" name="estate_name_lbl" type="string"> - Estado: + <text name="region_landtype_lbl"> + Tipo: </text> - <text length="1" name="estate_name_text" type="string"> - mainland + <text name="region_landtype_text"> + Mainland / Homestead </text> - <text length="1" name="estate_owner_lbl" type="string"> - Propietario del estado: + <text name="region_maturity_lbl"> + Calificación: </text> - <text length="1" name="estate_owner_text" type="string"> - (nadie) + <text name="region_maturity_text"> + 'Adult' + </text> + <text name="resellable_lbl"> + Revender: </text> <text length="1" name="resellable_clause" type="string"> - El terreno comprado en esta región no se podrá revender. + El terreno de esta región no se podrá revender. + </text> + <text name="changeable_lbl"> + Dividir: </text> <text length="1" name="changeable_clause" type="string"> - El terreno comprado en esta región no se podrá unir/dividir. + El terreno de esta región no se podrá unir/dividir. </text> - <text_editor length="1" name="covenant_editor" type="string"> - No se ha aportado un contrato para este estado. - </text_editor> <string name="can_resell"> El terreno comprado en esta región se podrá revender. </string> @@ -148,7 +184,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s El terreno comprado en esta región se podrá unir o dividir. </string> <string name="can_not_change"> - PEl terreno comprado en esta región no se podrá unir o dividir. + El terreno comprado en esta región no se podrá unir o dividir. </string> </panel> <panel label="Objetos" name="land_objects_panel"> @@ -158,7 +194,7 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <text length="1" name="Simulator primitive usage:" type="string"> Simulador de uso de prims: </text> - <text name="objects_available"> + <text name="objects_available" left="214" width="230" > [COUNT] de un máximo de [MAX] ([AVAILABLE] disponibles) </text> <string name="objects_available_text"> @@ -167,56 +203,57 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <string name="objects_deleted_text"> [COUNT] de un máximo de [MAX] ([DELETED] se borrarán) </string> - <text length="1" name="Primitives parcel supports:" type="string"> + <text length="1" name="Primitives parcel supports:" type="string" width="200"> Prims que admite la parcela: </text> - <text name="object_contrib_text"> + <text name="object_contrib_text" left="214" width="152"> [COUNT] </text> <text length="1" name="Primitives on parcel:" type="string"> Prims en la parcela: </text> - <text name="total_objects_text"> + <text name="total_objects_text" left="214" width="48"> [COUNT] </text> - <text length="1" name="Owned by parcel owner:" type="string"> + <text length="1" name="Owned by parcel owner:" type="string" left="14" width="180" > Del propietario de la parcela: </text> - <text name="owner_objects_text"> + <text name="owner_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Mostrar" label_selected="Mostrar" name="ShowOwner"/> - <button label="Devolver..." label_selected="Devolver..." name="ReturnOwner..." tool_tip="Devolver los objetos a sus propietarios."/> - <text length="1" name="Set to group:" type="string"> + <button label="Mostrar" label_selected="Mostrar" name="ShowOwner" right="-135" width="60"/> + <button label="Devolver..." label_selected="Devolver..." name="ReturnOwner..." tool_tip="Devolver los objetos a sus propietarios." right="-10" width="119"/> + <text length="1" name="Set to group:" type="string" left="14" width="180"> Del grupo: </text> - <text name="group_objects_text"> + <text name="group_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Mostrar" label_selected="Mostrar" name="ShowGroup"/> - <button label="Devolver..." label_selected="Devolver..." name="ReturnGroup..." tool_tip="Devolver los objetos a sus propietarios."/> - <text length="1" name="Owned by others:" type="string"> + <button label="Mostrar" label_selected="Mostrar" name="ShowGroup" right="-135" width="60"/> + <button label="Devolver..." label_selected="Devolver..." name="ReturnGroup..." tool_tip="Devolver los objetos a sus propietarios." right="-10" width="119"/> + <text length="1" name="Owned by others:" type="string" left="14" width="128"> Propiedad de otros: </text> - <text name="other_objects_text"> + <text name="other_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Mostrar" label_selected="Mostrar" name="ShowOther"/> - <button label="Devolver..." label_selected="Devolver..." name="ReturnOther..." tool_tip="Devolver los objetos a sus propietarios."/> - <text length="1" name="Selected / sat upon:" type="string"> + <button label="Mostrar" label_selected="Mostrar" name="ShowOther" right="-135" width="60"/> + <button label="Devolver..." label_selected="Devolver..." name="ReturnOther..." tool_tip="Devolver los objetos a sus propietarios." right="-10" width="119"/> + <text length="1" name="Selected / sat upon:" type="string" left="14" width="193" > Seleccionados / con gente sentada: </text> - <text name="selected_objects_text"> + <text name="selected_objects_text" left="214" width="48"> [COUNT] </text> - <text name="Autoreturn"> + <text name="Autoreturn" left="4" width="412" > Autodevolución de objetos a otros residentes (minutos; 0 la desactiva): </text> - <text length="1" name="Object Owners:" type="string"> + <line_editor name="clean other time" right="-20" /> + <text length="1" name="Object Owners:" type="string" width="150"> Propietarios de los objetos: </text> - <button label="Actualizar la lista" label_selected="Actualizar la lista" name="Refresh List"/> - <button label="Devolver los objetos..." label_selected="Devolver los objetos..." name="Return objects..."/> + <button label="Actualizar la lista" label_selected="Actualizar la lista" name="Refresh List" left="158"/> + <button label="Devolver los objetos..." label_selected="Devolver los objetos..." name="Return objects..." left="270" width="164"/> <name_list name="owner list"> <column label="Tipo" name="type"/> <column label="Nombre" name="name"/> @@ -231,27 +268,78 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <check_box label="Editar el terreno" name="edit land check" tool_tip="Si se marca, cualquiera podrá modificar su terreno. Mejor dejarlo desmarcado, pues usted siempre puede modificar su terreno."/> <check_box label="Crear hitos" name="check landmark"/> <check_box label="Volar" name="check fly" tool_tip="Si se marca, los residentes podrán volar en su terreno. Si no, sólo podrán volar al cruzarlo o hasta que aterricen en él."/> - <text length="1" name="allow_label2" type="string"> + <text length="1" name="allow_label2" type="string" left="162" > Crear objetos: </text> - <check_box label="Todos los residentes" name="edit objects check"/> - <check_box label="El grupo" name="edit group objects check"/> - <text length="1" name="allow_label3" type="string"> + <check_box label="Todos los residentes" name="edit objects check" left="255" /> + <check_box label="El grupo" name="edit group objects check" left="385" /> + <text length="1" name="allow_label3" type="string" left="162"> Dejar objetos: </text> - <check_box label="Todos los residentes" name="all object entry check"/> - <check_box label="El grupo" name="group object entry check"/> - <text length="1" name="allow_label4" type="string"> + <check_box label="Todos los residentes" name="all object entry check" left="255"/> + <check_box label="El grupo" name="group object entry check" left="385"/> + <text length="1" name="allow_label4" type="string" left="162"> Ejecutar scripts: </text> - <check_box label="Todos los residentes" name="check other scripts"/> - <check_box label="El grupo" name="check group scripts"/> + <check_box label="Todos los residentes" name="check other scripts" left="255"/> + <check_box label="El grupo" name="check group scripts" left="385"/> <text length="1" name="land_options_label" type="string"> Opciones del terreno: </text> <check_box label="Seguro (sin daño)" name="check safe" tool_tip="Si se marca, convierte el terreno en 'seguro', desactivando el daño en combate. Si no, se activa el daño en combate."/> <check_box label="Sin 'empujones'" name="PushRestrictCheck" tool_tip="Previene scripts que empujen. Marcando esta opción prevendrá que en su terreno haya comportamientos destructivos."/> <check_box label="Mostrar la parcela en Buscar (30 L$/semana) en" name="ShowDirectoryCheck" tool_tip="Let people see this parcel in search results"/> + <string name="search_enabled_tooltip"> + Permitir que aparezca esta parcela en los resultados de la búsqueda + </string> + <string name="search_disabled_small_tooltip"> + Esta opción está desactivada porque la parcela tiene 128 m² o menos. +Sólo las parcelas más grandes pueden listarse en la búsqueda. + </string> + <string name="search_disabled_permissions_tooltip"> + Esta opción no esta activada porque usted no puede modificar las opciones de la parcela. + </string> + <combo_box name="land category with adult"> + <combo_item name="AnyCategory"> + Cualquier categorÃa + </combo_item> + <combo_item name="LindenLocation"> + Localización Linden + </combo_item> + <combo_item name="Adult"> + 'Adult' + </combo_item> + <combo_item name="Arts&Culture"> + Arte y Cultura + </combo_item> + <combo_item name="Business"> + Negocios + </combo_item> + <combo_item name="Educational"> + Educativo + </combo_item> + <combo_item name="Gaming"> + Juegos de azar + </combo_item> + <combo_item name="Hangout"> + Entretenimiento + </combo_item> + <combo_item name="NewcomerFriendly"> + Para recién llegados + </combo_item> + <combo_item name="Parks&Nature"> + Parques y Naturaleza + </combo_item> + <combo_item name="Residential"> + Residencial + </combo_item> + <combo_item name="Shopping"> + Compras + </combo_item> + <combo_item name="Other"> + Otra + </combo_item> + </combo_box> <combo_box name="land category"> <combo_item name="AnyCategory"> Cualquier categorÃa @@ -259,7 +347,6 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s <combo_item name="LindenLocation"> Localización Linden </combo_item> - <combo_item name="Arts&Culture"> Arte y Cultura </combo_item> @@ -292,7 +379,19 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s </combo_item> </combo_box> <button label="?" label_selected="?" name="?"/> - <check_box name="MatureCheck" /> + <check_box label="Contenido 'Mature'" name="MatureCheck" tool_tip=""/> + <string name="mature_check_mature"> + Contenido 'Mature' + </string> + <string name="mature_check_adult"> + Contenido 'Adult' + </string> + <string name="mature_check_mature_tooltip"> + La información o el contenido de su parcela se considera 'Mature'. + </string> + <string name="mature_check_adult_tooltip"> + La información o el contenido de su parcela se considera 'Adult'. + </string> <text length="1" name="Snapshot:" type="string"> Foto: </text> @@ -327,64 +426,60 @@ Vaya al menú Mundo > Acerca del terreno o seleccione otra parcela para ver s </string> </panel> <panel label="Media" name="land_media_panel"> - <text name="with media:"> + <text name="with media:" width="85"> Tipo de media: </text> - <combo_box name="media type" tool_tip="Especifique si la URL es una pelÃcula, una web, u otro media"/> - <text name="at URL:"> + <combo_box name="media type" tool_tip="Especifique si la URL es una pelÃcula, una web, u otro media" left="97" /> + <text name="at URL:" width="85"> URL del media: </text> + <line_editor left="97" name="media_url"/> <button label="Definir..." label_selected="Definir..." name="set_media_url"/> <text name="Description:"> Descripción: </text> - <line_editor name="url_description" tool_tip="Texto a mostrar cerca del botón play/cargar"/> + <line_editor name="url_description" tool_tip="Texto a mostrar cerca del botón play/cargar" left="97" /> <text length="1" name="Media texture:" type="string"> Cambiar la textura: </text> - <texture_picker label="" name="media texture" tool_tip="Pulse para elegir una imagen"/> - <text name="replace_texture_help"> - (Los objetos que usen esta textura mostrarán la pelÃcula o la web -cuando pulse la flecha de play) + <texture_picker label="" name="media texture" tool_tip="Pulse para elegir una imagen" left="97" /> + <text name="replace_texture_help" width="285"> + (Los objetos que usen esta textura mostrarán la +pelÃcula o la web cuando pulse la flecha de play.) </text> <text name="Options:"> Opciones de los media: </text> - <check_box label="Escala automática" name="media_auto_scale" tool_tip="Marcando esta opción, se ajustará el tamaño del contenido automáticamente. Puede ser ligeramente más lento y con menor calidad visual, pero no tendrá que ajustar ni alinear ninguna textura."/> + <check_box left="97" label="Escala automática" name="media_auto_scale" tool_tip="Marcando esta opción, se ajustará el tamaño del contenido automáticamente. Puede ser ligeramente más lento y con menor calidad visual, pero no tendrá que ajustar ni alinear ninguna textura."/> <check_box label="Media en bucle" name="media_loop" tool_tip="Ejecuta el media en bucle: cuando acaba su ejecución, vuelve a empezar."/> - <check_box label="Ocultar la URL del media" name="hide_media_url" tool_tip="Marcando esta opción esconderá en la información de esta parcela -a quien no esté autorizado a verla- la URL del media. Note que esto no está disponible para HTML."/> + <check_box left="97" label="Ocultar la URL del media" name="hide_media_url" tool_tip="Marcando esta opción esconderá en la información de esta parcela -a quien no esté autorizado a verla- la URL del media. Note que esto no está disponible para HTML."/> <check_box label="Ocultar la URL de la música" name="hide_music_url" tool_tip="Marcando esta opción esconderá en la información de esta parcela -a quien no esté autorizado a verla- la URL de la música"/> - <text name="media_size" tool_tip="Tamaño en el que mostrar las web (marque 0 para por defecto)."> + <text name="media_size" tool_tip="Tamaño en el que mostrar las web (marque 0 para por defecto)." left="102" width="120"> Tamaño del media: </text> - <spinner name="media_size_width" tool_tip="Tamaño en el que mostrar las web (marque 0 para por defecto)."/> + <spinner left_delta="104" name="media_size_width" tool_tip="Tamaño en el que mostrar las web (marque 0 para por defecto)."/> <spinner name="media_size_height" tool_tip="Tamaño en el que mostrar las web (marque 0 para por defecto)."/> <text name="pixels"> pÃxeles </text> - <text name="MusicURL:"> - URL de la música: + <text name="MusicURL:" bottom_delta="-28" > + URL de la +música: </text> + <line_editor bottom_delta="-12" left="97" name="music_url"/> <text name="Sound:"> Sonido: </text> - <check_box label="Limitar el sonido a sólo esta parcela" name="check sound local"/> + <check_box left="97" label="Limitar los gestos y los sonidos de objetos a esta parcela" name="check sound local"/> + <button label="?" label_selected="?" name="?" left="424"/> <text name="Voice settings:"> Voz: </text> - <radio_group name="parcel_voice_channel"> - <radio_item name="Estate"> - Usar el canal del estado - </radio_item> - <radio_item name="Private"> - Usar un canal privado - </radio_item> - <radio_item name="Disabled"> - Desactivar el audio ambiental en esta parcela - </radio_item> - </radio_group> + <check_box left="97" label="Activar la voz" name="parcel_enable_voice_channel"/> + <check_box left="97" label="Activar la voz (establecido por el Estado)" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box left="117" label="Limitar la voz a esta parcela" name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="Acceso" name="land_access_panel"> <text length="1" name="Limit access to this parcel to:" type="string"> diff --git a/indra/newview/skins/default/xui/es/floater_avatar_picker.xml b/indra/newview/skins/default/xui/es/floater_avatar_picker.xml index a75243cb38e79bbafcd7306fe125138415b92db9..105111f29fa1c6c5b9e4a0cdfa300aa51001fba1 100644 --- a/indra/newview/skins/default/xui/es/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/es/floater_avatar_picker.xml @@ -1,15 +1,40 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatarpicker" title="Elegir a un residente"> - <text name="instruct_search_resident_name"> - Escriba parte del nombre del residente: - </text> - <button label="Encontrar" label_selected="Encontrar" name="Find"/> - <text name="Or select their calling card:"> - O elija una tarjeta de visita: - </text> - <button label="Cerrar" label_selected="Cerrar" name="Close"/> + <tab_container name="ResidentChooserTabs"> + <panel label="Buscar" name="SearchPanel"> + <text name="InstructSearchResidentName"> + Escriba parte del nombre del residente: + </text> + <button label="Buscar" label_selected="Buscar" name="Find"/> + </panel> + <panel label="Tarjetas de visita" name="CallingCardsPanel"> + <text name="InstructSelectCallingCard"> + Elija una tarjeta de visita: + </text> + </panel> + <panel label="Cercanos" name="NearMePanel"> + <text name="InstructSelectResident"> + Seleccionar un residente cercano: + </text> + <button label="Actualizar la lista" label_selected="Actualizar la lista" name="Refresh"/> + <slider label="Alcance" name="near_me_range"/> + <text name="meters"> + Metros + </text> + </panel> + </tab_container> <button label="Elegir" label_selected="Elegir" name="Select"/> - <string name="NotFound"> + <button label="Cancelar" label_selected="Cancelar" name="Cancel"/> + <string name="not_found"> No se ha encontrado '[TEXT]' </string> + <string name="no_one_near"> + No hay nadie cerca + </string> + <string name="no_results"> + Sin resultados + </string> + <string name="searching"> + Buscando... + </string> </floater> diff --git a/indra/newview/skins/default/xui/es/floater_bulk_perms.xml b/indra/newview/skins/default/xui/es/floater_bulk_perms.xml new file mode 100644 index 0000000000000000000000000000000000000000..32517130743d48d73e159658a3b2200a5b290064 --- /dev/null +++ b/indra/newview/skins/default/xui/es/floater_bulk_perms.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floaterbulkperms" title="Cambio masivo de los permisos del contenido"> + <text name="applyto"> + Tipos de contenido + </text> + <check_box label="Animación" name="check_animation"/> + <check_box label="Partes del cuerpo" name="check_bodypart"/> + <check_box label="Ropa" name="check_clothing"/> + <check_box label="Gestos" name="check_gesture"/> + <check_box label="Hitos" name="check_landmark"/> + <check_box label="Notas" name="check_notecard"/> + <check_box label="Objetos" name="check_object"/> + <check_box label="Scripts" name="check_script"/> + <check_box label="Sonidos" name="check_sound"/> + <check_box label="Texturas" name="check_texture"/> + <button label="Marcar todo" label_selected="Todo" name="check_all"/> + <button label="Desmarcar todo" label_selected="Ninguno" name="check_none"/> + <text name="newperms"> + Permisos nuevos + </text> + <check_box label="Compartir con el grupo" name="share_with_group"/> + <check_box label="Permitir a cualquiera que lo copie" name="everyone_copy"/> + <text name="NextOwnerLabel"> + El próximo propietario puede: + </text> + <check_box label="Modificarlo" name="next_owner_modify"/> + <check_box label="Copiarlo" name="next_owner_copy"/> + <check_box label="Revenderlo/Darlo" name="next_owner_transfer"/> + <button label="Ayuda" name="help"/> + <button label="Aplicar" name="apply"/> + <button label="Cerrar" name="close"/> + <string name="nothing_to_modify_text"> + Lo seleccionado tiene contenidos no editables. + </string> + <string name="status_text"> + Configurando los permisos de [NAME] + </string> + <string name="start_text"> + Iniciando el cambio de permisos solicitado... + </string> + <string name="done_text"> + Finalizado el cambio de permisos solicitado. + </string> +</floater> diff --git a/indra/newview/skins/default/xui/es/floater_buy_currency.xml b/indra/newview/skins/default/xui/es/floater_buy_currency.xml index 03a6d511ab33841045e6552e32c708b2cfc82047..b26a9c7494ce82301d275c85641ef28af1f0cf57 100644 --- a/indra/newview/skins/default/xui/es/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/es/floater_buy_currency.xml @@ -3,10 +3,10 @@ <text name="info_buying"> Comprando dinero: </text> - <text name="info_cannot_buy"> + <text name="info_cannot_buy" left="5" right="-5"> No puede comprar en este momento: </text> - <text name="info_need_more"> + <text name="info_need_more" left="5" right="-5"> Necesita más dinero: </text> <text name="error_message"> @@ -16,8 +16,8 @@ <text name="contacting"> Contactando con el LindeX... </text> - <text name="buy_action_unknown"> - Comprar L$ en el sistema LindeX de cambio de moneda + <text name="buy_action_unknown" right="-5"> + Comprar L$ en el sistema LindeX de cambio </text> <text name="buy_action"> [NAME] [PRICE] L$ @@ -52,7 +52,7 @@ <text name="total_amount"> [AMT] L$ </text> - <text name="purchase_warning_repurchase"> + <text name="purchase_warning_repurchase" right="-10"> Confirmando esta compra sólo compra la moneda. Tendrá que intentar de nuevo la operación. </text> diff --git a/indra/newview/skins/default/xui/es/floater_buy_land.xml b/indra/newview/skins/default/xui/es/floater_buy_land.xml index ed48831d92e40dd9640e58f9843cbef9c08f1f47..a0d3734bbbad324cd3bc81b92b033a79dff5bf49 100644 --- a/indra/newview/skins/default/xui/es/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/es/floater_buy_land.xml @@ -6,6 +6,12 @@ <text name="region_name_text"> (desconocida) </text> + <text name="region_type_label"> + Tipo: + </text> + <text name="region_type_text"> + (desconocido) + </text> <text name="estate_name_label"> Estado: </text> @@ -22,10 +28,10 @@ El terreno comprado en esta región: </text> <text name="resellable_clause"> - El terreno comprado en esta región puede o no puede ser revendido. + Podrá o no revenderse. </text> <text name="changeable_clause"> - puede o no puede ser unido o subdividido. + Podrá o no unirse o dividirse. </text> <text name="covenant_text"> Deve aceptar el Contrato del Estado: @@ -50,7 +56,9 @@ Precio: </text> <text name="info_price"> - 1500 L$, objetos incluidos + 1500 L$ +(1.1 L$/m²) +incluyendo los objetos </text> <text name="info_action"> Al comprar este terreno: @@ -80,8 +88,8 @@ Aumenta su cuota mensual por uso de terreno a 40 US$/mes. </text> <text name="land_use_reason"> - Usted es propietario de 1.309 m² de terreno. -Esta parcela tiene 512 m² de terreno. + Usted posee 1309 m² de terreno. +Esta parcela mide 512 m². </text> <text name="purchase_action"> Pagar al residente Joe 4.000 L$ por el terreno @@ -184,7 +192,7 @@ Inténtelo seleccionando un área más pequeña. Pagar por este terreno [AMOUNT] L$ a [SELLER] </string> <string name="buy_for_US"> - Comprar [AMOUNT] L$ por, aprox., [AMOUNT2] US$ , + Comprar [AMOUNT] L$ por, aprox., [AMOUNT2] US$, </string> <string name="parcel_meters"> Esta parcela tiene [AMOUNT] m². @@ -202,6 +210,14 @@ admite [AMOUNT2] objetos <string name="sold_with_objects"> vendido con los objetos </string> + <string name="sold_without_objects"> + objetos no incluidos + </string> + <string name="info_price_string"> + [PRICE] L$ +([PRICE_PER_SQM] L$/m²) +[SOLD_WITH_OBJECTS] + </string> <string name="insufficient_land_credits"> Antes de que se complete la compra, el grupo [GROUP] necesitará los suficientes créditos de uso en contribución de terreno diff --git a/indra/newview/skins/default/xui/es/floater_customize.xml b/indra/newview/skins/default/xui/es/floater_customize.xml index 4922d0817858a30dcae22237ab1a7f16d39b7ba7..fa3113faf7dcc97853fbc2a8398e86f169d9cdca 100644 --- a/indra/newview/skins/default/xui/es/floater_customize.xml +++ b/indra/newview/skins/default/xui/es/floater_customize.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater customize" title="Apariencia"> - <tab_container name="customize tab container"> +<floater name="floater customize" title="Apariencia" width="527"> + <tab_container name="customize tab container" width="525"> <panel label="Partes del cuerpo" name="body_parts_placeholder"/> - <panel label="Forma" name="Shape"> + <panel label="Forma" name="Shape" width="389"> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> <button label="Cuerpo" label_selected="Cuerpo" name="Body"/> <button label="Cabeza" label_selected="Cabeza" name="Head"/> @@ -21,7 +21,6 @@ Varón </radio_item> </radio_group> - <button label="Aleatoria" label_selected="Aleatoria" name="Randomize"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -38,21 +37,24 @@ Situada en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase una forma nueva arrastrando una desde su inventario hasta su avatar. O parta de cero creando una nueva y vistiéndola. + Póngase una forma nueva arrastrando una desde su inventario hasta su +avatar. O parta de cero creando una nueva y vistiéndola. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Forma: + </text> <button label="Crear una forma nueva" label_selected="Crear una forma nueva" name="Create New"/> - <button label="Quitarla" label_selected="Quitarla" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> </panel> <panel label="Piel" name="Skin"> - <button label="Color de piel" label_selected="Color de piel" name="Skin Color"/> - <button label="Detalles faciales" label_selected="Detalles faciales" name="Face Detail"/> - <button label="Maquillaje" label_selected="Maquillaje" name="Makeup"/> - <button label="Detalles del cuerpo" label_selected="Detalles del cuerpo" name="Body Detail"/> + <button label="Color de piel" label_selected="Color de piel" name="Skin Color" width="115"/> + <button label="Detalles faciales" label_selected="Detalles faciales" name="Face Detail" width="115"/> + <button label="Maquillaje" label_selected="Maquillaje" name="Makeup" width="115"/> + <button label="Detalles del cuerpo" label_selected="Detalles del cuerpo" name="Body Detail" width="115"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -69,19 +71,21 @@ Situada en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otra piel arrastrando una desde su inventario hasta su avatar. O parta de cero creando una nueva y vistiéndola. + Póngase otra piel arrastrando una desde su inventario hasta su +avatar. O parta de cero creando una nueva y vistiéndola. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> - <texture_picker label="Tatuajes de la cabeza" name="Head Tattoos" tool_tip="Pulse para elegir una imagen"/> - <texture_picker label="Tatuajes superiores" name="Upper Tattoos" tool_tip="Pulse para elegir una imagen"/> - <texture_picker label="Tatuajes inferiores" name="Lower Tattoos" tool_tip="Pulse para elegir una imagen"/> - <button label="Aleatoria" label_selected="Aleatoria" name="Randomize"/> + <text name="Item Action Label" right="107"> + Piel: + </text> + <texture_picker width="90" label="Tatuaje: cabeza" name="Head Tattoos" tool_tip="Pulse para elegir una imagen"/> + <texture_picker width="90" label="Tatuaje: superior" name="Upper Tattoos" tool_tip="Pulse para elegir una imagen"/> + <texture_picker width="90" label="Tatuaje: inferior" name="Lower Tattoos" tool_tip="Pulse para elegir una imagen"/> <button label="Crear una piel nueva" label_selected="Crear una piel nueva" name="Create New"/> - <button label="Quitarla" label_selected="Quitarla" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Pelo" name="Hair"> @@ -105,17 +109,19 @@ Situado en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otro pelo arrastrando uno desde su inventario hasta su avatar. O parta de cero creando uno nueva y vistiéndolo. + Póngase otro pelo arrastrando uno desde su inventario hasta su +avatar. O parta de cero creando uno nueva y vistiéndolo. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Pelo: + </text> <texture_picker label="Textura" name="Texture" tool_tip="Pulse para elegir una imagen"/> - <button label="Aleatorio" label_selected="Aleatorio" name="Randomize"/> <button label="Crear un pelo nuevo" label_selected="Crear un pelo nuevo" name="Create New"/> - <button label="Quitarlo" label_selected="Quitarlo" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Ojos" name="Eyes"> @@ -135,17 +141,19 @@ Situados en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otros ojos arrastrando unos desde su inventario hasta su avatar. O parta de cero creando unos nuevos y vistiéndoselos. + Póngase otros ojos arrastrando unos desde su inventario hasta su +avatar. O parta de cero creando unos nuevos y vistiéndoselos. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Ojos: + </text> <texture_picker label="Iris" name="Iris" tool_tip="Pulse para elegir una imagen"/> - <button label="Aleatorios" label_selected="Aleatorios" name="Randomize"/> <button label="Crear unos ojos nuevos" label_selected="Crear unos ojos nuevos" name="Create New"/> - <button label="Quitarlos" label_selected="Quitarlos" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Ropa" name="clothes_placeholder"/> @@ -154,8 +162,8 @@ <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> <button label="Crear una falda nueva" label_selected="Crear una falda nueva" name="Create New"/> <button label="Quitarla" label_selected="Quitarla" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> <text length="1" name="title" type="string"> [DESC] @@ -173,19 +181,23 @@ Situada en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otra camisa arrastrando una desde su inventario hasta su avatar. O parta de cero creando una nueva y vistiéndola. + Póngase otra camisa arrastrando una desde su inventario hasta su +avatar. O parta de cero creando una nueva y vistiéndola. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Camiseta: + </text> </panel> <panel label="Pantalones" name="Pants"> <texture_picker label="Tela" name="Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> - <button label="Crear unos pantalones nuevos" label_selected="Crear unos pantalones nuevos" name="Create New"/> + <button label="Crear unos pantalones nuevos" label_selected="Crear unos pantalones nuevos" name="Create New" width="185"/> <button label="Quitarlos" label_selected="Quitarlos" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> <text length="1" name="title" type="string"> [DESC] @@ -203,11 +215,15 @@ Situados en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otros pantalones arrastrando unos desde su inventario hasta su avatar. O parta de cero creando unos nuevos y vistiéndoselos. + Póngase otros pantalones arrastrando unos desde su inventario hasta su +avatar. O parta de cero creando unos nuevos y vistiéndoselos. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Pantalones: + </text> </panel> <panel label="Shoes" name="Shoes"> <text length="1" name="title" type="string"> @@ -226,17 +242,21 @@ Situados en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otros zapatos arrastrando unos desde su inventario hasta su avatar. O parta de cero creando unos nuevos y vistiéndoselos. + Póngase otros zapatos arrastrando unos desde su inventario hasta su +avatar. O parta de cero creando unos nuevos y vistiéndoselos. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Zapatos: + </text> <texture_picker label="Tela" name="Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> <button label="Crear unos zapatos nuevos" label_selected="Crear unos zapatos nuevos" name="Create New"/> <button label="Quitarlos" label_selected="Quitarlos" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Calcetines" name="Socks"> @@ -256,17 +276,21 @@ Situados en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otros calcetines arrastrando unos desde su inventario hasta su avatar. O parta de cero creando unos nuevos y vistiéndoselos. + Póngase otros calcetines arrastrando unos desde su inventario hasta su +avatar. O parta de cero creando unos nuevos y vistiéndoselos. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Calcetines: + </text> <texture_picker label="Tela" name="Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> - <button label="Crear unos calcetines nuevos" label_selected="Crear unos calcetines nuevos" name="Create New"/> + <button label="Crear unos calcetines nuevos" label_selected="Crear unos calcetines nuevos" name="Create New" width="185"/> <button label="Quitarlos" label_selected="Quitarlos" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Chaqueta" name="Jacket"> @@ -286,18 +310,22 @@ Situada en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otra chaqueta arrastrando una desde su inventario hasta su avatar. O parta de cero creando una nueva y vistiéndola. + Póngase otra chaqueta arrastrando una desde su inventario hasta su +avatar. O parta de cero creando una nueva y vistiéndola. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Chaqueta: + </text> <texture_picker label="Tela superior" name="Upper Fabric" tool_tip="Pulse para elegir una imagen"/> <texture_picker label="Tela inferior" name="Lower Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> <button label="Crear una chaqueta nueva" label_selected="Crear una chaqueta nueva" name="Create New"/> <button label="Quitarla" label_selected="Quitarla" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Guantes" name="Gloves"> @@ -317,17 +345,21 @@ Situados en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otros guantes arrastrando unos desde su inventario hasta su avatar. O parta de cero creando unos nuevos y vistiéndoselos. + Póngase otros guantes arrastrando unos desde su inventario hasta su +avatar. O parta de cero creando unos nuevos y vistiéndoselos. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Guantes: + </text> <texture_picker label="Tela" name="Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> <button label="Crear unos guantes nuevos" label_selected="Crear unos guantes nuevos" name="Create New"/> <button label="Quitarlos" label_selected="Quitarlos" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Camiseta" name="Undershirt"> @@ -347,17 +379,21 @@ Situada en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otra camiseta arrastrando una desde su inventario hasta su avatar. O parta de cero creando una nueva y vistiéndola. + Póngase otra camiseta arrastrando una desde su inventario hasta su +avatar. O parta de cero creando una nueva y vistiéndola. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Camiseta: + </text> <texture_picker label="Tela" name="Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> <button label="Crear una camiseta nueva" label_selected="Crear una camiseta nueva" name="Create New"/> <button label="Quitarla" label_selected="Quitarla" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Ropa interior" name="Underpants"> @@ -377,17 +413,21 @@ Situada en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otra ropa interior arrastrando una desde su inventario hasta su avatar. O parta de cero creando una nueva y vistiéndola. + Póngase otra ropa interior arrastrando una desde su inventario hasta su +avatar. O parta de cero creando una nueva y vistiéndola. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Ropa interior: + </text> <texture_picker label="Tela" name="Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> - <button label="Crear una ropa interior nueva" label_selected="Crear una ropa interior nueva" name="Create New"/> + <button label="Crear una ropa interior nueva" label_selected="Crear una ropa interior nueva" name="Create New" width="185"/> <button label="Quitarla" label_selected="Quitarla" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> <panel label="Falda" name="Skirt"> @@ -407,21 +447,26 @@ Situada en [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Póngase otra falda arrastrando una desde su inventario hasta su avatar. O parta de cero creando una nueva y vistiéndola. + Póngase otra falda arrastrando una desde su inventario hasta su +avatar. O parta de cero creando una nueva y vistiéndola. </text> <text length="1" name="no modify instructions" type="string"> No tiene permiso para modificar este Ãtem. </text> + <text name="Item Action Label" right="107"> + Falda: + </text> <texture_picker label="Tela" name="Fabric" tool_tip="Pulse para elegir una imagen"/> <color_swatch label="Color/Tinte" name="Color/Tint" tool_tip="Pulse para abrir el selector de color"/> <button label="Crear una falda nueva" label_selected="Crear una falda nueva" name="Create New"/> <button label="Quitarla" label_selected="Quitarla" name="Take Off"/> - <button label="Guardar" label_selected="Guardar" name="Save"/> - <button label="Guardar como" label_selected="Guardar como" name="Save As"/> + <button left="113" label="Guardar" label_selected="Guardar" name="Save"/> + <button left="199" width="102" label="Guardar como..." label_selected="Guardar como..." name="Save As"/> <button label="Restablecer" label_selected="Restablecer" name="Revert"/> </panel> </tab_container> - <button label="Cerrar" label_selected="Cerrar" name="Close"/> - <button label="Guardar todo" label_selected="Guardar todo" name="Save All"/> - <button label="Hacer un vestuario" label_selected="Hacer un vestuario" name="Make Outfit"/> + <scroll_container left="230" name="panel_container"/> + <button label="Cancelar" label_selected="Cancelar" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="Hacer un vestuario..." label_selected="Hacer un vestuario..." name="Make Outfit" width="125"/> </floater> diff --git a/indra/newview/skins/default/xui/es/floater_font_test.xml b/indra/newview/skins/default/xui/es/floater_font_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6b8087b6074fcef1cb664fbe57fdd3aca0e69c0 --- /dev/null +++ b/indra/newview/skins/default/xui/es/floater_font_test.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="Prueba de fuentes"> + <text name="linea"> + OverrideTest, deberÃa de aparecer aquà en Times. (Desde default/xui/en-us) + </text> +</floater> diff --git a/indra/newview/skins/default/xui/es/floater_joystick.xml b/indra/newview/skins/default/xui/es/floater_joystick.xml index 625086c732a9c1b36e953c7d8ae94c82955d6948..527485e57da2c32744ad7c24687999432e5616e4 100644 --- a/indra/newview/skins/default/xui/es/floater_joystick.xml +++ b/indra/newview/skins/default/xui/es/floater_joystick.xml @@ -71,6 +71,8 @@ Zona muerta zoom </text> <button label="Predeterminados del SpaceNavigator" name="SpaceNavigatorDefaults"/> + <button label="OK" label_selected="OK" name="ok_btn"/> + <button label="Cancelar" label_selected="Cancelar" name="cancel_btn"/> <string name="JoystickMonitor"> Monitor del joystick </string> diff --git a/indra/newview/skins/default/xui/es/floater_land_holdings.xml b/indra/newview/skins/default/xui/es/floater_land_holdings.xml index 7c18e631552051e47032fdeda30112fa5e817d26..5c08b04055061397777912d17724206844551538 100644 --- a/indra/newview/skins/default/xui/es/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/es/floater_land_holdings.xml @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="land holdings floater" title="Mi terreno"> <scroll_list name="parcel list"> - <column label="Nombre" name="name"/> - <column label="Localización" name="location"/> + <column label="Nombre de la parcela" name="name"/> + <column label="Región" name="location"/> + <column label="Tipo" name="type"/> <column label="Superficie" name="area"/> <column label="" name="hidden"/> </scroll_list> diff --git a/indra/newview/skins/default/xui/es/floater_perm_prefs.xml b/indra/newview/skins/default/xui/es/floater_perm_prefs.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a3977be3d427fd808f350f23869cb2219ea1cd9 --- /dev/null +++ b/indra/newview/skins/default/xui/es/floater_perm_prefs.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="perm prefs" title="Permisos de subida por defecto"> + <panel label="Permisos" name="permissions"> + <button label="?" label_selected="?" name="help"/> + <check_box label="Compartir con el grupo" name="share_with_group"/> + <check_box label="Permitir a cualquiera que lo copie" name="everyone_copy"/> + <text name="NextOwnerLabel"> + El próximo propietario puede: + </text> + <check_box label="Modificarlo" name="next_owner_modify"/> + <check_box label="Copiarlo" name="next_owner_copy"/> + <check_box label="Revenderlo/Darlo" name="next_owner_transfer"/> + </panel> + <button label="OK" label_selected="OK" name="ok"/> + <button label="Cancelar" label_selected="Cancelar" name="cancel"/> +</floater> diff --git a/indra/newview/skins/default/xui/es/floater_report_abuse.xml b/indra/newview/skins/default/xui/es/floater_report_abuse.xml index 4e1782995c1ff0c09ef81bbe511430e5eddc9bc1..0624f48a013c03a284614b0202078fc2b5a90a68 100644 --- a/indra/newview/skins/default/xui/es/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/es/floater_report_abuse.xml @@ -46,9 +46,9 @@ <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> Edad > Residente adulto en Teen Second Life </combo_item> - - - + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + Edad > Residente menor de edad fuera de Teen Second Life + </combo_item> <combo_item name="Assault__Combat_sandbox___unsafe_area"> Ataque > Sandbox de combate / Zona no segura </combo_item> @@ -118,15 +118,15 @@ <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> Indecencia > En general, contenido o conducta ofensivos </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> Indecencia > Nombre inapropiado del avatar </combo_item> - - - + <combo_item name="Indecency__Mature_content_in_PG_region"> + Indecencia > Contenido o conducta inapropiada en una región 'PG' + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + Indecencia > Contenido o conducta inapropiada en una región 'Mature' + </combo_item> <combo_item name="Intellectual_property_infringement_Content_Removal"> Infracción de la propiedad intelectual > Eliminación de contenidos </combo_item> diff --git a/indra/newview/skins/default/xui/es/floater_sell_land.xml b/indra/newview/skins/default/xui/es/floater_sell_land.xml index 1be3379c7c29f3b9a1a6234322cf9629cbd34aee..26aa56f22bb648d2ca3ee74645fc9e92884dce0b 100644 --- a/indra/newview/skins/default/xui/es/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/es/floater_sell_land.xml @@ -15,6 +15,7 @@ <text name="info_action"> Vender esta parcela: </text> + <icon bottom_delta="-56" name="step_price" /> <text name="price_label"> Marque un precio: </text> @@ -49,9 +50,10 @@ ¿Vender los objetos con el terreno? </text> <text name="sell_objects_text"> - Los objetos transferibles del propietario del terreno cambiarán de propietario. + Los objetos transferibles del propietario del terreno cambiarán +de propietario. </text> - <radio_group name="sell_objects"> + <radio_group name="sell_objects" bottom_delta="-58" > <radio_item name="no"> No, mantener la propiedad de los objetos </radio_item> @@ -59,7 +61,7 @@ SÃ, vender los objetos con el terreno </radio_item> </radio_group> - <button label="Mostrar los objetos" name="show_objects"/> + <button label="Mostrar los objetos" name="show_objects" width="120"/> <text name="nag_message_label"> RECUERDE: todas las ventas son definitivas. </text> diff --git a/indra/newview/skins/default/xui/es/floater_sound_preview.xml b/indra/newview/skins/default/xui/es/floater_sound_preview.xml index 3e92b2423d2b470c7726eab14b36c75fd3a15cd0..e69ac1012343df32d35eb9b72383d8f59ebacbc1 100644 --- a/indra/newview/skins/default/xui/es/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/es/floater_sound_preview.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Name/Description" title="sound.wav"> +<floater name="Sound Preview" title="sound.wav"> <text name="name_label"> Nombre: </text> diff --git a/indra/newview/skins/default/xui/es/floater_statistics.xml b/indra/newview/skins/default/xui/es/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..6e644cacf1fa4b26f8caff6297c9f098bf7c1f4b --- /dev/null +++ b/indra/newview/skins/default/xui/es/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="EstadÃsticas"/> diff --git a/indra/newview/skins/default/xui/es/floater_tools.xml b/indra/newview/skins/default/xui/es/floater_tools.xml index 0f3a3fd217e524c1d24e9638d34de49848d4453e..15c66c836617c2518f1c0280ca800060a6631859 100644 --- a/indra/newview/skins/default/xui/es/floater_tools.xml +++ b/indra/newview/skins/default/xui/es/floater_tools.xml @@ -17,7 +17,7 @@ <check_box label="Elegir la cara" name="radio select face"/> <check_box label="Editar las partes enlazadas" name="checkbox edit linked parts"/> <text name="text ruler mode"> - Modo de ajuste: + Ajuste: </text> <combo_box name="combobox grid mode"> <combo_item name="World"> @@ -52,35 +52,33 @@ <button label="" label_selected="" name="ToolRing" tool_tip="Cono truncado"/> <button label="" label_selected="" name="ToolTree" tool_tip="Ãrbol"/> <button label="" label_selected="" name="ToolGrass" tool_tip="Hierba"/> - <check_box label="Mantener esta herramienta" name="checkbox sticky"/> - <check_box label="Copiar la selección" name="checkbox copy selection"/> - <check_box label="Copia centrada" name="checkbox copy centers"/> - <check_box label="Copia girada" name="checkbox copy rotates"/> + <check_box label="Mantener seleccionado" name="checkbox sticky"/> + <check_box label="Copia seleccionada" name="checkbox copy selection"/> + <check_box label="Centrada" name="checkbox copy centers"/> + <check_box label="Girada" name="checkbox copy rotates"/> <check_box label="Seleccionar el terreno" name="radio select land"/> - <check_box label="Nivelar el terreno" name="radio flatten"/> - <check_box label="Elevar el terreno" name="radio raise"/> - <check_box label="Bajar el terreno" name="radio lower"/> - <check_box label="Suavizar el terreno" name="radio smooth"/> - <check_box label="Escarpar el terreno" name="radio noise"/> - <check_box label="Restablecer el terreno" name="radio revert"/> - <combo_box name="combobox brush size"> - <combo_item name="Small"> - Pequeño - </combo_item> - <combo_item name="Medium"> - Medio - </combo_item> - <combo_item name="Large"> - Grande - </combo_item> - </combo_box> + <check_box label="Nivelar" name="radio flatten"/> + <check_box label="Elevar" name="radio raise"/> + <check_box label="Bajar" name="radio lower"/> + <check_box label="Suavizar" name="radio smooth"/> + <check_box label="Escarpar" name="radio noise"/> + <check_box label="Restablecer" name="radio revert"/> + <button label="Aplicar" label_selected="Aplicar" name="button apply to selection" tool_tip="Modificar el terreno seleccionado"/> + <text name="Bulldozer:"> + Bulldozer: + </text> + <text name="Dozer Size:"> + Tamaño + </text> <text name="Strength:"> - Fuerza: + Fuerza + </text> + <text name="obj_count"> + Objetos seleccionados: [COUNT] + </text> + <text name="prim_count"> + primitivas: [COUNT] </text> - <button label="Aplicar a lo seleccionado" label_selected="Aplicar a lo seleccionado" name="button apply to selection" tool_tip="Modificar el terreno seleccionado"/> - <check_box label="Mostrar los propietarios" name="checkbox show owners"/> - <button label="Más >>" name="button more" tool_tip="Opciones avanzadas"/> - <button label="<< Menos" name="button less" tool_tip="Opciones avanzadas"/> <tab_container name="Object Info Tabs"> <panel label="General" name="General"> <text name="Name:"> @@ -110,16 +108,13 @@ Los Linden </text> <button label="Configurar..." label_selected="Configurar..." name="button set group"/> - <text name="prim info"> - 1 objeto, 1 prim - </text> <text name="Permissions:"> Permisos: </text> <text name="perm_modify"> Puede modificar este objeto. </text> - <check_box label="Compartir con el grupo" name="checkbox share with group" tool_tip="Permitir a los miembros del grupo mover, modificar, copiar, y borrar."/> + <check_box label="Compartir con el grupo" name="checkbox share with group" tool_tip="Permitir que todos los miembros del grupo compartan y utilicen sus permisos sobre este objeto. Debe transferirlo para activar las restricciones según los roles."/> <string name="text deed continued"> Transferir... </string> @@ -311,7 +306,7 @@ </combo_item> </combo_box> <text name="text cut"> - Inicio y Fin del corte + Corte: Inicio y Fin </text> <spinner label="I" name="cut begin"/> <spinner label="F" name="cut end"/> @@ -339,7 +334,7 @@ </combo_item> </combo_box> <text name="text twist"> - Inicio y Fin de la torsión + La torsión: Inicio y Fin </text> <spinner label="I" name="Twist Begin"/> <spinner label="F" name="Twist End"/> @@ -357,11 +352,14 @@ <spinner label="X" name="Shear X"/> <spinner label="Y" name="Shear Y"/> <text name="advanced_cut"> - Inicio y Fin del corte del perfil + Corte del perfil: Inicio y Fin </text> <text name="advanced_dimple"> Horadar: Inicio y Fin </text> + <text name="advanced_slice"> + Cortar: Inicio y Fin + </text> <spinner label="I" name="Path Limit Begin"/> <spinner label="F" name="Path Limit End"/> <text name="text taper2"> @@ -553,21 +551,33 @@ <button label="Alinear" label_selected="Alinear" name="button align"/> </panel> <panel label="Contenido" name="Contents"> - <button label="Script nuevo..." label_selected="Script nuevo..." name="button new script"/> + <button label="Script nuevo" label_selected="Script nuevo" name="button new script"/> + <button label="Permisos..." name="button permissions"/> </panel> </tab_container> <panel name="land info panel"> + <text name="label_parcel_info"> + Información de la parcela + </text> <text name="label_area_price"> Precio: [PRICE] L$ por [AREA] m² </text> <text name="label_area"> Superficie: [AREA] m² </text> - <button label="Comprar terreno..." label_selected="Comprar terreno..." name="button buy land"/> - <button label="Abandonar el terreno..." label_selected="Abandonar el terreno..." name="button abandon land"/> + <button label="Acerca del terreno..." label_selected="Acerca del terreno..." name="button about land"/> + <check_box label="Mostrar los propietarios" name="checkbox show owners" tool_tip="El color de las parcelas es según su propietario"/> + <button label="?" label_selected="?" name="button show owners help"/> + <text name="label_parcel_modify"> + Modificar la parcela + </text> <button label="Subdividir..." label_selected="Subdividir..." name="button subdivide land"/> <button label="Unir..." label_selected="Unir..." name="button join land"/> - <button label="Acerca del terreno..." label_selected="Acerca del terreno..." name="button about land"/> + <text name="label_parcel_trans"> + Transacciones de terreno + </text> + <button label="Comprar terreno..." label_selected="Comprar terreno..." name="button buy land"/> + <button label="Abandonar el terreno..." label_selected="Abandonar el terreno..." name="button abandon land"/> </panel> <string name="status_rotate"> Arrastre las bandas de color para girar el objeto @@ -585,10 +595,10 @@ Pulse y arrastre para cambiar el punto de vista </string> <string name="status_grab"> - Arrastre para mover objetos: Ctrl, verticalmente; Ctrl-Mayús., horizontalmente + Arrastre para mover objetos: Ctrl, verticalmente; Ctrl-Mayús., para girarlos. </string> <string name="status_place"> - Pulse en el mundo para crear; mayús. y pulsar para seleccionar + Pulse en el mundo para construir </string> <string name="status_selectland"> Pulse y arrastre para seleccionar el terreno diff --git a/indra/newview/skins/default/xui/es/floater_world_map.xml b/indra/newview/skins/default/xui/es/floater_world_map.xml index d4a85477c4039e48341485007ff3533a6aebb364..aad417790f66a3f5345d3e143ac8fd0897b8ea12 100644 --- a/indra/newview/skins/default/xui/es/floater_world_map.xml +++ b/indra/newview/skins/default/xui/es/floater_world_map.xml @@ -4,42 +4,29 @@ <panel label="Objetos" name="objects_mapview"/> <panel label="Terreno" name="terrain_mapview"/> </tab_container> - <text name="land_for_sale_label"> - Terreno en venta - </text> - <text name="auction_label"> - Subasta - </text> <text name="you_label"> Usted </text> <text name="home_label"> Base </text> - <button label="Ir a la Base" label_selected="Ir a la Base" name="Go Home" tool_tip="Teleportar a su Base"/> - <text name="person_label"> - Persona - </text> - <check_box label=" " name="people_chk"/> - <text name="infohub_label"> - Punto de Información - </text> - <check_box label=" " name="infohub_chk"/> - <text name="telehub_label"> - Punto de Teleporte + <text name="auction_label"> + Subasta </text> - <check_box label=" " name="telehubchk"/> - <text name="land_for_sale_label2"> + <text name="land_for_sale_label"> Terreno en venta </text> - <check_box label=" " name="land_for_sale_chk"/> + <button label="Ir a la Base" label_selected="Ir a la Base" name="Go Home" tool_tip="Teleportar a su Base"/> + <check_box label="Residente" name="people_chk"/> + <check_box label="Punto de Info" name="infohub_chk"/> + <check_box label="Punto de Teleporte" name="telehubchk"/> + <check_box label="Terreno en venta" name="land_for_sale_chk"/> <text name="events_label"> - Eventos + Eventos: </text> - <check_box label=" " name="event_chk"/> - - - <check_box name="event_mature_chk"/> + <check_box label="'PG'" name="event_chk"/> + <check_box label="'Mature'" name="event_mature_chk"/> + <check_box label="'Adult'" name="event_adult_chk"/> <combo_box label="Amigos conectados" name="friend combo" tool_tip="Amigo a mostrar en el mapa"> <combo_item name="none_selected"> Amigos conectados diff --git a/indra/newview/skins/default/xui/es/menu_inventory.xml b/indra/newview/skins/default/xui/es/menu_inventory.xml index a503429ff953d58ca2b792d327b7116f819d20f5..557123d4f8f410037c187b6df6836e4ab7b8c61e 100644 --- a/indra/newview/skins/default/xui/es/menu_inventory.xml +++ b/indra/newview/skins/default/xui/es/menu_inventory.xml @@ -55,6 +55,7 @@ <menu_item_call label="Activar" name="Activate"/> <menu_item_call label="Desactivar" name="Deactivate"/> <menu_item_call label="Quitarse" name="Detach From Yourself"/> + <menu_item_call label="Volver a la última posición" name="Restore to Last Position"/> <menu_item_call label="Ponerse" name="Object Wear"/> <menu label="Anexar a" name="Attach To"/> <menu label="Anexar como HUD" name="Attach To HUD"/> diff --git a/indra/newview/skins/default/xui/es/menu_mini_map.xml b/indra/newview/skins/default/xui/es/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..19061cea0658412c88370303114ba3ddf12147d5 --- /dev/null +++ b/indra/newview/skins/default/xui/es/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="Zoom cerca" name="Zoom Close"/> + <menu_item_call label="Zoom medio" name="Zoom Medium"/> + <menu_item_call label="Zoom lejos" name="Zoom Far"/> + <menu_item_call label="Parar la búsqueda" name="Stop Tracking"/> + <menu_item_call label="Perfil..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/es/menu_viewer.xml b/indra/newview/skins/default/xui/es/menu_viewer.xml index 1721701c9f33142981b27e9dadcad32bd87d9d56..0712440e1f22b26d9d8139f5904710a510f00183 100644 --- a/indra/newview/skins/default/xui/es/menu_viewer.xml +++ b/indra/newview/skins/default/xui/es/menu_viewer.xml @@ -3,10 +3,12 @@ <menu label="Archivo" name="File"> <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> <menu label="Subir" name="upload"> - <menu_item_call label="Subir imagen ([COST] L$)..." name="Upload Image"/> - <menu_item_call label="Subir sonido ([COST] L$)..." name="Upload Sound"/> - <menu_item_call label="Subir animación ([COST] L$)..." name="Upload Animation"/> - <menu_item_call label="Subida masiva ([COST] L$ por archivo)..." name="Bulk Upload"/> + <menu_item_call label="Imagen ([COST] L$)..." name="Upload Image"/> + <menu_item_call label="Sonido ([COST] L$)..." name="Upload Sound"/> + <menu_item_call label="Animación ([COST] L$)..." name="Upload Animation"/> + <menu_item_call label="Masiva ([COST] L$ por archivo)..." name="Bulk Upload"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Definir los permisos por defecto..." name="perm prefs"/> </menu> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Cerrar la ventana" name="Close Window"/> @@ -81,6 +83,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_check label="EstadÃsticas" name="Statistics Bar"/> <menu_item_check label="LÃmites de las parcelas" name="Property Lines"/> + <menu_item_check label="LÃneas de prohibición" name="Banlines"/> <menu_item_check label="Propietarios del terreno" name="Land Owners"/> <menu_item_separator label="-----------" name="separator4"/> <menu label="Información adicional" name="Hover Tips"> @@ -113,7 +116,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="Pasar al estado ausente" name="Set Away"/> <menu_item_call label="Pasar al estado ocupado" name="Set Busy"/> - <menu_item_call label="Parar todas las animaciones" name="Stop All Animations"/> + <menu_item_call label="Parar la animación de mi avatar" name="Stop Animating My Avatar"/> <menu_item_call label="Recuperar las teclas" name="Release Keys"/> <menu_item_separator label="-----------" name="separator4"/> <menu_item_call label="Historial de mi cuenta..." name="Account History..."/> @@ -164,7 +167,6 @@ <menu_item_call label="Zoom en lo seleccionado" name="Zoom to Selection"/> <menu_item_call label="Comprar el objeto" name="Menu Object Take"/> <menu_item_call label="Coger una copia" name="Take Copy"/> - <menu_item_call label="Devolver una copia del objeto a mi inventario" name="Save Object Back to My Inventory"/> <menu_item_call label="Devolver una copia del objeto a los contenidos de donde salió" name="Save Object Back to Object Contents"/> <menu_item_separator label="-----------" name="separator6"/> <menu_item_call label="Ver en una ventana los errores o alertas de los scripts" name="Show Script Warning/Error Window"/> diff --git a/indra/newview/skins/default/xui/es/notifications.xml b/indra/newview/skins/default/xui/es/notifications.xml index 3d5227060155f5c6a67d13aa0784d80a904ee8c0..d7e480c653fe406450d84a44777239b99a54e914 100644 --- a/indra/newview/skins/default/xui/es/notifications.xml +++ b/indra/newview/skins/default/xui/es/notifications.xml @@ -1,15 +1,11 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> No mostrarme esto otra vez - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> Elegir siempre esta opción - </global> - + </global> <template name="okbutton"> <form> <button @@ -74,5686 +70,3007 @@ text="$canceltext"/> </form> </template> + <notification functor="GenericAcknowledge" label="Mensaje de alerta desconocida" name="MissingAlert"> + Su versión de Second Life no sabe cómo mostrar el mensaje de alerta que acaba de recibir. - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -'[_NAME]' se ha perdido en notifications.xml. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -Error: no se pudieron encontrar estos controles: +Detalles del error: no se ha encontrado en notifications.xml la alerta llamada '[_NAME]'. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + Error: no se pudieron encontrar estos controles: [CONTROLS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + Actualmente, no hay un tutorial disponible. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="SÃ"/> + </notification> + <notification name="BadInstallation"> + Ha habido un error al actualizar Second Life. Por favor, descargue la última versión desde secondlife.com. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -Actualmente, no hay un tutorial disponible. + </notification> + <notification name="LoginFailedNoNetwork"> + Error de red: no se ha podido conectar. +'[DIAGNOSTIC]' +Por favor, revise su conexión a internet. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="SÃ"/> - </notification> - - <notification - - name="WearableSave" - > -¿Guardar los cambios en las ropas o partes del cuerpo actuales? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="No guardarlos" - yestext="Guardarlos"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -Hubo un problema al subir el texto de un script por la siguiente razón: [REASON]. Por favor, inténtelo más tarde. - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -Hubo un problema al subir el script compilado por la siguiente razón: [REASON]. Por favor, inténtelo más tarde. - </notification> - - <notification - - name="WriteAnimationFail" - > -Hubo un problema al escribir los datos de la animación. Por favor, inténtelo más tarde. - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -Hubo un problema al subir la foto de la subasta por la siguiente razón: [REASON] - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -No se puede ver a la vez los contenidos de más de un Ãtem. Por favor, elija un solo objeto y vuelva a intentarlo. - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -¿Guardar todos los cambios en la ropa y partes del cuerpo? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="No guardarlos" - yestext="Guardarlos todos"/> - </notification> - - <notification - - name="GrantModifyRights" - > -Al conceder derechos de modificación a otro residente le autoriza a cambiar, borrar, o coger CUALQUIER objeto que usted tenga en el mundo. Sea MUY cuidadoso dando este permiso. ¿Quiere conceder derechos de modificación a [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -Al conceder derechos de modificación a otros residentes les autoriza a cambiar, borrar, o coger CUALQUIER objeto que usted tenga en el mundo. Sea MUY cuidadoso dando este permiso. ¿Quiere conceder derechos de modificación a los residentes seleccionados? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -¿Quiere revocar los derechos de modificación a [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -¿Quiere revocar los derechos de modificación a los residentes seleccionados? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -No se ha podido crear el grupo. -[MESSAGE] + </notification> + <notification name="MessageTemplateNotFound"> + No se ha encontrado la plantilla de mensaje [PATH]. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + </notification> + <notification name="WearableSave"> + ¿Guardar los cambios en las ropas o partes del cuerpo actuales? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="No guardarlos" yestext="Guardarlos"/> + </notification> + <notification name="CompileQueueSaveText"> + Hubo un problema al subir el texto de un script por la siguiente razón: [REASON]. Por favor, inténtelo más tarde. + </notification> + <notification name="CompileQueueSaveBytecode"> + Hubo un problema al subir el script compilado por la siguiente razón: [REASON]. Por favor, inténtelo más tarde. + </notification> + <notification name="WriteAnimationFail"> + Hubo un problema al escribir los datos de la animación. Por favor, inténtelo más tarde. + </notification> + <notification name="UploadAuctionSnapshotFail"> + Hubo un problema al subir la foto de la subasta por la siguiente razón: [REASON] + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + No se puede ver a la vez los contenidos de más de un Ãtem. Por favor, elija un solo objeto y vuelva a intentarlo. + </notification> + <notification name="SaveClothingBodyChanges"> + ¿Guardar todos los cambios en la ropa y partes del cuerpo? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="No guardarlos" yestext="Guardarlos todos"/> + </notification> + <notification name="GrantModifyRights"> + Al conceder derechos de modificación a otro residente le autoriza a cambiar, borrar, o coger CUALQUIER objeto que usted tenga en el mundo. Sea MUY cuidadoso dando este permiso. ¿Quiere conceder derechos de modificación a [FIRST_NAME] [LAST_NAME]? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + Al conceder derechos de modificación a otros residentes les autoriza a cambiar, borrar, o coger CUALQUIER objeto que usted tenga en el mundo. Sea MUY cuidadoso dando este permiso. ¿Quiere conceder derechos de modificación a los residentes seleccionados? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="RevokeModifyRights"> + ¿Quiere revocar los derechos de modificación a [FIRST_NAME] [LAST_NAME]? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + ¿Quiere revocar los derechos de modificación a los residentes seleccionados? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="UnableToCreateGroup"> + No se ha podido crear el grupo. +[MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Ignorar los cambios" - yestext="Aplicar los cambios"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -Para enviar un aviso de grupo debe especificar un asunto. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -Va a añadir miembros al rol de [ROLE_NAME]. + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Ignorar los cambios" yestext="Aplicar los cambios"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + Para enviar un aviso de grupo debe especificar un asunto. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + Va a añadir miembros al rol de [ROLE_NAME]. No podrá removérseles de ese rol, sino que deberán renunciar a él por sà mismos. ¿Está seguro de que quiere seguir? - <usetemplate - ignoretext="Cuando se añaden miembros del grupo al rol de propietario" - name="okcancelignore" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -Va a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. + <usetemplate ignoretext="Cuando se añaden miembros del grupo al rol de propietario" name="okcancelignore" notext="No" yestext="SÃ"/> + </notification> + <notification name="AssignDangerousActionWarning"> + Va a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. *ATENCIÓN* Todos los miembros con esta capacidad podrán asignarse a sà mismos -y a otros miembros- roles con mayores poderes de los que actualmente tienen. Potencialmente, podrÃan elevarse hasta poderes cercanos a los del propietario. Asegúrese de lo que está haciendo antes de otorgar esta capacidad. ¿Añadir esta capacidad a '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -Va a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + Va a añadir la capacidad '[ACTION_NAME]' al rol '[ROLE_NAME]'. *ATENCIÓN* Todos los miembros con esta capacidad podrán asignarse a sà mismos -y a otros miembros- todas las capacidades, elevándose hasta poderes cercanos a los del propietario. ¿Añadir esta capacidad a '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -Seleccionar "Publicar en la web" + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="ClickPublishHelpLand"> + Seleccionar "Publicar en la web" Marcando este Ãtem, se mostrará: - esta parcela en los resultados de la búsqueda - los objetos públicos de esta parcela - esta parcela en la búsqueda de la web - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -No puede hacer que esta parcela aparezca en la búsqueda, porque está situada en una región que lo prohÃbe. - </notification> - - <notification - - name="ClickPublishHelpAvatar" - > -Al seleccionar "Mostrar en Buscar" se mostrará: + </notification> + <notification name="ClickSoundHelpLand"> + Los media y la música sólo pueden disfrutarse dentro de la parcela. Según el nivel de calificación de los residentes, las opciones de sonido y de voz pueden ceñirse a la parcela u oÃrse fuera de ella. ¿Quiere ir a la Base de Conocimientos para aprender más sobre cómo configurar estas opciones? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Ir a la Base de Conocimientos" + notext="Cerrar" /> + </notification> + <notification name="ClickSearchHelpAll"> + Los resultados de la búsqueda se organizan según la pestaña en que esté, su nivel de calificación, la categorÃa elegida, y otros factores. Para más detalles, vea, por favor, la Base de Conocimientos. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Ir a la Base de Conocimientos" + notext="Cerrar" /> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + No puede hacer que esta parcela aparezca en la búsqueda, porque está situada en una región que lo prohÃbe. + </notification> + <notification name="ClickPublishHelpAvatar"> + Al seleccionar "Mostrar en Buscar" se mostrará: - mi perfil en los resultados de la búsqueda - un enlace a mi perfil en las páginas públicas de grupo - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -Puede proponérselo a otro residente o disolver su relación con un/a compañero/a en el sitio web de [SECOND_LIFE]. + </notification> + <notification name="ClickPartnerHelpAvatar"> + Puede proponérselo a otro residente o disolver su relación con un/a compañero/a en el sitio web de [SECOND_LIFE]. ¿Ir al sitio web de Second Life para tener más información sobre este asunto? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Ir a la página"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -Si este residente ha indicado una URL para mostrar un perfil en la web, usted puede: + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Ir a la página"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + Sus permisos por defecto no funcionarán en regiones antiguas. + </notification> + <notification name="ClickWebProfileHelpAvatar"> + Si este residente ha indicado una URL para mostrar un perfil en la web, usted puede: * Pulsar 'Cargar' para ver la página en esta pestaña web. * Pulsar Cargar > 'En un navegador externo' para ver la página en su navegador por defecto. * Pulsar Cargar > 'URL Inicio' para volver al perfil en la web de este residente si usted ha estado navegando por otros sitios. Cuando esté viendo su propio perfil, puede introducir cualquier URL como su perfil web, y pulsar OK para fijarla. Los demás residentes podrán visitar la URL que usted haya elegido cuando vean su perfil. - </notification> - - <notification - - name="JoinGroupCanAfford" - > -Entrar a este grupo cuesta [COST] L$. + </notification> + <notification name="JoinGroupCanAfford"> + Entrar a este grupo cuesta [COST] L$. ¿Quiere hacerlo?? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Entrar"/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -Entrar a este grupo cuesta [COST] L$. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Entrar"/> + </notification> + <notification name="JoinGroupCannotAfford"> + Entrar a este grupo cuesta [COST] L$. No tiene dinero suficiente para entrar. - </notification> - - <notification - - name="LandBuyPass" - > -Por [COST] L$ puede entrar a este terreno ('[PARCEL_NAME]') durante [TIME] horas. ¿Comprar un pase? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -El precio de venta tiene que ser mayor de 0 L$ si la venta es a cualquiera. + </notification> + <notification name="LandBuyPass"> + Por [COST] L$ puede entrar a este terreno ('[PARCEL_NAME]') durante [TIME] horas. ¿Comprar un pase? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + El precio de venta tiene que ser mayor de 0 L$ si la venta es a cualquiera. Por favor, elija a alguien concreto como comprador si la venta es por 0 L$. - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -Los [LAND_SIZE] m² de terreno seleccionados se van a poner a la venta. + </notification> + <notification name="ConfirmLandSaleChange"> + Los [LAND_SIZE] m² de terreno seleccionados se van a poner a la venta. Su precio de venta será de [SALE_PRICE] L$, y se autorizará la compra sólo a [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -ATENCIÓN: Al pulsar 'vender a cualquiera', su terreno estará disponible para toda la comunidad de Second Life, incluso para quienes no están en esta región. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + ATENCIÓN: Al pulsar 'vender a cualquiera', su terreno estará disponible para toda la comunidad de Second Life, incluso para quienes no están en esta región. Los [LAND_SIZE] m² de terreno seleccionados se van a poner a la venta. Su precio de venta será de [SALE_PRICE] L$, y se autorizará la compra a [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -¿Está seguro de que quiere devolver todos los objetos de esta parcela que estén compartidos con el grupo '[NAME]' al inventario de su propietario anterior? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + ¿Está seguro de que quiere devolver todos los objetos de esta parcela que estén compartidos con el grupo '[NAME]' al inventario de su propietario anterior? *ATENCIÓN* ¡Esto borrará los objetos no transferibles que se hayan cedido al grupo! Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedByUser" - > -¿Está seguro de que quiere devolver al inventario de '[NAME]' todos los objetos que sean de su propiedad en esta parcela? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + ¿Está seguro de que quiere devolver al inventario de '[NAME]' todos los objetos que sean de su propiedad en esta parcela? Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedBySelf" - > -¿Está seguro de que quiere devolver a su inventario todos los objetos de los que usted es propietario en esta parcela? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + ¿Está seguro de que quiere devolver a su inventario todos los objetos de los que usted es propietario en esta parcela? Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -¿Está seguro de que quiere devolver todos los objetos de los que usted NO es propietario en esta parcela al inventario de sus propietarios? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + ¿Está seguro de que quiere devolver todos los objetos de los que usted NO es propietario en esta parcela al inventario de sus propietarios? Los objetos transferibles que se hayan transferido al grupo se devolverán a sus propietarios previos. *ATENCIÓN* ¡Esto borrará los objetos no transferibles que se hayan cedido al grupo! Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByUser" - > -¿Está seguro de que quiere devolver todos los objetos de esta parcela que NO sean propiedad de [NAME] al inventario de su propietario? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + ¿Está seguro de que quiere devolver todos los objetos de esta parcela que NO sean propiedad de [NAME] al inventario de su propietario? Los objetos transferibles que se hayan transferido al grupo se devolverán a sus propietarios previos. *ATENCIÓN* ¡Esto borrará los objetos no transferibles que se hayan cedido al grupo! Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnAllTopObjects" - > -¿Está seguro de que quiere devolver al inventario de su propietario todos los objetos de la lista? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="DisableAllTopObjects" - > -¿Está seguro de que quiere desactivar todos los objetos de esta región? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -¿Devolver a sus propietarios los objetos de esta parcela que NO estén compartidos con el grupo [NAME]? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnAllTopObjects"> + ¿Está seguro de que quiere devolver al inventario de su propietario todos los objetos de la lista? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="DisableAllTopObjects"> + ¿Está seguro de que quiere desactivar todos los objetos de esta región? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + ¿Devolver a sus propietarios los objetos de esta parcela que NO estén compartidos con el grupo [NAME]? Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="UnableToDisableOutsideScripts" - > -No se pueden desactivar los scripts. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + No se pueden desactivar los scripts. Toda esta región tiene activado el 'daño'. Para que funcionen las armas los scripts deben estar activados. - </notification> - - <notification - - name="MustBeInParcel" - > -Para configurar el Punto de llegada de la parcela, + </notification> + <notification name="MustBeInParcel"> + Para configurar el Punto de llegada de la parcela, debe estar usted dentro de ella. - </notification> + </notification> + <notification name="PromptRecipientEmail"> + Por favor, escriba una dirección de correo electrónica válida para el/los receptor/es. + </notification> + <notification name="PromptSelfEmail"> + Por favor, escriba su dirección de correo electrónico. + </notification> + <notification name="PromptMissingSubjMsg"> + ¿Foto por correo electrónico con el asunto o el mensaje por defecto? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + Error al procesar los datos de la foto. + </notification> + <notification name="ErrorEncodingSnapshot"> + Error al codificar la foto. + </notification> + <notification name="ErrorUploadingPostcard"> + Hubo un problema al enviar la foto por la siguiente razón: [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + Hubo un problema al subir la captura de pantalla del informe por la siguiente razón: [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + Debe estar de acuerdo con las Condiciones del Servicio para continuar el inicio de sesión en [SECOND_LIFE]. + </notification> + <notification name="CouldNotPutOnOutfit"> + No se ha podido ponerle el vestuario. +La carpeta del vestuario contiene partes del cuerpo, u objetos a anexar o que no son ropa. + </notification> + <notification name="CannotWearTrash"> + No puede vestirse ropas o partes del cuerpo que están en la Papelera + </notification> + <notification name="CannotWearInfoNotComplete"> + No puede vestirse este Ãtem porque aún no se ha cargado. Por favor, reinténtelo en un minuto. + </notification> + <notification name="MustHaveAccountToLogIn"> + ¡Vaya! Algo se quedó en blanco. +Debe escribir tanto el nombre como el apellido de su avatar, los dos. - <notification - - name="PromptRecipientEmail" - > -Por favor, escriba una dirección de correo electrónica válida para el/los receptor/es. - </notification> +Necesita una cuenta para entrar en [SECOND_LIFE]. ¿Quiere crear una ahora? + <usetemplate name="okcancelbuttons" notext="Volver a intentarlo" yestext="Crear una cuenta nueva"/> + </notification> + <notification name="AddClassified"> + Los anuncios clasificados aparecen durante una semana en la sección 'Clasificados' del directorio Buscar y en www.secondlife.com. +Rellene su anuncio y pulse 'Publicar...' para añadirlo al directorio. +Cuando pulse Publicar, se le preguntará por un precio a pagar. +El pagar más hará que su anuncio aparezca más arriba en la lista, y que también aparezca más arriba cuando la gente busque por palabras clave. + <usetemplate ignoretext="Cuando se añade un nuevo Clasificado" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="DeleteClassified"> + ¿Borrar el clasificado '[NAME]'? +No se reembolsan las cuotas pagadas. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ClassifiedSave"> + ¿Guardar los cambios en el clasificado [NAME]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="No guardar" yestext="Guardar"/> + </notification> + <notification name="DeleteAvatarPick"> + ¿Borrar el destacado [PICK]? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="PromptGoToEventsPage"> + ¿Ir a la web de eventos de [SECOND_LIFE]? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SelectProposalToView"> + Por favor, seleccione qué propuesta quiere ver. + </notification> + <notification name="SelectHistoryItemToView"> + Por favor, seleccione un Ãtem del historial para verlo. + </notification> + <notification name="ResetShowNextTimeDialogs"> + ¿Quiere reactivar todas estas ventanas emergentes, incluso las que marcó previamente como 'No mostrarme más esto'? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + ¿Quiere activar todas las ventanas emergentes que puedan habilitarse? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + La caché se limpiará cuando reinicie [SECOND_LIFE]. + </notification> + <notification name="CacheWillBeMoved"> + La caché se moverá cuando reinicie [SECOND_LIFE]. +Nota: esto limpiará la caché. + </notification> + <notification name="ChangeConnectionPort"> + Las configuraciones del puerto tendrán efecto cuando reinicie [SECOND_LIFE]. + </notification> + <notification name="ChangeSkin"> + La nueva apariencia se verá cuando reinicie [SECOND_LIFE]. + </notification> + <notification name="GoToAuctionPage"> + ¿Ir a la página web de [SECOND_LIFE] para ver los detalles de la subasta +o hacer una puja? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SaveChanges"> + ¿Guardar los cambios? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="No guardar" yestext="Guardar"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + Fallo al guardar el gesto. +Este gesto tiene demasiados pasos. +Intente quitarle algunos, y vuelva a guardarlo. + </notification> + <notification name="GestureSaveFailedTryAgain"> + Fallo al guardar el gesto. Por favor, reinténtelo en un minuto. + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + No se ha podido guardar el gesto porque no se pudo encontrar el objeto o el objeto asociado. +El objeto debe de haber sido borrado o estar fuera de rango ('out of range'). + </notification> + <notification name="GestureSaveFailedReason"> + Al guardar un gesto, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde. + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + No se ha podido guardar la nota porque no se pudo encontrar el objeto o el objeto asociado del inventario. +El objeto debe de haber sido borrado o estar fuera de rango ('out of range'). + </notification> + <notification name="SaveNotecardFailReason"> + Al guardar una nota, hubo un problema por: [REASON]. Por favor, reintente guardarla más tarde. + </notification> + <notification name="ScriptCannotUndo"> + No se han podido deshacer todos los cambios en su versión del script. +¿Quiere cargar la última versión guardada en el servidor? +(**Cuidado** No podrá deshacer esta operación). + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SaveScriptFailReason"> + Al guardar un script, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde. + </notification> + <notification name="SaveScriptFailObjectNotFound"> + No se ha podido guardar el script porque no se pudo encontrar el objeto que incluye. +El objeto debe de haber sido borrado o estar fuera de rango ('out of range').. + </notification> + <notification name="SaveBytecodeFailReason"> + Al guardar un script compilado, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde.. + </notification> + <notification name="CouldNotStartStopScript"> + No se ha podido correr o parar el script porque no se pudo encontrar el objeto que incluye. +El objeto debe de haber sido borrado o estar fuera de rango ('out of range').. + </notification> + <notification name="CannotDownloadFile"> + No se ha podido descargar el archivo. + </notification> + <notification name="CannotWriteFile"> + No se ha podido escribir el archivo [[FILE]] + </notification> + <notification name="UnsupportedHardware"> + Atención: su sistema no tiene los requerimientos mÃnimos que necesita Second Life. Si sigue usando Second Life, tendrá un funcionamiento pobre. Desafortunadamente, no podemos ofrecer soporte técnico para configuraciones inadecuadas del sistema. - <notification - - name="PromptSelfEmail" - > -Por favor, escriba su dirección de correo electrónico. - </notification> +MINSPECS +Para más información, ¿quiere visitar [_URL]? + <url name="url" option="0"> + http://secondlife.com/support/sysreqs.php?lang=es + </url> + <usetemplate ignoretext="Cuando se detecte hardware no adecuado" name="okcancelignore" notext="No" yestext="SÃ"/> + </notification> + <notification name="UnknownGPU"> + En este momento, desconocemos la tarjeta gráfica de su sistema. +Con frecuencia, esto se debe a hardware nuevo que no hemos podido revisar aún. +Es muy probable que Second Life funcione correctamente, pero deberá ajustar sus configuraciones gráficas a lo que sea más apropiado. +(Menú Editar > Preferencias > Gráficos). + <form name="form"> + <ignore name="ignore" text="Cuando se detecte una tarjeta gráfica desconocida"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] se cayó al inicializar los drivers gráficos. +La calidad de los gráficos deberá establecerse en un nivel bajo para prevenir algunos errores frecuentes en los drivers. +Esto desactivará algunas opciones gráficas. +Le recomendamos que actualice los drivers de su tarjeta gráfica. +La calidad gráfica puede configurarse en Preferencias > Gráficos. + </notification> + <notification name="RegionNoTerraforming"> + En la región [REGION] no se permite modificar el terreno. + </notification> + <notification name="CannotCopyWarning"> + No tiene permiso para copiar este Ãtem. +Si lo da, lo perderá de su inventario. +¿Realmente quiere darlo? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="CannotGiveItem"> + No se ha podido dar el Ãtem del inventario. + </notification> + <notification name="TransactionCancelled"> + Transacción cancelada. + </notification> + <notification name="TooManyItems"> + En una única transferencia del inventario, no puede dar más de 42 Ãtems. + </notification> + <notification name="NoItems"> + No tiene permiso para transferir el Ãtem seleccionado. + </notification> + <notification name="CannotCopyCountItems"> + No tiene permiso para copiar [COUNT] de los +Ãtems seleccionados. Si los da, los perderá de su inventario. +¿Realmente quiere darlos? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="CannotGiveCategory"> + No tiene permiso para transferir +la carpeta seleccionada. + </notification> + <notification name="FreezeAvatar"> + ¿Congelar a este avatar? +Temporalmente, será incapaz de moverse, usar el chat, o interactuar con el mundo. + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Descongelarle" yestext="Congelarle"/> + </notification> + <notification name="FreezeAvatarFullname"> + ¿Congelar a [AVATAR_NAME]? +Temporalmente, será incapaz de moverse, usar el chat, o interactuar con el mundo. + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Descongelarle" yestext="Congelarle"/> + </notification> + <notification name="EjectAvatarFullname"> + ¿Expulsar a [AVATAR_NAME] de su terreno? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Expulsar y Prohibir el acceso" yestext="Expulsar"/> + </notification> + <notification name="EjectAvatarNoBan"> + ¿Expulsar a este avatar de su terreno? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar"/> + </notification> + <notification name="EjectAvatarFullnameNoBan"> + ¿Expulsar a [AVATAR_NAME] de su terreno? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + ERROR 'ACQUIRE': Hay demasiados objetos seleccionados. + </notification> + <notification name="AcquireErrorObjectSpan"> + ERROR 'ACQUIRE': Los objetos están en más de una región. +Por favor, mueva todos los objetos a adquirir a la +misma región. + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] - <notification - - name="PromptMissingSubjMsg" - > -¿Foto por correo electrónico con el asunto o el mensaje por defecto? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> +¿Ir a [URL] para informarse sobre la compra de moneda? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="UnableToLinkObjects"> + No se pudo enlazar estos [COUNT] objetos. +Puede enlazar [MAX] objetos como máximo. + </notification> + <notification name="CannotLinkIncompleteSet"> + Sólo puede enlazar objetos completos (no sus partes), y debe +seleccionar más de uno. + </notification> + <notification name="CannotLinkModify"> + Imposible enlazarlos, porque no tiene permiso para modificar +todos los objetos. - <notification - - name="ErrorProcessingSnapshot" - > -Error al procesar los datos de la foto. - </notification> +Por favor, asegúrese de que no hay ninguno bloqueado, y de que es el propietario de todos. + </notification> + <notification name="CannotLinkDifferentOwners"> + Imposible enlazarlos, porque hay objetos de distintos propietarios. - <notification - - name="ErrorEncodingSnapshot" - > -Error al codificar la foto. - </notification> +Por favor, asegúrese de que es propietario de todos los objetos seleccionados. + </notification> + <notification name="NoFileExtension"> + No hay extensión de archivo en: '[FILE]' - <notification - - name="ErrorUploadingPostcard" - > -Hubo un problema al enviar la foto por la siguiente razón: [REASON] - </notification> +Por favor, asegúrese de que la extensión del archivo es correcta. + </notification> + <notification name="InvalidFileExtension"> + Extensión inválida de archivo: [EXTENSION] +PodrÃa ser [VALIDS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + Ni se pudo abrir el archivo de sonido que se ha subido para leer: +[FILE] + </notification> + <notification name="SoundFileNotRIFF"> + No parece que el archivo sea un archivo RIFF WAVE: +[FILE] + </notification> + <notification name="SoundFileNotPCM"> + No parece que el archivo sea un archivo de audio PCM WAVE: +[FILE] + </notification> + <notification name="SoundFileInvalidChannelCount"> + El archivo no tiene un número de canales válido (debe ser mono o estéreo): +[FILE] + </notification> + <notification name="SoundFileInvalidSampleRate"> + No parece que el archivo tenga una frecuencia de muestreo (sample rate) adecuada (debe de ser 44.1k): +[FILE] + </notification> + <notification name="SoundFileInvalidWordSize"> + No parece que el archivo tenga un tamaño de palabra (word size) adecuado (debe de ser de 8 o 16 bites): +[FILE] + </notification> + <notification name="SoundFileInvalidHeader"> + No se encontró el fragmento 'data' en la cabecera del WAV: +[FILE] + </notification> + <notification name="SoundFileInvalidTooLong"> + El archivo de audio es demasiado largo (10 segundos como máximo): +[FILE] + </notification> + <notification name="ProblemWithFile"> + Problemas con el archivo [FILE]: - <notification - - name="ErrorUploadingReportScreenshot" - > -Hubo un problema al subir la captura de pantalla del informe por la siguiente razón: [REASON] - </notification> +[ERROR] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + No se ha podido abrir para su escritura el archivo comprimido de sonido: [FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + Códec Vorbis desconocido, fallo en : [FILE] + </notification> + <notification name="CannotEncodeFile"> + No se puede codificar el archivo: [FILE] + </notification> + <notification name="CorruptResourceFile"> + Archivo con los recursos corruptos: [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + Versión de archivo desconocida para el recurso Linden en el archivo: [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + No se ha podido crear el archivo de salida: [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + Actualmente, no ofrecemos la posibilidad de subida masiva de archivos de animación. + </notification> + <notification name="CannotUploadReason"> + No se ha podido subir [FILE] por la siguiente razón: [REASON] +Por favor, inténtelo más tarde. + </notification> + <notification name="CannotCreateLandmarkNotOwner"> + No puede crear un hito aquà porque el propietario del terreno no lo permite. + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + No se pudo 'recompilar'. +Seleccione un objeto con script. + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + No se pudo 'recompilar'. - <notification - - name="MustAgreeToLogIn" - > -Debe estar de acuerdo con las Condiciones del Servicio para continuar el inicio de sesión en [SECOND_LIFE]. - </notification> +Seleccione objetos con scripts en los que usted tenga permiso para modificarlos. + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + No se pudo 'reiniciar'. - <notification - - name="CouldNotPutOnOutfit" - > -No se ha podido ponerle el vestuario. -La carpeta del vestuario contiene partes del cuerpo, u objetos a anexar o que no son ropa. - </notification> +Seleccione objetos con scripts. + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + No se pudo 'reiniciar'. - <notification - - name="CannotWearTrash" - > -No puede vestirse ropas o partes del cuerpo que están en la Papelera - </notification> +Seleccione objetos con scripts en los que usted tenga permiso para modificarlos. + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + No se puede configurar ningún script como 'ejecutándose'. - <notification - - name="CannotWearInfoNotComplete" - > -No puede vestirse este Ãtem porque aún no se ha cargado. Por favor, reinténtelo en un minuto. - </notification> +Seleccione objetos con scripts. + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + No se puede configurar ningún script como 'no ejecutándose'. - <notification - - name="MustHaveAccountToLogIn" - > -¡Vaya! Algo se quedó en blanco. -Debe escribir tanto el nombre como el apellido de su avatar, los dos. +Seleccione objetos con scripts. + </notification> + <notification name="NoFrontmostFloater"> + No hay nada a guardar. + </notification> + <notification name="SeachFilteredOnShortWords"> + Se ha modificado su búsqueda, +eliminando las palabras demasiado cortas. -Necesita una cuenta para entrar en [SECOND_LIFE]. ¿Quiere crear una ahora? - <usetemplate - name="okcancelbuttons" - notext="Volver a intentarlo" - yestext="Crear una cuenta nueva"/> - </notification> - - <notification - - name="AddClassified" - > -Los anuncios clasificados aparecen durante una semana en la sección 'Clasificados' del directorio Buscar y en www.secondlife.com. -Rellene su anuncio y pulse 'Publicar...' para añadirlo al directorio. -Cuando pulse Publicar, se le preguntará por un precio a pagar. -El pagar más hará que su anuncio aparezca más arriba en la lista, y que también aparezca más arriba cuando la gente busque por palabras clave. - <usetemplate - ignoretext="Cuando se añade un nuevo Clasificado" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="DeleteClassified" - > -¿Borrar el clasificado '[NAME]'? -No se reembolsan las cuotas pagadas. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ClassifiedSave" - > -¿Guardar los cambios en el clasificado [NAME]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="No guardar" - yestext="Guardar"/> - </notification> - - <notification - - name="DeleteAvatarPick" - > -¿Borrar el destacado [PICK]? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="PromptGoToEventsPage" - > -¿Ir a la web de eventos de [SECOND_LIFE]? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="SelectProposalToView" - > -Por favor, seleccione qué propuesta quiere ver. - </notification> - - <notification - - name="SelectHistoryItemToView" - > -Por favor, seleccione un Ãtem del historial para verlo. - </notification> - - <notification - - name="ResetShowNextTimeDialogs" - > -¿Quiere reactivar todas estas ventanas emergentes, incluso las que marcó previamente como 'No mostrarme más esto'? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -¿Quiere activar todas las ventanas emergentes que puedan habilitarse? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="CacheWillClear" - > -La caché se limpiará cuando reinicie [SECOND_LIFE]. - </notification> - - <notification - - name="CacheWillBeMoved" - > -La caché se moverá cuando reinicie [SECOND_LIFE]. -Nota: esto limpiará la caché. - </notification> - - <notification - - name="ChangeConnectionPort" - > -Las configuraciones del puerto tendrán efecto cuando reinicie [SECOND_LIFE]. - </notification> - - <notification - - name="ChangeSkin" - > -La nueva apariencia se verá cuando reinicie [SECOND_LIFE]. - </notification> - - <notification - - name="GoToAuctionPage" - > -¿Ir a la página web de [SECOND_LIFE] para ver los detalles de la subasta -o hacer una puja? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="SaveChanges" - > -¿Guardar los cambios? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="No guardar" - yestext="Guardar"/> - </notification> - - <notification - - name="GestureSaveFailedTooManySteps" - > -Fallo al guardar el gesto. -Este gesto tiene demasiados pasos. -Intente quitarle algunos, y vuelva a guardarlo. - </notification> - - <notification - - name="GestureSaveFailedTryAgain" - > -Fallo al guardar el gesto. Por favor, reinténtelo en un minuto. - </notification> - - <notification - - name="GestureSaveFailedObjectNotFound" - > -No se ha podido guardar el gesto porque no se pudo encontrar el objeto o el objeto asociado. -El objeto debe de haber sido borrado o estar fuera de rango ('out of range'). - </notification> - - <notification - - name="GestureSaveFailedReason" - > -Al guardar un gesto, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde. - </notification> - - <notification - - name="SaveNotecardFailObjectNotFound" - > -No se ha podido guardar la nota porque no se pudo encontrar el objeto o el objeto asociado del inventario. -El objeto debe de haber sido borrado o estar fuera de rango ('out of range'). - </notification> - - <notification - - name="SaveNotecardFailReason" - > -Al guardar una nota, hubo un problema por: [REASON]. Por favor, reintente guardarla más tarde. - </notification> - - <notification - - name="ScriptCannotUndo" - > -No se han podido deshacer todos los cambios en su versión del script. -¿Quiere cargar la última versión guardada en el servidor? -(**Cuidado** No podrá deshacer esta operación). - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="SaveScriptFailReason" - > -Al guardar un script, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde. - </notification> - - <notification - - name="SaveScriptFailObjectNotFound" - > -No se ha podido guardar el script porque no se pudo encontrar el objeto que incluye. -El objeto debe de haber sido borrado o estar fuera de rango ('out of range').. - </notification> - - <notification - - name="SaveBytecodeFailReason" - > -Al guardar un script compilado, hubo un problema por: [REASON]. Por favor, reintente guardarlo más tarde.. - </notification> - - <notification - - name="CouldNotStartStopScript" - > -No se ha podido correr o parar el script porque no se pudo encontrar el objeto que incluye. -El objeto debe de haber sido borrado o estar fuera de rango ('out of range').. - </notification> - - <notification - - name="CannotDownloadFile" - > -No se ha podido descargar el archivo. - </notification> - - <notification - - name="CannotWriteFile" - > -No se ha podido escribir el archivo [[FILE]] - </notification> - - <notification - - name="UnsupportedHardware" - > -Atención: su sistema no tiene los requerimientos mÃnimos que necesita Second Life. Si sigue usando Second Life, tendrá un funcionamiento pobre. Desafortunadamente, no podemos ofrecer soporte técnico para configuraciones inadecuadas del sistema. - -MINSPECS -Para más información, ¿quiere visitar [_URL]? - <url option="0" name="url"> - - http://secondlife.com/support/sysreqs.php?lang=es - </url> - <usetemplate - ignoretext="Cuando se detecte hardware no adecuado" - name="okcancelignore" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="UnknownGPU" - > -En este momento, desconocemos la tarjeta gráfica de su sistema. -Con frecuencia, esto se debe a hardware nuevo que no hemos podido revisar aún. -Es muy probable que Second Life funcione correctamente, pero deberá ajustar sus configuraciones gráficas a lo que sea más apropiado. -(Menú Editar > Preferencias > Gráficos). - <form name="form"> - <ignore name="ignore" - text="Cuando se detecte una tarjeta gráfica desconocida"/> - </form> - </notification> - - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] se cayó al inicializar los drivers gráficos. -La calidad de los gráficos deberá establecerse en un nivel bajo para prevenir algunos errores frecuentes en los drivers. -Esto desactivará algunas opciones gráficas. -Le recomendamos que actualice los drivers de su tarjeta gráfica. -La calidad gráfica puede configurarse en Preferencias > Gráficos. - </notification> - - <notification - - name="RegionNoTerraforming" - > -En la región [REGION] no se permite modificar el terreno. - </notification> - - <notification - - name="CannotCopyWarning" - > -No tiene permiso para copiar este Ãtem. -Si lo da, lo perderá de su inventario. -¿Realmente quiere darlo? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="CannotGiveItem" - > -No se ha podido dar el Ãtem del inventario. - </notification> - - <notification - - name="TransactionCancelled" - > -Transacción cancelada. - </notification> - - <notification - - name="TooManyItems" - > -En una única transferencia del inventario, no puede dar más de 42 Ãtems. - </notification> - - <notification - - name="NoItems" - > -No tiene permiso para transferir el Ãtem seleccionado. - </notification> - - <notification - - name="CannotCopyCountItems" - > -No tiene permiso para copiar [COUNT] de los -Ãtems seleccionados. Si los da, los perderá de su inventario. -¿Realmente quiere darlos? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="CannotGiveCategory" - > -No tiene permiso para transferir -la carpeta seleccionada. - </notification> - - <notification - - name="FreezeAvatar" - > -¿Congelar a este avatar? -Temporalmente, será incapaz de moverse, usar el chat, o interactuar con el mundo. - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Descongelarle" - yestext="Congelarle"/> - </notification> - - <notification - - name="FreezeAvatarFullname" - > -¿Congelar a [AVATAR_NAME]? -Temporalmente, será incapaz de moverse, usar el chat, o interactuar con el mundo. - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Descongelarle" - yestext="Congelarle"/> - </notification> - - <notification - - name="EjectAvatarFullname" - > -¿Expulsar a [AVATAR_NAME] de su terreno? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Expulsar y Prohibir el acceso" - yestext="Expulsar"/> - </notification> - - <notification - - name="EjectAvatarNoBan" - > -¿Expulsar a este avatar de su terreno? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Expulsar"/> - </notification> - - <notification - - name="EjectAvatarFullnameNoBan" - > -¿Expulsar a [AVATAR_NAME] de su terreno? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Expulsar"/> - </notification> - - <notification - - name="AcquireErrorTooManyObjects" - > -ERROR 'ACQUIRE': Hay demasiados objetos seleccionados. - </notification> - - <notification - - name="AcquireErrorObjectSpan" - > -ERROR 'ACQUIRE': Los objetos están en más de una región. -Por favor, mueva todos los objetos a adquirir a la -misma región. - </notification> - - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] - -¿Ir a [URL] para informarse sobre la compra de moneda? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="UnableToLinkObjects" - > -No se pudo enlazar estos [COUNT] objetos. -Puede enlazar [MAX] objetos como máximo. - </notification> - - <notification - - name="CannotLinkIncompleteSet" - > -Sólo puede enlazar objetos completos (no sus partes), y debe -seleccionar más de uno. - </notification> - - <notification - - name="CannotLinkModify" - > -Imposible enlazarlos, porque no tiene permiso para modificar -todos los objetos. - -Por favor, asegúrese de que no hay ninguno bloqueado, y de que es el propietario de todos. - </notification> - - <notification - - name="CannotLinkDifferentOwners" - > -Imposible enlazarlos, porque hay objetos de distintos propietarios. - -Por favor, asegúrese de que es propietario de todos los objetos seleccionados. - </notification> - - <notification - - name="NoFileExtension" - > -No hay extensión de archivo en: '[FILE]' - -Por favor, asegúrese de que la extensión del archivo es correcta. - </notification> - - <notification - - name="InvalidFileExtension" - > -Extensión inválida de archivo: [EXTENSION] -PodrÃa ser [VALIDS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -Ni se pudo abrir el archivo de sonido que se ha subido para leer: -[FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -No parece que el archivo sea un archivo RIFF WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -No parece que el archivo sea un archivo de audio PCM WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -El archivo no tiene un número de canales válido (debe ser mono o estéreo): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -No parece que el archivo tenga una frecuencia de muestreo (sample rate) adecuada (debe de ser 44.1k): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -No parece que el archivo tenga un tamaño de palabra (word size) adecuado (debe de ser de 8 o 16 bites): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -No se encontró el fragmento 'data' en la cabecera del WAV: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -El archivo de audio es demasiado largo (10 segundos como máximo): -[FILE] - </notification> - - <notification - - name="ProblemWithFile" - > -Problemas con el archivo [FILE]: - -[ERROR] - </notification> - - <notification - - name="CannotOpenTemporarySoundFile" - > -No se ha podido abrir para su escritura el archivo comprimido de sonido: [FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -Códec Vorbis desconocido, fallo en : [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -Archivo con los recursos corruptos: [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -Versión de archivo desconocida para el recurso Linden en el archivo: [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -No se ha podido crear el archivo de salida: [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -Actualmente, no ofrecemos la posibilidad de subida masiva de archivos de animación. - </notification> - - <notification - - name="CannotUploadReason" - > -No se ha podido subir [FILE] por la siguiente razón: [REASON] -Por favor, inténtelo más tarde. - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -No puede crear un hito aquà porque el propietario del terreno no lo permite. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -No se pudo 'recompilar'. -Seleccione un objeto con script. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -No se pudo 'recompilar'. - -Seleccione objetos con scripts en los que usted tenga permiso para modificarlos. - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -No se pudo 'reiniciar'. - -Seleccione objetos con scripts. - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -No se pudo 'reiniciar'. - -Seleccione objetos con scripts en los que usted tenga permiso para modificarlos. - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -No se puede configurar ningún script como 'ejecutándose'. - -Seleccione objetos con scripts. - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -No se puede configurar ningún script como 'no ejecutándose'. - -Seleccione objetos con scripts. - </notification> - - <notification - - name="NoFrontmostFloater" - > -No hay nada a guardar. - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -Se ha modificado su búsqueda, -eliminando las palabras demasiado cortas. - -Buscando: [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -Los términos de su búsqueda son muy cortos, -por lo que no se ha hecho la búsqueda. - </notification> - - <notification - - name="CouldNotTeleportReason" - > -No se ha podido teleportar. -[REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -No se ha podido configurar el propietario del terreno: -no se ha seleccionado una parcela. - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -No se ha podido obtener la propiedad del terreno porque la selección se extiende por varias regiones. Por favor, seleccione un área más pequeña y reinténtelo. - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -Está parcela está siendo subastada. Forzar su propiedad cancelará la subasta y, probablemente, disguste a algunos residentes que ya hayan empezado a pujar. ¿Forzar la propiedad? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -No se ha podido 'contentify': -no se ha seleccionado una parcela. - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -No se ha podido 'contentify': -no se ha seleccionado una región. - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -No se ha podido abandonar el terreno: -no se ha seleccionado una parcela. - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -No se ha podido abandonar el terreno: -no se ha podido encontrar la región. - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -Imposible comprar terreno: -no se ha seleccionado una parcela. - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -Imposible comprar terreno: -no se ha podido encontrar en qué región está. - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -No puede cerrar la ventana de Comprar terreno hasta que Second Life calcule el precio de esta transacción. - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -No se ha podido transferir el terreno: -no se ha seleccionado una parcela. - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -No se ha podido transferir el terreno: -no ha seleccionado un grupo. - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -No se ha podido transferir el terreno: -Ha sido imposible encontrar en qué región está. -Por favor, para informar de esto use Herramientas -> Informar de un fallo. - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -No se ha podido transferir el terreno: -ha seleccionado varias parcelas. - -Inténtelo seleccionando sólo una. - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -Esta localización puede mostrar media en streaming. -Los media en streaming necesitan una conexión a internet rápida. - -Si hay media, ¿reproducirlos en streaming? -(Puede cambiar más adelante esta opción en Preferencias > Audio y VÃdeo). - <usetemplate - name="okcancelbuttons" - notext="Desactivar" - yestext="Ejecutar los media"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -No se ha podido transferir el terreno: -esperando que el servidor informe acerca de la propiedad. - -Por favor, vuelva a intentarlo. - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -No se ha podido transferir el terreno: -En la región [REGION] no se permite transferir terrenos. - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -No se ha podido abandonar el terreno: -esperando que el servidor actualice la información de la parcela. - -Vuelva a intentarlo en unos segundos. - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -No se ha podido abandonar el terreno: -no es propietario de todas las parcelas seleccionadas. - -Por favor, seleccione una sola parcela. - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -No se ha podido abandonar el terreno: -no tiene permisos sobre esta parcela. -Las parcelas de su propiedad se muestran en verde. - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -No se ha podido abandonar el terreno: -Ha sido imposible encontrar en qué región está. - -Por favor, para informar de esto use Herramientas > Informar de un fallo. - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -No se ha podido abandonar el terreno: -En la región [REGION] no se permite transferir terrenos. - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -No se ha podido abandonar el terreno: -debe seleccionar toda la parcela. - -Seleccione una parcela completa, o divÃdala primero. - </notification> - - <notification - - name="ReleaseLandWarning" - > -Va a abandonar [AREA] m² de terreno. -Al hacerlo, la quitará de entre sus posesiones de terreno, pero no recibirá ningún L$. - -¿Abandonar este terreno? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -No se ha podido dividir el terreno: - -No ha seleccionado ninguna parcela. - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -No se ha podido dividir el terreno: - -Ha seleccionado una parcela entera. -Inténtelo seleccionando una parte. - </notification> - - <notification - - name="LandDivideWarning" - > -Dividir este terreno lo separará en dos parcelas, cada una de las cuales tendrá su propia configuración. Tras esta operación, algunas configuraciones volverán a las existentes por defecto. - -¿Dividir el terreno? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -No se ha podido dividir el terreno: -Ha sido imposible encontrar en qué región está. - -Por favor, para informar de esto use Herramientas -> Informar de un fallo. - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -No se ha podido unir el terreno: -Ha sido imposible encontrar en qué región está. - -Por favor, para informar de esto use Herramientas -> Informar de un fallo. - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -No se ha podido unir el terreno: -No hay parcelas seleccionadas. - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -No se ha podido unir el terreno: -Sólo ha seleccionado una parcela. - -Seleccione terreno que incluya algo de ambas parcelas. - </notification> - - <notification - - name="CannotJoinLandSelection" - > -No se ha podido unir el terreno: -Debe seleccionar más de una parcela. - -Seleccione terreno que incluya algo de ambas parcelas. - </notification> - - <notification - - name="JoinLandWarning" - > -Al unir este terreno creará una parcela más grande formada por todas aquellas que tengan parte en el rectángulo seleccionado. -Deberá reconfigurar el nombre y las opciones de la nueva parcela. - -¿Unir el terreno? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -Esta nota debe guardarse antes de que se la pueda copiar o ver. ¿Guardar la nota? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -¿Copiar este Ãtem a su inventario? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Copiar"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -Fallo al cambiar la resolución a [RESX] por [RESY] - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -Error, hierbas no definidas: [SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -Error, árboles no definidos: [SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -No se ha podido guardar el archivo '[NAME]'. Tendrá que liberar algo de espacio en su ordenador y guardarlo de nuevo. - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -No se ha podido guardar [NAME] en la base central de almacenamiento. -Esto es, generalmente, un fallo temporal. Por favor, reinténtelo en unos pocos minutos. - -Si persiste el problema, por favor, pulse en en el menú 'Herramientas > Informar de un fallo' y aporte detalles sobre la configuración de su conexión. - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -Se ha cerrado su sesión en [SECOND_LIFE]: - [MESSAGE] -Aún puede ver el chat y los MI existentes pulsando 'Ver MI y Chat'. Si no, pulse 'Salir' para dejar inmediatemente [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="Salir" - yestext="Ver MI y Chat"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -No se ha podido comprar terreno para el grupo: -usted no tiene el permiso de comprar terreno para el grupo que tiene activado actualmente. - </notification> - - <notification - - label="Añadir como amigo" - name="AddFriend" - > -Los amigos pueden darse permiso para localizarse en el mapa y para saber si el otro está conectado. - -¿Ofrecer a [NAME] que sea su amigo? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - label="Añadir como amigo" - name="AddFriendWithMessage" - > -Los amigos pueden darse permiso para localizarse en el mapa y para saber si el otro está conectado. - -¿Ofrecer a [NAME] que sea su amigo? - <form name="form"> - <input name="message" type="text"> -¿Quieres formar parte de mis amigos? - </input> - <button - - - name="Offer" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -¿Quiere quitar a [FIRST_NAME] [LAST_NAME] de su lista de amigos? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -¿Quiere quitar a varios amigos de su lista de amigos? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -¿Está seguro de que quiere borrar todos los objetos con script que sean propiedad de -** [AVATAR_NAME] ** -en todos los otros terrenos de este sim? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -¿Está seguro de que quiere BORRAR TODOS los objetos con script que sean propiedad de -** [AVATAR_NAME] ** -en TODO EL TERRENO de este sim? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -¿Está seguro de que quiere BORRAR TODOS los objetos (con script o no) que sean propiedad de -** [AVATAR_NAME] ** -en TODO EL TERRENO de este sim? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -Debe especificar un nombre para su clasificado. - </notification> - - <notification - - name="MinClassifiedPrice" - > -El pago para aparecer en la lista debe ser de, al menos, [MIN_PRICE] L$. - -Por favor, elija un pago mayor. - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -Al menos uno de los Ãtems que ha seleccionado está bloqueado. - -¿Está seguro de que quiere borrar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -Al menos uno de los Ãtems que ha seleccionado no es copiable. - -¿Está seguro de que quiere borrar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -No es el propietario de, al menos, uno de los Ãtems que ha seleccionado. - -¿Está seguro de que quiere borrar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -Al menos un objeto está bloqueado. -Al menos un objeto no es copiable. - -¿Está seguro de que quiere borrar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -Al menos un objeto está bloqueado. -No es propietario de, al menos, un objeto. - -¿Está seguro de que quiere borrar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -Al menos un objeto no es copiable. -No es propietario de, al menos, un objeto. - -¿Está seguro de que quiere borrar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -Al menos un objeto está bloqueado. -Al menos un objeto no es copiable. -No es propietario de, al menos, un objeto. - -¿Está seguro de que quiere borrar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -Al menos un objeto está bloqueado. - -¿Está seguro de que quiere tomar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -No es el propietario de todos los objetos que está tomando. -Si sigue, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja su posibilidad de hacer modificaciones o copias. - -¿Está seguro de que quiere tomar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -Al menos un objeto está bloqueado. -No es el propietario de todos los objetos que está tomando. -Si sigue, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja su posibilidad de hacer modificaciones o copias -Con todo, puede tomar lo actualmente seleccionado. - -¿Está seguro de que quiere tomar estos Ãtems? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -No se ha podido hacer la compra porque el terreno seleccionado se extiende por varias regiones. - -Por favor, seleccione un área más pequeña y reinténtelo. - </notification> - - <notification - - name="DeedLandToGroup" - > -Al transferir esta parcela, se requerirá al grupo que tenga y mantenga el crédito suficiente para uso de terreno. -El precio de compra de la parcela no se reembolsa al propietario. -Si se vende una parcela transferida, el precio de venta se dividirá a partes iguales entre los miembros del grupo. - -¿Transferir estos [AREA] m² de terreno al grupo -'[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -Al transferir esta parcela, se requerirá al grupo que tenga y mantenga el crédito suficiente para uso de terreno. -La tranferencia incluirá, a la vez, una contribucÃon de terreno al grupo de '[FIRST_NAME] [LAST_NAME]'. -El precio de compra de la parcela no se reembolsa al propietario. -Si se vende una parcela transferida, el precio de venta se dividirá a partes iguales entre los miembros del grupo. - -¿Transferir estos [AREA] m² de terreno al grupo '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > -Las configuraciones que se muestran se han fijado en los niveles guardados, pues usted especificó la opción de guardarlos. - </notification> - - <notification - - name="DisplaySetToRecommended" - > -Las configuraciones que se muestran se han fijado en los niveles recomendados para la configuración de su sistema. - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -Su localización [TYPE] no está disponible en estos momentos. [HELP] -Ha sido llevado a una región cercana. - </notification> - - <notification - - name="ClothingLoading" - > -Aún está descargándose su ropa. -Puede usar normalmente [SECOND_LIFE], los demás residentes le verán correctamente. - <form name="form"> - <ignore name="ignore" - text="Cuando está llevando mucho tiempo descargar la ropa"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -Se ha completado la instalación de [SECOND_LIFE]. - -Si esta es la primera vez que usa [SECOND_LIFE], deberá crear una cuenta antes de que pueda iniciar una sesión. -¿Volver a www.secondlife.com para crear una cuenta nueva? - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Cuenta nueva..."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -Tenemos problemas de conexión. Puede deberse a un problema de su conexión a internet o de los servidores de Second Life. - -Puede revisar su conexión a internet y volver a intentarlo en unos minutos. Pulse Ayuda para conectarse a nuestro sitio de Sporte, o pulse Teleportar para intentar teleportarse a su Base. - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="Ayuda"/> - <button - - name="Teleport" - text="Teleportar"/> - </form> - </notification> - - <notification - - name="WelcomeChooseSex" - > -Su personaje aparecerá en un momento. - -Para caminar, use las teclas del cursor. -En cualquier momento, puede pulsar la tecla F1 para conseguir ayuda o para aprender más acerca de [SECOND_LIFE]. -Por favor, elija el avatar masculino o femenino. -Puede cambiar más adelante su elección. - <usetemplate - name="okcancelbuttons" - notext="Mujer" - yestext="Varón"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] cuesta [PRICE] L$. No tiene suficientes L$ para hacer eso. - </notification> - - <notification - - name="GrantedModifyRights" - > -Se le ha concedido el privilegio de modificar los objetos de [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="RevokedModifyRights" - > -Ha sido revocado su privilegio de modificar los objetos de [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -Esto limpiará las caches del mapa en esta región. -Esto sólo es realmente útil para cuestiones de depuración ('debugging'). -(A efectos prácticos, espere 5 minutos, y el mapa de cualquiera se actualizará después de que reinicie sesión). - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -No se puede copiar a la vez los contenidos de más de un objeto. -Por favor, selección sólo uno y reinténtelo. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -¿Teleportar a su base a todos los residentes en esta región? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -¿Está seguro de que quiere devolver los objetos propiedad de -[USER_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -No se han podido configurar las texturas de la región: -La textura del terreno [TEXTURE_NUM] tiene una profundidad de bites inválida: [TEXTURE_BIT_DEPTH]. - -Cambie la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulse de nuevo "Aplicar" . - </notification> - - <notification - - name="InvalidTerrainSize" - > -No se han podido configurar las texturas de la región: -La textura del terreno [TEXTURE_NUM] es demasiado grande: [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. - -Cambie la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulse de nuevo "Aplicar" . - </notification> - - <notification - - name="RawUploadStarted" - > -Ha empezado la subida. Dependiendo de la velocidad de su conexión, llevará unos dos minutos. - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -¿Realmente quiere predeterminar el terreno actual, haciéndolo el centro de los limites para elevarlo y rebajarlo, y el terreno por defecto para la herramienta 'Revertir'? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -Sólo puede tener [MAX_AGENTS] residentes autorizados. - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -Sólo puede tener [MAX_BANNED] residentes no admitidos. - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -Fallo al intentar añadir [NUM_ADDED] agentes: -Se superan en [NUM_EXCESS] los [MAX_AGENTS] permitidos en [LIST_TYPE]. - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -Sólo puede tener [MAX_GROUPS] grupos permitidos. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Predeterminar"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -Sólo puede tener [MAX_MANAGER] administradores del estado. - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -No se puede añadir a la lista de residentes no admitidos al propietario del estado. - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -No puede cambiar la apariencia hasta que no se carguen la ropa y la forma. - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -El nombre de su anuncio clasificado debe empezar o con un número o con una letra de la A a la Z. No se permiten signos de puntuación. - </notification> - - <notification - - name="CantSetBuyObject" - > -No puede configurar el Comprar el objeto, porque éste no está en venta. -Por favor, ponga en venta el objeto y reinténtelo. - </notification> - - <notification - - name="FinishedRawDownload" - > -Acabada la descarga del archivo raw de terreno en: -[DOWNLOAD_PATH]. - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -Está disponible una versión nueva de [SECOND_LIFE]. -[MESSAGE] -Debe descargar esta actualización para usar [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="Salir" - yestext="Descargarla"/> - </notification> - - <notification - - name="DownloadWindows" - > -Está disponible una versión actualizada de [SECOND_LIFE]. -[MESSAGE] -Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Descargarla"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -Está disponible una versión actualizada de [SECOND_LIFE]. -[MESSAGE] -Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Descargarla"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -Está disponible una versión nueva de [SECOND_LIFE]. -[MESSAGE] -Debe descargar esta actualización para usar [SECOND_LIFE]. - -¿Descargarla a su carpeta de aplicaciones? - <usetemplate - name="okcancelbuttons" - notext="Salir" - yestext="Descargarla"/> - </notification> - - <notification - - name="DownloadMac" - > -Está disponible una versión actualizada de [SECOND_LIFE]. -[MESSAGE] -Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. - -¿Descargarla a su carpeta de aplicaciones? - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Descargarla"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -Está disponible una versión actualizada de [SECOND_LIFE]. -[MESSAGE] -Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. - -¿Descargarla a su carpeta de aplicaciones? - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Descargarla"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -Transferir este objeto al grupo hará que: -* Reciba los L$ pagados en el objeto - <usetemplate - ignoretext="Cuando se transfieren objetos a los grupos" - name="okcancelignore" - notext="Cancelar" - yestext="Transferir"/> - </notification> - - <notification - - name="WebLaunchExternalTarget" - > -¿Abrir el navegador de su sistema para ver este contenido? - <usetemplate - ignoretext="Cuando se abra el navegador de su sistema para ver una página web" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchJoinNow" - > -¿Ir a www.secondlife.com para administrar su cuenta? - <usetemplate - ignoretext="Cuando se abra el navegador para administrar su cuenta" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchBugReport101" - > -Visite el wiki de [SECOND_LIFE] y aprenda cómo informar correctamente de fallos. - <usetemplate - ignoretext="Cuando se abra el navegador para ver el wiki de Informes de fallos - instrucciones" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSecurityIssues" - > -Visite el wiki de [SECOND_LIFE] para más detalles sobre cómo informar de una cuestión de seguridad. - <usetemplate - ignoretext="Cuando se abra el navegador para ver el wiki de cuestiones de seguridad" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchQAWiki" - > -Visite el wiki QA de [SECOND_LIFE]. - <usetemplate - ignoretext="Cuando se abra el navegador para ver el wiki QA" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssue" - > -Visite el Public Issue Tracker (sistema público de seguimiento de incidencias) de [SECOND_LIFE], donde podrá informar de errores y otros asuntos. - <usetemplate - ignoretext="Cuando se abra el navegador para ver el Public Issue Tracker" - name="okcancelignore" - notext="Cancelar" - yestext="Ir a la página"/> - </notification> - - <notification - - name="WebLaunchPublicIssueHelp" - > -Visite el wiki de [SECOND_LIFE] para informarse de cómo usar el Public Issue Tracker (sistema público de seguimiento de incidencias). - <usetemplate - ignoretext="Cuando se abra el navegador para ver el wiki del Public Issue Tracker" - name="okcancelignore" - notext="Cancelar" - yestext="Ir a la página"/> - </notification> - - <notification - - name="WebLaunchSupportWiki" - > -Para ver las últimas noticias e informaciones, ¿ir la Blog oficial? - <usetemplate - ignoretext="Cuando se abra el navegador para ver el blog" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLGuide" - > -¿Ir a la GuÃa de programación para encontrar ayuda? - <usetemplate - ignoretext="Cuando se abra el navegador para ver la GuÃa de programación" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLWiki" - > -¿Ir al portal de LSL para encontrar ayuda sobre programación? - <usetemplate - ignoretext="Cuando se abra el navegador para ver el portal de programación" - name="okcancelignore" - notext="Cancelar" - yestext="Ir a la página"/> - </notification> - - <notification - - name="ReturnToOwner" - > -¿Está seguro de que quiere devolver los objetos seleccionados a sus propietarios? Los objetos transferibles que se hayan cedido volverán a sus propietarios anteriores. - -*ATENCIÓN* ¡Serán borrados los objetos no transferibles que estén cedidos! - <usetemplate - ignoretext="Cuando se devuelvan los objetos a sus propietarios" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -Actualmente, usted es miembro del grupo [GROUP]. -¿Dejar el grupo? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmKick" - > -¿DE VERDAD quiere expulsar a todos los usuarios de este grid? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Expulsar a todos los usuarios"/> - </notification> - - <notification - - name="MuteLinden" - > -Perdón, pero no puede ignorar a un Linden. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="Fallo al ignorar un objeto según el nombre" - name="MuteByNameFailed" - > -Ya ha ignorado ese nombre. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -Aunque esté permitido, borrar contenidos puede dañar el objeto. -¿Quiere borrar ese Ãtem? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -En este momento, no se puede ofrecer una tarjeta de visita. Por favor, reinténtelo en un momento. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -En este momento, no se puede ofrecer el ser amigo. Por favor, reinténtelo en un momento. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -Pasar al modo ocupado. -Se ocultará el chat y los mensajes instantáneos. Los mensajes instantáneos recibirán su Respuesta en el modo ocupado. Todos los ofrecimientos de teleporte serán rehusados. Todas las ofertas de inventario irán a su Papelera. - <usetemplate - ignoretext="Cuando se pasa al modo ocupado" - name="okignore" - yestext="OK"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -Pertenece a demasiados grupos para poder entrar en otro. Por favor, salga de al menos uno antes de entrar en éste, o rehúse la oferta. Para salir de un grupo, seleccione la opción 'Grupos...' en el menú 'Editar'. -[NAME] le ha invitado a ser miembro de un grupo. -[INVITE] - <usetemplate - name="okcancelbuttons" - notext="Rehusar" - yestext="Entrar"/> - </notification> - - <notification - - name="KickUser" - > -¿Con qué mensaje se expulsará a este usuario? - <form name="form"> - <input name="message" type="text"> -Un administrador le ha desconectado. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -¿Con qué mensaje se expulsará a cualquiera que esté actualmente en el grid? - <form name="form"> - <input name="message" type="text"> -Un administrador le ha desconectado. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -¿Con qué mensaje se congelará a este usuario? - <form name="form"> - <input name="message" type="text"> -Ha sido usted congelado. No puede moverse o escribir en el chat. Un administrador contactará con usted a través de un mensaje instantáneo (MI). - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -¿Con qué mensaje se descongelará a este usuario? - <form name="form"> - <input name="message" type="text"> -Ya no está usted congelado. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -¿Ofrecer teleporte a su posición con este mensaje? - <form name="form"> - <input name="message" type="text"> -Ven conmigo a [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -¿Convocar a este usuario a su posición? - <form name="form"> - <input name="message" type="text"> -Ven conmigo a [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -¿Está seguro de que quiere teleportarse? - <usetemplate - ignoretext="Cuando está teleportando desde un hito del inventario" - name="okcancelignore" - notext="Cancelar" - yestext="Teleportar"/> - </notification> - - <notification - - label="Mensaje a todo el estado" - name="MessageEstate" - > -Escriba un anuncio breve que se enviará a todo el que esté en su estado. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - label="Cambiar un estado Linden" - name="ChangeLindenEstate" - > -Va a hacer cambios en un estado propiedad de Linden (mainland, grid teen, orientación, etc.). - -Esto es EXTREMADAMENTE PELIGROSO, porque puede afectar radicalmente al funcionamiento de los usuarios. En mainland, se cambiarán miles de regiones, y se provocará un colapso en el espacio del servidor. - -¿Proceder? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - label="Cambiar el acceso a un estado Linden" - name="ChangeLindenAccess" - > -Va a cambiar la lista de acceso de un estado propiedad de Linden (mainland, grid teen, orientación, etc.). - -Esto es PELIGROSO, y sólo debe hacerse para deshacerse de ataques que permitan sacar o meter en el grid objetos o L$. -Se cambiarán miles de regiones, y se provocará un colapso en el espacio del servidor. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateAllowedAgentAdd" - > -¿Añadir a la lista de permitidos sólo para este estado o para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateAllowedAgentRemove" - > -¿Quitar de la lista de permitidos sólo para este estado o para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateAllowedGroupAdd" - > -¿Añadir a la lista de grupos permitidos sólo para este estado o para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateAllowedGroupRemove" - > -¿Quitar de la lista de grupos permitidos sólo para este estado o para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateBannedAgentAdd" - > -¿Denegar el acceso sólo a este estado o a [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateBannedAgentRemove" - > -¿Quitar de la lista de prohibición de acceso a este residente para que acceda sólo a este estado o a [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateManagerAdd" - > -¿Añadir al administrador del estado sólo para este estado o para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Seleccionar el estado" - name="EstateManagerRemove" - > -¿Remover al administrador del estado sólo para este estado o para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todos los estados" - yestext="Este estado"/> - </notification> - - <notification - - label="Confirmar la expulsión" - name="EstateKickUser" - > -¿Echar a [EVIL_USER] de este estado? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="EstateChangeCovenant" - > -¿Está seguro de que quiere cambiar el contrato del estado? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ProblemImportingEstateCovenant" - > -Hay problemas al importar el contrato del estado. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -Hay problemas al añadir un administrador nuevo del estado. Uno o más estados deben de tener llena la lista de administradores. - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -Hay problemas en este añadir a la lista del estado. Uno o más estados deben de tener llena la lista. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -En este momento no se puede cargar la nota. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -Permisos insuficientes para ver la nota asociada a la ID solicitada. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MissingNotecardAssetID" - > -Se ha perdido en la base de datos la ID de la nota. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PublishClassified" - > -Recuerde: las cuotas que se pagan por los clasificados no son reembolsables. - -¿Publicar ahora este anuncio por [AMOUNT] L$? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - - - <notification - - label="Confirmar el reinicio" - name="ConfirmRestart" - > -¿Verdaderamente quiere reiniciar la región de aquà a 2 minutos? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - label="Mensaje a toda la región" - name="MessageRegion" - > -Escriba un anuncio breve que se enviará a todo el que esté en esta región. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - label="No permitir modificar el terreno" - name="HelpRegionBlockTerraform" - > -Si se marca está casilla, los propietarios de terreno no podrán modificarlo, independientemente de lo que esté configurado en cada parcela. - -Por defecto: off - </notification> - - <notification - - label="Prohibir volar" - name="HelpRegionBlockFly" - > -Si se marca esta casilla, estará prohibido volar en la región, independientemente de lo que esté configurado en cada parcela. - -Por defecto: off - </notification> - - <notification - - label="Permitir el daño" - name="HelpRegionAllowDamage" - > -Si se marca la casilla, el sistema de 'vida' afecta a todas las parcelas independientemente de lo que tenga marcado cada una. -Si la casilla no está marcada, el propietario de cada parcela podrá decidir si activa en ella el sistema de 'vida'. - -Por defecto: off - </notification> - - <notification - - label="Nº máximo de avatares" - name="HelpRegionAgentLimit" - > -Configura el número máximo de avatares que se permite en esta región. -El funcionamiento puede variar según el número de avatares que estén presentes. - -Por defecto: 40 - </notification> - - <notification - - label="Plus de objetos" - name="HelpRegionObjectBonus" - > -El plus de objetos es un multiplicador de los prims permitidos en cualquier parcela. -El rango permitido es de 1 a 10. Fijándolo en '1', se permiten 117 objetos en cada parcela de 512 m². Fijándolo en '2', se permiten 234 (el doble), y asà sucesivamente. El número máximo de objetos permitidos en una región sigue siendo de 15.000, sea cual sea el plus. -Una vez establecido, tenga en cuenta que reducir el plus de objetos puede causar que se devuelvan o borren objetos. - -Por defecto: 1.0 - </notification> - - - - <notification - - label="Impedir 'empujar'" - name="HelpRegionRestrictPushObject" - > -Esta casilla controla en toda la región los permisos para que haya 'empujones'. -Cuando está activada, los residentes sólo pueden ser empujados por sà mismos o por el propietario de la parcela. -('Empujar' se refiere a la función llPushObject() del LSL). - -Por defecto: Off - </notification> - - <notification - - label="Unir/Dividir parcelas" - name="HelpParcelChanges" - > -Esta casilla determina si las parcelas que no son del propietario del estado pueden puede unirse o subdividirse. -Si no se marca esta opción: - * Sólo los propietarios o los administradores del estado pueden unir o dividir parcelas. - * Sólo podrán unir o dividir las parcelas pertenecientes al propietario o a un grupo en el que tengan los poderes adecuados. -Si se marca esta opción: - * Todo los propietarios de parcelas podrán unir o dividir las que posean. - * En parcelas propiedad de un grupo, quienes tengan los poderes adecuados podrán unirlas o dividirlas. - -Por defecto: Marcado - </notification> - - <notification - - label="No mostrar en la búsqueda" - name="HelpRegionSearch" - > -Marcando esta casilla bloqueará que los propietarios de parcelas puedan listarlas en la búsqueda. - -Por defecto: Off - </notification> - - <notification - - label="Cambiada la calificación de la región" - name="RegionMaturityChange" - > -Se ha actualizado la calificación de esta región. -Llevará algún tiempo que el cambio se refleje en el mapa. - </notification> - - <notification - - label="Reventa de terreno" - name="HelpRegionLandResell" - > -Los propietarios y los administradores del estado pueden poner en venta cualquier terreno que posea el propietario del estado. -Si se desmarca esta opción, los compradores no podrán revender el terreno que compren en esta región. -Si se marca esta opción, los compradores podrán revender el terreno que compren en esta región. - -Por defecto: Deshabilitado - </notification> - - <notification - - label="Desactivar los scripts" - name="HelpRegionDisableScripts" - > -Cuando el rendimiento de un sim es pobre, el culpable puede ser un script. Abra EstadÃsticas (Ctrl-May-1). Mire Simulator Physics FPS. Si es menor de 45, abre el panel Time, en la parte inferior de las EstadÃsticas. Si ve que Script Time está en 25 ms o más alto, pulse el botón Listar los scripts según su uso, y verá el nombre y la posición de los scripts que pueden estar causando el bajo rendimiento. - -Marcando la casilla Desactivar los scripts y pulsando el botón Aplicar, se desactivarán temporalmente en esta región todos los scripts. -Debe hacer esto para viajar a la posición que ha visto en la Lista de scripts según su uso. Cuando llegue, investigue el script para determinar si es él quien causa el problema. Deberá contactar con el propietario del script, o borrar o devolver el objeto. -Desmarque la casilla Desactivar los scripts y pulse Aplicar para reactivar los scripts en la región. - -Por defecto: off - </notification> - - <notification - - label="Desactivar las colisiones" - name="HelpRegionDisableCollisions" - > -Cuando el rendimiento de un sim es pobre, la culpa puede estar en los objetos fÃsicos. Abra EstadÃsticas (Ctrl-May-1). Mire Simulator Physics FPS. Si es menor de 45, abre el panel Time, en la parte inferior de las EstadÃsticas. Si ve que Sim Time (Physics) está en 20 ms o más alto, pulse el botón Listar los objetos que colisionan, y verá el nombre y la posición de los objetos que pueden estar causando el bajo rendimiento. - -Marcando la casilla Desactivar las colisiones y pulsando el botón Aplicar, se desactivarán temporalmente las colisiones entre objetos. -Debe hacer esto para viajar a la localización que se ha avisado en la Lista de objetos que colisionan. Cuando llegue, investigue el objeto: -¿está colisionando constantemente con otros objetos? Deberá contactar con el propietario del objeto, o borrarlo o devolverlo. -Desmarque la casilla Desactivar las colisiones y pulse Aplicar para reactivar las colisiones en la región. - -Por defecto: off - </notification> - - <notification - - label="Desactivar la fÃsica" - name="HelpRegionDisablePhysics" - > -Desactivar la fÃsica es parecido a Desactivar las colisiones, pero se desactivan todas las simulaciones fÃsicas: no sólo se detiene la colisión de objetos, sino que también se provoca que los avatares no puedan moverse. - -Esto deberÃa usarse sólo cuando Desactivar las colisiones no ha aportado a la región suficiente rendimiento para investigar un problema con las propiedades fÃsicas o los objetos que colisionan. - -Cuando acabe, no se olvide de reactivar la fÃsica, o los avatares seguirán sin poderse mover. - -Por defecto: off - </notification> - - <notification - - label="Objetos que colisionan" - name="HelpRegionTopColliders" - > -Muestra una lista de aquellos objetos con más colisiones potenciales con otros objetos. Estos objetos pueden ralentizar el rendimiento. -Seleccione Ver > EstadÃsticas, y mire Simulator > Time > Sim Time (Physics) para ver si se están empleando en 'physics' más de 20 ms. - </notification> - - <notification - - label="Listar los scripts" - name="HelpRegionTopScripts" - > -Muestra una lista de los objetos que más tiempo emplean en ejecutar scripts de LSL. Estos objetos pueden ralentizar el rendimiento. -Seleccione Ver > EstadÃsticas, y mire Simulator > Time > Script Time para ver si se están empleando más de 25 ms. - </notification> - - <notification - - label="Reiniciar la región" - name="HelpRegionRestart" - > -Reinicia los procesos del servidor en que corre esta región tras dos minutos de advertencia previa. Se desconectará a todos los residentes que estén en la región. La región guardará sus datos, y deberÃa volver en unos 90 segundos. - -Reiniciar la región no solventa la mayorÃa de los problemas de rendimiento, y, normalmente, debe utilizarse sólo cuando se indique. - </notification> - - <notification - - label="Nivel del agua" - name="HelpRegionWaterHeight" - > -Es el nivel, en metros, del agua. Si se marca en algo distinto de 20, y usted tiene al lado el agua del mundo o un 'vacÃo', habrá una diferencia visible. - -Por defecto: 20 - </notification> - - <notification - - label="Elevación del terreno" - name="HelpRegionTerrainRaise" - > -Es la distancia que, en metros, los propietarios de parcelas pueden elevar su terreno sobre la altura del terreno inicialmente creado. - -Por defecto: 4 - </notification> - - <notification - - label="Rebaje del terreno" - name="HelpRegionTerrainLower" - > -Es la distancia que, en metros, los propietarios de parcelas pueden bajar su terreno sobre la altura del terreno inicialmente creado. - -Por defecto: -4 - </notification> - - <notification - - label="Subir un RAW para el terreno" - name="HelpRegionUploadRaw" - > -Este botón carga un archivo .RAW en la región en que usted está. -El archivo debe tener las dimensiones correctas (RGB, 256x256) y 13 canales. La forma mejor de crear un archivo de terreno es descargar el archivo RAW existente. Un buen inicio es modificar el canal rojo -red- (altura del terreno), y subirlo. - -La carga puede llevar unos 45 segundos. FÃjese que subir un archivo de terreno *no* moverá los objetos que haya en el terreno, sólo el terreno mismo y los permisos asociados a las parcelas. -Por tanto, puede que algunos objetos acaben enterrados.. - -Para más información sobre la edición de las alturas del terreno, consulte la ayuda F1. - </notification> - - <notification - - label="Descargar el RAW del terreno" - name="HelpRegionDownloadRaw" - > -Este botón descarga un archivo de esta región con los datos de alturas, dimensiones de las parcelas, estado de las parcelas en venta, y algunos permisos de las parcelas. Al abrir el archivo en un programa como Photoshop debe especificar las dimensiones del documento: RGB, 256x256 con 13 canales. -Este archivo de terreno no puede abrirse de otro modo. - -Para más información sobre la edición de las alturas del terreno, consulte la ayuda F1. - </notification> - - <notification - - label="Usar el Sol del estado" - name="HelpRegionUseEstateSun" - > -Esta casilla hace que la posición del Sol en la región sea la misma que la del resto del estado. - -Por defecto: on - </notification> - - <notification - - label="Fijar el Sol" - name="HelpRegionFixedSun" - > -Esta casilla fija la posición del Sol en la posición del deslizable Fase, y detiene su movimiento. - -Por defecto: off - </notification> - - <notification - - label="Predeterminar este terreno" - name="HelpRegionBakeTerrain" - > -Este botón salva la forma actual del terreno como nueva forma por defecto para la región. Una vez predeterminado, el terreno puede volver a esa forma cada vez que usted u otros usan la opción 'Revertir' en Editar el terreno. El terreno predeterminado también marca el punto medio para elevar y bajar los lÃmites. - </notification> - - <notification - - label="Administradores del estado" - name="HelpEstateEstateManager" - > -Un administrador del estado es un residente en el que usted delega controles de la región y configuraciones del estado. Un administrador del estado puede cambiar algunas configuraciones de estos paneles, excepto las de subir, descargar, y predeterminar el terreno. Y, concretamente, puede autorizar o expulsar a residentes de su estado. - -Sólo el propietario del estado puede añadir o remover administradores, nadie más. -Por favor, elija sólo a residentes en quienes confÃe, pues usted será el responsable último de sus acciones. - </notification> - - <notification - - label="Usar el horario global" - name="HelpEstateUseGlobalTime" - > -Esta casilla hace que, en su estado, el Sol tenga la misma posición que en los estados propiedad de Linden, 'mainland'. - -Por defecto: on - </notification> - - <notification - - label="Fijar el Sol" - name="HelpEstateFixedSun" - > -Esta casilla fija la posición del Sol en la posición del deslizable Fase, y detiene su movimiento. - </notification> - - <notification - - label="Acceso público" - name="HelpEstateExternallyVisible" - > -Esta casilla habilita a cualquier residente que esté en otro estado pueda entrar en éste sin tener que estar en una lista de acceso. - -Por defecto: on - </notification> - - <notification - - label="Permitir el teleporte a cualquier punto" - name="HelpEstateAllowDirectTeleport" - > -Cuando esta marcado, los residentes puede teleportarse directamente a cualquier punto de su estado. Si se desmarca, los residentes se teleportarán al Punto de Teleporte más cercano. - -Por defecto: off - </notification> - - <notification - - label="Autorizar el acceso" - name="HelpEstateAllowResident" - > -El acceso a este estado se limitará a los residentes aquà enumerados y a cualquier grupo de abajo. Esta configuración sólo funciona cuando está desmarcado Acceso público. - </notification> - - <notification - - label="Autorizar el acceso de grupo" - name="HelpEstateAllowGroup" - > -El acceso a este estado se limitará a los grupos aquà enumerados y a cualquier residente de abajo. Esta configuración sólo funciona cuando está desmarcado Acceso público. - </notification> - - <notification - - label="Dirección de correo para infracciones" - name="HelpEstateAbuseEmailAddress" - > -Aportando aquà una dirección de correo válida, se hará que las Denuncias de Infracción en este estado se envÃen a esa dirección. -Si se deja en blanco, las Denuncias de Infracción se enviarán sólo a Linden Lab. - </notification> - - <notification - - label="Denegar el acceso" - name="HelpEstateBanResident" - > -A los residentes en esta lista se les niega el acceso a su estado, independientemente de cualquier otra configuración. - </notification> - - <notification - - label="Autorizar el chat de voz" - name="HelpEstateVoiceChat" - > -Se autoriza a las parcelas del estado a tener sus propios canales de voz en los que los residentes puedan hablar y oÃr a otros residentes. - -Por defecto: off - </notification> - - <notification - - label="Desajuste en la versión de voz" - name="VoiceVersionMismatch" - > -En esta región, la versión de Second Life no es compatible con el chat de voz. Para que el chat de voz funcione correctamente, debe actualizar Second Life. - </notification> - - <notification - - label="Contrato del estado" - name="HelpEstateCovenant" - > -Definir un contrato del estado le permite vender parcelas del mismo. Si no existe un contrato, no puede vender terreno. -La nota para su contrato puede estar vacÃa si es que no quiere aplicar reglas, avisos a los compradores, o cualquier otra cosa relacionada con el terreno antes de que sea comprado. - -Puede usar un contrato para comunicar al posible comprador reglas, pautas, información cultural, o, simplemente, sus propias expectativas. -AsÃ, puede hablarse de parcelación, normas de las construcciones, formas de pago, u otra información que considere que el nuevo propietario debe saber y con la que debe estar de acuerdo antes de hacer la compra. - -Para poder finalizar la compra, el comprador debe aceptar el contrato marcando la casilla adecuada. Los contratos de los estados son siempre visibles en la información Acerca del terreno en todas las parcelas. - </notification> - - <notification - - label="No se pudo comprar los objetos" - name="BuyObjectOneOwner" - > -No se pueden comprar a la vez objetos de propietarios diferentes. -Por favor, seleccione sólo un objeto y vuelva a intentarlo. - </notification> - - <notification - - label="No se pudo comprar el contenido" - name="BuyContentsOneOnly" - > -No se puede comprar a la vez los contenidos de más de un objeto. -Por favor, seleccione sólo un objeto y vuelva a intentarlo. - </notification> - - <notification - - label="No se pudo comprar el contenido" - name="BuyContentsOneOwner" - > -No se pueden comprar a la vez objetos de propietarios diferentes. -Por favor, seleccione sólo un objeto y vuelva a intentarlo. - </notification> - - <notification - - name="BuyOriginal" - > -¿Comprar el objeto original de [OWNER] por [PRICE] L$? -Usted pasará a ser el propietario de este objeto. -Podrá: - Modificarlo: [MODIFYPERM] - Copiarlo: [COPYPERM] - Revenderlo o darlo: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -¿Comprar el objeto original por [PRICE] L$? -Usted pasará a ser el propietario de este objeto. -Podrá: - Modificarlo: [MODIFYPERM] - Copiarlo: [COPYPERM] - Revenderlo o darlo: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopy" - > -¿Comprar una copia de [OWNER] por [PRICE] L$? -El objeto se copiará a su inventario. -Podrá: - Modificarlo: [MODIFYPERM] - Copiarlo: [COPYPERM] - Revenderlo o darlo: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -¿Comprar una copia por [PRICE] L$? -El objeto se copiará a su inventario. -Podrá: - Modificarlo: [MODIFYPERM] - Copiarlo: [COPYPERM] - Revenderlo o darlo: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="BuyContents" - > -¿Comprar los contenidos de [OWNER] por [PRICE] L$? -Serán copiados a su inventario. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -¿Comprar los contenidos por [PRICE] L$? -Serán copiados a su inventario. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -Esta transacción hará que: -[ACTION] - -¿Está seguro de querer hacer esta compra? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -Esta transacción hará que: -[ACTION] - -¿Está seguro de querer hacer esta compra? -Por favor, vuelva a escribir su contraseña y pulse OK. - <form name="form"> - <input - name="message" - type="password"/> - <button - - - name="ConfirmPurchase" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -Nota: -Ha actualizado la posición de este Destacado, pero los otros detalles permanecen con sus valores originales. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -Ha elegido Ãtems 'no copiables' de su inventario. Esos Ãtems se quitarán de su inventario, no se copiarán. - -¿Mover el/los Ãtem/s del inventario? - <usetemplate - ignoretext="Cuando mueva objetos 'no copiables' del inventario" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -Ha elegido Ãtems 'no copiables' de su inventario. Esos Ãtems se moverán a su inventario, no se copiarán. -Dado que estos objetos tienen scripts, moverlos a su inventario puede provocar un mal funcionamiento del script. - -¿Mover el/los Ãtem/s del inventario? - <usetemplate - ignoretext="Cuando mueva objetos con script 'no copiables' del inventario" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ClickActionNotPayable" - > -Atención: la acción Pagar al objeto al pulsar ha sido marcada, pero sólo funcionará si se añade un script con un evento money(). - <form name="form"> - <ignore name="ignore" - text="Cuando configure 'Pagar' en objetos sin el evento money()"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -En este objeto, no hay Ãtems que esté autorizado a copiar. - </notification> - - <notification - - name="WebLaunchAccountHistory" - > -¿Ir al sitio web de Second Life para ver el historial de su cuenta? - <usetemplate - ignoretext="Cuando se cargue la página web del historial de la cuenta" - name="okcancelignore" - notext="Cancelar" - yestext="Ir a la página"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -¿Visitar el sitio web de Soporte de Second Life? - <usetemplate - ignoretext="Cuando visite el sitio web de Soporte de Second Life." - name="okcancelignore" - notext="Cancelar" - yestext="Ir"/> - </notification> - - <notification - - name="ConfirmQuit" - > -¿Está seguro de que quiere salir? - <usetemplate - ignoretext="Cuando esté saliendo de Second Life." - name="okcancelignore" - notext="Continuar" - yestext="Salir"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -Use esta herramienta para denunciar violaciones de las Normas de la Comunidad y las Condiciones del Servicio. Vea: - -http://secondlife.com/corporate/tos.php -http://secondlife.com/corporate/cs.php - -Se investigan y resuelven todas las infracciones denunciadas de las Normas de la Comunidad y las Condiciones del Servicio. Puede ver la resolución tomada en el Informe de Incidentes, en: - -http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -IMPORTANTE: Esta denuncia no irá a Linden Lab, sino al propietario de la región en la que usted se encuentra actualmente. - -Como un servicio a los residentes y visitantes, el propietario de la región ha elegido recibir y resolver todas las enuncias que se originen en esta región. Linden Lab no investigará las denuncias que usted envÃe desde aquÃ. - -El propietario de la región resolverá las denuncias basándose en las reglas locales de la región, tal como se detallan en el Contrato del estado. -(Puede ver el Contrato yendo al menú Mundo y eligiendo Acerca del terreno). - -La resolución de esta denuncia se aplica exclusivamente a esta región; el acceso de los residentes a otras áreas de Second Life no se verá afectado por el resultado de esta denuncia. Únicamente Linden Lab puede impedir el acceso a la totalidad de Second Life. - </notification> - - <notification - - name="HelpReportBug" - > -Use esta herramienta *sólo* para informar de cuestiones técnicas que no se comportan como se describe o era esperable. Por favor, aporte todos los detalles que pueda. -Deberá responder al correo electrónico de auto respuesta para añadir más detalles a su informe. - -Todos los informes de fallos serán investigados y evaluados. No se contestará por correo electrónico. - -Si tiene algún problema técnico, por favor, contacte con Soporte en: - -http://secondlife.com/community/support.php - -Nota: no se investigarán los informes incompletos. - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -Por favor, elija una categorÃa para esta denuncia de infracción. -Seleccionar una categorÃa nos ayuda a clasificar y procesar las denuncias de infracciones. - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -Por favor, elija una categorÃa para este fallo. -Seleccionar una categorÃa nos ayuda a clasificar y procesar los informes de fallos. - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -Por favor, escriba el nombre del infractor. -Aportar el dato preciso nos ayuda a clasificar y procesar las denuncias de infracciones. - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -Por favor, escriba la localización donde tuvo lugar la infracción. -Aportar el dato preciso nos ayuda a clasificar y procesar las denuncias de infracciones. - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -Por favor, escriba un resumen de la infracción que ha habido. -Aportar un resumen preciso nos ayuda a clasificar y procesar las denuncias de infracciones. - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -Por favor, escriba un resumen del fallo. -Aportar un resumen preciso nos ayuda a clasificar y procesar los informes de fallos. - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -Por favor, escriba una descripción minuciosa de la infracción que ha habido. -Sea tan especÃfico como pueda, incluyendo los nombres y los detalles implicados en el incidente que denuncia. -Aportar una descripción precisa nos ayuda a clasificar y procesar las denuncias de infracciones. - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -Por favor, escriba una descripción minuciosa del fallo. -Sea tan especÃfico como pueda, incluyendo -si es posible- los pasos que permitan reproducir el fallo. -Aportar una descripción precisa nos ayuda a clasificar y procesar los informes de fallos. - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Estimado Residente: - -Parece que está usted denunciando una violación de la propiedad intelectual. Por favor, asegúrese de que su denuncia es correcto. - -(1) El proceso de la denuncia. Debe enviar una denuncia de infracción si cree que un Residente está reventando el sistema de permisos de Second Life, por ejemplo, usando un CopyBot u otras herramientas parecidas para copiar, infringiendo los derechos de propiedad intelectual. El Equipo de Infracciones (Abuse Team) investiga y lleva a cabo las acciones disciplinarias apropiadas ante toda acción que viole las las Normas de la Comunidad de Second Life o las Condiciones del Servicio. Sin embargo, el Equipo de Infracciones ni gestiona ni responde a las solicitudes de eliminar contenidos del mundo de Second Life. - -(2) El DMCA o Proceso de Eliminación de Contenido. Para solicitar que se elimine algún contenido de Second Life, DEBE enviar una notificación válida de infracción tal y como se explica en nuestra DMCA Policy en http://secondlife.com/corporate/dmca.php. - -Si todavÃa quiere seguir con el proceso de infracción, por favor, cierre esta ventana y acabe de enviar su denuncia. En concreto, debe seleccionar la categorÃa 'CopyBot o Programa para saltarse los permisos'. - -Gracias, - -Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -Han desaparecido de [FLOATER] estos componentes: -[COMPONENTS] - </notification> - - <notification - - label="Reemplazar el anexado actual" - name="ReplaceAttachment" - > -En ese punto de su cuerpo ya hay un objeto anexado. ¿Quiere reemplazarlo por el objeto que ha elegido? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Cuando se reemplacen anexados existentes"/> - <button - - ignore="Reemplazar automaticamente" - - name="Yes" - text="OK"/> - <button - ignore="Nunca reemplazar" - - name="No" - text="Cancelar"/> - </form> - </notification> - - <notification - - label="¡Aviso! Modo Ocupado" - name="BusyModePay" - > -Usted está en el modo Ocupado. Por tanto, no recibirá ningún Ãtem a cambio de esta pago. - -¿Quiere salir del modo Ocupado ante de completar esta transacción? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Cuando se esté pagando a un objeto o persona en el modo Ocupado"/> - <button - - ignore="Siempre salir del modo Ocupado" - - name="Yes" - text="OK"/> - <button - ignore="Nunca salir del modo Ocupado" - - name="No" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="ConfirmEmptyTrash" - > -¿Está seguro de que quiere vaciar definitivamente el contenido de su Papelera? - <usetemplate - ignoretext="Cuando se vacÃe la Papelera" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmClearBrowserCache" - > -¿Está seguro de que quiere limpiar la caché de su navegador? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="SÃ"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -¿Está seguro de que quiere limpiar sus cookies? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="SÃ"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -¿Está seguro de que quiere vaciar su lista de URL guardadas? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="SÃ"/> - </notification> - - <notification - - name="ConfirmEmptyLostAndFound" - > -¿Está seguro de que quiere eliminar permanentemente el contenido de su carpeta Objetos Perdidos? - <usetemplate - ignoretext="Cuando se vacÃe la carpeta del inventario Objetos Perdidos" - name="okcancelignore" - notext="No" - yestext="SÃ"/> - </notification> - - <notification - - name="CopySLURL" - > -Se ha copiado a su portapapeles la siguiente SLurl: - [SLURL] - -PublÃquela en una página web para que otros puedan acceder fácilmente a esta posición, o pruébela usted mismo pegándola en la barra de direcciones de su navegador. - <form name="form"> - <ignore name="ignore" - text="Cuando se copie una SLurl al portapapeles"/> - </form> - </notification> - - <notification - - name="GraphicsPreferencesHelp" - > -Este panel controla el tamaño de la ventana, y la resolución y la calidad de los gráficos del cliente. La interfaz Preferencias > Gráficos le permite escoger entre cuatro niveles gráficos: Bajo, Medio, Alto, y Ultra. También puede personalizar sus configuraciones gráficas marcando la casilla Personalizar y adaptando estas configuraciones: - -Efectos: activa o desactiva varios tipos de shaders. - -Objetos reflejados: determina qué objetos reflejará el agua. - -Renderización del avatar: muestra opciones que afectan a cómo renderiza el cliente los avatares. - -Distancia de dibujo: afecta a cuán lejos de su punto de vista se renderizarán los objetos en la escena. - -Núm. máx. de partÃculas: define el número máximo de partÃculas que podrá ver a la vez en su pantalla. - -Calidad del procesamiento: define la resolución con que se renderiza el brillo. - -Detalle de la malla: define la cantidad de dettales o número de triángulos usados para renderizar algunos objetos. Cuanto más alto sea el valor, más detalle, pero más tiempo para renderizar. - -Detalles de la iluminación: determina que tipo de luces quiere usted que se rendericen. +Buscando: [FINALQUERY] + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + Los términos de su búsqueda son muy cortos, +por lo que no se ha hecho la búsqueda. + </notification> + <notification name="CouldNotTeleportReason"> + No se ha podido teleportar. +[REASON] + </notification> -Nivel de detalle del terreno: marca con cuánto detalle quiere ver la textura del terreno. + <notification name="invalid_tport"> +Ha habido un problema al procesar su petición de teleporte. Debe volver a iniciar sesión para poder teleportarse. Si le sigue apareciendo este mensaje, revise, por favor, las preguntas frecuentes en el Soporte técnico: +www.secondlife.com/support </notification> - - <notification - - name="WLSavePresetAlert" - > -¿Quiere sobrescribir la preselección guardada? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> + <notification name="invalid_region_handoff"> +Ha habido un problema al procesar su paso a otra región. Debe volver a iniciar sesión para poder pasar de región a región. Si le sigue apareciendo este mensaje, revise, por favor, las preguntas frecuentes en el Soporte técnico: +www.secondlife.com/support </notification> - - <notification - - name="WLDeletePresetAlert" - > -¿Quiere borrar [SKY]? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> + <notification name="blocked_tport"> +Lo sentimos, en estos momentos los teleportes están bloqueados. Vuelva a intentarlo en un momento. Si sigue sin poder teleportarse, desconéctese y vuelva a iniciar sesión para solucionar el problema. </notification> - - <notification - - name="WLNoEditDefault" - > -No puede editar ni borrar una preselección por defecto. + <notification name="nolandmark_tport"> +Lo sentimos, pero el sistema no ha podido localizar el destino de este hito. </notification> - - <notification - - name="WLMissingSky" - > -Este archivo del ciclo de un dÃa se refiere a un archivo perdido de cielo: [SKY]. + <notification name="timeout_tport"> +Lo sentimos, pero el sistema no ha podido completar el teleporte. +Vuelva a intentarlo en un momento. </notification> - - <notification - - name="PPSaveEffectAlert" - > -Ya existe un efecto de procesamiento. ¿Desea sobreescribirlo? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="SÃ"/> + <notification name="noaccess_tport"> +Lo sentimos, pero usted no tiene acceso al destino de este teleporte. </notification> - - <notification - - name="HelpEditSky" - > -Edite los deslizables del WindLight para crear y guardar configuraciones del cielo. + <notification name="missing_attach_tport"> +Aún no han llegado sus objetos anexados. Espere unos segundos más o desconéctese y vuelva a iniciar sesión antes de teleportarse. </notification> - - <notification - - name="HelpEditDayCycle" - > -Define cómo se verán los cielos a lo largo del dÃa. + <notification name="too_many_uploads_tport"> +La cola de espera en esta región está actualmente obstruida, por lo que su petición de teleporte no se atenderá en un tiempo prudencial. Por favor, vuelva a intentarlo en unos minutos o vaya a una zona menos ocupada. + </notification> + <notification name="expired_tport"> +Lo sentimos, pero el sistema no ha podido atender a su petición de teleporte en un tiempo prudencial. Por favor, vuelva a intentarlo en unos pocos minutos. + </notification> + <notification name="expired_region_handoff"> +Lo sentimos, pero el sistema no ha podido completar su paso a otra región en un tiempo prudencial. Por favor, vuelva a intentarlo en unos pocos minutos. + </notification> + <notification name="no_host"> +Ha sido imposible encontrar el destino del teleporte: o está desactivado temporalmente o ya no existe. Por favor, vuelva a intentarlo en unos pocos minutos. + </notification> + <notification name="no_inventory_host"> +En estos momentos no está disponible el sistema del inventario. </notification> - <notification - - name="EnvSettingsHelpButton" - > -Estas configuraciones ajustan la forma en que usted ve el medio ambiente localmente, en su ordenador. Su tarjeta gráfica debe admitir shaders de la atmósfera ('atmospheric shaders') para poder acceder a esta configuración. - -Ajuste el deslizable "Duración de un dÃa" para cambiar localmente, en su visor, las etapas del dÃa. - -Ajuste el deslizable "Nubosidad" para controlar cuántas nubes cubren el cielo. - -Pulse un color en el selector de "Color del agua" para cambiar el color de la misma. - -Ajuste el deslizable "Claridad del agua" para controlar el nivel de claridad del agua bajo la superficie. -Pulse "Usar el horario del estado" para devolver los valores del dÃa al tiempo actual de la región y seguir a partir de él. + <notification name="CannotSetLandOwnerNothingSelected"> + No se ha podido configurar el propietario del terreno: +no se ha seleccionado una parcela. + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + No se ha podido obtener la propiedad del terreno porque la selección se extiende por varias regiones. Por favor, seleccione un área más pequeña y reinténtelo. + </notification> + <notification name="ForceOwnerAuctionWarning"> + Está parcela está siendo subastada. Forzar su propiedad cancelará la subasta y, probablemente, disguste a algunos residentes que ya hayan empezado a pujar. ¿Forzar la propiedad? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + No se ha podido 'contentify': +no se ha seleccionado una parcela. + </notification> + <notification name="CannotContentifyNoRegion"> + No se ha podido 'contentify': +no se ha seleccionado una región. + </notification> + <notification name="CannotReleaseLandNothingSelected"> + No se ha podido abandonar el terreno: +no se ha seleccionado una parcela. + </notification> + <notification name="CannotReleaseLandNoRegion"> + No se ha podido abandonar el terreno: +no se ha podido encontrar la región. + </notification> + <notification name="CannotBuyLandNothingSelected"> + Imposible comprar terreno: +no se ha seleccionado una parcela. + </notification> + <notification name="CannotBuyLandNoRegion"> + Imposible comprar terreno: +no se ha podido encontrar en qué región está. + </notification> + <notification name="CannotCloseFloaterBuyLand"> + No puede cerrar la ventana de Comprar terreno hasta que Second Life calcule el precio de esta transacción. + </notification> + <notification name="CannotDeedLandNothingSelected"> + No se ha podido transferir el terreno: +no se ha seleccionado una parcela. + </notification> + <notification name="CannotDeedLandNoGroup"> + No se ha podido transferir el terreno: +no ha seleccionado un grupo. + </notification> + <notification name="CannotDeedLandNoRegion"> + No se ha podido transferir el terreno: +Ha sido imposible encontrar en qué región está. +Por favor, para informar de esto use Herramientas -> Informar de un fallo. + </notification> + <notification name="CannotDeedLandMultipleSelected"> + No se ha podido transferir el terreno: +ha seleccionado varias parcelas. -Pulse "Cielo avanzado" para abrir un editor con configuraciones avanzadas para el cielo. +Inténtelo seleccionando sólo una. + </notification> + <notification name="ParcelCanPlayMedia"> + Esta localización puede mostrar media en streaming. +Los media en streaming necesitan una conexión a internet rápida. -Pulse "Agua avanzada" para abrir un editor con configuraciones avanzadas para el agua. - </notification> +Si hay media, ¿reproducirlos en streaming? +(Puede cambiar más adelante esta opción en Preferencias > Audio y VÃdeo). + <usetemplate name="okcancelbuttons" notext="Desactivar" yestext="Ejecutar los media"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + No se ha podido transferir el terreno: +esperando que el servidor informe acerca de la propiedad. - <notification - - name="HelpDayCycle" - > -El Editor del ciclo del dÃa le permite controlar el cielo de Second Life durante el ciclo dÃa/noche. Este es el ciclo que usa el deslizable Duración de un dÃa del Editor del entorno. +Por favor, vuelva a intentarlo. + </notification> + <notification name="CannotDeedLandNoTransfer"> + No se ha podido transferir el terreno: +En la región [REGION] no se permite transferir terrenos. + </notification> + <notification name="CannotReleaseLandWatingForServer"> + No se ha podido abandonar el terreno: +esperando que el servidor actualice la información de la parcela. -El Editor del ciclo del dÃa trabaja configurando fotogramas clave ('keyframes'): nodos (representados por los puntos grises en la lÃnea del tiempo) cada uno de los cuales tiene asociado un Cielo definido. Según progresa la Duración de un dÃa, el WindLight realiza la "animación" del cielo interpolándose entre esos fotogramas clave. +Vuelva a intentarlo en unos segundos. + </notification> + <notification name="CannotReleaseLandSelected"> + No se ha podido abandonar el terreno: +no es propietario de todas las parcelas seleccionadas. -La flecha amarilla sobre la lÃnea del tiempo representa lo que usted ve actualmente, basándose en la Duración de un dÃa. Púlsela y muévela para ver cómo cambia la animación del dÃa. Puede añadir o borrar fotogramas clave pulsando los botones Añadir un punto o Quitar un punto, situados a la derecha de la lÃnea del tiempo. +Por favor, seleccione una sola parcela. + </notification> + <notification name="CannotReleaseLandDontOwn"> + No se ha podido abandonar el terreno: +no tiene permisos sobre esta parcela. +Las parcelas de su propiedad se muestran en verde. + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + No se ha podido abandonar el terreno: +Ha sido imposible encontrar en qué región está. -Puede establecer la posición en el tiempo de cualquier fotograma clave moviéndolo a lo largo de la lÃnea del tiempo, o configurando manualmente su valor por su valor manualmente en el recuadro Configuración del fotograma clave. También en ese recuadro podrá asociar el fotograma clave a un modelo predefinido de WindLight. +Por favor, para informar de esto use Herramientas > Informar de un fallo. + </notification> + <notification name="CannotReleaseLandNoTransfer"> + No se ha podido abandonar el terreno: +En la región [REGION] no se permite transferir terrenos. + </notification> + <notification name="CannotReleaseLandPartialSelection"> + No se ha podido abandonar el terreno: +debe seleccionar toda la parcela. -La Duración del ciclo establece la duración total de un "dÃa". Marcar un valor bajo (por ejemplo, 2 min.) hará que las 24 horas de su lÃnea del tiempo se animen ¡en sólo dos minutos reales! Una vez que esté satisfecho con su ciclo de la lÃnea del tiempo y los fotogramas clave, utilice los botones Probar y Parar para obtener una vista previa de los resultados. Recuerde que también puede mover la flecha amarilla de encima de la lÃnea del tiempo para ver el ciclo de la animación. El botón Usar el horario del estado sincronizará su ciclo de duración de un dÃa con el ciclo del estado. +Seleccione una parcela completa, o divÃdala primero. + </notification> + <notification name="ReleaseLandWarning"> + Va a abandonar [AREA] m² de terreno. +Al hacerlo, la quitará de entre sus posesiones de terreno, pero no recibirá ningún L$. -Cuando todo esté a su gusto, puede guardar esos datos y cargarlos luego usando los botones Guardar este tipo de dÃa y Cargar un tipo de dÃa. Note que, por el momento, sólo podemos permitir un ciclo de un dÃa. - </notification> +¿Abandonar este terreno? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + No se ha podido dividir el terreno: - <notification - - name="HelpBlueHorizon" - > -Use los deslizables Rojo/Verde/Azul (RVA) para ajustar el color del cielo. Puede usar el deslizable de Intensidad (I) para moverlos al unÃsono. - </notification> +No ha seleccionado ninguna parcela. + </notification> + <notification name="CannotDivideLandPartialSelection"> + No se ha podido dividir el terreno: - <notification - - name="HelpHazeHorizon" - > -La Cantidad de bruma es uno de los parámetros más útiles para ajustar el nivel de luz de la escena. Es eficaz para simular muchos ajustes de la exposición, como la claridad en un ambiente nublado o de nevisca, o las tonalidades del una flor Iris aún cerrada. - </notification> +Ha seleccionado una parcela entera. +Inténtelo seleccionando una parte. + </notification> + <notification name="LandDivideWarning"> + Dividir este terreno lo separará en dos parcelas, cada una de las cuales tendrá su propia configuración. Tras esta operación, algunas configuraciones volverán a las existentes por defecto. - <notification - - name="HelpBlueDensity" - > -La Saturación afecta a la densidad global de la saturación de color del cielo y la niebla. Si mueve el deslizable Intensidad (I) a la derecha, los colores serán más vivos y brillantes. Si lo mueve a la izquierda, se irán decolorando hasta llegar incluso al blanco y negro. Si desea ajustar el balance de color del cielo, puede controlar la saturación de cada elemento usando el deslizable Rojo/Verde/Azul (RVA). - </notification> +¿Dividir el terreno? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + No se ha podido dividir el terreno: +Ha sido imposible encontrar en qué región está. - <notification - - name="HelpHazeDensity" - > -La Densidad de la bruma controla lo sombrÃo de la atmósfera, su neblina. Es eficaz para simular escenas con mucho humo o contaminantes, y también para simular niebla y llovizna. - </notification> +Por favor, para informar de esto use Herramientas -> Informar de un fallo. + </notification> + <notification name="CannotJoinLandNoRegion"> + No se ha podido unir el terreno: +Ha sido imposible encontrar en qué región está. - <notification - - name="HelpDensityMult" - > -La Densidad puede usarse para definir globalmente la 'pesadez' de la atmósfera. Los ajustes bajos dan sensación de un "aire limpio", y los altos de pesadez, de esmog. - </notification> +Por favor, para informar de esto use Herramientas -> Informar de un fallo. + </notification> + <notification name="CannotJoinLandNothingSelected"> + No se ha podido unir el terreno: +No hay parcelas seleccionadas. + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + No se ha podido unir el terreno: +Sólo ha seleccionado una parcela. - <notification - - name="HelpDistanceMult" - > -Ajusta a qué distancia se percibe el WindLight. El valor cero desactiva la influencia del WindLight en el terreno y los objetos. Los valores superiores a 1 simulan mayores distancias a las que afectan los efectos atmosféricos - </notification> +Seleccione terreno que incluya algo de ambas parcelas. + </notification> + <notification name="CannotJoinLandSelection"> + No se ha podido unir el terreno: +Debe seleccionar más de una parcela. - <notification - - name="HelpMaxAltitude" - > -La Altitud máx. ajusta hasta que altura el WindLight realiza sus cálculos para computar la iluminación atmosférica. En las últimas horas del dÃa, es útil para ajustar la "profundidad" a la que aparece el Sol. - </notification> +Seleccione terreno que incluya algo de ambas parcelas. + </notification> + <notification name="JoinLandWarning"> + Al unir este terreno creará una parcela más grande formada por todas aquellas que tengan parte en el rectángulo seleccionado. +Deberá reconfigurar el nombre y las opciones de la nueva parcela. - <notification - - name="HelpSunlightColor" - > -Ajusta en la escena la intensidad y el color de las luces directas. - </notification> +¿Unir el terreno? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ShowOwnersHelp"> + Mostrar los propietarios: +El color de las parcelas indica el tipo de propietario. + +Verde = Su terreno +Agua = Terreno de su's grupo's +Rojo = Propiedad de otros +Amarillo = En venta +Morado = Para subasta +Gris = Público + </notification> + <notification name="ConfirmNotecardSave"> + Esta nota debe guardarse antes de que se la pueda copiar o ver. ¿Guardar la nota? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmItemCopy"> + ¿Copiar este Ãtem a su inventario? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Copiar"/> + </notification> + <notification name="ResolutionSwitchFail"> + Fallo al cambiar la resolución a [RESX] por [RESY] + </notification> + <notification name="ErrorUndefinedGrasses"> + Error, hierbas no definidas: [SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + Error, árboles no definidos: [SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + No se ha podido guardar el archivo '[NAME]'. Tendrá que liberar algo de espacio en su ordenador y guardarlo de nuevo. + </notification> + <notification name="CannotSaveToAssetStore"> + No se ha podido guardar [NAME] en la base central de almacenamiento. +Esto es, generalmente, un fallo temporal. Por favor, reinténtelo en unos pocos minutos. - <notification - - name="HelpSunAmbient" - > -Ajusta en la escena la intensidad y el color de la luz ambiental. - </notification> +Si persiste el problema, por favor, pulse en en el menú 'Herramientas > Informar de un fallo' y aporte detalles sobre la configuración de su conexión. + </notification> + <notification name="YouHaveBeenLoggedOut"> + Se ha cerrado su sesión en [SECOND_LIFE]: + [MESSAGE] +Aún puede ver el chat y los MI existentes pulsando 'Ver MI y Chat'. Si no, pulse 'Salir' para dejar inmediatemente [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Salir" yestext="Ver MI y Chat"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + No se ha podido comprar terreno para el grupo: +usted no tiene el permiso de comprar terreno para el grupo que tiene activado actualmente. + </notification> + <notification label="Añadir como amigo" name="AddFriend"> + Los amigos pueden darse permiso para localizarse en el mapa y para saber si el otro está conectado. - <notification - - name="HelpSunGlow" - > -El deslizable Tamaño controla el tamaño del Sol. -El deslizable Visión controla cómo se ve de borroso el Sol en el cielo. - </notification> +¿Ofrecer a [NAME] que sea su amigo? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification label="Añadir como amigo" name="AddFriendWithMessage"> + Los amigos pueden darse permiso para localizarse en el mapa y para saber si el otro está conectado. - <notification - - name="HelpSceneGamma" - > -Ajusta la distribución de luz y oscuridad en la pantalla. - </notification> +¿Ofrecer a [NAME] que sea su amigo? + <form name="form"> + <input name="message" type="text"> + ¿Quieres formar parte de mis amigos? + </input> + <button name="Offer" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + ¿Quiere quitar a [FIRST_NAME] [LAST_NAME] de su lista de amigos? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + ¿Quiere quitar a varios amigos de su lista de amigos? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + ¿Está seguro de que quiere borrar todos los objetos con script que sean propiedad de +** [AVATAR_NAME] ** +en todos los otros terrenos de este sim? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + ¿Está seguro de que quiere BORRAR TODOS los objetos con script que sean propiedad de +** [AVATAR_NAME] ** +en TODO EL TERRENO de este sim? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + ¿Está seguro de que quiere BORRAR TODOS los objetos (con script o no) que sean propiedad de +** [AVATAR_NAME] ** +en TODO EL TERRENO de este sim? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BlankClassifiedName"> + Debe especificar un nombre para su clasificado. + </notification> + <notification name="MinClassifiedPrice"> + El pago para aparecer en la lista debe ser de, al menos, [MIN_PRICE] L$. - <notification - - name="HelpStarBrightness" - > -Ajusta el brillo de las estrellas en el cielo. - </notification> +Por favor, elija un pago mayor. + </notification> + <notification name="ConfirmObjectDeleteLock"> + Al menos uno de los Ãtems que ha seleccionado está bloqueado. - <notification - - name="HelpTimeOfDay" - > -Controla la posición del Sol en el cielo. Es parecido a la elevación. - </notification> +¿Está seguro de que quiere borrar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + Al menos uno de los Ãtems que ha seleccionado no es copiable. - <notification - - name="HelpEastAngle" - > -Controla la posición del Sol en el cielo. Es parecido al acimut. - </notification> +¿Está seguro de que quiere borrar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + No es el propietario de, al menos, uno de los Ãtems que ha seleccionado. - <notification - - name="HelpCloudColor" - > -Edita el color de las nubes. En general, es recomendable mantenerlas blanquecinas. -Pero, vaya, diviértase si quiere. - </notification> +¿Está seguro de que quiere borrar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + Al menos un objeto está bloqueado. +Al menos un objeto no es copiable. - <notification - - name="HelpCloudDetail" - > -Controla el detalle de las capas superiores de la imagen en la imagen principal de las nubes. X e Y controlan su posición. D (Densidad) controla la densidad o la fracturación con que aparecen las nubes. - </notification> +¿Está seguro de que quiere borrar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + Al menos un objeto está bloqueado. +No es propietario de, al menos, un objeto. - <notification - - name="HelpCloudDensity" - > -Le permite controlar la posición de las nubes con los deslizables X e Y, y su desnidad con el deslizable D. - </notification> +¿Está seguro de que quiere borrar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + Al menos un objeto no es copiable. +No es propietario de, al menos, un objeto. - <notification - - name="HelpCloudCoverage" - > -Controla cuánto cubren el cielo las nubes. - </notification> +¿Está seguro de que quiere borrar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + Al menos un objeto está bloqueado. +Al menos un objeto no es copiable. +No es propietario de, al menos, un objeto. - <notification - - name="HelpCloudScale" - > -Controla el tamaño de la imagen de las nubes en la bóveda celeste. - </notification> +¿Está seguro de que quiere borrar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + Al menos un objeto está bloqueado. - <notification - - name="HelpCloudScrollX" - > -Controla la velocidad de las nubes al moverse en la dirección del eje X. - </notification> +¿Está seguro de que quiere tomar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + No es el propietario de todos los objetos que está tomando. +Si sigue, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja su posibilidad de hacer modificaciones o copias. - <notification - - name="HelpCloudScrollY" - > -Controla la velocidad de las nubes al moverse en la dirección del eje Y. - </notification> +¿Está seguro de que quiere tomar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + Al menos un objeto está bloqueado. +No es el propietario de todos los objetos que está tomando. +Si sigue, se aplicarán los permisos marcados para el próximo propietario, y es posible que se restrinja su posibilidad de hacer modificaciones o copias +Con todo, puede tomar lo actualmente seleccionado. - <notification - - name="HelpClassicClouds" - > -Marque esta casilla para activar la aparición de las nubes clásicas de Second Life junto a las nubes del WindLight. - </notification> +¿Está seguro de que quiere tomar estos Ãtems? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + No se ha podido hacer la compra porque el terreno seleccionado se extiende por varias regiones. - <notification - - name="HelpWaterFogColor" - > -Elije el color del agua bajo la superficie. - </notification> +Por favor, seleccione un área más pequeña y reinténtelo. + </notification> + <notification name="DeedLandToGroup"> + Al transferir esta parcela, se requerirá al grupo que tenga y mantenga el crédito suficiente para uso de terreno. +El precio de compra de la parcela no se reembolsa al propietario. +Si se vende una parcela transferida, el precio de venta se dividirá a partes iguales entre los miembros del grupo. - <notification - - name="HelpWaterFogDensity" - > -Controla la densidad de la claridad del agua, y a qué distancia puede verse bajo ella. - </notification> +¿Transferir estos [AREA] m² de terreno al grupo +'[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + Al transferir esta parcela, se requerirá al grupo que tenga y mantenga el crédito suficiente para uso de terreno. +La tranferencia incluirá, a la vez, una contribucÃon de terreno al grupo de '[FIRST_NAME] [LAST_NAME]'. +El precio de compra de la parcela no se reembolsa al propietario. +Si se vende una parcela transferida, el precio de venta se dividirá a partes iguales entre los miembros del grupo. - <notification - - name="HelpUnderWaterFogMod" - > -Modifica el efecto de Transparencia para controlar cuán lejos su avatar puede ver bajo el agua. - </notification> +¿Transferir estos [AREA] m² de terreno al grupo '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="DisplaySetToSafe"> + Las configuraciones que se muestran se han fijado en los niveles guardados, pues usted especificó la opción de guardarlos. + </notification> + <notification name="DisplaySetToRecommended"> + Las configuraciones que se muestran se han fijado en los niveles recomendados para la configuración de su sistema. + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + Su localización [TYPE] no está disponible en estos momentos. [HELP] +Ha sido llevado a una región cercana. + </notification> + <notification name="ClothingLoading"> + Aún está descargándose su ropa. +Puede usar normalmente [SECOND_LIFE], los demás residentes le verán correctamente. + <form name="form"> + <ignore name="ignore" text="Cuando está llevando mucho tiempo descargar la ropa"/> + </form> + </notification> + <notification name="FirstRun"> + Se ha completado la instalación de [SECOND_LIFE]. - <notification - - name="HelpWaterGlow" - > -Controla la cantidad de brillo de la superficie del agua. - </notification> +Si esta es la primera vez que usa [SECOND_LIFE], deberá crear una cuenta antes de que pueda iniciar una sesión. +¿Volver a www.secondlife.com para crear una cuenta nueva? + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Cuenta nueva..."/> + </notification> + <notification name="LoginPacketNeverReceived"> + Tenemos problemas de conexión. Puede deberse a un problema de su conexión a internet o de los servidores de Second Life. - <notification - - name="HelpWaterNormalScale" - > -Controla el tamaño de las tres ondulaciones que componen el agua. - </notification> +Puede revisar su conexión a internet y volver a intentarlo en unos minutos. Pulse Ayuda para conectarse a nuestro sitio de Sporte, o pulse Teleportar para intentar teleportarse a su Base. + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="Ayuda"/> + <button name="Teleport" text="Teleportar"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + Su personaje aparecerá en un momento. - <notification - - name="HelpWaterFresnelScale" - > -Controla cuánta luz se refleja desde diferentes ángulos. - </notification> +Para caminar, use las teclas del cursor. +En cualquier momento, puede pulsar la tecla F1 para conseguir ayuda o para aprender más acerca de [SECOND_LIFE]. +Por favor, elija el avatar masculino o femenino. +Puede cambiar más adelante su elección. + <usetemplate name="okcancelbuttons" notext="Mujer" yestext="Varón"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] cuesta [PRICE] L$. No tiene suficientes L$ para hacer eso. + </notification> + <notification name="GrantedModifyRights"> + Se le ha concedido el privilegio de modificar los objetos de [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="RevokedModifyRights"> + Ha sido revocado su privilegio de modificar los objetos de [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="FlushMapVisibilityCaches"> + Esto limpiará las caches del mapa en esta región. +Esto sólo es realmente útil para cuestiones de depuración ('debugging'). +(A efectos prácticos, espere 5 minutos, y el mapa de cualquiera se actualizará después de que reinicie sesión). + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + No se puede comprar más de un objeto a la vez. Por favor, seleccione sólo un objeto y vuelva a intentarlo. + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + No se puede copiar a la vez los contenidos de más de un objeto. +Por favor, selección sólo uno y reinténtelo. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + ¿Teleportar a su base a todos los residentes en esta región? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + ¿Está seguro de que quiere devolver los objetos propiedad de +[USER_NAME] ? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + No se han podido configurar las texturas de la región: +La textura del terreno [TEXTURE_NUM] tiene una profundidad de bites inválida: [TEXTURE_BIT_DEPTH]. - <notification - - name="HelpWaterFresnelOffset" - > -Controla cuánta intensidad de luz se refleja. - </notification> +Cambie la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulse de nuevo "Aplicar" . + </notification> + <notification name="InvalidTerrainSize"> + No se han podido configurar las texturas de la región: +La textura del terreno [TEXTURE_NUM] es demasiado grande: [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. - <notification - - name="HelpWaterScaleAbove" - > -Controla la cantidad de luz refractada mirando la superficie del agua desde arriba. - </notification> +Cambie la textura [TEXTURE_NUM] por una imagen de 24-bit y 512x512 o menor, y pulse de nuevo "Aplicar" . + </notification> + <notification name="RawUploadStarted"> + Ha empezado la subida. Dependiendo de la velocidad de su conexión, llevará unos dos minutos. + </notification> + <notification name="ConfirmBakeTerrain"> + ¿Realmente quiere predeterminar el terreno actual, haciéndolo el centro de los limites para elevarlo y rebajarlo, y el terreno por defecto para la herramienta 'Revertir'? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + Sólo puede tener [MAX_AGENTS] residentes autorizados. + </notification> + <notification name="MaxBannedAgentsOnRegion"> + Sólo puede tener [MAX_BANNED] residentes no admitidos. + </notification> + <notification name="MaxAgentOnRegionBatch"> + Fallo al intentar añadir [NUM_ADDED] agentes: +Se superan en [NUM_EXCESS] los [MAX_AGENTS] permitidos en [LIST_TYPE]. + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + Sólo puede tener [MAX_GROUPS] grupos permitidos. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Predeterminar"/> + </notification> + <notification name="MaxManagersOnRegion"> + Sólo puede tener [MAX_MANAGER] administradores del estado. + </notification> + <notification name="OwnerCanNotBeDenied"> + No se puede añadir a la lista de residentes no admitidos al propietario del estado. + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + No puede cambiar la apariencia hasta que no se carguen la ropa y la forma. + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + El nombre de su anuncio clasificado debe empezar o con un número o con una letra de la A a la Z. No se permiten signos de puntuación. + </notification> + <notification name="CantSetBuyObject"> + No puede configurar el Comprar el objeto, porque éste no está en venta. +Por favor, ponga en venta el objeto y reinténtelo. + </notification> + <notification name="FinishedRawDownload"> + Acabada la descarga del archivo raw de terreno en: +[DOWNLOAD_PATH]. + </notification> + <notification name="DownloadWindowsMandatory"> + Está disponible una versión nueva de [SECOND_LIFE]. +[MESSAGE] +Debe descargar esta actualización para usar [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Salir" yestext="Descargarla"/> + </notification> + <notification name="DownloadWindows"> + Está disponible una versión actualizada de [SECOND_LIFE]. +[MESSAGE] +Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Descargarla"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + Está disponible una versión actualizada de [SECOND_LIFE]. +[MESSAGE] +Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Descargarla"/> + </notification> + <notification name="DownloadMacMandatory"> + Está disponible una versión nueva de [SECOND_LIFE]. +[MESSAGE] +Debe descargar esta actualización para usar [SECOND_LIFE]. - <notification - - name="HelpWaterScaleBelow" - > -Controla la cantidad de luz refractada mirando la superficie del agua desde debajo. - </notification> +¿Descargarla a su carpeta de aplicaciones? + <usetemplate name="okcancelbuttons" notext="Salir" yestext="Descargarla"/> + </notification> + <notification name="DownloadMac"> + Está disponible una versión actualizada de [SECOND_LIFE]. +[MESSAGE] +Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. - <notification - - name="HelpWaterBlurMultiplier" - > -Controla cómo se mezclan las ondas y los reflejos. - </notification> +¿Descargarla a su carpeta de aplicaciones? + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Descargarla"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + Está disponible una versión actualizada de [SECOND_LIFE]. +[MESSAGE] +Esta actualización no es obligatoria, pero le sugerimos instalarla para mejorar el rendimiento y la estabilidad. - <notification - - name="HelpWaterNormalMap" - > -Controla cuál es la capa de 'vista normal' del agua, para determinar las reflexiones/refracciones. - </notification> +¿Descargarla a su carpeta de aplicaciones? + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Descargarla"/> + </notification> + <notification name="DeedObjectToGroup"> + Transferir este objeto al grupo hará que: +* Reciba los L$ pagados en el objeto + <usetemplate ignoretext="Cuando se transfieren objetos a los grupos" name="okcancelignore" notext="Cancelar" yestext="Transferir"/> + </notification> + <notification name="WebLaunchExternalTarget"> + ¿Abrir el navegador de su sistema para ver este contenido? + <usetemplate ignoretext="Cuando se abra el navegador de su sistema para ver una página web" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchJoinNow"> + ¿Ir a www.secondlife.com para administrar su cuenta? + <usetemplate ignoretext="Cuando se abra el navegador para administrar su cuenta" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchBugReport101"> + Visite el wiki de [SECOND_LIFE] y aprenda cómo informar correctamente de fallos. + <usetemplate ignoretext="Cuando se abra el navegador para ver el wiki de Informes de fallos - instrucciones" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchSecurityIssues"> + Visite el wiki de [SECOND_LIFE] para más detalles sobre cómo informar de una cuestión de seguridad. + <usetemplate ignoretext="Cuando se abra el navegador para ver el wiki de cuestiones de seguridad" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchQAWiki"> + Visite el wiki QA de [SECOND_LIFE]. + <usetemplate ignoretext="Cuando se abra el navegador para ver el wiki QA" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssue"> + Visite el Public Issue Tracker (sistema público de seguimiento de incidencias) de [SECOND_LIFE], donde podrá informar de errores y otros asuntos. + <usetemplate ignoretext="Cuando se abra el navegador para ver el Public Issue Tracker" name="okcancelignore" notext="Cancelar" yestext="Ir a la página"/> + </notification> + <notification name="WebLaunchPublicIssueHelp"> + Visite el wiki de [SECOND_LIFE] para informarse de cómo usar el Public Issue Tracker (sistema público de seguimiento de incidencias). + <usetemplate ignoretext="Cuando se abra el navegador para ver el wiki del Public Issue Tracker" name="okcancelignore" notext="Cancelar" yestext="Ir a la página"/> + </notification> + <notification name="WebLaunchSupportWiki"> + Para ver las últimas noticias e informaciones, ¿ir la Blog oficial? + <usetemplate ignoretext="Cuando se abra el navegador para ver el blog" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLGuide"> + ¿Ir a la GuÃa de programación para encontrar ayuda? + <usetemplate ignoretext="Cuando se abra el navegador para ver la GuÃa de programación" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLWiki"> + ¿Ir al portal de LSL para encontrar ayuda sobre programación? + <usetemplate ignoretext="Cuando se abra el navegador para ver el portal de programación" name="okcancelignore" notext="Cancelar" yestext="Ir a la página"/> + </notification> + <notification name="ReturnToOwner"> + ¿Está seguro de que quiere devolver los objetos seleccionados a sus propietarios? Los objetos transferibles que se hayan cedido volverán a sus propietarios anteriores. - <notification - - name="HelpWaterWave1" - > -Controla hacia adónde y a qué velocidad se mueve en los ejes X e Y la versión en tamaño grande de la 'vista normal'. - </notification> +*ATENCIÓN* ¡Serán borrados los objetos no transferibles que estén cedidos! + <usetemplate ignoretext="Cuando se devuelvan los objetos a sus propietarios" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="GroupLeaveConfirmMember"> + Actualmente, usted es miembro del grupo [GROUP]. +¿Dejar el grupo? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmKick"> + ¿DE VERDAD quiere expulsar a todos los usuarios de este grid? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar a todos los usuarios"/> + </notification> + <notification name="MuteLinden"> + Perdón, pero no puede ignorar a un Linden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + No puede empezar una subasta en una parcela que ya está en venta. Desactive la venta de terreno si está seguro de querer iniciar una subasta. + </notification> + <notification label="Fallo al ignorar un objeto según el nombre" name="MuteByNameFailed"> + Ya ha ignorado ese nombre. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + Aunque esté permitido, borrar contenidos puede dañar el objeto. +¿Quiere borrar ese Ãtem? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="CantOfferCallingCard"> + En este momento, no se puede ofrecer una tarjeta de visita. Por favor, reinténtelo en un momento. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + En este momento, no se puede ofrecer el ser amigo. Por favor, reinténtelo en un momento. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="BusyModeSet"> + Pasar al modo ocupado. +Se ocultará el chat y los mensajes instantáneos. Los mensajes instantáneos recibirán su Respuesta en el modo ocupado. Todos los ofrecimientos de teleporte serán rehusados. Todas las ofertas de inventario irán a su Papelera. + <usetemplate ignoretext="Cuando se pasa al modo ocupado" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + Pertenece a demasiados grupos para poder entrar en otro. Por favor, salga de al menos uno antes de entrar en éste, o rehúse la oferta. Para salir de un grupo, seleccione la opción 'Grupos...' en el menú 'Editar'. +[NAME] le ha invitado a ser miembro de un grupo. +[INVITE] + <usetemplate name="okcancelbuttons" notext="Rehusar" yestext="Entrar"/> + </notification> + <notification name="KickUser"> + ¿Con qué mensaje se expulsará a este usuario? + <form name="form"> + <input name="message" type="text"> + Un administrador le ha desconectado. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="KickAllUsers"> + ¿Con qué mensaje se expulsará a cualquiera que esté actualmente en el grid? + <form name="form"> + <input name="message" type="text"> + Un administrador le ha desconectado. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="FreezeUser"> + ¿Con qué mensaje se congelará a este usuario? + <form name="form"> + <input name="message" type="text"> + Ha sido usted congelado. No puede moverse o escribir en el chat. Un administrador contactará con usted a través de un mensaje instantáneo (MI). + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="UnFreezeUser"> + ¿Con qué mensaje se descongelará a este usuario? + <form name="form"> + <input name="message" type="text"> + Ya no está usted congelado. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="OfferTeleport"> + ¿Ofrecer teleporte a su posición con este mensaje? + <form name="form"> + <input name="message" type="text"> + Ven conmigo a [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + ¿Convocar a este usuario a su posición? + <form name="form"> + <input name="message" type="text"> + Ven conmigo a [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + ¿Está seguro de que quiere teleportarse? + <usetemplate ignoretext="Cuando está teleportando desde un hito del inventario" name="okcancelignore" notext="Cancelar" yestext="Teleportar"/> + </notification> + <notification label="Mensaje a todo el estado" name="MessageEstate"> + Escriba un anuncio breve que se enviará a todo el que esté en su estado. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification label="Cambiar un estado Linden" name="ChangeLindenEstate"> + Va a hacer cambios en un estado propiedad de Linden (mainland, grid teen, orientación, etc.). - <notification - - name="HelpWaterWave2" - > -Controla hacia adónde y a qué velocidad se mueve en los ejes X e Y la versión en tamaño pequeño de la 'vista normal'. - </notification> +Esto es EXTREMADAMENTE PELIGROSO, porque puede afectar radicalmente al funcionamiento de los usuarios. En mainland, se cambiarán miles de regiones, y se provocará un colapso en el espacio del servidor. - <notification - - name="NewSkyPreset" - > -Dame un nombre para el cielo nuevo. - <form name="form"> - <input name="message" type="text"> -Preselección nueva - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> +¿Proceder? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification label="Cambiar el acceso a un estado Linden" name="ChangeLindenAccess"> + Va a cambiar la lista de acceso de un estado propiedad de Linden (mainland, grid teen, orientación, etc.). - <notification - - name="ExistsSkyPresetAlert" - > -¡Esa preselección ya existe! - </notification> +Esto es PELIGROSO, y sólo debe hacerse para deshacerse de ataques que permitan sacar o meter en el grid objetos o L$. +Se cambiarán miles de regiones, y se provocará un colapso en el espacio del servidor. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification label="Seleccionar el estado" name="EstateAllowedAgentAdd"> + ¿Añadir a la lista de permitidos sólo para este estado o para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Seleccionar el estado" name="EstateAllowedAgentRemove"> + ¿Quitar de la lista de permitidos sólo para este estado o para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Seleccionar el estado" name="EstateAllowedGroupAdd"> + ¿Añadir a la lista de grupos permitidos sólo para este estado o para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Seleccionar el estado" name="EstateAllowedGroupRemove"> + ¿Quitar de la lista de grupos permitidos sólo para este estado o para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Seleccionar el estado" name="EstateBannedAgentAdd"> + ¿Denegar el acceso sólo a este estado o a [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Seleccionar el estado" name="EstateBannedAgentRemove"> + ¿Quitar de la lista de prohibición de acceso a este residente para que acceda sólo a este estado o a [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Seleccionar el estado" name="EstateManagerAdd"> + ¿Añadir al administrador del estado sólo para este estado o para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Seleccionar el estado" name="EstateManagerRemove"> + ¿Remover al administrador del estado sólo para este estado o para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todos los estados" yestext="Este estado"/> + </notification> + <notification label="Confirmar la expulsión" name="EstateKickUser"> + ¿Echar a [EVIL_USER] de este estado? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="EstateChangeCovenant"> + ¿Está seguro de que quiere cambiar el contrato del estado? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + Usted no está autorizado en esa región por su nivel de calificación. Puede deberse a que no hay información validada de su edad. + +Por favor, compruebe que tiene instalado el último visor, y vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. + <usetemplate + name="okbutton" + yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + Usted no está autorizado en esa región por su nivel de calificación. - <notification - - name="NewWaterPreset" - > -Dame un nombre para la nueva preselección de agua. - <form name="form"> - <input name="message" type="text"> -Preselección nueva - </input> +¿Quiere ir a la Base de Conocimientos para aprender más sobre el nivel de calificación? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Ir a la Base de Conocimientos" + notext="Cerrar" + ignoretext="Cuando la entrada a la región está bloqueada por el nivel de calificación"/> + </notification> + <notification name="RegionEntryAccessBlocked_Notify"> + Usted no está autorizado en esa región por su nivel de calificación. + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + Usted no está autorizado en esa región por su nivel de calificación.. + +Puede pulsar 'Cambiar preferencia' para aumentar su nivel de calificación y poder entrar. Desde ese momento, podrá buscar y acceder a contenido [REGIONMATURITY]. Si más adelante quiere deshacer esta configuración, vaya a Editar > Preferencias... > General. + <form> <button - - name="OK" - text="OK"/> + text="Cambiar preferencia"/> <button - + default="true" name="Cancel" - text="Cancelar"/> + text="Cerrar"/> + <ignore text="Cuando la entrada a la región está bloqueada por la preferencia del nivel de calificación"/> </form> - </notification> - - <notification - - name="ExistsWaterPresetAlert" - > -¡Esa preselección ya existe! - </notification> - - <notification - - name="WaterNoEditDefault" - > -No puede editar o borrar una preselección por defecto. - </notification> + </notification> + <notification name="LandClaimAccessBlocked"> + Usted no puede reclamar este terreno por su nivel de calificación. Puede deberse a que no hay información validada de su edad. - <notification - - name="ChatterBoxSessionStartError" - > -No se puede empezar una nueva sesión de chat con [RECIPIENT]. -[REASON] +Por favor, compruebe que tiene instalado el último visor, y vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + No puede reclamar este terreno por sus nivel de calificación. - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] -[REASON] +¿Quiere ir a la Base de Conocimientos para más información sobre el nivel de calificación? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> <usetemplate - name="okbutton" - yestext="OK"/> - </notification> + name="okcancelignore" + yestext="Ir a la Base de Conocimientos" + notext="Cerrar" + ignoretext="Cuando el reclamar terreno está bloqueado por el nivel de calificación"/> + </notification> + <notification name="LandClaimAccessBlocked_Notify"> + Por su nivel de calificación, usted no puede reclamar este terreno. + </notification> + <notification name="LandClaimAccessBlocked_Change"> + No puede reclamar este terreno por sus preferencias de nivel de calificación. + +Puede pulsar 'Cambiar preferencia' para aumentar su nivel de calificación y poder entrar. Desde ese momento, podrá buscar y acceder a contenido [REGIONMATURITY]. Si más adelante quiere deshacer esta configuración, vaya a Editar > Preferencias... > General.. + <usetemplate + name="okcancelignore" + yestext="Cambiar preferencia" + notext="Cerrar" + ignoretext="Cuando el reclamar terreno está bloqueado por la preferencia del nivel de calificación"/> + </notification> + <notification name="LandBuyAccessBlocked"> + Usted no puede comprar este terreno por su nivel de calificación. Puede deberse a que no hay información validada de su edad. - <notification - - name="ForceCloseChatterBoxSession" - > -Debe cerrarse su sesión de chat con [NAME]. -[REASON] +Por favor, compruebe que tiene instalado el último visor, y vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + No puede comprar este terreno por sus preferencias de nivel de calificación. - <notification - - name="Cannot_Purchase_an_Attachment" - > -No se pueden comprar los Ãtems que aún forman parte de un objeto anexado. - </notification> - - <notification - - label="Acerca de las solicitudes de autorización de débito" - name="DebitPermissionDetails" - > -Al admitir esta petición, le da permiso a un script para que coja dólares Linden (L$) de su cuenta. Para revocar este permiso, el propietario del objeto debe eliminarlo o reiniciar ese script del objeto. +¿Quiere ir a la Base de Conocimientos para más información sobre el nivel de calificación? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Ir a la Base de Conocimientos" + notext="Cerrar" + ignoretext="Cuando la compra de terreno está bloqueada por el nivel de calificación"/> + </notification> + <notification name="LandBuyAccessBlocked_Notify"> + No puede comprar este terreno por su nivel de calificación. + </notification> + <notification name="LandBuyAccessBlocked_Change"> + No puede comprar este terreno por sus preferencias de nivel de calificación. + +Puede pulsar 'Cambiar preferencia' para aumentar su nivel de calificación y poder entrar. Desde ese momento, podrá buscar y acceder a contenido [REGIONMATURITY]. Si más adelante quiere deshacer esta configuración, vaya a Editar > Preferencias... > General. + <usetemplate + name="okcancelignore" + yestext="Cambiar preferencia" + notext="Cerrar" + ignoretext="Cuando la compra de terreno está bloqueada por la preferencia del nivel de calificación"/> + </notification> + <notification name="TooManyPrimsSelected"> + "Hay seleccionadas demasiadas primitivas. Por favor, seleccione [MAX_PRIM_COUNT] o menos, y reinténtelo." + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemImportingEstateCovenant"> + Hay problemas al importar el contrato del estado. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + Hay problemas al añadir un administrador nuevo del estado. Uno o más estados deben de tener llena la lista de administradores. + </notification> + <notification name="ProblemAddingEstateGeneric"> + Hay problemas en este añadir a la lista del estado. Uno o más estados deben de tener llena la lista. + </notification> + <notification name="UnableToLoadNotecardAsset"> + En este momento, no se pueden cargar los datos de la's nota's. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="NotAllowedToViewNotecard"> + Permisos insuficientes para ver la nota asociada a la ID solicitada. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + Se ha perdido en la base de datos la ID de la nota. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + Recuerde: las cuotas que se pagan por los clasificados no son reembolsables. - <notification - - name="AutoWearNewClothing" - > -¿Quiere vestirse automáticamente el Ãtem de ropa nueva que ha creado? +¿Publicar ahora este anuncio por [AMOUNT] L$? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SetClassifiedMature"> + ¿Este anuncio tiene contenido 'Mature'? <usetemplate - ignoretext="Vestirme automáticamente la ropa nueva" - name="okcancelignore" + canceltext="Cancelar" + name="yesnocancelbuttons" notext="No" yestext="SÃ"/> - </notification> - - <notification - - name="NotAgeVerified" - > -Para acceder a esta parcela, se debe haber verificado su edad. -¿Quiere visitar la web de Second Life para verificar su edad? - -[_URL] - <url option="0" name="url"> - - https://secondlife.com/account/verification.php - </url> + </notification> + <notification name="SetGroupMature"> + ¿Este grupo tiene contenido 'Mature'? <usetemplate - ignoretext="Advertir de la falta de la verificación de edad" - name="okcancelignore" + canceltext="Cancelar" + name="yesnocancelbuttons" notext="No" yestext="SÃ"/> - </notification> + </notification> + <notification label="Confirmar el reinicio" name="ConfirmRestart"> + ¿Verdaderamente quiere reiniciar la región de aquà a 2 minutos? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification label="Mensaje a toda la región" name="MessageRegion"> + Escriba un anuncio breve que se enviará a todo el que esté en esta región. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification label="No permitir modificar el terreno" name="HelpRegionBlockTerraform"> + Si se marca está casilla, los propietarios de terreno no podrán modificarlo, independientemente de lo que esté configurado en cada parcela. - <notification - - name="Cannot enter parcel: no payment info on file" - > -Antes de que pueda acceder a esta parcela, se requiere que usted tenga archivada su información de pago. -¿Quiere visitar la web de Second Life para actualizar esto? +Por defecto: off + </notification> + <notification label="Prohibir volar" name="HelpRegionBlockFly"> + Si se marca esta casilla, estará prohibido volar en la región, independientemente de lo que esté configurado en cada parcela. -[_URL] - <url option="0" name="url"> +Por defecto: off + </notification> + <notification label="Cambio múltiple de permisos del contenido" name="HelpBulkPermission"> + La herramienta de cambio múltiple de permisos le ayuda a cambiar con rapidez los permisos de varios de los objetos contenidos en el objeto u objetos que seleccione. Pero fÃjese que sólo configurará los permisos de los Ãtems que están en el contenido de los objetos seleccionados, no los de esos objetos que los contienen. - https://secondlife.com/account/index.php?lang=es - </url> - <usetemplate - ignoretext="Advertir de la falta de información de pago" - name="okcancelignore" - notext="No" - yestext="SÃ"/> - </notification> +Note también que los permisos no se aplicarán a los contenidos que puedan tener cada uno de los Ãtems. Lo que haga sólo afectará a los Ãtems que estén exactamente en el primer nivel de contenidos. - <notification - - name="MissingString" - > -La cadena [STRING_NAME] Ha desaparecido de strings.xml - </notification> +Puede elegir qué clase de Ãtems modificar usando la lista 'Tipos de contenido' here. Las imágenes se consideran incluidas si selecciona Texturas. - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> +* Esta herramienta sólo puede cambiar los permisos de aquellos Ãtems de los que usted esté autorizado a cambiarlos. +* No puede otorgar al siguiente propietario permisos que usted no tenga ya. +* Los permisos para el nuevo propietario son, en principio, una solicitud. Si alguno de los Ãtems no puede coger todos esos permisos solicitados, no cambiará ninguno de los permisos que tenga. - <notification - - name="Cancelled" - > -Cancelado - </notification> +Cuando esté listo para efectuar el cambio múltiple de permisos, pulse 'Aplicar' y espere a que se muestren los resultados. - <notification - - name="CancelledSit" - > -Cancelado el sentarse - </notification> +SSi cierra la ventana de Cambio múltiple de permisos mientras se están cambiando, se cancelará la operación. + </notification> + <notification label="Permitir el daño" name="HelpRegionAllowDamage"> + Si se marca la casilla, el sistema de 'vida' afecta a todas las parcelas independientemente de lo que tenga marcado cada una. +Si la casilla no está marcada, el propietario de cada parcela podrá decidir si activa en ella el sistema de 'vida'. - <notification - - name="CancelledAttach" - > -Candelado el anexar - </notification> +Por defecto: off + </notification> + <notification label="Nº máximo de avatares" name="HelpRegionAgentLimit"> + Configura el número máximo de avatares que se permite en esta región. +El funcionamiento puede variar según el número de avatares que estén presentes. - <notification - - name="ReplacedMissingWearable" - > -Reemplazadas las ropas o partes del cuerpo perdidas con sus equivalentes por defecto. - </notification> +Por defecto: 40 + </notification> + <notification label="Plus de objetos" name="HelpRegionObjectBonus"> + El plus de objetos es un multiplicador de los prims permitidos en cualquier parcela. +El rango permitido es de 1 a 10. Fijándolo en '1', se permiten 117 objetos en cada parcela de 512 m². Fijándolo en '2', se permiten 234 (el doble), y asà sucesivamente. El número máximo de objetos permitidos en una región sigue siendo de 15.000, sea cual sea el plus. +Una vez establecido, tenga en cuenta que reducir el plus de objetos puede causar que se devuelvan o borren objetos. - <notification - - name="GroupNotice" - > -Asunto: [SUBJECT], Mensaje: [MESSAGE] - </notification> +Por defecto: 1.0 + </notification> + <notification label="Calificación" name="HelpRegionMaturity"> + Configura el nivel de calificación de la región, tal como se verá en la barra superior del visor de cualquier residente, y en los datos que mostrará el mapa del mundo cuando se pase el cursor sobre esta región. Esta configuración también afecta al acceso a esta región y a los resultados de la búsqueda. Los demás residentes sólo entrarán en las regiones o verán aquellos resultados de la búsqueda que tengan el mismo nivel de calificación que ellos han elegido en sus preferencias. + +Puede llevar algún tiempo que este cambio se refleje en el mapa. + </notification> + <notification label="Impedir 'empujar'" name="HelpRegionRestrictPushObject"> + Esta casilla controla en toda la región los permisos para que haya 'empujones'. +Cuando está activada, los residentes sólo pueden ser empujados por sà mismos o por el propietario de la parcela. +('Empujar' se refiere a la función llPushObject() del LSL). - <notification - - name="FriendOnline" - > -[FIRST] [LAST] está conectado - </notification> +Por defecto: Off + </notification> + <notification label="Unir/Dividir parcelas" name="HelpParcelChanges"> + Esta casilla determina si las parcelas que no son del propietario del estado pueden puede unirse o subdividirse. +Si no se marca esta opción: + * Sólo los propietarios o los administradores del estado pueden unir o dividir parcelas. + * Sólo podrán unir o dividir las parcelas pertenecientes al propietario o a un grupo en el que tengan los poderes adecuados. +Si se marca esta opción: + * Todo los propietarios de parcelas podrán unir o dividir las que posean. + * En parcelas propiedad de un grupo, quienes tengan los poderes adecuados podrán unirlas o dividirlas. - <notification - - name="FriendOffline" - > -[FIRST] [LAST] no está conectado - </notification> +Por defecto: Marcado + </notification> + <notification label="No mostrar en la búsqueda" name="HelpRegionSearch"> + Marcando esta casilla bloqueará que los propietarios de parcelas puedan listarlas en la búsqueda. - <notification - - name="AddSelfFriend" - > -No se puede añadir como amigo a usted mismo. - </notification> +Por defecto: Off + </notification> + <notification label="Cambiada la calificación de la región" name="RegionMaturityChange"> + Se ha actualizado la calificación de esta región. +Llevará algún tiempo que el cambio se refleje en el mapa. + </notification> + <notification label="Reventa de terreno" name="HelpRegionLandResell"> + Los propietarios y los administradores del estado pueden poner en venta cualquier terreno que posea el propietario del estado. +Si se desmarca esta opción, los compradores no podrán revender el terreno que compren en esta región. +Si se marca esta opción, los compradores podrán revender el terreno que compren en esta región. - <notification - - name="UploadingAuctionSnapshot" - > -Subiendo fotos del mundo y del sitio web... -(tardará unos 5 minutos). - </notification> +Por defecto: Deshabilitado + </notification> + <notification label="Desactivar los scripts" name="HelpRegionDisableScripts"> + Cuando el rendimiento de un sim es pobre, el culpable puede ser un script. Abra EstadÃsticas (Ctrl-May-1). Mire Simulator Physics FPS. Si es menor de 45, abre el panel Time, en la parte inferior de las EstadÃsticas. Si ve que Script Time está en 25 ms o más alto, pulse el botón Listar los scripts según su uso, y verá el nombre y la posición de los scripts que pueden estar causando el bajo rendimiento. - <notification - - name="UploadPayment" - > -Ha pagado [AMOUNT] LS por la subida. - </notification> +Marcando la casilla Desactivar los scripts y pulsando el botón Aplicar, se desactivarán temporalmente en esta región todos los scripts. +Debe hacer esto para viajar a la posición que ha visto en la Lista de scripts según su uso. Cuando llegue, investigue el script para determinar si es él quien causa el problema. Deberá contactar con el propietario del script, o borrar o devolver el objeto. +Desmarque la casilla Desactivar los scripts y pulse Aplicar para reactivar los scripts en la región. - <notification - - name="UploadWebSnapshotDone" - > -Completada la subida de la foto del sitio web. - </notification> +Por defecto: off + </notification> + <notification label="Desactivar las colisiones" name="HelpRegionDisableCollisions"> + Cuando el rendimiento de un sim es pobre, la culpa puede estar en los objetos fÃsicos. Abra EstadÃsticas (Ctrl-May-1). Mire Simulator Physics FPS. Si es menor de 45, abre el panel Time, en la parte inferior de las EstadÃsticas. Si ve que Sim Time (Physics) está en 20 ms o más alto, pulse el botón Listar los objetos que colisionan, y verá el nombre y la posición de los objetos que pueden estar causando el bajo rendimiento. - <notification - - name="UploadSnapshotDone" - > -Completada la subida de la foto del mundo. - </notification> +Marcando la casilla Desactivar las colisiones y pulsando el botón Aplicar, se desactivarán temporalmente las colisiones entre objetos. +Debe hacer esto para viajar a la localización que se ha avisado en la Lista de objetos que colisionan. Cuando llegue, investigue el objeto: +¿está colisionando constantemente con otros objetos? Deberá contactar con el propietario del objeto, o borrarlo o devolverlo. +Desmarque la casilla Desactivar las colisiones y pulse Aplicar para reactivar las colisiones en la región. - <notification - - name="TerrainDownloaded" - > -Se ha descargado Terrain.raw - </notification> +Por defecto: off + </notification> + <notification label="Desactivar la fÃsica" name="HelpRegionDisablePhysics"> + Desactivar la fÃsica es parecido a Desactivar las colisiones, pero se desactivan todas las simulaciones fÃsicas: no sólo se detiene la colisión de objetos, sino que también se provoca que los avatares no puedan moverse. - <notification - - name="GestureMissing" - > -El gesto [NAME] ha desaparecido de la base de datos. - </notification> +Esto deberÃa usarse sólo cuando Desactivar las colisiones no ha aportado a la región suficiente rendimiento para investigar un problema con las propiedades fÃsicas o los objetos que colisionan. - <notification - - name="UnableToLoadGesture" - > -No se ha podido cargar el gesto [NAME]. -Por favor, vuelva a intentarlo. - </notification> +Cuando acabe, no se olvide de reactivar la fÃsica, o los avatares seguirán sin poderse mover. - <notification - - name="LandmarkMissing" - > -El hito ha desaparecido de la base de datos. - </notification> +Por defecto: off + </notification> + <notification label="Objetos que colisionan" name="HelpRegionTopColliders"> + Muestra una lista de aquellos objetos con más colisiones potenciales con otros objetos. Estos objetos pueden ralentizar el rendimiento. +Seleccione Ver > EstadÃsticas, y mire Simulator > Time > Sim Time (Physics) para ver si se están empleando en 'physics' más de 20 ms. + </notification> + <notification label="Listar los scripts" name="HelpRegionTopScripts"> + Muestra una lista de los objetos que más tiempo emplean en ejecutar scripts de LSL. Estos objetos pueden ralentizar el rendimiento. +Seleccione Ver > EstadÃsticas, y mire Simulator > Time > Script Time para ver si se están empleando más de 25 ms. + </notification> + <notification label="Reiniciar la región" name="HelpRegionRestart"> + Reinicia los procesos del servidor en que corre esta región tras dos minutos de advertencia previa. Se desconectará a todos los residentes que estén en la región. La región guardará sus datos, y deberÃa volver en unos 90 segundos. - <notification - - name="UnableToLoadLandmark" - > -No se ha podido cargar el hito. Por favor, vuelva a intentarlo. - </notification> +Reiniciar la región no solventa la mayorÃa de los problemas de rendimiento, y, normalmente, debe utilizarse sólo cuando se indique. + </notification> + <notification label="Nivel del agua" name="HelpRegionWaterHeight"> + Es el nivel, en metros, del agua. Si se marca en algo distinto de 20, y usted tiene al lado el agua del mundo o un 'vacÃo', habrá una diferencia visible. - <notification - - name="CapsKeyOn" - > -Tiene pulsada su tecla de bloqueo de mayúsculas, lo que influirá en cómo escriba la contraseña. -Quizá quiera soltar esa tecla. - </notification> +Por defecto: 20 + </notification> + <notification label="Elevación del terreno" name="HelpRegionTerrainRaise"> + Es la distancia que, en metros, los propietarios de parcelas pueden elevar su terreno sobre la altura del terreno inicialmente creado. - <notification - - name="NotecardMissing" - > -La nota ha desaparecido de la base de datos. - </notification> +Por defecto: 4 + </notification> + <notification label="Rebaje del terreno" name="HelpRegionTerrainLower"> + Es la distancia que, en metros, los propietarios de parcelas pueden bajar su terreno sobre la altura del terreno inicialmente creado. - <notification - - name="NotecardNoPermissions" - > -No tiene permisos suficientes para ver la nota. - </notification> +Por defecto: -4 + </notification> + <notification label="Subir un RAW para el terreno" name="HelpRegionUploadRaw"> + Este botón carga un archivo .RAW en la región en que usted está. +El archivo debe tener las dimensiones correctas (RGB, 256x256) y 13 canales. La forma mejor de crear un archivo de terreno es descargar el archivo RAW existente. Un buen inicio es modificar el canal rojo -red- (altura del terreno), y subirlo. - <notification - - name="RezItemNoPermissions" - > -No tiene permisos suficientes para renderizar el objeto. - </notification> +La carga puede llevar unos 45 segundos. FÃjese que subir un archivo de terreno *no* moverá los objetos que haya en el terreno, sólo el terreno mismo y los permisos asociados a las parcelas. +Por tanto, puede que algunos objetos acaben enterrados.. - <notification - - name="UnableToLoadNotecard" - > -No se ha podido cargar la nota. -Por favor, vuelva a intentarlo. - </notification> +Para más información sobre la edición de las alturas del terreno, consulte la ayuda F1. + </notification> + <notification label="Descargar el RAW del terreno" name="HelpRegionDownloadRaw"> + Este botón descarga un archivo de esta región con los datos de alturas, dimensiones de las parcelas, estado de las parcelas en venta, y algunos permisos de las parcelas. Al abrir el archivo en un programa como Photoshop debe especificar las dimensiones del documento: RGB, 256x256 con 13 canales. +Este archivo de terreno no puede abrirse de otro modo. - <notification - - name="ScriptMissing" - > -El script ha desaparecido de la base de datos. - </notification> +Para más información sobre la edición de las alturas del terreno, consulte la ayuda F1. + </notification> + <notification label="Usar el Sol del estado" name="HelpRegionUseEstateSun"> + Esta casilla hace que la posición del Sol en la región sea la misma que la del resto del estado. - <notification - - name="ScriptNoPermissions" - > -No tiene permisos suficientes para ver el script. - </notification> +Por defecto: on + </notification> + <notification label="Fijar el Sol" name="HelpRegionFixedSun"> + Esta casilla fija la posición del Sol en la posición del deslizable Fase, y detiene su movimiento. - <notification - - name="UnableToLoadScript" - > -No se ha podido cargar el script. Por favor, vuelva a intentarlo. - </notification> +Por defecto: off + </notification> + <notification label="Predeterminar este terreno" name="HelpRegionBakeTerrain"> + Este botón salva la forma actual del terreno como nueva forma por defecto para la región. Una vez predeterminado, el terreno puede volver a esa forma cada vez que usted u otros usan la opción 'Revertir' en Editar el terreno. El terreno predeterminado también marca el punto medio para elevar y bajar los lÃmites. + </notification> + <notification label="Administradores del estado" name="HelpEstateEstateManager"> + Un administrador del estado es un residente en el que usted delega controles de la región y configuraciones del estado. Un administrador del estado puede cambiar algunas configuraciones de estos paneles, excepto las de subir, descargar, y predeterminar el terreno. Y, concretamente, puede autorizar o expulsar a residentes de su estado. - <notification - - name="IncompleteInventory" - > -Los contenidos que está usted ofreciendo aún no están disponibles. Por favor, vuelva a ofrecerlos en un minuto. - </notification> +Sólo el propietario del estado puede añadir o remover administradores, nadie más. +Por favor, elija sólo a residentes en quienes confÃe, pues usted será el responsable último de sus acciones. + </notification> + <notification label="Usar el horario global" name="HelpEstateUseGlobalTime"> + Esta casilla hace que, en su estado, el Sol tenga la misma posición que en los estados propiedad de Linden, 'mainland'. - <notification - - name="CannotModifyProtectedCategories" - > -No puede modificar categorÃas que están protegidas. - </notification> +Por defecto: on + </notification> + <notification label="Fijar el Sol" name="HelpEstateFixedSun"> + Esta casilla fija la posición del Sol en la posición del deslizable Fase, y detiene su movimiento. + </notification> + <notification label="Acceso público" name="HelpEstateExternallyVisible"> + Esta casilla habilita a cualquier residente que esté en otro estado pueda entrar en éste sin tener que estar en una lista de acceso. - <notification - - name="CannotRemoveProtectedCategories" - > -No puede quitar categorÃas que están protegidas. - </notification> +Por defecto: on + </notification> + <notification label="Permitir el teleporte a cualquier punto" name="HelpEstateAllowDirectTeleport"> + Cuando esta marcado, los residentes puede teleportarse directamente a cualquier punto de su estado. Si se desmarca, los residentes se teleportarán al Punto de Teleporte más cercano. - <notification - - name="OfferedCard" - > -Ha ofrecido una tarjeta de visita a [FIRST] [LAST] - </notification> +Por defecto: off + </notification> + <notification label="Autorizar el acceso" name="HelpEstateAllowResident"> + El acceso a este estado se limitará a los residentes aquà enumerados y a cualquier grupo de abajo. Esta configuración sólo funciona cuando está desmarcado Acceso público. + </notification> + <notification label="Autorizar el acceso de grupo" name="HelpEstateAllowGroup"> + El acceso a este estado se limitará a los grupos aquà enumerados y a cualquier residente de abajo. Esta configuración sólo funciona cuando está desmarcado Acceso público. + </notification> + <notification label="Dirección de correo para infracciones" name="HelpEstateAbuseEmailAddress"> + Aportando aquà una dirección de correo válida, se hará que las Denuncias de Infracción en este estado se envÃen a esa dirección. +Si se deja en blanco, las Denuncias de Infracción se enviarán sólo a Linden Lab. + </notification> + <notification label="Denegar el acceso" name="HelpEstateBanResident"> + A los residentes en esta lista se les niega el acceso a su estado, independientemente de cualquier otra configuración. + </notification> + <notification label="Autorizar el chat de voz" name="HelpEstateVoiceChat"> + Se autoriza a las parcelas del estado a tener sus propios canales de voz en los que los residentes puedan hablar y oÃr a otros residentes. - <notification - - name="UnableToBuyWhileDownloading" - > -No se puede comprar un objeto mientras se descargan sus datos. -Por favor, vuelva a intentarlo. - </notification> +Por defecto: off + </notification> + <notification label="Desajuste en la versión de voz" name="VoiceVersionMismatch"> + En esta región, la versión de Second Life no es compatible con el chat de voz. Para que el chat de voz funcione correctamente, debe actualizar Second Life. + </notification> + <notification label="Contrato del estado" name="HelpEstateCovenant"> + Definir un contrato del estado le permite vender parcelas del mismo. Si no existe un contrato, no puede vender terreno. +La nota para su contrato puede estar vacÃa si es que no quiere aplicar reglas, avisos a los compradores, o cualquier otra cosa relacionada con el terreno antes de que sea comprado. - <notification - - name="UnableToLinkWhileDownloading" - > -No se puede enlazar un objeto mientras se descargan sus datos. -Por favor, vuelva a intentarlo. - </notification> +Puede usar un contrato para comunicar al posible comprador reglas, pautas, información cultural, o, simplemente, sus propias expectativas. +AsÃ, puede hablarse de parcelación, normas de las construcciones, formas de pago, u otra información que considere que el nuevo propietario debe saber y con la que debe estar de acuerdo antes de hacer la compra. - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -No puede comprar a la vez objetos de diferentes propietarios. -Por favor, elija sólo uno. - </notification> +Para poder finalizar la compra, el comprador debe aceptar el contrato marcando la casilla adecuada. Los contratos de los estados son siempre visibles en la información Acerca del terreno en todas las parcelas. + </notification> + <notification label="No se pudo comprar los objetos" name="BuyObjectOneOwner"> + No se pueden comprar a la vez objetos de propietarios diferentes. +Por favor, seleccione sólo un objeto y vuelva a intentarlo. + </notification> + <notification label="No se pudo comprar el contenido" name="BuyContentsOneOnly"> + No se puede comprar a la vez los contenidos de más de un objeto. +Por favor, seleccione sólo un objeto y vuelva a intentarlo. + </notification> + <notification label="No se pudo comprar el contenido" name="BuyContentsOneOwner"> + No se pueden comprar a la vez objetos de propietarios diferentes. +Por favor, seleccione sólo un objeto y vuelva a intentarlo. + </notification> + <notification name="BuyOriginal"> + ¿Comprar el objeto original de [OWNER] por [PRICE] L$? +Usted pasará a ser el propietario de este objeto. +Podrá: + Modificarlo: [MODIFYPERM] + Copiarlo: [COPYPERM] + Revenderlo o darlo: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BuyOriginalNoOwner"> + ¿Comprar el objeto original por [PRICE] L$? +Usted pasará a ser el propietario de este objeto. +Podrá: + Modificarlo: [MODIFYPERM] + Copiarlo: [COPYPERM] + Revenderlo o darlo: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BuyCopy"> + ¿Comprar una copia de [OWNER] por [PRICE] L$? +El objeto se copiará a su inventario. +Podrá: + Modificarlo: [MODIFYPERM] + Copiarlo: [COPYPERM] + Revenderlo o darlo: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BuyCopyNoOwner"> + ¿Comprar una copia por [PRICE] L$? +El objeto se copiará a su inventario. +Podrá: + Modificarlo: [MODIFYPERM] + Copiarlo: [COPYPERM] + Revenderlo o darlo: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BuyContents"> + ¿Comprar los contenidos de [OWNER] por [PRICE] L$? +Serán copiados a su inventario. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BuyContentsNoOwner"> + ¿Comprar los contenidos por [PRICE] L$? +Serán copiados a su inventario. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmPurchase"> + Esta transacción hará que: +[ACTION] - <notification - - name="ObjectNotForSale" - > -El objeto no aparece como puesto a la venta. - </notification> +¿Está seguro de querer hacer esta compra? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + Esta transacción hará que: +[ACTION] - <notification - - name="EnteringGodMode" - > -Entrando en el modo administrativo, nivel [LEVEL] - </notification> +¿Está seguro de querer hacer esta compra? +Por favor, vuelva a escribir su contraseña y pulse OK. + <form name="form"> + <input name="message" type="password"/> + <button name="ConfirmPurchase" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="SetPickLocation"> + Nota: +Ha actualizado la posición de este Destacado, pero los otros detalles permanecen con sus valores originales. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + Ha elegido Ãtems 'no copiables' de su inventario. Esos Ãtems se quitarán de su inventario, no se copiarán. - <notification - - name="LeavingGodMode" - > -Saliendo del modo administrativo, nivel [LEVEL] - </notification> +¿Mover el/los Ãtem/s del inventario? + <usetemplate ignoretext="Cuando mueva objetos 'no copiables' del inventario" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromScriptedObject"> + Ha elegido Ãtems 'no copiables' de su inventario. Esos Ãtems se moverán a su inventario, no se copiarán. +Dado que estos objetos tienen scripts, moverlos a su inventario puede provocar un mal funcionamiento del script. - <notification - - name="CopyFailed" - > -No se ha hecho la copia porque usted no tiene permiso para hacerla - </notification> +¿Mover el/los Ãtem/s del inventario? + <usetemplate ignoretext="Cuando mueva objetos con script 'no copiables' del inventario" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ClickActionNotPayable"> + Atención: la acción Pagar al objeto al pulsar ha sido marcada, pero sólo funcionará si se añade un script con un evento money(). + <form name="form"> + <ignore name="ignore" text="Cuando configure 'Pagar' en objetos sin el evento money()"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + En este objeto, no hay Ãtems que esté autorizado a copiar. + </notification> + <notification name="WebLaunchAccountHistory"> + ¿Ir al sitio web de Second Life para ver el historial de su cuenta? + <usetemplate ignoretext="Cuando se cargue la página web del historial de la cuenta" name="okcancelignore" notext="Cancelar" yestext="Ir a la página"/> + </notification> + <notification name="ClickOpenF1Help"> + ¿Visitar el sitio web de Soporte de Second Life? + <usetemplate ignoretext="Cuando visite el sitio web de Soporte de Second Life." name="okcancelignore" notext="Cancelar" yestext="Ir"/> + </notification> + <notification name="ConfirmQuit"> + ¿Está seguro de que quiere salir? + <usetemplate ignoretext="Cuando esté saliendo de Second Life." name="okcancelignore" notext="Continuar" yestext="Salir"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + Use esta herramienta para denunciar violaciones de las Normas de la Comunidad y las Condiciones del Servicio. Vea: - <notification - - name="InventoryAccepted" - > -[NAME] ha aceptado su oferta del inventario. - </notification> +http://secondlife.com/corporate/tos.php +http://secondlife.com/corporate/cs.php - <notification - - name="InventoryDeclined" - > -[NAME] ha rehusado su oferta del inventario. - </notification> +Se investigan y resuelven todas las infracciones denunciadas de las Normas de la Comunidad y las Condiciones del Servicio. Puede ver la resolución tomada en el Informe de Incidentes, en: - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> +http://secondlife.com/support/incidentreport.php + </notification> + <notification name="HelpReportAbuseEmailEO"> + IMPORTANTE: Esta denuncia no irá a Linden Lab, sino al propietario de la región en la que usted se encuentra actualmente. - <notification - - name="CallingCardAccepted" - > -Se ha aceptado su tarjeta de visita. - </notification> +Como un servicio a los residentes y visitantes, el propietario de la región ha elegido recibir y resolver todas las enuncias que se originen en esta región. Linden Lab no investigará las denuncias que usted envÃe desde aquÃ. - <notification - - name="CallingCardDeclined" - > -Se ha rehusado su tarjeta de visita. - </notification> +El propietario de la región resolverá las denuncias basándose en las reglas locales de la región, tal como se detallan en el Contrato del estado. +(Puede ver el Contrato yendo al menú Mundo y eligiendo Acerca del terreno). - <notification - - name="TeleportToLandmark" - > -Ahora que ha llegado a mainland (los continentes), puede teleportarse a localizaciones como '[NAME]' pulsando el botón Inventario de la esquina inferior derecha de su pantalla, y, después, seleccionando la carpeta Hitos. -Pulse dos veces en el hito y, luego, pulse en Teleportar para viajar hasta allÃ. - </notification> +La resolución de esta denuncia se aplica exclusivamente a esta región; el acceso de los residentes a otras áreas de Second Life no se verá afectado por el resultado de esta denuncia. Únicamente Linden Lab puede impedir el acceso a la totalidad de Second Life. + </notification> + <notification name="HelpReportBug"> + Use esta herramienta *sólo* para informar de cuestiones técnicas que no se comportan como se describe o era esperable. Por favor, aporte todos los detalles que pueda. +Deberá responder al correo electrónico de auto respuesta para añadir más detalles a su informe. - <notification - - name="TeleportToPerson" - > -Ahora que ha llegado a mainland (los continentes), puede contactar con residentes como '[NAME]' pulsando el botón Inventario de la esquina inferior derecha de su pantalla, y, después, seleccionando la carpeta Tarjetas de visita. -Pulse dos veces en la tarjeta, pulse en Mensaje Instantáneo, y escriba un mensaje. - </notification> +Todos los informes de fallos serán investigados y evaluados. No se contestará por correo electrónico. - <notification - - name="CantSelectLandFromMultipleRegions" - > -No puede seleccionar un terreno que cruce las fronteras entre servidores. -Inténtelo seleccionando un trozo más pequeño de terreno. - </notification> +Si tiene algún problema técnico, por favor, contacte con Soporte en: - <notification - - name="GroupVote" - > -[NAME] ha propuesto votar: -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="Votar ahora"/> - <button - - name="Later" - text="Más tarde"/> - </form> - </notification> +http://secondlife.com/community/support.php - <notification - - name="SystemMessage" - > -[MESSAGE] - </notification> +Nota: no se investigarán los informes incompletos. + </notification> + <notification name="HelpReportAbuseSelectCategory"> + Por favor, elija una categorÃa para esta denuncia de infracción. +Seleccionar una categorÃa nos ayuda a clasificar y procesar las denuncias de infracciones. + </notification> + <notification name="HelpReportBugSelectCategory"> + Por favor, elija una categorÃa para este fallo. +Seleccionar una categorÃa nos ayuda a clasificar y procesar los informes de fallos. + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + Por favor, escriba el nombre del infractor. +Aportar el dato preciso nos ayuda a clasificar y procesar las denuncias de infracciones. + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + Por favor, escriba la localización donde tuvo lugar la infracción. +Aportar el dato preciso nos ayuda a clasificar y procesar las denuncias de infracciones. + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + Por favor, escriba un resumen de la infracción que ha habido. +Aportar un resumen preciso nos ayuda a clasificar y procesar las denuncias de infracciones. + </notification> + <notification name="HelpReportBugSummaryEmpty"> + Por favor, escriba un resumen del fallo. +Aportar un resumen preciso nos ayuda a clasificar y procesar los informes de fallos. + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + Por favor, escriba una descripción minuciosa de la infracción que ha habido. +Sea tan especÃfico como pueda, incluyendo los nombres y los detalles implicados en el incidente que denuncia. +Aportar una descripción precisa nos ayuda a clasificar y procesar las denuncias de infracciones. + </notification> + <notification name="HelpReportBugDetailsEmpty"> + Por favor, escriba una descripción minuciosa del fallo. +Sea tan especÃfico como pueda, incluyendo -si es posible- los pasos que permitan reproducir el fallo. +Aportar una descripción precisa nos ayuda a clasificar y procesar los informes de fallos. + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + Estimado Residente: - <notification - - name="EventNotification" - > -Notificación de un evento: +Parece que está usted denunciando una violación de la propiedad intelectual. Por favor, asegúrese de que su denuncia es correcto. -[NAME] -[DATE] - <form name="form"> - <button - - name="Teleport" - text="Teleportar"/> - <button - - name="Description" - text="Descripción"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> +(1) El proceso de la denuncia. Debe enviar una denuncia de infracción si cree que un Residente está reventando el sistema de permisos de Second Life, por ejemplo, usando un CopyBot u otras herramientas parecidas para copiar, infringiendo los derechos de propiedad intelectual. El Equipo de Infracciones (Abuse Team) investiga y lleva a cabo las acciones disciplinarias apropiadas ante toda acción que viole las las Normas de la Comunidad de Second Life o las Condiciones del Servicio. Sin embargo, el Equipo de Infracciones ni gestiona ni responde a las solicitudes de eliminar contenidos del mundo de Second Life. - <notification - - name="TransferObjectsHighlighted" - > -En estos momentos, están realzados todos los objetos de esta parcela que serán transferidos al comprador de la misma. +(2) El DMCA o Proceso de Eliminación de Contenido. Para solicitar que se elimine algún contenido de Second Life, DEBE enviar una notificación válida de infracción tal y como se explica en nuestra DMCA Policy en http://secondlife.com/corporate/dmca.php. -* No están realzados los árboles y hierbas que se transferirán. - <form name="form"> - <button - - name="Done" - text="Hecho"/> - </form> - </notification> +Si todavÃa quiere seguir con el proceso de infracción, por favor, cierre esta ventana y acabe de enviar su denuncia. En concreto, debe seleccionar la categorÃa 'CopyBot o Programa para saltarse los permisos'. - <notification - - name="DeactivatedGesturesTrigger" - > -Desactivados los gestos que tienen el mismo botón: -[NAMES] - </notification> +Gracias, - <notification - - name="NoQuickTime" - > -No se ve como instalado en su sistema el software QuickTime de Apple. -Si quiere ver por streaming elementos multimedia en las parcelas que los tengan, debe ir al sitio web de QuickTime (http://www.apple.com/quicktime) e instalar el QuickTime Player. - </notification> +Linden Lab + </notification> + <notification name="FailedRequirementsCheck"> + Han desaparecido de [FLOATER] estos componentes: +[COMPONENTS] + </notification> + <notification label="Reemplazar el anexado actual" name="ReplaceAttachment"> + En ese punto de su cuerpo ya hay un objeto anexado. ¿Quiere reemplazarlo por el objeto que ha elegido? + <form name="form"> + <ignore name="ignore" save_option="true" text="Cuando se reemplacen anexados existentes"/> + <button ignore="Reemplazar automaticamente" name="Yes" text="OK"/> + <button ignore="Nunca reemplazar" name="No" text="Cancelar"/> + </form> + </notification> + <notification label="¡Aviso! Modo Ocupado" name="BusyModePay"> + Usted está en el modo Ocupado. Por tanto, no recibirá ningún Ãtem a cambio de esta pago. - <notification - - name="OwnedObjectsReturned" - > -Se han devuelto a su inventario los objetos de los que usted era propietario en la parcela seleccionada. - </notification> +¿Quiere salir del modo Ocupado ante de completar esta transacción? + <form name="form"> + <ignore name="ignore" save_option="true" text="Cuando se esté pagando a un objeto o persona en el modo Ocupado"/> + <button ignore="Siempre salir del modo Ocupado" name="Yes" text="OK"/> + <button ignore="Nunca salir del modo Ocupado" name="No" text="Cancelar"/> + </form> + </notification> + <notification name="ConfirmEmptyTrash"> + ¿Está seguro de que quiere vaciar definitivamente el contenido de su Papelera? + <usetemplate ignoretext="Cuando se vacÃe la Papelera" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ConfirmClearBrowserCache"> + ¿Está seguro de que quiere limpiar la caché de su navegador? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="SÃ"/> + </notification> + <notification name="ConfirmClearCookies"> + ¿Está seguro de que quiere limpiar sus cookies? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="SÃ"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + ¿Está seguro de que quiere vaciar su lista de URL guardadas? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="SÃ"/> + </notification> + <notification name="ConfirmEmptyLostAndFound"> + ¿Está seguro de que quiere eliminar permanentemente el contenido de su carpeta Objetos Perdidos? + <usetemplate ignoretext="Cuando se vacÃe la carpeta del inventario Objetos Perdidos" name="okcancelignore" notext="No" yestext="SÃ"/> + </notification> + <notification name="CopySLURL"> + Se ha copiado a su portapapeles la siguiente SLurl: + [SLURL] - <notification - - name="OtherObjectsReturned" - > -Se han devuelto a su inventario los objetos de los que usted era propietario en la parcela propiedad de [FIRST] [LAST]. - </notification> +PublÃquela en una página web para que otros puedan acceder fácilmente a esta posición, o pruébela usted mismo pegándola en la barra de direcciones de su navegador. + <form name="form"> + <ignore name="ignore" text="Cuando se copie una SLurl al portapapeles"/> + </form> + </notification> + <notification name="GraphicsPreferencesHelp"> + Este panel controla el tamaño de la ventana, y la resolución y la calidad de los gráficos del cliente. La interfaz Preferencias > Gráficos le permite escoger entre cuatro niveles gráficos: Bajo, Medio, Alto, y Ultra. También puede personalizar sus configuraciones gráficas marcando la casilla Personalizar y adaptando estas configuraciones: + +Efectos: activa o desactiva varios tipos de shaders. + +Objetos reflejados: determina qué objetos reflejará el agua. + +Renderización del avatar: muestra opciones que afectan a cómo renderiza el cliente los avatares. + +Distancia de dibujo: afecta a cuán lejos de su punto de vista se renderizarán los objetos en la escena. + +Núm. máx. de partÃculas: define el número máximo de partÃculas que podrá ver a la vez en su pantalla. + +Calidad del procesamiento: define la resolución con que se renderiza el brillo. - <notification - - name="OtherObjectsReturned2" - > -Se han devuelto a su propietario los objetos que, en la parcela seleccionada, eran propiedad del residente '[NAME]'. - </notification> +Detalle de la malla: define la cantidad de dettales o número de triángulos usados para renderizar algunos objetos. Cuanto más alto sea el valor, más detalle, pero más tiempo para renderizar. - <notification - - name="GroupObjectsReturned" - > -Se han devuelto a los inventarios de sus propietarios los objetos que estaban compartidos con el grupo [GROUPNAME] en la parcela seleccionada. -Los objetos transferibles que se transfirieron al grupo se han devuelto a sus propietarios anteriores. -Los objetos no transferibles que se transfirieron al grupo han sido borrados. - </notification> +Detalles de la iluminación: determina que tipo de luces quiere usted que se rendericen. - <notification - - name="UnOwnedObjectsReturned" - > -Se han devuelto a sus propietarios los objetos de los que usted NO era propietario en la parcela seleccionada. - </notification> +Nivel de detalle del terreno: marca con cuánto detalle quiere ver la textura del terreno. + </notification> + <notification name="WLSavePresetAlert"> + ¿Quiere sobrescribir la preselección guardada? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="WLDeletePresetAlert"> + ¿Quiere borrar [SKY]? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="WLNoEditDefault"> + No puede editar ni borrar una preselección por defecto. + </notification> + <notification name="WLMissingSky"> + Este archivo del ciclo de un dÃa se refiere a un archivo perdido de cielo: [SKY]. + </notification> + <notification name="PPSaveEffectAlert"> + Ya existe un efecto de procesamiento. ¿Desea sobreescribirlo? + <usetemplate name="okcancelbuttons" notext="No" yestext="SÃ"/> + </notification> + <notification name="HelpEditSky"> + Edite los deslizables del WindLight para crear y guardar configuraciones del cielo. + </notification> + <notification name="HelpEditDayCycle"> + Define cómo se verán los cielos a lo largo del dÃa. + </notification> + <notification name="EnvSettingsHelpButton"> + Estas configuraciones ajustan la forma en que usted ve el medio ambiente localmente, en su ordenador. Su tarjeta gráfica debe admitir shaders de la atmósfera ('atmospheric shaders') para poder acceder a esta configuración. - <notification - - name="NotSafe" - > -Este es un terreno con el daño autorizado ('no seguro'). -Aquà puede ser herido. Si muere, será teleportado a su Base. - </notification> +Ajuste el deslizable "Duración de un dÃa" para cambiar localmente, en su visor, las etapas del dÃa. - <notification - - name="NoFly" - > -En este terreno no se permite volar ('no volar'). -Aquà no debe volar. - </notification> +Ajuste el deslizable "Nubosidad" para controlar cuántas nubes cubren el cielo. - <notification - - name="PushRestricted" - > -Este terreno es 'Sin empujones'. -No puede empujar a otros a menos que sea el propietario del terreno. - </notification> +Pulse un color en el selector de "Color del agua" para cambiar el color de la misma. - <notification - - name="NoVoice" - > -Este terreno tiene desactivada la voz. - </notification> +Ajuste el deslizable "Claridad del agua" para controlar el nivel de claridad del agua bajo la superficie. - <notification - - name="NoBuild" - > -Este terreno tiene desactivado el construir ('no construir'). -Aquà no puede crear objetos. - </notification> +Pulse "Usar el horario del estado" para devolver los valores del dÃa al tiempo actual de la región y seguir a partir de él. - <notification - - name="ScriptsStopped" - > -Un administrador ha detenido temporalmente los scripts en esta región. - </notification> +Pulse "Cielo avanzado" para abrir un editor con configuraciones avanzadas para el cielo. - <notification - - name="ScriptsNotRunning" - > -En esta región no se está ejecutando ningún script. - </notification> +Pulse "Agua avanzada" para abrir un editor con configuraciones avanzadas para el agua. + </notification> + <notification name="HelpDayCycle"> + El Editor del ciclo del dÃa le permite controlar el cielo de Second Life durante el ciclo dÃa/noche. Este es el ciclo que usa el deslizable Duración de un dÃa del Editor del entorno. - <notification - - name="NoOutsideScripts" - > -Esta región tiene desactivados los scripts de otros -('no scripts de otros'). -No se ejecutará ningún script que no pertenezca al propietario del terreno. - </notification> +El Editor del ciclo del dÃa trabaja configurando fotogramas clave ('keyframes'): nodos (representados por los puntos grises en la lÃnea del tiempo) cada uno de los cuales tiene asociado un Cielo definido. Según progresa la Duración de un dÃa, el WindLight realiza la "animación" del cielo interpolándose entre esos fotogramas clave. - <notification - - name="ClaimPublicLand" - > -Sólo puede reclamar terreno público en la región en que está usted. - </notification> +La flecha amarilla sobre la lÃnea del tiempo representa lo que usted ve actualmente, basándose en la Duración de un dÃa. Púlsela y muévela para ver cómo cambia la animación del dÃa. Puede añadir o borrar fotogramas clave pulsando los botones Añadir un punto o Quitar un punto, situados a la derecha de la lÃnea del tiempo. - <notification - - name="ObjectGiveItem" - > -Un objeto llamado [OBJECTFROMNAME], propiedad de [FIRST] [LAST], le ha dado un/a [OBJECTTYPE] de nombre [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Guardar"/> - <button - - name="Discard" - text="Descartar"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> +Puede establecer la posición en el tiempo de cualquier fotograma clave moviéndolo a lo largo de la lÃnea del tiempo, o configurando manualmente su valor por su valor manualmente en el recuadro Configuración del fotograma clave. También en ese recuadro podrá asociar el fotograma clave a un modelo predefinido de WindLight. - <notification - - name="ObjectGiveItemUnknownUser" - > -Un objeto llamado [OBJECTFROMNAME], propiedad de (un usuario desconocido), le ha dado un/a [OBJECTTYPE] de nombre [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Guardar"/> - <button - - name="Discard" - text="Descartar"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> +La Duración del ciclo establece la duración total de un "dÃa". Marcar un valor bajo (por ejemplo, 2 min.) hará que las 24 horas de su lÃnea del tiempo se animen ¡en sólo dos minutos reales! Una vez que esté satisfecho con su ciclo de la lÃnea del tiempo y los fotogramas clave, utilice los botones Probar y Parar para obtener una vista previa de los resultados. Recuerde que también puede mover la flecha amarilla de encima de la lÃnea del tiempo para ver el ciclo de la animación. El botón Usar el horario del estado sincronizará su ciclo de duración de un dÃa con el ciclo del estado. - <notification - - name="UserGiveItem" - > -[NAME] le ha dado un/a [OBJECTTYPE] de nombre '[OBJECTNAME]'. - <form name="form"> - <button - - name="Keep" - text="Guardar"/> - <button - - name="Discard" - text="Descartar"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> +Cuando todo esté a su gusto, puede guardar esos datos y cargarlos luego usando los botones Guardar este tipo de dÃa y Cargar un tipo de dÃa. Note que, por el momento, sólo podemos permitir un ciclo de un dÃa. + </notification> + <notification name="HelpBlueHorizon"> + Use los deslizables Rojo/Verde/Azul (RVA) para ajustar el color del cielo. Puede usar el deslizable de Intensidad (I) para moverlos al unÃsono. + </notification> + <notification name="HelpHazeHorizon"> + La Cantidad de bruma es uno de los parámetros más útiles para ajustar el nivel de luz de la escena. Es eficaz para simular muchos ajustes de la exposición, como la claridad en un ambiente nublado o de nevisca, o las tonalidades del una flor Iris aún cerrada. + </notification> + <notification name="HelpBlueDensity"> + La Saturación afecta a la densidad global de la saturación de color del cielo y la niebla. Si mueve el deslizable Intensidad (I) a la derecha, los colores serán más vivos y brillantes. Si lo mueve a la izquierda, se irán decolorando hasta llegar incluso al blanco y negro. Si desea ajustar el balance de color del cielo, puede controlar la saturación de cada elemento usando el deslizable Rojo/Verde/Azul (RVA). + </notification> + <notification name="HelpHazeDensity"> + La Densidad de la bruma controla lo sombrÃo de la atmósfera, su neblina. Es eficaz para simular escenas con mucho humo o contaminantes, y también para simular niebla y llovizna. + </notification> + <notification name="HelpDensityMult"> + La Densidad puede usarse para definir globalmente la 'pesadez' de la atmósfera. Los ajustes bajos dan sensación de un "aire limpio", y los altos de pesadez, de esmog. + </notification> + <notification name="HelpDistanceMult"> + Ajusta a qué distancia se percibe el WindLight. El valor cero desactiva la influencia del WindLight en el terreno y los objetos. Los valores superiores a 1 simulan mayores distancias a las que afectan los efectos atmosféricos + </notification> + <notification name="HelpMaxAltitude"> + La Altitud máx. ajusta hasta que altura el WindLight realiza sus cálculos para computar la iluminación atmosférica. En las últimas horas del dÃa, es útil para ajustar la "profundidad" a la que aparece el Sol. + </notification> + <notification name="HelpSunlightColor"> + Ajusta en la escena la intensidad y el color de las luces directas. + </notification> + <notification name="HelpSunAmbient"> + Ajusta en la escena la intensidad y el color de la luz ambiental. + </notification> + <notification name="HelpSunGlow"> + El deslizable Tamaño controla el tamaño del Sol. +El deslizable Visión controla cómo se ve de borroso el Sol en el cielo. + </notification> + <notification name="HelpSceneGamma"> + Ajusta la distribución de luz y oscuridad en la pantalla. + </notification> + <notification name="HelpStarBrightness"> + Ajusta el brillo de las estrellas en el cielo. + </notification> + <notification name="HelpTimeOfDay"> + Controla la posición del Sol en el cielo. Es parecido a la elevación. + </notification> + <notification name="HelpEastAngle"> + Controla la posición del Sol en el cielo. Es parecido al acimut. + </notification> + <notification name="HelpCloudColor"> + Edita el color de las nubes. En general, es recomendable mantenerlas blanquecinas. +Pero, vaya, diviértase si quiere. + </notification> + <notification name="HelpCloudDetail"> + Controla el detalle de las capas superiores de la imagen en la imagen principal de las nubes. X e Y controlan su posición. D (Densidad) controla la densidad o la fracturación con que aparecen las nubes. + </notification> + <notification name="HelpCloudDensity"> + Le permite controlar la posición de las nubes con los deslizables X e Y, y su desnidad con el deslizable D. + </notification> + <notification name="HelpCloudCoverage"> + Controla cuánto cubren el cielo las nubes. + </notification> + <notification name="HelpCloudScale"> + Controla el tamaño de la imagen de las nubes en la bóveda celeste. + </notification> + <notification name="HelpCloudScrollX"> + Controla la velocidad de las nubes al moverse en la dirección del eje X. + </notification> + <notification name="HelpCloudScrollY"> + Controla la velocidad de las nubes al moverse en la dirección del eje Y. + </notification> + <notification name="HelpClassicClouds"> + Marque esta casilla para activar la aparición de las nubes clásicas de Second Life junto a las nubes del WindLight. + </notification> + <notification name="HelpWaterFogColor"> + Elije el color del agua bajo la superficie. + </notification> + <notification name="HelpWaterFogDensity"> + Controla la densidad de la claridad del agua, y a qué distancia puede verse bajo ella. + </notification> + <notification name="HelpUnderWaterFogMod"> + Modifica el efecto de Transparencia para controlar cuán lejos su avatar puede ver bajo el agua. + </notification> + <notification name="HelpWaterGlow"> + Controla la cantidad de brillo de la superficie del agua. + </notification> + <notification name="HelpWaterNormalScale"> + Controla el tamaño de las tres ondulaciones que componen el agua. + </notification> + <notification name="HelpWaterFresnelScale"> + Controla cuánta luz se refleja desde diferentes ángulos. + </notification> + <notification name="HelpWaterFresnelOffset"> + Controla cuánta intensidad de luz se refleja. + </notification> + <notification name="HelpWaterScaleAbove"> + Controla la cantidad de luz refractada mirando la superficie del agua desde arriba. + </notification> + <notification name="HelpWaterScaleBelow"> + Controla la cantidad de luz refractada mirando la superficie del agua desde debajo. + </notification> + <notification name="HelpWaterBlurMultiplier"> + Controla cómo se mezclan las ondas y los reflejos. + </notification> + <notification name="HelpWaterNormalMap"> + Controla cuál es la capa de 'vista normal' del agua, para determinar las reflexiones/refracciones. + </notification> + <notification name="HelpWaterWave1"> + Controla hacia adónde y a qué velocidad se mueve en los ejes X e Y la versión en tamaño grande de la 'vista normal'. + </notification> + <notification name="HelpWaterWave2"> + Controla hacia adónde y a qué velocidad se mueve en los ejes X e Y la versión en tamaño pequeño de la 'vista normal'. + </notification> + <notification name="NewSkyPreset"> + Dame un nombre para el cielo nuevo. + <form name="form"> + <input name="message" type="text"> + Preselección nueva + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + ¡Esa preselección ya existe! + </notification> + <notification name="NewWaterPreset"> + Dame un nombre para la nueva preselección de agua. + <form name="form"> + <input name="message" type="text"> + Preselección nueva + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + ¡Esa preselección ya existe! + </notification> + <notification name="WaterNoEditDefault"> + No puede editar o borrar una preselección por defecto. + </notification> + <notification name="ChatterBoxSessionStartError"> + No se puede empezar una nueva sesión de chat con [RECIPIENT]. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + Debe cerrarse su sesión de chat con [NAME]. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + No se pueden comprar los Ãtems que aún forman parte de un objeto anexado. + </notification> + <notification label="Acerca de las solicitudes de autorización de débito" name="DebitPermissionDetails"> + Al admitir esta petición, le da permiso a un script para que coja dólares Linden (L$) de su cuenta. Para revocar este permiso, el propietario del objeto debe eliminarlo o reiniciar ese script del objeto. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + ¿Quiere vestirse automáticamente el Ãtem de ropa nueva que ha creado? + <usetemplate ignoretext="Vestirme automáticamente la ropa nueva" name="okcancelignore" notext="No" yestext="SÃ"/> + </notification> + <notification name="NotAgeVerified"> + Para acceder a esta parcela, se debe haber verificado su edad. +¿Quiere visitar la web de Second Life para verificar su edad? - <notification - - name="GodMessage" - > -[NAME] -[MESSAGE] - </notification> +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/verification.php + </url> + <usetemplate ignoretext="Advertir de la falta de la verificación de edad" name="okcancelignore" notext="No" yestext="SÃ"/> + </notification> + <notification name="Cannot enter parcel: no payment info on file"> + Antes de que pueda acceder a esta parcela, se requiere que usted tenga archivada su información de pago. +¿Quiere visitar la web de Second Life para actualizar esto? - <notification - - name="JoinGroup" - > +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/index.php?lang=es + </url> + <usetemplate ignoretext="Advertir de la falta de información de pago" name="okcancelignore" notext="No" yestext="SÃ"/> + </notification> + <notification name="MissingString"> + La cadena [STRING_NAME] Ha desaparecido de strings.xml + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + Cancelado + </notification> + <notification name="CancelledSit"> + Cancelado el sentarse + </notification> + <notification name="CancelledAttach"> + Candelado el anexar + </notification> + <notification name="ReplacedMissingWearable"> + Reemplazadas las ropas o partes del cuerpo perdidas con sus equivalentes por defecto. + </notification> + <notification name="GroupNotice"> + Asunto: [SUBJECT], Mensaje: [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] está conectado + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] no está conectado + </notification> + <notification name="AddSelfFriend"> + No se puede añadir como amigo a usted mismo. + </notification> + <notification name="UploadingAuctionSnapshot"> + Subiendo fotos del mundo y del sitio web... +(tardará unos 5 minutos). + </notification> + <notification name="UploadPayment"> + Ha pagado [AMOUNT] LS por la subida. + </notification> + <notification name="UploadWebSnapshotDone"> + Completada la subida de la foto del sitio web. + </notification> + <notification name="UploadSnapshotDone"> + Completada la subida de la foto del mundo. + </notification> + <notification name="TerrainDownloaded"> + Se ha descargado Terrain.raw + </notification> + <notification name="GestureMissing"> + El gesto [NAME] ha desaparecido de la base de datos. + </notification> + <notification name="UnableToLoadGesture"> + No se ha podido cargar el gesto [NAME]. +Por favor, vuelva a intentarlo. + </notification> + <notification name="LandmarkMissing"> + El hito ha desaparecido de la base de datos. + </notification> + <notification name="UnableToLoadLandmark"> + No se ha podido cargar el hito. Por favor, vuelva a intentarlo. + </notification> + <notification name="CapsKeyOn"> + Tiene pulsada su tecla de bloqueo de mayúsculas, lo que influirá en cómo escriba la contraseña. +Quizá quiera soltar esa tecla. + </notification> + <notification name="NotecardMissing"> + La nota ha desaparecido de la base de datos. + </notification> + <notification name="NotecardNoPermissions"> + No tiene permisos suficientes para ver la nota. + </notification> + <notification name="RezItemNoPermissions"> + No tiene permisos suficientes para renderizar el objeto. + </notification> + <notification name="UnableToLoadNotecard"> + En este momento no se puede cargar la nota. + </notification> + <notification name="ScriptMissing"> + El script ha desaparecido de la base de datos. + </notification> + <notification name="ScriptNoPermissions"> + No tiene permisos suficientes para ver el script. + </notification> + <notification name="UnableToLoadScript"> + No se ha podido cargar el script. Por favor, vuelva a intentarlo. + </notification> + <notification name="IncompleteInventory"> + Los contenidos que está usted ofreciendo aún no están disponibles. Por favor, vuelva a ofrecerlos en un minuto. + </notification> + <notification name="CannotModifyProtectedCategories"> + No puede modificar categorÃas que están protegidas. + </notification> + <notification name="CannotRemoveProtectedCategories"> + No puede quitar categorÃas que están protegidas. + </notification> + <notification name="OfferedCard"> + Ha ofrecido una tarjeta de visita a [FIRST] [LAST] + </notification> + <notification name="UnableToBuyWhileDownloading"> + No se puede comprar un objeto mientras se descargan sus datos. +Por favor, vuelva a intentarlo. + </notification> + <notification name="UnableToLinkWhileDownloading"> + No se puede enlazar un objeto mientras se descargan sus datos. +Por favor, vuelva a intentarlo. + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + No puede comprar a la vez objetos de diferentes propietarios. +Por favor, elija sólo uno. + </notification> + <notification name="ObjectNotForSale"> + El objeto no aparece como puesto a la venta. + </notification> + <notification name="EnteringGodMode"> + Entrando en el modo administrativo, nivel [LEVEL] + </notification> + <notification name="LeavingGodMode"> + Saliendo del modo administrativo, nivel [LEVEL] + </notification> + <notification name="CopyFailed"> + No se ha hecho la copia porque usted no tiene permiso para hacerla + </notification> + <notification name="InventoryAccepted"> + [NAME] ha aceptado su oferta del inventario. + </notification> + <notification name="InventoryDeclined"> + [NAME] ha rehusado su oferta del inventario. + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + Se ha aceptado su tarjeta de visita. + </notification> + <notification name="CallingCardDeclined"> + Se ha rehusado su tarjeta de visita. + </notification> + <notification name="TeleportToLandmark"> + Ahora que ha llegado a mainland (los continentes), puede teleportarse a localizaciones como '[NAME]' pulsando el botón Inventario de la esquina inferior derecha de su pantalla, y, después, seleccionando la carpeta Hitos. +Pulse dos veces en el hito y, luego, pulse en Teleportar para viajar hasta allÃ. + </notification> + <notification name="TeleportToPerson"> + Ahora que ha llegado a mainland (los continentes), puede contactar con residentes como '[NAME]' pulsando el botón Inventario de la esquina inferior derecha de su pantalla, y, después, seleccionando la carpeta Tarjetas de visita. +Pulse dos veces en la tarjeta, pulse en Mensaje Instantáneo, y escriba un mensaje. + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + No puede seleccionar un terreno que cruce las fronteras entre servidores. +Inténtelo seleccionando un trozo más pequeño de terreno. + </notification> + <notification name="SearchWordBanned"> + Se han excluido algunos términos de su búsqueda debido a restricciones en el contenido, según se especifica en las Normas de la Comunidad. + </notification> + <notification name="NoContentToSearch"> + Por favor, elija al menos un tipo de contenido a buscar ('PG', 'Mature', o 'Adult'). + </notification> + <notification name="GroupVote"> + [NAME] ha propuesto votar: [MESSAGE] - <form name="form"> - <button - - name="Join" - text="Entrar"/> - <button - - name="Decline" - text="Rehusar"/> - <button - - name="Info" - text="Información"/> - </form> - </notification> + <form name="form"> + <button name="VoteNow" text="Votar ahora"/> + <button name="Later" text="Más tarde"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + Notificación de un evento: - <notification - - name="TeleportOffered" - > -[NAME] se ha ofrecido a teleportarle hasta su posición: +[NAME] +[DATE] + <form name="form"> + <button name="Teleport" text="Teleportar"/> + <button name="Description" text="Descripción"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + En estos momentos, están realzados todos los objetos de esta parcela que serán transferidos al comprador de la misma. +* No están realzados los árboles y hierbas que se transferirán. + <form name="form"> + <button name="Done" text="Hecho"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + Desactivados los gestos que tienen el mismo botón: +[NAMES] + </notification> + <notification name="NoQuickTime"> + No se ve como instalado en su sistema el software QuickTime de Apple. +Si quiere ver por streaming elementos multimedia en las parcelas que los tengan, debe ir al sitio web de QuickTime (http://www.apple.com/quicktime) e instalar el QuickTime Player. + </notification> + <notification name="OwnedObjectsReturned"> + Se han devuelto a su inventario los objetos de los que usted era propietario en la parcela seleccionada. + </notification> + <notification name="OtherObjectsReturned"> + Se han devuelto a su inventario los objetos de los que usted era propietario en la parcela propiedad de [FIRST] [LAST]. + </notification> + <notification name="OtherObjectsReturned2"> + Se han devuelto a su propietario los objetos que, en la parcela seleccionada, eran propiedad del residente '[NAME]'. + </notification> + <notification name="GroupObjectsReturned"> + Se han devuelto a los inventarios de sus propietarios los objetos que estaban compartidos con el grupo [GROUPNAME] en la parcela seleccionada. +Los objetos transferibles que se transfirieron al grupo se han devuelto a sus propietarios anteriores. +Los objetos no transferibles que se transfirieron al grupo han sido borrados. + </notification> + <notification name="UnOwnedObjectsReturned"> + Se han devuelto a sus propietarios los objetos de los que usted NO era propietario en la parcela seleccionada. + </notification> + <notification name="NotSafe"> + Este es un terreno con el daño autorizado ('no seguro'). +Aquà puede ser herido. Si muere, será teleportado a su Base. + </notification> + <notification name="NoFly"> + En este terreno no se permite volar ('no volar'). +Aquà no debe volar. + </notification> + <notification name="PushRestricted"> + Este terreno es 'Sin empujones'. +No puede empujar a otros a menos que sea el propietario del terreno. + </notification> + <notification name="NoVoice"> + Este terreno tiene desactivada la voz. + </notification> + <notification name="NoBuild"> + Este terreno tiene desactivado el construir ('no construir'). +Aquà no puede crear objetos. + </notification> + <notification name="ScriptsStopped"> + Un administrador ha detenido temporalmente los scripts en esta región. + </notification> + <notification name="ScriptsNotRunning"> + En esta región no se está ejecutando ningún script. + </notification> + <notification name="NoOutsideScripts"> + Esta región tiene desactivados los scripts de otros +('no scripts de otros'). +No se ejecutará ningún script que no pertenezca al propietario del terreno. + </notification> + <notification name="ClaimPublicLand"> + Sólo puede reclamar terreno público en la región en que está usted. + </notification> + <notification name="RegionTPAccessBlocked"> + No está autorizado en esa región por su nivel de calificación. Debe validar su edad y/o instalar el último visor. + +Por favor, vaya a la Base de Conocimientos para más detalles sobre el acceso a zonas con este nivel de calificación. + </notification> + <notification name="URBannedFromRegion"> + Se le ha prohibido el acceso a la región. + </notification> + <notification name="NoTeenGridAccess"> + Su cuenta no puede conectarse a esta región del grid teen. + </notification> + <notification name="NoHelpIslandTP"> + No puede teleportarse de vuelta a la Help Island ('Isla de Ayuda'). +Vaya a la 'Help Island Public' ('Isla Pública de Ayuda') para repetir el tutorial. + </notification> + <notification name="ImproperPaymentStatus"> + No tiene el estado de pago adecuado para entrar a esta región. + </notification> + <notification name="MustGetAgeRgion"> + Debe haber verificado su edad para entrar a esta región. + </notification> + <notification name="MustGetAgeParcel"> + Debe haber verificado su edad para entrar a esta parcela. + </notification> + <notification name="NoDestRegion"> + No se ha encontrada la región de destino. + </notification> + <notification name="NotAllowedInDest"> + No está autorizado en el destino. + </notification> + <notification name="RegionParcelBan"> + No puede cruzar la región por una parcela con el acceso prohibido. Intente otro camino. + </notification> + <notification name="TelehubRedirect"> + Ha sido redirigido a un punto de teleporte. + </notification> + <notification name="CouldntTPCloser"> + No se puede teleportar a un destino tan cercano. + </notification> + <notification name="TPCancelled"> + Teleporte cancelado. + </notification> + <notification name="FullRegionTryAgain"> + En estos momentos, está llena la región a la que intenta entrar. +Por favor, reinténtelo en unos momentos. + </notification> + <notification name="GeneralFailure"> + Fallo general. + </notification> + <notification name="RoutedWrongRegion"> + Mal dirigido a la región. Por favor, reinténtelo. + </notification> + <notification name="NoValidAgentID"> + ID de agente inválida. + </notification> + <notification name="NoValidSession"> + ID de sesión inválido. + </notification> + <notification name="NoValidCircuit"> + Circuito de código inválido. + </notification> + <notification name="NoValidTimestamp"> + Fecha inválida. + </notification> + <notification name="NoPendingConnection"> + No se puede crear la conexión. + </notification> + <notification name="InternalUsherError"> + Se ha producido un error interno al intentar acceder al destino de su teleporte. Puede que, en este momento, el servicio de Second Life tenga problemas. + </notification> + <notification name="NoGoodTPDestination"> + No se puede encontrar en esta región un buen destino para el teleporte. + </notification> + <notification name="InternalErrorRegionResolver"> + Ha sucedido un error interno al manejar las coordenadas globales de su petición de teleporte. Puede que, en este momento, el servicio de Second Life tenga problemas. + </notification> + <notification name="NoValidLanding"> + No se ha podido encontrar un punto de aterrizaje válido. + </notification> + <notification name="NoValidParcel"> + No se ha podido encontrar una parcela válida. + </notification> + <notification name="ObjectGiveItem"> + Un objeto llamado [OBJECTFROMNAME], propiedad de [FIRST] [LAST], le ha dado un/a [OBJECTTYPE] de nombre [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Guardar"/> + <button name="Discard" text="Descartar"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + Un objeto llamado [OBJECTFROMNAME], propiedad de (un usuario desconocido), le ha dado un/a [OBJECTTYPE] de nombre [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Guardar"/> + <button name="Discard" text="Descartar"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME] le ha dado un/a [OBJECTTYPE] de nombre '[OBJECTNAME]'. + <form name="form"> + <button name="Keep" text="Guardar"/> + <button name="Discard" text="Descartar"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="Teleportar"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="Entrar"/> + <button name="Decline" text="Rehusar"/> + <button name="Info" text="Información"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME] se ha ofrecido a teleportarle hasta su posición: - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="Teleportar"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="Más tarde"/> - <button - - name="GoNow..." - text="Ir ahora..."/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME] le está ofreciendo amistad. + <form name="form"> + <button name="Later" text="Más tarde"/> + <button name="GoNow..." text="Ir ahora..."/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME] le está ofreciendo amistad. [MESSAGE] (Por defecto, usted podrá ver si están conectados los demás). - <form name="form"> - <button - - name="Accept" - text="Aceptar"/> - <button - - name="Decline" - text="Rehusar"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME] le está ofreciendo amistad. + <form name="form"> + <button name="Accept" text="Aceptar"/> + <button name="Decline" text="Rehusar"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME] le está ofreciendo amistad. (Por defecto, usted podrá ver si están conectados los demás). - <form name="form"> - <button - - name="Accept" - text="Aceptar"/> - <button - - name="Decline" - text="Rehusar"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -[NAME] ha aceptado su oferta de amistad. - </notification> - - <notification - - name="FriendshipDeclined" - > -[NAME] ha rehusado su oferta de amistad. - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST] le está ofreciendo su tarjeta de visita. + <form name="form"> + <button name="Accept" text="Aceptar"/> + <button name="Decline" text="Rehusar"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + [NAME] ha aceptado su oferta de amistad. + </notification> + <notification name="FriendshipDeclined"> + [NAME] ha rehusado su oferta de amistad. + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST] le está ofreciendo su tarjeta de visita. Esto añadirá un Ãtem a su inventario para que pueda enviar rápidamente a este residente un MI. - <form name="form"> - <button - - name="Accept" - text="Aceptar"/> - <button - - name="Decline" - text="Rehusar"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -La región se reiniciará en [MINUTES] minutos. + <form name="form"> + <button name="Accept" text="Aceptar"/> + <button name="Decline" text="Rehusar"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + La región se reiniciará en [MINUTES] minutos. Si permanece en esta región, será desconectado. - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -La región se reiniciará en [SECONDS] segundos. + </notification> + <notification name="RegionRestartSeconds"> + La región se reiniciará en [SECONDS] segundos. Si permanece en esta región, será desconectado. - </notification> - - <notification - - name="LoadWebPage" - > -¿Cargar la página web [URL]? + </notification> + <notification name="LoadWebPage"> + ¿Cargar la página web [URL]? [MESSAGE] Del objeto: [OBJECTNAME]; propiedad de: [NAME]? - <form name="form"> - <button - - name="Gotopage" - text="Ir a la página"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -Búsqueda fallida de [TYPE] en la base de datos. - </notification> - - <notification - - name="FailedToFindWearable" - > -Búsqueda fallida de [TYPE] de nombre [DESC] en la base de datos. - </notification> - - <notification - - name="ScriptQuestion" - > -'[OBJECTNAME]', un objeto propiedad de '[NAME]', querrÃa: + <form name="form"> + <button name="Gotopage" text="Cargar"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + Búsqueda fallida de [TYPE] en la base de datos. + </notification> + <notification name="FailedToFindWearable"> + Búsqueda fallida de [TYPE] de nombre [DESC] en la base de datos. + </notification> + <notification name="InvalidWearable"> + El Ãtem que intenta llevar usa una caracterÃstica que su visor no puede leer. Por favor, actualice su versión de Second Life para llevar este Ãtem. + </notification> + <notification name="ScriptQuestion"> + '[OBJECTNAME]', un objeto propiedad de '[NAME]', querrÃa: [QUESTIONS] ¿Está de acuerdo? - <form name="form"> - <button - - name="Yes" - text="SÃ"/> - <button - - name="No" - text="No"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -'[OBJECTNAME]', un objeto propiedad de '[NAME]', querrÃa: + <form name="form"> + <button name="Yes" text="SÃ"/> + <button name="No" text="No"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + '[OBJECTNAME]', un objeto propiedad de '[NAME]', querrÃa: [QUESTIONS] Si no confÃa en este objeto y su creador, debe denegar la solicitud. Para más información, pulse el botón Detalles. ¿Autorizar esta petición? - <form name="form"> - <button - - name="Grant" - text="Autorizar"/> - <button - - name="Deny" - text="Denegar"/> - <button - - name="Details" - text="Detalles..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -'[TITLE]' de [FIRST] [LAST] + <form name="form"> + <button name="Grant" text="Autorizar"/> + <button name="Deny" text="Denegar"/> + <button name="Details" text="Detalles..."/> + </form> + </notification> + <notification name="ScriptDialog"> + '[TITLE]' de [FIRST] [LAST] [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -'[TITLE]' de [GROUPNAME]' + <form name="form"> + <button name="Ignore" text="Ignorar"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + '[TITLE]' de [GROUPNAME]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -Ha recibido [AMOUNT] L$. + <form name="form"> + <button name="Ignore" text="Ignorar"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + Ha recibido [AMOUNT] L$. Pueden darle L$ tanto objetos como otros usuarios. Su balance se muestra en la esquina superior derecha de la pantalla. - </notification> - - <notification - - name="FirstBalanceDecrease" - > -Ha pagado [AMOUNT] L$. + </notification> + <notification name="FirstBalanceDecrease"> + Ha pagado [AMOUNT] L$. Su balance se muestra en la esquina superior derecha de la pantalla. - </notification> - - <notification - - name="FirstSit" - > -Está sentado. + </notification> + <notification name="FirstSit"> + Está sentado. Use las teclas del cursor (o AWSD) para cambiar el punto de vista. Pulde el botón 'Levantarse' para ponerse de pie. - </notification> - - <notification - - name="FirstMap" - > -Pulse el mapa y arrástrelo para desplazarlo. + </notification> + <notification name="FirstMap"> + Pulse el mapa y arrástrelo para desplazarlo. Púlselo dos veces para teleportarse. Use los controles de la derecha para encontrar sitios y mostrar diferentes fondos. - </notification> - - <notification - - name="FirstBuild" - > -Usted puede construir objetos nuevos en algunas zonas de [SECOND_LIFE]. + </notification> + <notification name="FirstBuild"> + Usted puede construir objetos nuevos en algunas zonas de [SECOND_LIFE]. Use las herramientas de arriba a la izquierda para construir, y pruebe a cambiar rápidamente entre ellas pulsando Ctrl o Alt. Pulse Esc para dejar de construir. - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -En algunos objetos concretos, al pulsarlos con el botón izquierdo del ratón interacciona con ellos. + </notification> + <notification name="FirstLeftClickNoHit"> + En algunos objetos concretos, al pulsarlos con el botón izquierdo del ratón interacciona con ellos. Si el puntero del ratón pasa a ser una mano puede interactuar con el objeto. El botón derecho del ratón siempre muestra un menú con cosas que usted puede hacer. - </notification> - - <notification - - name="FirstTeleport" - > -Esta región no permite teleportarse de un punto a otro, por lo que ha sido llevado al Punto de Teleporte más cercano. + </notification> + <notification name="FirstTeleport"> + Esta región no permite teleportarse de un punto a otro, por lo que ha sido llevado al Punto de Teleporte más cercano. Su destinado está señalado con una columna de luz roja. Siga la flecha roja hasta llegar a la columna, o pulse la flecha para hacerla desaparecer. - </notification> - - <notification - - name="FirstOverrideKeys" - > -A partir de ahora, sus teclas de movimiento las gestiona un objeto. + </notification> + <notification name="FirstOverrideKeys"> + A partir de ahora, sus teclas de movimiento las gestiona un objeto. Pruebe las teclas del cursor o AWSD para ver qué hacen. Algunos objetos (las pistolas, por ejemplo) le pedirán que, para usarlos, entre usted en vista subjetiva. Pulse 'M' para hacerlo. - </notification> - - <notification - - name="FirstAppearance" - > -Está modificando su apariencia. + </notification> + <notification name="FirstAppearance"> + Está modificando su apariencia. Use las teclas del cursor para girar el punto de vista y hacer zoom. Cuando acabe, pulse 'Guardar todo' para salvar su apariencia y salir del modificarla. Puede modificar su apariencia tantas veces como quiera. - </notification> - - <notification - - name="FirstInventory" - > -Este es su inventario. Tiene objetos, notas, ropas, y otras cosas de su propiedad. + </notification> + <notification name="FirstInventory"> + Este es su inventario. Tiene objetos, notas, ropas, y otras cosas de su propiedad. * Para vestirse un objeto o un vestuario completo, arrástrelo hasta usted mismo. * Para colocar un objeto en el mundo, arrástrelo hasta el suelo. * Para leer una nota, pulse dos veces en ella. - </notification> - - <notification - - name="FirstSandbox" - > -Esta es una región 'sandbox' (zona de pruebas). + </notification> + <notification name="FirstSandbox"> + Esta es una región 'sandbox' (zona de pruebas). Los objetos que construya aquà pueden ser eliminados cuando salga de esta zona, pues los sandbox se limpian regularmente. Por favor, tenga en cuenta la información que hay arriba de su pantalla junto al nombre de la región. Las regiones sandbox no son frecuentes, y están señalizadas. - </notification> - - <notification - - name="FirstFlexible" - > -Este objeto es flexible. + </notification> + <notification name="FirstFlexible"> + Este objeto es flexible. Los objetos flexibles no pueden ser materiales, y serán inmateriales hasta que se desmarque la casilla de flexibles. - </notification> - - <notification - - name="FirstDebugMenus" - > -Ha activado el menú Avanzado. + </notification> + <notification name="FirstDebugMenus"> + Ha activado el menú Avanzado. Contiene herramientas útiles para los desarrolladores que trabajan mejorando Second Life. Para pasar este menú a una ventana, pulse Ctrl-Alt-D. En un Mac, pulse Cmd-Opt-Shift-D. - </notification> - - <notification - - name="FirstSculptedPrim" - > -Está editando un prim 'sculpted'. + </notification> + <notification name="FirstSculptedPrim"> + Está editando un prim 'sculpted'. Los prim sculpted requieren una textura especial para tomar forma. Puede encontrar ejemplos de texturas sculpted en la biblioteca del inventario. - </notification> - - <notification - - name="FirstMedia" - > -Ha empezado a reproducir media. Puede hacer que los media se reproduzcan automáticamente en la pestaña Audio y VÃdeo de la ventana de preferencias. Note que tal cosa puede suponer un riesgo de seguridad en los sitios multimedia en los que no confÃe. - </notification> - - <notification - - name="MaxListSelectMessage" - > -Puede seleccionar un máximo de [MAX_SELECT] Ãtems de esta lista. - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME] le está invitando a un chat de voz. + </notification> + <notification name="FirstMedia"> + Ha empezado a reproducir media. Puede hacer que los media se reproduzcan automáticamente en la pestaña Audio y VÃdeo de la ventana de preferencias. Note que tal cosa puede suponer un riesgo de seguridad en los sitios multimedia en los que no confÃe. + </notification> + <notification name="MaxListSelectMessage"> + Puede seleccionar un máximo de [MAX_SELECT] Ãtems de esta lista. + </notification> + <notification name="VoiceInviteP2P"> + [NAME] le está invitando a un chat de voz. Pulse Aceptar para coger la llamada o Rehusar para declinar la invitación. Pulse Ignorar para ignorar a quien llama. - <form name="form"> - <button - - name="Accept" - text="Aceptar"/> - <button - - name="Decline" - text="Rehusar"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -[FIRST] [LAST], a quien ha enviado un mensaje instantáneo, ha dejado automáticamente de estar ignorado. - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -[FIRST] [LAST], a quien ha dado dinero, ha dejado automáticamente de estar ignorado. - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -[FIRST] [LAST], a quien ha ofrecido algo del inventario, ha dejado automáticamente de estar ignorado. - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME] ha empezado un chat de voz con el grupo [GROUP]. + <form name="form"> + <button name="Accept" text="Aceptar"/> + <button name="Decline" text="Rehusar"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + [FIRST] [LAST], a quien ha enviado un mensaje instantáneo, ha dejado automáticamente de estar ignorado. + </notification> + <notification name="AutoUnmuteByMoney"> + [FIRST] [LAST], a quien ha dado dinero, ha dejado automáticamente de estar ignorado. + </notification> + <notification name="AutoUnmuteByInventory"> + [FIRST] [LAST], a quien ha ofrecido algo del inventario, ha dejado automáticamente de estar ignorado. + </notification> + <notification name="VoiceInviteGroup"> + [NAME] ha empezado un chat de voz con el grupo [GROUP]. Pulse Aceptar para coger la llamada o Rehusar para declinar la invitación. Pulse Ignorar para ignorar a quien llama. - <form name="form"> - <button - - name="Accept" - text="Aceptar"/> - <button - - name="Decline" - text="Rehusar"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME] ha empezado un chat de voz en multiconferencia. + <form name="form"> + <button name="Accept" text="Aceptar"/> + <button name="Decline" text="Rehusar"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME] ha empezado un chat de voz en multiconferencia. Pulse Aceptar para coger la llamada o Rehusar para declinar la invitación. Pulse Ignorar para ignorar a este usuario. - <form name="form"> - <button - - name="Accept" - text="Aceptar"/> - <button - - name="Decline" - text="Rehusar"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME] le está invitando a un chat en multiconferencia. + <form name="form"> + <button name="Accept" text="Aceptar"/> + <button name="Decline" text="Rehusar"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME] le está invitando a un chat en multiconferencia. Pulse Aceptar para entrar al chat o Rehusar para declinar la invitación. Pulse Ignorar para ignorar a este usuario. - <form name="form"> - <button - - name="Accept" - text="Aceptar"/> - <button - - name="Decline" - text="Rehusar"/> - <button - - name="Mute" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -El chat de voz al que está intentando entrar, [VOICE_CHANNEL_NAME], ha llegado a su capacidad máxima. Por favor, inténtelo más tarde. - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -Lo sentimos. Este área ha llegado a su capacidad máxima de conversaciones por voz. Por favor, intente usar la voz en otra zona. - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -Ha sido desconectado del [VOICE_CHANNEL_NAME]. Va a ser reconectado al chat de voz del mundo. - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME] ha colgado la llamada. Usted va a ser reconectado al chat de voz del mundo. - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME] ha rehusado su llamada. Usted va a ser reconectado al chat de voz del mundo. - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME] no está disponible para coger su llamada. Usted va a ser reconectado al chat de voz del mundo. - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -Fallo al conectar al [VOICE_CHANNEL_NAME]; por favor, inténtelo más tarde. Usted va a ser reconectado al chat de voz del mundo. - </notification> - - <notification - - name="VoiceLoginRetry" - > -Estamos creando un canal de voz para usted. Se puede tardar hasta un minuto. - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -No puede entrar en esta parcela, no es miembro del grupo adecuado. - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -No puede entrar en esta parcela, se le ha prohibido el acceso. - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -No puede entrar en esta parcela, no está en la lista de acceso. - </notification> - - <notification - - name="VoiceNotAllowed" - > -No tiene permiso para conectarse al chat de voz de [VOICE_CHANNEL_NAME]. - </notification> - - <notification - - name="VoiceCallGenericError" - > -Ha ocurrido un error intentando conectarle al [VOICE_CHANNEL_NAME]. Por favor, inténtelo más tarde. - </notification> - - <notification - - name="ServerVersionChanged" - > -La región en la que ha entrado se ejecuta en un simulador con una versión diferente. Pulse este mensaje para ver más detalles. - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -No puede abrirse desde este navegador la URL que ha pulsado. - </notification> - - <global name="UnsupportedCPU"> -- La velocidad de su CPU no cumple los requerimientos mÃnimos. - </global> - - <global name="UnsupportedGLRequirements"> -Parece que no tiene los requerimientos de hardware apropiados para Second Life. Second Life requiere una tarjeta gráfica OpenGL que admita texturas múltiples ('multitexture support'). Si la tiene, compruebe que tiene los últimos drivers para su tarjeta gráfica, asà como los últimos parches y 'service packs' para su sistema operativo. + <form name="form"> + <button name="Accept" text="Aceptar"/> + <button name="Decline" text="Rehusar"/> + <button name="Mute" text="Ignorar"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + El chat de voz al que está intentando entrar, [VOICE_CHANNEL_NAME], ha llegado a su capacidad máxima. Por favor, inténtelo más tarde. + </notification> + <notification name="ProximalVoiceChannelFull"> + Lo sentimos. Este área ha llegado a su capacidad máxima de conversaciones por voz. Por favor, intente usar la voz en otra zona. + </notification> + <notification name="VoiceChannelDisconnected"> + Ha sido desconectado del [VOICE_CHANNEL_NAME]. Va a ser reconectado al chat de voz del mundo. + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME] ha colgado la llamada. Usted va a ser reconectado al chat de voz del mundo. + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME] ha rehusado su llamada. Usted va a ser reconectado al chat de voz del mundo. + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME] no está disponible para coger su llamada. Usted va a ser reconectado al chat de voz del mundo. + </notification> + <notification name="VoiceChannelJoinFailed"> + Fallo al conectar al [VOICE_CHANNEL_NAME]; por favor, inténtelo más tarde. Usted va a ser reconectado al chat de voz del mundo. + </notification> + <notification name="VoiceLoginRetry"> + Estamos creando un canal de voz para usted. Se puede tardar hasta un minuto. + </notification> + <notification name="Cannot enter parcel: not a group member"> + No puede entrar en esta parcela, no es miembro del grupo adecuado. + </notification> + <notification name="Cannot enter parcel: banned"> + No puede entrar en esta parcela, se le ha prohibido el acceso. + </notification> + <notification name="Cannot enter parcel: not on access list"> + No puede entrar en esta parcela, no está en la lista de acceso. + </notification> + <notification name="VoiceNotAllowed"> + No tiene permiso para conectarse al chat de voz de [VOICE_CHANNEL_NAME]. + </notification> + <notification name="VoiceCallGenericError"> + Ha ocurrido un error intentando conectarle al [VOICE_CHANNEL_NAME]. Por favor, inténtelo más tarde. + </notification> + <notification name="ServerVersionChanged"> + La región en la que ha entrado se ejecuta en un simulador con una versión diferente. Pulse este mensaje para ver más detalles. + </notification> + <notification name="UnableToOpenCommandURL"> + No puede abrirse desde este navegador la URL que ha pulsado. + </notification> + <global name="UnsupportedCPU"> + - La velocidad de su CPU no cumple los requerimientos mÃnimos. + </global> + <global name="UnsupportedGLRequirements"> + Parece que no tiene los requerimientos de hardware apropiados para Second Life. Second Life requiere una tarjeta gráfica OpenGL que admita texturas múltiples ('multitexture support'). Si la tiene, compruebe que tiene los últimos drivers para su tarjeta gráfica, asà como los últimos parches y 'service packs' para su sistema operativo. Si los problemas persisten, por favor, acuda a: http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- Su tarjeta gráfica no cumple los requerimientos mÃnimos. - </global> - - <global name="UnsupportedRAM"> -- La memoria de su sistema no cumple los requerimientos mÃnimos. - </global> - - <global name="PermYes"> -Sà - </global> - - <global name="PermNo"> -No - </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - Su tarjeta gráfica no cumple los requerimientos mÃnimos. + </global> + <global name="UnsupportedRAM"> + - La memoria de su sistema no cumple los requerimientos mÃnimos. + </global> + <global name="PermYes"> + Sà + </global> + <global name="PermNo"> + No + </global> </notifications> - diff --git a/indra/newview/skins/default/xui/es/panel_group_general.xml b/indra/newview/skins/default/xui/es/panel_group_general.xml index 865dad9028638662027c451ba0dbe1a344df2483..e5fd4b3aaef5edd22daba7bbb650a925ff165b05 100644 --- a/indra/newview/skins/default/xui/es/panel_group_general.xml +++ b/indra/newview/skins/default/xui/es/panel_group_general.xml @@ -49,8 +49,17 @@ Ponga su ratón sobre las opciones para más información. <check_box label="Inscripción libre" name="open_enrollement" tool_tip="Definir si se admiten al grupo nuevos miembros sin que sea preciso invitárseles."/> <check_box label="Cuota de inscripción en L$" name="check_enrollment_fee" tool_tip="Define si se requiere una cuota para entrar al grupo."/> <spinner name="spin_enrollment_fee" tool_tip="Cuando está marcado 'Cuota de inscripción', los miembros nuevos deben pagar esta cuota para entrar al grupo."/> - - + <combo_box name="group_mature_check" tool_tip="Establece si la información de su grupo es 'mature'."> + <combo_item name="select_mature"> + - Elegir Calificación - + </combo_item> + <combo_item name="mature"> + Contenido 'Mature' + </combo_item> + <combo_item name="pg"> + Contenido 'PG' + </combo_item> + </combo_box> <panel name="title_container"> <text name="active_title_label"> Mi etiqueta activa diff --git a/indra/newview/skins/default/xui/es/panel_group_invite.xml b/indra/newview/skins/default/xui/es/panel_group_invite.xml index 66329c4f2bc89f936c9e0823be40091fd873fd42..5f5f2c6e2ebd595b060247a80e411b72203bbcfb 100644 --- a/indra/newview/skins/default/xui/es/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/es/panel_group_invite.xml @@ -3,9 +3,9 @@ <text name="help_text"> Puede seleccionar a varios residentes para invitarles a su grupo. Para empezar, pulse -'Abrir el selector de personas'. +'Abrir el selector de residentes'. </text> - <button label="Abrir el selector de personas" name="add_button" tool_tip=""/> + <button label="Abrir el selector de residentes" name="add_button" tool_tip=""/> <name_list name="invitee_list" tool_tip="Para seleccionar a varios residentes, mantenga pulsada la tecla Ctrl y vaya pulsando sus nombres."/> <button label="Eliminar de la lista a los seleccionados" name="remove_button" tool_tip="Elimina los residentes seleccionados de la lista de invitaciones."/> <text name="role_text"> diff --git a/indra/newview/skins/default/xui/es/panel_group_land_money.xml b/indra/newview/skins/default/xui/es/panel_group_land_money.xml index 436a79d42925fadd87e4b78ef3c275ec9bea9ec8..32473b813367636a53976d9880611c6969b19f2f 100644 --- a/indra/newview/skins/default/xui/es/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/es/panel_group_land_money.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Terreno y L$" name="land_money_tab"> <string name="help_text"> - Se listan las parcelas propiedad del grupo, detallando las contribuciones. Aparece una advertencia si el Terreno total en uso es menor que o igual a la Contribución total. Las pestañas 'Planeamiento', 'Detalles' y 'Ventas' aportan información sobre las finanzas del grupo. + Se listan las parcelas propiedad del grupo, detallando las contribuciones. Aparece una advertencia si el Terreno total en uso es menor que o igual a la Contribución total. Las pestañas 'Planificación', 'Detalles' y 'Ventas' aportan información sobre las finanzas del grupo </string> <button label="?" name="help_button"/> <string name="cant_view_group_land_text"> @@ -17,8 +17,9 @@ Terreno propiedad del grupo </text> <scroll_list name="group_parcel_list"> - <column label="Nombre de la parcela" name="name"/> + <column label="Parcela" name="name"/> <column label="Región" name="location"/> + <column label="Tipo" name="type"/> <column label="Superficie" name="area"/> <column label="" name="hidden"/> </scroll_list> @@ -57,6 +58,11 @@ L$ del grupo </text> <tab_container name="group_money_tab_container"> + <panel label="Planificación" name="group_money_planning_tab"> + <text_editor name="group_money_planning_text"> + Calculando... + </text_editor> + </panel> <panel label="Detalles" name="group_money_details_tab"> <text_editor name="group_money_details_text"> Calculando... diff --git a/indra/newview/skins/default/xui/es/panel_group_roles.xml b/indra/newview/skins/default/xui/es/panel_group_roles.xml index 4c3e40ecc2ff4286627c2bae47040dfa438d6a03..8cc1a4ba9dcbd9940eaf942f9ff69cd1561a2d92 100644 --- a/indra/newview/skins/default/xui/es/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/es/panel_group_roles.xml @@ -49,7 +49,7 @@ <column label="Cuotas donadas" name="donated"/> <column label="Última conexión" name="online"/> </name_list> - <button label="Invitar a una nueva persona..." name="member_invite"/> + <button label="Invitar a un nuevo miembro..." name="member_invite"/> <button label="Expulsar del grupo" name="member_eject"/> <string name="help_text"> Puede añadir o quitar los roles asignados a los miembros. diff --git a/indra/newview/skins/default/xui/es/panel_preferences_general.xml b/indra/newview/skins/default/xui/es/panel_preferences_general.xml index 173da17f987b45dc3173c21724ff3989690cc065..9e5cd886032c4cc1f4e6ce24a2109a710c4c60c6 100644 --- a/indra/newview/skins/default/xui/es/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/es/panel_preferences_general.xml @@ -33,10 +33,28 @@ </text> <check_box label="Resolución independiente del tamaño" name="ui_auto_scale"/> <spinner label="Ausente tras:" name="afk_timeout_spinner"/> - <check_box label="Girar el minimapa" name="rotate_mini_map_checkbox"/> <check_box label="Avisar cuando gasto o recibo dólares Linden (L$)" name="notify_money_change_checkbox"/> - <check_box label="Usar los colores del SO" name="use_system_color_picker_checkbox" tool_tip="Usar los colores del propio sistema operativo en vez de los propios de Second Life."/> - <check_box label="Incluir una ventana de búsqueda en la barra superior" name="show_search_panel" tool_tip="Muestra el panel de búsqueda insertado."/> + <text name="maturity_desired_label" bottom="-312"> + Calificación: + </text> + <text name="maturity_desired_prompt" bottom="-312"> + Quiero acceder a +contenido calificado: + </text> + <combo_box name="maturity_desired_combobox" bottom="-330" left="274"> + <combo_item name="Desired_Adult"> + 'PG', 'Mature' y 'Adult' + </combo_item> + <combo_item name="Desired_Mature"> + 'PG' y 'Mature' + </combo_item> + <combo_item name="Desired_PG"> + sólo 'PG' + </combo_item> + </combo_box> + <text name="maturity_desired_textbox" bottom="-324" left="274"> + sólo 'PG' + </text> <text length="1" name="start_location_textbox" type="string"> Posición inicial: </text> @@ -55,7 +73,7 @@ <text length="1" name="language_textbox" type="string"> Idioma: </text> - <text length="1" name="language_textbox2" type="string" left_delta="313" > + <text left_delta="313" length="1" name="language_textbox2" type="string"> (Tendrá efecto tras reiniciar) </text> <string name="region_name_prompt"> @@ -91,15 +109,30 @@ <combo_item length="1" name="French" type="string"> Français (Francés) - Beta </combo_item> + <combo_item name="Italian"> + Italiano - Beta + </combo_item> <combo_item name="Hungarian"> Magyar (Húngaro) - Beta </combo_item> + <combo_item name="Dutch"> + Nederlands (Neerlandés) - Beta + </combo_item> <combo_item name="Polish"> Polski (Polaco) - Beta </combo_item> <combo_item name="Portugese"> Portugués (Portugués) - Beta </combo_item> + <combo_item name="Russian"> + РуÑÑкий (Ruso) - Beta + </combo_item> + <combo_item name="Turkish"> + Türkçe (Turco) - Beta + </combo_item> + <combo_item name="Ukrainian"> + УкраїнÑька (Ucraniano) - Beta + </combo_item> <combo_item length="1" name="Chinese" type="string"> ä¸æ–‡ (简体) (Chino) - Beta </combo_item> diff --git a/indra/newview/skins/default/xui/es/panel_region_covenant.xml b/indra/newview/skins/default/xui/es/panel_region_covenant.xml index e353f6cdec1aa082b4524207483052f0f6dce7e7..3f9e782bd76ab4d8c948efb67a72aa52fc483357 100644 --- a/indra/newview/skins/default/xui/es/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/es/panel_region_covenant.xml @@ -1,50 +1,80 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Contrato" name="Covenant"> + <text name="estate_section_lbl"> + Estado: + </text> + <text name="estate_name_lbl"> + Nombre: + </text> + <text name="estate_name_text"> + mainland + </text> + <text name="estate_owner_lbl"> + Propietario: + </text> + <text name="estate_owner_text"> + (nadie) + </text> + <text name="estate_cov_lbl"> + Contrato: + </text> + <text name="covenant_timestamp_text"> + Última modificación el miér. 31 de dic. de 1969, 16:00:00 + </text> + <button label="?" name="covenant_help"/> + <text_editor name="covenant_editor"> + No se ha aportado un contrato para este estado. + </text_editor> + <button label="Cambiar" name="reset_covenant"/> <text name="covenant_help_text"> - Los cambios que se hagan en la información del contrato se mostrarán en todas las parcelas del estado. + Los cambios en el contrato se mostrarán en todas las parcelas del estado. </text> - <text name="region_name_lbl"> + <text name="covenant_instructions"> + Para cambiar el contrato de este estado, arrastre y suelte una nota. + </text> + <text name="region_section_lbl"> Región: </text> + <text name="region_name_lbl"> + Nombre: + </text> <text name="region_name_text"> - (desconocida) + leyla </text> - <text name="estate_name_lbl"> - Estado: + <text name="region_landtype_lbl"> + Tipo: </text> - <text name="estate_name_text"> - (desconocido) + <text name="region_landtype_text"> + Mainland / Homestead </text> - <text name="covenent_instructions"> - Para cambiar el contrato de este estado, arrastre y suelte una nota. + <text name="region_maturity_lbl"> + Calificación: </text> - <button label="?" name="covenant_help"/> - <button label="Cambiar" name="reset_covenant"/> - <text name="estate_owner_lbl"> - Propietario del estado: + <text name="region_maturity_text"> + 'Adult' </text> - <text name="estate_owner_text"> - (desconocido) + <text name="resellable_lbl"> + Revender: </text> <text name="resellable_clause"> - El terreno comprado en esta región se podrá o no revender. + El terreno de esta región no se podrá revender. + </text> + <text name="changeable_lbl"> + Dividir: </text> <text name="changeable_clause"> - El terreno comprado en esta región se podrá o no unir o subdividir. + El terreno de esta región no se podrá unir/dividir. </text> - <text_editor name="covenant_editor"> - Cargando... - </text_editor> - <text name="can_resell"> + <string name="can_resell"> El terreno comprado en esta región se podrá revender. - </text> - <text name="can_not_resell"> + </string> + <string name="can_not_resell"> El terreno comprado en esta región no se podrá revender. - </text> - <text name="can_change"> + </string> + <string name="can_change"> El terreno comprado en esta región se podrá unir o subdividir. - </text> - <text name="can_not_change"> + </string> + <string name="can_not_change"> El terreno comprado en esta región no se podrá unir ni subdividir. - </text> + </string> </panel> diff --git a/indra/newview/skins/default/xui/es/panel_region_general.xml b/indra/newview/skins/default/xui/es/panel_region_general.xml index 9ff7c97fc7b94b253c203fb895ecd55c0f7e02cf..64169e427be07c1b566735a258bfcc334639c459 100644 --- a/indra/newview/skins/default/xui/es/panel_region_general.xml +++ b/indra/newview/skins/default/xui/es/panel_region_general.xml @@ -12,6 +12,12 @@ <text name="version_channel_text"> desconocida </text> + <text name="region_type_lbl"> + Tipo: + </text> + <text name="region_type"> + desconocido + </text> <check_box label="No permitir modificar el terreno" name="block_terraform_check"/> <button label="?" name="terraform_help"/> <check_box label="Prohibir volar" name="block_fly_check"/> @@ -33,10 +39,17 @@ <text label="Calificación" name="access_text"> Calificación: </text> - - - - + <combo_box label="'Mature'" name="access_combo"> + <combo_item name="Adult"> + 'Adult' + </combo_item> + <combo_item name="Mature"> + 'Mature' + </combo_item> + <combo_item name="PG"> + 'PG' + </combo_item> + </combo_box> <button label="?" name="access_help"/> <button label="Aplicar" name="apply_btn"/> <button label="Teleportar a su Base a un usuario..." name="kick_btn"/> diff --git a/indra/newview/skins/default/xui/es/strings.xml b/indra/newview/skins/default/xui/es/strings.xml index 290dcac29c811a32c79ff88759869395a50abae0..4793f6c6614634e96e386ac9d25c99fb43c0b9a8 100644 --- a/indra/newview/skins/default/xui/es/strings.xml +++ b/indra/newview/skins/default/xui/es/strings.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. - It is only for those strings which don't belong in a floater. + It is only for those strings which do not belong in a floater. For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> @@ -55,9 +55,6 @@ <string name="LoginDownloadingClothing"> Descargando la ropa... </string> - <string name="LoginFailedNoNetwork"> - Error de red: no se ha podido conectar; por favor, revise su conexión a internet. - </string> <string name="AgentLostConnection"> Esta región puede estar teniendo problemas. Por favor, compruebe su conexión a internet. </string> @@ -184,6 +181,9 @@ <string name="AssetErrorCircuitGone"> Circuito desconectado </string> + <string name="AssetErrorPriceMismatch"> + No concuerda el precio en el visor y en el servidor + </string> <string name="AssetErrorUnknownStatus"> Estado desconocido </string> @@ -418,4 +418,69 @@ <string name="shout"> grita: </string> + <string name="SIM_ACCESS_PG"> + 'PG' + </string> + <string name="SIM_ACCESS_MATURE"> + 'Mature' + </string> + <string name="SIM_ACCESS_ADULT"> + 'Adult' + </string> + <string name="SIM_ACCESS_DOWN"> + Desconectado + </string> + <string name="SIM_ACCESS_MIN"> + Desconocido + </string> + <string name="land_type_unknown"> + (desconocido) + </string> + <string name="covenant_never_modified">Última modificación: (nunca)</string> + <string name="covenant_modified">Última modificación: </string> + <string name="all_files"> + Todos los archivos + </string> + <string name="sound_files"> + Sonidos + </string> + <string name="animation_files"> + Animaciones + </string> + <string name="image_files"> + Imágenes + </string> + <string name="save_file_verb"> + Guardar + </string> + <string name="load_file_verb"> + Cargar + </string> + <string name="targa_image_files"> + Imágenes Targa + </string> + <string name="bitmap_image_files"> + Imágenes de mapa de bits + </string> + <string name="avi_movie_file"> + Archivo de pelÃcula AVI + </string> + <string name="xaf_animation_file"> + Archivo de anim. XAF + </string> + <string name="xml_file"> + Archivo XML + </string> + <string name="dot_raw_file"> + Archivo RAW + </string> + <string name="compressed_image_files"> + Imágenes comprimidas + </string> + <string name="load_files"> + Cargar archivos + </string> + <string name="choose_the_directory"> + Elegir directorio + </string> </strings> diff --git a/indra/newview/skins/default/xui/es/teleport_strings.xml b/indra/newview/skins/default/xui/es/teleport_strings.xml index 87d711f675bb446666e7ecc2088c8161af7d6cb2..6cf5437e3c07fd2efad5bc30a7a0fcdd61a3f473 100644 --- a/indra/newview/skins/default/xui/es/teleport_strings.xml +++ b/indra/newview/skins/default/xui/es/teleport_strings.xml @@ -2,10 +2,12 @@ <teleport_messages> <message_set name="errors"> <message name="invalid_tport"> - Ha habido un problema al procesar su petición de teleporte. Debe volver a iniciar sesión para poder teleportarse. Si le sigue apareciendo este mensaje, revise, por favor, las preguntas frecuentes en el Soporte técnico: www.secondlife.com/support + Ha habido un problema al procesar su petición de teleporte. Debe volver a iniciar sesión para poder teleportarse. Si le sigue apareciendo este mensaje, revise, por favor, las preguntas frecuentes en el Soporte técnico: +www.secondlife.com/support </message> <message name="invalid_region_handoff"> - Ha habido un problema al procesar su paso a otra región. Debe volver a iniciar sesión para poder pasar de región a región. Si le sigue apareciendo este mensaje, revise, por favor, las preguntas frecuentes en el Soporte técnico: www.secondlife.com/support + Ha habido un problema al procesar su paso a otra región. Debe volver a iniciar sesión para poder pasar de región a región. Si le sigue apareciendo este mensaje, revise, por favor, las preguntas frecuentes en el Soporte técnico: +www.secondlife.com/support </message> <message name="blocked_tport"> Lo sentimos, en estos momentos los teleportes están bloqueados. Vuelva a intentarlo en un momento. Si sigue sin poder teleportarse, desconéctese y vuelva a iniciar sesión para solucionar el problema. diff --git a/indra/newview/skins/default/xui/fr/floater_about.xml b/indra/newview/skins/default/xui/fr/floater_about.xml index 1565e7cd68246a1f55b8b3c17b8675d336c30e23..d627571ae9d687d7bac7661f7fe7f2a9ccefb793 100644 --- a/indra/newview/skins/default/xui/fr/floater_about.xml +++ b/indra/newview/skins/default/xui/fr/floater_about.xml @@ -20,13 +20,14 @@ SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) xmlrpc-epi Copyright (C) 2000 Epinions, Inc. zlib Copyright (C) 1995-2002 Jean-loup Gailly et Mark Adler. - + google-perftools Copyright (c) 2005, Google Inc. + Tous droits réservés. Voir licenses.txt pour plus de détails. Codage Audio du chat vocal : Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) - Je m'en sors avec un peu d'aide de mes amis. --Richard Starkey + Pour réussir dans les affaires, soyez audacieux, créatif et différent. - Henry Marchant </text_editor> <string name="you_are_at"> Votre position : [POSITION] diff --git a/indra/newview/skins/default/xui/fr/floater_about_land.xml b/indra/newview/skins/default/xui/fr/floater_about_land.xml index 8212db046f3a1736ae178c64535432ca5825ba4d..a556fa4173ae531f937f65660d741e170225ee44 100644 --- a/indra/newview/skins/default/xui/fr/floater_about_land.xml +++ b/indra/newview/skins/default/xui/fr/floater_about_land.xml @@ -10,6 +10,18 @@ Description : </text> <text_editor name="Description"/> + <text name="LandType"> + Type : + </text> + <text name="LandTypeText"> + Continent / Homestead + </text> + <text name="ContentRating"> + Catégorie : + </text> + <text name="ContentRatingText"> + Adult + </text> <text length="1" name="Owner:" type="string"> Propriétaire : </text> @@ -45,7 +57,7 @@ <text length="1" name="Selling with no objects in parcel." type="string"> Objets non inclus dans la vente. </text> - <button label="Annuler la vente du terrain" label_selected="Annuler la vente du terrain" name="Cancel Land Sale" width="165" left="275"/> + <button label="Annuler la vente du terrain" label_selected="Annuler la vente du terrain" left="275" name="Cancel Land Sale" width="165"/> <text length="1" name="Claimed:" type="string"> Acquis : </text> @@ -53,7 +65,7 @@ Tue Aug 15 13:47:25 2006 </text> <text length="1" name="PriceLabel" type="string"> - Surface : + Superficie : </text> <text length="1" name="PriceText" type="string"> 4048 m² @@ -64,9 +76,9 @@ <text length="1" name="DwellText" type="string"> 0 </text> - <button label="Acheter le terrain..." label_selected="Acheter le terrain..." name="Buy Land..." width="125" left="130"/> + <button label="Acheter le terrain..." label_selected="Acheter le terrain..." left="130" name="Buy Land..." width="125"/> <button label="Acheter pour le groupe..." label_selected="Acheter pour le groupe..." name="Buy For Group..."/> - <button label="Acheter un pass..." label_selected="Acheter un pass..." name="Buy Pass..." tool_tip="Un pass vous donne un accès temporaire à ce terrain." width="125" left="130"/> + <button label="Acheter un pass..." label_selected="Acheter un pass..." left="130" name="Buy Pass..." tool_tip="Un pass vous donne un accès temporaire à ce terrain." width="125"/> <button label="Abandonner le terrain..." label_selected="Abandonner le terrain..." name="Abandon Land..."/> <button label="Redemander le terrain..." label_selected="Redemander le terrain…" name="Reclaim Land..."/> <button label="Vente Linden..." label_selected="Vente Linden..." name="Linden Sale..." tool_tip="Le terrain doit être la propriété d'un résident, avoir un contenu défini et ne pas être aux enchères."/> @@ -112,17 +124,11 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa </string> </panel> <panel label="Règlement" name="land_covenant_panel"> - <text length="1" name="covenant_timestamp_text" type="string"> - Last Modified Wed Dec 31 16:00:00 1969 - </text> - <text length="1" name="region_name_lbl" type="string"> - Région : - </text> - <text length="1" name="region_name_text" type="string"> - leyla + <text name="estate_section_lbl"> + Domaine : </text> <text length="1" name="estate_name_lbl" type="string"> - Domaine : + Nom : </text> <text length="1" name="estate_name_text" type="string"> continent @@ -133,15 +139,45 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa <text length="1" name="estate_owner_text" type="string"> (aucun) </text> + <text_editor length="1" name="covenant_editor" type="string"> + Il n'y a aucun règlement pour ce domaine. + </text_editor> + <text length="1" name="covenant_timestamp_text" type="string"> + Last Modified Wed Dec 31 16:00:00 1969 + </text> + <text name="region_section_lbl"> + Région : + </text> + <text length="1" name="region_name_lbl" type="string"> + Nom : + </text> + <text length="1" name="region_name_text" type="string"> + leyla + </text> + <text name="region_landtype_lbl"> + Type : + </text> + <text name="region_landtype_text"> + Continent / Homestead + </text> + <text name="region_maturity_lbl"> + Catégorie : + </text> + <text name="region_maturity_text"> + Adult + </text> + <text name="resellable_lbl"> + Revendre : + </text> <text length="1" name="resellable_clause" type="string"> - Le terrain acheté dans cette région ne peut être revendu. + Le terrain dans cette région ne peut être revendu. + </text> + <text name="changeable_lbl"> + Sous-diviser : </text> <text length="1" name="changeable_clause" type="string"> - Le terrain acheté dans cette région ne peut être revendu/divisé. + Le terrain dans cette région ne peut être fusionné/divisé. </text> - <text_editor length="1" name="covenant_editor" type="string"> - Il n'y a aucun règlement pour ce domaine. - </text_editor> <string name="can_resell"> Le terrain acheté dans cette région peut être revendu. </string> @@ -149,10 +185,12 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa Le terrain acheté dans cette région ne peut pas être revendu. </string> <string name="can_change"> - Le terrain acheté dans cette région peut être fusionné ou divisé. + Le terrain acheté dans cette région peut être fusionné +ou divisé. </string> <string name="can_not_change"> - Le terrain acheté dans cette région ne peut pas être fusionné ou divisé. + Le terrain acheté dans cette région ne peut pas être fusionné +ou divisé. </string> </panel> <panel label="Objets" name="land_objects_panel"> @@ -162,7 +200,7 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa <text length="1" name="Simulator primitive usage:" type="string"> Prims utilisées sur la parcelle : </text> - <text name="objects_available" left="214" width="230"> + <text left="214" name="objects_available" width="230"> [COUNT] sur [MAX] ([AVAILABLE] disponibles) </text> <string name="objects_available_text"> @@ -174,49 +212,49 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa <text length="1" name="Primitives parcel supports:" type="string" width="200"> Prims max. sur la parcelle : </text> - <text length="1" name="object_contrib_text" type="string" left="214" width="152"> + <text left="214" length="1" name="object_contrib_text" type="string" width="152"> [COUNT] </text> <text length="1" name="Primitives on parcel:" type="string"> Prims sur la parcelle : </text> - <text length="1" name="total_objects_text" type="string" left="214" width="48"> + <text left="214" length="1" name="total_objects_text" type="string" width="48"> [COUNT] </text> - <text length="1" name="Owned by parcel owner:" type="string" left="14" width="180"> + <text left="14" length="1" name="Owned by parcel owner:" type="string" width="180"> Appartenant au propriétaire : </text> - <text length="1" name="owner_objects_text" type="string" left="214" width="48"> + <text left="214" length="1" name="owner_objects_text" type="string" width="48"> [COUNT] </text> <button label="Afficher" label_selected="Afficher" name="ShowOwner" right="-135" width="60"/> - <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOwner..." tool_tip="Renvoyer les objets à leurs propriétaires." right="-10" width="119"/> - <text length="1" name="Set to group:" type="string" left="14" width="180"> - Donnés au groupe : + <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOwner..." right="-10" tool_tip="Renvoyer les objets à leurs propriétaires." width="119"/> + <text left="14" length="1" name="Set to group:" type="string" width="180"> + Données au groupe : </text> - <text length="1" name="group_objects_text" type="string" left="214" width="48"> + <text left="214" length="1" name="group_objects_text" type="string" width="48"> [COUNT] </text> - <button label="Afficher" label_selected="Afficher" name="ShowGroup" width="60" right="-135"/> - <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnGroup..." tool_tip="Renvoyer les objets à leurs propriétaires." right="-10" width="119"/> - <text length="1" name="Owned by others:" type="string" left="14" width="128"> + <button label="Afficher" label_selected="Afficher" name="ShowGroup" right="-135" width="60"/> + <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnGroup..." right="-10" tool_tip="Renvoyer les objets à leurs propriétaires." width="119"/> + <text left="14" length="1" name="Owned by others:" type="string" width="128"> Appartenant à d'autres : </text> - <text length="1" name="other_objects_text" type="string" left="214" width="48"> + <text left="214" length="1" name="other_objects_text" type="string" width="48"> [COUNT] </text> <button label="Afficher" label_selected="Afficher" name="ShowOther" right="-135" width="60"/> - <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOther..." tool_tip="Renvoyer les objets à leurs propriétaires." right="-10" width="119"/> - <text length="1" name="Selected / sat upon:" type="string" left="14" width="193"> - Sélectionnés/où quelqu'un est assis : + <button label="Renvoyer..." label_selected="Renvoyer..." name="ReturnOther..." right="-10" tool_tip="Renvoyer les objets à leurs propriétaires." width="119"/> + <text left="14" length="1" name="Selected / sat upon:" type="string" width="193"> + Sélectionnées/où quelqu'un est assis : </text> - <text length="1" name="selected_objects_text" type="string" left="214" width="48"> + <text left="214" length="1" name="selected_objects_text" type="string" width="48"> [COUNT] </text> - <text name="Autoreturn" width="412" left="4"> - Renvoi automatique des objets d'autres résidents (minutes, 0 pour désactiver) : + <text left="4" name="Autoreturn" width="412"> + Renvoi automatique des objets des autres résidents (min., 0 pour désactiver) : </text> - <line_editor name="clean other time" right="-6" width="36" /> + <line_editor name="clean other time" right="-6" width="36"/> <text length="1" name="Object Owners:" type="string"> Propriétaires : </text> @@ -237,37 +275,47 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa <check_box label="Modifier le terrain" name="edit land check" tool_tip="Si cette option est cochée, n'importe qui peut terraformer votre terrain. Il vaut mieux ne pas cocher cette option pour toujours pouvoir modifer votre propre terrain."/> <check_box label="Créer des repères" name="check landmark"/> <check_box label="Voler" name="check fly" tool_tip="Si cette option est cochée, les résidents peuvent voler sur votre terrain. Si elle n'est pas cochée, ils ne pourront voler que lorsqu'ils arrivent et passent au dessus de votre terrain."/> - <text name="allow_label2" left="152"> + <text left="152" name="allow_label2"> Créer des objets : </text> - <check_box label="Tous les résidents" name="edit objects check" left="285"/> - <check_box label="Groupe" name="edit group objects check" left="395"/> - <text name="allow_label3" left="152" width="134"> + <check_box label="Tous les résidents" left="285" name="edit objects check"/> + <check_box label="Groupe" left="395" name="edit group objects check"/> + <text left="152" name="allow_label3" width="134"> Laisser entrer des objets : </text> - <check_box label="Tous les résidents" name="all object entry check" left="285"/> - <check_box label="Groupe" name="group object entry check" left="395"/> - <text name="allow_label4" left="152"> + <check_box label="Tous les résidents" left="285" name="all object entry check"/> + <check_box label="Groupe" left="395" name="group object entry check"/> + <text left="152" name="allow_label4"> Exécuter des scripts : </text> - <check_box label="Tous les résidents" name="check other scripts" left="285"/> - <check_box label="Groupe" name="check group scripts" left="395"/> + <check_box label="Tous les résidents" left="285" name="check other scripts"/> + <check_box label="Groupe" left="395" name="check group scripts"/> <text length="1" name="land_options_label" type="string"> Options du terrain : </text> <check_box label="Sécurisé (pas de dégâts)" name="check safe" tool_tip="Si cette option est cochée, le terrain est sécurisé et il n'y pas de risques de dommages causés par des combats. Si elle est décochée, des dommages causés par les combats peuvent avoir lieu."/> - <check_box label="Pas de bousculades" left="14" bottom="-140" - name="PushRestrictCheck" tool_tip="Empêche l'utilisation de scripts causant des bousculades. Cette option est utile pour empêcher les comportements abusifs sur votre terrain."/> - <check_box label="Afficher dans la recherche (30 L$/semaine) sous" name="ShowDirectoryCheck" tool_tip="Afficher la parcelle dans les résultats de recherche" bottom="-160"/> - <combo_box name="land category" left="286" width="146" bottom="-160"> + <check_box bottom="-140" label="Pas de bousculades" left="14" name="PushRestrictCheck" tool_tip="Empêche l'utilisation de scripts causant des bousculades. Cette option est utile pour empêcher les comportements abusifs sur votre terrain."/> + <check_box bottom="-160" label="Afficher dans la recherche (30 L$/semaine) sous" name="ShowDirectoryCheck" tool_tip="Afficher la parcelle dans les résultats de recherche"/> + <string name="search_enabled_tooltip"> + Permettre aux autres résidents de voir cette parcelle dans les résultats de recherche + </string> + <string name="search_disabled_small_tooltip"> + Cette option est désactivée car la superficie de cette parcelle est inférieure ou égale à 128 m². +Seules les parcelles de grande taille peuvent apparaître dans la recherche. + </string> + <string name="search_disabled_permissions_tooltip"> + Cette option est désactivée car vous ne pouvez pas modifier les options de cette parcelle. + </string> + <combo_box bottom="-160" left="286" name="land category with adult" width="146"> <combo_item name="AnyCategory"> Toutes catégories </combo_item> <combo_item name="LindenLocation"> Appartenant aux Lindens </combo_item> - - + <combo_item name="Adult"> + Adult + </combo_item> <combo_item name="Arts&Culture"> Art et Culture </combo_item> @@ -299,24 +347,74 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa Autre </combo_item> </combo_box> - <button label="?" label_selected="?" name="?" left="436" bottom="-160"/> - <check_box name="MatureCheck" bottom="-180"/> - <text length="1" name="Snapshot:" type="string" bottom="-200"> + <combo_box bottom="-160" left="286" name="land category" width="146"> + <combo_item name="AnyCategory"> + Toutes catégories + </combo_item> + <combo_item name="LindenLocation"> + Appartenant aux Lindens + </combo_item> + <combo_item name="Arts&Culture"> + Art et Culture + </combo_item> + <combo_item name="Business"> + Affaires + </combo_item> + <combo_item name="Educational"> + Éducation + </combo_item> + <combo_item name="Gaming"> + Jeux + </combo_item> + <combo_item name="Hangout"> + Favoris + </combo_item> + <combo_item name="NewcomerFriendly"> + Accueil pour les nouveaux + </combo_item> + <combo_item name="Parks&Nature"> + Parcs et Nature + </combo_item> + <combo_item name="Residential"> + Résidentiel + </combo_item> + <combo_item name="Shopping"> + Shopping + </combo_item> + <combo_item name="Other"> + Autre + </combo_item> + </combo_box> + <button bottom="-160" label="?" label_selected="?" left="436" name="?"/> + <check_box bottom="-180" label="Contenu Mature" name="MatureCheck" tool_tip=""/> + <string name="mature_check_mature"> + Contenu Mature + </string> + <string name="mature_check_adult"> + Contenu Adult + </string> + <string name="mature_check_mature_tooltip"> + Les informations ou contenu de votre parcelle sont classés Mature. + </string> + <string name="mature_check_adult_tooltip"> + Les informations ou contenu de votre parcelle sont classés Adult. + </string> + <text bottom="-200" length="1" name="Snapshot:" type="string"> Photo : </text> - <texture_picker label="" name="snapshot_ctrl" tool_tip="Cliquez pour sélectionner une image" bottom="-319"/> - <text name="landing_point" bottom="-323"> + <texture_picker bottom="-319" label="" name="snapshot_ctrl" tool_tip="Cliquez pour sélectionner une image"/> + <text bottom="-323" name="landing_point"> Lieu d'arrivée : [LANDING] </text> <string name="landing_point_none"> (aucun) </string> - <button label="Définir" label_selected="Définir" name="Set" tool_tip="Définit le point d'arrivée des visiteurs. Définit l'emplacement de votre avatar sur ce terrain." bottom="-323"/> - <button label="Annuler" label_selected="Annuler" name="Clear" tool_tip="Libérer le lieu d'arrivée." bottom="-323"/> - <text length="1" name="Teleport Routing: " type="string" bottom="-343"> + <button bottom="-323" label="Définir" label_selected="Définir" name="Set" tool_tip="Définit le point d'arrivée des visiteurs. Définit l'emplacement de votre avatar sur ce terrain."/> + <button bottom="-323" label="Annuler" label_selected="Annuler" name="Clear" tool_tip="Libérer le lieu d'arrivée."/> + <text bottom="-343" length="1" name="Teleport Routing: " type="string"> Règles de téléportation : </text> - <combo_box name="landing type" tool_tip="Vous permet de paramétrer les téléportations sur votre terrain." left="140" width="140" bottom="-343"> + <combo_box bottom="-343" left="140" name="landing type" tool_tip="Vous permet de paramétrer les téléportations sur votre terrain." width="140"> <combo_item length="1" name="Blocked" type="string"> Bloqué </combo_item> @@ -338,22 +436,22 @@ Allez dans le menu Monde > À propos du terrain ou sélectionnez une autre pa <text name="with media:" width="85"> Type de média : </text> - <combo_box name="media type" tool_tip="Indiquez s'il s'agit de l'URL d'un film, d'une page web ou autre" left="97"/> + <combo_box left="97" name="media type" tool_tip="Indiquez s'il s'agit de l'URL d'un film, d'une page web ou autre"/> <text name="mime_type"/> <text name="at URL:" width="85"> URL du média : </text> - <line_editor name="media_url" left="97"/> + <line_editor left="97" name="media_url"/> <button label="Définir..." label_selected="Définir..." name="set_media_url"/> <text name="Description:"> Description : </text> - <line_editor name="url_description" tool_tip="Texte affiché à côté du bouton Jouer/Charger" left="97"/> + <line_editor left="97" name="url_description" tool_tip="Texte affiché à côté du bouton Jouer/Charger"/> <text length="1" name="Media texture:" type="string"> Remplacer la texture : </text> - <texture_picker label="" name="media texture" tool_tip="Cliquez pour sélectionner une image" left="97"/> + <texture_picker label="" left="97" name="media texture" tool_tip="Cliquez pour sélectionner une image"/> <text name="replace_texture_help"> (Les objets avec cette texture affichent le film ou la page web quand vous cliquez sur la flèche Jouer.) @@ -362,41 +460,34 @@ la page web quand vous cliquez sur la flèche Jouer.) Options média : </text> - <check_box left="97" label="Échelle automatique" name="media_auto_scale" tool_tip="Si vous sélectionnez cette option, le contenu de cette parcelle sera automatiquement mis à l'échelle. La qualité visuelle sera peut-être amoindrie mais vous n'aurez à faire aucune autre mise à l'échelle ou alignement."/> + <check_box label="Échelle automatique" left="97" name="media_auto_scale" tool_tip="Si vous sélectionnez cette option, le contenu de cette parcelle sera automatiquement mis à l'échelle. La qualité visuelle sera peut-être amoindrie mais vous n'aurez à faire aucune autre mise à l'échelle ou alignement."/> <check_box label="Média en boucle" name="media_loop" tool_tip="Jouer le média en boucle. Lorsque le média aura fini de jouer, il recommencera."/> - <check_box left="97" label="Masquer l'URL du média" name="hide_media_url" tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL du média. Cette option n'est pas disponible pour les fichiers HTML."/> + <check_box label="Masquer l'URL du média" left="97" name="hide_media_url" tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL du média. Cette option n'est pas disponible pour les fichiers HTML."/> <check_box label="Masquer l'URL de la musique" name="hide_music_url" tool_tip="Si vous cochez cette option, les personnes non autorisées à accéder aux infos de cette parcelle ne verront pas l'URL de la musique."/> - <text name="media_size" tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut." width="105" left="102"> + <text left="102" name="media_size" tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut." width="105"> Taille du média : </text> - <spinner name="media_size_width" tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut." left_delta="89"/> + <spinner left_delta="89" name="media_size_width" tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut."/> <spinner name="media_size_height" tool_tip="Taille du média Web, laisser 0 pour la valeur par défaut."/> <text name="pixels"> pixels </text> - <text name="MusicURL:" bottom_delta="-28"> + <text bottom_delta="-28" name="MusicURL:"> URL de la musique : </text> - <line_editor name="music_url" left="97" bottom_delta="-12"/> + <line_editor bottom_delta="-12" left="97" name="music_url"/> <text name="Sound:"> Son : </text> - <check_box label="Limiter le son ambiant à cette parcelle" name="check sound local" left="97" /> + <check_box label="Limiter les gestes et sons d'objet à cette parcelle" left="97" name="check sound local"/> + <button label="?" label_selected="?" left="378" name="?"/> <text name="Voice settings:"> Voix : </text> - <radio_group name="parcel_voice_channel" left="97" width="310"> - <radio_item name="Estate"> - Utiliser le canal du domaine - </radio_item> - <radio_item name="Private"> - Utiliser un canal privé - </radio_item> - <radio_item name="Disabled"> - Désactiver les canaux audios - </radio_item> - </radio_group> + <check_box label="Activer le chat vocal" left="97" name="parcel_enable_voice_channel"/> + <check_box label="Activer le chat vocal (contrôlé par le domaine)" left="97" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Limiter le chat vocal à cette parcelle" left="117" name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="Accès" name="land_access_panel"> <text length="1" name="Limit access to this parcel to:" type="string"> diff --git a/indra/newview/skins/default/xui/fr/floater_avatar_picker.xml b/indra/newview/skins/default/xui/fr/floater_avatar_picker.xml index 82d715d94155b8b6e96f2e12df77cc10761ff115..01b4c944f3cfd229d9496ee3379094fef7bd0c9e 100644 --- a/indra/newview/skins/default/xui/fr/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/fr/floater_avatar_picker.xml @@ -1,21 +1,42 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatarpicker" title="Choisir le résident"> - <text name="Type part of the person's name:"> - Entrez les premières lettres du nom de la personne : - </text> - <text name="instruct_search_resident_name"> - Saisissez une partie du nom du résident : - </text> - <button label="Chercher" label_selected="Chercher" name="Find"/> - <text name="Or select a calling card:"> - Ou sélectionnez une carte de visite : - </text> - <text name="Or select their calling card:"> - Ou sélectionnez une carte de visite : - </text> + <tab_container name="ResidentChooserTabs"> + <panel label="Rechercher" name="SearchPanel"> + <text name="InstructSearchResidentName"> + Saisissez une partie du nom du résident : + </text> + <button label="Trouver" label_selected="Trouver" name="Find"/> + </panel> + <panel label="Cartes de visite" name="CallingCardsPanel"> + <text name="InstructSelectCallingCard"> + Sélectionnez une carte de visite : + </text> + </panel> + <panel label="Près de moi" name="NearMePanel"> + <text name="InstructSelectResident"> + Choisir un résident +près de vous : + </text> + <button font="SansSerifSmall" label="Rafraîchir la liste" label_selected="Rafraîchir la liste" name="Refresh" left_delta="10" width="105"/> + <slider label="Distance" name="near_me_range" bottom_delta="-36"/> + <text name="meters"> + mètres + </text> + <scroll_list bottom_delta="-169" height="159" name="NearMe" /> + </panel> + </tab_container> <button label="Sélectionner" label_selected="Sélectionner" name="Select"/> - <button label="Fermer" label_selected="Fermer" name="Close"/> - <text name="NotFound"> + <button label="Annuler" label_selected="Annuler" name="Cancel"/> + <string name="not_found"> '[TEXT]' introuvable - </text> + </string> + <string name="no_one_near"> + Il n'y a personne près de vous + </string> + <string name="no_results"> + Aucun résultat + </string> + <string name="searching"> + Recherche... + </string> </floater> diff --git a/indra/newview/skins/default/xui/fr/floater_avatar_textures.xml b/indra/newview/skins/default/xui/fr/floater_avatar_textures.xml index 929bc31d9cbc46b1bc18c7eb18e93e9357a67437..f4e3a1615c22d2e42b818c6baac2ccd7cc6d9100 100644 --- a/indra/newview/skins/default/xui/fr/floater_avatar_textures.xml +++ b/indra/newview/skins/default/xui/fr/floater_avatar_textures.xml @@ -1,38 +1,31 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatar_texture_debug" title="Textures de l'avatar"> - <text name=""> - Baked Textures - </text> - <text name=""> - Composite Textures - </text> - <text name="baked_label"> + <text name="label"> Textures fixées </text> <text name="composite_label"> Textures composées </text> - <texture_picker label="Tête" name="baked_head" /> - <texture_picker label="Maquillage" name="head_bodypaint" /> - <texture_picker label="Cheveux" name="hair" /> - <button label="Vider" label_selected="Vider" name="Dump" /> - <texture_picker label="Yeux" name="baked_eyes" /> - <texture_picker label="Å’il" name="eye_texture" /> - <texture_picker label="Haut du corps" name="baked_upper_body" /> - <texture_picker label="Tatouage haut du corps" name="upper_bodypaint" /> - <texture_picker label="Tricot" name="undershirt" /> - <texture_picker label="Gants" name="gloves" /> - <texture_picker label="Chemise" name="shirt" /> - <texture_picker label="Veste (en haut)" name="upper_jacket" /> - <texture_picker label=" -Bas du corps -" name="baked_lower_body" /> - <texture_picker label="Tatouage bas du corps" name="lower_bodypaint" /> - <texture_picker label="Sous-vêtements" name="underpants" /> - <texture_picker label="Chaussettes" name="socks" /> - <texture_picker label="Chaussures" name="shoes" /> - <texture_picker label="Pantalon" name="pants" /> - <texture_picker label="Veste" name="jacket" /> - <texture_picker label="Jupe" name="baked_skirt" /> - <texture_picker label="Jupe" name="skirt_texture" /> + <button label="Vider ces ID dans la console" label_selected="Vider" name="Dump" left="-185" width="175"/> + <texture_picker label="Cheveux" name="hair-baked"/> + <texture_picker label="Cheveux" name="hair"/> + <texture_picker label="Tête" name="head-baked"/> + <texture_picker label="Maquillage" name="head bodypaint"/> + <texture_picker label="Yeux" name="eyes-baked"/> + <texture_picker label="Å’il" name="iris"/> + <texture_picker label="Haut du corps" name="upper-baked"/> + <texture_picker label="Tatouage (haut du corps)" name="upper bodypaint"/> + <texture_picker label="Tricot" name="undershirt"/> + <texture_picker label="Gants" name="gloves"/> + <texture_picker label="Chemise" name="shirt"/> + <texture_picker label="Veste (haut)" name="upper jacket"/> + <texture_picker label="Bas du corps" name="lower-baked"/> + <texture_picker label="Tatouage (bas du corps)" name="lower bodypaint"/> + <texture_picker label="Sous-vêtements" name="underpants"/> + <texture_picker label="Chaussettes" name="socks"/> + <texture_picker label="Chaussures" name="shoes"/> + <texture_picker label="Pantalon" name="pants"/> + <texture_picker label="Veste" name="lower jacket"/> + <texture_picker label="Jupe" name="skirt-baked"/> + <texture_picker label="Jupe" name="skirt"/> </floater> diff --git a/indra/newview/skins/default/xui/fr/floater_beacons.xml b/indra/newview/skins/default/xui/fr/floater_beacons.xml index 76e05a26ec157a4e661fe62fcb7f89122f009406..0b060983eead7ba0003db1afbb9cdfd1924f2d14 100644 --- a/indra/newview/skins/default/xui/fr/floater_beacons.xml +++ b/indra/newview/skins/default/xui/fr/floater_beacons.xml @@ -5,8 +5,8 @@ <check_box label="Objets scriptés" name="scripted"/> <check_box label="Objets physiques" name="physical"/> <check_box label="Sources sonores" name="sounds"/> - <check_box label="Sources des particules" name="particles"/> - <check_box label="Montrer les surbrillances" name="highlights"/> + <check_box label="Sources de particules" name="particles"/> + <check_box label="Mettre en surbrillance" name="highlights"/> <check_box label="Montrer les balises" name="beacons"/> <text name="beacon_width_label"> Largeur de la balise : diff --git a/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml b/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml index 063232120a82672ebb807188f60c0d32f8dedcf4..b868aa33adc509905ea57ce57e5c6ec0654fb63e 100644 --- a/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml +++ b/indra/newview/skins/default/xui/fr/floater_bulk_perms.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floaterbulkperms" title="Changement des permissions relatives au contenu"> +<floater name="floaterbulkperms" title="Changement des droits relatifs au contenu"> <text name="applyto"> Types de contenu </text> @@ -15,6 +15,9 @@ <check_box label="Textures" name="check_texture"/> <button label="Tout cocher" label_selected="Tout" name="check_all"/> <button label="Tout décocher" label_selected="Aucun" name="check_none"/> + <text name="newperms"> + Nouveaux droits + </text> <check_box label="Partager avec le groupe" name="share_with_group"/> <check_box label="Autoriser tout le monde à copier" name="everyone_copy"/> <text name="NextOwnerLabel"> @@ -23,6 +26,7 @@ <check_box label="Modifier" name="next_owner_modify"/> <check_box label="Copier" name="next_owner_copy"/> <check_box label="Revendre/Donner" name="next_owner_transfer"/> + <button label="Aide" name="help"/> <button label="Appliquer" name="apply"/> <button label="Fermer" name="close"/> <string name="nothing_to_modify_text"> @@ -32,9 +36,9 @@ Permissions paramétrées sur [NAME] </string> <string name="start_text"> - Demande de changement des permissions lancée... + Demande de changement des droits lancée... </string> <string name="done_text"> - Demande de changement des permissions finie. + Demande de changement des droits finie. </string> </floater> diff --git a/indra/newview/skins/default/xui/fr/floater_buy_contents.xml b/indra/newview/skins/default/xui/fr/floater_buy_contents.xml index 3d55a1ef708379b0b1f121dfd9f305ca6617903d..916b270500be8c9992f2caabf9efd52a4e00b15c 100644 --- a/indra/newview/skins/default/xui/fr/floater_buy_contents.xml +++ b/indra/newview/skins/default/xui/fr/floater_buy_contents.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater_buy_contents" title="Acheter des contenus"> +<floater name="floater_buy_contents" title="Acheter ce contenu"> <text name="contains_text"> [NAME] contient : </text> diff --git a/indra/newview/skins/default/xui/fr/floater_buy_currency.xml b/indra/newview/skins/default/xui/fr/floater_buy_currency.xml index 9ae924c28a03e6c77fd8c5f612f59a6c5dd05ff6..85d67218d3ece3fdbb36a781faf118018401512c 100644 --- a/indra/newview/skins/default/xui/fr/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/fr/floater_buy_currency.xml @@ -23,13 +23,13 @@ [NAME] L$ [PRICE] </text> <text name="currency_action"> - Acheter des L$ + Acheter </text> - <line_editor name="currency_amt"> + <line_editor name="currency_amt" width="65"> 1234 </line_editor> - <text name="currency_est" width="138"> - pour environ [USD] US$ + <text name="currency_est" width="138" left_delta="68"> + L$ pour environ [USD] US$ </text> <text name="getting_data" width="138"> Obtention des données... @@ -52,11 +52,12 @@ <text name="total_amount"> [AMT] L$ </text> - <text name="purchase_warning_repurchase"> - En confirmant cette transaction, vous achetez uniquement les devises. -Vous devrez recommencer cette opération. + <text name="purchase_warning_repurchase" height="48" bottom_delta="-64" right="-10"> + En confirmant cette transaction, vous achetez +uniquement les devises. Vous devrez recommencer +cette opération. </text> - <text name="purchase_warning_notenough"> + <text name="purchase_warning_notenough" bottom_delta="16"> Vous n'achetez pas assez de devises. Veuillez saisir un montant plus élevé. </text> diff --git a/indra/newview/skins/default/xui/fr/floater_buy_land.xml b/indra/newview/skins/default/xui/fr/floater_buy_land.xml index 935df46f1443843305672c88e927860ac78aec92..80b40ca5e3fa1e830d5db73248853ac8d9c646e1 100644 --- a/indra/newview/skins/default/xui/fr/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/fr/floater_buy_land.xml @@ -6,6 +6,12 @@ <text name="region_name_text"> (inconnue) </text> + <text name="region_type_label"> + Type : + </text> + <text name="region_type_text"> + (inconnu) + </text> <text name="estate_name_label"> Domaine : </text> @@ -22,10 +28,10 @@ Terrain acheté dans cette région : </text> <text name="resellable_clause"> - Le terrain acheté dans cette région peut être revendu ou pas. + Peut être revendu ou pas. </text> <text name="changeable_clause"> - peut être fusionné/divisé ou pas. + Peut être fusionné/divisé ou pas. </text> <text name="covenant_text"> Vous devez accepter le règlement du domaine : @@ -54,7 +60,7 @@ (1,1 L$/m²) vendu avec objets </text> - <text name="info_action" width="275"> + <text name="info_action" width="380"> Si vous achetez ce terrain : </text> <text name="error_message"> @@ -78,12 +84,12 @@ 6,00 US$/mois, facturation annuelle </combo_item> </combo_box> - <text name="land_use_action" right="430" width="210"> + <text name="land_use_action"> Augmentez vos frais d'occupation de terrain à 40 US$/mois. </text> <text name="land_use_reason"> - Vous possédez un terrain de 1,309 mètres carrés. -Cette parcelle fait 512 mètres carrés. + Vous êtes propriétaire de 1 309 m² de terrain. +Cette parcelle fait 512 m². </text> <text name="purchase_action"> Payez au résident X 4 000 L$ pour le terrain @@ -162,7 +168,7 @@ Sélectionnez une zone plus petite. Si vous achetez ce terrain : </string> <string name="buying_for_group"> - Achat de terrain pour le groupe : + Si vous achetez le terrain pour le groupe : </string> <string name="cannot_buy_now"> Impossible d'acheter maintenant : @@ -216,7 +222,7 @@ peuvent contenir [AMOUNT2] prims Ce groupe, [GROUP], aura besoin de suffisamment de crédit pour payer les frais d'occupation de terrain avant que l'achat de cette parcelle ne soit finalisé. </string> <string name="have_enough_lindens"> - Vous avez [AMOUNT]L$, ce qui est suffisant pour acheter ce terrain. + Vous avez [AMOUNT] L$, ce qui est suffisant pour acheter ce terrain. </string> <string name="not_enough_lindens"> Vous n'avez que [AMOUNT] L$ et vous avez besoin de [AMOUNT2] L$ de plus. diff --git a/indra/newview/skins/default/xui/fr/floater_customize.xml b/indra/newview/skins/default/xui/fr/floater_customize.xml index e71890770991daf188271589140672ad1481a65c..b1d7edbe529b98d613ab6012527dbda509c8e0e8 100644 --- a/indra/newview/skins/default/xui/fr/floater_customize.xml +++ b/indra/newview/skins/default/xui/fr/floater_customize.xml @@ -1,14 +1,9 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater customize" title="Apparence" width="563"> - <tab_container name="customize tab container" tab_min_width="165" width="561"> - <panel label="Parties du corps"/> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floater customize" title="Apparence" width="548"> + <tab_container name="customize tab container" tab_min_width="150" width="546"> <panel label="Parties du corps" name="body_parts_placeholder"/> - <panel label="Silhouette" left="169" name="Shape" width="389"> - <button label="Créer une silhouette" label_selected="Créer une silhouette" name="Create New" width="140"/> - <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> - <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <panel label="Silhouette" left="154" name="Shape" width="389"> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> <button label="Corps" label_selected="Corps" name="Body"/> <button label="Tête" label_selected="Tête" name="Head"/> <button label="Yeux" label_selected="Yeux" name="Eyes"/> @@ -18,7 +13,14 @@ <button label="Menton" label_selected="Menton" name="Chin"/> <button label="Torse" label_selected="Torse" name="Torso"/> <button label="Jambes" label_selected="Jambes" name="Legs"/> - <button label="Aléatoire" label_selected="Aléatoire" name="Randomize"/> + <radio_group name="sex radio"> + <radio_item length="1" name="radio" type="string"> + Femme + </radio_item> + <radio_item length="1" name="radio2" type="string"> + Homme + </radio_item> + </radio_group> <text length="1" name="title" type="string"> [DESC] </text> @@ -36,32 +38,24 @@ </text> <text length="1" name="not worn instructions" type="string"> Pour changer de silhouette, faites-en glisser une à partir de votre -inventaire jusqu'à votre avatar. Vous pouvez aussi en créer une nouvelle et la porter. -une nouvelle et de la porter. +inventaire jusqu'à votre avatar. Vous pouvez aussi en créer une nouvelle +et de la porter. </text> <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <radio_group name="sex radio"> - <radio_item length="1" name="radio" type="string"> - Femme - </radio_item> - <radio_item length="1" name="radio2" type="string"> - Homme - </radio_item> - </radio_group> + <text name="Item Action Label" right="92"> + Silhouette : + </text> + <button label="Créer une silhouette" label_selected="Créer une silhouette" name="Create New"/> + <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> </panel> <panel label="Peau" name="Skin"> - <button label="Créer une peau" label_selected="Créer une peau" name="Create New"/> - <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> - <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> <button label="Couleur" label_selected="Couleur" name="Skin Color" width="84"/> <button label="Détails visage" label_selected="Détails visage" name="Face Detail" width="84"/> <button label="Maquillage" label_selected="Maquillage" name="Makeup" width="84"/> <button label="Détails corps" label_selected="Détails corps" name="Body Detail" width="84"/> - <button label="Aléatoire" label_selected="Aléatoire" name="Randomize" width="84"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -84,21 +78,22 @@ Vous pouvez aussi en créer une nouvelle et la porter. <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> + <text name="Item Action Label" right="92"> + Peau : + </text> <texture_picker label="Tatouages tête" name="Head Tattoos" tool_tip="Cliquez pour sélectionner une image" width="78"/> <texture_picker label="Tatouages haut" name="Upper Tattoos" tool_tip="Cliquez pour sélectionner une image" width="78"/> <texture_picker label="Tatouages bas" name="Lower Tattoos" tool_tip="Cliquez pour sélectionner une image" width="78"/> + <button label="Créer une peau" label_selected="Créer une peau" name="Create New"/> + <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> </panel> <panel label="Cheveux" name="Hair"> - <button label="Créer des cheveux" label_selected="Créer des cheveux" name="Create New"/> - <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> - <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> <button label="Couleur" label_selected="Couleur" name="Color"/> <button label="Style" label_selected="Style" name="Style"/> <button label="Sourcils" label_selected="Sourcils" name="Eyebrows"/> <button label="Pilosité" label_selected="Pilosité" name="Facial"/> - <button label="Aléatoire" label_selected="Aléatoire" name="Randomize"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -116,21 +111,22 @@ Vous pouvez aussi en créer une nouvelle et la porter. </text> <text length="1" name="not worn instructions" type="string"> Pour changer de chevelure, faites-en glisser une de votre inventaire -jusqu'à votre avatar. Vous pouvez aussi en créer une -nouvelle et la porter. +jusqu'à votre avatar. Vous pouvez aussi en créer une nouvelle +et la porter. </text> <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> + <text name="Item Action Label" right="92"> + Cheveux : + </text> <texture_picker label="Texture" name="Texture" tool_tip="Cliquez pour sélectionner une image"/> + <button label="Créer des cheveux" label_selected="Créer des cheveux" name="Create New"/> + <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> </panel> <panel label="Yeux" name="Eyes"> - <button label="Créer des yeux" label_selected="Créer des yeux" name="Create New"/> - <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> - <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> - <button label="Aléatoire" label_selected="Aléatoire" name="Randomize"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -147,22 +143,30 @@ nouvelle et la porter. Emplacement : [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Pour changer vos yeux, faites-les glisser de votre inventaire -jusqu'à votre avatar. Vous pouvez aussi en créer de nouveaux et les porter. + Pour changer vos yeux, faites-les glisser de votre inventaire jusqu'à +votre avatar. Vous pouvez aussi en créer de nouveaux et les porter. </text> <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> + <text name="Item Action Label" right="92"> + Yeux : + </text> <texture_picker label="Iris" name="Iris" tool_tip="Cliquez pour sélectionner une image"/> + <button label="Créer des yeux" label_selected="Créer des yeux" name="Create New"/> + <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> </panel> - <panel label="Vêtements"/> <panel label="Habits" name="clothes_placeholder"/> <panel label="Chemise" name="Shirt"> + <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Créer une chemise" label_selected="Créer une chemise" name="Create New"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -185,15 +189,18 @@ jusqu'à votre avatar. Vous pouvez aussi en créer une nouvelle et la porte <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> - <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> + <text name="Item Action Label" right="92"> + Chemise : + </text> </panel> <panel label="Pantalon" name="Pants"> + <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> <button label="Créer un pantalon" label_selected="Créer un pantalon" name="Create New"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -216,15 +223,11 @@ jusqu'à votre avatar. Vous pouvez aussi en créer un nouveau et le porter. <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> - <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> + <text name="Item Action Label" right="92"> + Pantalon : + </text> </panel> <panel label="Chaussures" name="Shoes"> - <button label="Créer des chaussures" label_selected="Créer des chaussures" name="Create New" width="140"/> - <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> - <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -248,15 +251,18 @@ nouvelle paire et la porter. <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <text name="Item Action Label" right="92"> + Chaussures : + </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - </panel> - <panel label="Chaussettes" name="Socks"> - <button label="Créer des chaussettes" label_selected="Créer des chaussettes" name="Create New" width="140"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <button label="Créer des chaussures" label_selected="Créer des chaussures" name="Create New" /> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> + </panel> + <panel label="Chaussettes" name="Socks"> <text length="1" name="title" type="string"> [DESC] </text> @@ -280,15 +286,18 @@ nouvelle paire et la porter. <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <text name="Item Action Label" right="92"> + Chaussettes : + </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - </panel> - <panel label="Veste" name="Jacket"> - <button label="Créer une veste" label_selected="Créer une veste" name="Create New"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <button label="Créer des chaussettes" label_selected="Créer des chaussettes" name="Create New"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> + </panel> + <panel label="Veste" name="Jacket"> <text length="1" name="title" type="string"> [DESC] </text> @@ -305,23 +314,25 @@ nouvelle paire et la porter. Emplacement : [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Pour changer de veste, faites-en glisser une de votre inventaire -jusqu'à votre avatar. Vous pouvez aussi en créer une -nouvelle et la porter. + Pour changer de veste, faites-en glisser une de votre inventaire jusqu'à +votre avatar. Vous pouvez aussi en créer une nouvelle et la porter. </text> <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="81"/> + <text name="Item Action Label" right="92"> + Veste : + </text> <texture_picker label="Tissu (dessus)" name="Upper Fabric" tool_tip="Cliquez pour sélectionner une image" width="81"/> <texture_picker label="Tissu (dessous)" name="Lower Fabric" tool_tip="Cliquez pour sélectionner une image" width="81"/> - </panel> - <panel label="Gants" name="Gloves"> - <button label="Créer des gants" label_selected="Créer des gants" name="Create New"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="81"/> + <button label="Créer une veste" label_selected="Créer une veste" name="Create New"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> + </panel> + <panel label="Gants" name="Gloves"> <text length="1" name="title" type="string"> [DESC] </text> @@ -339,21 +350,23 @@ nouvelle et la porter. </text> <text length="1" name="not worn instructions" type="string"> Pour changer de gants, faites-en glisser une paire à partir de votre -inventaire. Vous pouvez aussi en créer une nouvelle paire -et la porter. +inventaire. Vous pouvez aussi en créer une nouvelle paire et la porter. </text> <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <text name="Item Action Label" right="92"> + Gants : + </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - </panel> - <panel label="Sous-vêtements (homme)" name="Undershirt"> - <button label="Créer des sous-vêtements" label_selected="Créer des sous-vêtements" name="Create New" width="166"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <button label="Créer des gants" label_selected="Créer des gants" name="Create New"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> + </panel> + <panel label="Sous-vêtements (haut)" name="Undershirt"> <text length="1" name="title" type="string"> [DESC] </text> @@ -376,15 +389,19 @@ votre inventaire. Vous pouvez aussi en créer des nouveaux et les porter. <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <text name="Item Action Label" right="92" bottom="-470"> + Sous-vêtements +(haut) : + </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - </panel> - <panel label="Sous-vêtements (femme)" name="Underpants"> - <button label="Créer des sous-vêtements" label_selected="Créer des sous-vêtements" name="Create New" width="166"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <button label="Créer des sous-vêtements" label_selected="Créer des sous-vêtements" name="Create New"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> + </panel> + <panel label="Sous-vêtements (bas)" name="Underpants"> <text length="1" name="title" type="string"> [DESC] </text> @@ -407,15 +424,19 @@ votre inventaire. Vous pouvez aussi en créer des nouveaux et les porter. <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <text name="Item Action Label" right="92" bottom="-470"> + Sous-vêtements +(bas) : + </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> - </panel> - <panel label="Jupe" name="Skirt"> - <button label="Créer une jupe" label_selected="Créer une jupe" name="Create New"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <button label="Créer des sous-vêtements" label_selected="Créer des sous-vêtements" name="Create New"/> <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> - <button label="Enregistrer sous" label_selected="Enregistrer sous" left="188" name="Save As" width="105"/> - <button label="Rétablir" label_selected="Rétablir" left="299" name="Revert" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> + </panel> + <panel label="Jupe" name="Skirt"> <text length="1" name="title" type="string"> [DESC] </text> @@ -438,12 +459,20 @@ Vous pouvez aussi en créer une nouvelle et la porter. <text length="1" name="no modify instructions" type="string"> Vous n'avez pas la permission de modifier cet objet. </text> - <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <text name="Item Action Label" right="92"> + Jupe : + </text> <texture_picker label="Tissu" name="Fabric" tool_tip="Cliquez pour sélectionner une image" width="74"/> + <color_swatch label="Couleur/Teinte" name="Color/Tint" tool_tip="Cliquer pour ouvrir le sélecteur de couleurs" width="74"/> + <button label="Créer une jupe" label_selected="Créer une jupe" name="Create New"/> + <button label="Enlever" label_selected="Enlever" left="12" name="Take Off" width="82"/> + <button label="Enregistrer" label_selected="Enregistrer" left="100" name="Save" width="82"/> + <button label="Enregistrer sous..." label_selected="Enregistrer sous..." left="188" name="Save As" width="111"/> + <button label="Rétablir" label_selected="Rétablir" left="305" name="Revert" width="82"/> </panel> </tab_container> - <scroll_container left="266" name="panel_container"/> - <button label="Créer un ensemble" label_selected="Créer un ensemble" name="Make Outfit" right="-252" width="115"/> - <button label="Tout enregistrer" label_selected="Tout enregistrer" name="Save All" right="-131" width="115"/> - <button label="Fermer" label_selected="Fermer" name="Close" width="115"/> + <scroll_container left="251" name="panel_container"/> + <button label="Annuler" label_selected="Annuler" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="Créer un ensemble..." label_selected="Créer un ensemble..." name="Make Outfit" left="152" width="125"/> </floater> diff --git a/indra/newview/skins/default/xui/fr/floater_font_test.xml b/indra/newview/skins/default/xui/fr/floater_font_test.xml index fce3615725b5658901ee3ab68e7a095483249691..11eb11a0d7949aed5bee2f07c7f6788ca35ebcb4 100644 --- a/indra/newview/skins/default/xui/fr/floater_font_test.xml +++ b/indra/newview/skins/default/xui/fr/floater_font_test.xml @@ -1,10 +1,6 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" - height="800" min_height="175" min_width="154" name="contents" - title="Font Test" width="500"> - -<text name="linea" font="OverrideTest" follows="left|top|right" bottom_delta="-20" left="16" height="16"> -OverrideTest, should be timesbd, from default/xui/fr -</text> - +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="Test de la police"> + <text name="linea"> + OverrideTest, Times-BOLD doit être sélectionné ici. (De default/xui/fr) + </text> </floater> diff --git a/indra/newview/skins/default/xui/fr/floater_god_tools.xml b/indra/newview/skins/default/xui/fr/floater_god_tools.xml index 531080fb2d00099be78245a710ac58a48a0c9795..81b69eb110395ddc9208783f2d2385b96eeff19a 100644 --- a/indra/newview/skins/default/xui/fr/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/fr/floater_god_tools.xml @@ -16,7 +16,7 @@ <check_box label="Visible" name="check visible" tool_tip="Cochez pour rendre la région visible aux non-admins." bottom_delta="-32"/> <check_box label="Dégâts" name="check damage" tool_tip="Cochez pour activer les dégâts dans cette région."/> <check_box label="Bloquer le suivi de trafic" name="block dwell" tool_tip="Cochez pour que la région ne comptabilise pas le trafic."/> - <check_box label="Bloquer le terraformage" name="block terraform" tool_tip="Cochez pour empêcher les personnes de terraformer leur terrain"/> + <check_box label="Interdire le terraformage" name="block terraform" tool_tip="Cochez pour empêcher les personnes de terraformer leur terrain"/> <check_box label="Bac à sable" name="is sandbox" tool_tip="Basculer cette région en bac à sable."/> <button label="Figer le terrain" label_selected="Figer le terrain" name="Bake Terrain" tool_tip="Enregistrer le terrain actuel comme terrain par défaut." width="118" /> <button label="Rétablir le terrain" label_selected="Rétablir le terrain" name="Revert Terrain" tool_tip="Remplacer le terrain actuel avec le terrain par défaut." width="118" /> @@ -60,17 +60,17 @@ </text> <check_box label="Désactiver les scripts" name="disable scripts" tool_tip="Cochez pour désactiver tous les scripts dans cette région"/> <check_box label="Désactiver les collisions" name="disable collisions" tool_tip="Cochez pour désactiver les collisions entre non-avatars dans cette région"/> - <check_box label="Désactiver les propriétés physiques" name="disable physics" tool_tip="Cochez pour désactiver toutes les propriétés physiques dans cette région"/> + <check_box label="Désactiver la physique" name="disable physics" tool_tip="Cochez pour désactiver tous les effets liés à la physique dans cette région"/> <button label="Appliquer" label_selected="Appliquer" name="Apply" tool_tip="Cliquez ici pour appliquer les modifications effectuées ci-dessus." bottom="-85"/> <button label="Définir la cible" label_selected="Définir la cible" name="Set Target" tool_tip="Définir l'avatar cible pour la suppression de l'objet."/> <text name="target_avatar_name"> (aucune cible) </text> - <button label="Supprimer tous les objets scriptés de la cible sur les terrains des autres" label_selected="Supprimer tous les objets scriptés de la cible sur les terrains des autres" name="Delete Target's Scripted Objects On Others Land" tool_tip="Supprimer tous les objets scriptés appartenant à la cible sur les terrains ne lui appartenant pas. Les objets non reproductibles seront renvoyés."/> - <button label="Supprimer les objets scriptés de la cible sur *tous* les terrains" label_selected="Supprimer les objets scriptés de la cible sur *tous* les terrains" name="Delete Target's Scripted Objects On *Any* Land" tool_tip="Supprimer les objets scriptés appartenant à la cible dans cette région. Les objets non reproductibles seront renvoyés."/> - <button label="Supprimer *tous* les objets de la cible" label_selected="Supprimer *tous* les objets de la cible" name="Delete *ALL* Of Target's Objects" tool_tip="Supprimer tous les objets appartenant à la cible dans cette région. Les objets non reproductibles seront renvoyés."/> - <button width="300" label="Afficher les objets souvent responsables de collision" label_selected="Afficher les objets souvent responsables de collision" name="Get Top Colliders" tool_tip="Dresse une liste des objets avec les callbacks les plus fréquents. "/> - <button width="300" label="Afficher les scripts fréquemment utilisés" label_selected="Afficher les scripts fréquemment utilisés" name="Get Top Scripts" tool_tip="Dresse une liste des objets qui passent le plus de temps à exécuter des scripts."/> + <button label="Supprimer tous les objets scriptés de la cible sur les terrains des autres" label_selected="Supprimer tous les objets scriptés de la cible sur les terrains des autres" name="Delete Target's Scripted Objects On Others Land" tool_tip="Supprimer tous les objets scriptés appartenant à la cible sur les terrains ne lui appartenant pas. Les objets non copiables seront renvoyés."/> + <button label="Supprimer les objets scriptés de la cible sur *tous* les terrains" label_selected="Supprimer les objets scriptés de la cible sur *tous* les terrains" name="Delete Target's Scripted Objects On *Any* Land" tool_tip="Supprimer les objets scriptés appartenant à la cible dans cette région. Les objets non copiables seront renvoyés."/> + <button label="Supprimer *tous* les objets de la cible" label_selected="Supprimer *tous* les objets de la cible" name="Delete *ALL* Of Target's Objects" tool_tip="Supprimer tous les objets appartenant à la cible dans cette région. Les objets non copiables seront renvoyés."/> + <button width="300" label="Afficher les collisions les plus consommatrices" label_selected="Afficher les collisions les plus consommatrices" name="Get Top Colliders" tool_tip="Dresse une liste des objets avec les callbacks les plus fréquents. "/> + <button width="300" label="Afficher les objets scriptés les plus consommateurs" label_selected="Afficher les objets scriptés les plus consommateurs" name="Get Top Scripts" tool_tip="Dresse une liste des objets qui passent le plus de temps à exécuter des scripts."/> <button width="300" label="Résumé des scripts" label_selected="Résumé des scripts" name="Scripts digest" tool_tip="Dresse une liste des scripts et de leurs occurrences."/> </panel> <panel label="Requête" name="request"> diff --git a/indra/newview/skins/default/xui/fr/floater_im.xml b/indra/newview/skins/default/xui/fr/floater_im.xml index 0c9ea2c913c44af2a48e174a3c21c9da5b8e87a0..a116c43f3f4d65d748109cd0c79b2ed9435984cb 100644 --- a/indra/newview/skins/default/xui/fr/floater_im.xml +++ b/indra/newview/skins/default/xui/fr/floater_im.xml @@ -16,7 +16,7 @@ Erreur lors de la requête, veuillez réessayer ultérieurement. </string> <string name="insufficient_perms_error"> - Vous n'avez pas les permissions requises. + Vous n'avez pas les droits requis. </string> <string name="session_does_not_exist_error"> La session a expiré diff --git a/indra/newview/skins/default/xui/fr/floater_land_holdings.xml b/indra/newview/skins/default/xui/fr/floater_land_holdings.xml index 4a63abf4e1d7d5e2fc7ece6369c4207c9db6e717..9c4f4ee966b56ee7c36f2995a0f43763efbff507 100644 --- a/indra/newview/skins/default/xui/fr/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/fr/floater_land_holdings.xml @@ -1,21 +1,20 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="land holdings floater" title="Mes terrains"> <scroll_list name="parcel list"> - <column label="Nom" name="name" /> - <column label="Emplacement" name="location" /> - <column label="Surface" name="area" /> - <column label="" name="hidden" /> + <column label="Nom de la parcelle" name="name"/> + <column label="Région" name="location"/> + <column label="Type" name="type"/> + <column label="Surface" name="area"/> + <column label="" name="hidden"/> </scroll_list> - <button label="Téléporter" label_selected="Téléporter" name="Teleport" - tool_tip="Téléportez-vous au milieu de ce terrain." /> - <button label="Voir sur la carte" label_selected="Voir sur la carte" name="Show on Map" - tool_tip="Affichez ce terrain sur la carte du monde." /> + <button label="Téléporter" label_selected="Téléporter" name="Teleport" tool_tip="Téléportez-vous au milieu de ce terrain."/> + <button label="Voir sur la carte" label_selected="Voir sur la carte" name="Show on Map" tool_tip="Affichez ce terrain sur la carte du monde."/> <text name="contrib_label"> Vos contributions : </text> <scroll_list name="grant list"> - <column label="Groupe" name="group" /> - <column label="Surface" name="area" /> + <column label="Groupe" name="group"/> + <column label="Surface" name="area"/> </scroll_list> <text name="allowed_label"> Surface de terrain autorisée avec votre compte : diff --git a/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml index 2ca6a85ea442b039f61fe895e4f818aaebf1fcf5..e2e2a9af9a0655a9cb9bddac511bf208788755e1 100644 --- a/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml +++ b/indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <floater name="script ed float" title="Script : Nouveau script"> - <button label="Redéfinir" label_selected="Redéfinir" name="Reset" width="100" left="390"/> + <button label="Réinitialiser" label_selected="Réinitialiser" name="Reset" width="100" left="390"/> <check_box label="Exécution en cours" name="running" left="4"/> <check_box label="Mono" name="mono" left="130"/> <string name="not_allowed"> diff --git a/indra/newview/skins/default/xui/fr/floater_notifications_console.xml b/indra/newview/skins/default/xui/fr/floater_notifications_console.xml index f4c47b8e0594cce0fe82f75faeecbece67aa4dc3..7262fe8fe2d55064f61f07530b26ce9ee21dd0a1 100644 --- a/indra/newview/skins/default/xui/fr/floater_notifications_console.xml +++ b/indra/newview/skins/default/xui/fr/floater_notifications_console.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="notifications_console" title="Console de notifications"> - <combo_box label="Sélectionner le type de notification" name="notification_types"/> - <button label="Ajouter" name="add_notification"/> + <combo_box label="Sélectionner le type de notification" name="notification_types" width="412"/> + <button label="Ajouter" name="add_notification" left="417" width="78"/> </floater> diff --git a/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml b/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml index a697ff80ccad730d57aa7ac6e00341ec3446331a..9ea970d89dccd2cf308ce1aeef0ba0538cbd2bcb 100644 --- a/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml +++ b/indra/newview/skins/default/xui/fr/floater_perm_prefs.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="perm prefs" title="Permissions par défaut"> - <panel label="Permissions" name="permissions"> +<floater name="perm prefs" title="Droits par défaut"> + <panel label="Droits" name="permissions"> <button label="?" label_selected="?" name="help"/> <check_box label="Partager avec le groupe" name="share_with_group"/> <check_box label="Autoriser tout le monde à copier" name="everyone_copy"/> diff --git a/indra/newview/skins/default/xui/fr/floater_report_abuse.xml b/indra/newview/skins/default/xui/fr/floater_report_abuse.xml index 3946219458218ac9bfdfa27aa6ea0044fd531986..628f308f889b84d90986fe726f71c72cb43e7403 100644 --- a/indra/newview/skins/default/xui/fr/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/fr/floater_report_abuse.xml @@ -46,9 +46,9 @@ <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> Âge > Résident adulte sur Second Life pour adolescents </combo_item> - - - + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + Âge > Resident mineur en dehors de Teen Second Life + </combo_item> <combo_item name="Assault__Combat_sandbox___unsafe_area"> Assaut > Bac à sable utilisé pour des combats/zone non sécurisée </combo_item> @@ -118,20 +118,20 @@ <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> Indécence > Contenu ou comportement offensifs </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> Indécence > Nom d'avatar inapproprié </combo_item> - - - + <combo_item name="Indecency__Mature_content_in_PG_region"> + Indécence > Contenu ou conduite inappropriés dans une région PG + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + Indécence > Contenu ou conduite inappropriés dans une région Mature + </combo_item> <combo_item name="Intellectual_property_infringement_Content_Removal"> Violation de droits de propriété intellectuelle > Suppression de contenu </combo_item> <combo_item name="Intellectual_property_infringement_CopyBot_or_Permissions_Exploit"> - Violation de droits de propriété intellectuelle > CopyBot ou exploitation abusive des permissions + Violation de droits de propriété intellectuelle > CopyBot ou exploitation abusive des droits </combo_item> <combo_item name="Intolerance"> Intolérance diff --git a/indra/newview/skins/default/xui/fr/floater_sell_land.xml b/indra/newview/skins/default/xui/fr/floater_sell_land.xml index 9ba1d56ae68a2736502e5a897241e3d3266339ad..cf394643bcfd481db74665fd41cc17988a706fe0 100644 --- a/indra/newview/skins/default/xui/fr/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/fr/floater_sell_land.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="sell land" title="Vendre terrain"> - <text name="info_parcel_label" width="48"> + <text name="info_parcel_label"> Parcelle : </text> - <text name="info_parcel" left="66"> + <text name="info_parcel"> PARCEL NAME </text> <text name="info_size_label"> Taille : </text> - <text name="info_size" left="66"> + <text name="info_size"> [AREA] m² </text> <text name="info_action" bottom_delta="-60"> @@ -65,7 +65,7 @@ de propriétaire. </radio_group> <button label="Afficher les objets" name="show_objects" right="420" width="120"/> <text name="nag_message_label" bottom_delta="-30"> - Rappel : Toute vente est définitive. + Rappel : toute vente est définitive. </text> <button label="Mettre le terrain en vente" name="sell_btn" width="165"/> <button label="Annuler" name="cancel_btn"/> diff --git a/indra/newview/skins/default/xui/fr/floater_sound_preview.xml b/indra/newview/skins/default/xui/fr/floater_sound_preview.xml index eb2383b1bcf11b5f96f9afeda62e1d73b971130d..199a6b846f047c8091e00a5e605c23f03e4b7f75 100644 --- a/indra/newview/skins/default/xui/fr/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/fr/floater_sound_preview.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Name/Description" title="sound.wav"> +<floater name="Sound Preview" title="sound.wav"> <text name="name_label"> Nom : </text> diff --git a/indra/newview/skins/default/xui/fr/floater_statistics.xml b/indra/newview/skins/default/xui/fr/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..0768c3ace4998b55d0148896d309b2c47a88f9ea --- /dev/null +++ b/indra/newview/skins/default/xui/fr/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="Statistiques"/> diff --git a/indra/newview/skins/default/xui/fr/floater_tools.xml b/indra/newview/skins/default/xui/fr/floater_tools.xml index fed4a789ce87f7df9233b523b9eeb3ef64cd4a46..f34100f56f4805b5b42a81862f659dc92d0e4a41 100644 --- a/indra/newview/skins/default/xui/fr/floater_tools.xml +++ b/indra/newview/skins/default/xui/fr/floater_tools.xml @@ -35,11 +35,10 @@ <check_box label="Utiliser la grille" name="checkbox snap to grid"/> <button label="Options..." label_selected="Options..." name="Options..."/> <text name="text status"> - Faîtes glisser pour déplacer, Maj-faire glisser pour - copier. + Glissez pour déplacer, Maj-glissez pour copier. </text> <button label="" label_selected="" name="ToolCube" tool_tip="Cube"/> - <button label="" label_selected="" name="ToolPrism" tool_tip="Prisme"/> + <button label="" label_selected="" name="ToolPrism" tool_tip="Prisme droit"/> <button label="" label_selected="" name="ToolPyramid" tool_tip="Pyramide"/> <button label="" label_selected="" name="ToolTetrahedron" tool_tip="Tétraèdre"/> <button label="" label_selected="" name="ToolCylinder" tool_tip="Cylindre"/> @@ -64,7 +63,7 @@ <check_box label="Lisser" name="radio smooth"/> <check_box label="Bosseler" name="radio noise"/> <check_box label="Annuler modification" name="radio revert"/> - <button label="Appliquer" label_selected="Appliquer" name="button apply to selection" tool_tip="Modifier le terrain sélectionné"/> + <button label="Appliquer" label_selected="Appliquer" name="button apply to selection" tool_tip="Modifier le terrain sélectionné" left="176"/> <text name="Bulldozer:"> Bulldozer : </text> @@ -110,12 +109,12 @@ </text> <button label="Définir..." label_selected="Définir..." name="button set group"/> <text name="Permissions:"> - Autorisations : + Droits : </text> <text name="perm_modify"> Vous pouvez modifier cet objet. </text> - <check_box label="Partager avec le groupe" name="checkbox share with group" tool_tip="Autoriser les membres du groupe à déplacer, copier et supprimer."/> + <check_box label="Partager avec le groupe" name="checkbox share with group" tool_tip="Autorisez tous les membres du groupe choisi à utiliser et à partager vos droits pour cet objet. Pour activer les restrictions de rôles, vous devez d'abord cliquer sur Transférer."/> <string name="text deed continued"> Transférer... </string> @@ -555,7 +554,7 @@ </panel> <panel label="Contenu" name="Contents"> <button label="Nouveau script" label_selected="Nouveau script..." name="button new script"/> - <button label="Permissions..." name="button permissions"/> + <button label="Droits..." name="button permissions"/> </panel> </tab_container> <panel name="land info panel"> @@ -568,43 +567,43 @@ <text name="label_area"> Surface : [AREA] m² </text> - <button label="À propos du terrain..." label_selected="À propos du terrain..." name="button about land" width="132"/> + <button label="À propos du terrain..." label_selected="À propos du terrain..." name="button about land" width="142"/> <check_box label="Afficher les propriétaires" name="checkbox show owners" tool_tip="Colorie les parcelles en fonction de leur propriétaire"/> - <button label="?" label_selected="?" name="button show owners help"/> + <button label="?" label_selected="?" name="button show owners help" left_delta="154"/> <text name="label_parcel_modify"> Modifier la parcelle </text> - <button label="Diviser..." label_selected="Diviser..." name="button subdivide land" width="132"/> - <button label="Fusionner..." label_selected="Fusionner..." name="button join land" width="132"/> + <button label="Diviser..." label_selected="Diviser..." name="button subdivide land" width="142"/> + <button label="Fusionner..." label_selected="Fusionner..." name="button join land" width="142"/> <text name="label_parcel_trans"> Transactions </text> - <button label="Acheter le terrain..." label_selected="Acheter le terrain..." name="button buy land" width="132"/> - <button label="Abandonner le terrain..." label_selected="Abandonner le terrain..." name="button abandon land" width="132"/> + <button label="Acheter le terrain..." label_selected="Acheter le terrain..." name="button buy land" width="142"/> + <button label="Abandonner le terrain..." label_selected="Abandonner le terrain..." name="button abandon land" width="142"/> </panel> <string name="status_rotate"> Pour faire tourner l'objet, faîtes glisser les bandes de couleur. </string> <string name="status_scale"> - Pour étirer le côté sélectionné, cliquez et faites glisser + Pour étirer le côté sélectionné, cliquez et faites glisser. </string> <string name="status_move"> - Faîtes glisser pour déplacer, Maj-faire glisser pour copier. + Glissez pour déplacer, Maj-glissez pour copier. </string> <string name="status_modifyland"> - Cliquez et maintenez pour modifier le terrain + Cliquez et maintenez pour modifier le terrain. </string> <string name="status_camera"> - Cliquez et faites glisser pour changer l'affichage + Cliquez et faites glisser pour changer l'affichage. </string> <string name="status_grab"> - Faîtes glisser pour déplacer, appuyez sur Ctrl pour soulever, Crtl-Maj pour pivoter + Glisser pour déplacer, Ctrl pour soulever, Crtl-Maj pour pivoter. </string> <string name="status_place"> - Cliquez dans le monde pour construire + Cliquez dans le monde pour construire. </string> <string name="status_selectland"> - Cliquez et faites glisser pour sélectionner le terrain + Cliquez et faites glisser pour sélectionner le terrain. </string> <string name="grid_screen_text"> Écran diff --git a/indra/newview/skins/default/xui/fr/floater_top_objects.xml b/indra/newview/skins/default/xui/fr/floater_top_objects.xml index 3be281b6c2b574832453656bc0e3ca6acebad5ba..69a3d0cd18ad2d469baeef7d833c732ed9ae5957 100644 --- a/indra/newview/skins/default/xui/fr/floater_top_objects.xml +++ b/indra/newview/skins/default/xui/fr/floater_top_objects.xml @@ -16,17 +16,17 @@ </text> <button label="Afficher balise" name="show_beacon_btn"/> <text name="obj_name_text"> - Nom : + Objet : </text> <button label="Filtre" name="filter_object_btn"/> <text name="owner_name_text"> - Nom : + Propriétaire : </text> <button label="Filtre" name="filter_owner_btn"/> <button label="Renvoyer" name="return_selected_btn"/> - <button label="Renvoyer tous" name="return_all_btn"/> + <button label="Tout renvoyer" name="return_all_btn"/> <button label="Désactiver" name="disable_selected_btn"/> - <button label="Désactiver tous" name="disable_all_btn"/> + <button label="Tout désactiver" name="disable_all_btn"/> <button label="Rafraîchir" name="refresh_btn"/> <string name="top_scripts_title"> Scripts principaux @@ -41,10 +41,10 @@ Heure Mono </string> <string name="top_colliders_title"> - Objets souvent responsables de collision + Collisions les plus consommatrices </string> <string name="top_colliders_text"> - [COUNT] objets souvent responsables de collisions + [COUNT] collisions les plus consommatrices </string> <string name="colliders_score_label"> Score 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 16c1e0ef8e253416db0f411eb06db9194de291c2..bf7004e66fdcb037b327cba85784123d90a74daf 100644 --- a/indra/newview/skins/default/xui/fr/floater_world_map.xml +++ b/indra/newview/skins/default/xui/fr/floater_world_map.xml @@ -4,14 +4,6 @@ <panel label="Objets" name="objects_mapview" width="953"/> <panel label="Terrain" name="terrain_mapview" width="953"/> </tab_container> - <icon left="973" name="square"/> - <text name="land_for_sale_label"> - Terrain à vendre - </text> - <icon left="1113" name="square2"/> - <text name="auction_label"> - Terrain aux enchères - </text> <icon left="973" name="self"/> <text name="you_label"> Vous @@ -20,38 +12,32 @@ <text name="home_label"> Domicile </text> - <button label="Aller chez moi" label_selected="Aller chez moi" name="Go Home" tool_tip="Vous téléporte à votre domicile"/> - <text name="classifieds_label"> - Petites annonces + <icon left="973" name="square2"/> + <text name="auction_label"> + Terrain aux enchères </text> - <icon left="977" name="person"/> - <text name="person_label"> - Résident + <icon left="1105" name="square"/> + <text name="land_for_sale_label"> + Terrain à vendre </text> - <check_box label=" " left_delta="60" name="people_chk"/> + <button label="Aller chez moi" label_selected="Aller chez moi" name="Go Home" tool_tip="Vous téléporte à votre domicile"/> + <icon left="977" name="person"/> + <check_box label="Résident" name="people_chk"/> <icon left="973" name="infohub"/> - <text name="infohub_label"> - Infohub - </text> - <check_box label=" " left_delta="60" name="infohub_chk"/> + <check_box label="Infohub" name="infohub_chk"/> <icon left="973" name="telehub"/> - <text name="telehub_label"> - Téléhub - </text> - <check_box label=" " left_delta="60" name="telehubchk"/> - <icon left="1113" name="landforsale"/> - <text name="land_for_sale_label2"> - Terrain à vendre - </text> - <check_box label=" " name="land_for_sale_chk"/> - <icon left="1113" name="event"/> - <text name="events_label"> - Événements + <check_box label="Téléhub" name="telehubchk"/> + <icon left="973" name="landforsale"/> + <check_box label="Terrain à vendre" name="land_for_sale_chk"/> + <text name="events_label" left="1099"> + Événements : </text> - <check_box label=" " name="event_chk"/> - <icon left="1113" name="events_mature_icon"/> - - <check_box name="event_mature_chk"/> + <icon left="1121" name="event"/> + <check_box label="PG" name="event_chk"/> + <icon left="1121" name="events_mature_icon"/> + <check_box label="Mature" name="event_mature_chk"/> + <icon left="1121" name="events_adult_icon"/> + <check_box label="Adult" name="event_adult_chk"/> <icon left="973" name="avatar_icon"/> <combo_box label="Amis connectés" name="friend combo" tool_tip="Ami à afficher sur la carte" width="232"> <combo_item name="none_selected"> @@ -77,13 +63,13 @@ <text left="973" name="location_label"> Emplacement : </text> - <spinner left="993" name="spin x" tool_tip="Coordonnées des X du lieu à afficher sur la carte"/> - <spinner left="993" name="spin y" tool_tip="Coordonnées des Y du lieu à afficher sur la carte"/> - <spinner left="993" name="spin z" tool_tip="Coordonnées des Z du lieu à afficher sur la carte"/> + <spinner left="1078" name="spin x" tool_tip="Coordonnées des X du lieu à afficher sur la carte"/> + <spinner name="spin y" tool_tip="Coordonnées des Y du lieu à afficher sur la carte"/> + <spinner name="spin z" tool_tip="Coordonnées des Z du lieu à afficher sur la carte"/> <button label="Téléporter" label_selected="Téléporter" left="-270" name="Teleport" tool_tip="Téléporter à l'endroit sélectionné"/> <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-papier" 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/menu_login.xml b/indra/newview/skins/default/xui/fr/menu_login.xml index 3b904b6802269569dd230abad6b28002c97257ea..b3169714c348b82f4b69c540019c074a488a6221 100644 --- a/indra/newview/skins/default/xui/fr/menu_login.xml +++ b/indra/newview/skins/default/xui/fr/menu_login.xml @@ -7,7 +7,7 @@ <menu_item_call label="Préférences..." name="Preferences..." /> </menu> <menu label="Aide" name="Help"> - <menu_item_call label="Aide Second Life" name="Second Life Help" /> + <menu_item_call label="Aide de Second Life" name="Second Life Help" /> <menu_item_call label="À propos de Second Life..." name="About Second Life..." /> </menu> </menu_bar> diff --git a/indra/newview/skins/default/xui/fr/menu_mini_map.xml b/indra/newview/skins/default/xui/fr/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..36107885f4ca47f433576d371b46a2fb2b81392d --- /dev/null +++ b/indra/newview/skins/default/xui/fr/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="Zoom rapproché" name="Zoom Close"/> + <menu_item_call label="Zoom moyen" name="Zoom Medium"/> + <menu_item_call label="Zoom éloigné" name="Zoom Far"/> + <menu_item_call label="Arrêter de suivre" name="Stop Tracking"/> + <menu_item_call label="Profil..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/fr/menu_viewer.xml b/indra/newview/skins/default/xui/fr/menu_viewer.xml index f0a4541e6b0a8464d3b264fc33c62cd7c16bc89f..959cc5764c696392ecb0aad8b54ede4b06ef8cae 100644 --- a/indra/newview/skins/default/xui/fr/menu_viewer.xml +++ b/indra/newview/skins/default/xui/fr/menu_viewer.xml @@ -8,7 +8,7 @@ <menu_item_call label="Animation ([COST] L$)..." name="Upload Animation"/> <menu_item_call label="Lot ([COST] L$ par fichier)..." name="Bulk Upload"/> <menu_item_separator label="-----------" name="separator"/> - <menu_item_call label="Définir les permissions par défaut..." name="perm prefs"/> + <menu_item_call label="Définir les droits par défaut..." name="perm prefs"/> </menu> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Fermer la fenêtre" name="Close Window"/> @@ -83,6 +83,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_check label="Statistiques" name="Statistics Bar"/> <menu_item_check label="Limites des parcelles" name="Property Lines"/> + <menu_item_check label="Barrières d'interdiction d'accès" name="Banlines"/> <menu_item_check label="Propriétaires fonciers" name="Land Owners"/> <menu_item_separator label="-----------" name="separator4"/> <menu label="Infobulles" name="Hover Tips"> @@ -170,7 +171,6 @@ <menu_item_call label="Zoom sur la sélection" name="Zoom to Selection"/> <menu_item_call label="Acheter l'objet" name="Menu Object Take"/> <menu_item_call label="Prendre une copie" name="Take Copy"/> - <menu_item_call label="Remplacer l'objet dans mon inventaire" name="Save Object Back to My Inventory"/> <menu_item_call label="Remplacer l'objet dans le contenu de l'objet" name="Save Object Back to Object Contents"/> <menu_item_separator label="-----------" name="separator6"/> <menu_item_call label="Afficher la fenêtre d'alertes/erreurs de script" name="Show Script Warning/Error Window"/> @@ -183,12 +183,14 @@ <menu_item_call label="Désactiver les scripts dans la sélection" name="Set Scripts to Not Running in Selection"/> </menu> <menu label="Aide" name="Help"> - <menu_item_call label="Aide Second Life" name="Second Life Help"/> + <menu_item_call label="Aide de Second Life" name="Second Life Help"/> <menu_item_call label="Didacticiel" name="Tutorial"/> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Blog officiel..." name="Official Linden Blog..."/> <menu_item_separator label="-----------" name="separator2"/> - <menu_item_call label="Aide sur le LSL..." name="Scripting Portal..."/> + <menu_item_call label="Aide sur le LSL..." name="Scripting Portal..."> + <on_click name="ScriptingPortal_url" userdata="WebLaunchLSLWiki,http://wiki.secondlife.com/wiki/LSL_Portal/fr" /> + </menu_item_call> <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="Signaler une infraction..." name="Report Abuse..."/> <menu_item_call label="Collisions, coups et bousculades…" name="Bumps, Pushes &amp; Hits..."/> @@ -196,9 +198,13 @@ <menu_item_separator label="-----------" name="separator7"/> <menu label="Signaler des bugs" name="Bug Reporting"> <menu_item_call label="Ouvrir un JIRA..." name="Public Issue Tracker..."/> - <menu_item_call label="Comment utiliser JIRA ?" name="Publc Issue Tracker Help..."/> + <menu_item_call label="Comment utiliser JIRA ?" name="Publc Issue Tracker Help..."> + <on_click name="PublicIssueTrackerHelp_url" userdata="WebLaunchPublicIssueHelp,http://wiki.secondlife.com/wiki/Issue_tracker/fr" /> + </menu_item_call> <menu_item_separator label="-----------" name="separator7"/> - <menu_item_call label="Comment signaler des bugs ?" name="Bug Reporing 101..."/> + <menu_item_call label="Comment signaler des bugs ?" name="Bug Reporing 101..."> + <on_click name="BugReporting101_url" userdata="WebLaunchBugReport101,http://wiki.secondlife.com/wiki/Bug_Reporting_101/fr"/> + </menu_item_call> <menu_item_call label="Comment signaler un problème de sécurité ?" name="Security Issues..."> <on_click name="SecurityIssues_url" userdata="WebLaunchSecurityIssues,http://wiki.secondlife.com/wiki/Security_issues/fr"/> </menu_item_call> diff --git a/indra/newview/skins/default/xui/fr/notifications.xml b/indra/newview/skins/default/xui/fr/notifications.xml index 26fc708a1047248c779d8484c2a7f379dbd3ec7b..ac8d0cc60508dad315e2c8d1ca066b3736d6f34b 100644 --- a/indra/newview/skins/default/xui/fr/notifications.xml +++ b/indra/newview/skins/default/xui/fr/notifications.xml @@ -1,15 +1,11 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> Ne plus afficher - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> Toujours choisir cette option - </global> - + </global> <template name="okbutton"> <form> <button @@ -74,3634 +70,1881 @@ text="$canceltext"/> </form> </template> + <notification functor="GenericAcknowledge" label="Message d'alerte inconnu" name="MissingAlert"> + Votre version de Second Life ne peut afficher ce message d'erreur. - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -Le erreur '[_NAME]' n'est pas dans le fichier notifications.xml. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -Erreur floater : impossible de trouver les contrôles suivants : +Détails de l'erreur : L'alerte, appelée '[_NAME]' est introuvable dans notifications.xml. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + Erreur floater : impossible de trouver les contrôles suivants : [CONTROLS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -Aucun didacticiel n'est disponible actuellement. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Oui"/> - </notification> - - <notification - - name="WearableSave" - > -Enregistrer les changements dans la partie du corps/les habits actuels ? - <usetemplate - canceltext="Cancel" - name="yesnocancelbuttons" - notext="Ne pas enregistrer" - yestext="Enregistrer"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -Une erreur est survenue lors du chargement du texte pour un script, suite au problème suivant : [REASON]. Veuillez réessayer ultérieurement. - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -Une erreur est survenue lors du chargement du script compilé, suite au problème suivant : [REASON]. Veuillez réessayer ultérieurement. - </notification> - - <notification - - name="WriteAnimationFail" - > -Une erreur est survenue lors de l'écriture des données d'animation. Veuillez réessayer ultérieurement. - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -Un problème est survenu lors du chargement du script compilé, suite au problème suivant : [REASON] - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -Impossible d'afficher les contenus de plus d'un objet à la fois. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + Aucun didacticiel n'est disponible actuellement. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Oui"/> + </notification> + <notification name="BadInstallation"> + Une erreur est survenue lors de la mise à jour de Second Life. Veuillez télécharger la dernière version depuis secondlife.com. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LoginFailedNoNetwork"> + Erreur réseau : impossible d'établir une connexion. +'[DIAGNOSTIC]' +Veuillez vérifier votre connexion. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MessageTemplateNotFound"> + Le modèle de message [PATH] est introuvable. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="WearableSave"> + Enregistrer les changements dans la partie du corps/les habits actuels ? + <usetemplate canceltext="Cancel" name="yesnocancelbuttons" notext="Ne pas enregistrer" yestext="Enregistrer"/> + </notification> + <notification name="CompileQueueSaveText"> + Une erreur est survenue lors du chargement du texte pour un script, suite au problème suivant : [REASON]. Veuillez réessayer ultérieurement. + </notification> + <notification name="CompileQueueSaveBytecode"> + Une erreur est survenue lors du chargement du script compilé, suite au problème suivant : [REASON]. Veuillez réessayer ultérieurement. + </notification> + <notification name="WriteAnimationFail"> + Une erreur est survenue lors de l'écriture des données d'animation. Veuillez réessayer ultérieurement. + </notification> + <notification name="UploadAuctionSnapshotFail"> + Un problème est survenu lors du chargement du script compilé, suite au problème suivant : [REASON] + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + Impossible d'afficher les contenus de plus d'un objet à la fois. Veuillez ne sélectionner qu'un seul objet. - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -Enregistrer tous les changements dans les habits/parties du corps ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Ne pas enregistrer" - yestext="Tout enregistrer"/> - </notification> - - <notification - - name="GrantModifyRights" - > -Lorsque vous accordez des droits d'édition à un autre résident, vous lui permettez de changer, supprimer ou prendre n'importe lequel de vos objets dans le Monde. Réfléchissez bien avant d'accorder ces droits. + </notification> + <notification name="SaveClothingBodyChanges"> + Enregistrer tous les changements dans les habits/parties du corps ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Ne pas enregistrer" yestext="Tout enregistrer"/> + </notification> + <notification name="GrantModifyRights"> + Lorsque vous accordez des droits d'édition à un autre résident, vous lui permettez de changer, supprimer ou prendre n'importe lequel de vos objets dans le Monde. Réfléchissez bien avant d'accorder ces droits. Souhaitez-vous accorder des droits d'édition à [FIRST_NAME] [LAST_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -Lorsque vous accordez des droits d'édition à un autre résident, vous lui permettez de changer n'importe lequel de vos objets dans le Monde. Réfléchissez bien avant d'accorder ces droits. + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + Lorsque vous accordez des droits d'édition à un autre résident, vous lui permettez de changer n'importe lequel de vos objets dans le Monde. Réfléchissez bien avant d'accorder ces droits. Souhaitez-vous accorder des droits d'édition aux résidents selectionnés ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -Souhaitez-vous retirer les droits d'édition à [FIRST_NAME] [LAST_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -Souhaitez-vous retirer les droits d'édition aux résidents selectionnés ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -Impossible de créer le groupe. + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="RevokeModifyRights"> + Souhaitez-vous retirer les droits d'édition à [FIRST_NAME] [LAST_NAME] ? + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + Souhaitez-vous retirer les droits d'édition aux résidents selectionnés ? + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="UnableToCreateGroup"> + Impossible de créer le groupe. [MESSAGE] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Ignorer les modifications" - yestext="Enregistrer les modifications"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -Pour envoyer une notice au groupe, vous devez indiquer un sujet. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -Vous êtes sur le point d'ajouter des membres du groupe dans le rôle de [ROLE_NAME]. + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Ignorer les modifications" yestext="Enregistrer les modifications"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + Pour envoyer une notice au groupe, vous devez indiquer un sujet. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + Vous êtes sur le point d'ajouter des membres du groupe dans le rôle de [ROLE_NAME]. Les membres ne peuvent pas être destitués de ce rôle. Ils doivent donner eux-mêmes leur démission. Êtes-vous certain de vouloir continuer ? - <usetemplate - ignoretext="Lorsque vous donnez à des membres du groupe le rôle de « propriétaire »" - name="okcancelignore" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -Vous êtes sur le point d'ajouter le pouvoir « [ACTION_NAME] » au rôle « [ROLE_NAME] ». + <usetemplate ignoretext="Lorsque vous donnez à des membres du groupe le rôle de « propriétaire »" name="okcancelignore" notext="Non" yestext="Oui"/> + </notification> + <notification name="AssignDangerousActionWarning"> + Vous êtes sur le point d'ajouter le pouvoir « [ACTION_NAME] » au rôle « [ROLE_NAME] ». *Avertissement* Tout membre disposant de ce pouvoir peut s'affecter lui-même, ainsi que tout autre membre, à des rôles disposant de pouvoirs plus importants, et accéder potentiellement à des pouvoirs proches de ceux d'un propriétaire. Assurez-vous de bien comprendre ce que vous faites avant d'attribuer ce pouvoir. Ajouter ce pouvoir à « [ROLE_NAME] » ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -Vous êtes sur le point d'ajouter le pouvoir « [ACTION_NAME] » au rôle « [ROLE_NAME] ». + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + Vous êtes sur le point d'ajouter le pouvoir « [ACTION_NAME] » au rôle « [ROLE_NAME] ». *Avertissement* Tout membre dans un rôle avec ce pouvoir peut s'attribuer à lui-même, ainsi qu'à tout autre membre, Tous les pouvoirs, et accéder potentiellement à des pouvoirs proches de ceux d'un propriétaire. Ajouter ce pouvoir à « [ROLE_NAME] » ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -Sélectionner l'option Afficher dans la recherche + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="ClickPublishHelpLand"> + Sélectionner l'option Afficher dans la recherche En cochant cette case, votre parcelle apparaîtra : - dans les résultats de recherche ; - dans les objets publics ; - dans la recherche web. - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -Cette parcelle ne peut pas apparaître dans la recherche car elle est dans une région où cela n'est pas autorisé. - </notification> - - <notification - - name="ClickPublishHelpAvatar" - > -Si vous sélectionnez Afficher dans la recherche : + </notification> + <notification name="ClickSoundHelpLand"> + La musique et le média ne peuvent être utilisés que sur cette parcelle. Les options Son et Voix peuvent être limités à la parcelle ou seront entendus par les résidents en dehors de la parcelle, en fonction de leur catégorie d'accès. Souhaitez-vous en savoir plus sur le paramétrage de ces options ? + <url name="url"> + http://wiki.secondlife.com/wiki/M%C3%A9dias_sur_la_parcelle_(KB) + </url> + <usetemplate name="okcancelbuttons" notext="Fermer" yestext="Consulter les pages d'aide"/> + </notification> + <notification name="ClickSearchHelpAll"> + Les résultats de recherche sont organisés en fonction de l'onglet dans lequel vous vous trouvez, votre catégorie d'accès, la catégorie choisie, ainsi que d'autres facteurs. Pour plus de détails, veuillez consulter les pages d'aide. + <url name="url"> + http://wiki.secondlife.com/wiki/FAQ_sur_la_recherche_(KB) + </url> + <usetemplate name="okcancelbuttons" notext="Fermer" yestext="Consulter les pages d'aide"/> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + Cette parcelle ne peut pas apparaître dans la recherche car elle est dans une région où cela n'est pas autorisé. + </notification> + <notification name="ClickPublishHelpAvatar"> + Si vous sélectionnez Afficher dans la recherche : - votre profil apparaîtra dans les résultats de recherche ; - un lien vers votre profil apparaîtra dans les pages de groupe publiques. - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -Vous pouvez proposer à un autre résident de devenir votre partenaire ou dissoudre un partenariat existant à partir du site de [SECOND_LIFE]. + </notification> + <notification name="ClickPartnerHelpAvatar"> + Vous pouvez proposer à un autre résident de devenir votre partenaire ou dissoudre un partenariat existant à partir du site de [SECOND_LIFE]. Aller sur le site de Second Life pour avoir plus d'informations sur les partenariats ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Aller sur cette page"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -Si ce résident a défini une URL de profil web, vous pouvez : + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Aller sur cette page"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + Il est possible que vos droits par défaut ne fonctionnent pas dans les anciennes régions. + </notification> + <notification name="ClickWebProfileHelpAvatar"> + Si ce résident a défini une URL de profil web, vous pouvez : * Cliquer sur Charger pour afficher la page dans cet onglet ; * Cliquer sur Charger > Dans un navigateur externe, pour afficher la page dans votre navigateur par défaut ; * Cliquer sur Charger > URL du domicile, pour retourner au profil web du résident. Lorsque vous êtes dans votre propre profil, vous pouvez définir n'importe quelle URL comme profil web. Pour cela, saisissez l'URL et cliquez sur OK. Les autres résidents peuvent visiter l'URL que vous avez définie en regardant votre profil. - </notification> - - <notification - - name="JoinGroupCanAfford" - > -Rejoindre ce groupe coûte [COST] L$. + </notification> + <notification name="JoinGroupCanAfford"> + Rejoindre ce groupe coûte [COST] L$. Voulez-vous continuer ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Rejoindre"/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -Rejoindre ce groupe coûte [COST] L$. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Rejoindre"/> + </notification> + <notification name="JoinGroupCannotAfford"> + Rejoindre ce groupe coûte [COST] L$. Vous n'avez pas suffisamment de L$ pour rejoindre ce groupe. - </notification> - - <notification - - name="LandBuyPass" - > -Pour [COST] L$ vous pouvez pénétrer sur ce terrain ([PARCEL_NAME]) et y rester [TIME] heures. Acheter un pass ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -Pour rendre l'annonce disponible à tous, le prix de vente doit être supérieur à 0 L$. + </notification> + <notification name="LandBuyPass"> + Pour [COST] L$ vous pouvez pénétrer sur ce terrain ([PARCEL_NAME]) et y rester [TIME] heures. Acheter un pass ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + Pour rendre l'annonce disponible à tous, le prix de vente doit être supérieur à 0 L$. Si le prix de vente est de 0 L$, vous devez choisir un acheteur spécifique. - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -Le terrain sélectionné, de [LAND_SIZE] m², est mis en vente. + </notification> + <notification name="ConfirmLandSaleChange"> + Le terrain sélectionné, de [LAND_SIZE] m², est mis en vente. Votre prix de vente sera de [SALE_PRICE] L$ et la vente sera disponible à [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -Attention : en cliquant sur Vendre à n'importe qui, vous rendez votre terrain disponible à toute la communauté de Second Life, même aux personnes qui ne sont pas dans cette région. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + Attention : en cliquant sur Vendre à n'importe qui, vous rendez votre terrain disponible à toute la communauté de Second Life, même aux personnes qui ne sont pas dans cette région. Le terrain sélectionné, de [LAND_SIZE] m², est mis en vente. Votre prix de vente sera de [SALE_PRICE] L$ et la vente sera disponible à [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -Êtes-vous certain de vouloir renvoyer tous les objets partagés par le groupe [NAME] sur cette parcelle dans l'inventaire du propriétaire précédent ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + Êtes-vous certain de vouloir renvoyer tous les objets partagés par le groupe [NAME] sur cette parcelle dans l'inventaire du propriétaire précédent ? *Avertissement* Tous les objets non transférables cédés au groupe seront supprimés ! Objets : [N] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedByUser" - > -Etes-vous certain de vouloir renvoyer tous les objets que [NAME] possède sur cette parcelle dans son inventaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + Etes-vous certain de vouloir renvoyer tous les objets que [NAME] possède sur cette parcelle dans son inventaire ? Objets : [N] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedBySelf" - > -Êtes-vous certain de vouloir renvoyer tous les objets que vous possédez sur cette parcelle dans votre inventaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + Êtes-vous certain de vouloir renvoyer tous les objets que vous possédez sur cette parcelle dans votre inventaire ? Objets : [N] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -Êtes-vous certain de vouloir renvoyer tous les objets que vous ne possédez pas sur cette parcelle dans l'inventaire de leur propriétaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + Êtes-vous certain de vouloir renvoyer tous les objets que vous ne possédez pas sur cette parcelle dans l'inventaire de leur propriétaire ? Les objets transférables cédés à un groupe seront renvoyés aux propriétaires précédents. *Avertissement* Tous les objets non transférables cédés au groupe seront supprimés ! Objets : [N] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByUser" - > -Êtes-vous certain de vouloir renvoyer tous les objets que [NAME] ne possède pas sur cette parcelle dans l'inventaire de leur propriétaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + Êtes-vous certain de vouloir renvoyer tous les objets que [NAME] ne possède pas sur cette parcelle dans l'inventaire de leur propriétaire ? Les objets transférables cédés à un groupe seront renvoyés aux propriétaires précédents. *Avertissement* Tous les objets non transférables cédés au groupe seront supprimés ! Objets : [N] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ReturnAllTopObjects" - > -Êtes-vous certain de vouloir renvoyer tous les objets de la liste dans l'inventaire de leur propriétaire ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="DisableAllTopObjects" - > -Êtes-vous certain de vouloir désactiver tous les objets dans cette région ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -Renvoyer les objets de cette parcelle qui ne sont pas partagés avec le groupe [NAME] à leur propriétaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ReturnAllTopObjects"> + Êtes-vous certain de vouloir renvoyer tous les objets de la liste dans l'inventaire de leur propriétaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="DisableAllTopObjects"> + Êtes-vous certain de vouloir désactiver tous les objets dans cette région ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + Renvoyer les objets de cette parcelle qui ne sont pas partagés avec le groupe [NAME] à leur propriétaire ? Objets : [N] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="UnableToDisableOutsideScripts" - > -Impossible de désactiver les scripts. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + Impossible de désactiver les scripts. Les dégâts sont autorisés dans toute la région. Pour que les armes fonctionnent, les scripts doivent être autorisés. - </notification> - - <notification - - name="MustBeInParcel" - > -Pour définir le point d'atterrissage, vous devez vous trouver à l'intérieur de la parcelle. - </notification> - - <notification - - name="PromptRecipientEmail" - > -Veuillez saisir une adresse e-mail valide pour le(s) destinataire(s). - </notification> - - <notification - - name="PromptSelfEmail" - > -Veuillez saisir votre adresse e-mail. - </notification> - - <notification - - name="PromptMissingSubjMsg" - > -Envoyer la photo avec le sujet ou le message par défaut ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ErrorProcessingSnapshot" - > -Erreur dans le traitement des données de la photo - </notification> - - <notification - - name="ErrorEncodingSnapshot" - > -Erreur d'encodage de la photo. - </notification> - - <notification - - name="ErrorUploadingPostcard" - > -Une erreur est survenue lors du chargement du script compilé, suite au problème suivant : [REASON] - </notification> - - <notification - - name="ErrorUploadingReportScreenshot" - > -Une erreur est survenue lors du chargement de la capture d'écran destinée au rapport, suite au problème suivant : [REASON] - </notification> - - <notification - - name="MustAgreeToLogIn" - > -Pour vous connecter à [SECOND_LIFE], vous devez accepter les Conditions d'utilisation. - </notification> - - <notification - - name="CouldNotPutOnOutfit" - > -Impossible de mettre cet ensemble. + </notification> + <notification name="MustBeInParcel"> + Pour définir le point d'atterrissage, vous devez vous trouver à l'intérieur de la parcelle. + </notification> + <notification name="PromptRecipientEmail"> + Veuillez saisir une adresse e-mail valide pour le(s) destinataire(s). + </notification> + <notification name="PromptSelfEmail"> + Veuillez saisir votre adresse e-mail. + </notification> + <notification name="PromptMissingSubjMsg"> + Envoyer la photo avec le sujet ou le message par défaut ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + Erreur dans le traitement des données de la photo + </notification> + <notification name="ErrorEncodingSnapshot"> + Erreur d'encodage de la photo. + </notification> + <notification name="ErrorUploadingPostcard"> + Une erreur est survenue lors du chargement du script compilé, suite au problème suivant : [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + Une erreur est survenue lors du chargement de la capture d'écran destinée au rapport, suite au problème suivant : [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + Pour vous connecter à [SECOND_LIFE], vous devez accepter les Conditions d'utilisation. + </notification> + <notification name="CouldNotPutOnOutfit"> + Impossible de mettre cet ensemble. Ce dossier ne contient pas d'habits, de parties du corps ni de pièces jointes. - </notification> - - <notification - - name="CannotWearTrash" - > -Vous ne pouvez pas porter d'habits ni de parties du corps se trouvant dans la corbeille. - </notification> - - <notification - - name="CannotWearInfoNotComplete" - > -Vous ne pouvez pas porter cet article car il n'a pas encore été chargé. Veuillez réessayer dans une minute. - </notification> - - <notification - - name="MustHaveAccountToLogIn" - > -Oups! Vous avez oublié de fournir certaines informations. + </notification> + <notification name="CannotWearTrash"> + Vous ne pouvez pas porter d'habits ni de parties du corps se trouvant dans la corbeille. + </notification> + <notification name="CannotWearInfoNotComplete"> + Vous ne pouvez pas porter cet article car il n'a pas encore été chargé. Veuillez réessayer dans une minute. + </notification> + <notification name="MustHaveAccountToLogIn"> + Oups! Vous avez oublié de fournir certaines informations. Vous devez saisir le nom et le prénom de votre avatar. Pour entrer dans [SECOND_LIFE], vous devez avoir un compte. Voulez-vous en créer un maintenant ? - <usetemplate - name="okcancelbuttons" - notext="Réessayer" - yestext="Créer un compte"/> - </notification> - - <notification - - name="AddClassified" - > -Les petites annonces sont publiées à l'onglet Petites annonces de la section Recherche pendant une semaine. + <usetemplate name="okcancelbuttons" notext="Réessayer" yestext="Créer un compte"/> + </notification> + <notification name="AddClassified"> + Les petites annonces sont publiées à l'onglet Petites annonces de la section Recherche pendant une semaine. Rédigez votre annonce, puis cliquez sur Publier pour l'ajouter à la liste des annonces. Au moment de cliquer sur Publier, vous serez invité à payer des frais. Plus vous payez cher, plus votre annonce est visible dans la liste ainsi que dans les résultats de recherche de mots-clés. - <usetemplate - ignoretext="Lors de l'ajout d'une nouvelle petite annonce" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="DeleteClassified" - > -Supprimer l'annonce [NAME] ? + <usetemplate ignoretext="Lors de l'ajout d'une nouvelle petite annonce" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="DeleteClassified"> + Supprimer l'annonce [NAME] ? Une fois payés, les frais ne sont pas remboursables. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ClassifiedSave" - > -Enregistrer les changements dans l'annonce [NAME] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Ne pas enregistrer" - yestext="Enregistrer"/> - </notification> - - <notification - - name="DeleteAvatarPick" - > -Supprimer le favori [PICK] ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="PromptGoToEventsPage" - > -Aller à la page web de [SECOND_LIFE] réservée aux événements ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="SelectProposalToView" - > -Veuillez sélectionner une proposition. - </notification> - - <notification - - name="SelectHistoryItemToView" - > -Veuillez sélectionner un historique. - </notification> - - <notification - - name="ResetShowNextTimeDialogs" - > -Souhaitez-vous réactiver tous les pop-ups que vous aviez désactivés ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -Voulez-vous désactiver tous les pop-ups qui peuvent être évités ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="CacheWillClear" - > -Le cache sera vidé après le redémarrage de [SECOND_LIFE]. - </notification> - - <notification - - name="CacheWillBeMoved" - > -Le cache sera déplacé après le redémarrage de [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ClassifiedSave"> + Enregistrer les changements dans l'annonce [NAME] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Ne pas enregistrer" yestext="Enregistrer"/> + </notification> + <notification name="DeleteAvatarPick"> + Supprimer le favori [PICK] ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="PromptGoToEventsPage"> + Aller à la page web de [SECOND_LIFE] réservée aux événements ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="SelectProposalToView"> + Veuillez sélectionner une proposition. + </notification> + <notification name="SelectHistoryItemToView"> + Veuillez sélectionner un historique. + </notification> + <notification name="ResetShowNextTimeDialogs"> + Souhaitez-vous réactiver tous les pop-ups que vous aviez désactivés ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + Voulez-vous désactiver tous les pop-ups qui peuvent être évités ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + Le cache sera vidé après le redémarrage de [SECOND_LIFE]. + </notification> + <notification name="CacheWillBeMoved"> + Le cache sera déplacé après le redémarrage de [SECOND_LIFE]. Remarque : cela videra le cache. - </notification> - - <notification - - name="ChangeConnectionPort" - > -Les paramètres du port prendront effet après le redémarrage de [SECOND_LIFE]. - </notification> - - <notification - - name="ChangeSkin" - > -Le nouveau thème apparaîtra après le redémarrage de [SECOND_LIFE]. - </notification> - - <notification - - name="GoToAuctionPage" - > -Aller à la page web de [SECOND_LIFE] pour voir le détail des enchères ou enchérir ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="SaveChanges" - > -Enregistrer les changements ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Ne pas enregistrer" - yestext="Enregistrer"/> - </notification> - - <notification - - name="GestureSaveFailedTooManySteps" - > -L'enregistrement du geste a échoué. + </notification> + <notification name="ChangeConnectionPort"> + Les paramètres du port prendront effet après le redémarrage de [SECOND_LIFE]. + </notification> + <notification name="ChangeSkin"> + Le nouveau thème apparaîtra après le redémarrage de [SECOND_LIFE]. + </notification> + <notification name="GoToAuctionPage"> + Aller à la page web de [SECOND_LIFE] pour voir le détail des enchères ou enchérir ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="SaveChanges"> + Enregistrer les changements ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Ne pas enregistrer" yestext="Enregistrer"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + L'enregistrement du geste a échoué. Il y a trop d'étapes dans ce geste. Essayez d'en supprimer quelques-unes. - </notification> - - <notification - - name="GestureSaveFailedTryAgain" - > -L'enregistrement du geste a échoué. Veuillez réessayer dans une minute. - </notification> - - <notification - - name="GestureSaveFailedObjectNotFound" - > -Le geste n'a pas pu être enregistré car l'objet ou l'inventaire de l'objet associé n'a pas été trouvé. + </notification> + <notification name="GestureSaveFailedTryAgain"> + L'enregistrement du geste a échoué. Veuillez réessayer dans une minute. + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + Le geste n'a pas pu être enregistré car l'objet ou l'inventaire de l'objet associé n'a pas été trouvé. L'objet est peut-être inaccessible ou a peut-être été supprimé. - </notification> - - <notification - - name="GestureSaveFailedReason" - > -Une erreur est survenue lors de l'enregistrement du geste, suite au problème suivant : [REASON]. Essayez d'enregistrer votre geste ultérieurement. - </notification> - - <notification - - name="SaveNotecardFailObjectNotFound" - > -La note n'a pas pu être enregistrée car l'objet ou l'inventaire de l'objet associé n'a pas été trouvé. + </notification> + <notification name="GestureSaveFailedReason"> + Une erreur est survenue lors de l'enregistrement du geste, suite au problème suivant : [REASON]. Essayez d'enregistrer votre geste ultérieurement. + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + La note n'a pas pu être enregistrée car l'objet ou l'inventaire de l'objet associé n'a pas été trouvé. L'objet est peut-être inaccessible ou a peut-être été supprimé. - </notification> - - <notification - - name="SaveNotecardFailReason" - > -Une erreur est survenue lors de l'enregistrement de la note, suite au problème suivant : [REASON]. Essayez d'enregistrer votre note ultérieurement. - </notification> - - <notification - - name="ScriptCannotUndo" - > -Impossible d'annuler tous les changements dans votre version du script. + </notification> + <notification name="SaveNotecardFailReason"> + Une erreur est survenue lors de l'enregistrement de la note, suite au problème suivant : [REASON]. Essayez d'enregistrer votre note ultérieurement. + </notification> + <notification name="ScriptCannotUndo"> + Impossible d'annuler tous les changements dans votre version du script. Souhaitez-vous charger la dernière version enregistrée sur le serveur ? (**Attention** Cette opération est irréversible.) - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="SaveScriptFailReason" - > -Une erreur est survenue lors de l'enregistrement du script, suite au problème suivant : [REASON]. Essayez d'enregistrer votre script ultérieurement. - </notification> - - <notification - - name="SaveScriptFailObjectNotFound" - > -Impossible d'enregistrer le script car l'objet qui le contient est introuvable. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="SaveScriptFailReason"> + Une erreur est survenue lors de l'enregistrement du script, suite au problème suivant : [REASON]. Essayez d'enregistrer votre script ultérieurement. + </notification> + <notification name="SaveScriptFailObjectNotFound"> + Impossible d'enregistrer le script car l'objet qui le contient est introuvable. L'objet est peut-être inaccessible ou a peut-être été supprimé. - </notification> - - <notification - - name="SaveBytecodeFailReason" - > -Une erreur est survenue lors de l'enregistrement du script compilé, suite au problème suivant : [REASON]. Essayez d'enregistrer votre script ultérieurement. - </notification> - - <notification - - name="CouldNotStartStopScript" - > -Impossible de lancer ou d'arrêter le script car l'objet qui le contient est introuvable. + </notification> + <notification name="SaveBytecodeFailReason"> + Une erreur est survenue lors de l'enregistrement du script compilé, suite au problème suivant : [REASON]. Essayez d'enregistrer votre script ultérieurement. + </notification> + <notification name="CouldNotStartStopScript"> + Impossible de lancer ou d'arrêter le script car l'objet qui le contient est introuvable. L'objet est peut-être inaccessible ou a peut-être été supprimé. - </notification> - - <notification - - name="CannotDownloadFile" - > -Impossible de télécharger le fichier - </notification> - - <notification - - name="CannotWriteFile" - > -Impossible d'écrire le fichier [[FILE]] - </notification> - - <notification - - name="UnsupportedHardware" - > -Avertissement : vous n'avez pas la configuration système requise pour utiliser Second Life. Si vous continuez à utiliser Second Life, votre performance risque d'être moindre. Malheureusement, nous n'offrons aucune assistance pour les problèmes de configuration système. + </notification> + <notification name="CannotDownloadFile"> + Impossible de télécharger le fichier + </notification> + <notification name="CannotWriteFile"> + Impossible d'écrire le fichier [[FILE]] + </notification> + <notification name="UnsupportedHardware"> + Avertissement : vous n'avez pas la configuration système requise pour utiliser Second Life. Si vous continuez à utiliser Second Life, votre performance risque d'être moindre. Malheureusement, nous n'offrons aucune assistance pour les problèmes de configuration système. MINSPECS Voulez-vous visiter [_URL] pour plus d'informations ? - <url option="0" name="url"> - + <url name="url" option="0"> http://secondlife.com/support/sysreqs.php?lang=fr - </url> - <usetemplate - ignoretext="Lors de la détection de matériel non pris en charge" - name="okcancelignore" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="UnknownGPU" - > -Votre système contient une carte graphique que nous ne connaissons pas actuellement. + </url> + <usetemplate ignoretext="Lors de la détection de matériel non pris en charge" name="okcancelignore" notext="Non" yestext="Oui"/> + </notification> + <notification name="UnknownGPU"> + Votre système contient une carte graphique que nous ne connaissons pas actuellement. Cela est souvent le cas avec le nouveau materiel qui n'a pas encore été testé. Vous pourrez probablement utiliser Second Life sans problème, mais vous devrez peut-être ajuster les paramètres de vos graphiques. (Menu Édition > Préférences > Graphiques). - <form name="form"> - <ignore name="ignore" - text="Lors de la détection d'une carte graphique inconnue"/> - </form> - </notification> - - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] a planté lors de l'initialisation des drivers graphiques. + <form name="form"> + <ignore name="ignore" text="Lors de la détection d'une carte graphique inconnue"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] a planté lors de l'initialisation des drivers graphiques. La qualité des graphiques sera paramétrée sur Faible pour éviter certaines erreurs de driver fréquentes. Certaines fonctionnalités graphiques seront donc désactivées. Nous vous recommandons de mettre à jour les drivers de votre carte graphique. La qualité des graphiques peut être augmentée à la section Préférences > Graphiques - </notification> - - <notification - - name="RegionNoTerraforming" - > -Le terraformage est interdit dans la région [REGION]. - </notification> - - <notification - - name="CannotCopyWarning" - > -Vous n'êtes pas autorisé à copier cet objet et il disparaîtra de votre inventaire si vous le donnez. Souhaitez-vous vraiment offrir cet objet ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="CannotGiveItem" - > -Impossible de donner l'objet de l'inventaire. - </notification> - - <notification - - name="TransactionCancelled" - > -Transaction annulée. - </notification> - - <notification - - name="TooManyItems" - > -Impossible de donner plus de 42 objets au cours d'un seul transfert d'inventaire. - </notification> - - <notification - - name="NoItems" - > -Vous n'êtes pas autorisé à transférer les objets sélectionnés. - </notification> - - <notification - - name="CannotCopyCountItems" - > -Vous n'êtes pas autorisé à copier [COUNT] des objets sélectionnés. Ces objets disparaîtront de votre inventaire. + </notification> + <notification name="RegionNoTerraforming"> + Le terraformage est interdit dans la région [REGION]. + </notification> + <notification name="CannotCopyWarning"> + Vous n'êtes pas autorisé à copier cet objet et il disparaîtra de votre inventaire si vous le donnez. Souhaitez-vous vraiment offrir cet objet ? + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="CannotGiveItem"> + Impossible de donner l'objet de l'inventaire. + </notification> + <notification name="TransactionCancelled"> + Transaction annulée. + </notification> + <notification name="TooManyItems"> + Impossible de donner plus de 42 objets au cours d'un seul transfert d'inventaire. + </notification> + <notification name="NoItems"> + Vous n'êtes pas autorisé à transférer les objets sélectionnés. + </notification> + <notification name="CannotCopyCountItems"> + Vous n'êtes pas autorisé à copier [COUNT] des objets sélectionnés. Ces objets disparaîtront de votre inventaire. Souhaitez-vous vraiment donner ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="CannotGiveCategory" - > -Vous n'êtes pas autorisé à transférer le dossier sélectionné. - </notification> - - <notification - - name="FreezeAvatar" - > -Geler cet avatar ? + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="CannotGiveCategory"> + Vous n'êtes pas autorisé à transférer le dossier sélectionné. + </notification> + <notification name="FreezeAvatar"> + Geler cet avatar ? Il ou elle ne pourra temporairement plus bouger, chatter, ou interagir dans le Monde. - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Dégeler" - yestext="Geler"/> - </notification> - - <notification - - name="FreezeAvatarFullname" - > -Geler [AVATAR_NAME] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Dégeler" yestext="Geler"/> + </notification> + <notification name="FreezeAvatarFullname"> + Geler [AVATAR_NAME] ? Il ou elle ne pourra temporairement plus bouger, chatter, ou interagir dans le Monde. - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Dégeler" - yestext="Geler"/> - </notification> - - <notification - - name="EjectAvatarFullname" - > -Expulser [AVATAR_NAME] de votre terrain ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Expulser et bannir" - yestext="Expulser"/> - </notification> - - <notification - - name="EjectAvatarNoBan" - > -Expulser cet avatar de votre terrain ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Expulser"/> - </notification> - - <notification - - name="EjectAvatarFullnameNoBan" - > -Expulser [AVATAR_NAME] de votre terrain ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Expulser"/> - </notification> - - <notification - - name="AcquireErrorTooManyObjects" - > -Erreur d'acquisition : trop d'objets sélectionnés. - </notification> - - <notification - - name="AcquireErrorObjectSpan" - > -Erreur d'acquisition : les objets sont répartis dans plus d'une région. + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Dégeler" yestext="Geler"/> + </notification> + <notification name="EjectAvatarFullname"> + Expulser [AVATAR_NAME] de votre terrain ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Expulser et bannir" yestext="Expulser"/> + </notification> + <notification name="EjectAvatarNoBan"> + Expulser cet avatar de votre terrain ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Expulser"/> + </notification> + <notification name="EjectAvatarFullnameNoBan"> + Expulser [AVATAR_NAME] de votre terrain ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Expulser"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + Erreur d'acquisition : trop d'objets sélectionnés. + </notification> + <notification name="AcquireErrorObjectSpan"> + Erreur d'acquisition : les objets sont répartis dans plus d'une région. Veuillez mettre tous les objets que vous souhaitez acquérir dans la même région. - </notification> - - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] Aller sur [URL] pour obtenir des informations sur l'achat de devises ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="UnableToLinkObjects" - > -Impossible de lier ces [COUNT] objets. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="UnableToLinkObjects"> + Impossible de lier ces [COUNT] objets. Vous pouvez lier un maximum de [MAX] objets. - </notification> - - <notification - - name="CannotLinkIncompleteSet" - > -Vous ne pouvez lier que des ensembles d'objets complets et vous devez choisir un minimum de deux objets. - </notification> - - <notification - - name="CannotLinkModify" - > -Impossible de lier car vous n'avez pas la permission de modifier tous les objets. + </notification> + <notification name="CannotLinkIncompleteSet"> + Vous ne pouvez lier que des ensembles d'objets complets et vous devez choisir un minimum de deux objets. + </notification> + <notification name="CannotLinkModify"> + Impossible de lier car vous n'avez pas le droit de modifier tous les objets. Assurez-vous que vous êtes le propriétaire de tous les objets et qu'aucun d'eux n'est verrouillé. - </notification> - - <notification - - name="CannotLinkDifferentOwners" - > -Impossible de lier car les objets n'ont pas tous le même propriétaire. + </notification> + <notification name="CannotLinkDifferentOwners"> + Impossible de lier car les objets n'ont pas tous le même propriétaire. Assurez-vous que vous êtes le propriétaire de tous les objets sélectionnés. - </notification> - - <notification - - name="NoFileExtension" - > -Pas d'extension pour le fichier suivant : '[FILE]' + </notification> + <notification name="NoFileExtension"> + Pas d'extension pour le fichier suivant : '[FILE]' Assurez-vous que le fichier a l'extension correcte. - </notification> - - <notification - - name="InvalidFileExtension" - > -Extension de fichier [EXTENSION] invalide + </notification> + <notification name="InvalidFileExtension"> + Extension de fichier [EXTENSION] invalide [VALIDS] attendu - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -Impossible de lire le fichier son chargé : + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + Impossible de lire le fichier son chargé : [FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -Il semble que le fichier ne soit pas un fichier RIFF WAVE : + </notification> + <notification name="SoundFileNotRIFF"> + Il semble que le fichier ne soit pas un fichier RIFF WAVE : [FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -Il semble que le fichier ne soit pas un fichier audio PCM WAVE : + </notification> + <notification name="SoundFileNotPCM"> + Il semble que le fichier ne soit pas un fichier audio PCM WAVE : [FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -Le fichier contient un nombre de canaux invalide (doit être mono ou stéréo) : + </notification> + <notification name="SoundFileInvalidChannelCount"> + Le fichier contient un nombre de canaux invalide (doit être mono ou stéréo) : [FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -Le fichier ne semble pas être pris en charge (doit être 44,1 k) : + </notification> + <notification name="SoundFileInvalidSampleRate"> + Le fichier ne semble pas être pris en charge (doit être 44,1 k) : [FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -Le fichier ne semble pas être pris en charge (doit faire 8 ou 16 bit) : + </notification> + <notification name="SoundFileInvalidWordSize"> + Le fichier ne semble pas être pris en charge (doit faire 8 ou 16 bit) : [FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -Impossible de trouver les données dans l'en-tête WAV : + </notification> + <notification name="SoundFileInvalidHeader"> + Impossible de trouver les données dans l'en-tête WAV : [FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -Le fichier audio est trop long (10 secondes maximum) : + </notification> + <notification name="SoundFileInvalidTooLong"> + Le fichier audio est trop long (10 secondes maximum) : [FILE] - </notification> - - <notification - - name="ProblemWithFile" - > -Problème avec le fichier [FILE] : + </notification> + <notification name="ProblemWithFile"> + Problème avec le fichier [FILE] : [ERROR] - </notification> - - <notification - - name="CannotOpenTemporarySoundFile" - > -Impossible d'ouvrir le fichier son compressé temporaire : [FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -Échec d'encodage Vorbis inconnu sur : [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -Fichier ressource corrompu : [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -Version de fichier ressource Linden inconnu : [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -Impossible de créer le fichier de sortie : [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -Actuellement, nous ne prenons pas en charge le chargement de lots de fichiers d'animation. - </notification> - - <notification - - name="CannotUploadReason" - > -Impossible de charger [FILE] suite au problème suivant : [REASON] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + Impossible d'ouvrir le fichier son compressé temporaire : [FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + Échec d'encodage Vorbis inconnu sur : [FILE] + </notification> + <notification name="CannotEncodeFile"> + Impossible d'encoder le fichier : [FILE] + </notification> + <notification name="CorruptResourceFile"> + Fichier ressource corrompu : [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + Version de fichier ressource Linden inconnu : [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + Impossible de créer le fichier de sortie : [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + Actuellement, nous ne prenons pas en charge le chargement de lots de fichiers d'animation. + </notification> + <notification name="CannotUploadReason"> + Impossible de charger [FILE] suite au problème suivant : [REASON] Veuillez réessayer ultérieurement. - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -Vous ne pouvez pas créer de repère ici car le propriétaire du terrain ne l'autorise pas. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -Impossible d'effectuer les recompilations. + </notification> + <notification name="CannotCreateLandmarkNotOwner"> + Vous ne pouvez pas créer de repère ici car le propriétaire du terrain ne l'autorise pas. + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + Impossible d'effectuer les recompilations. Sélectionnez un objet avec un script. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -Impossible d'effectuer les recompilations. + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + Impossible d'effectuer les recompilations. Sélectionnez des objets qui ont des scripts et que vous pouvez modifier. - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -Impossible d'effectuer la réinitialisation. + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + Impossible d'effectuer la réinitialisation. Veuillez sélectionner des objets avec des scripts. - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -Impossible d'effectuer la réinitialisation. + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + Impossible d'effectuer la réinitialisation. Sélectionnez des objets qui ont des scripts et que vous pouvez modifier. - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -Impossible de définir les scripts sur « exécution ». + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + Impossible de définir les scripts sur « exécution ». Veuillez sélectionner des objets avec des scripts. - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -Impossible de définir les scripts sur « non-exécution ». + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + Impossible de définir les scripts sur « non-exécution ». Veuillez sélectionner des objets avec des scripts. - </notification> - - <notification - - name="NoFrontmostFloater" - > -Aucun floater frontmost à sauvegarder. - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -Votre requête a été modifiée et les mots trops courts ont été supprimés. + </notification> + <notification name="NoFrontmostFloater"> + Aucun floater frontmost à sauvegarder. + </notification> + <notification name="SeachFilteredOnShortWords"> + Votre requête a été modifiée et les mots trops courts ont été supprimés. Recherche effectuée : [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -Vos termes de recherche étaient trop courts et aucune recherche n'a été effectuée. - </notification> - - <notification - - name="CouldNotTeleportReason" - > -Impossible de téléporter. + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + Vos termes de recherche étaient trop courts et aucune recherche n'a été effectuée. + </notification> + <notification name="CouldNotTeleportReason"> + Impossible de téléporter. [REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -Impossible de définir le propriétaire foncier : + </notification> + <notification name="invalid_tport"> + Nous avons rencontré des problèmes en essayant de vous téléporter. Vous devrez peut-être vous reconnecter avant de pouvoir être téléporté. Si vous continuez à recevoir ce message, veuillez consulter le Support à  la page suivante : +www.secondlife.com/support + </notification> + <notification name="invalid_region_handoff"> + Nous avons rencontré des problèmes en essayant de vous téléporter. Vous devrez peut-être vous reconnecter avant de pouvoir être téléporté. Si vous continuez à recevoir ce message, veuillez consulter le Support à  la page suivante : +www.secondlife.com/support + </notification> + <notification name="blocked_tport"> + Désolé, la téléportation est bloquée actuellement. Veuillez réessayer dans un moment. +Si vous ne parvenez toujours pas à être téléporté, déconnectez-vous puis reconnectez-vous pour résoudre le problème. + </notification> + <notification name="nolandmark_tport"> + Désolé, le système n'a pas réussi à localiser la destination de votre repère. + </notification> + <notification name="timeout_tport"> + Désolé, la connexion vers votre lieu de téléportation n'a pas abouti. +Veuillez réessayer dans un moment. + </notification> + <notification name="noaccess_tport"> + Désolé, vous n'avez pas accès à cette destination. + </notification> + <notification name="missing_attach_tport"> + Vos pieces-jointes ne sont pas encore arrivées. Attendez quelques secondes de plus ou déconnectez-vous puis reconnectez-vous avant d'essayer de vous téléporter. + </notification> + <notification name="too_many_uploads_tport"> + Le trafic vers cette région est bouché en ce moment. Votre téléportation ne pourra pas avoir lieu immédiatement. Veuillez réessayer dans quelques minutes ou bien aller dans une zone moins fréquentée. + </notification> + <notification name="expired_tport"> + Désolé, votre demande de téléportation n'a pas abouti assez rapidement. Veuillez réessayer dans quelques minutes. + </notification> + <notification name="expired_region_handoff"> + Désolé, votre demande pour passer dans une autre région n'a pas abouti assez rapidement. Veuillez réessayer dans quelques minutes. + </notification> + <notification name="no_host"> + Impossible de trouver la destination de la téléportation. Il est possible que cette destination soit temporairement indisponible ou qu'elle n'existe plus. Veuillez réessayer dans quelques minutes. + </notification> + <notification name="no_inventory_host"> + L'inventaire est temporairement indisponible. + </notification> + <notification name="CannotSetLandOwnerNothingSelected"> + Impossible de définir le propriétaire foncier : aucune parcelle sélectionnée. - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -Impossible de définir un propriétaire car la sélection couvre plusieurs régions. Veuillez sélectionner une zone plus petite et réessayer. - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -Cette parcelle est mise aux enchères. Définir un propriétaire annulerait les enchères, ce qui pourrait être gênant pour certains résidents si ces dernières ont commencé. Souhaitez-vous définir un propriétaire ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -Problème : + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + Impossible de définir un propriétaire car la sélection couvre plusieurs régions. Veuillez sélectionner une zone plus petite et réessayer. + </notification> + <notification name="ForceOwnerAuctionWarning"> + Cette parcelle est mise aux enchères. Définir un propriétaire annulerait les enchères, ce qui pourrait être gênant pour certains résidents si ces dernières ont commencé. Souhaitez-vous définir un propriétaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + Problème : Aucune parcelle sélectionnée. - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -Problème : + </notification> + <notification name="CannotContentifyNoRegion"> + Problème : Aucune région sélectionnée. - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -Impossible d'abandonner le terrain : + </notification> + <notification name="CannotReleaseLandNothingSelected"> + Impossible d'abandonner le terrain : aucune parcelle sélectionnée. - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -Impossible d'abandonner le terrain : + </notification> + <notification name="CannotReleaseLandNoRegion"> + Impossible d'abandonner le terrain : la région est introuvable. - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -Impossible d'acheter le terrain : + </notification> + <notification name="CannotBuyLandNothingSelected"> + Impossible d'acheter le terrain : aucune parcelle sélectionnée. - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -Impossible d'acheter le terrain : + </notification> + <notification name="CannotBuyLandNoRegion"> + Impossible d'acheter le terrain : la région dans laquelle il est situé est introuvable. - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -Vous ne pouvez pas fermer la fenêtre Acheter le terrain avant que Second Life n'estime le montant de cette transaction. - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -Cession du terrain impossible : + </notification> + <notification name="CannotCloseFloaterBuyLand"> + Vous ne pouvez pas fermer la fenêtre Acheter le terrain avant que Second Life n'estime le montant de cette transaction. + </notification> + <notification name="CannotDeedLandNothingSelected"> + Cession du terrain impossible : aucune parcelle sélectionnée. - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -Cession du terrain impossible : + </notification> + <notification name="CannotDeedLandNoGroup"> + Cession du terrain impossible : aucun groupe sélectionné. - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -Cession du terrain impossible : + </notification> + <notification name="CannotDeedLandNoRegion"> + Cession du terrain impossible : la région dans laquelle il est situé est introuvable. Veuillez utiliser Aide > Signaler des bugs pour signaler le problème. - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -Cession du terrain impossible : + </notification> + <notification name="CannotDeedLandMultipleSelected"> + Cession du terrain impossible : plusieurs parcelles sélectionnées. Essayez de ne sélectionner qu'une seule parcelle. - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -Cette parcelle propose des flux de média. -Pour jouer des flux de média, il faut avoir une connexion internet rapide. - -Jouer les flux de média lorsqu'ils sont disponibles ? -(Vous pourrez modifier cette option ultérieurement sous Préférences > Audio et Vidéo.) - <usetemplate - name="okcancelbuttons" - notext="Désactiver" - yestext="Jouer le média"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -Cession du terrain impossible : + </notification> + <notification name="ParcelCanPlayMedia"> + Cette parcelle propose des flux média. +Pour jouer des flux média, il faut avoir une connexion internet rapide. + +Jouer les flux média lorsqu'ils sont disponibles ? +(Vous pourrez modifier cette option ultérieurement sous Préférences > Audio et vidéo.) + <usetemplate name="okcancelbuttons" notext="Désactiver" yestext="Jouer le média"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + Cession du terrain impossible : rapport de propriété sur le point d'être envoyé par le serveur. Merci de réessayer. - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -Cession du terrain impossible : + </notification> + <notification name="CannotDeedLandNoTransfer"> + Cession du terrain impossible : la cession de terrain est interdite dans la région [REGION]. - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -Impossible d'abandonner le terrain : + </notification> + <notification name="CannotReleaseLandWatingForServer"> + Impossible d'abandonner le terrain : mise à jour des informations sur la parcelle sur le point d'être envoyée par le serveur. Veuillez réessayer dans quelques secondes. - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -Impossible d'abandonner le terrain : + </notification> + <notification name="CannotReleaseLandSelected"> + Impossible d'abandonner le terrain : vous n'êtes pas le propriétaire des parcelles sélectionnées. Veuillez sélectionner une seule parcelle. - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -Impossible d'abandonner le terrain : -vous n'avez pas la permission de libérer cette parcelle. + </notification> + <notification name="CannotReleaseLandDontOwn"> + Impossible d'abandonner le terrain : +vous n'avez pas le droit de libérer cette parcelle. Les parcelles qui vous appartiennent sont en vert. - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -Impossible d'abandonner le terrain : + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + Impossible d'abandonner le terrain : la région dans laquelle il est situé est introuvable. Veuillez utiliser Aide > Signaler un bug pour signaler le problème. - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -Impossible d'abandonner le terrain : + </notification> + <notification name="CannotReleaseLandNoTransfer"> + Impossible d'abandonner le terrain : le transfert de terrain est interdit dans la région [REGION]. - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -Impossible d'abandonner le terrain : + </notification> + <notification name="CannotReleaseLandPartialSelection"> + Impossible d'abandonner le terrain : vous devez sélectionner une parcelle entière pour la libérer. Sélectionnez toute la parcelle ou divisez-la d'abord. - </notification> - - <notification - - name="ReleaseLandWarning" - > -Vous vous apprêtez à libérer [AREA] m² de terrain. + </notification> + <notification name="ReleaseLandWarning"> + Vous vous apprêtez à libérer [AREA] m² de terrain. Si vous libérez cette parcelle, elle sera supprimée de votre patrimoine, mais vous ne recevrez pas de L$. Libérer ce terrain ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -Division du terrain impossible : + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + Division du terrain impossible : aucune parcelle sélectionnée. - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -Division du terrain impossible : + </notification> + <notification name="CannotDivideLandPartialSelection"> + Division du terrain impossible : Toute la parcelle est sélectionnée. Sélectionnez une partie de la parcelle uniquement. - </notification> - - <notification - - name="LandDivideWarning" - > -Si vous divisez ce terrain, cette parcelle sera partagée en deux et chaque parcelle pourra avoir ses propres paramètres. Après cette opération, certains paramètres reviendront aux paramètres par défaut. + </notification> + <notification name="LandDivideWarning"> + Si vous divisez ce terrain, cette parcelle sera partagée en deux et chaque parcelle pourra avoir ses propres paramètres. Après cette opération, certains paramètres reviendront aux paramètres par défaut. Diviser le terrain ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -Division du terrain impossible : + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + Division du terrain impossible : la région dans laquelle il est situé est introuvable. Veuillez utiliser Aide > Signaler un bug pour signaler le problème. - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -Impossible de fusionner le terrain : + </notification> + <notification name="CannotJoinLandNoRegion"> + Impossible de fusionner le terrain : la région dans laquelle il est situé est introuvable. Veuillez utiliser Aide > Signaler un bug pour signaler le problème. - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -Impossible de fusionner le terrain : + </notification> + <notification name="CannotJoinLandNothingSelected"> + Impossible de fusionner le terrain : aucune parcelle sélectionnée. - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -Impossible de fusionner le terrain : + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + Impossible de fusionner le terrain : vous avez sélectionné une seule parcelle. Sélectionnez le terrain sur les deux parcelles. - </notification> - - <notification - - name="CannotJoinLandSelection" - > -Impossible de fusionner le terrain : + </notification> + <notification name="CannotJoinLandSelection"> + Impossible de fusionner le terrain : vous devez sélectionner au moins deux parcelles. Sélectionnez le terrain sur les deux parcelles. - </notification> - - <notification - - name="JoinLandWarning" - > -En fusionnant ce terrain, vous créerez une grande parcelle composée de toutes les parcelles se trouvant dans le rectangle sélectionné. + </notification> + <notification name="JoinLandWarning"> + En fusionnant ce terrain, vous créerez une grande parcelle composée de toutes les parcelles se trouvant dans le rectangle sélectionné. Vous devrez réinitialiser le nom et les options de la nouvelle parcelle. Fusionner le terrain ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -Cette note doit être sauvegardée avant que l'objet ne puisse être copié ou visualisé. Enregistrer la note ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -Copier cet objet dans votre inventaire ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Copier"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -Échec du changement de résolution (à [RESX], de [RESY]) - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -Erreur : herbes non identifiées : [SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -Erreur : arbres non identifiés : [SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -Impossible de sauvegarder [NAME]. Pour pouvoir sauvegarder ce fichier, vous devez d'abord libérer de la mémoire sur votre ordinateur. - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -Impossible de sauvegarder le fichier [NAME] dans la base de données centrale. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ShowOwnersHelp"> + Afficher les propriétaires : +La couleur des parcelles indique le type de propriété. + +Vert = votre terrain +Turquoise = le terrain de votre groupe +Rouge = appartenant à d'autres +Jaune = en vente +Mauve = aux enchères +Gris = public + </notification> + <notification name="ConfirmNotecardSave"> + Cette note doit être sauvegardée avant que l'objet ne puisse être copié ou visualisé. Enregistrer la note ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmItemCopy"> + Copier cet objet dans votre inventaire ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Copier"/> + </notification> + <notification name="ResolutionSwitchFail"> + Échec du changement de résolution (à [RESX], de [RESY]) + </notification> + <notification name="ErrorUndefinedGrasses"> + Erreur : herbes non identifiées : [SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + Erreur : arbres non identifiés : [SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + Impossible de sauvegarder [NAME]. Pour pouvoir sauvegarder ce fichier, vous devez d'abord libérer de la mémoire sur votre ordinateur. + </notification> + <notification name="CannotSaveToAssetStore"> + Impossible de sauvegarder le fichier [NAME] dans la base de données centrale. Cette erreur est généralement temporaire. Veuillez éditer et sauvegarder l'élément endossable à nouveau d'ici quelques minutes. Si le problème persiste, veuillez cliquer sur Aide | Signaler un bug dans le menu déroulant en indiquant les détails de votre connexion. - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -Vous avez été déconnecté(e) de [SECOND_LIFE] : + </notification> + <notification name="YouHaveBeenLoggedOut"> + Vous avez été déconnecté(e) de [SECOND_LIFE] : [MESSAGE] Vous pouvez afficher vos messages instantanés et votre chat en cliquant sur Afficher IM et chat. Sinon, cliquez sur Quitter pour quitter immédiatement [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="Quitter" - yestext="Afficher IM et chat"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -Impossible d'acheter du terrain pour le groupe : -Vous n'avez pas la permission d'acheter de terrain pour votre groupe. - </notification> - - <notification - - label="Devenir amis" - name="AddFriend" - > -Vous pouvez suivre les déplacements de vos amis sur la carte et voir lorsqu'ils se connectent. + <usetemplate name="okcancelbuttons" notext="Quitter" yestext="Afficher IM et chat"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + Impossible d'acheter du terrain pour le groupe : +Vous n'avez pas le droit d'acheter de terrain pour votre groupe. + </notification> + <notification label="Devenir amis" name="AddFriend"> + Vous pouvez suivre les déplacements de vos amis sur la carte et voir lorsqu'ils se connectent. Proposer à [NAME] de devenir votre ami(e) ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - label="Devenir amis" - name="AddFriendWithMessage" - > -Vous pouvez suivre les déplacements de vos amis sur la carte et voir lorsqu'ils se connectent. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification label="Devenir amis" name="AddFriendWithMessage"> + Vous pouvez suivre les déplacements de vos amis sur la carte et voir lorsqu'ils se connectent. Proposer à [NAME] de devenir votre ami(e) ? - <form name="form"> - <input name="message" type="text"> -Voulez-vous être mon ami(e) ? - </input> - <button - - - name="Offer" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -Voulez-vous supprimer [FIRST_NAME] [LAST_NAME] de votre liste d'amis ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -Voulez-vous supprimer plusieurs résidents de votre liste d'amis ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -Êtes-vous certain de vouloir supprimer tous les objets scriptés appartenant à ** [AVATAR_NAME] ** sur tous les terrains des autres résidents dans cette région ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -Êtes-vous certain de vouloir supprimer tous les objets scriptés appartenant à ** [AVATAR_NAME] ** sur tous les terrains de cette région ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -Êtes-vous certain de vouloir supprimer tous les objets (scriptés ou pas) appartenant à ** [AVATAR_NAME] ** sur tous les terrains de cette région ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -Vous devez choisir un nom pour votre petite annonce. - </notification> - - <notification - - name="MinClassifiedPrice" - > -Le coût de l'annonce doit être de [MIN_PRICE] L$ minimum. + <form name="form"> + <input name="message" type="text"> + Voulez-vous être mon ami(e) ? + </input> + <button name="Offer" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + Voulez-vous supprimer [FIRST_NAME] [LAST_NAME] de votre liste d'amis ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + Voulez-vous supprimer plusieurs résidents de votre liste d'amis ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + Êtes-vous certain de vouloir supprimer tous les objets scriptés appartenant à ** [AVATAR_NAME] ** sur tous les terrains des autres résidents dans cette région ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + Êtes-vous certain de vouloir supprimer tous les objets scriptés appartenant à ** [AVATAR_NAME] ** sur tous les terrains de cette région ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + Êtes-vous certain de vouloir supprimer tous les objets (scriptés ou pas) appartenant à ** [AVATAR_NAME] ** sur tous les terrains de cette région ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="BlankClassifiedName"> + Vous devez choisir un nom pour votre petite annonce. + </notification> + <notification name="MinClassifiedPrice"> + Le coût de l'annonce doit être de [MIN_PRICE] L$ minimum. Veuillez saisir un montant plus élevé. - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -Au moins un des objets que vous avez sélectionnés est verrouillé. + </notification> + <notification name="ConfirmObjectDeleteLock"> + Au moins un des objets que vous avez sélectionnés est verrouillé. Êtes-vous certain de vouloir supprimer ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -Au moins un des objets que vous avez sélectionnés n'est pas reproductible. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + Au moins un des objets que vous avez sélectionnés n'est pas copiable. Êtes-vous certain de vouloir supprimer ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -Au moins un des objets que vous avez sélectionnés ne vous appartient pas. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + Au moins un des objets que vous avez sélectionnés ne vous appartient pas. Êtes-vous certain de vouloir supprimer ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -Au moins un des objets est verrouillé. -Au moins un des objets n'est pas reproductible. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + Au moins un des objets est verrouillé. +Au moins un des objets n'est pas copiable. Êtes-vous certain de vouloir supprimer ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -Au moins un des objets est verrouillé. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + Au moins un des objets est verrouillé. Au moins un des objets ne vous appartient pas. Êtes-vous certain de vouloir supprimer ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -Au moins un des objets n'est pas reproductible. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + Au moins un des objets n'est pas copiable. Au moins un des objets ne vous appartient pas. Êtes-vous certain de vouloir supprimer ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -Au moins un des objets est verrouillé. -Au moins un des objets n'est pas reproductible. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + Au moins un des objets est verrouillé. +Au moins un des objets n'est pas copiable. Au moins un des objets ne vous appartient pas. Êtes-vous certain de vouloir supprimer ces objets ? - <usetemplate - name="okcancelbuttons" - notext="annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -Au moins un des objets est verrouillé. + <usetemplate name="okcancelbuttons" notext="annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + Au moins un des objets est verrouillé. Êtes-vous certain de vouloir prendre ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -Vous n'êtes pas le propriétaire de tous les objets que vous prenez. -Si vous continuez, les permissions accordées au prochain propriétaire entreront en vigueur et vous risquez de ne plus pouvoir modifier ou copier les objets. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + Vous n'êtes pas le propriétaire de tous les objets que vous prenez. +Si vous continuez, les droits accordés au prochain propriétaire seront activés et vous risquez de ne plus pouvoir modifier ou copier les objets. Êtes-vous certain de vouloir prendre ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -Au moins un des objets est verrouillé. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + Au moins un des objets est verrouillé. Vous n'êtes pas le propriétaire de tous les objets que vous prenez. -Si vous continuez, les permissions accordées au prochain propriétaire entreront en vigueur et vous risquez de ne plus pouvoir modifier ou copier les objets. +Si vous continuez, les droits accordés au prochain propriétaire seront activés et vous risquez de ne plus pouvoir modifier ou copier les objets. Par contre, vous pouvez prendre les objets sélectionnés. Êtes-vous certain de vouloir prendre ces objets ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -Impossible d'acheter le terrain car la sélection couvre plusieurs régions. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + Impossible d'acheter le terrain car la sélection couvre plusieurs régions. Veuillez sélectionner une zone plus petite et réessayer. - </notification> - - <notification - - name="DeedLandToGroup" - > -Si vous cédez ce terrain, le groupe devra avoir les moyens de le prendre en charge. + </notification> + <notification name="DeedLandToGroup"> + Si vous cédez ce terrain, le groupe devra avoir les moyens de le prendre en charge. Le prix de la vente du terrain n'est pas remboursé par le propriétaire. Si la parcelle que vous cédez se vend, le prix de la vente sera divisé en parts égales parmi les membres du groupe. Céder ces [AREA] m² de terrain au groupe [GROUP_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -Si vous cédez ce terrain, le groupe devra avoir les moyens de le prendre en charge. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + Si vous cédez ce terrain, le groupe devra avoir les moyens de le prendre en charge. La cession incluera une contribution de terrain simultanée au groupe de [FIRST_NAME] [LAST_NAME]. Le prix de la vente du terrain n'est pas remboursé par le propriétaire. Si la parcelle que vous cédez se vend, le prix de la vente sera divisé en parts égales parmi les membres du groupe. Céder ces [AREA] m² de terrain au groupe [GROUP_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > -Les paramètres d'affichage sont au niveau le plus sûr, comme vous l'aviez indiqué. - </notification> - - <notification - - name="DisplaySetToRecommended" - > -Vos paramètres d'affichage ont été réglés avec une marge de sécurité en fonction de votre configuration système. - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -L'emplacement [TYPE] n'est pas disponible actuellement. [HELP] + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="DisplaySetToSafe"> + Les paramètres d'affichage sont au niveau le plus sûr, comme vous l'aviez indiqué. + </notification> + <notification name="DisplaySetToRecommended"> + Vos paramètres d'affichage ont été réglés avec une marge de sécurité en fonction de votre configuration système. + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + L'emplacement [TYPE] n'est pas disponible actuellement. [HELP] Vous avez été déplacé dans une région voisine. - </notification> - - <notification - - name="ClothingLoading" - > -Vos habits sont toujours en train d'être téléchargés. + </notification> + <notification name="ClothingLoading"> + Vos habits sont toujours en train d'être téléchargés. Vous pouvez utiliser [SECOND_LIFE] sans problème, les autres résidents vous voient normalement. - <form name="form"> - <ignore name="ignore" - text="Lorsque les habits prennent longtemps à télécharger"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -L'installation de [SECOND_LIFE] est terminée. + <form name="form"> + <ignore name="ignore" text="Lorsque les habits prennent longtemps à télécharger"/> + </form> + </notification> + <notification name="FirstRun"> + L'installation de [SECOND_LIFE] est terminée. S'il s'agit de la première fois que vous utilisez [SECOND_LIFE], vous devrez créer un compte avant de pouvoir vous connecter. Retourner sur www.secondlife.com pour créer un nouveau compte ? - <usetemplate - name="okcancelbuttons" - notext="Continuer" - yestext="Nouveau compte..."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -Vous avez des problèmes à vous connecter. Il peut s'agir d'un problème avec votre connexion internet ou les serveurs de Second Life. + <usetemplate name="okcancelbuttons" notext="Continuer" yestext="Nouveau compte..."/> + </notification> + <notification name="LoginPacketNeverReceived"> + Vous avez des problèmes à vous connecter. Il peut s'agir d'un problème avec votre connexion internet ou les serveurs de Second Life. Nous vous conseillons de vérifier votre connexion Internet et de réessayer dans quelques minutes, de cliquer sur Aide, ou bien de cliquer sur Téléporter pour être téléporté vers votre domicile. - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="Aide"/> - <button - - name="Teleport" - text="Téléporter"/> - </form> - </notification> - - <notification - - name="WelcomeChooseSex" - > -Votre personnage va apparaître dans un moment. + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="Aide"/> + <button name="Teleport" text="Téléporter"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + Votre personnage va apparaître dans un moment. Pour marcher, utilisez les flèches de direction. Appuyez sur F1 pour obtenir de l'aide ou en savoir plus sur [SECOND_LIFE]. Choisissez un avatar homme ou femme. Vous pourrez revenir sur votre décision plus tard. - <usetemplate - name="okcancelbuttons" - notext="Femme" - yestext="Homme"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] [PRICE] L$ Vous n'avez pas suffisamment de L$ pour faire cela. - </notification> - - <notification - - name="GrantedModifyRights" - > -Vous avez reçu la permission de modifier les objets de [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="RevokedModifyRights" - > -Vous n'avez plus la permission de modifier les objets de [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -Cela videra le cache cartographique de cette région. + <usetemplate name="okcancelbuttons" notext="Femme" yestext="Homme"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] [PRICE] L$ Vous n'avez pas suffisamment de L$ pour faire cela. + </notification> + <notification name="GrantedModifyRights"> + Vous avez reçu le droit de modifier les objets de [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="RevokedModifyRights"> + Vous n'avez plus le droit de modifier les objets de [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="FlushMapVisibilityCaches"> + Cela videra le cache cartographique de cette région. Cela n'est vraiment utile que pour faire du débugage. (En production, attendez 5 minutes. Les cartes seront mises à jour après reconnexion.) - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -Impossible de copier les contenus de plus d'un objet à la fois. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + Impossible d'acheter plus d'un objet à la fois. Veuillez ne sélectionner qu'un seul objet. + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + Impossible de copier les contenus de plus d'un objet à la fois. Veuillez ne sélectionner qu'un seul objet. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -Téléporter tous les résidents de cette région chez eux ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -Etes-vous certain de vouloir renvoyer les objets appartenant à [USER_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -Impossible de definir les textures de la région : + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + Téléporter tous les résidents de cette région chez eux ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + Etes-vous certain de vouloir renvoyer les objets appartenant à [USER_NAME] ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + Impossible de definir les textures de la région : La texture du terrain [TEXTURE_NUM] a une profondeur invalide ([TEXTURE_BIT_DEPTH]). Remplacer la texture [TEXTURE_NUM] avec une image de 24 bits, 512 X 512, ou plus petite, puis cliquez à nouveau sur Appliquer. - </notification> - - <notification - - name="InvalidTerrainSize" - > -Impossible de definir les textures de la région : + </notification> + <notification name="InvalidTerrainSize"> + Impossible de definir les textures de la région : La texture du terrain [TEXTURE_NUM] est trop volumineuse ([TEXTURE_SIZE_X] X [TEXTURE_SIZE_Y]). Remplacer la texture [TEXTURE_NUM] avec une image de 24 bits, 512 X 512, ou plus petite, puis cliquez à nouveau sur Appliquer. - </notification> - - <notification - - name="RawUploadStarted" - > -Le chargement a commencé. Cela va prendre une à deux minutes, + </notification> + <notification name="RawUploadStarted"> + Le chargement a commencé. Cela va prendre une à deux minutes, suivant votre vitesse de connexion. - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -Etes-vous sûr(e) de vouloir figer le relief actuel, en faire le point central des limites d'élévation/abaissement de relief et la valeur par défaut du bouton Annuler modification ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -Vous ne pouvez pas autoriser plus de [MAX_AGENTS] résidents. - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -Vous ne pouvez pas bannir plus de [MAX_BANNED] résidents. - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -Echec lors de la tentative d'ajout de [NUM_ADDED] agents : + </notification> + <notification name="ConfirmBakeTerrain"> + Etes-vous sûr(e) de vouloir figer le relief actuel, en faire le point central des limites d'élévation/abaissement de relief et la valeur par défaut du bouton Annuler modification ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + Vous ne pouvez pas autoriser plus de [MAX_AGENTS] résidents. + </notification> + <notification name="MaxBannedAgentsOnRegion"> + Vous ne pouvez pas bannir plus de [MAX_BANNED] résidents. + </notification> + <notification name="MaxAgentOnRegionBatch"> + Echec lors de la tentative d'ajout de [NUM_ADDED] agents : Dépasse la limite fixée à [MAX_AGENTS] [LIST_TYPE] de [NUM_EXCESS]. - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -Vous ne pouvez pas avoir plus que [MAX_GROUPS] groupes autorisés. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Figer"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -Vous ne pouvez avoir que [MAX_MANAGER] gérants de domaine. - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -Impossible d'ajouter le propriétaire du domaine à la liste des résidents bannis. - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -Impossible de changer d'apparence jusqu'à ce que les habits et la silhouette soient chargés. - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -Le nom de votre petite annonce doit commencer par un chiffre ou une lettre (A à Z). La ponctuation n'est pas autorisée. - </notification> - - <notification - - name="CantSetBuyObject" - > -Cet objet n'est pas à vendre. + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + Vous ne pouvez pas avoir plus que [MAX_GROUPS] groupes autorisés. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Figer"/> + </notification> + <notification name="MaxManagersOnRegion"> + Vous ne pouvez avoir que [MAX_MANAGER] gérants de domaine. + </notification> + <notification name="OwnerCanNotBeDenied"> + Impossible d'ajouter le propriétaire du domaine à la liste des résidents bannis. + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + Impossible de changer d'apparence jusqu'à ce que les habits et la silhouette soient chargés. + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + Le nom de votre petite annonce doit commencer par un chiffre ou une lettre (A à Z). La ponctuation n'est pas autorisée. + </notification> + <notification name="CantSetBuyObject"> + Cet objet n'est pas à vendre. Veuillez choisir un objet à vendre et réessayer. - </notification> - - <notification - - name="FinishedRawDownload" - > -Chargement du fichier de terrain raw effectué vers : + </notification> + <notification name="FinishedRawDownload"> + Chargement du fichier de terrain raw effectué vers : [DOWNLOAD_PATH]. - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -Une nouvelle version de [SECOND_LIFE] est disponible. + </notification> + <notification name="DownloadWindowsMandatory"> + Une nouvelle version de [SECOND_LIFE] est disponible. [MESSAGE] Pour utiliser [SECOND_LIFE] vous devez télécharger cette mise à jour. - <usetemplate - name="okcancelbuttons" - notext="Quitter" - yestext="Télécharger"/> - </notification> - - <notification - - name="DownloadWindows" - > -Une mise à jour de [SECOND_LIFE] est disponible. + <usetemplate name="okcancelbuttons" notext="Quitter" yestext="Télécharger"/> + </notification> + <notification name="DownloadWindows"> + Une mise à jour de [SECOND_LIFE] est disponible. [MESSAGE] Cette mise à jour n'est pas requise mais si vous voulez une meilleure performance et plus de stabilité, nous vous recommandons de l'installer. - <usetemplate - name="okcancelbuttons" - notext="Continuer" - yestext="Télécharger"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -Une mise à jour de [SECOND_LIFE] est disponible. + <usetemplate name="okcancelbuttons" notext="Continuer" yestext="Télécharger"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + Une mise à jour de [SECOND_LIFE] est disponible. [MESSAGE] Cette mise à jour n'est pas requise mais si vous voulez une meilleure performance et plus de stabilité, nous vous recommandons de l'installer. - <usetemplate - name="okcancelbuttons" - notext="Continuer" - yestext="Télécharger"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -Une nouvelle version de [SECOND_LIFE] est disponible. + <usetemplate name="okcancelbuttons" notext="Continuer" yestext="Télécharger"/> + </notification> + <notification name="DownloadMacMandatory"> + Une nouvelle version de [SECOND_LIFE] est disponible. [MESSAGE] Pour utiliser [SECOND_LIFE] vous devez télécharger cette mise à jour. Télécharger vers le dossier Applications ? - <usetemplate - name="okcancelbuttons" - notext="Quitter" - yestext="Télécharger"/> - </notification> - - <notification - - name="DownloadMac" - > -Une mise à jour de [SECOND_LIFE] est disponible. + <usetemplate name="okcancelbuttons" notext="Quitter" yestext="Télécharger"/> + </notification> + <notification name="DownloadMac"> + Une mise à jour de [SECOND_LIFE] est disponible. [MESSAGE] Cette mise à jour n'est pas requise mais si vous voulez une meilleure performance et plus de stabilité, nous vous recommandons de l'installer. Télécharger vers le dossier Applications ? - <usetemplate - name="okcancelbuttons" - notext="Continuer" - yestext="Télécharger"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -Une mise à jour de [SECOND_LIFE] est disponible. + <usetemplate name="okcancelbuttons" notext="Continuer" yestext="Télécharger"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + Une mise à jour de [SECOND_LIFE] est disponible. [MESSAGE] Cette mise à jour n'est pas requise mais si vous voulez une meilleure performance et plus de stabilité, nous vous recommandons de l'installer. Télécharger vers le dossier Applications ? - <usetemplate - name="okcancelbuttons" - notext="Continuer" - yestext="Télécharger"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -Si vous cédez cet objet, le groupe : + <usetemplate name="okcancelbuttons" notext="Continuer" yestext="Télécharger"/> + </notification> + <notification name="DeedObjectToGroup"> + Si vous cédez cet objet, le groupe : * recevra les L$ versés pour l'objet ; - <usetemplate - ignoretext="Lors de la cession d'objets au groupe" - name="okcancelignore" - notext="Annuler" - yestext="Céder"/> - </notification> - - <notification - - name="WebLaunchExternalTarget" - > -Ouvrir votre navigateur web système pour afficher ce contenu ? - <usetemplate - ignoretext="Lors de l'ouverture de votre navigateur système pour afficher une page web" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchJoinNow" - > -Aller sur www.secondlife.com pour gérer votre compte ? - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour gérer votre compte" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchBugReport101" - > -Pour apprendre à signaler correctement des bugs, consultez le Wiki de [SECOND_LIFE]. - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour consulter le Wiki et apprendre à signaler des bugs" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSecurityIssues" - > -Pour apprendre à signaler un problème de sécurité, consultez le Wiki de [SECOND_LIFE]. - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour consulter la page Wiki sur les problèmes de sécurité." - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchQAWiki" - > -Consultez le Wiki sur l'Assurance Qualité de [SECOND_LIFE]. - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour consulter la page Wiki sur l'Assurance Qualité." - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssue" - > -Pour signaler des bugs et autres problèmes, utilisez le JIRA de [SECOND_LIFE]. - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour consulter le JIRA" - name="okcancelignore" - notext="Annuler" - yestext="Aller sur cette page"/> - </notification> - - <notification - - name="WebLaunchPublicIssueHelp" - > -Pour apprendre à utiliser JIRA, consultez le Wiki de [SECOND_LIFE]. - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour consulter la page Wiki sur le JIRA" - name="okcancelignore" - notext="Annuler" - yestext="Aller sur cette page"/> - </notification> - - <notification - - name="WebLaunchSupportWiki" - > -Visitez le blog officiel des Lindens pour les dernières nouvelles et informations. - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour consulter le blog" - name="okcancelignore" - notext="Annuler" - yestext="Aller à la page"/> - </notification> - - <notification - - name="WebLaunchLSLGuide" - > -Consulter le Guide guide pour l'écriture de scripts pour obtenir de l'aide ? - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour voir le Guide pour l'écriture de scripts" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLWiki" - > -Consulter le Wiki LSL pour de l'aide sur les scripts ? - <usetemplate - ignoretext="Lors de l'ouverture du navigateur web pour consulter le Guide sur l'écriture de scripts" - name="okcancelignore" - notext="Annuler" - yestext="Aller à la page"/> - </notification> - - <notification - - name="ReturnToOwner" - > -Êtes-vous certain de vouloir renvoyer les objets sélectionnés à leur propriétaire ? Les objets donnés transférables seront renvoyés à leur ancien propriétaire. + <usetemplate ignoretext="Lors de la cession d'objets au groupe" name="okcancelignore" notext="Annuler" yestext="Céder"/> + </notification> + <notification name="WebLaunchExternalTarget"> + Ouvrir votre navigateur web système pour afficher ce contenu ? + <usetemplate ignoretext="Lors de l'ouverture de votre navigateur système pour afficher une page web" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="WebLaunchJoinNow"> + Aller sur www.secondlife.com pour gérer votre compte ? + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour gérer votre compte" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="WebLaunchBugReport101"> + Pour apprendre à signaler correctement des bugs, consultez le Wiki de [SECOND_LIFE]. + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour consulter le Wiki et apprendre à signaler des bugs" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="WebLaunchSecurityIssues"> + Pour apprendre à signaler un problème de sécurité, consultez le Wiki de [SECOND_LIFE]. + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour consulter la page Wiki sur les problèmes de sécurité." name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="WebLaunchQAWiki"> + Consultez le Wiki sur l'Assurance Qualité de [SECOND_LIFE]. + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour consulter la page Wiki sur l'Assurance Qualité." name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssue"> + Pour signaler des bugs et autres problèmes, utilisez le JIRA de [SECOND_LIFE]. + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour consulter le JIRA" name="okcancelignore" notext="Annuler" yestext="Aller sur cette page"/> + </notification> + <notification name="WebLaunchPublicIssueHelp"> + Pour apprendre à utiliser JIRA, consultez le Wiki de [SECOND_LIFE]. + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour consulter la page Wiki sur le JIRA" name="okcancelignore" notext="Annuler" yestext="Aller sur cette page"/> + </notification> + <notification name="WebLaunchSupportWiki"> + Visitez le blog officiel des Lindens pour les dernières nouvelles et informations. + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour consulter le blog" name="okcancelignore" notext="Annuler" yestext="Aller à la page"/> + </notification> + <notification name="WebLaunchLSLGuide"> + Consulter le Guide guide pour l'écriture de scripts pour obtenir de l'aide ? + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour voir le Guide pour l'écriture de scripts" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLWiki"> + Consulter le Wiki LSL pour de l'aide sur les scripts ? + <usetemplate ignoretext="Lors de l'ouverture du navigateur web pour consulter le Guide sur l'écriture de scripts" name="okcancelignore" notext="Annuler" yestext="Aller à la page"/> + </notification> + <notification name="ReturnToOwner"> + Êtes-vous certain de vouloir renvoyer les objets sélectionnés à leur propriétaire ? Les objets donnés transférables seront renvoyés à leur ancien propriétaire. *Avertissement* Les objets non transférables seront supprimés ! - <usetemplate - ignoretext="Lors du renvoi d'objets à leurs propriétaires" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -Vous êtes actuellement membre du groupe [GROUP]. + <usetemplate ignoretext="Lors du renvoi d'objets à leurs propriétaires" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="GroupLeaveConfirmMember"> + Vous êtes actuellement membre du groupe [GROUP]. Quitter le groupe ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmKick" - > -Souhaitez-vous vraiment éjecter tous les utilisateurs de la grille ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Éjecter tous"/> - </notification> - - <notification - - name="MuteLinden" - > -Désolé, vous ne pouvez pas ignorer un Linden. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="Échec de la fonction Ignorer les objets par nom" - name="MuteByNameFailed" - > -Vous ignorez déjà ce résident. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -Si vous supprimez des contenus, vous risquez d'endommager l'objet. Souhaitez-vous supprimer cet objet ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -Impossible d'offrir une carte de visite actuellement. Veuillez réessayer dans un moment. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -Impossible de proposer votre amitié actuellement. Veuillez réessayer dans un moment. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -Mode occupé activé. -Les chats et les messages instantanés ne s'afficheront pas. Les messages instantanés génèreront la réponse en mode occupé que vous avez créée. Toutes les offres de téléportation seront refusées. Toutes les offres d'inventaire iront dans la corbeille. - <usetemplate - ignoretext="Lors de l'utilisation du mode Occupé" - name="okignore" - yestext="OK"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -Vous appartenez déjà à un nombre élevé de groupes et nous ne pouvez pas en rejoindre un nouveau. Avant de pouvoir rejoindre ce groupe, vous devez en quitter un ou refuser cette offre. + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmKick"> + Souhaitez-vous vraiment éjecter tous les utilisateurs de la grille ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Éjecter tous"/> + </notification> + <notification name="MuteLinden"> + Désolé, vous ne pouvez pas ignorer un Linden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + Vous ne pouvez pas démarrer des enchères sur une parcelle déjà en vente. Si vous êtes certain de vouloir démarrer des enchères, mettez fin à la vente. + </notification> + <notification label="Échec de la fonction Ignorer les objets par nom" name="MuteByNameFailed"> + Vous ignorez déjà ce résident. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + Si vous supprimez des contenus, vous risquez d'endommager l'objet. Souhaitez-vous supprimer cet objet ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="CantOfferCallingCard"> + Impossible d'offrir une carte de visite actuellement. Veuillez réessayer dans un moment. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + Impossible de proposer votre amitié actuellement. Veuillez réessayer dans un moment. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="BusyModeSet"> + Mode occupé activé. +Les chats et les messages instantanés ne s'afficheront pas. Vous répondrez aux messages instantanés en utilisant la réponse automatique que vous avez créée. Toutes les propositions de téléportation seront refusées. Tous objets envoyés iront dans la corbeille. + <usetemplate ignoretext="Lors de l'utilisation du mode Occupé" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + Vous appartenez déjà à un nombre élevé de groupes et nous ne pouvez pas en rejoindre un nouveau. Avant de pouvoir rejoindre ce groupe, vous devez en quitter un ou refuser cette offre. Pour quitter un groupe, sélectionnez l'option Groupe dans le menu Éditer. [NAME] vous invite à rejoindre un groupe. [INVITE] - <usetemplate - name="okcancelbuttons" - notext="Refuser" - yestext="Rejoindre"/> - </notification> - - <notification - - name="KickUser" - > -Éjecter cet utilisateur avec quel message ? - <form name="form"> - <input name="message" type="text"> -Un administrateur vous a déconnecté. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -Éjecter tous les résidents actuellement en ligne avec quel message ? - <form name="form"> - <input name="message" type="text"> -Un administrateur vous a déconnecté. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -Geler cet utilisateur avec quel message ? - <form name="form"> - <input name="message" type="text"> -Vous avez été gelé. Vous ne pouvez ni bouger ni chatter. Un administrateur va vous envoyer un message instantané (IM). - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -Dégeler cet utilisateur avec quel message ? - <form name="form"> - <input name="message" type="text"> -Vous n'êtes plus gelé. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -Proposez une téléportation avec le message suivant ? - <form name="form"> - <input name="message" type="text"> -On se rejoint à [REGION] ? - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -Demander au résident de venir vous rejoindre ? - <form name="form"> - <input name="message" type="text"> -On se rejoint à [REGION] ? - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -Êtes-vous certain de vouloir être téléporté ? - <usetemplate - ignoretext="Lors de la téléportation depuis un repère de l'inventaire" - name="okcancelignore" - notext="Annuler" - yestext="Téléporter"/> - </notification> - - <notification - - label="Envoyer un message à tout le monde dans votre domaine" - name="MessageEstate" - > -Saisissez un message court qui sera envoyé à tous les résidents se trouvant actuellement sur votre domaine. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - label="Modifier un domaine Linden" - name="ChangeLindenEstate" - > -Vous vous apprêtez à modifier un domaine appartenant aux Lindens (continent, zone réservée aux ados, orientation etc.). + <usetemplate name="okcancelbuttons" notext="Refuser" yestext="Rejoindre"/> + </notification> + <notification name="KickUser"> + Éjecter cet utilisateur avec quel message ? + <form name="form"> + <input name="message" type="text"> + Un administrateur vous a déconnecté. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="KickAllUsers"> + Éjecter tous les résidents actuellement en ligne avec quel message ? + <form name="form"> + <input name="message" type="text"> + Un administrateur vous a déconnecté. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="FreezeUser"> + Geler cet utilisateur avec quel message ? + <form name="form"> + <input name="message" type="text"> + Vous avez été gelé. Vous ne pouvez ni bouger ni chatter. Un administrateur va vous envoyer un message instantané (IM). + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="UnFreezeUser"> + Dégeler cet utilisateur avec quel message ? + <form name="form"> + <input name="message" type="text"> + Vous n'êtes plus gelé. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="OfferTeleport"> + Proposez une téléportation avec le message suivant ? + <form name="form"> + <input name="message" type="text"> + On se rejoint à [REGION] ? + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + Demander au résident de venir vous rejoindre ? + <form name="form"> + <input name="message" type="text"> + On se rejoint à [REGION] ? + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + Êtes-vous certain de vouloir être téléporté ? + <usetemplate ignoretext="Lors de la téléportation depuis un repère de l'inventaire" name="okcancelignore" notext="Annuler" yestext="Téléporter"/> + </notification> + <notification label="Envoyer un message à tout le monde dans votre domaine" name="MessageEstate"> + Saisissez un message court qui sera envoyé à tous les résidents se trouvant actuellement sur votre domaine. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification label="Modifier un domaine Linden" name="ChangeLindenEstate"> + Vous vous apprêtez à modifier un domaine appartenant aux Lindens (continent, zone réservée aux ados, orientation etc.). Cela est extrêmement délicat car l'expérience des résidents est en jeu. Sur le continent, cela modifiera des milliers de régions et sera difficile à digérer pour le serveur. Continuer ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - label="Modifier l'accès à un domaine Linden" - name="ChangeLindenAccess" - > -Vous vous apprêtez à modifier la liste d'accès à un domaine appartenant aux Linden (continent, zone réservée aux ados, orientation etc.). + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification label="Modifier l'accès à un domaine Linden" name="ChangeLindenAccess"> + Vous vous apprêtez à modifier la liste d'accès à un domaine appartenant aux Linden (continent, zone réservée aux ados, orientation etc.). Cette action est délicate et ne doit être effectuée que pour appeler le hack autorisant des objets/L$ à être transférés à l'intérieur/extérieur de la grille. Cette action modifiera des milliers de régions et sera difficile à digérer pour le serveur. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateAllowedAgentAdd" - > -Ajouter à la liste des résidents autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateAllowedAgentRemove" - > -Supprimer de la liste des résidents autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateAllowedGroupAdd" - > -Ajouter à la liste des groupes autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateAllowedGroupRemove" - > -Supprimer de la liste des groupes autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateBannedAgentAdd" - > -Refuser l'accès à ce domaine uniquement ou à [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateBannedAgentRemove" - > -Supprimer ce résident de la liste des résidents bannis pour ce domaine uniquement ou pour [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateManagerAdd" - > -Ajouter un gérant de domaine pour ce domaine uniquement ou pour [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Choisir le domaine" - name="EstateManagerRemove" - > -Supprimer le gérant de domaine pour ce domaine uniquement ou pour [ALL_ESTATES] ? - <usetemplate - canceltext="Annuler" - name="yesnocancelbuttons" - notext="Tous les domaines" - yestext="Ce domaine"/> - </notification> - - <notification - - label="Confirmer" - name="EstateKickUser" - > -Éjecter [EVIL_USER] de ce domaine ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="EstateChangeCovenant" - > -Êtes-vous certain de vouloir modifier le règlement du domaine ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ProblemImportingEstateCovenant" - > -Problème lors de l'importation du règlement du domaine. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -Problèmes lors de l'ajout d'un nouveau gérant de domaine. Il est possible qu'au moins un des domaines ait une liste de gérants complète. - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -Problème lors de l'ajout à la liste de ce domaine. Il est possible qu'au moins un des domaines ait une liste complète. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Impossible de lire les données de la note actuellement. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -Permissions pour afficher la note insuffisantes. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MissingNotecardAssetID" - > -Les références de la note ne se trouvent pas dans la base de données. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PublishClassified" - > -Rappel : les frais pour passer des petites annonces ne sont pas remboursables. - -Publier cette petite annonce maintenant pour [AMOUNT] L$ ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - - - <notification - - label="Confirmer le redémarrage" - name="ConfirmRestart" - > -Souhaitez-vous vraiment redémarrer cette région dans 2 minutes ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - label="Envoyer un message à tout le monde dans cette région" - name="MessageRegion" - > -Saisissez une message court qui sera envoyé à tous les résidents se trouvant actuellement dans cette région. - <form name="form"> - <input name="message" type="text"/> + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification label="Choisir le domaine" name="EstateAllowedAgentAdd"> + Ajouter à la liste des résidents autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Choisir le domaine" name="EstateAllowedAgentRemove"> + Supprimer de la liste des résidents autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Choisir le domaine" name="EstateAllowedGroupAdd"> + Ajouter à la liste des groupes autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Choisir le domaine" name="EstateAllowedGroupRemove"> + Supprimer de la liste des groupes autorisés uniquement pour ce domaine ou pour [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Choisir le domaine" name="EstateBannedAgentAdd"> + Refuser l'accès à ce domaine uniquement ou à [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Choisir le domaine" name="EstateBannedAgentRemove"> + Supprimer ce résident de la liste des résidents bannis pour ce domaine uniquement ou pour [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Choisir le domaine" name="EstateManagerAdd"> + Ajouter un gérant de domaine pour ce domaine uniquement ou pour [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Choisir le domaine" name="EstateManagerRemove"> + Supprimer le gérant de domaine pour ce domaine uniquement ou pour [ALL_ESTATES] ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Tous les domaines" yestext="Ce domaine"/> + </notification> + <notification label="Confirmer" name="EstateKickUser"> + Éjecter [EVIL_USER] de ce domaine ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="EstateChangeCovenant"> + Êtes-vous certain de vouloir modifier le règlement du domaine ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + Votre catégorie d'accès ne vous autorise pas à pénétrer dans cette région. Cela vient peut-être du fait qu'il manquait des informations pour valider votre âge. + +Vérifiez que vous avez la toute dernière version du client et consultez les pages d'aide pour savoir comment accéder aux zones ayant ce niveau d'accès. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + Votre catégorie d'accès ne vous permet pas de pénétrer dans cette région. + +Souhaitez-vous en savoir plus sur les différentes catégories d'accès ? + <url name="url"> + http://wiki.secondlife.com/wiki/Pr%C3%A9sentation_des_cat%C3%A9gories_de_contenu_(KB) + </url> + <usetemplate ignoretext="Lorsque l'accès à une région est bloqué à cause de la catégorie d'accès" name="okcancelignore" notext="Fermer" yestext="Consulter les pages d'aide"/> + </notification> + <notification name="RegionEntryAccessBlocked_Notify"> + Votre catégorie d'accès ne vous permet pas de pénétrer dans cette région. + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + Votre catégorie d'accès ne vous permet pas de pénétrer dans cette région. + +En cliquant sur Modifier les préférences, vous pourrez changer votre catégorie d'accès et pénétrer dans la région. À partir de maintenant, vous pouvez rechercher et accéder au contenu [REGIONMATURITY]. Vous pouvez modifier ce paramètre à partir du menu Édition > Préférences... > Général. + <form name="form"> <button - - name="OK" - text="OK"/> + text="Modifier les Préférences"/> <button - + default="true" name="Cancel" - text="Annuler"/> + text="Fermer"/> + <ignore name="ignore" text="Lorsque l'accès à une région est bloqué à cause des préférences concernant la catégorie d'accès"/> </form> - </notification> - - <notification - - label="Bloquer le terraformage" - name="HelpRegionBlockTerraform" - > -Si vous cochez cette case, les propriétaires ne pourront plus terraformer leur terrain, quels que soient leurs paramètres à la section Modifier le terrain. - -Défaut : désactivé - </notification> - - <notification - - label="Interdire le vol" - name="HelpRegionBlockFly" - > -Si vous cochez cette case, les résidents ne pourront plus voler dans cette région, quels que soient leurs paramètres. - -Défaut : désactivé - </notification> - - <notification - - label="Autoriser les dégâts" - name="HelpRegionAllowDamage" - > -Si vous cochez cette case, l'alerte santé est désactivée sur toutes les parcelles quels que soient les paramètres individuels de la parcelle. Si la case n'est pas cochée, les propriétaires de parcelles peuvent quand même activer l'alerte santé de manière individuelle sur leurs parcelles. - -Défaut : désactivé - </notification> - - <notification - - label="Nombre limite d'avatars" - name="HelpRegionAgentLimit" - > -Définit le nombre maximum d'avatars autorisés dans cette région. -La performance peut varier en fonction du nombre d'avatars présents. - -Défaut : 40 - </notification> + </notification> + <notification name="LandClaimAccessBlocked"> + Votre catégorie d'accès ne vous permet pas de réclamer cette région. Cela vient peut-être du fait qu'il manquait des informations pour valider votre âge. + +Vérifiez que vous avez la toute dernière version du client et consultez les pages d'aide pour savoir comment accéder aux zones ayant ce niveau d'accès. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + Votre catégorie d'accès ne vous permet pas de réclamer cette région. + +Souhaitez-vous en savoir plus sur les différentes catégories d'accès ? + <url name="url"> + http://wiki.secondlife.com/wiki/Pr%C3%A9sentation_des_cat%C3%A9gories_de_contenu_(KB) + </url> + <usetemplate ignoretext="Lorsqu'une région ne peut pas être réclamée à cause de la catégorie d'accès" name="okcancelignore" notext="Fermer" yestext="Consulter les pages d'aide"/> + </notification> + <notification name="LandClaimAccessBlocked_Notify"> + Votre catégorie d'accès ne vous autorise pas à réclamer cette région. + </notification> + <notification name="LandClaimAccessBlocked_Change"> + Votre catégorie d'accès ne vous permet pas de réclamer cette région. + +En cliquant sur Modifier les préférences, vous pourrez changer votre catégorie d'accès et pénétrer dans la région. À partir de maintenant, vous pouvez rechercher et accéder au contenu [REGIONMATURITY]. Vous pouvez modifier ce paramètre à partir du menu Édition > Préférences... > Général. + <usetemplate ignoretext="Lorsqu'une région ne peut pas être réclamée à cause des préférences concernant la catégorie d'accès" name="okcancelignore" notext="Fermer" yestext="Modifier les Préférences"/> + </notification> + <notification name="LandBuyAccessBlocked"> + Votre catégorie d'accès ne vous permet pas d'acheter cette région. Cela vient peut-être du fait qu'il manquait des informations pour valider votre âge. + +Vérifiez que vous avez la toute dernière version du client et consultez les pages d'aide pour savoir comment accéder aux zones ayant ce niveau d'accès. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + Votre catégorie d'accès ne vous permet pas d'acheter cette région. + +Souhaitez-vous en savoir plus sur les différentes catégories d'accès ? + <url name="url"> + http://wiki.secondlife.com/wiki/Pr%C3%A9sentation_des_cat%C3%A9gories_de_contenu_(KB) + </url> + <usetemplate ignoretext="Lorsqu'une région ne peut pas être achetée à cause de la catégorie d'accès" name="okcancelignore" notext="Fermer" yestext="Consulter les pages d'aide"/> + </notification> + <notification name="LandBuyAccessBlocked_Notify"> + Votre catégorie d'accès ne vous permet pas d'acheter cette région. + </notification> + <notification name="LandBuyAccessBlocked_Change"> + Votre catégorie d'accès ne vous autorise pas à acheter cette région. + +En cliquant sur Modifier les préférences, vous pourrez changer votre catégorie d'accès et pénétrer dans la région. À partir de maintenant, vous pouvez rechercher et accéder au contenu [REGIONMATURITY]. Vous pouvez modifier ce paramètre à partir du menu Édition > Préférences... > Général. + <usetemplate ignoretext="Lorsqu'une région ne peut pas être achetée à cause des préférences concernant la catégorie d'accès" name="okcancelignore" notext="Fermer" yestext="Modifier les Préférences"/> + </notification> + <notification name="TooManyPrimsSelected"> + "Vous avez sélectionné trop de prims. Veuillez sélectionner au maximum [MAX_PRIM_COUNT] prims et réessayer." + </notification> + <notification name="ProblemImportingEstateCovenant"> + Problème lors de l'importation du règlement du domaine. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + Problèmes lors de l'ajout d'un nouveau gérant de domaine. Il est possible qu'au moins un des domaines ait une liste de gérants complète. + </notification> + <notification name="ProblemAddingEstateGeneric"> + Problème lors de l'ajout à la liste de ce domaine. Il est possible qu'au moins un des domaines ait une liste complète. + </notification> + <notification name="UnableToLoadNotecardAsset"> + Impossible de charger les données de la note actuellement. + </notification> + <notification name="NotAllowedToViewNotecard"> + Permissions pour afficher la note insuffisantes. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + Les références de la note ne se trouvent pas dans la base de données. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + Rappel : les frais pour passer des petites annonces ne sont pas remboursables. - <notification - - label="Bonus objet" - name="HelpRegionObjectBonus" - > -Le bonus objet est le multiplicateur de prims autorisés sur une parcelle donnée. L'échelle autorisée est comprise entre 1 et 10. Lorsque ce chiffre est de 1, chaque parcelle de 512 m² peut contenir 117 objets. S'il est de 2, chaque parcelle peut contenir 234 objets, ou deux fois plus, et ainsi de suite. Le nombre maximum d'objets autorisés dans une région est de 15 000, quel que soit le bonus objet. Attention : si vous définissez un bonus objet et décidez ensuite de le diminuer, cela peut entraîner la suppression ou le renvoi d'objets. - -Défaut : 1.0 - </notification> +Publier cette petite annonce maintenant pour [AMOUNT] L$ ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="SetClassifiedMature"> + Cette petite annonce contient-elle du contenu Mature ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="SetGroupMature"> + Ce groupe contient-il du contenu Mature ? + <usetemplate canceltext="Annuler" name="yesnocancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification label="Confirmer le redémarrage" name="ConfirmRestart"> + Souhaitez-vous vraiment redémarrer cette région dans 2 minutes ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification label="Envoyer un message à la région" name="MessageRegion"> + Saisissez une message qui sera envoyé à tous les résidents présents dans cette région. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification label="Interdire le terraformage" name="HelpRegionBlockTerraform"> + Si vous cochez cette case, les propriétaires ne pourront plus terraformer leur terrain, quel que soit le paramétrage individuel des parcelles. + +Valeur par défaut : désactivé + </notification> + <notification label="Interdire le vol" name="HelpRegionBlockFly"> + Si vous cochez cette case, les résidents ne pourront plus voler dans cette région, quel que soit le paramétrage individuel des parcelles. + +Valeur par défaut : désactivé + </notification> + <notification label="Modifications groupées des droits relatifs au contenu" name="HelpBulkPermission"> + L'outil Modifications groupées des droits vous permet de modifier rapidement et simultanément les droits dans les contenus des objets séléctionnés. Notez toutefois que vous paramétrez uniquement les droits des objets dans les Contenus des objets sélectionnés, et non les droits sur les objets eux-mêmes. + +Notez aussi que les droits ne s'appliquent pas aux contenus imbriqués dans les objets contenus. Votre requête ne porte que sur les objets de premier niveau. + +Vous pouvez sélectionner quels types d'objets modifier à la section Types de contenu. Les photos sont incluses quand vous sélectionnez Textures. + +* Cet outil ne vous permettra de changer que les droits des objets que vous êtes autorisés à modifier. +* Vous ne pouvez pas accorder de droits que vous n'avez pas au prochain propriétaire. +* Les droits accordés au prochain propriétaire de sont que des requêtes. Si un objet ne peut recevoir tous les nouveaux droits, aucun de ses droits ne changera. + +Lorsque vous êtes prêt à modifier tous les droits, cliquez sur Appliquer et attendez de voir s'afficher les résultats. + +Si vous fermez la fenêtre des modifications groupées alors que les droits sont en train d'être modifiés, vous suspendez l'opération. + </notification> + <notification label="Autoriser les dégâts" name="HelpRegionAllowDamage"> + Si vous cochez cette case, les résidents peuvent subir des dégâts dans toute la région quel que soit le paramétrage individuel des parcelles. Si la case n'est pas cochée, les propriétaires sont libres d'activer ou non cette option sur leur parcelle. + +Valeur par défaut : désactivé + </notification> + <notification label="Nombre maximum d'avatars" name="HelpRegionAgentLimit"> + Définit le nombre maximum d'avatars autorisés dans cette région. +La performance peut varier en fonction du nombre d'avatars présents. +Valeur par défaut : 40 + </notification> + <notification label="Bonus objet" name="HelpRegionObjectBonus"> + Le bonus objet est le multiplicateur de prims autorisées sur une parcelle donnée. L'échelle autorisée est comprise entre 1 et 10. Lorsque ce chiffre est de 1, chaque parcelle de 512 m² peut contenir 117 prims. S'il est de 2, chaque parcelle peut contenir 234 prims, ou deux fois plus, et ainsi de suite. Le nombre maximum de prims autorisées dans une région est de 15 000, quel que soit le bonus objet. Attention : si vous définissez un bonus objet et décidez ensuite de le diminuer, cela peut entraîner la suppression ou le renvoi d'objets. +Valeur par défaut : 1.0 + </notification> + <notification label="Accès" name="HelpRegionMaturity"> + Définit la catégorie d'accès de la région, telle qu'affichée dans la barre de menu en haut du client et dans les infobulles de la carte lorsque vous passez votre curseur au-dessus de cette région. Ce paramètre affecte aussi l'accès à cette région et les résultats de recherche. Les autres résidents ne peuvent pénétrer que dans les régions ou n'afficher que les résultats de recherche ayant la même catégorie d'accès que celle indiquée dans leurs Préférences. - <notification - - label="Interdire les bousculades" - name="HelpRegionRestrictPushObject" - > -Cette case permet de restreindre les bousculades dans toute une région. -Lorsqu'elle est cochée, les résidents ne peuvent être bousculés que par eux-mêmes ou par le propriétaire de la région. +Ce changement n'apparaîtra pas immédiatement sur la carte. + </notification> + <notification label="Interdire les bousculades" name="HelpRegionRestrictPushObject"> + Cette case permet de restreindre les bousculades dans toute une région. +Lorsqu'elle est cochée, les résidents ne peuvent être bousculés que par d'autres résidents ou par le propriétaire de la parcelle. (Bousculer fait référence à la fonction LSL llPushObjet().) -Défaut : Désactivé - </notification> - - <notification - - label="Fusionner/Diviser des parcelles" - name="HelpParcelChanges" - > -Cette case permet de choisir si les parcelles n'appartenant pas au gérant du domaine peuvent ou pas être fusionnées ou divisées. +Valeur par défaut : désactivé + </notification> + <notification label="Fusionner/Diviser des parcelles" name="HelpParcelChanges"> + Cette case permet de choisir si les parcelles n'appartenant pas au gérant du domaine peuvent ou pas être fusionnées ou divisées. Si cette case n'est pas cochée : * Seuls les propriétaires ou gérants de domaine peuvent fusionner ou diviser des parcelles. * Ils ne peuvent fusionner ou diviser que les parcelles du propriétaire, - ou celles d'un groupe dans lequel il ont les pouvoirs nécessaires. -Si cette case est cochée : + ou celles d'un groupe dans lequel ils ont les pouvoirs nécessaires. + Si cette case est cochée : * Tous les propriétaires peuvent fusionner ou diviser leurs parcelles. - * Pour les parcelles du groupe, les résidents avec les pouvoirs nécessaires - peuvent fusionner ou diviser les parcelles. - -Défaut : Cochée - </notification> - - <notification - - label="Ne pas montrer dans les résultats de recherche" - name="HelpRegionSearch" - > -Si vous cochez cette option, les propriétaires ne pourront pas faire apparaître leurs parcelles dans les résultats de recherche. -Défaut : Désactivé - </notification> - - <notification - - label="Maturité de la région modifiée" - name="RegionMaturityChange" - > -Le niveau de maturité de cette région a été mis à jour. + * Pour les parcelles appartenant à un groupe, les membres avec les pouvoirs nécessaires peuvent fusionner ou diviser les parcelles. + +Valeur par défaut : activée + </notification> + <notification label="Ne pas afficher dans la recherche" name="HelpRegionSearch"> + Si vous cochez cette option, les propriétaires ne pourront pas faire apparaître leurs parcelles dans les résultats de recherche. +Valeur par défaut : désactivé + </notification> + <notification label="Catégorie de la région modifiée" name="RegionMaturityChange"> + La catégorie d'accès de cette région a été mise à jour. Ce changement n'apparaîtra pas immédiatement sur la carte. - </notification> - - <notification - - label="Revente de terrain" - name="HelpRegionLandResell" - > -Les propriétaires et gérants de domaine peuvent vendre n'importe quel terrain appartenant à un propriétaire de domaine. -Si cette option n'est pas cochée, les acheteurs ne peuvent pas revendre leur terrain dans cette région. -Si cette option est cochée, les acheteurs peuvent revendre leur terrain dans cette région. - -Défaut : Ne pas autoriser - </notification> - - <notification - - label="Désactiver les scripts" - name="HelpRegionDisableScripts" - > -Lorsque la performance d'une sim est faible, cela vient peut-être d'un script. Ouvrez la section Statistiques (Ctrl-Maj-1). Consultez le Simulateur de propriétés physiques FPS. -S'il est en dessous de 45, ouvrez le panel Heure situé en bas de la barre de statistiques. Si le script Heure indique 25mn ou moins, cliquez sur le bouton Afficher les scripts fréquemment utilisés. Vous verrez le nom et l'emplacement des scripts qui sont peut-être à l'origine du problème. - -Si vous cochez la case Désactiver les scripts et que vous appuyez sur Appliquer, tous les scripts de cette région seront temporairement désactivés. Vous devrez peut-être faire cela pour aller dans un endroit où se trouve un script fréquemment utilisé. Une fois arrivé, cherchez à savoir si le script est bien à l'origine du problème. Pour cela, vous devrez peut-être contacter le propriétaire du script ou bien supprimer ou renvoyer l'objet. + </notification> + <notification label="Revente de terrain" name="HelpRegionLandResell"> + Les propriétaires et gérants de domaine peuvent vendre n'importe quel terrain appartenant au propriétaire du domaine. +Si cette option n'est pas cochée, les propriétaires ne peuvent pas revendre leur parcelle. +Si cette option est cochée, les propriétaires sont libres de revendre leur parcelle. + +Valeur par défaut : désactivé + </notification> + <notification label="Désactiver les scripts" name="HelpRegionDisableScripts"> + Lorsque la performance d'une région est faible, cela peut venir d'un script. Ouvrez la section Statistiques (Ctrl-Maj-1) et vérifiez le FPS Physique (Physics FPS) de la section Simulateur. +Si le FPS est en dessous de 45, ouvrez la section Time située en fin de liste. Si le Script Time est au dessus de 25ms, cliquez sur le bouton Afficher les objets scriptés les plus consommateurs. Vous verrez le nom et l'emplacement des scripts éventuellement à l'origine du problème. + +Si vous cochez la case Désactiver les scripts et que vous appuyez sur Appliquer, tous les scripts de cette région seront temporairement désactivés. Vous devrez peut-être faire cela le temps d'arriver à l'endroit su script en cause. Une fois sur place, assurez-vous que le script est bien à l'origine du problème. Pour cela, vous devrez peut-être contacter le propriétaire du script ou bien supprimer ou renvoyer l'objet. Décochez la case Désactiver le script, puis cliquez sur Appliquer pour réactiver tous les scripts dans la région. -Défaut : désactivé - </notification> - - <notification - - label="Désactiver les collisions" - name="HelpRegionDisableCollisions" - > -Lorsque la performance d'une sim est faible, cela vient peut-être des objets physiques. -Ouvrez la barre de statistiques (Ctrl-Maj-1). Consultez le Simulateur de propriétés physiques FPS. S'il est en dessous de 45, ouvrez le panel Heure situé en bas de la barre de statistiques. Si le script Heure indique 25mn ou moins, cliquez sur le bouton Afficher les objets souvent responsables de collision. -Vous verrez le nom et l'emplacement des objets physiques qui sont peut-être à l'origine du problème. - -Si vous décochez la case Désactiver les collisions et que vous appuyez sur Appliquer, toutes les collisions entre objets seront désactivées. Vous devrez peut-être faire cela pour aller dans un endroit où se trouve un objet souvent responsable de collision. Une fois arrivé, cherchez à savoir si l'objet est sans cesse en collision avec d'autres objets. Pour cela, vous devrez peut-être contacter le propriétaire de l'objet ou bien supprimer ou renvoyer l'objet. -Décochez la case Désactiver les collision, puis cliquez sur Appliquer pour réactiver les collisions dans la région. - -Défaut : désactivé - </notification> - - <notification - - label="Désactiver les propriétés physiques" - name="HelpRegionDisablePhysics" - > -L'option Désactiver les propriétés physiques est similaire à l'option Désactiver les collisions sauf qu'elle englobe toutes les simulations physiques. Cela signifie que les objets n'entreront plus en collision et que les avatars ne pourront plus bouger. - -Vous ne devriez utiliser cette option que lorsque l'option Désactiver les collisions ne rend pas sufisamment de performance à la région pour résoudre un problème de physique ou trouver les objets souvent responsables de collisions. - -Une fois que vous avez fini, n'oubliez pas de réactiver les propriétés physiques sinon vos avatars ne pourront pas bouger. - -Défaut : désactivé - </notification> - - <notification - - label="Objets souvent responsables de collision" - name="HelpRegionTopColliders" - > -Montre une liste des objets qui ont le plus de chances d'entrer en collision avec d'autres objets. Ces objets peuvent ralentir votre performance. Sélectionnez Affichage > Statistiques et regardez sous Simulator > Time > Sim Time (Physics) pour voir si les propriétés physiques prennent plus de 20 ms. - </notification> - - <notification - - label="Scripts souvent utilisés" - name="HelpRegionTopScripts" - > -Dresse une liste des objets qui passent le plus de temps à exécuter des scripts LSL. Ces objets peuvent ralentir votre performance. -Sélectionnez Affichage > Statistiques et regardez sous Simulator > Time > Script Time pour voir si les scripts prennent plus de 25 ms. - </notification> - - <notification - - label="Redémarrer la région" - name="HelpRegionRestart" - > -Redémarre le serveur en charge de la région après un avertissement de deux minutes. Tous les résidents dans cette région seront déconnectés. Les données de la région seront sauvegardées et réapparaîtront au bout de 90 secondes. - -Le redémarrage la région ne permet pas de résoudre la plupart des problèmes de performance. Les redémarrages ne doivent avoir lieu que si cela est vraiment nécessaire. - </notification> - - <notification - - label="Niveau de l'eau" - name="HelpRegionWaterHeight" - > -Il s'agit de la hauteur de l'eau en mètres. +Valeur par défaut : désactivé + </notification> + <notification label="Désactiver les collisions" name="HelpRegionDisableCollisions"> + Des objets physiques peuvent fortement réduire les performances d'une région. +Ouvrez la barre de statistiques (Ctrl-Maj-1) et vérifiez le FPS Physique (Physics FPS) de la section Simulateur. +Si le FPS est en dessous de 45, ouvrez la section Time située en fin de liste. Si le Script Time est au dessus de 25ms, cliquez sur le bouton Afficher les collisions les plus consommatrices. +Vous verrez le nom et l'emplacement des objets physiques éventuellement à l'origine du problème. + +Si vous décochez la case Désactiver les collisions et que vous cliquez sur Appliquer, toutes les collisions entre objets seront désactivées. Vous pourrez avoir besoin de cette fonction le temps d'arriver à l'emplacement des objets en cause. Une fois sur place, vérifiez que l''objet est bien responsable du problème (entre-t-il sans cesse en collision avec d'autres objets ?) Pour cela, vous devrez peut-être contacter le propriétaire de l'objet ou bien supprimer ou renvoyer l'objet. +Décochez la case Désactiver les collisions, puis cliquez sur le bouton Appliquer pour réactiver les collisions dans la région. + +Valeur par défaut : désactivé + </notification> + <notification label="Désactiver la physique" name="HelpRegionDisablePhysics"> + L'option Désactiver la physique est similaire à l'option Désactiver les collisions sauf qu'elle englobe tous les effets liés à la physique. Cela signifie que les objets n'entreront plus en collision et que les avatars ne pourront plus bouger. + +Vous ne devriez utiliser cette option que lorsque l'option Désactiver les collisions n'améliore pas sufisamment la performance de la région pour résoudre un problème de physique ou trouver les objets entrant en collision. + +Une fois que vous avez fini, n'oubliez pas de réactiver les propriétés physiques sinon les avatars ne pourront pas bouger. + +Valeur par défaut : désactivé + </notification> + <notification label="Afficher les collisions les plus consommatrices" name="HelpRegionTopColliders"> + Montre une liste des objets générant le plus de collisions avec d'autres objets. Ces objets peuvent ralentir les performances de votre région. Sélectionnez Affichage > Statistiques et regardez sous Simulator > Time > Sim Time (Physics) pour voir si le temps du moteur physique est au dessus de 20 ms. + </notification> + <notification label="Afficher les objets scriptés les plus consommateurs" name="HelpRegionTopScripts"> + Dresse une liste des objets dont les scripts consomment le plus de ressources. Ces objets peuvent ralentir la performance de votre région. +Sélectionnez Affichage > Statistiques et regardez sous Simulator > Time > Script Time pour voir si le temps des scripts est au dessus de 25 ms. + </notification> + <notification label="Redémarrer la région" name="HelpRegionRestart"> + Redémarre le serveur en charge de la région après deux minutes d'avertissement. Tous les résidents dans cette région seront déconnectés. Les données de la région seront sauvegardées et réapparaîtront au bout de 90 secondes. + +Le redémarrage de la région ne permet pas de résoudre la plupart des problèmes de performance. Les redémarrages ne doivent avoir lieu qu'en dernier recours. + </notification> + <notification label="Niveau de l'eau" name="HelpRegionWaterHeight"> + Il s'agit de la hauteur de l'eau en mètres. Si ce paramètre est différent de 20 et que vous avez de l'eau adjacente au bord du monde ou de l'eau « vide », il y aura un espace vide visible. -Défaut : 20 - </notification> +Valeur par défaut : 20 + </notification> + <notification label="Surélévation du terrain" name="HelpRegionTerrainRaise"> + Il s'agit de la distance (en mètres) à laquelle les propriétaires de parcelle peuvent surélever leur terrain, par rapport au terrain « figé » dont la hauteur est fixée par défaut. - <notification - - label="Surélévation du terrain" - name="HelpRegionTerrainRaise" - > -Il s'agit de la distance (en mètres) à laquelle les propriétaires de parcelle peuvent surélever leur terrain, par rapport au terrain « figé » dont la hauteur est fixée par défaut. +Valeur par défaut : 4 + </notification> + <notification label="Abaisser le terrain" name="HelpRegionTerrainLower"> + Il s'agit de la distance (en mètres) à laquelle les propriétaires de parcelle peuvent abaisser leur terrain, par rapport au terrain « figé » dont la hauteur est fixée par défaut. -Défaut : 4 - </notification> - - <notification - - label="Abaisser le terrain" - name="HelpRegionTerrainLower" - > -Il s'agit de la distance (en mètres) à laquelle les propriétaires de parcelle peuvent abaisser leur terrain, par rapport au terrain « figé » dont la hauteur est fixée par défaut. - -Défaut : -4 - </notification> - - <notification - - label="Charger le terrain au format RAW" - name="HelpRegionUploadRaw" - > -Ce bouton permet de charger un fichier .RAW dans la région où vous vous trouvez. +Valeur par défaut : -4 + </notification> + <notification label="Charger le terrain au format RAW" name="HelpRegionUploadRaw"> + Ce bouton permet de charger un fichier .RAW dans la région où vous vous trouvez. Ce fichier doit avoir les bonnes dimensions (RGB, 256 x 256) et 13 canaux. Le meilleur moyen de créer un fichier terrain est de télécharger le fichier RAW existant. Un bon moyen est de modifier le canal rouge (hauteur terrain) et de le charger. -Le chargement peut prendre jusqu'à 45 secondes. Veuillez noter que le chargement d'un fichier terrain ne déplacera pas les objets qui se trouvent sur le terrain, mais seulement le terrain et les permissions associées aux parcelles. Certains objets risquent d'aller sous la terre. +Le chargement peut prendre jusqu'à 45 secondes. Veuillez noter que le chargement d'un fichier terrain ne déplacera pas les objets qui se trouvent sur le terrain, mais seulement le terrain et les droits associés aux parcelles. Certains objets risquent d'aller sous la terre. Pour en savoir plus sur la modification de la hauteur des terrains d'une région, consultez l'Aide F1. - </notification> - - <notification - - label="Télécharger le terrain au format RAW" - name="HelpRegionDownloadRaw" - > -Ce bouton permet de télécharger un fichier contenant les données relatives à la hauteur du terrain, dimensions de la parcelle, les mises en vente ainsi que certaines permissions relatives à la parcelle pour cette région. Lorsque vous ouvrez le fichier avec un programme tel que Photoshop, vous devez indiquer les dimensions du document qui sont les suivantes : RGB, 256 x 256 avec 13 canaux. Le fichier terrain ne peut pas être ouvert différemment. + </notification> + <notification label="Télécharger le terrain au format RAW" name="HelpRegionDownloadRaw"> + Ce bouton permet de télécharger un fichier contenant les données relatives à la hauteur du terrain, dimensions de la parcelle, les mises en vente ainsi que certains droits relatifs à la parcelle pour cette région. Lorsque vous ouvrez le fichier avec un programme tel que Photoshop, vous devez indiquer les dimensions du document qui sont les suivantes : RGB, 256 x 256 avec 13 canaux. Le fichier terrain ne peut pas être ouvert différemment. Pour en savoir plus sur la modification de la hauteur des terrains d'une région, consultez l'Aide F1. - </notification> - - <notification - - label="Utiliser le soleil du domaine" - name="HelpRegionUseEstateSun" - > -Si vous cochez cette case, la position du soleil dans cette région sera la même que dans le reste du domaine. - -Défaut : activé - </notification> - - <notification - - label="Soleil fixe" - name="HelpRegionFixedSun" - > -Si vous cochez cette case, la position du soleil se fixe sur celle du curseur Phase et le soleil arrête de bouger. - -Défaut : désactivé - </notification> - - <notification - - label="Figer le terrain" - name="HelpRegionBakeTerrain" - > -Ce bouton permet d'enregistrer la forme actuelle du terrain comme nouvelle forme par défaut pour la région. Une fois figé, le terrain peut reprendre la forme enregistrée à partir de l'option Rétablir le terrain à la section Modifer le terrain. Le terrain figé est aussi le point de référence pour les limites de surélévation et d'abaissement. - </notification> - - <notification - - label="Gérants du domaine" - name="HelpEstateEstateManager" - > -Un gérant de domaine est un résident chargé du contrôle de la région et des paramètres du domaine. Un gérant de domaine peut modifier tous les paramètres, mais ne peut pas charger, télécharger ni figer de terrain. Un des pouvoirs principaux du gérant est de bannir ou d'autoriser un résident sur votre domaine. + </notification> + <notification label="Utiliser le soleil du domaine" name="HelpRegionUseEstateSun"> + Si vous cochez cette case, la position du soleil dans cette région sera la même que dans le reste du domaine. + +Valeur par défaut : activé + </notification> + <notification label="Soleil fixe" name="HelpRegionFixedSun"> + Si vous cochez cette case, la position du soleil se fixe sur celle du curseur Phase et le soleil arrête de bouger. + +Valeur par défaut : désactivé + </notification> + <notification label="Figer le terrain" name="HelpRegionBakeTerrain"> + Ce bouton permet d'enregistrer la forme actuelle du terrain comme nouvelle forme par défaut pour la région. Une fois figé, le terrain peut reprendre la forme enregistrée à partir de l'option Rétablir le terrain à la section Modifer le terrain. Le terrain figé est aussi le point de référence pour les limites de surélévation et d'abaissement. + </notification> + <notification label="Gérants du domaine" name="HelpEstateEstateManager"> + Un gérant de domaine est un résident chargé du contrôle de la région et des paramètres du domaine. Un gérant de domaine peut modifier tous les paramètres, mais ne peut pas charger, télécharger ni figer de terrain. Un des pouvoirs principaux du gérant est de bannir ou d'autoriser un résident sur votre domaine. Seuls les propriétaires de domaine peuvent ajouter ou supprimer des gérants de domaine. Lorsque vous choisissez un gérant de domaine, prenez un résident en qui vous avez confiance car vous serez en quelque sorte responsable de ses actions. - </notification> - - <notification - - label="Utiliser le temps universel" - name="HelpEstateUseGlobalTime" - > -Cette case permet au soleil de votre domaine de suivre la position du soleil sur les domaines Linden du continent. - -Défaut : activé - </notification> - - <notification - - label="Soleil fixe" - name="HelpEstateFixedSun" - > -Si vous cochez cette case, la position du soleil se fixe sur celle du curseur Phase et le soleil arrête de bouger. - </notification> - - <notification - - label="Accès public" - name="HelpEstateExternallyVisible" - > -Cette option vous permet de choisir quels résidents d'autres domaines peuvent pénétrer sur votre domaine sans devoir être ajoutés à la liste d'accès. - -Défaut : activé - </notification> - - <notification - - label="Autoriser la téléportation directe" - name="HelpEstateAllowDirectTeleport" - > -Lorsqu'elle est cochée, cette option permet aux résidents d'être téléportés à n'importe quel endroit sur votre domaine. Lorsque cette option n'est pas cochée, les résidents sont téléportés au téléhub le plus proche. - -Défaut : désactivé - </notification> - - <notification - - label="Autoriser l'accès" - name="HelpEstateAllowResident" - > -L'accès à ce domaine sera réservé aux résidents figurant dans cette liste et aux groupes ci-dessous. + </notification> + <notification label="Utiliser le temps universel" name="HelpEstateUseGlobalTime"> + Cette case permet au soleil de votre domaine de suivre la position du soleil sur les domaines Linden du continent. + +Valeur par défaut : activé + </notification> + <notification label="Soleil fixe" name="HelpEstateFixedSun"> + Si vous cochez cette case, la position du soleil se fixe sur celle du curseur Phase et le soleil arrête de bouger. + </notification> + <notification label="Accès public" name="HelpEstateExternallyVisible"> + Cette option vous permet de choisir quels résidents d'autres domaines peuvent pénétrer sur votre domaine sans devoir être ajoutés à la liste d'accès. + +Valeur par défaut : activé + </notification> + <notification label="Autoriser la téléportation directe" name="HelpEstateAllowDirectTeleport"> + Lorsqu'elle est cochée, cette option permet aux résidents d'être téléportés à n'importe quel endroit sur votre domaine. Lorsque cette option n'est pas cochée, les résidents sont téléportés au téléhub le plus proche. + +Valeur par défaut : désactivé + </notification> + <notification label="Autoriser l'accès" name="HelpEstateAllowResident"> + L'accès à ce domaine sera réservé aux résidents figurant dans cette liste et aux groupes ci-dessous. Cette option n'est disponible que lorsque la case Accès public est décochée. - </notification> - - <notification - - label="Autoriser l'accès de groupe" - name="HelpEstateAllowGroup" - > -L'accès à ce domaine sera réservé aux groupes figurant dans cette liste et aux résidents ci-dessous. Cette option n'est disponible que lorsque la case Accès public est décochée. - </notification> - - <notification - - label="Adresse e-mail où signaler une infraction" - name="HelpEstateAbuseEmailAddress" - > -Si vous utilisez une adresse e-mail valide, les rapports d'infraction de ce domaine iront à cette adresse. + </notification> + <notification label="Autoriser l'accès de groupe" name="HelpEstateAllowGroup"> + L'accès à ce domaine sera réservé aux groupes figurant dans cette liste et aux résidents ci-dessous. Cette option n'est disponible que lorsque la case Accès public est décochée. + </notification> + <notification label="Adresse e-mail où signaler une infraction" name="HelpEstateAbuseEmailAddress"> + Si vous utilisez une adresse e-mail valide, les rapports d'infraction de ce domaine iront à cette adresse. Si vous laissez ce champ vide, les rapports d'infraction seront envoyés à Linden Lab uniquement. - </notification> - - <notification - - label="Refuser l'accès" - name="HelpEstateBanResident" - > -Les résidents figurant sur cette liste ne peuvent pas pénétrer sur votre domaine, quels que soient les autres paramètres. - </notification> - - <notification - - label="Autoriser les chats vocaux" - name="HelpEstateVoiceChat" - > -Les parcelles de ce domaine peuvent avoir leurs propres canaux vocaux, ce qui permet aux résidents de communiquer avec leurs voisins. - -Défaut : désactivé - </notification> - - <notification - - label="Versions de voix non compatibles" - name="VoiceVersionMismatch" - > -Cette version de Second Life n'est pas compatible avec la fonctionnalité de chat vocal dans cette région. Vous devez mettre à jour Second Life pour que le chat vocal fonctionne correctement. - </notification> - - <notification - - label="Règlement du domaine" - name="HelpEstateCovenant" - > -Définir un règlement pour le domaine vous permet de vendre les parcelles de ce domaine. S'il n'y a pas de règlement, vous ne pouvez pas vendre le terrain. Si vous ne souhaitez pas indiquer de règlement ou donner de conseils aux acheteurs, laissez la section relative au règlement vide. + </notification> + <notification label="Refuser l'accès" name="HelpEstateBanResident"> + Les résidents figurant sur cette liste ne peuvent pas pénétrer sur votre domaine, quels que soient les autres paramètres. + </notification> + <notification label="Autoriser les chats vocaux" name="HelpEstateVoiceChat"> + Les parcelles de ce domaine peuvent avoir leurs propres canaux vocaux, ce qui permet aux résidents de communiquer avec leurs voisins. + +Valeur par défaut : désactivé + </notification> + <notification label="Versions de voix non compatibles" name="VoiceVersionMismatch"> + Cette version de Second Life n'est pas compatible avec la fonctionnalité de chat vocal dans cette région. Vous devez mettre à jour Second Life pour que le chat vocal fonctionne correctement. + </notification> + <notification label="Règlement du domaine" name="HelpEstateCovenant"> + Définir un règlement pour le domaine vous permet de vendre les parcelles de ce domaine. S'il n'y a pas de règlement, vous ne pouvez pas vendre le terrain. Si vous ne souhaitez pas indiquer de règlement ou donner de conseils aux acheteurs, laissez la section relative au règlement vide. Un règlement sert à communiquer des règles, des lignes directrices ou informations culturelles, ou simplement à expliquer vos attentes à un acheteur potentiel. Il peut s'agir de régulations concernant la construction, les options de paiement ou tout autre information que vous souhaitez faire passer au résident avant que l'achat n'ait lieu. L'acheteur est tenu d'accepter le règlement en cochant une case avant de pouvoir finaliser l'achat. Les règlements, lorsqu'ils existent, apparaissent toujours dans la boîte de dialogue À propos du terrain. - </notification> - - <notification - - label="Impossible d'acheter des objets" - name="BuyObjectOneOwner" - > -Impossible d'acheter simultanément des objets de propriétaires différents. + </notification> + <notification label="Impossible d'acheter des objets" name="BuyObjectOneOwner"> + Impossible d'acheter simultanément des objets de propriétaires différents. Veuillez ne sélectionner qu'un seul objet. - </notification> - - <notification - - label="Impossible d'acheter des contenus" - name="BuyContentsOneOnly" - > -Impossible d'acheter les contenus de plus d'un objet à la fois. + </notification> + <notification label="Impossible d'acheter des contenus" name="BuyContentsOneOnly"> + Impossible d'acheter les contenus de plus d'un objet à la fois. Veuillez ne sélectionner qu'un seul objet. - </notification> - - <notification - - label="Impossible d'acheter des contenus" - name="BuyContentsOneOwner" - > -Impossible d'acheter simultanément des objets de propriétaires différents. + </notification> + <notification label="Impossible d'acheter des contenus" name="BuyContentsOneOwner"> + Impossible d'acheter simultanément des objets de propriétaires différents. Veuillez ne sélectionner qu'un seul objet. - </notification> - - <notification - - name="BuyOriginal" - > -Acheter l'objet original pour [PRICE] L$ à [PRICE] ? + </notification> + <notification name="BuyOriginal"> + Acheter l'objet original pour [PRICE] L$ à [PRICE] ? Vous deviendrez le propriétaire de cet objet. Vous pourrez : Modifier : [MODIFYPERM] Copier : [COPYPERM] Revendre ou donner : [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -Acheter l'objet original pour [PRICE] L$ ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="BuyOriginalNoOwner"> + Acheter l'objet original pour [PRICE] L$ ? Vous deviendrez le propriétaire de cet objet. Vous pourrez : Modifier : [MODIFYPERM] Copier : [COPYPERM] Revendre ou donner : [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopy" - > -Acheter une copie pour [PRICE] L$ à [OWNER] ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="BuyCopy"> + Acheter une copie pour [PRICE] L$ à [OWNER] ? L'objet sera copié dans votre inventaire. Vous pourrez : Modifier : [MODIFYPERM] Copier : [COPYPERM] Revendre ou donner : [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -Acheter une copie pour [PRICE] L$ ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="BuyCopyNoOwner"> + Acheter une copie pour [PRICE] L$ ? L'objet sera copié dans votre inventaire. Vous pourrez : Modifier : [MODIFYPERM] Copier : [COPYPERM] Revendre ou donner : [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="BuyContents" - > -Acheter des contenus pour [PRICE] L$ à [OWNER] ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="BuyContents"> + Acheter des contenus pour [PRICE] L$ à [OWNER] ? Ils seront copiés dans votre inventaire. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -Acheter des contenus pour [PRICE] L$ ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="BuyContentsNoOwner"> + Acheter des contenus pour [PRICE] L$ ? Ils seront copiés dans votre inventaire. - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -Suite à cette transaction, vous allez : + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmPurchase"> + Suite à cette transaction, vous allez : [ACTION] Êtes-vous certain de vouloir effectuer cette transaction ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -Suite à cette transaction, vous allez : + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + Suite à cette transaction, vous allez : [ACTION] Êtes-vous certain de vouloir effectuer cette transaction ? Veuillez saisir à nouveau votre mot de passe et cliquer sur OK. - <form name="form"> - <button - name="ConfirmPurchase" - text="OK"/> - <button - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -Remarque : -Vous avez mis à jour l'emplacement de ce favori mais les autres détails resteront inchangés. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -Vous avez sélectionné des objets de l'inventaire qui ne peuvent pas être copiés. -Ces objets seront déplacés vers votre inventaire, et non pas copiés. + <form name="form"> + <button name="ConfirmPurchase" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="SetPickLocation"> + Remarque : +vous avez mis à jour l'emplacement de ce favori mais les autres détails resteront inchangés. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + Vous avez sélectionné des objets non copiables. +Ces objets seront déplacés dans votre inventaire et non pas copiés. Déplacer les objets de l'inventaire ? - <usetemplate - ignoretext="Lors du transfert d'un inventaire non reproductible depuis des objets" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -Vous avez sélectionné des objets de l'inventaire qui ne peuvent pas être copiés. Ces objets seront déplacés vers votre inventaire, et non pas copiés. -Étant donné que l'objet est scripté, déplacer ces objets vers votre inventaire risque de causer des problèmes au niveau du script. + <usetemplate ignoretext="Lors du transfert d'un inventaire non copiable depuis des objets" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromScriptedObject"> + Vous avez sélectionné des objets de l'inventaire qui ne peuvent pas être copiés. Ces objets seront déplacés vers votre inventaire, et non pas copiés. +L'objet les contenant est scripté, déplacer ces objets peut causer des problèmes au niveau du script. Déplacer les objets de l'inventaire ? - <usetemplate - ignoretext="Lors du transfert d'un inventaire non reproductible depuis des objets scriptés" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ClickActionNotPayable" - > -Avertissement : l'action du clic Payer l'objet a été défini mais ne fonctionnera que si un script est ajouté avec l'event money(). - <form name="form"> - <ignore name="ignore" - text="Lors du paramétrage de la fonction Payer sur des objets sans événement monétaire"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -Vous n'êtes autorisé à copier aucun élément dans cet objet. - </notification> - - <notification - - name="WebLaunchAccountHistory" - > -Aller sur le site de Second Life pour consulter l'historique de votre compte ? - <usetemplate - ignoretext="Lors du chargement de la page web contenant l'historique de votre compte" - name="okcancelignore" - notext="Annuler" - yestext="Aller sur cette page"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -Visiter les pages d'aide de Second Life ? - <usetemplate - ignoretext="Lors de la visite des pages d'aide de Second Life" - name="okcancelignore" - notext="Annuler" - yestext="Aller"/> - </notification> - - <notification - - name="ConfirmQuit" - > -Êtes-vous certain de vouloir quitter ? - <usetemplate - ignoretext="Lorsque vous quittez Second Life" - name="okcancelignore" - notext="Continuer" - yestext="Quitter"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -Utilisez cet outil pour signaler des infractions aux Conditions d'utilisation et aux Règles de la communauté. Voir : + <usetemplate ignoretext="Lors du transfert d'un inventaire non copiable depuis des objets scriptés" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ClickActionNotPayable"> + Avertissement : l'action du clic Payer l'objet a été défini mais ne fonctionnera que si un script est ajouté avec l'event money(). + <form name="form"> + <ignore name="ignore" text="Lors du paramétrage de la fonction Payer sur des objets sans événement monétaire"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + Vous n'êtes autorisé à copier aucun élément dans cet objet. + </notification> + <notification name="WebLaunchAccountHistory"> + Aller sur le site de Second Life pour consulter l'historique de votre compte ? + <usetemplate ignoretext="Lors du chargement de la page web contenant l'historique de votre compte" name="okcancelignore" notext="Annuler" yestext="Aller sur cette page"/> + </notification> + <notification name="ClickOpenF1Help"> + Visiter les pages d'aide de Second Life ? + <usetemplate ignoretext="Lors de la visite des pages d'aide de Second Life" name="okcancelignore" notext="Annuler" yestext="Aller"/> + </notification> + <notification name="ConfirmQuit"> + Êtes-vous certain de vouloir quitter ? + <usetemplate ignoretext="Lorsque vous quittez Second Life" name="okcancelignore" notext="Continuer" yestext="Quitter"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + Utilisez cet outil pour signaler des infractions aux Conditions d'utilisation et aux Règles de la communauté. Voir : http://secondlife.com/corporate/tos.php http://secondlife.com/corporate/cs.php @@ -3709,13 +1952,9 @@ http://secondlife.com/corporate/cs.php Lorsqu'elles sont signalées, toutes les infractions aux Conditions d'utilisation et aux Règles de la communauté font l'objet d'une enquête et sont résolues. Pour accéder aux détails de la résolution d'un incident, allez sur : http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -Important : ce rapport ira au propriétaire de la région dans laquelle vous êtes et non à Linden Lab. + </notification> + <notification name="HelpReportAbuseEmailEO"> + Important : ce rapport ira au propriétaire de la région dans laquelle vous êtes et non à Linden Lab. Pour aider les résidents et les visiteurs, le propriétaire de la région dans laquelle vous êtes a choisi de recevoir et de s'occuper de tous les rapports envoyés à partir de cette région. Linden Lab n'enquêtera pas sur les rapports que vous envoyez à partir de cet endroit. @@ -3723,13 +1962,9 @@ Le propriétaire de la région traitera les rapports en fonction des règles de (Les réglements sont visibles à partir du menu Monde > À propos du terrain.) La résolution de ce rapport ne s'applique qu'à cette région ; L'accès aux autres endroits de Second Life ne sera pas affecté par les résultats de cette enquête. Seul Linden Lab peut interdire l'accès à l'ensemble de Second Life. - </notification> - - <notification - - name="HelpReportBug" - > -N'utilisez cet outil que pour signaler des problèmes techniques et soyez aussi précis que possible. + </notification> + <notification name="HelpReportBug"> + N'utilisez cet outil que pour signaler des problèmes techniques et soyez aussi précis que possible. Vous pouvez répondre à l'e-mail automatique pour ajouter des détails à votre rapport. Tous les bugs signalés sont reproduits et évalués. Aucune réponse ne sera envoyée par e-mail. @@ -3739,222 +1974,110 @@ Si vous avez un problème technique, veuillez contacter le service clientèle à http://secondlife.com/community/support.php Remarque : les rapports incomplets ne feront pas l'objet d'une enquête. - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -Veuillez choisir une catégorie pour ce rapport d'infraction. + </notification> + <notification name="HelpReportAbuseSelectCategory"> + Veuillez choisir une catégorie pour ce rapport d'infraction. Le choix d'une catégorie nous permet de traiter les rapports d'infraction plus rapidement. - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -Veuillez choisir une catégorie pour ce bug. + </notification> + <notification name="HelpReportBugSelectCategory"> + Veuillez choisir une catégorie pour ce bug. Le choix d'une catégorie nous permet de traiter les bugs plus rapidement. - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -Veuillez saisir le nom du contrevenant. + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + Veuillez saisir le nom du contrevenant. Lorsque nous avons le nom du contrevenant, nous sommes en mesure de traiter les rapports plus rapidement. - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -Veuillez indiquer l'endroit où l'infraction a eu lieu. + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + Veuillez indiquer l'endroit où l'infraction a eu lieu. Les informations précises et exactes nous permettent de traiter les rapports plus rapidement. - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -Veuillez saisir un récapitulatif de l'infraction. + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + Veuillez saisir un récapitulatif de l'infraction. Les récapitulatifs précis nous permettent de traiter les rapports plus rapidement. - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -Veuillez saisir un récapitulatif du bug. + </notification> + <notification name="HelpReportBugSummaryEmpty"> + Veuillez saisir un récapitulatif du bug. Les récapitulatifs précis nous permettent de résoudre les bugs plus rapidement. - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -Veuillez saisir une description détaillée de l'infraction. + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + Veuillez saisir une description détaillée de l'infraction. Soyez aussi précis que possible et essayez de fournir des noms ainsi que des détails sur l'incident que vous signalez. Les descriptions précises nous permettent de traiter les rapports plus rapidement. - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -Veuillez saisir une description détaillée du bug. + </notification> + <notification name="HelpReportBugDetailsEmpty"> + Veuillez saisir une description détaillée du bug. Soyez aussi spécifique que possible et essayez d'indiquer les étapes à suivre pour reproduire le bug. Les descriptions précises nous permettent de résoudre les bugs plus rapidement. - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Cher résident, + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + Cher résident, Il semble que vous souhaitiez reporter une infraction à des droits de propriété intellectuelle. Pour signaler correctement cette infraction : -(1) Remplissez un rapport d'infraction. Vous pouvez soumettre un rapport d'infraction si vous pensez qu'un résident exploite le système de permissions de Second Life, par exemple en utilisant un CopyBot ou des outils similaires pour enfreindre des droits de propriété intellectuelle. Notre équipe chargée des infractions mènera une enquête et prendra les mesures nécessaires à l'encontre du résident non respectueux des Conditions d'utilisation ou des règles de la communauté. Sachez toutefois que l'équipe chargée des infractions ne supprimera pas de contenu à l'intérieur de Second Life. +(1) Remplissez un rapport d'infraction. Vous pouvez soumettre un rapport d'infraction si vous pensez qu'un résident exploite le système de droits de Second Life, par exemple en utilisant un CopyBot ou des outils similaires pour enfreindre des droits de propriété intellectuelle. Notre équipe chargée des infractions mènera une enquête et prendra les mesures nécessaires à l'encontre du résident non respectueux des Conditions d'utilisation ou des règles de la communauté. Sachez toutefois que l'équipe chargée des infractions ne supprimera pas de contenu à l'intérieur de Second Life. (2) Demandez à ce que du contenu à l'intérieur de Second Life soit supprimé. Pour demander à ce que du contenu soit supprimé de Second Life, vous devez soumettre un rapport d'infraction valide, tel que fourni dans notre Règlement contre les violations des droit d'auteurs (DMCA), à http://secondlife.com/corporate/dmca.php. -Si vous souhaitez toujours reporter cette infraction, veuillez fermer cette fenêtre et soumettre votre rapport. Vous devrez peut-être sélectionner la catégorie CopyBot ou exploitation abusive des permissions. +Si vous souhaitez toujours reporter cette infraction, veuillez fermer cette fenêtre et soumettre votre rapport. Vous devrez peut-être sélectionner la catégorie CopyBot ou exploitation abusive des droits. Merci, Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -Les composantes requises suivantes ne se trouvent pas dans [FLOATER]: + </notification> + <notification name="FailedRequirementsCheck"> + Les composantes requises suivantes ne se trouvent pas dans [FLOATER]: [COMPONENTS] - </notification> - - <notification - - label="Remplacer la pièce-jointe existante" - name="ReplaceAttachment" - > -Vous avez déjà un objet sur cette partie du corps. + </notification> + <notification label="Remplacer la pièce-jointe existante" name="ReplaceAttachment"> + Vous avez déjà un objet sur cette partie du corps. Voulez-vous le remplacer par l'objet sélectionné ? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Lors du remplacement de pièces-jointes existantes"/> - <button - ignore="Remplacer automatiquement" - name="Yes" - text="OK"/> - <button - ignore="Ne jamais remplacer" - name="No" - text="Annuler"/> - </form> - </notification> - - <notification - - label="Réponse si occupé(e)" - name="BusyModePay" - > -Vous êtes en mode occupé et vous ne recevrez donc aucun objet en échange de ce paiement. + <form name="form"> + <ignore name="ignore" save_option="true" text="Lors du remplacement de pièces-jointes existantes"/> + <button ignore="Remplacer automatiquement" name="Yes" text="OK"/> + <button ignore="Ne jamais remplacer" name="No" text="Annuler"/> + </form> + </notification> + <notification label="Réponse si occupé(e)" name="BusyModePay"> + Vous êtes en mode occupé et vous ne recevrez donc aucun objet en échange de ce paiement. Souhaitez-vous quitter le mode occupé avant de terminer cette transaction ? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Lorsque vous envoyez de l'argent à une personne en mode Occupé"/> - <button - ignore="Toujours quitter le mode occupé" - name="Yes" - text="OK"/> - <button - ignore="Ne jamais quitter le mode occupé" - name="No" - text="Annuler"/> - </form> - </notification> - - <notification - - name="ConfirmEmptyTrash" - > -Êtes-vous certain de vouloir supprimer le contenu de votre corbeille de manière permanente  ? - <usetemplate - ignoretext="Lorsque vous videz la corbeille de l'inventaire" - name="okcancelignore" - notext="Annuler" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmClearBrowserCache" - > -Êtes-vous certain de vouloir vider le cache de votre navigateur ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Oui"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -Êtes-vous certain de vouloir supprimer vos cookies ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Oui"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -Êtes-vous certain de vouloir supprimer la liste des URL enregistrées ? - <usetemplate - name="okcancelbuttons" - notext="Annuler" - yestext="Oui"/> - </notification> - - <notification - - name="ConfirmEmptyLostAndFound" - > -Êtes-vous certain de vouloir supprimer le contenu de votre dossier Objets trouvés de manière permanente ? - <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-papier : + <form name="form"> + <ignore name="ignore" save_option="true" text="Lorsque vous envoyez de l'argent à une personne en mode Occupé"/> + <button ignore="Toujours quitter le mode occupé" name="Yes" text="OK"/> + <button ignore="Ne jamais quitter le mode occupé" name="No" text="Annuler"/> + </form> + </notification> + <notification name="ConfirmEmptyTrash"> + Êtes-vous certain de vouloir supprimer le contenu de votre corbeille de manière permanente  ? + <usetemplate ignoretext="Lorsque vous videz la corbeille de l'inventaire" name="okcancelignore" notext="Annuler" yestext="OK"/> + </notification> + <notification name="ConfirmClearBrowserCache"> + Êtes-vous certain de vouloir vider le cache de votre navigateur ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Oui"/> + </notification> + <notification name="ConfirmClearCookies"> + Êtes-vous certain de vouloir supprimer vos cookies ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Oui"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + Êtes-vous certain de vouloir supprimer la liste des URL enregistrées ? + <usetemplate name="okcancelbuttons" notext="Annuler" yestext="Oui"/> + </notification> + <notification name="ConfirmEmptyLostAndFound"> + Êtes-vous certain de vouloir supprimer le contenu de votre dossier Objets trouvés de manière permanente ? + <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 : [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"/> - </form> - </notification> - - <notification - - name="GraphicsPreferencesHelp" - > -Ce menu permet de contrôler la taille de la fenêtre et la résolution, ainsi que la qualité des graphiques client. Les préférences de l'interface graphique vous permettent de choisir entre 4 niveaux de graphiques : Faible, Moyen, Élevé et Ultra. Personnalisez vos options graphiques en cliquant sur le bouton Personnaliser et en changeant les paramètres suivants : + <form name="form"> + <ignore name="ignore" text="Lorsque vous copiez une SLURL dans votre presse-papier"/> + </form> + </notification> + <notification name="GraphicsPreferencesHelp"> + Ce menu permet de contrôler la taille de la fenêtre et la résolution, ainsi que la qualité des graphiques client. Les préférences de l'interface graphique vous permettent de choisir entre 4 niveaux de graphiques : Faible, Moyen, Élevé et Ultra. Personnalisez vos options graphiques en cliquant sur le bouton Personnaliser et en changeant les paramètres suivants : Effets : active ou désactive les différents types de shaders pixels. @@ -3973,76 +2096,35 @@ Détails des rendus : définit le niveau de détail ou le nombre de polygones u Sources lumineuses : définit les types de lumières que vous souhaitez faire apparaître. Rendu du terrain : définit le niveau de détail que vous souhaitez utiliser dans la texture du terrain. - </notification> - - <notification - - name="WLSavePresetAlert" - > -Voulez-vous écraser l'option précédemment enregistrée ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="WLDeletePresetAlert" - > -Voulez-vous supprimer [SKY] ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="WLNoEditDefault" - > -Vous ne pouvez pas éditer ou supprimer un préréglage par défaut. - </notification> - - <notification - - name="WLMissingSky" - > -Une dossier semble manquer au Cycle du jour : [SKY]. - </notification> - - <notification - - name="PPSaveEffectAlert" - > -Certains effets post-traitement existent. Voulez-vous quand même écraser ce fichier ? - <usetemplate - name="okcancelbuttons" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="HelpEditSky" - > -Pour créer et sauvegarder plusieurs ciels, utilisez les curseurs WindLight. - </notification> - - <notification - - name="HelpEditDayCycle" - > -Choisissez quel ciel apparaît au cours de la journée. - </notification> - - <notification - - name="EnvSettingsHelpButton" - > -Ces paramètres permettent de modifier l'environnement local sur votre ordinateur. Pour que vous ayez accès à tous les paramètres, votre carte graphique doit prendre en charge les effets atmosphériques. - -Pour changer les différentes phases de la journée sur votre visualisateur, utilisez le curseur Heure de la journée. + </notification> + <notification name="WLSavePresetAlert"> + Voulez-vous écraser l'option précédemment enregistrée ? + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="WLDeletePresetAlert"> + Voulez-vous supprimer [SKY] ? + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="WLNoEditDefault"> + Vous ne pouvez pas éditer ou supprimer un préréglage par défaut. + </notification> + <notification name="WLMissingSky"> + Une dossier semble manquer au Cycle du jour : [SKY]. + </notification> + <notification name="PPSaveEffectAlert"> + Certains effets post-traitement existent. Voulez-vous quand même écraser ce fichier ? + <usetemplate name="okcancelbuttons" notext="Non" yestext="Oui"/> + </notification> + <notification name="HelpEditSky"> + Pour créer et sauvegarder plusieurs ciels, utilisez les curseurs WindLight. + </notification> + <notification name="HelpEditDayCycle"> + Choisissez quel ciel apparaît au cours de la journée. + </notification> + <notification name="EnvSettingsHelpButton"> + Ces paramètres permettent de modifier l'environnement local sur votre ordinateur. Pour que vous ayez accès à tous les paramètres, votre carte graphique doit prendre en charge les effets atmosphériques. + +Pour changer les différentes phases de la journée dans le client, utilisez le curseur Heure de la journée. Le curseur Couverture nuageuse permet de contrôler le nombre de nuages dans le ciel. @@ -4055,13 +2137,9 @@ Pour synchroniser l'heure du jour sur celle de la région, cliquez sur Util En cliquant sur le bouton Ciel Avancé, vous aurez accès à tous les réglages relatifs au ciel. En cliquant sur le bouton Eau Avancée, vous aurez accès à tous les réglages relatifs à l'eau. - </notification> - - <notification - - name="HelpDayCycle" - > -L'éditeur du cycle du jour vous permet de contrôler le ciel au cours du cycle jour/nuit de second Life. C'est ce même cycle qui est contrôlé par le curseur Heure de la journée dans l'éditeur d'environnement basique. + </notification> + <notification name="HelpDayCycle"> + L'éditeur du cycle du jour vous permet de contrôler le ciel au cours du cycle jour/nuit de second Life. C'est ce même cycle qui est contrôlé par le curseur Heure de la journée dans l'éditeur d'environnement basique. L'éditeur du jour fonctionne grâce au réglage d'images-clés. Ces images-clés sont représentées par les marques grises sur la ligne du temps et ont des préréglages qui leurs sont associées. Au cours de la journée et de la nuit, le ciel WindLight s'anime en passant d'une clé à l'autre. @@ -4072,1661 +2150,860 @@ Vous pouvez définir la position d'une clé en la faisant glisser le long d La Durée du cycle contrôle la durée d'une « journée ». Si vous choisissez une valeur basse (2mn par exemple), cela signifie que toutes les animations de votre journée de 24h se dérouleront en 2mn seulement ! Une fois satisfait de vos choix, utilisez les boutons Jouer et Stop ! pour prévisualiser les résultats. Pour voir l'animation, vous pouvez aussi bouger la flèche jaune au dessus de la ligne du temps. Si vous sélectionnez l'option Utiliser heure domaine, vous synchronisez la durée de votre journée et votre heure avec celle du cycle du jour du domaine. Une fois que vous êtes satisfait de votre Cycle du jour, vous pouvez le sauvegarder et le charger grâce aux boutons Enregistrer jour test et Charger Jour Test. Veuillez noter que pour l'instant, nous ne pouvez avoir qu'un seul Cycle du jour. - </notification> - - <notification - - name="HelpBlueHorizon" - > -Utilisez les curseurs Rouge/Vert/Bleu (RVB) pour ajuster la couleur du ciel. Pour déplacer les trois curseurs en même temps, utilisez le curseur Intensité. - </notification> - - <notification - - name="HelpHazeHorizon" - > -Le paramètre Quantité de brume est l'un des plus utiles pour ajuster l'exposition lumineuse de la scène. + </notification> + <notification name="HelpBlueHorizon"> + Utilisez les curseurs Rouge/Vert/Bleu (RVB) pour ajuster la couleur du ciel. Pour déplacer les trois curseurs en même temps, utilisez le curseur Intensité. + </notification> + <notification name="HelpHazeHorizon"> + Le paramètre Quantité de brume est l'un des plus utiles pour ajuster l'exposition lumineuse de la scène. Il permet de simuler de nombreux paramètres d'exposition, tels que les voiles blancs créés par le soleil ou des lumières plus foncées. - </notification> - - <notification - - name="HelpBlueDensity" - > -La Densité du bleu affecte la saturation générale des couleurs du ciel et du brouillard. Si vous déplacez le curseur Intensité (I) vers la droite, les couleurs deviennent plus vives et plus vibrantes. Si vous le déplacez complètement à gauche, les couleurs deviennent plus fades, puis finalement noires et blanches. Pour paramétrer avec précision la couleur du ciel, vous pouvez contrôler chacun des éléments de la saturation à l'aide des curseurs Rouge/Vert/Bleu (RVB). - </notification> - - <notification - - name="HelpHazeDensity" - > -Le paramètre Densité de la brume permet de contrôler le niveau de brume grisâtre dans l'atmosphère. Ce paramètre est utile pour simuler les scènes dans lesquelles il y a beaucoup de fumée et de substances polluantes émises par l'homme. Il est également utile pour simuler le brouillard et la brume. - </notification> - - <notification - - name="HelpDensityMult" - > -Utilisez le Multiplicateur de densité pour modifier la densité atmosphérique générale. Une valeur basse donne l'impression d'un air « léger » alors qu'une valeur élevée donne l'impression d'un air « lourd » et enfumé. - </notification> - - <notification - - name="HelpDistanceMult" - > -Ajuste la distance perçue par WindLight. + </notification> + <notification name="HelpBlueDensity"> + La Densité du bleu affecte la saturation générale des couleurs du ciel et du brouillard. Si vous déplacez le curseur Intensité (I) vers la droite, les couleurs deviennent plus vives et plus vibrantes. Si vous le déplacez complètement à gauche, les couleurs deviennent plus fades, puis finalement noires et blanches. Pour paramétrer avec précision la couleur du ciel, vous pouvez contrôler chacun des éléments de la saturation à l'aide des curseurs Rouge/Vert/Bleu (RVB). + </notification> + <notification name="HelpHazeDensity"> + Le paramètre Densité de la brume permet de contrôler le niveau de brume grisâtre dans l'atmosphère. Ce paramètre est utile pour simuler les scènes dans lesquelles il y a beaucoup de fumée et de substances polluantes émises par l'homme. Il est également utile pour simuler le brouillard et la brume. + </notification> + <notification name="HelpDensityMult"> + Utilisez le Multiplicateur de densité pour modifier la densité atmosphérique générale. Une valeur basse donne l'impression d'un air « léger » alors qu'une valeur élevée donne l'impression d'un air « lourd » et enfumé. + </notification> + <notification name="HelpDistanceMult"> + Ajuste la distance perçue par WindLight. La valeur zéro désactive l'influence de WindLight sur le terrain et les objets. Les valeurs supérieures à 1 simulent des distances plus importantes pour des effets atmosphériques plus épais. - </notification> - - <notification - - name="HelpMaxAltitude" - > -L'Altitude max. ajuste les calculs de WindLight lors de la computation de la lumière atmosphérique. Quand la fin de la journée approche, il est utile pour ajuster la « profondeur » du coucher de soleil. - </notification> - - <notification - - name="HelpSunlightColor" - > -Ajuste la couleur et l'intensité de la lumière directe de la scène. - </notification> - - <notification - - name="HelpSunAmbient" - > -Ajuste la couleur et l'intensité de la lumière atmosphérique ambiante. - </notification> - - <notification - - name="HelpSunGlow" - > -Le curseur Taille contrôle la taille du soleil. + </notification> + <notification name="HelpMaxAltitude"> + L'Altitude max. ajuste les calculs de WindLight lors de la computation de la lumière atmosphérique. Quand la fin de la journée approche, il est utile pour ajuster la « profondeur » du coucher de soleil. + </notification> + <notification name="HelpSunlightColor"> + Ajuste la couleur et l'intensité de la lumière directe de la scène. + </notification> + <notification name="HelpSunAmbient"> + Ajuste la couleur et l'intensité de la lumière atmosphérique ambiante. + </notification> + <notification name="HelpSunGlow"> + Le curseur Taille contrôle la taille du soleil. Le curseur Netteté permet de rendre le soleil plus ou moins flou dans le ciel. - </notification> - - <notification - - name="HelpSceneGamma" - > -Ajuste la distribution de clair et de foncé sur l'écran. - </notification> - - <notification - - name="HelpStarBrightness" - > -Vous permet de contrôler l'intensité des étoiles dans le ciel. - </notification> - - <notification - - name="HelpTimeOfDay" - > -Contrôle la position du soleil dans le ciel. + </notification> + <notification name="HelpSceneGamma"> + Ajuste la distribution de clair et de foncé sur l'écran. + </notification> + <notification name="HelpStarBrightness"> + Vous permet de contrôler l'intensité des étoiles dans le ciel. + </notification> + <notification name="HelpTimeOfDay"> + Contrôle la position du soleil dans le ciel. Même chose que l'élévation. - </notification> - - <notification - - name="HelpEastAngle" - > -Contrôle la position du soleil dans le ciel. + </notification> + <notification name="HelpEastAngle"> + Contrôle la position du soleil dans le ciel. Même chose que l'azimut. - </notification> - - <notification - - name="HelpCloudColor" - > -Modifie la couleur des nuages. Il est recommandé de laisser les nuages en blanc mais vous pouvez aussi faire preuve de créativité... - </notification> - - <notification - - name="HelpCloudDetail" - > -Contrôle le détail de l'image placée sur l'image du nuage principal. X et Y contrôlent sa position. D (Densité) permet de rendre les nuages plus ou moins pleins ou plus ou moins fracturés. - </notification> - - <notification - - name="HelpCloudDensity" - > -Vous permet de contrôler la position des nuages avec les curseurs X et Y ainsi que leur densité avec le curseur D. - </notification> - - <notification - - name="HelpCloudCoverage" - > -Contrôle la surface du ciel couverte par les nuages. - </notification> - - <notification - - name="HelpCloudScale" - > -Contrôle l'échelle de l'image des nuages sur le dôme du ciel. - </notification> - - <notification - - name="HelpCloudScrollX" - > -Contrôle la vitesse des nuages sur l'axe des X. - </notification> - - <notification - - name="HelpCloudScrollY" - > -Contrôle la vitesse des nuages sur l'axe des Y. - </notification> - - <notification - - name="HelpClassicClouds" - > -Cochez cette option pour utiliser les anciens nuages de Second Life en plus des nuages WindLight. - </notification> - - <notification - - name="HelpWaterFogColor" - > -Permet de sélectionner la couleur du brouillard sous l'eau. - </notification> - - <notification - - name="HelpWaterFogDensity" - > -Contrôle la densité du brouillard sous l'eau, ainsi que votre visibilité. - </notification> - - <notification - - name="HelpUnderWaterFogMod" - > -Modifie l'effet créé par l'option Densité du brouillard pour contrôler votre visibilité quand votre avatar est sous l'eau. - </notification> - - <notification - - name="HelpWaterGlow" - > -Contrôle l'éclat de l'eau à la surface. - </notification> - - <notification - - name="HelpWaterNormalScale" - > -Contrôle l'échelle des trois vaguelettes qui forment l'eau. - </notification> - - <notification - - name="HelpWaterFresnelScale" - > -Contrôle la quantité de lumière réfléchie à des angles différents. - </notification> - - <notification - - name="HelpWaterFresnelOffset" - > -Contrôle l'intensité de la lumière réfléchie. - </notification> - - <notification - - name="HelpWaterScaleAbove" - > -Contrôle la quantité de lumière réfractée lorsque votre avatar regarde au dessus de l'eau. - </notification> - - <notification - - name="HelpWaterScaleBelow" - > -Contrôle la quantité de lumière réfractée lorsque votre avatar est sous l'eau. - </notification> - - <notification - - name="HelpWaterBlurMultiplier" - > -Contrôle le mélange reflets/vagues. - </notification> - - <notification - - name="HelpWaterNormalMap" - > -Contrôle quelle normal map est posée sur l'eau pour déterminer la réflection/réfraction. - </notification> - - <notification - - name="HelpWaterWave1" - > -Contrôle dans quelle direction et à quelle vitesse la version grande échelle de la normal map se déplace sur l'axe des X et l'axe des Y. - </notification> - - <notification - - name="HelpWaterWave2" - > -Contrôle dans quelle direction et à quelle vitesse la version grande échelle de la normal map se déplace sur l'axe des X et l'axe des Y. - </notification> - - <notification - - name="NewSkyPreset" - > -Nommez le nouveau ciel. - <form name="form"> - <input name="message" type="text"> -Nouveau préréglage - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="ExistsSkyPresetAlert" - > -Ce préréglage existe déjà  ! - </notification> - - <notification - - name="NewWaterPreset" - > -Nommez ce nouveau préréglage d'eau. - <form name="form"> - <input name="message" type="text"> -Nouveau préréglage - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="ExistsWaterPresetAlert" - > -Ce préréglage existe déjà  ! - </notification> - - <notification - - name="WaterNoEditDefault" - > -Vous ne pouvez pas éditer ou supprimer un préréglage par défaut. - </notification> - - <notification - - name="ChatterBoxSessionStartError" - > -Impossible de démarrer une nouvelle session de chat avec [RECIPIENT]. + </notification> + <notification name="HelpCloudColor"> + Modifie la couleur des nuages. Il est recommandé de laisser les nuages en blanc mais vous pouvez aussi faire preuve de créativité... + </notification> + <notification name="HelpCloudDetail"> + Contrôle le détail de l'image placée sur l'image du nuage principal. X et Y contrôlent sa position. D (Densité) permet de rendre les nuages plus ou moins pleins ou plus ou moins fracturés. + </notification> + <notification name="HelpCloudDensity"> + Vous permet de contrôler la position des nuages avec les curseurs X et Y ainsi que leur densité avec le curseur D. + </notification> + <notification name="HelpCloudCoverage"> + Contrôle la surface du ciel couverte par les nuages. + </notification> + <notification name="HelpCloudScale"> + Contrôle l'échelle de l'image des nuages sur le dôme du ciel. + </notification> + <notification name="HelpCloudScrollX"> + Contrôle la vitesse des nuages sur l'axe des X. + </notification> + <notification name="HelpCloudScrollY"> + Contrôle la vitesse des nuages sur l'axe des Y. + </notification> + <notification name="HelpClassicClouds"> + Cochez cette option pour utiliser les anciens nuages de Second Life en plus des nuages WindLight. + </notification> + <notification name="HelpWaterFogColor"> + Permet de sélectionner la couleur du brouillard sous l'eau. + </notification> + <notification name="HelpWaterFogDensity"> + Contrôle la densité du brouillard sous l'eau, ainsi que votre visibilité. + </notification> + <notification name="HelpUnderWaterFogMod"> + Modifie l'effet créé par l'option Densité du brouillard pour contrôler votre visibilité quand votre avatar est sous l'eau. + </notification> + <notification name="HelpWaterGlow"> + Contrôle l'éclat de l'eau à la surface. + </notification> + <notification name="HelpWaterNormalScale"> + Contrôle l'échelle des trois vaguelettes qui forment l'eau. + </notification> + <notification name="HelpWaterFresnelScale"> + Contrôle la quantité de lumière réfléchie à des angles différents. + </notification> + <notification name="HelpWaterFresnelOffset"> + Contrôle l'intensité de la lumière réfléchie. + </notification> + <notification name="HelpWaterScaleAbove"> + Contrôle la quantité de lumière réfractée lorsque votre avatar regarde au dessus de l'eau. + </notification> + <notification name="HelpWaterScaleBelow"> + Contrôle la quantité de lumière réfractée lorsque votre avatar est sous l'eau. + </notification> + <notification name="HelpWaterBlurMultiplier"> + Contrôle le mélange reflets/vagues. + </notification> + <notification name="HelpWaterNormalMap"> + Contrôle quelle normal map est posée sur l'eau pour déterminer la réflection/réfraction. + </notification> + <notification name="HelpWaterWave1"> + Contrôle dans quelle direction et à quelle vitesse la version grande échelle de la normal map se déplace sur l'axe des X et l'axe des Y. + </notification> + <notification name="HelpWaterWave2"> + Contrôle dans quelle direction et à quelle vitesse la version grande échelle de la normal map se déplace sur l'axe des X et l'axe des Y. + </notification> + <notification name="NewSkyPreset"> + Nommez le nouveau ciel. + <form name="form"> + <input name="message" type="text"> + Nouveau préréglage + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + Ce préréglage existe déjà  ! + </notification> + <notification name="NewWaterPreset"> + Nommez ce nouveau préréglage d'eau. + <form name="form"> + <input name="message" type="text"> + Nouveau préréglage + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + Ce préréglage existe déjà  ! + </notification> + <notification name="WaterNoEditDefault"> + Vous ne pouvez pas éditer ou supprimer un préréglage par défaut. + </notification> + <notification name="ChatterBoxSessionStartError"> + Impossible de démarrer une nouvelle session de chat avec [RECIPIENT]. [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ForceCloseChatterBoxSession" - > -Vous devez terminer votre session de chat avec [NAME]. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + Vous devez terminer votre session de chat avec [NAME]. [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="Cannot_Purchase_an_Attachment" - > -Les objets qui font partie d'une pièce-jointe ne peuvent pas être achetés. - </notification> - - <notification - - label="À propos des requêtes pour les permissions de débit" - name="DebitPermissionDetails" - > -Accepter cette requête donne au script la permission de prélever des dollars Linden (L$) sur votre compte de manière continue. Pour révoquer cette permission, le propriétaire de l'objet doit supprimer l'objet ou bien réinitialiser les scripts dans l'objet. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AutoWearNewClothing" - > -Voulez-vous automatiquement porter l'habit que vous créez ? - <usetemplate - ignoretext="Porter automatiquement" - name="okcancelignore" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="NotAgeVerified" - > -Pour que vous puissiez accéder à cette parcelle, votre âge doit être vérifié. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + Les objets qui font partie d'une pièce-jointe ne peuvent pas être achetés. + </notification> + <notification label="À propos des requêtes pour les autorisations de débit" name="DebitPermissionDetails"> + Accepter cette requête donne au script l'autorisation de prélever des dollars Linden (L$) sur votre compte de manière continue. Pour révoquer cette autorisation, le propriétaire de l'objet doit supprimer l'objet ou bien réinitialiser les scripts dans l'objet. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + Voulez-vous automatiquement porter l'habit que vous créez ? + <usetemplate ignoretext="Porter automatiquement" name="okcancelignore" notext="Non" yestext="Oui"/> + </notification> + <notification name="NotAgeVerified"> + Pour que vous puissiez accéder à cette parcelle, votre âge doit être vérifié. Voulez-vous aller sur le site de Second Life pour vérifier votre âge ? [_URL] - <url option="0" name="url"> - + <url name="url" option="0"> https://secondlife.com/account/verification.php?lang=fr - </url> - <usetemplate - ignoretext="Avertir si l'âge n'a pas été vérifié" - name="okcancelignore" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="Cannot enter parcel: no payment info on file" - > -Avant de pouvoir pénétrer sur cette parcelle, vous devez enregistrer vos informations de paiement. + </url> + <usetemplate ignoretext="Avertir si l'âge n'a pas été vérifié" name="okcancelignore" notext="Non" yestext="Oui"/> + </notification> + <notification name="Cannot enter parcel: no payment info on file"> + Avant de pouvoir pénétrer sur cette parcelle, vous devez enregistrer vos informations de paiement. Voulez-vous aller sur le site de Second Life pour enregistrer ces informations ? [_URL] - <url option="0" name="url"> - + <url name="url" option="0"> https://secondlife.com/account/index.php?lang=fr - </url> - <usetemplate - ignoretext="Avertir si les informations de paiement ne sont pas fournies" - name="okcancelignore" - notext="Non" - yestext="Oui"/> - </notification> - - <notification - - name="MissingString" - > -The string [STRING_NAME] is missing from strings.xml - </notification> - - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> - - <notification - - name="Cancelled" - > -Annulé - </notification> - - <notification - - name="CancelledSit" - > -Action annulée - </notification> - - <notification - - name="CancelledAttach" - > -Attachement annulé - </notification> - - <notification - - name="ReplacedMissingWearable" - > -Habits et parties du corps manquants remplacés par les éléments par défaut. - </notification> - - <notification - - name="GroupNotice" - > -Sujet : [SUBJECT], Message : [MESSAGE] - </notification> - - <notification - - name="FriendOnline" - > -[FIRST] [LAST] est connecté(e) - </notification> - - <notification - - name="FriendOffline" - > -[FIRST] [LAST] est déconnecté(e) - </notification> - - <notification - - name="AddSelfFriend" - > -Vous ne pouvez pas devenir ami avec vous-même. - </notification> - - <notification - - name="UploadingAuctionSnapshot" - > -Importation de photos SL et Web en cours + </url> + <usetemplate ignoretext="Avertir si les informations de paiement ne sont pas fournies" name="okcancelignore" notext="Non" yestext="Oui"/> + </notification> + <notification name="MissingString"> + The string [STRING_NAME] is missing from strings.xml + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + Annulé + </notification> + <notification name="CancelledSit"> + Action annulée + </notification> + <notification name="CancelledAttach"> + Attachement annulé + </notification> + <notification name="ReplacedMissingWearable"> + Habits et parties du corps manquants remplacés par les éléments par défaut. + </notification> + <notification name="GroupNotice"> + Sujet : [SUBJECT], Message : [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] est connecté(e) + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] est déconnecté(e) + </notification> + <notification name="AddSelfFriend"> + Vous ne pouvez pas devenir ami avec vous-même. + </notification> + <notification name="UploadingAuctionSnapshot"> + Importation de photos SL et Web en cours (prend environ 5 minutes…) - </notification> - - <notification - - name="UploadPayment" - > -Le chargement a coûté [AMOUNT] L$. - </notification> - - <notification - - name="UploadWebSnapshotDone" - > -Photo Web importée - </notification> - - <notification - - name="UploadSnapshotDone" - > -Photo SL importée - </notification> - - <notification - - name="TerrainDownloaded" - > -Fichier terrain.raw téléchargé - </notification> - - <notification - - name="GestureMissing" - > -Geste [NAME] absent de la base de données. - </notification> - - <notification - - name="UnableToLoadGesture" - > -Impossible de charger le geste [NAME]. + </notification> + <notification name="UploadPayment"> + Le chargement a coûté [AMOUNT] L$. + </notification> + <notification name="UploadWebSnapshotDone"> + Photo Web importée + </notification> + <notification name="UploadSnapshotDone"> + Photo SL importée + </notification> + <notification name="TerrainDownloaded"> + Fichier terrain.raw téléchargé + </notification> + <notification name="GestureMissing"> + Geste [NAME] absent de la base de données. + </notification> + <notification name="UnableToLoadGesture"> + Impossible de charger le geste [NAME]. Merci de réessayer. - </notification> - - <notification - - name="LandmarkMissing" - > -Repère absent de la base de données. - </notification> - - <notification - - name="UnableToLoadLandmark" - > -Impossible de charger le repère. Merci de réessayer. - </notification> - - <notification - - name="CapsKeyOn" - > -La touche Verr.maj est activée. + </notification> + <notification name="LandmarkMissing"> + Repère absent de la base de données. + </notification> + <notification name="UnableToLoadLandmark"> + Impossible de charger le repère. Merci de réessayer. + </notification> + <notification name="CapsKeyOn"> + La touche Verr.maj est activée. Ce mode modifie le mot de passe que vous saisissez, vous devriez le quitter. - </notification> - - <notification - - name="NotecardMissing" - > -Note absente de la base de données. - </notification> - - <notification - - name="NotecardNoPermissions" - > -Permissions insuffisantes pour voir la note. - </notification> - - <notification - - name="RezItemNoPermissions" - > -Permissions insuffisantes pour rezzer l'objet. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Impossible de charger la note. -Merci de réessayer. - </notification> - - <notification - - name="ScriptMissing" - > -Script absent de la base de données. - </notification> - - <notification - - name="ScriptNoPermissions" - > -Permissions insuffisantes pour voir le script. - </notification> - - <notification - - name="UnableToLoadScript" - > -Impossible de charger le script. Merci de réessayer. - </notification> - - <notification - - name="IncompleteInventory" - > -Tous les éléments que vous souhaitez transférer ne sont pas encore disponibles sur le serveur. + </notification> + <notification name="NotecardMissing"> + Note absente de la base de données. + </notification> + <notification name="NotecardNoPermissions"> + Permissions insuffisantes pour voir la note. + </notification> + <notification name="RezItemNoPermissions"> + Permissions insuffisantes pour rezzer l'objet. + </notification> + <notification name="UnableToLoadNotecard"> + Impossible de lire les données de la note actuellement. + </notification> + <notification name="ScriptMissing"> + Script absent de la base de données. + </notification> + <notification name="ScriptNoPermissions"> + Permissions insuffisantes pour voir le script. + </notification> + <notification name="UnableToLoadScript"> + Impossible de charger le script. Merci de réessayer. + </notification> + <notification name="IncompleteInventory"> + Tous les éléments que vous souhaitez transférer ne sont pas encore disponibles sur le serveur. Merci d'essayer à nouveau dans une minute. - </notification> - - <notification - - name="CannotModifyProtectedCategories" - > -Vous ne pouvez pas modifier de catégories protégées. - </notification> - - <notification - - name="CannotRemoveProtectedCategories" - > -Vous ne pouvez pas supprimer de catégories protégées. - </notification> - - <notification - - name="OfferedCard" - > -Vous avez offert votre carte de visite à [FIRST] [LAST] - </notification> - - <notification - - name="UnableToBuyWhileDownloading" - > -Achat impossible durant le chargement de l'objet. + </notification> + <notification name="CannotModifyProtectedCategories"> + Vous ne pouvez pas modifier de catégories protégées. + </notification> + <notification name="CannotRemoveProtectedCategories"> + Vous ne pouvez pas supprimer de catégories protégées. + </notification> + <notification name="OfferedCard"> + Vous avez offert votre carte de visite à [FIRST] [LAST] + </notification> + <notification name="UnableToBuyWhileDownloading"> + Achat impossible durant le chargement de l'objet. Merci de réessayer. - </notification> - - <notification - - name="UnableToLinkWhileDownloading" - > -Impossible de lier durant le chargement de l'objet. + </notification> + <notification name="UnableToLinkWhileDownloading"> + Impossible de lier durant le chargement de l'objet. Merci de réessayer. - </notification> - - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -Impossible d'acheter simultanément des objets de propriétaires différents. Veuillez sélectionner un seul objet. - </notification> - - <notification - - name="ObjectNotForSale" - > -Cet objet ne semble pas à vendre. - </notification> - - <notification - - name="EnteringGodMode" - > -Activation du mode divin : niveau [LEVEL] - </notification> - - <notification - - name="LeavingGodMode" - > -Désactivation du mode divin : niveau [LEVEL] - </notification> - - <notification - - name="CopyFailed" - > -Copie impossible, permissions insuffisantes. - </notification> - - <notification - - name="InventoryAccepted" - > -[NAME] a accepté votre envoi. - </notification> - - <notification - - name="InventoryDeclined" - > -[NAME] a refusé votre envoi. - </notification> - - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> - - <notification - - name="CallingCardAccepted" - > -Votre carte de visite a été acceptée. - </notification> - - <notification - - name="CallingCardDeclined" - > -Votre carte de visite a été refusée. - </notification> - - <notification - - name="TeleportToLandmark" - > -A présent que vous êtes sur le continent, vous pouvez voyager par téléportation (vers [NAME] par exemple). Cliquez sur le bouton Inventaire en bas à droite de l'écran puis sélectionnez le dossier Repères (Landmarks). + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + Impossible d'acheter simultanément des objets de propriétaires différents. Veuillez sélectionner un seul objet. + </notification> + <notification name="ObjectNotForSale"> + Cet objet ne semble pas à vendre. + </notification> + <notification name="EnteringGodMode"> + Activation du mode divin : niveau [LEVEL] + </notification> + <notification name="LeavingGodMode"> + Désactivation du mode divin : niveau [LEVEL] + </notification> + <notification name="CopyFailed"> + Copie impossible, droits insuffisants. + </notification> + <notification name="InventoryAccepted"> + [NAME] a accepté votre envoi. + </notification> + <notification name="InventoryDeclined"> + [NAME] a refusé votre envoi. + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + Votre carte de visite a été acceptée. + </notification> + <notification name="CallingCardDeclined"> + Votre carte de visite a été refusée. + </notification> + <notification name="TeleportToLandmark"> + A présent que vous êtes sur le continent, vous pouvez voyager par téléportation (vers [NAME] par exemple). Cliquez sur le bouton Inventaire en bas à droite de l'écran puis sélectionnez le dossier Repères (Landmarks). Choisissez un repère, double-cliquez dessus et cliquez sur Téléporter. - </notification> - - <notification - - name="TeleportToPerson" - > -A présent que vous êtes sur le continent, vous pouvez contacter des résidents (tel [NAME] par exemple). Cliquez sur le bouton Inventaire en bas à droite de l'écran puis sélectionnez le dossier Cartes de visite (Calling Cards). + </notification> + <notification name="TeleportToPerson"> + A présent que vous êtes sur le continent, vous pouvez contacter des résidents (tel [NAME] par exemple). Cliquez sur le bouton Inventaire en bas à droite de l'écran puis sélectionnez le dossier Cartes de visite (Calling Cards). Choisissez en une, double-cliquez dessus et cliquez sur Message Instantané. - </notification> - - <notification - - name="CantSelectLandFromMultipleRegions" - > -Vous ne pouvez pas sélectionner de terrain en dehors des limites du serveur. + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + Vous ne pouvez pas sélectionner de terrain en dehors des limites du serveur. Veuillez sélectionner un terrain plus petit. - </notification> - - <notification - - name="GroupVote" - > -[NAME] a proposé un vote pour : -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="Voter"/> - <button - - name="Later" - text="Plus tard"/> - </form> - </notification> - - <notification - - name="SystemMessage" - > + </notification> + <notification name="SearchWordBanned"> + Certains termes de votre recherche ont été exclus car ils ne correspondaient pas aux standards fixés dans les Règles communautaires. + </notification> + <notification name="NoContentToSearch"> + Veuillez sélectionner au moins un type de contenu à rechercher (PG, Mature ou Adulte) + </notification> + <notification name="GroupVote"> + [NAME] a proposé un vote pour : [MESSAGE] - </notification> - - <notification - - name="EventNotification" - > -Avis d'événement : + <form name="form"> + <button name="VoteNow" text="Voter"/> + <button name="Later" text="Plus tard"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + Avis d'événement : [NAME] [DATE] - <form name="form"> - <button - - name="Teleport" - text="Téléporter"/> - <button - - name="Description" - text="Description"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="TransferObjectsHighlighted" - > -Tous les objets de cette parcelle qui seront transférés à l'acheteur sont maintenant mis en surbrillance. + <form name="form"> + <button name="Teleport" text="Téléporter"/> + <button name="Description" text="Description"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + Tous les objets de cette parcelle qui seront transférés à l'acheteur sont maintenant mis en surbrillance. * Les arbres et la pelouse qui seront transférés ne sont pas mis en surbrillance. - <form name="form"> - <button - - name="Done" - text="Transfert effectué"/> - </form> - </notification> - - <notification - - name="DeactivatedGesturesTrigger" - > -Gestes désactivés ayant le même mot-clé : + <form name="form"> + <button name="Done" text="Transfert effectué"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + Gestes désactivés ayant le même mot-clé : [NAMES] - </notification> - - <notification - - name="NoQuickTime" - > -Le logiciel Apple QuickTime ne semble pas installé sur votre système. + </notification> + <notification name="NoQuickTime"> + Le logiciel Apple QuickTime ne semble pas installé sur votre système. Pour voir les vidéos sur les terrains qui le permettent, allez sur le site de QuickTime (http://www.apple.com/fr/quicktime/download) et installez le lecteur QuickTime. - </notification> - - <notification - - name="OwnedObjectsReturned" - > -Les objets que vous possédez sur la parcelle de terrain sélectionnée ont été renvoyés dans votre inventaire. - </notification> - - <notification - - name="OtherObjectsReturned" - > -Les objets que vous possédez sur la parcelle de terrain appartenant à [FIRST] [LAST] ont été renvoyés dans votre inventaire. - </notification> - - <notification - - name="OtherObjectsReturned2" - > -Les objets sur la parcelle appartenant à « [NAME] » ont étés renvoyés à leur propriétaire. - </notification> - - <notification - - name="GroupObjectsReturned" - > -Les objets sélectionnés sur la parcelle de terrain partagée avec le groupe [GROUPNAME] ont été renvoyés dans l'inventaire de leur propriétaire. + </notification> + <notification name="OwnedObjectsReturned"> + Les objets que vous possédez sur la parcelle de terrain sélectionnée ont été renvoyés dans votre inventaire. + </notification> + <notification name="OtherObjectsReturned"> + Les objets que vous possédez sur la parcelle de terrain appartenant à [FIRST] [LAST] ont été renvoyés dans votre inventaire. + </notification> + <notification name="OtherObjectsReturned2"> + Les objets sur la parcelle appartenant à « [NAME] » ont étés renvoyés à leur propriétaire. + </notification> + <notification name="GroupObjectsReturned"> + Les objets sélectionnés sur la parcelle de terrain partagée avec le groupe [GROUPNAME] ont été renvoyés dans l'inventaire de leur propriétaire. Les objets donnés transférables ont étés renvoyés à leur propriétaire. Les objets non transférables donnés au groupe ont étés supprimés. - </notification> - - <notification - - name="UnOwnedObjectsReturned" - > -Les objets sélectionnés sur la parcelle et qui ne sont pas à vous ont été rendus à leurs propriétaires. - </notification> - - <notification - - name="NotSafe" - > -Les dégâts sont autorisés sur ce terrain (« non sécurisé »). + </notification> + <notification name="UnOwnedObjectsReturned"> + Les objets sélectionnés sur la parcelle et qui ne sont pas à vous ont été rendus à leurs propriétaires. + </notification> + <notification name="NotSafe"> + Les dégâts sont autorisés sur ce terrain (« non sécurisé »). Vous pouvez être blessé ici. Si vous décédez, vous serez téléporté à votre domicile. - </notification> - - <notification - - name="NoFly" - > -Le vol est interdit sur ce terrain (« pas de vol »). + </notification> + <notification name="NoFly"> + Le vol est interdit sur ce terrain (« pas de vol »). Vous ne pouvez pas voler ici. - </notification> - - <notification - - name="PushRestricted" - > -Les bousculades sont interdites sur ce terrain. + </notification> + <notification name="PushRestricted"> + Les bousculades sont interdites sur ce terrain. Vous ne pouvez pas pousser les autres à moins que vous soyez propriétaire de ce terrain. - </notification> - - <notification - - name="NoVoice" - > -La voix est désactivée sur ce terrain. - </notification> - - <notification - - name="NoBuild" - > -Le mode construction sur ce terrain est désactivé (« pas de construction »). + </notification> + <notification name="NoVoice"> + La voix est désactivée sur ce terrain. + </notification> + <notification name="NoBuild"> + Le mode construction sur ce terrain est désactivé (« pas de construction »). Vous ne pouvez pas créer d'objets ici. - </notification> - - <notification - - name="ScriptsStopped" - > -Un administrateur a temporairement stoppé les scripts dans cette région. - </notification> - - <notification - - name="ScriptsNotRunning" - > -Aucun script ne fonctionne dans cette région. - </notification> - - <notification - - name="NoOutsideScripts" - > -Les scripts externes sont désactivés sur ce terrain (« pas de scripts externes »). + </notification> + <notification name="ScriptsStopped"> + Un administrateur a temporairement stoppé les scripts dans cette région. + </notification> + <notification name="ScriptsNotRunning"> + Aucun script ne fonctionne dans cette région. + </notification> + <notification name="NoOutsideScripts"> + Les scripts externes sont désactivés sur ce terrain (« pas de scripts externes »). Aucun script n'est exécuté à part ceux du propriétaire du terrain. - </notification> - - <notification - - name="ClaimPublicLand" - > -Vous ne pouvez réclamer qu'un terrain public dans la région où vous vous trouvez actuellement. - </notification> - - <notification - - name="ObjectGiveItem" - > -Un objet appelé [OBJECTFROMNAME] appartenant à [FIRST] [LAST] vous a donné un [OBJECTTYPE] appelé [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Garder"/> - <button - - name="Discard" - text="Jeter"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="ObjectGiveItemUnknownUser" - > -L'objet [OBJECTFROMNAME] appartenant à un utilisateur inconnu vous a donné un(e) [OBJECTTYPE] nommé(e) [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Garder"/> - <button - - name="Discard" - text="Jeter"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="UserGiveItem" - > -[NAME] vous a donné un(e) [OBJECTTYPE] nommé(e) [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Garder"/> - <button - - name="Discard" - text="Jeter"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="GodMessage" - > -[NAME] + </notification> + <notification name="ClaimPublicLand"> + Vous ne pouvez réclamer qu'un terrain public dans la région où vous vous trouvez actuellement. + </notification> + <notification name="RegionTPAccessBlocked"> + Votre catégorie d'accès ne vous autorise pas à pénétrer dans cette région. Vous devez sans doute procéder à la vérification de votre âge ou installer une version plus récente du client. + +Pour savoir comment accéder aux zones ayant un tel niveau d'accès, veuillez consulter les pages d'aide. + </notification> + <notification name="URBannedFromRegion"> + Vous avez été banni de cette région. + </notification> + <notification name="NoTeenGridAccess"> + Votre compte ne peut pas se connecter à cette région du Teen grid. + </notification> + <notification name="NoHelpIslandTP"> + Vous ne pouvez pas retourner sur Help Island. +Pour répéter le didacticiel, veuillez aller sur Help Island Public. + </notification> + <notification name="ImproperPaymentStatus"> + Vous n'avez pas le statut de paiement approprié pour pénétrer dans cette région. + </notification> + <notification name="MustGetAgeRgion"> + Pour pouvoir pénétrer dans cette région, vous devez avoir procédé à la vérification de votre âge. + </notification> + <notification name="MustGetAgeParcel"> + Pour pouvoir pénétrer sur cette parcelle, vous devez avoir procédé à la vérification de votre âge. + </notification> + <notification name="NoDestRegion"> + Région de destination introuvable. + </notification> + <notification name="NotAllowedInDest"> + Vous n'êtes pas autorisé dans cette région. + </notification> + <notification name="RegionParcelBan"> + Impossible de traverser une parcelle bannie. Veuillez trouver une autre solution. + </notification> + <notification name="TelehubRedirect"> + Vous avez été redirigé vers un téléhub. + </notification> + <notification name="CouldntTPCloser"> + Il n'a pas été possible de vous téléporter vers une destination plus proche. + </notification> + <notification name="TPCancelled"> + Téléportation annulée. + </notification> + <notification name="FullRegionTryAgain"> + La région dans laquelle vous essayez de pénétrer est pleine actuellement. +Veuillez réessayer dans quelques minutes. + </notification> + <notification name="GeneralFailure"> + Panne générale. + </notification> + <notification name="RoutedWrongRegion"> + Dirigé vers la mauvaise région. Merci de réessayer. + </notification> + <notification name="NoValidAgentID"> + ID agent non valide. + </notification> + <notification name="NoValidSession"> + ID de session non valide. + </notification> + <notification name="NoValidCircuit"> + Aucun code de circuit valide. + </notification> + <notification name="NoValidTimestamp"> + Timestamp non valide. + </notification> + <notification name="NoPendingConnection"> + Impossible de créer la connexion en attente. + </notification> + <notification name="InternalUsherError"> + Erreur interne lors de la tentative de connexion. + </notification> + <notification name="NoGoodTPDestination"> + Impossible de trouver un lieu de téléportation valide dans cette région. + </notification> + <notification name="InternalErrorRegionResolver"> + Une erreur interne est survenue lors de la résolution des coodonnées de la région. + </notification> + <notification name="NoValidLanding"> + Impossible de trouver un point d'atterrissage valide. + </notification> + <notification name="NoValidParcel"> + Aucune parcelle valide n'a été trouvée. + </notification> + <notification name="ObjectGiveItem"> + Un objet appelé [OBJECTFROMNAME] appartenant à [FIRST] [LAST] vous a donné : [OBJECTTYPE] appelé(e) [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Garder"/> + <button name="Discard" text="Jeter"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + L'objet [OBJECTFROMNAME] appartenant à un utilisateur inconnu vous a donné un(e) [OBJECTTYPE] nommé(e) [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Garder"/> + <button name="Discard" text="Jeter"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME] vous a donné un(e) [OBJECTTYPE] nommé(e) [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Garder"/> + <button name="Discard" text="Jeter"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="Rejoindre"/> + <button name="Decline" text="Refuser"/> + <button name="Info" text="Infos"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME] vous propose de le/la rejoindre par téléportation : - <notification - - name="JoinGroup" - > -[MESSAGE] - <form name="form"> - <button - - name="Join" - text="Rejoindre"/> - <button - - name="Decline" - text="Refuser"/> - <button - - name="Info" - text="Infos"/> - </form> - </notification> - - <notification - - name="TeleportOffered" - > -[NAME] vous propose de le/la rejoindre par téléportation : - -[MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="Téléporter"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="Téléporter"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="Plus tard"/> - <button - - name="GoNow..." - text="Y aller maintenant..."/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME] vous demande de devenir son ami(e). + <form name="form"> + <button name="Later" text="Plus tard"/> + <button name="GoNow..." text="Y aller maintenant..."/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME] vous demande de devenir son ami(e). [MESSAGE] (Par défaut, vous pourrez voir lorsque vous êtes tous deux connectés.) - <form name="form"> - <button - - name="Accept" - text="Accepter"/> - <button - - name="Decline" - text="Refuser"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME] vous demande de devenir son ami. + <form name="form"> + <button name="Accept" text="Accepter"/> + <button name="Decline" text="Refuser"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME] vous demande de devenir son ami. (Par défaut, vous pourrez voir quand vous êtes tous deux connectés) - <form name="form"> - <button - - name="Accept" - text="Accepter"/> - <button - - name="Decline" - text="Refuser"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -[NAME] a accepté votre amitié. - </notification> - - <notification - - name="FriendshipDeclined" - > -[NAME] a refusé votre amitié. - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST] vous offre sa carte de visite. + <form name="form"> + <button name="Accept" text="Accepter"/> + <button name="Decline" text="Refuser"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + [NAME] a accepté votre amitié. + </notification> + <notification name="FriendshipDeclined"> + [NAME] a refusé votre amitié. + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST] vous offre sa carte de visite. Cela ajoute un marque-page dans votre inventaire, ce qui vous permet d'envoyer rapidement un IM à ce résident. - <form name="form"> - <button - - name="Accept" - text="Accepter"/> - <button - - name="Decline" - text="Refuser"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -La région va redémarrer dans [MINUTES] minutes. + <form name="form"> + <button name="Accept" text="Accepter"/> + <button name="Decline" text="Refuser"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + La région va redémarrer dans [MINUTES] minutes. Si vous restez dans cette région, vous serez déconnecté(e). - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -La région va redémarrer dans [SECONDS] secondes. + </notification> + <notification name="RegionRestartSeconds"> + La région va redémarrer dans [SECONDS] secondes. Si vous restez dans cette région, vous serez déconnecté(e). - </notification> - - <notification - - name="LoadWebPage" - > -Charger cette page web [URL] ? + </notification> + <notification name="LoadWebPage"> + Charger cette page web [URL] ? [MESSAGE] Venant de l'objet : [OBJECTNAME], appartenant à : [NAME]? - <form name="form"> - <button - - name="Gotopage" - text="Aller sur cette page"/> - <button - - name="Cancel" - text="Annuler"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -La recherche du [TYPE] dans la base de données a échoué. - </notification> - - <notification - - name="FailedToFindWearable" - > -La recherche du [TYPE] nommé(e) [DESC] dans la base de données a échoué. - </notification> - - <notification - - name="ScriptQuestion" - > -'[OBJECTNAME]', un objet appartenant à '[NAME]', aimerait : + <form name="form"> + <button name="Gotopage" text="Charger"/> + <button name="Cancel" text="Annuler"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + La recherche du [TYPE] dans la base de données a échoué. + </notification> + <notification name="FailedToFindWearable"> + La recherche du [TYPE] nommé(e) [DESC] dans la base de données a échoué. + </notification> + <notification name="InvalidWearable"> + L'objet que vous essayez de porter utilise une fonctionnalité que le client ne peut lire. Pour porter cet objet, veuillez télécharger une mise à jour du client. + </notification> + <notification name="ScriptQuestion"> + '[OBJECTNAME]', un objet appartenant à '[NAME]', aimerait : [QUESTIONS] Acceptez-vous ? - <form name="form"> - <button - - name="Yes" - text="Oui"/> - <button - - name="No" - text="Non"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -[OBJECTNAME], un objet appartenant à [NAME], aimerait : + <form name="form"> + <button name="Yes" text="Oui"/> + <button name="No" text="Non"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + [OBJECTNAME], un objet appartenant à [NAME], aimerait : [QUESTIONS] Si vous n'avez pas confiance en cet objet ni en son créateur, vous devriez refuser cette requête. Pour plus d'informations, cliquez sur le bouton Détails. Accepter cette requête ? - <form name="form"> - <button - - name="Grant" - text="Accepter"/> - <button - - name="Deny" - text="Refuser"/> - <button - - name="Details" - text="Détails..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -'[TITLE]' de [FIRST] [LAST] + <form name="form"> + <button name="Grant" text="Accepter"/> + <button name="Deny" text="Refuser"/> + <button name="Details" text="Détails..."/> + </form> + </notification> + <notification name="ScriptDialog"> + '[TITLE]' de [FIRST] [LAST] [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -'[TITLE]' de [GROUPNAME] + <form name="form"> + <button name="Ignore" text="Ignorer"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + '[TITLE]' de [GROUPNAME] [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -Vous venez de recevoir [AMOUNT] L$. + <form name="form"> + <button name="Ignore" text="Ignorer"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + Vous venez de recevoir [AMOUNT] L$. Des objets et des utilisateurs peuvent vous donner des L$. -Votre solde est affiché dans le coin en haut à droite de l'écran. - </notification> - - <notification - - name="FirstBalanceDecrease" - > -Vous venez de payer [AMOUNT] L$. -Votre solde est affiché dans le coin en haut à droite de l'écran. - </notification> - - <notification - - name="FirstSit" - > -Vous êtes assis(e). +Votre solde est affiché dans le coin supérieur droit de votre écran. + </notification> + <notification name="FirstBalanceDecrease"> + Vous venez de payer [AMOUNT] L$. +Votre solde est affiché dans le coin supérieur droit de votre écran. + </notification> + <notification name="FirstSit"> + Vous êtes assis(e). Utilisez les touches de direction (ou AWSD) pour changer la vue. Pour vous lever, cliquez sur le bouton Me lever. - </notification> - - <notification - - name="FirstMap" - > -Cliquez et faites glisser pour faire défiler la carte. + </notification> + <notification name="FirstMap"> + Cliquez et faites glisser pour faire défiler la carte. Double-cliquez pour vous téléporter. Utilisez les contrôles à droite pour trouver des choses et afficher différents arrière-plans. - </notification> - - <notification - - name="FirstBuild" - > -Vous pouvez construire des objets dans certaines zones de [SECOND_LIFE]. -Utilisez les outils en haut à gauche pour construire, et gardez la touche Ctrl ou Alt enfoncée pour passer rapidement d'un outil à l'autre. + </notification> + <notification name="FirstBuild"> + Vous pouvez construire des objets dans certaines zones de [SECOND_LIFE]. +Utilisez les outils en haut à gauche pour construire et gardez la touche Ctrl ou Alt enfoncée pour passer rapidement d'un outil à l'autre. Appuyez sur la touche Esc pour arrêter de construire. - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -Cliquer à gauche permet d'interagir avec certains objets. + </notification> + <notification name="FirstLeftClickNoHit"> + Un clic gauche permet d'interagir avec certains objets. Si le pointeur de la souris se transforme en main, vous pouvez interagir avec l'objet. -Cliquer à droite fait toujours apparaître un menu des choses que vous pouvez faire. - </notification> - - <notification - - name="FirstTeleport" - > -Cette région n'autorise pas la téléportation de point à point. Vous avez donc été transporté au téléhub le plus proche. +Un clic droit fait toujours apparaître un menu des choses que vous pouvez faire. + </notification> + <notification name="FirstTeleport"> + Cette région n'autorise pas la téléportation de point à point. Vous avez donc été transporté au téléhub le plus proche. Votre destination est marquée par une grande balise. Suivez la flèche rouge vers la balise ou cliquez sur la flèche pour faire disparaître la balise. - </notification> - - <notification - - name="FirstOverrideKeys" - > -Vos mouvements sont maintenant pris en charge par un objet. + </notification> + <notification name="FirstOverrideKeys"> + Vos mouvements sont maintenant pris en charge par un objet. Essayez les flèches de votre clavier ou AWSD pour voir à quoi elles servent. Certains objets (comme les armes) nécessitent l'activation du mode Vue subjective pour être utilisés. Pour cela, appuyez sur la touche M. - </notification> - - <notification - - name="FirstAppearance" - > -Vous êtes en train d'éditer votre apparence. + </notification> + <notification name="FirstAppearance"> + Vous êtes en train d'éditer votre apparence. Pour tourner et zoomer, utilisez les flèches de direction. Lorsque vous avez terminé, appuyez sur Enregistrer tout pour sauvegarder votre apparence et sortir. Vous pouvez modifier votre apparence aussi souvent que vous le souhaitez. - </notification> - - <notification - - name="FirstInventory" - > -Il s'agit de votre inventaire qui contient des objets, notes, vêtements, et autres possessions. + </notification> + <notification name="FirstInventory"> + Il s'agit de votre inventaire qui contient des objets, notes, vêtements, et autres possessions. * Pour porter un objet ou le dossier contenant un ensemble complet, faites-le glisser sur vous-même. * Pour mettre un objet dans le monde, faites-le glisser sur le sol. * Pour lire une note, double-cliquez dessus. - </notification> - - <notification - - name="FirstSandbox" - > -Cette région est un bac à sable. + </notification> + <notification name="FirstSandbox"> + Cette région est un bac à sable. Les objets que vous construisez ici peuvent être supprimés quand vous partez. Les bacs à sable sont nettoyés régulièrement, veuillez lire les informations en haut de l'écran à côté du nom de la région. Les régions bacs à sable sont rares et sont signalées par des panneaux. - </notification> - - <notification - - name="FirstFlexible" - > -Cet objet est flexible. + </notification> + <notification name="FirstFlexible"> + Cet objet est flexible. Les objets flexibles ne peuvent pas avoir de propriétés physiques et doivent rester fantômes jusqu'à ce que la case Fantôme soit décochée. - </notification> - - <notification - - name="FirstDebugMenus" - > -Vous avez activé le menu Avancé. + </notification> + <notification name="FirstDebugMenus"> + Vous avez activé le menu Avancé. Ce menu contient des fonctionnalités utiles pour les développeurs qui travaillent sur Second Life. Pour activer/désactiver ce menu sous Windows, appuyez sur Ctrl-Alt-D. Sur un Mac, appuyez sur Cmd-Opt-Maj-D - </notification> - - <notification - - name="FirstSculptedPrim" - > -Vous êtes en train d'éditer un sculptie. -Pour spécifier la forme d'un sculptie, vous devez utiliser une texture spécifique. + </notification> + <notification name="FirstSculptedPrim"> + Vous êtes en train d'éditer un sculptie. +Pour modifier la forme d'un sculptie, vous devez utiliser une texture spécifique. Vous trouverez des textures dans la bibliothèque de votre inventaire. - </notification> - - <notification - - name="FirstMedia" - > -Vous avez lancé la lecture d'un média. Dans le menu Préférences, à l'onglet Audio/Vidéo, vous pouvez choisir de lire automatiquement les médias. Notez que cela peut être risqué lorsque les médias viennent de sites que vous ne connaissez pas. - </notification> - - <notification - - name="MaxListSelectMessage" - > -Vous ne pouvez sélectionner que [MAX_SELECT] objets maximum dans cette liste. - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME] vous invite à un chat vocal. + </notification> + <notification name="FirstMedia"> + Vous avez lancé la lecture d'un média. Dans le menu Préférences, à l'onglet Audio et vidéo, vous pouvez choisir de lire automatiquement les médias. Notez que cela peut être risqué lorsque les médias viennent de sites que vous ne connaissez pas. + </notification> + <notification name="MaxListSelectMessage"> + Vous ne pouvez sélectionner que [MAX_SELECT] objets maximum dans cette liste. + </notification> + <notification name="VoiceInviteP2P"> + [NAME] vous invite à un chat vocal. Pour y participer, cliquez sur Accepter. Sinon, cliquez sur Refuser. Pour ignorer cette personne, cliquez sur Ignorer. - <form name="form"> - <button - - name="Accept" - text="Accepter"/> - <button - - name="Decline" - text="Refuser"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -[FIRST] [LAST] a reçu un message instantané et n'est donc plus ignoré. - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -[FIRST] [LAST] a reçu de l'argent et n'est donc plus ignoré. - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -[FIRST] [LAST] a reçu un inventaire et n'est donc plus ignoré. - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME] a rejoint un chat vocal avec le groupe [GROUP]. + <form name="form"> + <button name="Accept" text="Accepter"/> + <button name="Decline" text="Refuser"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + [FIRST] [LAST] a reçu un message instantané et n'est donc plus ignoré. + </notification> + <notification name="AutoUnmuteByMoney"> + [FIRST] [LAST] a reçu de l'argent et n'est donc plus ignoré. + </notification> + <notification name="AutoUnmuteByInventory"> + [FIRST] [LAST] a reçu un inventaire et n'est donc plus ignoré. + </notification> + <notification name="VoiceInviteGroup"> + [NAME] a rejoint un chat vocal avec le groupe [GROUP]. Pour y participer, cliquez sur Accepter. Sinon, cliquez sur Refuser. Pour ignorer cette personne, cliquez sur Ignorer. - <form name="form"> - <button - - name="Accept" - text="Accepter"/> - <button - - name="Decline" - text="Refuser"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME] a rejoint un chat vocal avec conférence. + <form name="form"> + <button name="Accept" text="Accepter"/> + <button name="Decline" text="Refuser"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME] a rejoint un chat vocal avec conférence. Pour y participer, cliquez sur Accepter. Sinon, cliquez sur Refuser. Pour ignorer cet utilisateur, cliquez sur Ignorer. - <form name="form"> - <button - - name="Accept" - text="Accepter"/> - <button - - name="Decline" - text="Refuser"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME] vous invite à un chat conférence. + <form name="form"> + <button name="Accept" text="Accepter"/> + <button name="Decline" text="Refuser"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME] vous invite à un chat conférence. Pour y participer, cliquez sur Accepter. Sinon, cliquez sur Refuser. Pour ignorer cet utilisateur, cliquez sur Ignorer. - <form name="form"> - <button - - name="Accept" - text="Accepter"/> - <button - - name="Decline" - text="Refuser"/> - <button - - name="Mute" - text="Ignorer"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -L'appel auquel vous essayez de participer, [VOICE_CHANNEL_NAME], a atteint le nombre maximum de participants. Veuillez réessayer ultérieurement. - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -Nous sommes désolés. Le nombre maximum de conversations vocales a été atteint dans cette zone. Veuillez trouver un autre endroit pour discuter. - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -Vous avez été déconnecté(e) de [VOICE_CHANNEL_NAME]. Vous allez maintenant être reconnecté au chat vocal spatial. - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME] a mis fin à l'appel. Vous allez maintenant être reconnecté au chat vocal spatial. - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME] a refusé votre appel. Vous allez maintenant être reconnecté au chat vocal spatial. - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME] ne peut pas prendre votre appel. Vous allez maintenant être reconnecté au chat vocal spatial. - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -Echec de la connexion avec [VOICE_CHANNEL_NAME], veuillez réessayer ultérieurement. Vous allez maintenant être reconnecté au chat vocal spatial. - </notification> - - <notification - - name="VoiceLoginRetry" - > -Nous sommes en train de créer un canal vocal pour vous. Veuillez patienter quelques instants. - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -Vous ne pouvez pas pénétrer sur ce terrain car vous n'êtes pas membre du groupe adéquat. - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -Vous ne pouvez pas pénétrer sur ce terrain car l'accès vous y est interdit. - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -Vous ne pouvez pas pénétrer sur ce terrain car vous n'avez pas les droits d'accès requis. - </notification> - - <notification - - name="VoiceNotAllowed" - > -Vous n'êtes pas autorisé à vous connecter au chat vocal pour [VOICE_CHANNEL_NAME]. - </notification> - - <notification - - name="VoiceCallGenericError" - > -Une erreur est survenue pendant la connexion au chat vocal pour [VOICE_CHANNEL_NAME]. Veuillez réessayer ultérieurement. - </notification> - - <notification - - name="ServerVersionChanged" - > -La région dans laquelle vous avez pénétré utilise une version de simulateur différente. Pour plus de détails, cliquez sur ce message. - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -L'URL sur laquelle vous avez cliqué ne peut pas être ouverte dans ce navigateur. - </notification> - - <global name="UnsupportedCPU"> -- Votre processeur ne remplit pas les conditions minimum requises. - </global> - - <global name="UnsupportedGLRequirements"> -Vous semblez ne pas avoir le matériel requis pour utiliser Second Life. Second Life requiert une carte graphique OpenGL avec une prise en charge du multitexturing. Si vous avez une telle carte, assurez-vous que vous avez aussi les drivers les plus récents pour la carte, ainsi que les service packs et les patchs pour votre système d'exploitation. + <form name="form"> + <button name="Accept" text="Accepter"/> + <button name="Decline" text="Refuser"/> + <button name="Mute" text="Ignorer"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + L'appel auquel vous essayez de participer, [VOICE_CHANNEL_NAME], a atteint le nombre maximum de participants. Veuillez réessayer ultérieurement. + </notification> + <notification name="ProximalVoiceChannelFull"> + Nous sommes désolés. Le nombre maximum de conversations vocales a été atteint dans cette zone. Veuillez trouver un autre endroit pour discuter. + </notification> + <notification name="VoiceChannelDisconnected"> + Vous avez été déconnecté(e) de [VOICE_CHANNEL_NAME]. Vous allez maintenant être reconnecté au chat vocal spatial. + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME] a mis fin à l'appel. Vous allez maintenant être reconnecté au chat vocal spatial. + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME] a refusé votre appel. Vous allez maintenant être reconnecté au chat vocal spatial. + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME] ne peut pas prendre votre appel. Vous allez maintenant être reconnecté au chat vocal spatial. + </notification> + <notification name="VoiceChannelJoinFailed"> + Echec de la connexion avec [VOICE_CHANNEL_NAME], veuillez réessayer ultérieurement. Vous allez maintenant être reconnecté au chat vocal spatial. + </notification> + <notification name="VoiceLoginRetry"> + Nous sommes en train de créer un canal vocal pour vous. Veuillez patienter quelques instants. + </notification> + <notification name="Cannot enter parcel: not a group member"> + Vous ne pouvez pas pénétrer sur ce terrain car vous n'êtes pas membre du groupe adéquat. + </notification> + <notification name="Cannot enter parcel: banned"> + Vous ne pouvez pas pénétrer sur ce terrain car l'accès vous y est interdit. + </notification> + <notification name="Cannot enter parcel: not on access list"> + Vous ne pouvez pas pénétrer sur ce terrain car vous n'avez pas les droits d'accès requis. + </notification> + <notification name="VoiceNotAllowed"> + Vous n'êtes pas autorisé à vous connecter au chat vocal pour [VOICE_CHANNEL_NAME]. + </notification> + <notification name="VoiceCallGenericError"> + Une erreur est survenue pendant la connexion au chat vocal pour [VOICE_CHANNEL_NAME]. Veuillez réessayer ultérieurement. + </notification> + <notification name="ServerVersionChanged"> + La région dans laquelle vous avez pénétré utilise une version de simulateur différente. Pour plus de détails, cliquez sur ce message. + </notification> + <notification name="UnableToOpenCommandURL"> + L'URL sur laquelle vous avez cliqué ne peut pas être ouverte dans ce navigateur. + </notification> + <global name="UnsupportedCPU"> + - Votre processeur ne remplit pas les conditions minimum requises. + </global> + <global name="UnsupportedGLRequirements"> + Vous semblez ne pas avoir le matériel requis pour utiliser Second Life. Second Life requiert une carte graphique OpenGL avec une prise en charge du multitexturing. Si vous avez une telle carte, assurez-vous que vous avez aussi les drivers les plus récents pour la carte, ainsi que les service packs et les patchs pour votre système d'exploitation. Si vous avez toujours des problèmes, veuillez consulter la page suivante : http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- Votre carte graphique ne remplit pas les conditions minimum requises. - </global> - - <global name="UnsupportedRAM"> -- Votre mémoire système ne remplit pas les conditions minimum requises. - </global> - - <global name="PermYes"> -Oui - </global> - - <global name="PermNo"> -Non - </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - Votre carte graphique ne remplit pas les conditions minimum requises. + </global> + <global name="UnsupportedRAM"> + - Votre mémoire système ne remplit pas les conditions minimum requises. + </global> + <global name="PermYes"> + Oui + </global> + <global name="PermNo"> + Non + </global> </notifications> diff --git a/indra/newview/skins/default/xui/fr/panel_friends.xml b/indra/newview/skins/default/xui/fr/panel_friends.xml index fa0d08bb97b76646c4f09280ab9c0a44331c75a9..cbeb10287dd480b2c169b60aaa620c2f7c1479ca 100644 --- a/indra/newview/skins/default/xui/fr/panel_friends.xml +++ b/indra/newview/skins/default/xui/fr/panel_friends.xml @@ -6,15 +6,15 @@ <scroll_list name="friend_list" tool_tip="Pour sélectionner plusieurs amis, cliquez en maintenant la touche Maj ou Ctrl appuyée"> <column name="icon_online_status" tool_tip="Statut en ligne"/> <column label="Nom" name="friend_name" tool_tip="Nom"/> - <column name="icon_visible_online" tool_tip="Vos amis voient si vous êtes connecté(e)"/> - <column name="icon_visible_map" tool_tip="Vos amis peuvent vous situer sur la carte"/> - <column name="icon_edit_mine" tool_tip="Vos amis peuvent modifier, supprimer ou prendre vos objets"/> + <column name="icon_visible_online" tool_tip="Votre ami voit si vous êtes connecté(e)"/> + <column name="icon_visible_map" tool_tip="Votre ami peut vous situer sur la carte"/> + <column name="icon_edit_mine" tool_tip="Votre ami peut modifier, supprimer ou prendre vos objets"/> <column name="icon_edit_theirs" tool_tip="Vous pouvez modifier les objets de cet ami"/> </scroll_list> - <button label="IM/Appel" name="im_btn" tool_tip="Ouvrez une session de messagerie instantanée"/> - <button label="Profil" name="profile_btn" tool_tip="Affichez une photo, vos groupes et autres infos"/> + <button label="IM/Appel" name="im_btn" tool_tip="Envoyez un IM à ce résident"/> + <button label="Profil" name="profile_btn" tool_tip="Consultez le profil de ce résident (photos, groupes et autres infos)"/> <button label="Téléporter..." name="offer_teleport_btn" tool_tip="Proposez à cet ami d'être téléporté là où vous êtes"/> <button label="Payer..." name="pay_btn" tool_tip="Donnez des L$ à cet ami"/> - <button label="Supprimer..." name="remove_btn" tool_tip="Supprimez cette personne de votre liste d'amis"/> + <button label="Supprimer..." name="remove_btn" tool_tip="Supprimez ce résident de votre liste d'amis"/> <button label="Ajouter..." name="add_btn" tool_tip="Demandez à un résident de devenir votre ami"/> </panel> diff --git a/indra/newview/skins/default/xui/fr/panel_group_general.xml b/indra/newview/skins/default/xui/fr/panel_group_general.xml index 7c7efdc1f1d8073c84647ce9e28e7cc34e2f0466..2b983ced800eb5c0041a3e09bedd4c1458b0b8be 100644 --- a/indra/newview/skins/default/xui/fr/panel_group_general.xml +++ b/indra/newview/skins/default/xui/fr/panel_group_general.xml @@ -1,22 +1,20 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Général" name="general_tab"> - <text name="help_text"> + <string name="help_text"> L'onglet Général contient les infos générales et les préférences du groupe ainsi que la liste des propriétaires et des membres visibles. - - </text> + </string> <string name="group_info_unchanged"> Le profil du groupe a changé. </string> <button label="?" label_selected="?" name="help_button"/> - <line_editor label="Saisissez le nom du groupe ici" name="group_name_editor"> - Saisissez le nom du groupe ici - </line_editor> + <line_editor label="Saisissez le nom du groupe ici" name="group_name_editor"/> <text name="group_name"> Saisissez le nom du groupe ici </text> <text name="prepend_founded_by"> - Fondé par </text> - <text name="founder_name" left_delta="54"> + Fondé par + </text> + <text left_delta="54" name="founder_name"> (en attente) </text> <text name="group_charter_label"> @@ -28,12 +26,6 @@ </text_editor> <button label="Rejoindre (0L$)" label_selected="Rejoindre (0L$)" name="join_button"/> <button label="Affichage détaillé" label_selected="Affichage détaillé" name="info_button"/> - <text> - Propriétaires et membres visibles - </text> - <text> - (Propriétaires affichés en gras) - </text> <text name="text_owners_and_visible_members"> Propriétaires et membres visibles </text> @@ -48,25 +40,21 @@ <text name="text_group_preferences"> Préférences </text> - <text name="incomplete_member_data_str"> - Extraction des données du résident en cours - </text> - <text name="confirm_group_create_str"> - La création de ce groupe coûte 100 L$. -Êtes-vous vraiment certain de vouloir dépenser 100 L$ pour créer ce groupe ? -Sachez que si personne ne rejoint ce groupe sous 48h, il sera démantelé et ne pourra plus être utilisé. - </text> - <text> - Préférences - </text> <panel name="preferences_container"> <check_box label="Afficher dans la recherche" name="show_in_group_list" tool_tip="Afficher ce groupe dans les résultats de recherche."/> - <check_box label="Publier sur le web" name="publish_on_web" tool_tip="Cochez pour publier les informations de ce groupe sur le web."/> <check_box label="Inscription libre" name="open_enrollement" tool_tip="Indique si une invitation est nécessaire pour devenir membre de ce groupe."/> <check_box label="Frais d'inscription : L$" name="check_enrollment_fee" tool_tip="Indique s'il y a des frais d'inscription pour devenir membre."/> <spinner name="spin_enrollment_fee" tool_tip="Si la case Frais d'inscription est cochée, cela signifie qu'il faut payer des frais pour devenir membre."/> - <check_box name="mature" /> - <combo_box name="group_mature_check" width="195"> + <combo_box name="group_mature_check" tool_tip="Indique si les informations sur votre groupe sont classées Mature." width="195"> + <combo_item name="select_mature"> + - Type de public - + </combo_item> + <combo_item name="mature"> + Contenu Mature + </combo_item> + <combo_item name="pg"> + Contenu PG + </combo_item> </combo_box> <panel name="title_container"> <text name="active_title_label"> @@ -77,4 +65,12 @@ Sachez que si personne ne rejoint ce groupe sous 48h, il sera démantelé et ne <check_box label="Recevoir les notices" name="receive_notices" tool_tip="Cochez si vous souhaitez recevoir les notices envoyées au groupe. Décochez si ce groupe vous envoie des spams."/> <check_box label="Afficher dans mon profil" name="list_groups_in_profile" tool_tip="Indique si vous voulez que ce groupe apparaisse dans votre profil"/> </panel> + <string name="incomplete_member_data_str"> + Extraction des données du résident en cours + </string> + <string name="confirm_group_create_str"> + La création de ce groupe coûte 100 L$. +Êtes-vous vraiment certain de vouloir dépenser 100 L$ pour créer ce groupe ? +Sachez que si personne ne rejoint ce groupe sous 48h, il sera démantelé et ne pourra plus être utilisé. + </string> </panel> diff --git a/indra/newview/skins/default/xui/fr/panel_group_land_money.xml b/indra/newview/skins/default/xui/fr/panel_group_land_money.xml index 7fd900acaae539342ade5bd8f40d115704149bb1..551d11d5881084887ea2e9da75d110e05729e5ea 100644 --- a/indra/newview/skins/default/xui/fr/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/fr/panel_group_land_money.xml @@ -1,16 +1,16 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Terrain et L$" name="land_money_tab"> - <text name="help_text"> + <string name="help_text"> Les parcelles appartenant au groupe sont indiquées avec le détails des contributions. Un avertissement apparaît si la surface utilisée par le groupe est supérieure ou égale au total des contributions. Les onglets Planification, Détails et Ventes correspondent aux finances du groupe. - </text> + </string> <button label="?" name="help_button"/> - <text name="cant_view_group_land_text"> + <string name="cant_view_group_land_text"> Vous n'avez pas la permission de voir quel terrain possède ce groupe. - </text> - <text name="cant_view_group_accounting_text"> + </string> + <string name="cant_view_group_accounting_text"> Vous n'avez pas la permission d'accéder aux informations financières de ce groupe. - </text> + </string> <string name="loading_txt"> Chargement... </string> @@ -18,8 +18,9 @@ financières de ce groupe. Terrain du groupe </text> <scroll_list name="group_parcel_list"> - <column label="Nom de la parcelle" name="name"/> + <column label="Parcelle" name="name"/> <column label="Région" name="location"/> + <column label="Type" name="type"/> <column label="Surface" name="area"/> <column label="" name="hidden"/> </scroll_list> @@ -45,9 +46,6 @@ financières de ce groupe. <text name="your_contribution_label"> Votre contribution : </text> - <text name="your_contribution_max_value_append"> - mètres carrés - </text> <string name="land_contrib_error"> Impossible de définir votre don de terre. </string> diff --git a/indra/newview/skins/default/xui/fr/panel_notifications_channel.xml b/indra/newview/skins/default/xui/fr/panel_notifications_channel.xml index e07a85f4cfc42e50d5a285387d339812ba473154..5beb71981c45ffec8c209966ec778099ed1b25bd 100644 --- a/indra/newview/skins/default/xui/fr/panel_notifications_channel.xml +++ b/indra/newview/skins/default/xui/fr/panel_notifications_channel.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="notifications_panel"> - <layout_stack> + <layout_stack name="stack1"> <scroll_list name="notifications_list"> <column label="Nom" name="name"/> <column label="Contenu" name="content"/> diff --git a/indra/newview/skins/default/xui/fr/panel_preferences_general.xml b/indra/newview/skins/default/xui/fr/panel_preferences_general.xml index dbb471093e053981717035167e73a36992ad4dfc..23e1e740357563788d3480308766a753086622df 100644 --- a/indra/newview/skins/default/xui/fr/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/fr/panel_preferences_general.xml @@ -35,6 +35,26 @@ <check_box label="Utiliser une échelle indépendante de la résolution" name="ui_auto_scale"/> <spinner label="Absent(e) après :" name="afk_timeout_spinner"/> <check_box label="M'avertir lorsque je dépense ou reçois des L$" name="notify_money_change_checkbox"/> + <text name="maturity_desired_label"> + Catégorie de contenu : + </text> + <text name="maturity_desired_prompt"> + Je veux accéder au contenu classé : + </text> + <combo_box name="maturity_desired_combobox" left="340"> + <combo_item name="Desired_Adult"> + PG, Mature et Adult + </combo_item> + <combo_item name="Desired_Mature"> + PG et Mature + </combo_item> + <combo_item name="Desired_PG"> + PG uniquement + </combo_item> + </combo_box> + <text name="maturity_desired_textbox" left="340"> + PG uniquement + </text> <text length="1" name="start_location_textbox" type="string"> Lieu de départ : </text> @@ -90,9 +110,15 @@ de sélection : <combo_item name="French"> Français - Bêta </combo_item> + <combo_item name="Italian"> + Italiano (Italien) - Bêta + </combo_item> <combo_item name="Hungarian"> Magyar (Hongrois) - Bêta </combo_item> + <combo_item name="Dutch"> + Nederlands (Néerlandais) - Bêta + </combo_item> <combo_item name="Polish"> Polski (Polonais) - Bêta </combo_item> @@ -102,6 +128,9 @@ de sélection : <combo_item name="Russian"> РуÑÑкий (Russe) - Bêta </combo_item> + <combo_item name="Turkish"> + Türkçe (Turc) - Bêta + </combo_item> <combo_item name="Ukrainian"> УкраїнÑька (Ukrainien) - Bêta </combo_item> diff --git a/indra/newview/skins/default/xui/fr/panel_region_covenant.xml b/indra/newview/skins/default/xui/fr/panel_region_covenant.xml index 557e88267ddf55a6f68488c6df6b57167d624d79..f2ba297fd276e918056bb6b48fb8043466362480 100644 --- a/indra/newview/skins/default/xui/fr/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/fr/panel_region_covenant.xml @@ -1,51 +1,82 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Règlement" name="Covenant"> - <text name="covenant_help_text" bottom="-25"> - Les changements apportés au règlement apparaîtront sur toutes les -parcelles du domaine. + <text name="estate_section_lbl"> + Domaine : + </text> + <text bottom_delta="-19" name="estate_name_lbl"> + Nom : + </text> + <text name="estate_name_text"> + continent + </text> + <text bottom_delta="-19" name="estate_owner_lbl"> + Propriétaire : + </text> + <text name="estate_owner_text"> + (aucun) + </text> + <text name="estate_cov_lbl"> + Règlement : + </text> + <text name="covenant_timestamp_text"> + Dernière modification le mercredi 31 décembre 1969 16:00:00 + </text> + <button label="?" name="covenant_help"/> + <text_editor bottom="-263" height="178" name="covenant_editor"> + Il n'y a aucun règlement pour ce domaine. + </text_editor> + <button label="Réinitialiser" name="reset_covenant"/> + <text name="covenant_help_text"> + Les changements apportés au règlement apparaîtront sur toutes + les parcelles du domaine. </text> - <text name="region_name_lbl" bottom_delta="-31"> + <text bottom_delta="-31" name="covenant_instructions"> + Faire glisser une note pour changer le règlement de ce domaine. + </text> + <text name="region_section_lbl"> Région : </text> + <text name="region_name_lbl"> + Nom : + </text> <text name="region_name_text"> - (inconnue) + leyla </text> - <text name="estate_name_lbl" bottom_delta="-19"> - Domaine : + <text name="region_landtype_lbl"> + Type : </text> - <text name="estate_name_text"> - (inconnu) + <text name="region_landtype_text"> + Continent / Homestead </text> - <text name="covenent_instructions"> - Pour modifier le règlement de ce domaine, glissez-déposez une note. + <text name="region_maturity_lbl"> + Catégorie : </text> - <button label="?" name="covenant_help" /> - <button label="Redéfinir" name="reset_covenant" /> - <text name="estate_owner_lbl" bottom_delta="-19"> - Propriétaire : + <text name="region_maturity_text"> + Adult </text> - <text name="estate_owner_text"> - (inconnu) + <text name="resellable_lbl"> + Revendre : </text> <text name="resellable_clause"> - Le terrain acheté dans cette région peut être revendu ou pas. + Le terrain dans cette région ne peut être revendu. + </text> + <text name="changeable_lbl"> + Sous-diviser : </text> <text name="changeable_clause"> - Le terrain acheté dans cette région peut être fusionné/divisé ou pas. + Le terrain dans cette région ne peut être fusionné/divisé. </text> - <text_editor name="covenant_editor"> - Chargement... - </text_editor> - <text name="can_resell"> + <string name="can_resell"> Le terrain acheté dans cette région peut être revendu. - </text> - <text name="can_not_resell"> + </string> + <string name="can_not_resell"> Le terrain acheté dans cette région ne peut pas être revendu. - </text> - <text name="can_change"> + </string> + <string name="can_change"> Le terrain acheté dans cette région peut être fusionné ou divisé. - </text> - <text name="can_not_change"> - Le terrain acheté dans cette région ne peut pas être fusionné ou divisé. - </text> + </string> + <string name="can_not_change"> + Le terrain acheté dans cette région ne peut pas être fusionné ou +divisé. + </string> </panel> diff --git a/indra/newview/skins/default/xui/fr/panel_region_debug.xml b/indra/newview/skins/default/xui/fr/panel_region_debug.xml index 92f44fa0e23998536e42324b1bfa4ab069500af1..1338ab9e71c24cc4b03630014e1cdfa6c2a881da 100644 --- a/indra/newview/skins/default/xui/fr/panel_region_debug.xml +++ b/indra/newview/skins/default/xui/fr/panel_region_debug.xml @@ -10,7 +10,7 @@ <button label="?" name="disable_scripts_help"/> <check_box label="Désactiver les collisions" name="disable_collisions_check" tool_tip="Désactiver les collisions entre non-avatars dans cette région"/> <button label="?" name="disable_collisions_help"/> - <check_box label="Désactiver les propriétés physiques" name="disable_physics_check" tool_tip="Désactiver toutes les propriétés physiques dans cette région"/> + <check_box label="Désactiver la physique" name="disable_physics_check" tool_tip="Désactiver tous les effets liés à la physique dans cette région"/> <button label="?" name="disable_physics_help"/> <button label="Appliquer" name="apply_btn" bottom_delta="-38"/> <text name="objret_text_lbl" bottom_delta="-42"> @@ -30,9 +30,9 @@ <check_box label="Ne renvoyer que les objets sur le terrain de quelqu'un d'autre" name="return_other_land" tool_tip="Ne renvoyer que les objets se trouvant sur le terrain de quelqu'un d'autre"/> <check_box label="Renvoyer les objets dans toutes les régions de ce domaine" name="return_estate_wide" tool_tip="Renvoyer les objets dans toutes les régions qui constituent ce domaine"/> <button label="Renvoyer" name="return_btn"/> - <button label="Afficher les objets souvent responsables de collision..." name="top_colliders_btn" tool_tip="Liste des objets avec le plus de collisions potentielles" width="320"/> + <button label="Afficher les collisions les plus consommatrices..." name="top_colliders_btn" tool_tip="Liste des objets avec le plus de collisions potentielles" width="320"/> <button label="?" name="top_colliders_help" left="337"/> - <button label="Afficher les objets exécutant le plus de scripts..." name="top_scripts_btn" tool_tip="Liste des objets qui passent le plus de temps à exécuter des scripts" width="320"/> + <button label="Afficher les objets scriptés les plus consommateurs..." name="top_scripts_btn" tool_tip="Liste des objets qui passent le plus de temps à exécuter des scripts" width="320"/> <button label="?" name="top_scripts_help" left="337"/> <button label="Redémarrer la région" name="restart_btn" tool_tip="Redémarrer la région au bout de 2 minutes" width="160"/> <button label="?" name="restart_help" left="177" /> diff --git a/indra/newview/skins/default/xui/fr/panel_region_general.xml b/indra/newview/skins/default/xui/fr/panel_region_general.xml index 7f272ab4312cea1f204f9bfc199021929c39bb5e..6a8afd24ed09124030f29806fa1da7cd874ef53b 100644 --- a/indra/newview/skins/default/xui/fr/panel_region_general.xml +++ b/indra/newview/skins/default/xui/fr/panel_region_general.xml @@ -12,7 +12,13 @@ <text name="version_channel_text"> (inconnu) </text> - <check_box label="Bloquer le terraformage" name="block_terraform_check"/> + <text name="region_type_lbl"> + Type : + </text> + <text name="region_type"> + (inconnu) + </text> + <check_box label="Interdire le terraformage" name="block_terraform_check"/> <button label="?" name="terraform_help"/> <check_box label="Interdire le vol" name="block_fly_check"/> <button label="?" name="fly_help"/> @@ -26,16 +32,24 @@ <button label="?" name="parcel_changes_help"/> <check_box label="Ne pas afficher dans la recherche" name="block_parcel_search_check" tool_tip="Afficher cette région et ses parcelles dans les résultats de recherche"/> <button label="?" name="parcel_search_help"/> - <spinner label="Nombre limite d'avatars" name="agent_limit_spin" label_width="127" width="190"/> + <spinner label="Nombre maximum d'avatars" label_width="127" name="agent_limit_spin" width="190"/> <button label="?" name="agent_limit_help"/> - <spinner label="Bonus objet" name="object_bonus_spin" label_width="127" width="190"/> + <spinner label="Bonus objet" label_width="127" name="object_bonus_spin" width="190"/> <button label="?" name="object_bonus_help"/> <text label="Maturité" name="access_text"> - Maturité : + Catégorie : </text> - - - + <combo_box label="Mature" name="access_combo"> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Mature"> + Mature + </combo_item> + <combo_item name="PG"> + PG + </combo_item> + </combo_box> <button label="?" name="access_help"/> <button label="Appliquer" name="apply_btn"/> <button label="Téléporter un résident chez lui..." name="kick_btn"/> diff --git a/indra/newview/skins/default/xui/fr/role_actions.xml b/indra/newview/skins/default/xui/fr/role_actions.xml index 4dd1288e189c3205353dc6ecba3706d794f2f437..a2df596773ca6d15a8ab261406cc90570cc2ae01 100644 --- a/indra/newview/skins/default/xui/fr/role_actions.xml +++ b/indra/newview/skins/default/xui/fr/role_actions.xml @@ -48,7 +48,7 @@ name="group change identity" value="11" /> </action_set> <action_set - description="Ces pouvoirs permettent de transférer, modifier et vendre du terrain appartenant au groupe. Pour accéder au menu À propos du terrain, cliquez sur le nom de la parcelle en haut de l'écran ou cliquez à droite sur le sol." + description="Ces pouvoirs permettent de transférer, modifier et vendre du terrain appartenant au groupe. Pour accéder au menu À propos du terrain, cliquez sur le nom de la parcelle en haut de l'écran ou cliquez-droit sur le sol." name="Parcel Management"> <action description="Transférer et acheter des parcelles pour le groupe" longdescription="Transférez et achetez des parcelles pour le groupe à partir du menu À propos du terrain > Général." @@ -60,7 +60,7 @@ longdescription="Vendez des parcelles du groupe. Attention : ce pouvoir autorise la vente d'un terrain appartenant au groupe. Ce terrain sera alors définitivement perdu. Assurez-vous de bien comprendre ce pouvoir avant de l'attribuer." name="land set sale info" value="14" /> <action description="Diviser et fusionner des parcelles" - longdescription="Divisez et fusionnez des parcelles. Pour cela, cliquez à droite sur le sol, sélectionnez Modifier le terrain, et faites glisser votre souris sur l'endroit que vous souhaitez modifier. Pour diviser le terrain, sélectionnez un endroit puis cliquez sur Diviser... Pour fusionner des parcelles, sélectionnez au moins deux parcelles adjacentes et cliquez sur Fusionner." + longdescription="Divisez et fusionnez des parcelles. Pour cela, cliquez-droit sur le sol, sélectionnez Modifier le terrain, et faites glisser votre souris sur l'endroit que vous souhaitez modifier. Pour diviser le terrain, sélectionnez un endroit puis cliquez sur Diviser... Pour fusionner des parcelles, sélectionnez au moins deux parcelles adjacentes et cliquez sur Fusionner." name="land divide join" value="15" /> </action_set> <action_set diff --git a/indra/newview/skins/default/xui/fr/strings.xml b/indra/newview/skins/default/xui/fr/strings.xml index b0efe4f510269197fc38d3bdfca9fa1aed48624a..067c34294d701fade836d3d3b1b75fb73332ec28 100644 --- a/indra/newview/skins/default/xui/fr/strings.xml +++ b/indra/newview/skins/default/xui/fr/strings.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. - It is only for those strings which don't belong in a floater. + It is only for those strings which do not belong in a floater. For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> @@ -95,7 +95,7 @@ Temporaire </string> <string name="TooltipFlagRightClickMenu"> - (cliquez à droite pour le menu) + (cliquez-droit pour le menu) </string> <string name="TooltipFreeToCopy"> Copie autorisée @@ -418,6 +418,30 @@ <string name="shout"> crie : </string> + <string name="SIM_ACCESS_PG"> + PG + </string> + <string name="SIM_ACCESS_MATURE"> + Mature + </string> + <string name="SIM_ACCESS_ADULT"> + Adult + </string> + <string name="SIM_ACCESS_DOWN"> + Hors ligne + </string> + <string name="SIM_ACCESS_MIN"> + Inconnu + </string> + <string name="land_type_unknown"> + (inconnu) + </string> + <string name="covenant_never_modified"> + Dernière modification : (jamais) + </string> + <string name="covenant_modified"> + Dernière modification : + </string> <string name="all_files"> Tous fichiers </string> diff --git a/indra/newview/skins/default/xui/fr/teleport_strings.xml b/indra/newview/skins/default/xui/fr/teleport_strings.xml index 91455297adb626a341bdacfcd1db7ea14738d677..810a32f64ecc4bfe75fcf458b641ec0c663df8ef 100644 --- a/indra/newview/skins/default/xui/fr/teleport_strings.xml +++ b/indra/newview/skins/default/xui/fr/teleport_strings.xml @@ -2,21 +2,16 @@ <teleport_messages name=""> <message_set name="errors"> <message name="invalid_tport"> - Nous avons rencontré des problèmes en essayant de vous téléporter. Vous devrez peut-être -vous reconnecter avant de pouvoir être téléporté. Si vous continuez -à recevoir ce message, veuillez consulter notre FAQ technique à  la page suivante : + Nous avons rencontré des problèmes en essayant de vous téléporter. Vous devrez peut-être vous reconnecter avant de pouvoir être téléporté. Si vous continuez à recevoir ce message, veuillez consulter le Support à  la page suivante : www.secondlife.com/support </message> <message name="invalid_region_handoff"> - Nous avons rencontré des problèmes en essayant de vous téléporter. Vous devrez peut-être -vous reconnecter avant de pouvoir être téléporté. Si vous continuez -à recevoir ce message, veuillez consulter notre FAQ technique à  la page suivante : -www.secondlife.com/support. + Nous avons rencontré des problèmes en essayant de vous téléporter. Vous devrez peut-être vous reconnecter avant de pouvoir être téléporté. Si vous continuez à recevoir ce message, veuillez consulter le Support à  la page suivante : +www.secondlife.com/support </message> <message name="blocked_tport"> Désolé, la téléportation est bloquée actuellement. Veuillez réessayer dans un moment. -Si vous ne parvenez toujours pas à être téléporté, déconnectez-vous puis reconnectez-vous -pour résoudre le problème. +Si vous ne parvenez toujours pas à être téléporté, déconnectez-vous puis reconnectez-vous pour résoudre le problème. </message> <message name="nolandmark_tport"> Désolé, le système n'a pas réussi à localiser la destination de votre repère. @@ -29,27 +24,19 @@ Veuillez réessayer dans un moment. Désolé, vous n'avez pas accès à cette destination. </message> <message name="missing_attach_tport"> - Vos pieces-jointes ne sont pas encore arrivées. Attendez quelques -secondes de plus ou déconnectez-vous puis reconnectez-vous avant d'essayer -de vous téléporter. + Vos pieces-jointes ne sont pas encore arrivées. Attendez quelques secondes de plus ou déconnectez-vous puis reconnectez-vous avant d'essayer de vous téléporter. </message> <message name="too_many_uploads_tport"> - Le trafic vers cette région est bouché en ce moment. Votre téléportation -ne pourra pas avoir lieu immédiatement. Veuillez réessayer -dans quelques minutes ou bien aller dans une zone moins fréquentée. + Le trafic vers cette région est bouché en ce moment. Votre téléportation ne pourra pas avoir lieu immédiatement. Veuillez réessayer dans quelques minutes ou bien aller dans une zone moins fréquentée. </message> <message name="expired_tport"> - Désolé, votre demande de téléportation n'a pas abouti -assez rapidement. Veuillez réessayer dans quelques minutes. + Désolé, votre demande de téléportation n'a pas abouti assez rapidement. Veuillez réessayer dans quelques minutes. </message> <message name="expired_region_handoff"> - Désolé, votre demande pour passer dans une autre région n'a pas abouti -assez rapidement. Veuillez réessayer dans quelques minutes. + Désolé, votre demande pour passer dans une autre région n'a pas abouti assez rapidement. Veuillez réessayer dans quelques minutes. </message> <message name="no_host"> - Impossible de trouver la destination de la téléportation. Il est possible que cette destination soit -temporairement indisponible ou qu'elle n'existe plus. Veuillez réessayer -dans quelques minutes. + Impossible de trouver la destination de la téléportation. Il est possible que cette destination soit temporairement indisponible ou qu'elle n'existe plus. Veuillez réessayer dans quelques minutes. </message> <message name="no_inventory_host"> L'inventaire est temporairement indisponible. diff --git a/indra/newview/skins/default/xui/it/floater_about.xml b/indra/newview/skins/default/xui/it/floater_about.xml index 0812df269eb4289914d701c5b4eeb33e45a1f3a8..2ec8bc4dd82313ac536b70a3e94e9edd00e5bf63 100644 --- a/indra/newview/skins/default/xui/it/floater_about.xml +++ b/indra/newview/skins/default/xui/it/floater_about.xml @@ -28,7 +28,7 @@ Chat vocale Codifica audio: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) - Ce la farò con un piccolo aiuto dai miei amici. --Richard Starkey + Per avere successo nel business, sii coraggioso, sii il primo, sii differente. --Henry Marchant </text_editor> <string name="you_are_at"> Sei a [POSITION] diff --git a/indra/newview/skins/default/xui/it/floater_about_land.xml b/indra/newview/skins/default/xui/it/floater_about_land.xml index c3618836db9722635ac47f448d4bae575bb7bf0f..e4ad34bf50a0bd2b4a1450c55dd136dabdcb3fc1 100644 --- a/indra/newview/skins/default/xui/it/floater_about_land.xml +++ b/indra/newview/skins/default/xui/it/floater_about_land.xml @@ -8,61 +8,75 @@ <text name="Description:"> Descrizione: </text> + <text name="LandType"> + Tipo: + </text> + <text name="LandTypeText" left="119"> + Mainland / Homestead + </text> + <text name="ContentRating" width="115"> + Categoria di accesso: + </text> + <text name="ContentRatingText" left="119"> + Adult + </text> <text name="Owner:"> Proprietario: </text> - <text name="OwnerText"> + <text name="OwnerText" left="119" width="227"> Leyla Linden </text> <button label="Profilo..." label_selected="Profilo..." name="Profile..."/> <text name="Group:"> Gruppo: </text> + <text left="119" name="GroupText" width="227" /> <button label="Imposta..." label_selected="Imposta..." name="Set..."/> - <check_box label="Permetti cessione al gruppo" name="check deed" tool_tip="Un funzionario del gruppo può cedere questa terra al gruppo stesso cosicchè essa sarà  supportata dalle terre del gruppo."/> + <check_box left="119" label="Permetti cessione al gruppo" name="check deed" tool_tip="Un funzionario del gruppo può cedere questa terra al gruppo stesso cosicchè essa sarà  supportata dalle terre del gruppo."/> <button label="Cedi..." label_selected="Cedi..." name="Deed..." tool_tip="Puoi solo offrire terra se sei un funzionario del gruppo selezionato."/> - <check_box label="Il proprietario fa un contributo con la cessione" name="check contrib" tool_tip="Quando la terra è ceduta al gruppo, il proprietario precedente contribuisce con abbastanza allocazione di terra per supportarlo."/> + <check_box left="119" label="Il proprietario fa un contributo con la cessione" name="check contrib" tool_tip="Quando la terra è ceduta al gruppo, il proprietario precedente contribuisce con abbastanza allocazione di terra per supportarlo."/> <text name="For Sale:"> In vendita: </text> - <text name="Not for sale."> + <text name="Not for sale." left="119"> Non in vendita. </text> - <text name="For Sale: Price L$[PRICE]."> - Prezzo: [PRICE] L$. + <text name="For Sale: Price L$[PRICE]." left="119"> + Prezzo: [PRICE]L$ ([PRICE_PER_SQM]L$/m²). </text> - <button label="Vendi la terra..." label_selected="Vendi la terra..." name="Sell Land..."/> - <text name="For sale to"> + <text name="SalePending" left="119" width="321"/> + <button bottom="-242" label="Vendi la terra..." label_selected="Vendi la terra..." name="Sell Land..."/> + <text name="For sale to" left="119"> In vendita a: [BUYER] </text> - <text name="Sell with landowners objects in parcel."> + <text name="Sell with landowners objects in parcel." width="240" left="119"> Gli oggetti sono inclusi nella vendita. </text> - <text name="Selling with no objects in parcel."> + <text name="Selling with no objects in parcel." width="240" left="119"> Gli oggetti non sono inclusi nella vendita. </text> - <button label="Annulla la vendita del terreno" label_selected="Annulla la vendita del terreno" name="Cancel Land Sale"/> - <text name="Claimed:"> + <button bottom="-242" font="SansSerifSmall" left="275" width="165" label="Annulla la vendita del terreno" label_selected="Annulla la vendita del terreno" name="Cancel Land Sale"/> + <text name="Claimed:" width="115"> Presa in possesso il: </text> - <text name="DateClaimText"> + <text name="DateClaimText" left="119"> Tue Aug 15 13:47:25 2006 </text> <text name="PriceLabel"> Area: </text> - <text name="PriceText"> + <text name="PriceText" left="119" width="140"> 4048 m² </text> <text name="Traffic:"> Traffico: </text> - <text name="DwellText"> + <text name="DwellText" left="119" width="140"> 0 </text> - <button label="Acquista il terreno..." label_selected="Acquista il terreno..." name="Buy Land..."/> + <button label="Acquista il terreno..." label_selected="Acquista il terreno..." left="130" name="Buy Land..." width="125"/> <button label="Acquista per il gruppo..." label_selected="Acquista per il gruppo..." name="Buy For Group..."/> - <button label="Compra pass..." label_selected="Compra pass..." name="Buy Pass..." tool_tip="Un pass ti da un accesso temporaneo in questo territorio."/> + <button label="Compra pass..." label_selected="Compra pass..." left="130" width="125" name="Buy Pass..." tool_tip="Un pass ti da un accesso temporaneo in questo territorio."/> <button label="Abbandona la terra..." label_selected="Abbandona la terra..." name="Abandon Land..."/> <button label="Reclama la terra..." label_selected="Reclama la terra..." name="Reclaim Land..."/> <button label="Vendita Linden..." label_selected="Vendita Linden..." name="Linden Sale..." tool_tip="La terra deve essere posseduta, con contenuto impostato, e non già messa in asta."/> @@ -108,36 +122,60 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz </string> </panel> <panel label="Regolamento" name="land_covenant_panel"> - <text name="covenant_timestamp_text"> - Ultima modifica Wed Dec 31 16:00:00 1969 - </text> - <text name="region_name_lbl"> - Regione: - </text> - <text name="region_name_text"> - leyla + <text name="estate_section_lbl"> + Proprietà : </text> <text name="estate_name_lbl"> - Proprietà immobiliare: + Nome: </text> <text name="estate_name_text"> Continente </text> <text name="estate_owner_lbl"> - Proprietario immobiliare: + Proprietario: </text> <text name="estate_owner_text"> (nessuno) </text> - <text name="resellable_clause"> - La terra acquistata in questa regione non può essere rivenduta. - </text> - <text name="changeable_clause"> - La terra acquistata in questa regione non può essere unita o suddivisa. - </text> <text_editor name="covenant_editor"> Non c'è nessun regolamento imposto in questa regione. </text_editor> + <text name="covenant_timestamp_text"> + Ultima modifica Wed Dec 31 16:00:00 1969 + </text> + <text name="region_section_lbl"> + Regione: + </text> + <text name="region_name_lbl"> + Nome: + </text> + <text name="region_name_text" left="125"> + leyla + </text> + <text name="region_landtype_lbl"> + Tipo: + </text> + <text name="region_landtype_text" left="125"> + Mainland / Homestead + </text> + <text name="region_maturity_lbl" width="115"> + Categoria di accesso: + </text> + <text name="region_maturity_text" left="125"> + Adult + </text> + <text name="resellable_lbl"> + Rivendita: + </text> + <text name="resellable_clause" left="125"> + La terra in questa regione non può essere rivenduta. + </text> + <text name="changeable_lbl"> + Suddividi: + </text> + <text name="changeable_clause" left="125"> + La terra in questa regione non può essere unita/suddivisa. + </text> <string name="can_resell"> La terra acquistata in questa regione può essere rivenduta. </string> @@ -145,10 +183,12 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz La terra acquistata in questa regione non può essere rivenduta. </string> <string name="can_change"> - La terra acquistata in questa regione può essere unita o suddivisa. + La terra acquistata in questa regione può essere unita +o suddivisa. </string> <string name="can_not_change"> - La terra acquistata in questa regione non può essere unita o suddivisa. + La terra acquistata in questa regione non può essere unita +o suddivisa. </string> </panel> <panel label="Oggetti" name="land_objects_panel"> @@ -158,7 +198,7 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz <text name="Simulator primitive usage:"> Oggetti presenti sul simulatore: </text> - <text name="objects_available"> + <text name="objects_available" left="214" width="230" > [COUNT] dei [MAX] ([AVAILABLE] dsponibili) </text> <string name="objects_available_text"> @@ -167,56 +207,57 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz <string name="objects_deleted_text"> [COUNT] dei [MAX] ([DELETED] saranno cancellati) </string> - <text name="Primitives parcel supports:"> - Numero massimo degli oggetti che il simulatore supporta: + <text name="Primitives parcel supports:" width="200"> + Oggetti che il terreno supporta: </text> - <text name="object_contrib_text"> + <text name="object_contrib_text" left="214" width="152"> [COUNT] </text> <text name="Primitives on parcel:"> Oggetti sul terreno: </text> - <text name="total_objects_text"> + <text name="total_objects_text" left="214" width="48"> [COUNT] </text> - <text name="Owned by parcel owner:"> + <text name="Owned by parcel owner:" left="14" width="180" > Posseduti dal proprietario: </text> - <text name="owner_objects_text"> + <text name="owner_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Mostra" label_selected="Mostra" name="ShowOwner"/> - <button label="Restituisci..." label_selected="Restituisci..." name="ReturnOwner..." tool_tip="Restituisci gli oggetti ai loro proprietari."/> - <text name="Set to group:"> + <button label="Mostra" label_selected="Mostra" name="ShowOwner" right="-135" width="60"/> + <button label="Restituisci..." label_selected="Restituisci..." name="ReturnOwner..." tool_tip="Restituisci gli oggetti ai loro proprietari." right="-10" width="119"/> + <text name="Set to group:" left="14" width="180"> Imposta al gruppo: </text> - <text name="group_objects_text"> + <text name="group_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Mostra" label_selected="Mostra" name="ShowGroup"/> - <button label="Restituisci..." label_selected="Restituisci..." name="ReturnGroup..." tool_tip="Restituisci gli oggetti ai loro proprietari."/> - <text name="Owned by others:"> + <button label="Mostra" label_selected="Mostra" name="ShowGroup" right="-135" width="60"/> + <button label="Restituisci..." label_selected="Restituisci..." name="ReturnGroup..." tool_tip="Restituisci gli oggetti ai loro proprietari." right="-10" width="119"/> + <text name="Owned by others:" left="14" width="180"> Posseduti da altri: </text> - <text name="other_objects_text"> + <text name="other_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Mostra" label_selected="Mostra" name="ShowOther"/> - <button label="Restituisci..." label_selected="Restituisci..." name="ReturnOther..." tool_tip="Restituisci gli oggetti ai loro proprietari."/> - <text name="Selected / sat upon:"> + <button label="Mostra" label_selected="Mostra" name="ShowOther" right="-135" width="60"/> + <button label="Restituisci..." label_selected="Restituisci..." name="ReturnOther..." tool_tip="Restituisci gli oggetti ai loro proprietari." right="-10" width="119"/> + <text name="Selected / sat upon:" left="14" width="193"> Selezionati / sui quali sei sopra: </text> - <text name="selected_objects_text"> + <text name="selected_objects_text" left="214" width="48"> [COUNT] </text> - <text name="Autoreturn"> + <text name="Autoreturn" left="4" width="412"> Autorestituisci gli oggetti degli altri residenti (minuti, 0 per disabilitata): </text> - <text name="Object Owners:"> + <line_editor name="clean other time" right="-20" /> + <text name="Object Owners:" width="150"> Proprietari degli oggetti: </text> - <button label="Aggiorna Elenco" label_selected="Aggiorna Elenco" name="Refresh List"/> - <button label="Restituisci oggetti..." label_selected="Restituisci oggetti..." name="Return objects..."/> + <button label="Aggiorna Elenco" label_selected="Aggiorna Elenco" name="Refresh List" left="158"/> + <button label="Restituisci oggetti..." label_selected="Restituisci oggetti..." name="Return objects..." left="270" width="164"/> <name_list name="owner list"> <column label="Tipo" name="type"/> <column label="Nome" name="name"/> @@ -252,6 +293,57 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz <check_box label="Sicuro (senza danno)" name="check safe" tool_tip="Se spuntato, imposta il terreno su 'sicuro', disabilitando i danni da combattimento. Se non spuntato, viene abilitato il combattimento a morte."/> <check_box label="Nessuna spinta" name="PushRestrictCheck" tool_tip="Previeni i colpi. Selezionare questa opzione può essere utile per prevenire comportamenti dannosi sul tuo terreno."/> <check_box label="Mostra il luogo nella ricerca (30 L$/week) sotto" name="ShowDirectoryCheck" tool_tip="Lascia che questa terra sia vista dagli altri nei risultati di ricerca"/> + <string name="search_enabled_tooltip"> + Fai in modo che la gente trovi questo terreno nei risultati della ricerca. + </string> + <string name="search_disabled_small_tooltip"> + Questa opzione è disabilitata perchè questo terreno ha un'area di 128 m² o inferiore. +Solamente terreni più grandi possono essere abilitati nella ricerca. + </string> + <string name="search_disabled_permissions_tooltip"> + Questa opzione è disabilitata perchè tu non puoi modificare le opzioni di questo terreno. + </string> + <combo_box name="land category with adult"> + <combo_item name="AnyCategory"> + Tutte le categorie + </combo_item> + <combo_item name="LindenLocation"> + Luoghi Linden + </combo_item> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Arts&Culture"> + Arte & Cultura + </combo_item> + <combo_item name="Business"> + Affari + </combo_item> + <combo_item name="Educational"> + Educazione + </combo_item> + <combo_item name="Gaming"> + Giochi + </combo_item> + <combo_item name="Hangout"> + Divertimento + </combo_item> + <combo_item name="NewcomerFriendly"> + Ospitalità per i nuovi entrati + </combo_item> + <combo_item name="Parks&Nature"> + Parchi & Natura + </combo_item> + <combo_item name="Residential"> + Residenziale + </combo_item> + <combo_item name="Shopping"> + Shopping + </combo_item> + <combo_item name="Other"> + Altro + </combo_item> + </combo_box> <combo_box name="land category"> <combo_item name="AnyCategory"> Tutte le categorie @@ -259,7 +351,6 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz <combo_item name="LindenLocation"> Luogo dei Linden </combo_item> - <combo_item name="Arts&Culture"> Arte & Cultura </combo_item> @@ -292,7 +383,19 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz </combo_item> </combo_box> <button label="?" label_selected="?" name="?"/> - <check_box name="MatureCheck" /> + <check_box label="Contenuto Mature" name="MatureCheck" tool_tip=" "/> + <string name="mature_check_mature"> + Contenuto Mature + </string> + <string name="mature_check_adult"> + Contenuto Adult + </string> + <string name="mature_check_mature_tooltip"> + Il contenuto o le informazioni del tuo terreno sono considerate Mature. + </string> + <string name="mature_check_adult_tooltip"> + Il contenuto o le informazioni del tuo terreno sono considerate Adult. + </string> <text name="Snapshot:"> Fotografia: </text> @@ -303,12 +406,12 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz <string name="landing_point_none"> (nessuno) </string> - <button label="Imposta" label_selected="Imposta" name="Set" tool_tip="Imposta il punto di atterraggio dove arrivano i visitatori. Impostalo nel punto dove si trova il tuo avatar in questo terreno."/> - <button label="Elimina" label_selected="Elimina" name="Clear" tool_tip="Elimina punto di atterraggio."/> + <button width="60" label="Imposta" label_selected="Imposta" name="Set" tool_tip="Imposta il punto di atterraggio dove arrivano i visitatori. Impostalo nel punto dove si trova il tuo avatar in questo terreno."/> + <button width="60" left="301" label="Elimina" label_selected="Elimina" name="Clear" tool_tip="Elimina punto di atterraggio."/> <text name="Teleport Routing: "> Rotte dei teleport: </text> - <combo_box name="landing type" tool_tip="Rotte dei teleport -- seleziona come vuoi organizzare i teleport nella tua terra."> + <combo_box width="140" name="landing type" tool_tip="Rotte dei teleport -- seleziona come vuoi organizzare i teleport nella tua terra."> <combo_item name="Blocked"> Bloccati </combo_item> @@ -327,39 +430,41 @@ Vai al menu Mondo > Informazioni sul terreno oppure seleziona un altro appezz </string> </panel> <panel label="Media" name="land_media_panel"> - <text name="with media:"> + <text name="with media:" width="85"> Tipo di Media: </text> - <combo_box name="media type" tool_tip="Specifica se l'Url è un video, una pagina web, o un altro tipo di media"/> - <text name="at URL:"> - Media URL: + <combo_box left="97" name="media type" tool_tip="Specifica se l'Url è un video, una pagina web, o un altro tipo di media"/> + <text name="at URL:" width="85"> + URL Media: </text> - <button label="Imposta..." label_selected="Imposta..." name="set_media_url"/> + <line_editor left="97" name="media_url"/> + <button label="Imposta..." label_selected="Imposta..." name="set_media_url" width="63"/> <text name="Description:"> Descrizione: </text> - <line_editor name="url_description" tool_tip="Testo che appare vicino al bottone play/carica"/> + <line_editor left="97" name="url_description" tool_tip="Testo che appare vicino al bottone play/carica"/> <text name="Media texture:"> Cambia Texture: </text> - <texture_picker label="" name="media texture" tool_tip="Clicca per scegliere un'immagine"/> - <text name="replace_texture_help"> - (Gli oggetti che hanno questa texture applicata mostreranno il video o -la pagina web dopo che avrai cliccato sulla freccia play.) + <texture_picker left="97" label="" name="media texture" tool_tip="Clicca per scegliere un'immagine"/> + <text name="replace_texture_help" width="285"> + (Gli oggetti che hanno questa texture applicata +mostreranno il video o la pagina web dopo che avrai +cliccato sulla freccia play.) </text> <text name="Options:"> Opzioni Media: </text> - <check_box label="Auto ridimensiona" name="media_auto_scale" tool_tip="Spuntando questa opzione, nell'appezzamento il contenuto media si ridimensionerà automaticamente. Potrebbe darsi che appaia un po' più lento e che diminuisca la qualità visiva ma nessun altro riadattamento o allineamento della texture sarà necessario."/> - <check_box label="Fai ripetere il video" name="media_loop" tool_tip="Fai ripetere il video continuamente. Quando il video è finito, reinizierà dal principio."/> - <check_box label="Nascondi indirizzo url dei media" name="hide_media_url" tool_tip="Abilitando questa opzione nasconderai l'indirizzo url dei media a tutte le persone non autorizzate a vedere le informazioni del terreno. Nota che questo non è disponibile per contenuto di tipo HTML."/> - <check_box label="Nascondi indirizzo url della musica" name="hide_music_url" tool_tip="Abilitando questa opzione nasconderai l'indirizzo url della musica a tutte le persone non autorizzate a vedere le informazioni del terreno."/> - <text name="media_size" tool_tip="Aumenta grandezza per far vedere meglio i media web, lascia a 0 per impostare il default."> + <check_box left="94" label="Auto ridimensiona" name="media_auto_scale" tool_tip="Spuntando questa opzione, nell'appezzamento il contenuto media si ridimensionerà automaticamente. Potrebbe darsi che appaia un po' più lento e che diminuisca la qualità visiva ma nessun altro riadattamento o allineamento della texture sarà necessario."/> + <check_box left="265" label="Fai ripetere il video" name="media_loop" tool_tip="Fai ripetere il video continuamente. Quando il video è finito, reinizierà dal principio."/> + <check_box left="94" label="Nascondi indirizzo URL Media" name="hide_media_url" tool_tip="Abilitando questa opzione nasconderai l'indirizzo url dei media a tutte le persone non autorizzate a vedere le informazioni del terreno. Nota che questo non è disponibile per contenuto di tipo HTML."/> + <check_box left="265" label="Nascondi indirizzo URL Musica" name="hide_music_url" tool_tip="Abilitando questa opzione nasconderai l'indirizzo url della musica a tutte le persone non autorizzate a vedere le informazioni del terreno."/> + <text left="99" width="120" name="media_size" tool_tip="Aumenta grandezza per far vedere meglio i media web, lascia a 0 per impostare il default."> Grandezza Media: </text> - <spinner name="media_size_width" tool_tip="Aumenta larghezza per far vedere meglio i media web, lascia a 0 per impostare il default."/> + <spinner left_delta="104" name="media_size_width" tool_tip="Aumenta larghezza per far vedere meglio i media web, lascia a 0 per impostare il default."/> <spinner name="media_size_height" tool_tip="Aumenta altezza per far vedere meglio i media web, lascia a 0 per impostare il default."/> <text name="pixels"> pixels @@ -367,24 +472,18 @@ Media: <text name="MusicURL:"> URL Musica: </text> + <line_editor left="97" name="music_url"/> <text name="Sound:"> Suono: </text> - <check_box label="Restringi il suono dello spazio a questo terreno" name="check sound local"/> + <check_box left="94" label="Limita le gesture e i suoni degli oggetti in questo territorio" name="check sound local"/> + <button label="?" label_selected="?" name="?" left="420"/> <text name="Voice settings:"> Voice: </text> - <radio_group name="parcel_voice_channel"> - <radio_item name="Estate"> - Usa il canale spaziale della regione - </radio_item> - <radio_item name="Private"> - Usa un canale privato - </radio_item> - <radio_item name="Disabled"> - Disabilita audio spaziale in questo terreno - </radio_item> - </radio_group> + <check_box left="94" label="Abilita il Voice" name="parcel_enable_voice_channel"/> + <check_box left="94" label="Abilita il Voice (stabilito su tutta la proprietà )" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box left="114" label="Limita il voice a questa porzione di terreno" name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="Accesso" name="land_access_panel"> <text name="Limit access to this parcel to:"> @@ -392,14 +491,14 @@ Media: </text> <check_box label="Permetti accesso pubblico" name="public_access"/> <text name="Only Allow"> - Blocca l'accesso con: + Blocca l'accesso con Residenti: </text> - <check_box label="Residenti che non hanno dato le proprie informazioni di pagamento alla Linden Lab" name="limit_payment" tool_tip="Manda via residenti non identificati."/> - <check_box label="Residenti che non sono adulti con età verificata" name="limit_age_verified" tool_tip="Manda via residenti che non hanno verificato la loro età . Guarda il sito support.secondlife.com per ulteriori informazioni."/> + <check_box label="Che non hanno dato le proprie informazioni di pagamento alla Linden Lab" name="limit_payment" tool_tip="Manda via residenti non identificati."/> + <check_box label="Che non sono adulti con età verificata" name="limit_age_verified" tool_tip="Manda via residenti che non hanno verificato la loro età . Guarda il sito support.secondlife.com per ulteriori informazioni."/> <string name="estate_override"> Una o più di queste impostazioni sono già impostate a livello regionale </string> - <check_box label="Permetti accesso al gruppo: [Gruppo]" name="GroupCheck" tool_tip="Imposta il gruppo nel pannello generale."/> + <check_box label="Permetti accesso al gruppo: [GROUP]" name="GroupCheck" tool_tip="Imposta il gruppo nel pannello generale."/> <check_box label="Vendi pass a:" name="PassCheck" tool_tip="Permetti in questo terreno l'accesso temporaneo"/> <combo_box name="pass_combo"> <combo_item name="Anyone"> diff --git a/indra/newview/skins/default/xui/it/floater_avatar_picker.xml b/indra/newview/skins/default/xui/it/floater_avatar_picker.xml index 1e41ce7c9803ac014cdd4cf232f3d19280914f5f..4e63c3b7d63b89c2812a0d03525a0412d129d8a7 100644 --- a/indra/newview/skins/default/xui/it/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/it/floater_avatar_picker.xml @@ -1,15 +1,40 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatarpicker" title="Scegli residente"> - <text name="instruct_search_resident_name"> - Scrivi parte del nome del residente: - </text> - <button label="Trova" label_selected="Trova" name="Find"/> - <text name="Or select their calling card:"> - Oppure seleziona un biglietto da visita: - </text> - <button label="Chiudi" label_selected="Chiudi" name="Close"/> + <tab_container name="ResidentChooserTabs"> + <panel label="Cerca" name="SearchPanel"> + <text name="InstructSearchResidentName"> + Scrivi parte del nome del residente: + </text> + <button label="Trova" label_selected="Trova" name="Find"/> + </panel> + <panel label="Biglietti da visita" name="CallingCardsPanel"> + <text name="InstructSelectCallingCard"> + Seleziona un biglietto da visita: + </text> + </panel> + <panel label="Vicino a me" name="NearMePanel"> + <text name="InstructSelectResident"> + Seleziona un residente nelle vicinanze: + </text> + <button label="Aggiorna la lista" label_selected="Aggiorna l'elenco" name="Refresh"/> + <slider label="Range" name="near_me_range"/> + <text name="meters"> + Metri + </text> + </panel> + </tab_container> <button label="Seleziona" label_selected="Seleziona" name="Select"/> - <string name="NotFound"> + <button label="Annulla" label_selected="Annulla" name="Cancel"/> + <string name="not_found"> '[TEXT]' non trovato </string> + <string name="no_one_near"> + Nessuno è vicino + </string> + <string name="no_results"> + Nessun risultato + </string> + <string name="searching"> + Ricerca... + </string> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_bulk_perms.xml b/indra/newview/skins/default/xui/it/floater_bulk_perms.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ca57f34b3230b3ffddb4132b839e15776efa059 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_bulk_perms.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floaterbulkperms" title="Modifica in massa i permessi del contenuto"> + <text name="applyto"> + Tipi di contenuto + </text> + <check_box label="Animazioni" name="check_animation"/> + <check_box label="Parti del corpo" name="check_bodypart"/> + <check_box label="Abiti" name="check_clothing"/> + <check_box label="Gesture" name="check_gesture"/> + <check_box label="Landmark" name="check_landmark"/> + <check_box label="Notecard" name="check_notecard"/> + <check_box label="Oggetti" name="check_object"/> + <check_box label="Script" name="check_script"/> + <check_box label="Suoni" name="check_sound"/> + <check_box label="Texture" name="check_texture"/> + <button label="Spunta tutti" label_selected="Tutti" name="check_all"/> + <button label="Togli la spunta a tutti" label_selected="Nessuno" name="check_none"/> + <text name="newperms"> + Nuovi permessi + </text> + <check_box label="Condividi con il gruppo" name="share_with_group"/> + <check_box label="Permetti a tutti di copiare" name="everyone_copy"/> + <text name="NextOwnerLabel"> + Il prossimo proprietario può: + </text> + <check_box label="Modificare" name="next_owner_modify"/> + <check_box label="Copiare" name="next_owner_copy"/> + <check_box label="Rivendere/Regalare" name="next_owner_transfer"/> + <button label="Aiuto" name="help"/> + <button label="Applica" name="apply"/> + <button label="Chiudi" name="close"/> + <string name="nothing_to_modify_text"> + La selezione non contiene nessun contenuto modificabile. + </string> + <string name="status_text"> + Impostazione permessi su [NAME] + </string> + <string name="start_text"> + Avvio richiesta di modifica dei permessi... + </string> + <string name="done_text"> + Conclusa richiesta di modifica dei permessi. + </string> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_buy_currency.xml b/indra/newview/skins/default/xui/it/floater_buy_currency.xml index d3eb332dbbd34c7cad5f944fca83cc5e73c4df0c..aa840b4de4893e8f6005c2cb6623bd4772fb7d98 100644 --- a/indra/newview/skins/default/xui/it/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/it/floater_buy_currency.xml @@ -3,14 +3,14 @@ <text name="info_buying"> Acquistando valuta: </text> - <text name="info_cannot_buy"> + <text name="info_cannot_buy" left="5" right="-5"> Non è possibile comprare ora </text> - <text name="info_need_more"> + <text name="info_need_more" left="5" right="-5" font="SansSerifLarge"> Hai bisogno di acquistare ulteriore contante: </text> <text name="error_message"> - Qualcosa non è andato a buon fine: + Qualcosa non è andato a buon fine. </text> <button label="Vai al sito web" name="error_web"/> <text name="contacting"> @@ -23,13 +23,13 @@ [NAME] [PRICE]L$ </text> <text name="currency_action"> - Compra L$ + Compra </text> <line_editor name="currency_amt"> 1234 </line_editor> <text name="currency_est"> - per circa [USD]US$ + L$ per circa [USD]US$ </text> <text name="getting_data"> Dati in ricezione... @@ -52,11 +52,14 @@ <text name="total_amount"> [AMT]L$ </text> - <text name="purchase_warning_repurchase"> - Confermando questa operazione si acquisterà solo la valuta. Per acquistare il bene, dovrai riprovare l'operazione nuovamente. + <text name="purchase_warning_repurchase" height="48" bottom_delta="-64" right="-10"> + Confermando questa operazione si acquisterà solo +la valuta. Per acquistare il bene, dovrai riprovare +l'operazione nuovamente. </text> - <text name="purchase_warning_notenough"> - Non stai comprando abbastanza denaro. Devi aumentare l'importo da acquistare. + <text name="purchase_warning_notenough" bottom_delta="16"> + Non stai comprando abbastanza denaro. +Devi aumentare l'importo da acquistare. </text> <button label="Cancella" name="cancel_btn"/> <button label="Acquista" name="buy_btn"/> diff --git a/indra/newview/skins/default/xui/it/floater_buy_land.xml b/indra/newview/skins/default/xui/it/floater_buy_land.xml index b20e3fa2b02b3c956575510a95399254a256e9e9..8697a66f86136e2139d16e6ce736eea8ade6bf64 100644 --- a/indra/newview/skins/default/xui/it/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/it/floater_buy_land.xml @@ -6,6 +6,12 @@ <text name="region_name_text"> (sconosciuto) </text> + <text name="region_type_label"> + Tipo: + </text> + <text name="region_type_text"> + (sconosciuto) + </text> <text name="estate_name_label"> Proprietà : </text> @@ -22,7 +28,7 @@ Terra acquistata in questa regione: </text> <text name="resellable_clause"> - La terra acquistata in questa regione può o non può essere rivenduta + Può o non può essere rivenduta. </text> <text name="changeable_clause"> Può o non può essere unita o suddivisa. @@ -44,13 +50,15 @@ Grandezza: </text> <text name="info_size"> - 1024 sq. m. + 1024 m² </text> <text name="info_price_label"> Prezzo: </text> <text name="info_price"> - 1500 L$, oggetti inclusi + 1500 L$ +(1.1 L$/m²) +venduta con gli oggetti </text> <text name="info_action"> Comprando questa terra: @@ -80,8 +88,7 @@ Aumenta il tasso di pagamento mensile delle tasse d'uso della terra a 40 US$/mese. </text> <text name="land_use_reason"> - Possiedi 1.309 metri quadri di terra. -Questo appezzamento è di 512 metri quadri. + Possiedi 1309 m² di terra. Questa porzione è 512 m² di terra. </text> <text name="purchase_action"> Paga il residente Joe 4000 L$ per la terra @@ -160,7 +167,7 @@ Prova a selezionare un'area più piccola. Comprando questa terra: </string> <string name="buying_for_group"> - Comprando questa terra per il gruppo: + Comprare la terra per il gruppo farà : </string> <string name="cannot_buy_now"> Non puoi comprare ora: @@ -184,7 +191,7 @@ Prova a selezionare un'area più piccola. Paga [AMOUNT] L$ a [SELLER] per questa terra </string> <string name="buy_for_US"> - Compra [AMOUNT] L$ per appross. [AMOUNT2] US$, + Comprare [AMOUNT] L$ per circa [AMOUNT2] US$, </string> <string name="parcel_meters"> Questo terreno è di [AMOUNT] metri quadri. @@ -202,6 +209,14 @@ supporta [AMOUNT2] oggetti <string name="sold_with_objects"> venduta con oggetti </string> + <string name="sold_without_objects"> + Oggetti non inclusi + </string> + <string name="info_price_string"> + [PRICE] L$ +([PRICE_PER_SQM] L$/m²) +[SOLD_WITH_OBJECTS] + </string> <string name="insufficient_land_credits"> Il gruppo [GROUP] avrà bisogno di contribuzioni anticipate, mediante crediti d'uso terriero, sufficienti a coprire l'area del terreno prima che l'acquisto diff --git a/indra/newview/skins/default/xui/it/floater_color_picker.xml b/indra/newview/skins/default/xui/it/floater_color_picker.xml index a71b75722ef91a66ede77d58fc0e7325135716ae..93188c29ac996976e0c16984a02953901f3a7ce5 100644 --- a/indra/newview/skins/default/xui/it/floater_color_picker.xml +++ b/indra/newview/skins/default/xui/it/floater_color_picker.xml @@ -3,28 +3,36 @@ <text name="r_val_text"> Rosso: </text> + <spinner left="84" name="rspin" width="47"/> <text name="g_val_text"> Verde: </text> + <spinner left="84" name="gspin" width="47"/> <text name="b_val_text"> Blu: </text> + <spinner left="84" name="bspin" width="47"/> <text name="h_val_text"> Tonalità : </text> + <spinner left="84" name="hspin" width="47"/> <text name="s_val_text"> Saturazione: </text> + <spinner left="84" name="sspin" width="47"/> <text name="l_val_text"> Luminosità : </text> + <spinner left="84" name="lspin" width="47"/> <check_box label="Applica Immediatamente" name="apply_immediate"/> - <button label="Annulla" label_selected="Annulla" name="cancel_btn"/> + <button left_delta="150" name="color_pipette" /> + <button left_delta="55" label="Annulla" label_selected="Annulla" name="cancel_btn"/> <button label="Seleziona" label_selected="Seleziona" name="select_btn"/> <text name="Current color:"> Colore attuale: </text> <text name="(Drag below to save.)"> - (Trascina qui sotto per salvare.) + (Trascina qui sotto + per salvare.) </text> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_customize.xml b/indra/newview/skins/default/xui/it/floater_customize.xml index 899112ea2b870fcf4c51ccc4288520799b306536..aeb285e7432a20c48af69f7babaa8cdf269750b3 100644 --- a/indra/newview/skins/default/xui/it/floater_customize.xml +++ b/indra/newview/skins/default/xui/it/floater_customize.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater customize" title="Aspetto fisico"> - <tab_container name="customize tab container"> +<floater name="floater customize" title="Aspetto fisico" width="551"> + <tab_container name="customize tab container" tab_min_width="120" width="549"> <panel label="Parti del corpo" name="body_parts_placeholder"/> - <panel label="Forma del corpo" name="Shape"> - <button label="Rimuovi le modifiche" label_selected="Rimuovi le modifiche" name="Revert"/> + <panel label="Forma del corpo" name="Shape" left="124" width="389"> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> <button label="Corpo" label_selected="Corpo" name="Body"/> <button label="Testa" label_selected="Testa" name="Head"/> <button label="Occhi" label_selected="Occhi" name="Eyes"/> @@ -21,7 +21,6 @@ Maschio </radio_item> </radio_group> - <button label="Casuale" label_selected="Casuale" name="Randomize"/> <text name="title"> [DESC] </text> @@ -38,21 +37,24 @@ Ubicato in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova Forma del Corpo trascinandone una dall'inventario sul tuo avatar. In alternativa, puoi crearne una nuova ed indossarla. + Indossa una nuova Forma del Corpo trascinandone una dall'inventario +sul tuo avatar. In alternativa, puoi crearne una nuova ed indossarla. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> - <button label="Crea una nuova forma del corpo" label_selected="Crea una nuova forma del corpo" name="Create New"/> - <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> + <text name="Item Action Label" right="89"> + Forma del corpo: + </text> + <button label="Crea una nuova forma del corpo" label_selected="Crea una nuova forma del corpo" name="Create New" width="190"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> </panel> <panel label="Pelle" name="Skin"> - <button label="Colore della pelle" label_selected="Colore della pelle" name="Skin Color"/> - <button label="Dettagli della faccia" label_selected="Dettagli della faccia" name="Face Detail"/> - <button label="Trucco" label_selected="Trucco" name="Makeup"/> - <button label="Dettagli del corpo" label_selected="Dettagli del corpo" name="Body Detail"/> + <button label="Colore della pelle" label_selected="Colore della pelle" name="Skin Color" width="115"/> + <button label="Dettagli della faccia" label_selected="Dettagli della faccia" name="Face Detail" width="115"/> + <button label="Trucco" label_selected="Trucco" name="Makeup" width="115"/> + <button label="Dettagli del corpo" label_selected="Dettagli del corpo" name="Body Detail" width="115"/> <text name="title"> [DESC] </text> @@ -69,20 +71,22 @@ Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova pelle trascinandola dall'inventario al tuo avatar. In alternativa, puoi crearne una nuova da zero ed indossarla. + Indossa una nuova pelle trascinandola dall'inventario al tuo avatar. +In alternativa, puoi crearne una nuova da zero ed indossarla. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> - <texture_picker label="Tatuaggi della testa" name="Head Tattoos" tool_tip="Clicca per scegliere un'immagine"/> - <texture_picker label="Tatuaggi superiori" name="Upper Tattoos" tool_tip="Clicca per scegliere un'immagine"/> - <texture_picker label="Tatuaggi inferiori" name="Lower Tattoos" tool_tip="Clicca per scegliere un'immagine"/> - <button label="Randomizza" label_selected="Randomizza" name="Randomize"/> + <text name="Item Action Label" right="89"> + Pelle: + </text> + <texture_picker width="96" label="Tatuaggi: testa" name="Head Tattoos" tool_tip="Clicca per scegliere un'immagine"/> + <texture_picker width="96" label="Tatuaggi: superiori" name="Upper Tattoos" tool_tip="Clicca per scegliere un'immagine"/> + <texture_picker width="96" label="Tatuaggi: inferiori" name="Lower Tattoos" tool_tip="Clicca per scegliere un'immagine"/> <button label="Crea una nuova pelle" label_selected="Crea una nuova pelle" name="Create New"/> - <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Capelli" name="Hair"> <button label="Capelli" label_selected="Colore" name="Color"/> @@ -105,18 +109,20 @@ Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi capelli trascinandoli dall'inventario al tuo avatar. In alternativa, puoi crearne di nuovi da zero ed indossarli. + Indossa dei nuovi capelli trascinandoli dall'inventario al tuo avatar. +In alternativa, puoi crearne di nuovi da zero ed indossarli. </text> <text name="no modify instructions"> Non hai il permesso per modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Capelli: + </text> <texture_picker label="Texture" name="Texture" tool_tip="Clicca per scegliere un'immagine"/> - <button label="Randomizza" label_selected="Randomizza" name="Randomize"/> <button label="Crea nuovi capelli" label_selected="Crea nuovi capelli" name="Create New"/> - <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Occhi" name="Eyes"> <text name="title"> @@ -135,28 +141,30 @@ Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi occhi trascinandoli dall'inventario al tuo avatar. In alternativa, puoi crearne di nuovi da zero ed indossarli. + Indossa dei nuovi occhi trascinandoli dall'inventario al tuo avatar. +In alternativa, puoi crearne di nuovi da zero ed indossarli. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Occhi: + </text> <texture_picker label="Iride" name="Iris" tool_tip="Clicca per scegliere un'immagine"/> - <button label="Randomizza" label_selected="Randomizza" name="Randomize"/> <button label="Crea nuovi occhi" label_selected="Crea nuovi occhi" name="Create New"/> - <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Vestiti" name="clothes_placeholder"/> <panel label="Camicia" name="Shirt"> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere un colore"/> - <button label="Crea una nuova maglietta" label_selected="Crea una nuova maglietta" name="Create New"/> + <button label="Crea una nuova camicia" label_selected="Crea una nuova camicia" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> <text name="title"> [DESC] </text> @@ -173,20 +181,24 @@ Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova maglietta trascinandola dall'inventario al tuo avatar. In alternativa, puoi crearne una nuova da zero ed indossarla. + Indossa una nuova maglietta trascinandola dall'inventario al tuo avatar. +In alternativa, puoi crearne una nuova da zero ed indossarla. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Camicia: + </text> </panel> <panel label="Pantaloni" name="Pants"> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere un colore"/> - <button label="Crea nuovi pantaloni" label_selected="Crea nuovi pantaloni" name="Create New"/> + <button label="Crea nuovi pantaloni" label_selected="Crea nuovi pantaloni" name="Create New" /> <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> <text name="title"> [DESC] </text> @@ -203,11 +215,15 @@ Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi pantaloni trascinandoli dall'inventario al tuo avatar. In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. + Indossa dei nuovi pantaloni trascinandoli dall'inventario al tuo avatar. +In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Pantaloni: + </text> </panel> <panel label="Scarpe" name="Shoes"> <text name="title"> @@ -226,18 +242,22 @@ Ubicate in [PATH] </text> <text name="not worn instructions"> - Indossa delle nuove scarpe trascinandole dall'inventario al tuo avatar. In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. + Indossa delle nuove scarpe trascinandole dall'inventario al tuo avatar. +In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> - <texture_picker label=">Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> + <text name="Item Action Label" right="89"> + Scarpe: + </text> + <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere un colore"/> <button label="Crea nuove scarpe" label_selected="Crea nuove scarpe" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Calze" name="Socks"> <text name="title"> @@ -256,18 +276,22 @@ Ubicato in [PATH] </text> <text name="not worn instructions"> - Indossa delle nuove calze trascinandole dall'inventario al tuo avatar. In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. + Indossa delle nuove calze trascinandole dall'inventario al tuo avatar. +In alternativa, puoi crearne uno paio nuovo da zero ed indossarlo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Calze: + </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere un colore"/> - <button label="Crea nuove calze" label_selected="Crea nuove calze" name="Create New"/> + <button label="Crea nuove calze" label_selected="Crea nuove calze" name="Create New" /> <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Giacca" name="Jacket"> <text name="title"> @@ -286,19 +310,23 @@ Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova giacca trascinandola dall'inventario al tuo avatar. In alternativa, puoi crearne una nuova da zero ed indossarla. + Indossa una nuova giacca trascinandola dall'inventario al tuo avatar. +In alternativa, puoi crearne una nuova da zero ed indossarla. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> - <texture_picker label="Tessuto, parte superiore" name="Upper Fabric" tool_tip="Clicca per scegliere un'immagine"/> - <texture_picker label="Tessuto, parte inferiore" name="Lower Fabric" tool_tip="Clicca per scegliere un'immagine"/> + <text name="Item Action Label" right="89"> + Giacca: + </text> + <texture_picker width="96" label="Tessuto: superiore" name="Upper Fabric" tool_tip="Clicca per scegliere un'immagine"/> + <texture_picker width="96" label="Tessuto: inferiore" name="Lower Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere il colore"/> <button label="Crea una nuova giacca" label_selected="Crea una nuova giacca" name="Create New"/> <button label="Togli" label_selected="Togli" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Guanti" name="Gloves"> <text name="title"> @@ -317,18 +345,22 @@ Ubicati in [PATH] </text> <text name="not worn instructions"> - Indossa dei nuovi guanti trascinandoli dall'inventario al tuo avatar. In alternativa, puoi crearne un paio nuovo da zero ed indossarlo. + Indossa dei nuovi guanti trascinandoli dall'inventario al tuo avatar. +In alternativa, puoi crearne un paio nuovo da zero ed indossarlo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Guanti: + </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere il colore"/> <button label="Crea nuovi guanti" label_selected="Crea nuovi guanti" name="Create New"/> - <button label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button width="115" font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Canottiera" name="Undershirt"> <text name="title"> @@ -347,18 +379,22 @@ Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova canottiera trascinandola dall'inventario al tuo avatar. In alternativa, puoi crearne una nuovo da zero ed indossarla. + Indossa una nuova canottiera trascinandola dall'inventario al tuo avatar. +In alternativa, puoi crearne una nuovo da zero ed indossarla. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Canottiera: + </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere il colore"/> <button label="Crea una nuova canottiera" label_selected="Crea una nuova canottiera" name="Create New"/> - <button label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button width="115" font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Mutande" name="Underpants"> <text name="title"> @@ -377,18 +413,22 @@ Ubicato in [PATH] </text> <text name="not worn instructions"> - Indossa delle nuove mutande trascinandole dall'inventario al tuo avatar. In alternativa, puoi crearne una paio nuovo da zero ed indossarlo. + Indossa delle nuove mutande trascinandole dall'inventario al tuo avatar. +In alternativa, puoi crearne una paio nuovo da zero ed indossarlo. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Mutande: + </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere il colore"/> <button label="Crea nuove mutande" label_selected="Crea nuove mutande" name="Create New"/> - <button label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button width="115" font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> <panel label="Gonna" name="Skirt"> <text name="title"> @@ -407,21 +447,26 @@ Ubicata in [PATH] </text> <text name="not worn instructions"> - Indossa una nuova gonna trascinandola dall'inventario al tuo avatar. In alternativa, puoi crearne una nuova da zero ed indossarla. + Indossa una nuova gonna trascinandola dall'inventario al tuo avatar. +In alternativa, puoi crearne una nuova da zero ed indossarla. </text> <text name="no modify instructions"> Non hai il permesso di modificare questo indumento. </text> + <text name="Item Action Label" right="89"> + Gonna: + </text> <texture_picker label="Tessuto" name="Fabric" tool_tip="Clicca per scegliere un'immagine"/> <color_swatch label="Colore/Tinta" name="Color/Tint" tool_tip="Clicca per scegliere il colore"/> <button label="Crea una nuova gonna" label_selected="Crea una nuova gonna" name="Create New"/> - <button label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> - <button label="Salva" label_selected="Salva" name="Save"/> - <button label="Salva come" label_selected="Salva come" name="Save As"/> - <button label="Rimuovi l'ultima modifica" label_selected="Rimuovi l'ultima modifica" name="Revert"/> + <button width="115" font="SansSerifSmall" label="Rimuovi l'indumento" label_selected="Rimuovi l'indumento" name="Take Off"/> + <button left="95" width="72" label="Salva" label_selected="Salva" name="Save"/> + <button left="171" label="Salva come..." label_selected="Salva come..." name="Save As"/> + <button font="SansSerifSmall" width="120" left="267" label="Annulla le modifiche" label_selected="Annulla le modifiche" name="Revert"/> </panel> </tab_container> - <button label="Chiudi" label_selected="Chiudi" name="Close"/> - <button label="Salva tutto" label_selected="Salva tutto" name="Save All"/> - <button label="Crea outfit" label_selected="Crea outfit" name="Make Outfit"/> + <scroll_container left="254" name="panel_container"/> + <button label="Annulla" label_selected="Annulla" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="Crea Outfit..." label_selected="Crea Outfit..." name="Make Outfit" left="122" /> </floater> diff --git a/indra/newview/skins/default/xui/it/floater_font_test.xml b/indra/newview/skins/default/xui/it/floater_font_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..27b87a931d66d05d4a581bb728d191f417d0f0b0 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_font_test.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="Tipo di carattere per test"> + <text name="linea"> + OverrideTest, dovrebbe apparire qui come Times. (Dal default/xui/en-us) + </text> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_joystick.xml b/indra/newview/skins/default/xui/it/floater_joystick.xml index 13e81978efa252c071933b772c9eb9dc6b654826..dcd637f199ee155a94124d23c19418d1a3e1987d 100644 --- a/indra/newview/skins/default/xui/it/floater_joystick.xml +++ b/indra/newview/skins/default/xui/it/floater_joystick.xml @@ -71,6 +71,8 @@ Angolo morto dello zoom </text> <button label="SpaceNavigator Defaults" name="SpaceNavigatorDefaults"/> + <button label="OK" label_selected="OK" name="ok_btn"/> + <button label="Annulla" label_selected="Annulla" name="cancel_btn"/> <string name="JoystickMonitor"> Monitor del Joystick </string> diff --git a/indra/newview/skins/default/xui/it/floater_land_holdings.xml b/indra/newview/skins/default/xui/it/floater_land_holdings.xml index 76c4550c3a987dd052c0c8fdae41cd40e8f948ad..6ac84b854f83dbaaa86b09fb6d576e749c41c26f 100644 --- a/indra/newview/skins/default/xui/it/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/it/floater_land_holdings.xml @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="land holdings floater" title="Il mio terreno"> <scroll_list name="parcel list"> - <column label="Nome" name="name"/> - <column label="Luogo" name="location"/> + <column label="Nome del terreno" name="name"/> + <column label="Regione" name="location"/> + <column label="Tipo" name="type"/> <column label="Area" name="area"/> </scroll_list> <button label="Teletrasportati" label_selected="Teletrasportati" name="Teleport" tool_tip="Teletrasportati al centro di questo terreno."/> diff --git a/indra/newview/skins/default/xui/it/floater_perm_prefs.xml b/indra/newview/skins/default/xui/it/floater_perm_prefs.xml new file mode 100644 index 0000000000000000000000000000000000000000..8037481f37e580b5f6b7d27ed61fbb14df612ff5 --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_perm_prefs.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="perm prefs" title="Permessi di base di importazione"> + <panel label="Permessi" name="permissions"> + <button label="?" label_selected="?" name="help"/> + <check_box label="Condividi con il gruppo" name="share_with_group"/> + <check_box label="Permetti a chiunque di copiare" name="everyone_copy"/> + <text name="NextOwnerLabel"> + Il prossimo possessore può: + </text> + <check_box label="Modificare" name="next_owner_modify"/> + <check_box label="Copiare" name="next_owner_copy"/> + <check_box label="Rivendere/Regalare" name="next_owner_transfer"/> + </panel> + <button label="OK" label_selected="OK" name="ok"/> + <button label="Annulla" label_selected="Annulla" name="cancel"/> +</floater> diff --git a/indra/newview/skins/default/xui/it/floater_report_abuse.xml b/indra/newview/skins/default/xui/it/floater_report_abuse.xml index 7866027e7a337e12c68adcc790117e85d260f38f..99165da2539501e41543f44b47e525b22630e764 100644 --- a/indra/newview/skins/default/xui/it/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/it/floater_report_abuse.xml @@ -45,9 +45,9 @@ <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> Età > Residente adulto nella Teen Second Life </combo_item> - - - + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + Età > Residente minorenne al di fuori della 'Second Life per Teenager' + </combo_item> <combo_item name="Assault__Combat_sandbox___unsafe_area"> Assalto > sandbox da combattimento / area pericolosa </combo_item> @@ -117,15 +117,15 @@ <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> Indecenza > Condotta o contenuti largamente offensivi </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> Indecenza > Nome di un avatar inappropriato </combo_item> - - - + <combo_item name="Indecency__Mature_content_in_PG_region"> + Indecenza > Contenuto o condotta inappropriata in una regione PG + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + Indecenza > Contenuto o condotta inappropriata in una regione Mature + </combo_item> <combo_item name="Intellectual_property_infringement_Content_Removal"> Violazione della proprietà intellettuale > Rimozione contenuti </combo_item> diff --git a/indra/newview/skins/default/xui/it/floater_sell_land.xml b/indra/newview/skins/default/xui/it/floater_sell_land.xml index 8f7c5073faf64e57ccd82180a4b0aa059b19957b..3f47c0ef78cbba7aa60e389c2b701f5a5b28c12a 100644 --- a/indra/newview/skins/default/xui/it/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/it/floater_sell_land.xml @@ -3,18 +3,20 @@ <text name="info_parcel_label"> Terreno: </text> - <text name="info_parcel"> + <text name="info_parcel" left="82"> NOME APPEZZAMENTO </text> <text name="info_size_label"> Dimensioni: </text> - <text name="info_size"> - [AREA] mq + <text name="info_size" left="82"> + [AREA] m² </text> - <text name="info_action"> - Per vendere questo terreno: + <text height="28" name="info_action" bottom_delta="-57"> + Per vendere questo +terreno: </text> + <icon bottom_delta="-86" name="step_price" /> <text name="price_label"> Imposta prezzo: </text> @@ -49,9 +51,10 @@ Vendi gli oggetti con la terra? </text> <text name="sell_objects_text"> - Gli oggetti trasferibili del proprietario della terra sul terreno cambieranno proprietario. + Gli oggetti trasferibili del proprietario della terra sul terreno +cambieranno proprietario. </text> - <radio_group name="sell_objects"> + <radio_group name="sell_objects" bottom_delta="-58" > <radio_item name="no"> No, voglio mantenere la proprietà degli oggetti </radio_item> diff --git a/indra/newview/skins/default/xui/it/floater_sound_preview.xml b/indra/newview/skins/default/xui/it/floater_sound_preview.xml index f236c51e226c3fad4f00eb49a57efe73d2ca8ec6..86117329839811060819f9d3b437faec34085ca7 100644 --- a/indra/newview/skins/default/xui/it/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/it/floater_sound_preview.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Name/Description" title="sound.wav"> +<floater name="Sound Preview" title="sound.wav"> <text name="name_label"> Nome: </text> diff --git a/indra/newview/skins/default/xui/it/floater_statistics.xml b/indra/newview/skins/default/xui/it/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..6083949b8c19ded88c9c6433379e18256b66917b --- /dev/null +++ b/indra/newview/skins/default/xui/it/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="Statistiche"/> diff --git a/indra/newview/skins/default/xui/it/floater_tools.xml b/indra/newview/skins/default/xui/it/floater_tools.xml index ced3aec14aaf6cd7ffb868168c9f821c8cdf96e1..a89ae9d8037f46616901a93eb51751bcf460e918 100644 --- a/indra/newview/skins/default/xui/it/floater_tools.xml +++ b/indra/newview/skins/default/xui/it/floater_tools.xml @@ -17,7 +17,7 @@ <check_box label="Seleziona Texture" name="radio select face"/> <check_box label="Modifica parti unite" name="checkbox edit linked parts"/> <text name="text ruler mode"> - Modalità  regolo di precisione: + Modalità  regolo di precisione: </text> <combo_box name="combobox grid mode"> <combo_item name="World"> @@ -52,35 +52,33 @@ <button label="" label_selected="" name="ToolRing" tool_tip="Anello"/> <button label="" label_selected="" name="ToolTree" tool_tip="Albero"/> <button label="" label_selected="" name="ToolGrass" tool_tip="Erba"/> - <check_box label="Mantieni lo strumento selezionato" name="checkbox sticky"/> + <check_box label="Mantieni selezionato" name="checkbox sticky"/> <check_box label="Copia la selezione" name="checkbox copy selection"/> - <check_box label="Centra la Copia" name="checkbox copy centers"/> - <check_box label="Ruota la Copia" name="checkbox copy rotates"/> + <check_box label="Centra" name="checkbox copy centers"/> + <check_box label="Ruota" name="checkbox copy rotates"/> <check_box label="Seleziona il terreno" name="radio select land"/> - <check_box label="Appiattisci il terreno" name="radio flatten"/> - <check_box label="Alza il terreno" name="radio raise"/> - <check_box label="Abbassa il terreno" name="radio lower"/> - <check_box label="Uniforma il terreno" name="radio smooth"/> - <check_box label="Corruga il terreno" name="radio noise"/> - <check_box label="Ripristina il terreno" name="radio revert"/> - <combo_box name="combobox brush size"> - <combo_item name="Small"> - Piccolo - </combo_item> - <combo_item name="Medium"> - Medio - </combo_item> - <combo_item name="Large"> - Grande - </combo_item> - </combo_box> + <check_box label="Appiattisci" name="radio flatten"/> + <check_box label="Eleva" name="radio raise"/> + <check_box label="Abbassa" name="radio lower"/> + <check_box label="Uniforma" name="radio smooth"/> + <check_box label="Ondula" name="radio noise"/> + <check_box label="Ripristina" name="radio revert"/> + <button label="Applica" label_selected="Applica" name="button apply to selection" tool_tip="Modifica il terreno selezionato"/> + <text name="Bulldozer:"> + Bulldozer: + </text> + <text name="Dozer Size:"> + Grandezza + </text> <text name="Strength:"> - Pressione: + Potenza + </text> + <text name="obj_count"> + Oggetti selezionati: [COUNT] + </text> + <text name="prim_count"> + primitive: [COUNT] </text> - <button label="Applica alla selezione" label_selected="Applica alla selezione" name="button apply to selection" tool_tip="Modifica il terreno selezionato"/> - <check_box label="Mostra i proprietari" name="checkbox show owners"/> - <button label="Espandi >>" name="button more" tool_tip="Opzioni avanzate"/> - <button label="<< Restringi" name="button less" tool_tip="Opzioni avanzate"/> <tab_container name="Object Info Tabs"> <panel label="Generale" name="General"> <text name="Name:"> @@ -110,16 +108,13 @@ The Lindens </text> <button label="Imposta..." label_selected="Imposta..." name="button set group"/> - <text name="prim info"> - 1 Oggetto, 1 Prim - </text> <text name="Permissions:"> Permessi: </text> <text name="perm_modify"> Puoi modificare questo oggetto. </text> - <check_box label="Condividi con il gruppo" name="checkbox share with group" tool_tip="Permetti ai membri del gruppo di muovere, modificare, copiare e cancellare."/> + <check_box label="Condividi con il gruppo" name="checkbox share with group" tool_tip="Permetti a tutti i membri del gruppo di condividere ed utilizzare i tuoi permessi per questo oggetto. Devi cederlo al gruppo per abilitare le restrizioni di ruolo."/> <string name="text deed continued"> Cedi al gruppo... </string> @@ -362,6 +357,9 @@ <text name="advanced_dimple"> Scava Inizio e Fine </text> + <text name="advanced_slice"> + Affetta Inizio e Fine + </text> <spinner label="I" name="Path Limit Begin"/> <spinner label="F" name="Path Limit End"/> <text name="text taper2"> @@ -553,21 +551,33 @@ <button label="Allinea" label_selected="Allinea" name="button align"/> </panel> <panel label="Contenuto" name="Contents"> - <button label="Nuovo script..." label_selected="Nuovo script..." name="button new script"/> + <button label="Nuovo Script" label_selected="Nuovo script..." name="button new script"/> + <button label="Permessi..." name="button permissions"/> </panel> </tab_container> <panel name="land info panel"> + <text name="label_parcel_info"> + Informazioni sul terreno + </text> <text name="label_area_price"> Prezzo: [PRICE] L$ per [AREA] mq. </text> <text name="label_area"> Area: [AREA] mq. </text> - <button label="Acquista il terreno..." label_selected="Acquista il terreno..." name="button buy land"/> - <button label="Abbandona il terreno..." label_selected="Abbandona il terreno..." name="button abandon land"/> + <button label="Informazioni sul terreno..." label_selected="Informazioni sul terreno..." name="button about land"/> + <check_box label="Mostra i proprietari" name="checkbox show owners" tool_tip="Colora i terreni in base ai loro proprietari"/> + <button label="?" label_selected="?" name="button show owners help"/> + <text name="label_parcel_modify"> + Modifica il terreno + </text> <button label="Suddividi..." label_selected="Suddividi..." name="button subdivide land"/> <button label="Unisci..." label_selected="Unisci..." name="button join land"/> - <button label="Informazioni sul terreno..." label_selected="Informazioni sul terreno..." name="button about land"/> + <text name="label_parcel_trans"> + Transazioni del territorio + </text> + <button label="Acquista il terreno..." label_selected="Acquista il terreno..." name="button buy land"/> + <button label="Abbandona il terreno..." label_selected="Abbandona il terreno..." name="button abandon land"/> </panel> <string name="status_rotate"> Sposta le fasce colorate per ruotare l'oggetto @@ -585,10 +595,10 @@ Clicca e sposta per cambiare visuale </string> <string name="status_grab"> - Trascina per spostare gli oggetti, Ctrl per sollevarli, Ctrl+maiuscolo per ruotarli + Trascina per muovere, Ctrl per alzare, Ctrl-Shift per ruotare </string> <string name="status_place"> - Clicca intorno per creare, Maiuscolo+click per selezionare + Clicca inworld per costruire </string> <string name="status_selectland"> Clicca e trascina per selezionare il terreno 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 518d93244fa34a5a3ff76da3c130d28a11fe92d4..8d58b7df3e326e453243a7fa56f30c85ba9de67e 100644 --- a/indra/newview/skins/default/xui/it/floater_world_map.xml +++ b/indra/newview/skins/default/xui/it/floater_world_map.xml @@ -4,35 +4,31 @@ <panel label="Oggetti" name="objects_mapview"/> <panel label="Terreno" name="terrain_mapview"/> </tab_container> - <text name="land_for_sale_label"> - Terreno in vendita - </text> - <text name="auction_label"> - Asta - </text> <text name="you_label"> Tu </text> <text name="home_label"> Casa </text> - <button label="Vai a Casa" label_selected="Vai a Casa" name="Go Home" tool_tip="Teletrasportati a casa"/> - <text name="person_label"> - Persona - </text> - <text name="infohub_label"> - Punto d'informazione - </text> - <text name="telehub_label"> - Snodo di teleport + <text name="auction_label"> + Asta </text> - <text name="land_for_sale_label2"> + <text name="land_for_sale_label"> Terreno in vendita </text> + <button label="Vai a Casa" label_selected="Vai a Casa" name="Go Home" tool_tip="Teletrasportati a casa"/> + <check_box label="Residenti" name="people_chk"/> + <check_box label="Punto informativo" name="infohub_chk"/> + <check_box label="Punto di snodo di teletrasporto" name="telehubchk"/> + <icon bottom="-170" name="landforsale" /> + <check_box label="Terra in vendita" name="land_for_sale_chk" bottom="-170"/> <text name="events_label"> - Eventi + Eventi: </text> - + <check_box label="PG" name="event_chk"/> + <check_box label="Mature" name="event_mature_chk"/> + <check_box label="Adult" name="event_adult_chk"/> + <icon bottom="-200" name="avatar_icon" /> <combo_box label="Amici Online" name="friend combo" tool_tip="Amici da mostrare sulla mappa"> <combo_item name="none_selected"> Amici Online @@ -48,16 +44,20 @@ <text name="search_label"> Cerca tra i risultati: </text> + <scroll_list name="search_results" bottom_delta="-310" height="304" > + <column label="" name="icon"/> + <column label="" name="sim_name"/> + </scroll_list> <text name="location_label"> Luogo: </text> <spinner name="spin x" tool_tip="Coordinata X del luogo da mostrare sulla mappa"/> <spinner name="spin y" tool_tip="Coordinata Y del luogo da mostrare sulla mappa"/> <spinner name="spin z" tool_tip="Coordinata Z del luogo da mostrare sulla mappa"/> - <button label="Teletrasporto" label_selected="Teletrasporto" name="Teleport" tool_tip="Teletrasporto al luogo prescelto"/> - <button label="Mostra destinazione" label_selected="Mostra destinazione" name="Show Destination" tool_tip="Centra la mappa sul luogo prescelto"/> - <button label="Pulisci" label_selected="Pulisci" name="Clear" tool_tip="Togli traccia"/> - <button 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 label="Copia lo SLURL negli appunti" name="copy_slurl" tool_tip="Copia l'attuale posizione quale SLURL utilizzabile nel web."/> + <button font="SansSerifSmall" label="Teletrasporto" label_selected="Teletrasporto" name="Teleport" tool_tip="Teletrasporto al luogo prescelto"/> + <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."/> <slider label="Zoom" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/it/menu_inventory.xml b/indra/newview/skins/default/xui/it/menu_inventory.xml index f7af6a226a40db3f56c034a9036f2eb50d7667cf..31b50e8d6b1ecb76e0e5bd6fb9a99b035869fc89 100644 --- a/indra/newview/skins/default/xui/it/menu_inventory.xml +++ b/indra/newview/skins/default/xui/it/menu_inventory.xml @@ -55,6 +55,7 @@ <menu_item_call label="Attiva" name="Activate"/> <menu_item_call label="Disattiva" name="Deactivate"/> <menu_item_call label="Stacca da te" name="Detach From Yourself"/> + <menu_item_call label="Ripristina all'ultima posizione" name="Restore to Last Position"/> <menu_item_call label="Indossa" name="Object Wear"/> <menu label="Attacca a" name="Attach To"/> <menu label="Attacca all'HUD" name="Attach To HUD"/> diff --git a/indra/newview/skins/default/xui/it/menu_mini_map.xml b/indra/newview/skins/default/xui/it/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..1109f3f6466bcfc111aa56172853a721795a6556 --- /dev/null +++ b/indra/newview/skins/default/xui/it/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="Zoom ravvicinato" name="Zoom Close"/> + <menu_item_call label="Zoom Medio" name="Zoom Medium"/> + <menu_item_call label="Zoom Distante" name="Zoom Far"/> + <menu_item_call label="Ferma il puntamento" name="Stop Tracking"/> + <menu_item_call label="Profilo..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/it/menu_viewer.xml b/indra/newview/skins/default/xui/it/menu_viewer.xml index 47f87b3dfedfd024d63bcaf5993e8504685500c8..3dd4e6a94b4b2e1e2b852fbdc3cd3d081b746e91 100644 --- a/indra/newview/skins/default/xui/it/menu_viewer.xml +++ b/indra/newview/skins/default/xui/it/menu_viewer.xml @@ -3,10 +3,12 @@ <menu label="File" name="File"> <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> <menu label="Carica" name="upload"> - <menu_item_call label="Carica immagine ([COST] L$)..." name="Upload Image"/> - <menu_item_call label="Carica Suono ([COST] L$)..." name="Upload Sound"/> - <menu_item_call label="Carica Animazione ([COST] L$)..." name="Upload Animation"/> - <menu_item_call label="Caricamento multiplo ([COST] L$ per file)..." name="Bulk Upload"/> + <menu_item_call label="Immagine ([COST]L$)..." name="Upload Image"/> + <menu_item_call label="Suono ([COST]L$)..." name="Upload Sound"/> + <menu_item_call label="Animazione ([COST]L$)..." name="Upload Animation"/> + <menu_item_call label="Multiplo ([COST]L$ per file)..." name="Bulk Upload"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Imposta i permessi di base..." name="perm prefs"/> </menu> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Chiudi la finestra" name="Close Window"/> @@ -72,7 +74,7 @@ <menu_item_check label="Comunica" name="Instant Message"/> <menu_item_check label="Inventario" name="Inventory"/> <menu_item_check label="Residenti con voice attivo" name="Active Speakers"/> - <menu_item_check label="Muta la lista" name="Mute List"/> + <menu_item_check label="Residenti ignorati & Oggetti" name="Mute List"/> <menu_item_separator label="-----------" name="separator2"/> <menu_item_check label="Controlli della telecamera" name="Camera Controls"/> <menu_item_check label="Controlli dei movimenti" name="Movement Controls"/> @@ -81,6 +83,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_check label="Barra delle statistiche" name="Statistics Bar"/> <menu_item_check label="Confini della proprietÃ" name="Property Lines"/> + <menu_item_check label="Linee di confini privati" name="Banlines"/> <menu_item_check label="Proprietari dei terreni" name="Land Owners"/> <menu_item_separator label="-----------" name="separator4"/> <menu label="Suggerimenti" name="Hover Tips"> @@ -113,7 +116,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="Imposta come 'Assente'" name="Set Away"/> <menu_item_call label="Imposta occupato" name="Set Busy"/> - <menu_item_call label="Ferma tutte le animazioni" name="Stop All Animations"/> + <menu_item_call label="Ferma le animazioni sul mio avatar" name="Stop Animating My Avatar"/> <menu_item_call label="Rilascia tutti i dispositivi" name="Release Keys"/> <menu_item_separator label="-----------" name="separator4"/> <menu_item_call label="Estratto conto..." name="Account History..."/> @@ -164,7 +167,6 @@ <menu_item_call label="Fai zoom sulla selezione" name="Zoom to Selection"/> <menu_item_call label="Compra l'oggetto" name="Menu Object Take"/> <menu_item_call label="Prendi una copia" name="Take Copy"/> - <menu_item_call label="Salva nuovamente l'oggetto nel mio inventario" name="Save Object Back to My Inventory"/> <menu_item_call label="Salva nuovamente l'oggetto nel contenuto dell'oggetto" name="Save Object Back to Object Contents"/> <menu_item_separator label="-----------" name="separator6"/> <menu_item_call label="Mostra avvisi script/finestra degli errori" name="Show Script Warning/Error Window"/> diff --git a/indra/newview/skins/default/xui/it/notifications.xml b/indra/newview/skins/default/xui/it/notifications.xml index 4e82bbe03fa4ed409250ab95d66fca8c1caf86a3..786bfdf7efac414390e13d99c7e4f38d917e1ddd 100644 --- a/indra/newview/skins/default/xui/it/notifications.xml +++ b/indra/newview/skins/default/xui/it/notifications.xml @@ -1,20 +1,14 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> Non mostrare più la prossima volta - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> Scegli sempre questa opzione - </global> - + </global> <template name="okbutton"> <form> <button - - name="OK" text="$yestext"/> </form> @@ -23,8 +17,6 @@ <template name="okignore"> <form> <button - - name="OK" text="$yestext"/> <ignore text="$ignoretext"/> @@ -34,12 +26,9 @@ <template name="okcancelbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> </form> @@ -48,12 +37,9 @@ <template name="okcancelignore"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> <ignore text="$ignoretext"/> @@ -63,12 +49,9 @@ <template name="okhelpbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Help" text="$helptext"/> </form> @@ -77,3112 +60,1677 @@ <template name="yesnocancelbuttons"> <form> <button - - name="Yes" text="$yestext"/> <button - name="No" text="$notext"/> <button - name="Cancel" text="$canceltext"/> </form> </template> + <notification functor="GenericAcknowledge" label="Messaggio di allerta sconosciuto" name="MissingAlert"> + La tua versione di Second Life non sa come visualizzare il messaggio di allerta appena ricevuto. - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -'[_NAME]' non trovato in notifications.xml. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -Errore visualizzazione finestra: Non trovati i seguenti controlli: +Dettagli dell'errore: il messaggio di allerta '[_NAME]' non è stato trovato in notifications.xml. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + Errore visualizzazione finestra: Non trovati i seguenti controlli: [CONTROLS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + Nessun tutorial disponibile al momento. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Si"/> + </notification> + <notification name="BadInstallation"> + Si è verificato un errore durante l'aggiornamento di Second Life. Scarica l'ultima versione da secondlife.com. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -Nessun tutorial disponibile al momento. - <usetemplate + </notification> + <notification name="LoginFailedNoNetwork"> + Errore di rete: non è stato possibile stabilire una connessione. +'[DIAGNOSTIC]' +Per favore controlla la tua connessione. + <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Si"/> - </notification> - - <notification - - name="WearableSave" - > -Salva i cambiamenti all'attuale parte del corpo/abito? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Non salvare" - yestext="Salva"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -C'è stato un problema importando il testo di uno script per la seguente ragione: [REASON]. Riprova più tardi. - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -C'è stato un problema importando lo script compilato per la seguente ragione: [REASON]. Riprova più tardi. - </notification> - - <notification - - name="WriteAnimationFail" - > -C'è stato un problema di scrittura dati dell'animazione. Riprova più tardi. - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -C'è stato un problema importando la fotografia dell'asta per la seguente ragione: [REASON] - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -Non è possibile vedere il contenuto di più di un elemento per volta. + </notification> + <notification name="MessageTemplateNotFound"> + Il modello di messaggio [PATH] non è stato trovato. + <usetemplate + name="okbutton" + yestext="OK"/> + </notification> + <notification name="WearableSave"> + Salva i cambiamenti all'attuale parte del corpo/abito? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Non salvare" yestext="Salva"/> + </notification> + <notification name="CompileQueueSaveText"> + C'è stato un problema importando il testo di uno script per la seguente ragione: [REASON]. Riprova più tardi. + </notification> + <notification name="CompileQueueSaveBytecode"> + C'è stato un problema importando lo script compilato per la seguente ragione: [REASON]. Riprova più tardi. + </notification> + <notification name="WriteAnimationFail"> + C'è stato un problema di scrittura dati dell'animazione. Riprova più tardi. + </notification> + <notification name="UploadAuctionSnapshotFail"> + C'è stato un problema importando la fotografia dell'asta per la seguente ragione: [REASON] + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + Non è possibile vedere il contenuto di più di un elemento per volta. Scegli solo un oggetto e riprova. - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -Salva tutte le modifiche alle parti del corpo/abiti? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Non Salvare" - yestext="Salva Tutto"/> - </notification> - - <notification - - name="GrantModifyRights" - > -Dare i diritti di modifica ad un altro residente gli consente di cambiare, cancellare o prendere QUALUNQUE oggetto che hai in Second Life. Fai MOLTA attenzione quando concedi questo permesso. + </notification> + <notification name="SaveClothingBodyChanges"> + Salva tutte le modifiche alle parti del corpo/abiti? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Non Salvare" yestext="Salva Tutto"/> + </notification> + <notification name="GrantModifyRights"> + Dare i diritti di modifica ad un altro residente gli consente di cambiare, cancellare o prendere QUALUNQUE oggetto che hai in Second Life. Fai MOLTA attenzione quando concedi questo permesso. Vuoi davvero dare i diritti di modifica a [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -Dare i diritti di modifica ad un altro residente gli consente di cambiare QUALUNQUE oggetto che hai in Second Life. Fai MOLTA attenzione quando concedi questo permesso. + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + Dare i diritti di modifica ad un altro residente gli consente di cambiare QUALUNQUE oggetto che hai in Second Life. Fai MOLTA attenzione quando concedi questo permesso. Vuoi davvero dare i diritti di modifica ai residenti selezionati? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -Vuoi revocare i diritti di modifica dati a [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -Vuoi revocare i permessi di modifica dati ai residenti selezionati? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -Non è possibile creare il gruppo. + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="RevokeModifyRights"> + Vuoi revocare i diritti di modifica dati a [FIRST_NAME] [LAST_NAME]? + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + Vuoi revocare i permessi di modifica dati ai residenti selezionati? + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="UnableToCreateGroup"> + Non è possibile creare il gruppo. [MESSAGE] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Ignora le modifiche" - yestext="Applica le modifiche"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -Devi specificare un oggetto per mandare una notice al gruppo. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -Stai per aggiungere dei membri al ruolo [ROLE_NAME]. + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Ignora le modifiche" yestext="Applica le modifiche"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + Devi specificare un oggetto per mandare una notice al gruppo. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + Stai per aggiungere dei membri al ruolo [ROLE_NAME]. 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"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -Stai per aggiungere il potere '[ACTION_NAME]' al ruolo '[ROLE_NAME]'. + <usetemplate ignoretext="Quando si aggiungono membri al ruolo di proprietario" name="okcancelignore" notext="No" yestext="Si"/> + </notification> + <notification name="AssignDangerousActionWarning"> + Stai per aggiungere il potere '[ACTION_NAME]' al ruolo '[ROLE_NAME]'. *ATTENZIONE* Ogni membro di un ruolo con questo potere può assegnare a sè stesso -- e a qualunque altro membro -- ruoli che hanno più poteri di quelli che hanno correntemente, potenzialmente consentendogli di avere quasi i poteri del proprietario. Accertati di sapere quello che stai facendo prima di assegnare questo potere. Aggiungi questo potere a '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -Stai per aggiungere il potere '[ACTION_NAME]' al ruolo '[ROLE_NAME]'. + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + Stai per aggiungere il potere '[ACTION_NAME]' al ruolo '[ROLE_NAME]'. *ATTENZIONE* Ogni membro di un ruolo con questo potere può assegnare a sè stesso -- e a qualunque altro membro -- tutti i poteri, elevandosi al livello di quasi proprietario. Aggiungi questo potere a '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -Selezionare "Pubblica in Ricerca" + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="ClickPublishHelpLand"> + Selezionare "Pubblica in Ricerca" Marcando questo campo si mostrerà : - questo terreno nei risultati di ricerca - gli oggetti pubblici di questo terreno - questo terreno nella ricerca web - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -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: + </notification> + <notification name="ClickSoundHelpLand"> + I media e la musica possono essere fruiti solo all'interno del terreno. Le opzioni dei suoni e del voice possono essere limitati al terreno o potranno essere sentiti dai residenti al di fuori del terreno, a seconda della loro categoria di accesso. Vuoi andare alla Knowledge Base per ulteriori informazioni su come impostare queste opzioni? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Vai alla Knowledge Base" + notext="Chiudi" /> + </notification> + <notification name="ClickSearchHelpAll"> + I risultati della ricerca sono basati sul tipo di scheda nella quale ti trovi, la tua categoria di accesso, la categoria scelta e altri fattori. Per maggiori dettagli, vai alla Knowledge Base. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Vai alla Knowledge Base" + notext="Chiudi" /> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + 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: - il mio profilo nei risultati della ricerca - un link al mio profilo nelle pagine pubbliche del gruppo - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -Puoi proporre o cancellare una partnership con un altro/a residente attraverso il sito web [SECOND_LIFE]. + </notification> + <notification name="ClickPartnerHelpAvatar"> + Puoi proporre o cancellare una partnership con un altro/a residente attraverso il sito web [SECOND_LIFE]. Vai al sito web di Second Life per ulteriori informazioni sulla partnership? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Vai alla pagina"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -Se questo/a residente ha impostato una URL nel suo profilo puoi: + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Vai alla pagina"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + I tuoi permessi di base possono non funzionare nelle regioni più vecchie. + </notification> + <notification name="ClickWebProfileHelpAvatar"> + Se questo/a residente ha impostato una URL nel suo profilo puoi: * Cliccare 'Carica' per vedere la pagina in questa finestra web. * Cliccare Carica > 'nel browser esterno' per vedere la pagina nel vostro browser web preimpostato. * Cliccare Carica > 'URL Principale' per ritornare alla pagina web del profile di questo/a Residente se hai cambiato pagina. Quando visiti il tuo profilo, puoi specificare qualunque URL come tuo profilo web e cliccare OK per impostarla. Altri residenti possono visitare la URL che hai impostato cliccando sul tuo profilo. - </notification> - - <notification - - name="JoinGroupCanAfford" - > -Iscriversi a questo gruppo costa [COST]L$. + </notification> + <notification name="JoinGroupCanAfford"> + Iscriversi a questo gruppo costa [COST]L$. Vuoi proseguire? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Iscriviti"/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -Iscriversi a questo gruppo costa [COST]L$. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Iscriviti"/> + </notification> + <notification name="JoinGroupCannotAfford"> + Iscriversi a questo gruppo costa [COST]L$. Non hai abbastanza L$ per iscriverti a questo gruppo. - </notification> - - <notification - - name="LandBuyPass" - > -Pagando [COST]L$ puoi entrare in questa terra ('[PARCEL_NAME]') per [TIME] ore. Compri un pass? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -Il prezzo di vendita deve essere superiore a 0L$ se vendi a tutti. + </notification> + <notification name="LandBuyPass"> + Pagando [COST]L$ puoi entrare in questa terra ('[PARCEL_NAME]') per [TIME] ore. Compri un pass? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + Il prezzo di vendita deve essere superiore a 0L$ se vendi a tutti. Seleziona una vendita individuale per vendere a 0L$. - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -Il terreno selezionato di [LAND_SIZE] m² sta per essere messo in vendita. + </notification> + <notification name="ConfirmLandSaleChange"> + Il terreno selezionato di [LAND_SIZE] m² sta per essere messo in vendita. Il tuo prezzo di vendità è [SALE_PRICE]L$ ed è autorizzato alla vendita a [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -ATTENZIONE: Cliccando 'vendi a tutti' rende il tuo terrono disponibile all'intera comunità di Second Life, anche non in questa regione. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + ATTENZIONE: Cliccando 'vendi a tutti' rende il tuo terrono disponibile all'intera comunità di Second Life, anche non in questa regione. Il terreno selezionato di [LAND_SIZE] m² sta per essere messo in vendita. Il tuo prezzo di vendità è [SALE_PRICE]L$ ed è autorizzato alla vendita a [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -Confermi di volere restituire tutti gli oggetti condivisi con il gruppo '[NAME]' di questo terreno agli inventari dei proprietari precedenti? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + Confermi di volere restituire tutti gli oggetti condivisi con il gruppo '[NAME]' di questo terreno agli inventari dei proprietari precedenti? *ATTENZIONE* Questo cancellerà gli oggetti non trasferibili ceduti al gruppo! Oggetti: [N] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedByUser" - > -Confermi di volere restituire tutti gli oggetti posseduti dal residente '[NAME]' in questo terreno al suo inventario? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + Confermi di volere restituire tutti gli oggetti posseduti dal residente '[NAME]' in questo terreno al suo inventario? Oggetti: [N] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedBySelf" - > -Confermi di volere restituire tutti gli oggetti posseduti da te in questo terreno, di nuovo nel tuo inventario? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + Confermi di volere restituire tutti gli oggetti posseduti da te in questo terreno, di nuovo nel tuo inventario? Oggetti: [N] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -Confermi di volere restituire tutti gli oggetti di cui NON sei proprietario in questo terreno all'inventario dei rispettivi proprietari? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + Confermi di volere restituire tutti gli oggetti di cui NON sei proprietario in questo terreno all'inventario dei rispettivi proprietari? Gli oggetti trasferibili ceduti al gruppo verranno restituiti ai loro proprietari precedenti. *ATTENZIONE* Questo cancellerà gli oggetti non trasferibili ceduti al gruppo! Oggetti: [N] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByUser" - > -Confermi di volere restituire tutti gli oggetti NON posseduti da [NAME] in questo terreno nell'inventario dei loro proprietari? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + Confermi di volere restituire tutti gli oggetti NON posseduti da [NAME] in questo terreno nell'inventario dei loro proprietari? Gli oggetti trasferibili ceduti al gruppo verranno restituiti ai loro proprietari precedenti. *ATTENZIONE* Questo cancellerà gli oggetti non trasferibili ceduti al gruppo! Oggetti: [N] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ReturnAllTopObjects" - > -Confermi di volere restituire tutti gli oggetti elencati nell'inventario dei loro proprietari? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="DisableAllTopObjects" - > -Confermi di volere disabilitare tutti gli oggetti in questa regione? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -Restituisci gli oggetti in questo terreno che NON sono condivisi con il gruppo [NAME] ai loro proprietari? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ReturnAllTopObjects"> + Confermi di volere restituire tutti gli oggetti elencati nell'inventario dei loro proprietari? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="DisableAllTopObjects"> + Confermi di volere disabilitare tutti gli oggetti in questa regione? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + Restituisci gli oggetti in questo terreno che NON sono condivisi con il gruppo [NAME] ai loro proprietari? Oggetti: [N] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="UnableToDisableOutsideScripts" - > -Non è possibile disabilitare gli script. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + Non è possibile disabilitare gli script. L'intera regione ha l'abilitazione danni. Gli script devono essere autorizzati all'esecuzione affinchè le armi funzionino. - </notification> + </notification> + <notification name="MustBeInParcel"> + Devi essere dentro il terreno per impostare il suo Punto di Atterraggio. + </notification> + <notification name="PromptRecipientEmail"> + Introduci un indirizzo email per il destinatario/i. + </notification> + <notification name="PromptSelfEmail"> + Introduci il tuo indirizzo email. + </notification> + <notification name="PromptMissingSubjMsg"> + Invia la foto via email con soggetto o messaggio predefinito? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + Errore nell'elaborazione della fotografia. + </notification> + <notification name="ErrorEncodingSnapshot"> + Errore nella codifica della fotografia. + </notification> + <notification name="ErrorUploadingPostcard"> + C'è stato un problema inviando la fotografia per il seguente motivo: [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + C'è stato un problema importando la foto del rapporto per il seguente motivo: [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + Devi accettare i Termini di Servizio prima di proseguire il collegamento con [SECOND_LIFE]. + </notification> + <notification name="CouldNotPutOnOutfit"> + Non è stato possibile indossare un equipaggiamento. +La cartella equipaggiamento non contiene abbigliamento, parti del corpo o attachment. + </notification> + <notification name="CannotWearTrash"> + Non puoi indossare abiti e parti del corpo che sono nel cestino + </notification> + <notification name="CannotWearInfoNotComplete"> + Non puoi indossare quell'elemento perchè non è ancora stato caricato. Riprova fra un minuto. + </notification> + <notification name="MustHaveAccountToLogIn"> + Qualcosa è rimasto vuoto. +Devi inserire sia il nome che il cognome del tuo avatar. - <notification - - name="MustBeInParcel" - > -Devi essere dentro il terreno per impostare il suo Punto di Atterraggio. - </notification> +Hai bisogno di un account per entrare in [SECOND_LIFE]. Ne vuoi creare uno adesso? + <usetemplate name="okcancelbuttons" notext="Riprova" yestext="Crea un nuovo account"/> + </notification> + <notification name="AddClassified"> + Gli annunci appaiono nella sezione 'Annunci' della ricerca nel database e su www.secondlife.com per una settimana. +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"/> + </notification> + <notification name="DeleteClassified"> + Cancella annuncio '[NAME]'? +Non ci sono rimborsi per la tariffa pagata. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ClassifiedSave"> + Salva le modifiche all'annuncio [NAME]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Non salvare" yestext="Salva"/> + </notification> + <notification name="DeleteAvatarPick"> + Cancella il favorito [PICK]? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="PromptGoToEventsPage"> + Vai alla pagina degli eventi di [SECOND_LIFE]? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="SelectProposalToView"> + Scegli una proposta da vedere. + </notification> + <notification name="SelectHistoryItemToView"> + Scegli un item storico da vedere. + </notification> + <notification name="ResetShowNextTimeDialogs"> + Vuoi riabilitare tutti le finestre di popup, che precedentemente hai indicato che 'Non vuoi vedere più'? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + Vuoi disabilitare tutti i popup che possono essere ignorati? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + La Cache verrà pulita dopo il riavvio di [SECOND_LIFE]. + </notification> + <notification name="CacheWillBeMoved"> + La Cache verrà traslocata dopo il riavvio di [SECOND_LIFE]. +Nota: Questo pulirà la cache. + </notification> + <notification name="ChangeConnectionPort"> + Le impostazioni delle porte avranno effetto dopo il riavvio di [SECOND_LIFE]. + </notification> + <notification name="ChangeSkin"> + La nuova pelle apparità dopo il riavvio di [SECOND_LIFE]. + </notification> + <notification name="GoToAuctionPage"> + Vai alla pagina web [SECOND_LIFE] per vedere i dettagli dell'asta oppure fai un'offerta? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="SaveChanges"> + Salva le modifiche? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Non salvare" yestext="Salva"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + Il salvataggio della Gesture è fallito. +La gesture ha troppi passi. +Prova a togliere qualche passo e quindi risalva. + </notification> + <notification name="GestureSaveFailedTryAgain"> + Il salvataggio della gesture è fallito. Riprova fra un minuto. + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + Non è possibile salvare la gesture perchè non è stato trovato l'oggetto o l'inventario associato. +L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. + </notification> + <notification name="GestureSaveFailedReason"> + C'è stato un problema salvando la gesture a causa del seguente motivo: [REASON]. Riprova a salvare la gesture più tardi. + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + Non è possibile salvare la notecard perchè non è stato trovato l'oggetto o l'inventario associato. +L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. + </notification> + <notification name="SaveNotecardFailReason"> + C'è stato un problema salvando la notecard a causa del seguente motivo: [REASON]. Riprova a salvare la notecard più tardi. + </notification> + <notification name="ScriptCannotUndo"> + Non è stato possibile annullare tutti i cambiamenti nella tua versione dello script. +Vuoi ripristinare l'ultima versione salvata sul server? +(**Attenzione** Questa operazione non è reversibile) + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="SaveScriptFailReason"> + C'è stato un problema salvando lo script a causa del seguente motivo : [REASON]. Riprova a salvare lo script più tardi. + </notification> + <notification name="SaveScriptFailObjectNotFound"> + Non è stato possibile salvare lo script perchè l'oggetto che lo contiene non è stato trovato. +L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. + </notification> + <notification name="SaveBytecodeFailReason"> + C'è stato un problema salvando lo script compilato a causa del seguente motivo: [REASON]. Riprova a salvare lo script più tardi. + </notification> + <notification name="CouldNotStartStopScript"> + Non è stato possibile lanciare o fermare lo script perchè l'oggetto che lo contiene non è stato trovato. +L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. + </notification> + <notification name="CannotDownloadFile"> + Non è stato possibile scaricare il file + </notification> + <notification name="CannotWriteFile"> + Non è stato possibile scrivere il file [[FILE]] + </notification> + <notification name="UnsupportedHardware"> + Attenzione: Il tuo sistema non soddisfa i requisiti minimi per il funzionamento Second Life. Se continui ad usare Second Life, potresti osservare una lentezza eccessiva. Sfortunatamente non possiamo fornire supporto tecnico per configurazioni di sistema non supportate. - <notification - - name="PromptRecipientEmail" - > -Introduci un indirizzo email per il destinatario/i. - </notification> +MINSPECS +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"/> + </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"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] si è bloccata mentre stava inizializzando i driver grafici. +La qualità grafica verrà impostata al valore basso per evitare alcuni degli errori più comuni con i driver. +Questo però disabiliterà alcune funzioni grafiche. +Ti raccomandiamo di aggiornare i driver della tua scheda grafica. +La qualità grafica può essere aumentara in Preferenze > Grafica. + </notification> + <notification name="RegionNoTerraforming"> + La regione [REGION] non consente di terraformare. + </notification> + <notification name="CannotCopyWarning"> + Non hai il permesso di copiare questo elemento e lo perderai dal tuo inventario se lo regali. +Confermi veramente di offrire questo elemento? + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="CannotGiveItem"> + Impossibile consegnare l'elemento dell'inventario. + </notification> + <notification name="TransactionCancelled"> + La transazione è stata annullata. + </notification> + <notification name="TooManyItems"> + Non è possibile dare più di 42 elementi in un singolo trasferimento di inventario. + </notification> + <notification name="NoItems"> + Non hai i permessi di trasferimento per gli elementi selezionati. + </notification> + <notification name="CannotCopyCountItems"> + Non hai i permessi di copia per copiare [COUNT] +degli elementi selezionati. Perderai questi elementi dal tuo inventario. +Vuoi veramente perdere questi elementi? + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="CannotGiveCategory"> + Non hai i permessi per trasferire la cartella selezionata. + </notification> + <notification name="FreezeAvatar"> + Immobilizza questo avatar? +Non potrà temporaneamente muoversi, chiacchierare in chat, o interagire con il mondo. + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Smobilizza" yestext="Immobilizza"/> + </notification> + <notification name="FreezeAvatarFullname"> + Immobilizza [AVATAR_NAME]? +Non potrà temporaneamente muoversi, chiacchierare in chat, o interagire con il mondo. + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Smobilizza" yestext="Immobilizza"/> + </notification> + <notification name="EjectAvatarFullname"> + Espelli [AVATAR_NAME] dal tuo terreno? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Espelli e blocca" yestext="Espelli"/> + </notification> + <notification name="EjectAvatarNoBan"> + Espelli questo avatar dal tuo terreno? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Espelli"/> + </notification> + <notification name="EjectAvatarFullnameNoBan"> + Espelli [AVATAR_NAME] dal tuo terreno? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Espelli"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + ERRORE DI ACQUISIZIONE: hai selezionato troppi oggetti. + </notification> + <notification name="AcquireErrorObjectSpan"> + ERRORE DI ACQUISIZIONE: Gli oggetti sono a cavallo di più di una regione. +Sposta tutti gli oggetti che vuoi acquisire su una sola regione. + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] - <notification - - name="PromptSelfEmail" - > -Introduci il tuo indirizzo email. - </notification> +Vuoi andare su [URL] per maggiori informazioni su come acquistare denaro? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="UnableToLinkObjects"> + Impossibile unire questi [COUNT] oggetti. +Puoi unire al massimo [MAX] oggetti. + </notification> + <notification name="CannotLinkIncompleteSet"> + Puoi unire soltanto un insieme completo di oggetti, e devi selezionare più di un oggetto. + </notification> + <notification name="CannotLinkModify"> + Impossibile unire perchè non hai il diritto di modifica su tutti gli oggetti. - <notification - - name="PromptMissingSubjMsg" - > -Invia la foto via email con soggetto o messaggio predefinito? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> +Accertati che nessuno sia bloccato e che li possiedi tutti. + </notification> + <notification name="CannotLinkDifferentOwners"> + Impossibile unire perche non tutti gli oggetti hanno lo stesso proprietario. - <notification - - name="ErrorProcessingSnapshot" - > -Errore nell'elaborazione della fotografia. - </notification> +Accertati di possedere tutti gli oggetti selezionati. + </notification> + <notification name="NoFileExtension"> + Manca l'estensione per il file: '[FILE]' - <notification - - name="ErrorEncodingSnapshot" - > -Errore nella codifica della fotografia. - </notification> +Accertati che il file abbia una estensione corretta. + </notification> + <notification name="InvalidFileExtension"> + L'estensione [EXTENSION] del file non è valida +Attese [VALIDS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + Impossibile aprire in lettura il file di suono importato: +[FILE] + </notification> + <notification name="SoundFileNotRIFF"> + Il file audio non sembra essere di tipo RIFF WAVE: +[FILE] + </notification> + <notification name="SoundFileNotPCM"> + Il file audio non sembra essere di tipo PCM WAVE: +[FILE] + </notification> + <notification name="SoundFileInvalidChannelCount"> + Il file ha un numero sbagliato di canali (deve essere mono oppure stereo): +[FILE] + </notification> + <notification name="SoundFileInvalidSampleRate"> + Il file non sembra essere della frequenza di campionamento supportata (deve essere 44.1k): +[FILE] + </notification> + <notification name="SoundFileInvalidWordSize"> + Il file non sembra avere una dimensione della parola supportata (deve essere a 8 o a 16 bit): +[FILE] + </notification> + <notification name="SoundFileInvalidHeader"> + Impossibile trovare il frammento 'data' nell'intestazione WAV: +[FILE] + </notification> + <notification name="SoundFileInvalidTooLong"> + Il file audio è troppo lungo (deve essere al massimo 10 secondi): +[FILE] + </notification> + <notification name="ProblemWithFile"> + Problemi con il file [FILE]: - <notification - - name="ErrorUploadingPostcard" - > -C'è stato un problema inviando la fotografia per il seguente motivo: [REASON] - </notification> +[ERROR] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + Impossibile aprire in scrittura il file temporaneamente compresso: [FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + Errore di codifica Vorbis sconosciuta per: [FILE] + </notification> + <notification name="CannotEncodeFile"> + Impossibile codificare il file: [FILE] + </notification> + <notification name="CorruptResourceFile"> + File risorsa corrotto: [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + Versione di risorsa Linden sconosciuta nel file: [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + Impossibile creare il file in uscita: [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + Non supportiamo attualmente l'upload multiplo di file di animazione. + </notification> + <notification name="CannotUploadReason"> + Impossibile importare il file [FILE] a causa del seguente motivo: [REASON] +Riprova più tardi. + </notification> + <notification name="CannotCreateLandmarkNotOwner"> + Non puoi creare qui un landmark perchè il proprietario di questo terreno non lo consente. + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + Impossibile fare la 'ricompilazione'. +Seleziona un oggetto con uno script. + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + Impossibile fare la 'ricompilazione'. - <notification - - name="ErrorUploadingReportScreenshot" - > -C'è stato un problema importando la foto del rapporto per il seguente motivo: [REASON] - </notification> +Seleziona oggetti con script su cui hai i permessi di modifica. + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + Impossibile fare 'ripristino'. - <notification - - name="MustAgreeToLogIn" - > -Devi accettare i Termini di Servizio prima di proseguire il collegamento con [SECOND_LIFE]. - </notification> +Seleziona oggetti con degli script. + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + Impossibile fare 'ripristino'. - <notification - - name="CouldNotPutOnOutfit" - > -Non è stato possibile indossare un equipaggiamento. -La cartella equipaggiamento non contiene abbigliamento, parti del corpo o attachment. - </notification> +Seleziona oggetti con script su cui hai i permessi di modifica. + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + Impossibile mettere 'in esecuzione' gli script. - <notification - - name="CannotWearTrash" - > -Non puoi indossare abiti e parti del corpo che sono nel cestino - </notification> +Seleziona oggetti con script. + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + Impossibile impostare script a 'non in esecuzione'. - <notification - - name="CannotWearInfoNotComplete" - > -Non puoi indossare quell'elemento perchè non è ancora stato caricato. Riprova fra un minuto. - </notification> +Seleziona oggetti con script. + </notification> + <notification name="NoFrontmostFloater"> + Non c'è nessuna finestra in evidenza (in primo piano) da salvare. + </notification> + <notification name="SeachFilteredOnShortWords"> + La tua ricerca è stata modificata. +Le parole troppo corte sono state rimosse. - <notification - - name="MustHaveAccountToLogIn" - > -Qualcosa è rimasto vuoto. -Devi inserire sia il nome che il cognome del tuo avatar. +Ho cercato: [FINALQUERY] + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + Le parole che hai usato per la ricerca sono troppo corte e non è stato possibile iniziare la ricerca. + </notification> + <notification name="CouldNotTeleportReason"> + Impossibile eseguire il teleport. +[REASON] + </notification> -Hai bisogno di un account per entrare in [SECOND_LIFE]. Ne vuoi creare uno adesso? - <usetemplate - name="okcancelbuttons" - notext="Riprova" - yestext="Crea un nuovo account"/> + <notification name="invalid_tport"> +C'è stato un problema nell'elaborare la tua richiesta di teletrasporto. Potresti aver bisogno di ricollegarti prima di poter usare il teletrasporto. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: +www.secondlife.com/support </notification> - - <notification - - name="AddClassified" - > -Gli annunci appaiono nella sezione 'Annunci' della ricerca nel database e su www.secondlife.com per una settimana. -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"/> - </notification> - - <notification - - name="DeleteClassified" - > -Cancella annuncio '[NAME]'? -Non ci sono rimborsi per la tariffa pagata. - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> + <notification name="invalid_region_handoff"> +C'è stato un problema nell'elaborare il cambio di regione. Potresti aver bisogno di ricollegarti prima di poterlo effetuare. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: +www.secondlife.com/support </notification> - - <notification - - name="ClassifiedSave" - > -Salva le modifiche all'annuncio [NAME]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Non salvare" - yestext="Salva"/> + <notification name="blocked_tport"> +Spiacenti, il teletrasporto è bloccato al momento. Prova di nuovo tra pochi istanti. Se ancora non potrai teletrasportarti, per favore scollegati e ricollegati per risolvere il problema. </notification> - - <notification - - name="DeleteAvatarPick" - > -Cancella il favorito [PICK]? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> + <notification name="nolandmark_tport"> +Spiacenti, ma il sistema non riesce a localizzare la destinazione del landmark </notification> - - <notification - - name="PromptGoToEventsPage" - > -Vai alla pagina degli eventi di [SECOND_LIFE]? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> + <notification name="timeout_tport"> +Spiacenti, il sistema non riesce a completare il teletrasporto. Riprova tra un attimo. </notification> - - <notification - - name="SelectProposalToView" - > -Scegli una proposta da vedere. + <notification name="noaccess_tport"> +Spiacenti, ma non hai accesso nel luogo di destinazione richiesto. </notification> - - <notification - - name="SelectHistoryItemToView" - > -Scegli un item storico da vedere. + <notification name="missing_attach_tport"> +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="ResetShowNextTimeDialogs" - > -Vuoi riabilitare tutti le finestre di popup, che precedentemente hai indicato che 'Non vuoi vedere più'? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> + <notification 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. </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -Vuoi disabilitare tutti i popup che possono essere ignorati? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> + <notification name="expired_tport"> +Spiacenti, il sistema non riesce a soddisfare la tua richiesta di teletrasporto entro un tempo ragionevole. Riprova tra qualche minuto. </notification> - - <notification - - name="CacheWillClear" - > -La Cache verrà pulita dopo il riavvio di [SECOND_LIFE]. + <notification name="expired_region_handoff"> +Spiacenti, il sistema non riesce a completare il cambio di regione entro un tempo ragionevole. Riprova tra qualche minuto. </notification> - - <notification - - name="CacheWillBeMoved" - > -La Cache verrà traslocata dopo il riavvio di [SECOND_LIFE]. -Nota: Questo pulirà la cache. + <notification name="no_host"> +Impossibile trovare la destinazione del teletrasporto; potrebbe essere temporaneamente non accessibile o non esistere più. Riprovaci tra qualche minuto. </notification> - - <notification - - name="ChangeConnectionPort" - > -Le impostazioni delle porte avranno effetto dopo il riavvio di [SECOND_LIFE]. + <notification name="no_inventory_host"> +L'inventario è temporaneamente inaccessibile. </notification> - <notification - - name="ChangeSkin" - > -La nuova pelle apparità dopo il riavvio di [SECOND_LIFE]. - </notification> + <notification name="CannotSetLandOwnerNothingSelected"> + Impossibile impostare il proprietario del terreno: +Nessun terreno selezionato. + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + Impossibile forzare la proprietà del terreno perchè la selezione si estende su diverse regioni. Seleziona una area più piccola e riprova. + </notification> + <notification name="ForceOwnerAuctionWarning"> + Questo terreno è venduta all'asta. Forzare la proprietà cancellerà l'asta e potrebbe disturbare residenti che abbiano già fatto offerte. +Vuoi forzare la proprietà ? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + Impossibile fare la contentificazione: +Nessun terreno selezionato. + </notification> + <notification name="CannotContentifyNoRegion"> + Impossibile fare la contentificazione: +Nessuna regione selezionata. + </notification> + <notification name="CannotReleaseLandNothingSelected"> + Impossibile abbandonare il terreno: +Nessun terreno selezionato. + </notification> + <notification name="CannotReleaseLandNoRegion"> + Impossibile abbandonare il terreno: +Non riesco a trovare la regione. + </notification> + <notification name="CannotBuyLandNothingSelected"> + Impossibile comprare il terreno: +Nessun terreno selezionato. + </notification> + <notification name="CannotBuyLandNoRegion"> + Impossibile comprare il terreno: +Non riesco a trovare la regione dove è situato il terreno. + </notification> + <notification name="CannotCloseFloaterBuyLand"> + Non puoi chiudere la finestra di Acquisto Terreno finchè Second Life non stima il prezzo di questa transazione. + </notification> + <notification name="CannotDeedLandNothingSelected"> + Impossibile cedere il terreno: +Nessun terreno selezionato. + </notification> + <notification name="CannotDeedLandNoGroup"> + Impossibile cedere il terreno: +Nessun gruppo selezionato. + </notification> + <notification name="CannotDeedLandNoRegion"> + Impossibile cedere il terreno: +Non riesco a trovare la regione dove è situato il terreno. +Usa Strumenti -> Segnala Bug per segnalare il problema. + </notification> + <notification name="CannotDeedLandMultipleSelected"> + Impossibile cedere il terreno: +Hai selezionato più di un terreno. - <notification - - name="GoToAuctionPage" - > -Vai alla pagina web [SECOND_LIFE] per vedere i dettagli dell'asta oppure fai un'offerta? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> +Prova a selezionare un solo terreno. + </notification> + <notification name="ParcelCanPlayMedia"> + Questo posto offre contenuto multimediale in streaming. +Ricevere lo streaming multimediale richiede una connessione internet veloce. - <notification - - name="SaveChanges" - > -Salva le modifiche? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Non salvare" - yestext="Salva"/> - </notification> +Vuoi vedere il contenuto multimediale quando è disponibile? +(Puoi cambiare questa opzione in seguito scegliendo Preferenze > Audio & Video.) + <usetemplate name="okcancelbuttons" notext="Disabilita" yestext="Abilita MultiMedia"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + Impossibile cedere il terreno: +Sto aspettando il server per segnalare la proprietà . - <notification - - name="GestureSaveFailedTooManySteps" - > -Il salvataggio della Gesture è fallito. -La gesture ha troppi passi. -Prova a togliere qualche passo e quindi risalva. - </notification> +Riprova di nuovo. + </notification> + <notification name="CannotDeedLandNoTransfer"> + Impossibile cedere il terreno: +La regione [REGION] non consente il trasferimento di terreni. + </notification> + <notification name="CannotReleaseLandWatingForServer"> + Impossibile abbandonare il terreno: +Sto aspettando il server per aggiornare le informazioni del terreno. - <notification - - name="GestureSaveFailedTryAgain" - > -Il salvataggio della gesture è fallito. Riprova fra un minuto. - </notification> +Riprova fra poco. + </notification> + <notification name="CannotReleaseLandSelected"> + Impossibile abbandonare il terreno: +Non possiedi tutti i terreni selezionati. - <notification - - name="GestureSaveFailedObjectNotFound" - > -Non è possibile salvare la gesture perchè non è stato trovato l'oggetto o l'inventario associato. -L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. - </notification> +Seleziona un solo terreno. + </notification> + <notification name="CannotReleaseLandDontOwn"> + Impossibile abbandonare il terreno: +Non hai i permessi per rilasciare questo terreno. +I terreni di tua proprietà vengono visualizzati in verde. + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + Impossibile abbandonare il terreno: +Non riesco a trovare la regione dove è situato il terreno. - <notification - - name="GestureSaveFailedReason" - > -C'è stato un problema salvando la gesture a causa del seguente motivo: [REASON]. Riprova a salvare la gesture più tardi. - </notification> +Usa Strumenti > Segnala Bug segnalare questo problema. + </notification> + <notification name="CannotReleaseLandNoTransfer"> + Impossibile abbandonare il terreno: +La regione [REGION] non consente il trasferimento di terreni. + </notification> + <notification name="CannotReleaseLandPartialSelection"> + Impossibile abbandonare il terreno: +Devi selezionare un terreno intero per rilasciarla. - <notification - - name="SaveNotecardFailObjectNotFound" - > -Non è possibile salvare la notecard perchè non è stato trovato l'oggetto o l'inventario associato. -L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. - </notification> +Seleziona un terreno intero, oppure dividi prima il tuo terreno. + </notification> + <notification name="ReleaseLandWarning"> + Stai per rilasciare [AREA] m² di terreno. +Rilasciare questo appezzamento di terreno lo toglierà dalle tue proprietà , ma non ti verranno dati L$. - <notification - - name="SaveNotecardFailReason" - > -C'è stato un problema salvando la notecard a causa del seguente motivo: [REASON]. Riprova a salvare la notecard più tardi. - </notification> +Rilasciare questo terreno? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + Impossibile dividere il terreno: - <notification - - name="ScriptCannotUndo" - > -Non è stato possibile annullare tutti i cambiamenti nella tua versione dello script. -Vuoi ripristinare l'ultima versione salvata sul server? -(**Attenzione** Questa operazione non è reversibile) - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> +Non sono stati selezionati terreni. + </notification> + <notification name="CannotDivideLandPartialSelection"> + Impossibile dividere il terreno: - <notification - - name="SaveScriptFailReason" - > -C'è stato un problema salvando lo script a causa del seguente motivo : [REASON]. Riprova a salvare lo script più tardi. - </notification> +Hai selezionato unintero terreno. +Prova a selezionare unappezzamento di terreno. + </notification> + <notification name="LandDivideWarning"> + La suddivisione di questo terreno lo dividerà in due parti ed ognuna potrà avere le sue impostazioni. Alcune impostazioni verranno reimpostate ai valori iniziali dopo l'operazione. - <notification - - name="SaveScriptFailObjectNotFound" - > -Non è stato possibile salvare lo script perchè l'oggetto che lo contiene non è stato trovato. -L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. - </notification> +Dividi il terreno? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + Impossibile dividere il terreno: +Non riesco a trovare la regione dove è situato. - <notification - - name="SaveBytecodeFailReason" - > -C'è stato un problema salvando lo script compilato a causa del seguente motivo: [REASON]. Riprova a salvare lo script più tardi. - </notification> +Usa Strumenti -> Segnala Bug per segnalare il problema. + </notification> + <notification name="CannotJoinLandNoRegion"> + Impossibile unire il terreno: +Non riesco a trovare la regione dove è situato. - <notification - - name="CouldNotStartStopScript" - > -Non è stato possibile lanciare o fermare lo script perchè l'oggetto che lo contiene non è stato trovato. -L'oggetto potrebbe essere troppo lontano oppure essere stato cancellato. - </notification> +Usa Strumenti -> Segnala Bug per segnalare il problema. + </notification> + <notification name="CannotJoinLandNothingSelected"> + Impossibile unire il terreno: +Non hai selezionato terreno. + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + Impossibile unire il terreno: +Hai selezionato un solo terreno. - <notification - - name="CannotDownloadFile" - > -Non è stato possibile scaricare il file - </notification> +Devi selezionare il terreno comprendendo entrambi gli appezzamenti. + </notification> + <notification name="CannotJoinLandSelection"> + Impossibile unire il terreno: +Devi selezionare più di un terreno. - <notification - - name="CannotWriteFile" - > -Non è stato possibile scrivere il file [[FILE]] - </notification> +Devi selezionare il terreno comprendendo entrambi gli appezzamenti. + </notification> + <notification name="JoinLandWarning"> + Unire questi appezzamenti creerà un terreno più grande a partire da tutti gli appezzamenti che si intersecano nel rettangolo selezionato. +Dovrai reimpostare il nome e le opzioni del nuovo terreno. - <notification - - name="UnsupportedHardware" - > -Attenzione: Il tuo sistema non soddisfa i requisiti minimi per il funzionamento Second Life. Se continui ad usare Second Life, potresti osservare una lentezza eccessiva. Sfortunatamente non possiamo fornire supporto tecnico per configurazioni di sistema non supportate. +Unisci il terreno? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ShowOwnersHelp"> + Mostra i proprietari: +colora i terreni per mostrare i diversi tipi di proprietari. + +Verde = il tuo terreno +Acqua = la terra del tuo gruppo +Rosso = posseduta da altri +Giallo = in vendita +Viola = in asta +Grigia = pubblica + </notification> + <notification name="ConfirmNotecardSave"> + Questa notecard deve essere salvata prima che l'elemento possa essere copiato o visualizzato. Salva la notecard? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmItemCopy"> + Copia questo elemento nel tuo inventario? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Copia"/> + </notification> + <notification name="ResolutionSwitchFail"> + Non sono riuscito a cambiare la risoluzione al valore [RESX] x [RESY] + </notification> + <notification name="ErrorUndefinedGrasses"> + Errore: Erba sconosciuta: [SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + Errore: Alberi sconosciuti: [SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + Impossibile salvare '[NAME]' nel file di oggetti indossabili. Dovrai liberare dello spazio sul tuo computer e salvare di nuovo. + </notification> + <notification name="CannotSaveToAssetStore"> + Impossibile salvare [NAME] nel database centrale. +Normalmente questo problema è temporaneo. Riprova a generare la parte indossabile e a salvarla fra qualche minuto. -MINSPECS -Vuoi visitare [_URL] per maggiori informazioni? - <url option="0" name="url"> +Se questo problema persiste, clicca sul menu a tendina 'Strumenti > Segnala Bug' e fornisci i dettagli sulla tua configurazione di rete. + </notification> + <notification name="YouHaveBeenLoggedOut"> + Sei stato sconnesso da [SECOND_LIFE]: + [MESSAGE] +Puoi ancora vedere i tuoi IM e la chat cliccando 'Vedi IM & Chat'. Altrimenti, clicca 'Esci' per uscire immediatamente da [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Esci" yestext="Vedi IM & Chat"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + Impossibile comprare terreno per il gruppo: +Non hai i permessi per comprare il terreno per il tuo gruppo attivo. + </notification> + <notification label="Aggiungi Amico" name="AddFriend"> + Gli amici possono autorizzarsi a vedersi l'un l'altro sulla mappa e sapere quando sono collegati. - http://secondlife.com/support/sysreqs.php?lang=it - </url> - <usetemplate - ignoretext="Mentre sto individuando hardware non supportato" - name="okcancelignore" - notext="No" - yestext="Si"/> - </notification> +Offri l'amicizia a [NAME]? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification label="Aggiungi Amico" name="AddFriendWithMessage"> + Gli amici possono autorizzarsi a vedersi l'un l'altro sulla mappa e sapere quando sono collegati. - <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"/> - </form> - </notification> +Offri l'amicizia a [NAME]? + <form name="form"> + <input name="message" type="text"> + Vorresti essere mio amico? + </input> + <button name="Offer" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + Vuoi rimuovere remove [FIRST_NAME] [LAST_NAME] dalla lista dei tuoi amici? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + Vuoi rimuovere gli amici selezionati dalla lista dei tuoi amici? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + Confermi di volere cancellare tutti gli oggetti scriptati della proprietà di +** [AVATAR_NAME] ** +su tutti gli altri terreni di questa sim? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + Confermi la CANCELLAZIONE di TUTTI gli oggetti scriptati posseduti da +** [AVATAR_NAME] ** +su TUTTI I TERRENI di questa sim? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + Confermi la CANCELLAZIONE di TUTTI gli oggetti (scriptati o no) posseduti da +** [AVATAR_NAME] ** +su TUTTI I TERRENI di questa sim? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="BlankClassifiedName"> + Devi specificare un nome per il tuo annuncio. + </notification> + <notification name="MinClassifiedPrice"> + Il prezzo da pagare per essere messo in lista deve essere almeno [MIN_PRICE]L$. - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] si è bloccata mentre stava inizializzando i driver grafici. -La qualità grafica verrà impostata al valore basso per evitare alcuni degli errori più comuni con i driver. -Questo però disabiliterà alcune funzioni grafiche. -Ti raccomandiamo di aggiornare i driver della tua scheda grafica. -La qualità grafica può essere aumentara in Preferenze > Grafica. - </notification> +Introduci un prezzo più alto. + </notification> + <notification name="ConfirmObjectDeleteLock"> + Almeno uno degli elementi selezionati è bloccato. - <notification - - name="RegionNoTerraforming" - > -La regione [REGION] non consente di terraformare. - </notification> +Confermi di voler cancellare questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + Almeno uno degli elementi selezionati non è copiabile. - <notification - - name="CannotCopyWarning" - > -Non hai il permesso di copiare questo elemento e lo perderai dal tuo inventario se lo regali. -Confermi veramente di offrire questo elemento? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> +Confermi di voler cancellare questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + Non possiedi neanche uno degli oggetti selezionati. - <notification - - name="CannotGiveItem" - > -Impossibile consegnare l'elemento dell'inventario. - </notification> +Confermi di voler cancellare questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + Almeno un oggetto è bloccato. +Almeno un oggetto è non copiabile. - <notification - - name="TransactionCancelled" - > -La transazione è stata annullata. - </notification> +Confermi di voler cancellare questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + Almeno un oggetto è bloccato. +Non possiedi neanche un oggetto. - <notification - - name="TooManyItems" - > -Non è possibile dare più di 42 elementi in un singolo trasferimento di inventario. - </notification> +Confermi di voler cancellare questi elementi? + <usetemplate name="okcancelbuttons" notext="Cancella" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + Almeno un oggetto non è copiabile. +Non possiedi neanche un oggetto. - <notification - - name="NoItems" - > -Non hai i permessi di trasferimento per gli elementi selezionati. - </notification> +Confermi di voler cancellare questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + Almeno un oggetto è bloccato. +Almeno un oggetto è non copiabile. +Non possiedi neanche un oggetto. - <notification - - name="CannotCopyCountItems" - > -Non hai i permessi di copia per copiare [COUNT] -degli elementi selezionati. Perderai questi elementi dal tuo inventario. -Vuoi veramente perdere questi elementi? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> +Confermi di voler cancellare questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + Almeno un oggetto è bloccato. - <notification - - name="CannotGiveCategory" - > -Non hai i permessi per trasferire la cartella selezionata. - </notification> +Confermi di voler prendere questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + Non possiedi tutti gli oggetti che stai prendendo. +Se continui, verranno applicate i permessi per il prossimo proprietario e di conseguenza potrebbero venire ristrette le tue possibilità di modificarli o di copiarli. - <notification - - name="FreezeAvatar" - > -Immobilizza questo avatar? -Non potrà temporaneamente muoversi, chiacchierare in chat, o interagire con il mondo. - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Smobilizza" - yestext="Immobilizza"/> - </notification> +Confermi di voler prendere questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + Almeno un oggetto è bloccato. +Non possiedi tutti gli oggetti che stai prendendo. +Se continui, verranno applicate i permessi per il prossimo proprietario e di conseguenza potrebbero venire ristrette le tue possibilità di modificarli o di copiarli. +Puoi comunque prendere gli oggetti selezionati. - <notification - - name="FreezeAvatarFullname" - > -Immobilizza [AVATAR_NAME]? -Non potrà temporaneamente muoversi, chiacchierare in chat, o interagire con il mondo. - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Smobilizza" - yestext="Immobilizza"/> - </notification> +Confermi di voler prendere questi elementi? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + Impossibile comprare il terreno perchè la selezione comprende più regioni. - <notification - - name="EjectAvatarFullname" - > -Espelli [AVATAR_NAME] dal tuo terreno? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Espelli e blocca" - yestext="Espelli"/> - </notification> +Seleziona un'area più piccola e riprova. + </notification> + <notification name="DeedLandToGroup"> + Cedendo questo terreno al gruppo sara richiesto ai componenti di avere e di mantenere il terreno con un credito sufficiente. +Il prezzo di acquisto del terreno non è rifondibile al proprietario. +Se una terreno ceduto al gruppo viene venduto, il prezzo di vendita verrà diviso in parti uguali fra i membri del gruppo. - <notification - - name="EjectAvatarNoBan" - > -Espelli questo avatar dal tuo terreno? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Espelli"/> - </notification> +Cedi questo terreno di [AREA] m² al gruppo '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + Cedendo questo terreno al gruppo sara richiesto hai componenti di avere e di mantenere il terreno con un credito sufficiente. +La cessione include un contributo simultaneo di terreno al gruppo da '[FIRST_NAME] [LAST_NAME]'. +Il prezzo di acquisto del terreno non è rifondibile al proprietario. +Se una terreno ceduto al gruppo viene venduto, il prezzo di vendita viene diviso in parti uguali fra i membri del gruppo. - <notification - - name="EjectAvatarFullnameNoBan" - > -Espelli [AVATAR_NAME] dal tuo terreno? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Espelli"/> - </notification> +Cedi questo terreno di [AREA] m² al gruppo '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="DisplaySetToSafe"> + Le impostazioni dello schermo sono state impostate a valori di sicurezza perchè hai specificato l'opzione -safe. + </notification> + <notification name="DisplaySetToRecommended"> + Le impostazioni dello schermo sono state impostate a valori ottimali basati sulla tua configurazione di sistema. + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + La tua locazione [TYPE] non è al momento disponibile. +[HELP] +Il tuo avatar è stato spostato in una regione vicina. + </notification> + <notification name="ClothingLoading"> + 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"/> + </form> + </notification> + <notification name="FirstRun"> + L'installazione di [SECOND_LIFE] è completata. - <notification - - name="AcquireErrorTooManyObjects" - > -ERRORE DI ACQUISIZIONE: hai selezionato troppi oggetti. - </notification> +Se questa è la prima volta che usi [SECOND_LIFE], avari bisogno di creare un account prima di poterti collegare. +Vai su www.secondlife.com per creare un nuovo account? + <usetemplate name="okcancelbuttons" notext="Continua" yestext="Nuovo Account..."/> + </notification> + <notification name="LoginPacketNeverReceived"> + Ci sono stati problemi durante la connessione. Potrebbero esserci problemi con la tua connessione ad internet oppure con i server di Second Life. - <notification - - name="AcquireErrorObjectSpan" - > -ERRORE DI ACQUISIZIONE: Gli oggetti sono a cavallo di più di una regione. -Sposta tutti gli oggetti che vuoi acquisire su una sola regione. - </notification> +Puoi controllare la tua connessione internet e riprovare fra qualche minuto, oppure cliccare su Aiuto per collegarti al nostro sito di supporto, oppure cliccare teleporta per cercare di teleportarti a casa. + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="Aiuto"/> + <button name="Teleport" text="Teleportati"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + Il tuo avatar apparirà fra un attimo. - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] +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. + <usetemplate name="okcancelbuttons" notext="Femminile" yestext="Maschile"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] [PRICE]L$ Non hai abbastanza L$ per farlo. + </notification> + <notification name="GrantedModifyRights"> + Ti sono stati accordati i privilegi di modifica degli oggetti di [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="RevokedModifyRights"> + Ti sono stati revocati i privilegi di modifica degli oggetti di [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="FlushMapVisibilityCaches"> + Questo reinizializzerà la cache della mappa di questa regione. +Funzione usata solo per il debug. +(Per la produzione, attendere 5 minuti, dopo di che tutte le mappe di ognuno si aggiorneranno dopo la loro riconnessione) + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + Non è possibile acquistare più di un oggetto alla volta. Riprova selezionando un solo oggetto. + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + Impossibile copiare il contenuto di più di un elemento alla volta. +Scegli solo un oggetto e riprova. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + Teleporta a casa tutti i residenti in questa regione? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + Confermi di voler restituire gli oggetti di proprietà di [USER_NAME] ? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + Impossibile impostare le texture della regione: +La texture del terreno [TEXTURE_NUM] ha una profondità di bit pari a [TEXTURE_BIT_DEPTH] non corretta. -Vuoi andare su [URL] per maggiori informazioni su come acquistare denaro? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> +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]. - <notification - - name="UnableToLinkObjects" - > -Impossibile unire questi [COUNT] oggetti. -Puoi unire al massimo [MAX] oggetti. - </notification> - - <notification - - name="CannotLinkIncompleteSet" - > -Puoi unire soltanto un insieme completo di oggetti, e devi selezionare più di un oggetto. - </notification> - - <notification - - name="CannotLinkModify" - > -Impossibile unire perchè non hai il diritto di modifica su tutti gli oggetti. - -Accertati che nessuno sia bloccato e che li possiedi tutti. - </notification> - - <notification - - name="CannotLinkDifferentOwners" - > -Impossibile unire perche non tutti gli oggetti hanno lo stesso proprietario. - -Accertati di possedere tutti gli oggetti selezionati. - </notification> - - <notification - - name="NoFileExtension" - > -Manca l'estensione per il file: '[FILE]' - -Accertati che il file abbia una estensione corretta. - </notification> - - <notification - - name="InvalidFileExtension" - > -L'estensione [EXTENSION] del file non è valida -Attese [VALIDS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -Impossibile aprire in lettura il file di suono importato: -[FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -Il file audio non sembra essere di tipo RIFF WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -Il file audio non sembra essere di tipo PCM WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -Il file ha un numero sbagliato di canali (deve essere mono oppure stereo): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -Il file non sembra essere della frequenza di campionamento supportata (deve essere 44.1k): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -Il file non sembra avere una dimensione della parola supportata (deve essere a 8 o a 16 bit): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -Impossibile trovare il frammento 'data' nell'intestazione WAV: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -Il file audio è troppo lungo (deve essere al massimo 10 secondi): -[FILE] - </notification> - - <notification - - name="ProblemWithFile" - > -Problemi con il file [FILE]: - -[ERROR] - </notification> - - <notification - - name="CannotOpenTemporarySoundFile" - > -Impossibile aprire in scrittura il file temporaneamente compresso: [FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -Errore di codifica Vorbis sconosciuta per: [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -File risorsa corrotto: [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -Versione di risorsa Linden sconosciuta nel file: [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -Impossibile creare il file in uscita: [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -Non supportiamo attualmente l'upload multiplo di file di animazione. - </notification> - - <notification - - name="CannotUploadReason" - > -Impossibile importare il file [FILE] a causa del seguente motivo: [REASON] -Riprova più tardi. - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -Non puoi creare qui un landmark perchè il proprietario di questo terreno non lo consente. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -Impossibile fare la 'ricompilazione'. -Seleziona un oggetto con uno script. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -Impossibile fare la 'ricompilazione'. - -Seleziona oggetti con script su cui hai i permessi di modifica. - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -Impossibile fare 'ripristino'. - -Seleziona oggetti con degli script. - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -Impossibile fare 'ripristino'. - -Seleziona oggetti con script su cui hai i permessi di modifica. - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -Impossibile mettere 'in esecuzione' gli script. - -Seleziona oggetti con script. - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -Impossibile impostare script a 'non in esecuzione'. - -Seleziona oggetti con script. - </notification> - - <notification - - name="NoFrontmostFloater" - > -Non c'è nessuna finestra in evidenza (in primo piano) da salvare. - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -La tua ricerca è stata modificata. -Le parole troppo corte sono state rimosse. - -Ho cercato: [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -Le parole che hai usato per la ricerca sono troppo corte e non è stato possibile iniziare la ricerca. - </notification> - - <notification - - name="CouldNotTeleportReason" - > -Impossibile eseguire il teleport. -[REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -Impossibile impostare il proprietario del terreno: -Nessun terreno selezionato. - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -Impossibile forzare la proprietà del terreno perchè la selezione si estende su diverse regioni. Seleziona una area più piccola e riprova. - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -Questo terreno è venduta all'asta. Forzare la proprietà cancellerà l'asta e potrebbe disturbare residenti che abbiano già fatto offerte. -Vuoi forzare la proprietà ? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -Impossibile fare la contentificazione: -Nessun terreno selezionato. - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -Impossibile fare la contentificazione: -Nessuna regione selezionata. - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -Impossibile abbandonare il terreno: -Nessun terreno selezionato. - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -Impossibile abbandonare il terreno: -Non riesco a trovare la regione. - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -Impossibile comprare il terreno: -Nessun terreno selezionato. - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -Impossibile comprare il terreno: -Non riesco a trovare la regione dove è situato il terreno. - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -Non puoi chiudere la finestra di Acquisto Terreno finchè Second Life non stima il prezzo di questa transazione. - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -Impossibile cedere il terreno: -Nessun terreno selezionato. - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -Impossibile cedere il terreno: -Nessun gruppo selezionato. - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -Impossibile cedere il terreno: -Non riesco a trovare la regione dove è situato il terreno. -Usa Strumenti -> Segnala Bug per segnalare il problema. - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -Impossibile cedere il terreno: -Hai selezionato più di un terreno. - -Prova a selezionare un solo terreno. - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -Questo posto offre contenuto multimediale in streaming. -Ricevere lo streaming multimediale richiede una connessione internet veloce. - -Vuoi vedere il contenuto multimediale quando è disponibile? -(Puoi cambiare questa opzione in seguito scegliendo Preferenze > Audio & Video.) - <usetemplate - name="okcancelbuttons" - notext="Disabilita" - yestext="Abilita MultiMedia"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -Impossibile cedere il terreno: -Sto aspettando il server per segnalare la proprietà . - -Riprova di nuovo. - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -Impossibile cedere il terreno: -La regione [REGION] non consente il trasferimento di terreni. - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -Impossibile abbandonare il terreno: -Sto aspettando il server per aggiornare le informazioni del terreno. - -Riprova fra poco. - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -Impossibile abbandonare il terreno: -Non possiedi tutti i terreni selezionati. - -Seleziona un solo terreno. - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -Impossibile abbandonare il terreno: -Non hai i permessi per rilasciare questo terreno. -I terreni di tua proprietà vengono visualizzati in verde. - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -Impossibile abbandonare il terreno: -Non riesco a trovare la regione dove è situato il terreno. - -Usa Strumenti > Segnala Bug segnalare questo problema. - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -Impossibile abbandonare il terreno: -La regione [REGION] non consente il trasferimento di terreni. - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -Impossibile abbandonare il terreno: -Devi selezionare un terreno intero per rilasciarla. - -Seleziona un terreno intero, oppure dividi prima il tuo terreno. - </notification> - - <notification - - name="ReleaseLandWarning" - > -Stai per rilasciare [AREA] m² di terreno. -Rilasciare questo appezzamento di terreno lo toglierà dalle tue proprietà , ma non ti verranno dati L$. - -Rilasciare questo terreno? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -Impossibile dividere il terreno: - -Non sono stati selezionati terreni. - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -Impossibile dividere il terreno: - -Hai selezionato unintero terreno. -Prova a selezionare unappezzamento di terreno. - </notification> - - <notification - - name="LandDivideWarning" - > -La suddivisione di questo terreno lo dividerà in due parti ed ognuna potrà avere le sue impostazioni. Alcune impostazioni verranno reimpostate ai valori iniziali dopo l'operazione. - -Dividi il terreno? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -Impossibile dividere il terreno: -Non riesco a trovare la regione dove è situato. - -Usa Strumenti -> Segnala Bug per segnalare il problema. - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -Impossibile unire il terreno: -Non riesco a trovare la regione dove è situato. - -Usa Strumenti -> Segnala Bug per segnalare il problema. - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -Impossibile unire il terreno: -Non hai selezionato terreno. - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -Impossibile unire il terreno: -Hai selezionato un solo terreno. - -Devi selezionare il terreno comprendendo entrambi gli appezzamenti. - </notification> - - <notification - - name="CannotJoinLandSelection" - > -Impossibile unire il terreno: -Devi selezionare più di un terreno. - -Devi selezionare il terreno comprendendo entrambi gli appezzamenti. - </notification> - - <notification - - name="JoinLandWarning" - > -Unire questi appezzamenti creerà un terreno più grande a partire da tutti gli appezzamenti che si intersecano nel rettangolo selezionato. -Dovrai reimpostare il nome e le opzioni del nuovo terreno. - -Unisci il terreno? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -Questa notecard deve essere salvata prima che l'elemento possa essere copiato o visualizzato. Salva la notecard? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -Copia questo elemento nel tuo inventario? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Copia"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -Non sono riuscito a cambiare la risoluzione al valore [RESX] x [RESY] - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -Errore: Erba sconosciuta: [SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -Errore: Alberi sconosciuti: [SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -Impossibile salvare '[NAME]' nel file di oggetti indossabili. Dovrai liberare dello spazio sul tuo computer e salvare di nuovo. - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -Impossibile salvare [NAME] nel database centrale. -Normalmente questo problema è temporaneo. Riprova a generare la parte indossabile e a salvarla fra qualche minuto. - -Se questo problema persiste, clicca sul menu a tendina 'Strumenti > Segnala Bug' e fornisci i dettagli sulla tua configurazione di rete. - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -Sei stato sconnesso da [SECOND_LIFE]: - [MESSAGE] -Puoi ancora vedere i tuoi IM e la chat cliccando 'Vedi IM & Chat'. Altrimenti, clicca 'Esci' per uscire immediatamente da [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="Esci" - yestext="Vedi IM & Chat"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -Impossibile comprare terreno per il gruppo: -Non hai i permessi per comprare il terreno per il tuo gruppo attivo. - </notification> - - <notification - - label="Aggiungi Amico" - name="AddFriend" - > -Gli amici possono autorizzarsi a vedersi l'un l'altro sulla mappa e sapere quando sono collegati. - -Offri l'amicizia a [NAME]? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - label="Aggiungi Amico" - name="AddFriendWithMessage" - > -Gli amici possono autorizzarsi a vedersi l'un l'altro sulla mappa e sapere quando sono collegati. - -Offri l'amicizia a [NAME]? - <form name="form"> - <input name="message" type="text"> -Vorresti essere mio amico? - </input> - <button - - - name="Offer" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -Vuoi rimuovere remove [FIRST_NAME] [LAST_NAME] dalla lista dei tuoi amici? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -Vuoi rimuovere gli amici selezionati dalla lista dei tuoi amici? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -Confermi di volere cancellare tutti gli oggetti scriptati della proprietà di -** [AVATAR_NAME] ** -su tutti gli altri terreni di questa sim? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -Confermi la CANCELLAZIONE di TUTTI gli oggetti scriptati posseduti da -** [AVATAR_NAME] ** -su TUTTI I TERRENI di questa sim? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -Confermi la CANCELLAZIONE di TUTTI gli oggetti (scriptati o no) posseduti da -** [AVATAR_NAME] ** -su TUTTI I TERRENI di questa sim? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -Devi specificare un nome per il tuo annuncio. - </notification> - - <notification - - name="MinClassifiedPrice" - > -Il prezzo da pagare per essere messo in lista deve essere almeno [MIN_PRICE]L$. - -Introduci un prezzo più alto. - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -Almeno uno degli elementi selezionati è bloccato. - -Confermi di voler cancellare questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -Almeno uno degli elementi selezionati non è copiabile. - -Confermi di voler cancellare questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -Non possiedi neanche uno degli oggetti selezionati. - -Confermi di voler cancellare questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -Almeno un oggetto è bloccato. -Almeno un oggetto è non copiabile. - -Confermi di voler cancellare questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -Almeno un oggetto è bloccato. -Non possiedi neanche un oggetto. - -Confermi di voler cancellare questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Cancella" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -Almeno un oggetto non è copiabile. -Non possiedi neanche un oggetto. - -Confermi di voler cancellare questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -Almeno un oggetto è bloccato. -Almeno un oggetto è non copiabile. -Non possiedi neanche un oggetto. - -Confermi di voler cancellare questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -Almeno un oggetto è bloccato. - -Confermi di voler prendere questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -Non possiedi tutti gli oggetti che stai prendendo. -Se continui, verranno applicate i permessi per il prossimo proprietario e di conseguenza potrebbero venire ristrette le tue possibilità di modificarli o di copiarli. - -Confermi di voler prendere questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -Almeno un oggetto è bloccato. -Non possiedi tutti gli oggetti che stai prendendo. -Se continui, verranno applicate i permessi per il prossimo proprietario e di conseguenza potrebbero venire ristrette le tue possibilità di modificarli o di copiarli. -Puoi comunque prendere gli oggetti selezionati. - -Confermi di voler prendere questi elementi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -Impossibile comprare il terreno perchè la selezione comprende più regioni. - -Seleziona un'area più piccola e riprova. - </notification> - - <notification - - name="DeedLandToGroup" - > -Cedendo questo terreno al gruppo sara richiesto ai componenti di avere e di mantenere il terreno con un credito sufficiente. -Il prezzo di acquisto del terreno non è rifondibile al proprietario. -Se una terreno ceduto al gruppo viene venduto, il prezzo di vendita verrà diviso in parti uguali fra i membri del gruppo. - -Cedi questo terreno di [AREA] m² al gruppo '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -Cedendo questo terreno al gruppo sara richiesto hai componenti di avere e di mantenere il terreno con un credito sufficiente. -La cessione include un contributo simultaneo di terreno al gruppo da '[FIRST_NAME] [LAST_NAME]'. -Il prezzo di acquisto del terreno non è rifondibile al proprietario. -Se una terreno ceduto al gruppo viene venduto, il prezzo di vendita viene diviso in parti uguali fra i membri del gruppo. - -Cedi questo terreno di [AREA] m² al gruppo '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > -Le impostazioni dello schermo sono state impostate a valori di sicurezza perchè hai specificato l'opzione -safe. - </notification> - - <notification - - name="DisplaySetToRecommended" - > -Le impostazioni dello schermo sono state impostate a valori ottimali basati sulla tua configurazione di sistema. - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -La tua locazione [TYPE] non è al momento disponibile. -[HELP] -Il tuo avatar è stato spostato in una regione vicina. - </notification> - - <notification - - name="ClothingLoading" - > -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"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -L'installazione di [SECOND_LIFE] è completata. - -Se questa è la prima volta che usi [SECOND_LIFE], avari bisogno di creare un account prima di poterti collegare. -Vai su www.secondlife.com per creare un nuovo account? - <usetemplate - name="okcancelbuttons" - notext="Continua" - yestext="Nuovo Account..."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -Ci sono stati problemi durante la connessione. Potrebbero esserci problemi con la tua connessione ad internet oppure con i server di Second Life. - -Puoi controllare la tua connessione internet e riprovare fra qualche minuto, oppure cliccare su Aiuto per collegarti al nostro sito di supporto, oppure cliccare teleporta per cercare di teleportarti a casa. - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="Aiuto"/> - <button - - name="Teleport" - text="Teleportati"/> - </form> - </notification> - - <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. - <usetemplate - name="okcancelbuttons" - notext="Femminile" - yestext="Maschile"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] [PRICE]L$ Non hai abbastanza L$ per farlo. - </notification> - - <notification - - name="GrantedModifyRights" - > -Ti sono stati accordati i privilegi di modifica degli oggetti di [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="RevokedModifyRights" - > -Ti sono stati revocati i privilegi di modifica degli oggetti di [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -Questo reinizializzerà la cache della mappa di questa regione. -Funzione usata solo per il debug. -(Per la produzione, attendere 5 minuti, dopo di che tutte le mappe di ognuno si aggiorneranno dopo la loro riconnessione) - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -Impossibile copiare il contenuto di più di un elemento alla volta. -Scegli solo un oggetto e riprova. - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -Teleporta a casa tutti i residenti in questa regione? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -Confermi di voler restituire gli oggetti di proprietà di [USER_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -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". - </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". - </notification> - - <notification - - name="RawUploadStarted" - > -Importazione iniziata. Può impiegare fino a due minuti, a seconda della velocità della tua connessione. - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -Vuoi veramente impostare come base il terreno corrente, impostarlo come riferimento per i limiti dei rialzi/abbassamenti di tutto il territorio ed il suo valore impostato come base per lo strumento 'Ripristina'? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -Puoi avere al massimo [MAX_AGENTS] residenti consentiti. - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -Puoi avere al massimo [MAX_BANNED] residenti bloccati. - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -E' fallito il tentativo di aggiungere [NUM_ADDED] avatar: -Eccede il [MAX_AGENTS] [LIST_TYPE] limite di [NUM_EXCESS]. - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -Puoi avere al massimo [MAX_GROUPS] gruppi. - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Imposta come predefinito"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -Puoi avere al massimo [MAX_MANAGER] manager della proprietà immobiliare. - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -Impossibile aggiungere i proprietari della proprietà immobiliare alla lista dei residenti bloccati. - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -Impossibile cambiare l'aspetto fisico finchè gli abiti e i vestiti non sono caricati. - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -Il nome del tuo annuncio deve iniziare con una lettera da A a Z oppure con un numero. -Non sono consentiti caratteri di punteggiatura. - </notification> - - <notification - - name="CantSetBuyObject" - > -Impossibile impostare 'Compra l'oggetto', perchè l'oggetto non è in vendita. -Imposta l'oggetto per la vendita e riprova. - </notification> - - <notification - - name="FinishedRawDownload" - > -Hai terminato di scaricare il file del terreno nella cartella: -[DOWNLOAD_PATH]. - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -E' disponibile una nuova versione di [SECOND_LIFE]. -[MESSAGE] -Devi scaricare questo aggiornamento per usare [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="Esci" - yestext="Scarica l'aggiornamento"/> - </notification> - - <notification - - name="DownloadWindows" - > -E' disponibile una versione aggiornata di [SECOND_LIFE]. -[MESSAGE] -Questo aggiornamento non è obbligatorio, ma ti suggeriamo di installarlo per migliorarne le prestazioni e la stabilità . - <usetemplate - name="okcancelbuttons" - notext="Continua" - yestext="Scarica l'aggiornamento"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -E' disponibile una versione aggiornata di [SECOND_LIFE]. -[MESSAGE] -Questo aggiornamento non è obbligatorio, ma ti suggeriamo di installarlo per migliorarne le prestazioni e la stabilità . - <usetemplate - name="okcancelbuttons" - notext="Continua" - yestext="Scarica l'aggiornamento"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -E' disponibile una nuova versione di [SECOND_LIFE]. -[MESSAGE] -Devi scaricare questo aggiornamento per usare [SECOND_LIFE]. +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. + </notification> + <notification name="ConfirmBakeTerrain"> + Vuoi veramente impostare come base il terreno corrente, impostarlo come riferimento per i limiti dei rialzi/abbassamenti di tutto il territorio ed il suo valore impostato come base per lo strumento 'Ripristina'? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + Puoi avere al massimo [MAX_AGENTS] residenti consentiti. + </notification> + <notification name="MaxBannedAgentsOnRegion"> + Puoi avere al massimo [MAX_BANNED] residenti bloccati. + </notification> + <notification name="MaxAgentOnRegionBatch"> + E' fallito il tentativo di aggiungere [NUM_ADDED] avatar: +Eccede il [MAX_AGENTS] [LIST_TYPE] limite di [NUM_EXCESS]. + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + Puoi avere al massimo [MAX_GROUPS] gruppi. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Imposta come predefinito"/> + </notification> + <notification name="MaxManagersOnRegion"> + Puoi avere al massimo [MAX_MANAGER] manager della proprietà immobiliare. + </notification> + <notification name="OwnerCanNotBeDenied"> + Impossibile aggiungere i proprietari della proprietà immobiliare alla lista dei residenti bloccati. + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + Impossibile cambiare l'aspetto fisico finchè gli abiti e i vestiti non sono caricati. + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + Il nome del tuo annuncio deve iniziare con una lettera da A a Z oppure con un numero. +Non sono consentiti caratteri di punteggiatura. + </notification> + <notification name="CantSetBuyObject"> + Impossibile impostare 'Compra l'oggetto', perchè l'oggetto non è in vendita. +Imposta l'oggetto per la vendita e riprova. + </notification> + <notification name="FinishedRawDownload"> + Hai terminato di scaricare il file del terreno nella cartella: +[DOWNLOAD_PATH]. + </notification> + <notification name="DownloadWindowsMandatory"> + E' disponibile una nuova versione di [SECOND_LIFE]. +[MESSAGE] +Devi scaricare questo aggiornamento per usare [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Esci" yestext="Scarica l'aggiornamento"/> + </notification> + <notification name="DownloadWindows"> + E' disponibile una versione aggiornata di [SECOND_LIFE]. +[MESSAGE] +Questo aggiornamento non è obbligatorio, ma ti suggeriamo di installarlo per migliorarne le prestazioni e la stabilità . + <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + E' disponibile una versione aggiornata di [SECOND_LIFE]. +[MESSAGE] +Questo aggiornamento non è obbligatorio, ma ti suggeriamo di installarlo per migliorarne le prestazioni e la stabilità . + <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> + </notification> + <notification name="DownloadMacMandatory"> + E' disponibile una nuova versione di [SECOND_LIFE]. +[MESSAGE] +Devi scaricare questo aggiornamento per usare [SECOND_LIFE]. Vuoi avviarne lo scaricamento nella tua cartella applicazioni? - <usetemplate - name="okcancelbuttons" - notext="Esci" - yestext="Scarica l'aggiornamento"/> - </notification> - - <notification - - name="DownloadMac" - > -E' disponibile una versione aggiornata di [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Esci" yestext="Scarica l'aggiornamento"/> + </notification> + <notification name="DownloadMac"> + E' disponibile una versione aggiornata di [SECOND_LIFE]. [MESSAGE] Questo aggiornamento non è obbligatorio, ma ti suggeriamo di installarlo per migliorarne le prestazioni e la stabilità . Vuoi avviarne lo scaricamento nella tua cartella applicazioni? - <usetemplate - name="okcancelbuttons" - notext="Continua" - yestext="Scarica l'aggiornamento"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -E' disponibile una versione aggiornata di [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + E' disponibile una versione aggiornata di [SECOND_LIFE]. [MESSAGE] Questo aggiornamento non è obbligatorio, ma ti suggeriamo di installarlo per migliorarne le prestazioni e la stabilità . Vuoi avviarne lo scaricamento nella tua cartella applicazioni? - <usetemplate - name="okcancelbuttons" - notext="Continua" - yestext="Scarica l'aggiornamento"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -La cessione di questo oggetto farà in modo che il gruppo: + <usetemplate name="okcancelbuttons" notext="Continua" yestext="Scarica l'aggiornamento"/> + </notification> + <notification name="DeedObjectToGroup"> + La cessione di questo oggetto farà in modo che il gruppo: * Riceva i L$ pagati all'oggetto - <usetemplate - ignoretext="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"/> - </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"/> - </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"/> - </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"/> - </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"/> - </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"/> - </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"/> - </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"/> - </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"/> - </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"/> - </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. + <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"/> + </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"/> + </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"/> + </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"/> + </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"/> + </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"/> + </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"/> + </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"/> + </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"/> + </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"/> + </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"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -Sei attualmente un membro del gruppo [GROUP]. + <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]. Vuoi lasciare il gruppo? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmKick" - > -Vuoi VERAMENTE espellere tutti gli utenti dalla griglia? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Espelli tutti gli utenti"/> - </notification> - - <notification - - name="MuteLinden" - > -Mi dispiace, ma non puoi mutare un Linden. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="Non è stato possibile mutare l'oggetto per nome" - name="MuteByNameFailed" - > -Hai già mutato questo nome. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -Sebbene consentita, la cancellazione di contenuti può danneggiare l'oggetto. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmKick"> + Vuoi VERAMENTE espellere tutti gli utenti dalla griglia? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Espelli tutti gli utenti"/> + </notification> + <notification name="MuteLinden"> + Mi dispiace, ma non puoi mutare un Linden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + Non è possibile mettere in vendita all'asta un terreno che è già impostato per la vendita. Disabilita la vendita del terreno, se sei certo di voler avviare una vendita all'asta. + </notification> + <notification label="Non è stato possibile mutare l'oggetto per nome" name="MuteByNameFailed"> + Hai già mutato questo nome. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + Sebbene consentita, la cancellazione di contenuti può danneggiare l'oggetto. Vuoi cancellare quell'elemento? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -Impossibile offrire un biglietto da visita in questo momento. Riprova fra poco. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -Impossibile offrire l'amicizia in questo momento. Riprova fra poco. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -Impostata la modalità 'Occupato'. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="CantOfferCallingCard"> + Impossibile offrire un biglietto da visita in questo momento. Riprova fra poco. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + Impossibile offrire l'amicizia in questo momento. Riprova fra poco. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <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"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -Sei membro di troppi gruppi per poterti unire ad uno nuovo. + <usetemplate ignoretext="Quando si imposta la modalità occupato" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + Sei membro di troppi gruppi per poterti unire ad uno nuovo. Abbandona almeno un gruppo prima di unirti a questo, oppure declina l'offerta. Per abbandonare un gruppo seleziona l'opzione 'Gruppi..' dal menu 'Modifica'. [NAME] ti ha invitato ad unirti ad un gruppo come membro. [INVITE] - <usetemplate - name="okcancelbuttons" - notext="Declino" - yestext="Unisciti"/> - </notification> - - <notification - - name="KickUser" - > -Espelli questo utente con quale messaggio? - <form name="form"> - <input name="message" type="text"> -Un amministratore ti ha disconnesso. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -Espelli tutti quelli che sono sulla griglia con quale messaggio? - <form name="form"> - <input name="message" type="text"> -Un amministratore ti ha disconnesso. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -Immobilizza questo utente con quale messaggio? - <form name="form"> - <input name="message" type="text"> -Sei stato immobilizzato. Non puoi muoverti o usare la chat. Un amministratore ti contatterà con un messaggio (IM). - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -Smobilizza questo utente con quale messaggio? - <form name="form"> - <input name="message" type="text"> -Non sei più immobilizzato. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -Offri un teleport nel posto dove sei con il seguente messaggio? - <form name="form"> - <input name="message" type="text"> -Raggiungimi a [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -Vuoi trasportare divinamente l'utente nel posto dove sei? - <form name="form"> - <input name="message" type="text"> -Raggiungimi in [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -Confermi di volerti teleportare? - <usetemplate - ignoretext="Quando ti teleporti da un landmark nell'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à . - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - label="Cambia la tipologia della proprietà Linden" - name="ChangeLindenEstate" - > -Stai per cambiare la tipologia della proprietà Linden (mainland, griglia minorenni, orientamento, ecc.). + <usetemplate name="okcancelbuttons" notext="Declino" yestext="Unisciti"/> + </notification> + <notification name="KickUser"> + Espelli questo utente con quale messaggio? + <form name="form"> + <input name="message" type="text"> + Un amministratore ti ha disconnesso. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="KickAllUsers"> + Espelli tutti quelli che sono sulla griglia con quale messaggio? + <form name="form"> + <input name="message" type="text"> + Un amministratore ti ha disconnesso. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="FreezeUser"> + Immobilizza questo utente con quale messaggio? + <form name="form"> + <input name="message" type="text"> + Sei stato immobilizzato. Non puoi muoverti o usare la chat. Un amministratore ti contatterà con un messaggio (IM). + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="UnFreezeUser"> + Smobilizza questo utente con quale messaggio? + <form name="form"> + <input name="message" type="text"> + Non sei più immobilizzato. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="OfferTeleport"> + Offri un teleport nel posto dove sei con il seguente messaggio? + <form name="form"> + <input name="message" type="text"> + Raggiungimi a [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + Vuoi trasportare divinamente l'utente nel posto dove sei? + <form name="form"> + <input name="message" type="text"> + Raggiungimi in [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + Confermi di volerti teleportare? + <usetemplate ignoretext="Quando ti teleporti da un landmark nell'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à . + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification label="Cambia la tipologia della proprietà Linden" name="ChangeLindenEstate"> + Stai per cambiare la tipologia della proprietà Linden (mainland, griglia minorenni, orientamento, ecc.). Questo è ESTREMAMENTE PERICOLOSO perchè può cambiare radicalmente l'esperienza degli utenti. Sulla mainland cambierà migliaia di regioni e produrrà seri problemi ai vari server. Confermi? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - label="Cambia la tipologia Linden di accesso alla proprietà " - name="ChangeLindenAccess" - > -Stai per cambiare la lista di accesso per una proprietà Linden (mainland, griglia minorenni, orientamento, ecc.). + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification label="Cambia la tipologia Linden di accesso alla proprietà " name="ChangeLindenAccess"> + Stai per cambiare la lista di accesso per una proprietà Linden (mainland, griglia minorenni, orientamento, ecc.). Questo è PERICOLOSO e dovrebbe essere fatto soltanto per poter lanciare il programma che consente agli oggetti/L$ di essere trasferiti fra griglie diverse. Cambierà migliaia di regioni e produrrà seri problemi ai vari server. + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification label="Seleziona la proprietà " name="EstateAllowedAgentAdd"> + Aggiungi alla lista di accesso solo per questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Seleziona la proprietà " name="EstateAllowedAgentRemove"> + Rimuovi dalla lista di accesso solo per questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Seleziona la proprietà " name="EstateAllowedGroupAdd"> + Aggiungi al gruppo di accesso solo per questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Seleziona la proprietà " name="EstateAllowedGroupRemove"> + Rimuovi dal gruppo di accesso solo per questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Seleziona la proprietà " name="EstateBannedAgentAdd"> + Rifiuta l'accesso solo a questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Seleziona la proprietà " name="EstateBannedAgentRemove"> + Rimuovi questo residente dalla lista dei residenti bloccati nell'accesso solo a questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Seleziona la proprietà " name="EstateManagerAdd"> + Aggiungi come gestore della proprietà solo a questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Seleziona la proprietà " name="EstateManagerRemove"> + Rimuovi come gestore della proprietà solo per questa proprietà oppure per [ALL_ESTATES]? + <usetemplate canceltext="Annulla" name="yesnocancelbuttons" notext="Tutte le proprietà " yestext="Questa proprietà "/> + </notification> + <notification label="Conferma espulsione" name="EstateKickUser"> + Espelli [EVIL_USER] da questa proprietà ? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="EstateChangeCovenant"> + Confermi di voler cambiare il Regolamento della proprietà ? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + Non sei ammesso in questa regione a causa della tua categoria di accesso. Questo può risultare da una mancanza di informazioni necessarie per convalidare la tua età . + +Verifica di avere installato l'ultima versione del programma e vai alla Knowledge Base per ulteriori informazioni su come accedere nelle zone con tale categoria di accesso. <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateAllowedAgentAdd" - > -Aggiungi alla lista di accesso solo per questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateAllowedAgentRemove" - > -Rimuovi dalla lista di accesso solo per questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateAllowedGroupAdd" - > -Aggiungi al gruppo di accesso solo per questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateAllowedGroupRemove" - > -Rimuovi dal gruppo di accesso solo per questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateBannedAgentAdd" - > -Rifiuta l'accesso solo a questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateBannedAgentRemove" - > -Rimuovi questo residente dalla lista dei residenti bloccati nell'accesso solo a questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateManagerAdd" - > -Aggiungi come gestore della proprietà solo a questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Seleziona la proprietà " - name="EstateManagerRemove" - > -Rimuovi come gestore della proprietà solo per questa proprietà oppure per [ALL_ESTATES]? - <usetemplate - canceltext="Annulla" - name="yesnocancelbuttons" - notext="Tutte le proprietà " - yestext="Questa proprietà "/> - </notification> - - <notification - - label="Conferma espulsione" - name="EstateKickUser" - > -Espelli [EVIL_USER] da questa proprietà ? - <usetemplate - name="okcancelbuttons" - notext="Annulla" + name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + Non sei ammesso in questa regione a causa della tua categoria d'accesso. - <notification - - name="EstateChangeCovenant" - > -Confermi di voler cambiare il Regolamento della proprietà ? +Vuoi andare alla Knowledge Base per ulteriori informazioni sulle categorie di accesso? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> + name="okcancelignore" + yestext="Vai alla Knowledge Base" + notext="Chiudi" + 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. + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + Non puoi entrare in quella regione a causa delle tue preferenze sulle categorie di accesso. + +Puoi cliccare su 'Cambia le preferenze' per aumentare subito le tue preferenze sulle categorie di accesso e riuscire ad entrare. Ti sarà permesso cercare ed avere accesso al contenuto [REGIONMATURITY] da quel momento in poi. Volendo poi ripristinare le impostazioni, potrai andare in Modifica > Preferenze... > Generale. + <form name="form"> + <button + name="OK" + text="Cambia le preferenze"/> + <button + default="true" + name="Cancel" + text="Chiudi"/> + <ignore name="ignore" text="Quando l'entrata nella regione è bloccata a causa delle preferenze sulle categorie di accesso"/> + </form> + </notification> + <notification name="LandClaimAccessBlocked"> + Non puoi prendere possesso di questo terreno a causa della tua categoria di accesso. Questo può essere dovuto ad una mancanza di informazioni valide che confermino la tua età . - <notification - - name="ProblemImportingEstateCovenant" - > -Problemi nell'importazione del regolamento della proprietà . +Verifica di avere installato l'ultima versione del programma e vai alla Knowledge Base per informazioni sull'accesso ad aree con queste categorie di accesso. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -Si sono riscontrati problemi nell'aggiungere un nuovo manager della proprietà . Una o più proprietà potrebbero avere la lista dei manager piena. - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -Si sono riscontrati problemi nell'aggiunta a questo elenco della proprietà . Una o più proprietà potrebbe avere una lista piena. - </notification> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + Non puoi prendere possesso di questa terra a causa delle preferenze sulle categorie di accesso. - <notification - - name="UnableToLoadNotecard" - > -Impossibile caricare la notecard in questo momento. +Vuoi andare alla Knowledge Base per maggiori informazioni sulle categorie di accesso? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -Permessi insufficienti per vedere la notecard associata con l'asset ID richiesto. + name="okcancelignore" + yestext="Vai alla Knowledge Base" + notext="Chiudi" + ignoretext="Quando la presa di possesso 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. + </notification> + <notification name="LandClaimAccessBlocked_Change"> + Non puoi prendere possesso di questa terra a causa della tua categoria di accesso. + +Puoi cliccare su 'Cambia le preferenze' per aumentare subito le tue preferenze sulle categorie di accesso e riuscire ad entrare. Ti sarà permesso cercare ed avere accesso al contenuto [REGIONMATURITY] da quel momento in poi. Volendo poi ripristinare le impostazioni, potrai andare in Modifica > Preferenze... > Generale. <usetemplate - name="okbutton" - yestext="OK"/> - </notification> + 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"/> + </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à . - <notification - - name="MissingNotecardAssetID" - > -L'asset ID della notecard è mancante dal database. +Verifica di avere installato l'ultima versione del programma e vai alla Knowledge Base per informazioni sull'accesso ad aree con queste categorie di accesso. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + Non puoi acquistare questo terreno a causa della tua categoria di accesso. - <notification - - name="PublishClassified" - > -Ricorda: le tariffe per gli annunci non sono rimborsabili. +Vuoi andare alla Knowledge Base per maggiori informazioni sulle categorie di accesso? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Vai alla Knowledge Base" + notext="Chiudi" + 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. + </notification> + <notification name="LandBuyAccessBlocked_Change"> + Non puoi acquistare questa terra a causa delle tue preferenze sulle categorie di accesso . + +Puoi cliccare su 'Cambia le preferenze' per aumentare subito le tue preferenze sulle categorie di accesso e riuscire ad entrare. Ti sarà permesso cercare ed avere accesso al contenuto [REGIONMATURITY] da quel momento in poi. Volendo poi ripristinare le impostazioni, potrai andare in Modifica > Preferenze... > Generale. + <usetemplate + name="okcancelignore" + yestext="Cambia le preferenze" + notext="Chiudi" + 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." + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemImportingEstateCovenant"> + Problemi nell'importazione del regolamento della proprietà . + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + Si sono riscontrati problemi nell'aggiungere un nuovo manager della proprietà . Una o più proprietà potrebbero avere la lista dei manager piena. + </notification> + <notification name="ProblemAddingEstateGeneric"> + Si sono riscontrati problemi nell'aggiunta a questo elenco della proprietà . Una o più proprietà potrebbe avere una lista piena. + </notification> + <notification name="UnableToLoadNotecardAsset"> + Impossibile caricare la risorsa della notecard in questo momento. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="NotAllowedToViewNotecard"> + Permessi insufficienti per vedere la notecard associata con l'asset ID richiesto. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + L'asset ID della notecard è mancante dal database. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + Ricorda: le tariffe per gli annunci non sono rimborsabili. Pubblica questo annuncio adesso per [AMOUNT]L$? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="SetClassifiedMature"> + Queste inserzioni includono contenuto Mature? <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - - - - - <notification - - label="Conferma il riavvio" - name="ConfirmRestart" - > -Vuoi veramente far ripartire la regione in 2 minuti? + canceltext="Annulla" + name="yesnocancelbuttons" + notext="No" + yestext="Si"/> + </notification> + <notification name="SetGroupMature"> + Questo gruppo include contenuto Mature? <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - label="Manda un messaggio a tutti in questa regione" - name="MessageRegion" - > -Scrivi un breve annuncio che verrà mandato a tutti in questa regione. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> + canceltext="Annulla" + name="yesnocancelbuttons" + notext="No" + yestext="Si"/> + </notification> + <notification label="Conferma il riavvio" name="ConfirmRestart"> + Vuoi veramente far ripartire la regione in 2 minuti? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification label="Manda un messaggio a tutti in questa regione" name="MessageRegion"> + Scrivi un breve annuncio che verrà mandato a tutti in questa regione. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification label="Blocca il terraforming" name="HelpRegionBlockTerraform"> + Se questa casella è selezionata, i proprietari dei terreni non potranno terraformare il loro terreno indipendentemente dall'impostazione locale di 'Modifica Terreno'. - <notification - - label="Blocca il terraforming" - name="HelpRegionBlockTerraform" - > -Se questa casella è selezionata, i proprietari dei terreni non potranno terraformare il loro terreno indipendentemente dall'impostazione locale di 'Modifica Terreno'. +Impostazione base: spenta + </notification> + <notification label="Blocca il volo" name="HelpRegionBlockFly"> + Se questa casella è selezionata, le persone non potranno volare in questa regione indipendentemente dall'impostazione locale di 'Volo'. Impostazione base: spenta - </notification> + </notification> + <notification label="Cambiamento in massa delle autorizzazioni del contenuto" name="HelpBulkPermission"> + Lo strumento delle autorizzazioni in massa ti aiuta a modificare rapidamente i permessi su oggetti multipli nel contenuto dell'oggetto/i selezionato/i. Ma tieni presente che stai solo impostando autorizzazioni per gli oggetti presenti nel contenuto e non le autorizzazioni per l'oggetto/i che li contiene. - <notification - - label="Blocca il volo" - name="HelpRegionBlockFly" - > -Se questa casella è selezionata, le persone non potranno volare in questa regione indipendentemente dall'impostazione locale di 'Volo'. +Inoltre, le autorizzazioni non vengono applicate agli oggetti a loro volta contenuti all'interno degli oggetti di cui stiamo cambiando i permessi. Il cambiamento sarà operato solo ed esclusivamente alla profondità di un livello. -Impostazione base: spenta - </notification> +È possibile scegliere selettivamente quali tipi di oggetti modificare usando questa lista di controllo dei 'Tipi di contenuto'. Le fotografie sono incluse quando si seleziona textures. - <notification - - label="Consenti Danni" - name="HelpRegionAllowDamage" - > -Se questa casella è selezionata, il sistema del livello vitale su tutti i terreni sarà abilitato indipendentemente dalle impostazioni locali. Se la casella è lasciata vuota i proprietari dei singoli terreni individuali potranno comunque essere in grado di attivare il sistema di livello vitale sulla loro terra. +* Questo strumento riuscirà solo a modificare le autorizzazioni degli oggetti che già tu puoi cambiare. +* Non è possibile impostare in aumento, per il successivo proprietario, alcuna autorizzazione che non sia già in essere. +* I permessi impostabili per il successivo proprietario sono solo richieste di cambiamento. Se un qualsiasi oggetto non può assumere tutte le nuove autorizzazioni impostate, nessuno dei suoi permessi cambierà . -Impostazione base: spenta - </notification> +Quando si è pronti a cambiare i permessi in massa, fare clic su 'Applica' e attendere la visualizzazione dei risultati. - <notification - - label="Limite avatar" - name="HelpRegionAgentLimit" - > -Imposta il massimo numero di avatar consentito in questa regione. +Se si chiude la finestra dello strumento autorizzazioni, mentre le autorizzazioni si stanno modificando, l'operazione si arresterà . + </notification> + <notification label="Consenti Danni" name="HelpRegionAllowDamage"> + Se questa casella è selezionata, il sistema del livello vitale su tutti i terreni sarà abilitato indipendentemente dalle impostazioni locali. Se la casella è lasciata vuota i proprietari dei singoli terreni individuali potranno comunque essere in grado di attivare il sistema di livello vitale sulla loro terra. + +Impostazione base: spenta + </notification> + <notification label="Limite avatar" name="HelpRegionAgentLimit"> + Imposta il massimo numero di avatar consentito in questa regione. Le prestazioni possono variare a seconda del numero totale di avatar presenti. Impostazione base: 40 - </notification> - - <notification - - label="Coefficiente bonus oggetti" - name="HelpRegionObjectBonus" - > -Il coefficiente bonus oggetti è un moltiplicatore per i prim consentiti su ogni terreno. + </notification> + <notification label="Coefficiente bonus oggetti" name="HelpRegionObjectBonus"> + Il coefficiente bonus oggetti è un moltiplicatore per i prim consentiti su ogni terreno. Si può specificare da 1 a 10. Impostandolo ad 1, ogni terreno di 512m² consentià 117 oggetti. Impostandolo a 2, ogni terreno di 512m² ne consentirà 234 o il doppio, e così via. Il numero complessivo di oggetti consentiti per una regione rimane comunque 15.000 indipendentemente dal coefficiente di bonus. Una volta impostato, fai attenzione che abbassare il bonus può causare la cancellazione o restituzione di oggetti. Impostazione base: 1.0 - </notification> - - - - <notification - - label="Limita gli urti" - name="HelpRegionRestrictPushObject" - > -Questa casella limita per tutta la regione i permessi di urto (spinte). + </notification> + <notification label="Categoria di accesso" name="HelpRegionMaturity"> + Imposta la categoria di accesso della regione, come mostrato nella barra dei menu nella parte superiore dello schermo di qualsiasi residente e nelle tooltip sulla mappa di Second Life, quando il cursore si muove su questa regione. Questa impostazione influenza anche l'accesso a questa regione e i risultati della ricerca. Altri residenti possono entrare solo in regioni o visualizzare risultati della ricerca con la stessa categoria di accesso che hanno scelto nella loro preferenze. + +Può trascorrere un po' di tempo prima che questa modifica si rifletta sulla mappa. + </notification> + <notification label="Limita gli urti" name="HelpRegionRestrictPushObject"> + Questa casella limita per tutta la regione i permessi di urto (spinte). Se abilitata, i residenti possono essere urtati/spinti solo da sè stessi o dal proprietario del terreno. (La spinta si riferisce all'uso della funzione LSL llPushObject()) Impostazione base: spenta - </notification> - - <notification - - label="Unisci/Dividi terreno" - name="HelpParcelChanges" - > -Questa casella imposta se i terreni non posseduti dal possessore della proprietà immobiliare possano essere unite o divise. + </notification> + <notification label="Unisci/Dividi terreno" name="HelpParcelChanges"> + Questa casella imposta se i terreni non posseduti dal possessore della proprietà immobiliare possano essere unite o divise. Se questa opzione è deselezionata: * Soltanto i possessori o i manager della proprietà immobiliare possono unire o dividere i terreni. * Possono solo unire o dividere terreni che appartengono al proprietario, o ad un gruppo dove hanno poteri appropriati. @@ -3191,45 +1739,25 @@ Se questa opzione è selezionata: * Per i terreni di proprietà del gruppo, solo coloro con poteri appropriati possono unire o dividere il terreno. Impostazione base: Selezionata - </notification> - - <notification - - label="Non mostrare in ricerca" - name="HelpRegionSearch" - > -Selezionare questa casella bloccherà i proprietari dei terreni dal mettere in lista i loro terreni nella ricerca + </notification> + <notification label="Non mostrare in ricerca" name="HelpRegionSearch"> + Selezionare questa casella bloccherà i proprietari dei terreni dal mettere in lista i loro terreni nella ricerca Impostazione base: spenta - </notification> - - <notification - - label="Cambiato il contenuto Mature" - name="RegionMaturityChange" - > -La classificazione del contenuto Mature di questa regione è stata aggiornata. + </notification> + <notification label="Cambiato il contenuto Mature" name="RegionMaturityChange"> + La classificazione del contenuto Mature di questa regione è stata aggiornata. Può essere necessario un po' di tempo prima che questo cambiamento sia visibile sulle mappe. - </notification> - - <notification - - label="Rivendita dei Terreni" - name="HelpRegionLandResell" - > -I possessori e i manager della proprietà immobiliare possono vendere tutte le terre di cui sono proprietari. + </notification> + <notification label="Rivendita dei Terreni" name="HelpRegionLandResell"> + I possessori e i manager della proprietà immobiliare possono vendere tutte le terre di cui sono proprietari. Se questa opzione è lasciata deselezionata i compratori non potranno rivendere le proprie terre in questa regione. Se questa opzione è selezionato i compratori possono rivendere i loro terreni in questa regione. 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. + </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. @@ -3237,14 +1765,9 @@ Selezionare la casella della disabilitazione script e, premendo il bottone appli Disabilita la casella e quindi premere applica per riattivare gli script nella regione. 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. + </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). Controlla il FPS della fisica del simulatore. Se è più basso di 45, apri il pannello "Tempi" collocato in fondo alla 'barra delle statistiche'. @@ -3256,502 +1779,246 @@ Una volta arrivato sul posto, studia l'oggetto - sta collidendo costantemen Disabilitare la casella disabilita collisioni e quindi premere applica per riattivare le collisioni nella regione. Impostazione base: spento - </notification> - - <notification - - label="Disabilita la fisica" - name="HelpRegionDisablePhysics" - > -Disabilitare la fisica è simile alla disabilitazione delle collisioni eccetto che tutte le simulazioni fisiche sono disabilitate. Questo significa che non solo gli oggetti cessano di collidere, ma anche gli avatar non riusciranno più a muoversi. + </notification> + <notification label="Disabilita la fisica" name="HelpRegionDisablePhysics"> + Disabilitare la fisica è simile alla disabilitazione delle collisioni eccetto che tutte le simulazioni fisiche sono disabilitate. Questo significa che non solo gli oggetti cessano di collidere, ma anche gli avatar non riusciranno più a muoversi. Questo dovrebbe essere utilizzato solo se il 'disabilita collisioni' non restituisce abbastanza prestazioni alla regione dopo aver cercato un problema fisico o un oggetto che collide eccessivamente. Fai attenzione a riabilitare la fisica quando hai terminato, altrimenti nessun avatar riuscirà a muoversi. 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. + </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. - </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. + </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. - </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. + </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. La regione salverà i suoi dati e dovrebbe tornare attiva entro 90 secondi. Far ripartire la regione non risolverà i problemi maggiori delle prestazioni e dovrebbe essere fatta solo se necessario. - </notification> - - <notification - - label="Altezza dell'acqua" - name="HelpRegionWaterHeight" - > -Questa è l'altezza in metri del mare dove deve apparire l'acqua. + </notification> + <notification label="Altezza dell'acqua" name="HelpRegionWaterHeight"> + Questa è l'altezza in metri del mare dove deve apparire l'acqua. Se questa impostazione è diversa da 20 e l'acqua circonda il confine di terra o acqua della tua sim, vedrai una discontinuità fra la sim e il mare. Impostazione base: 20 - </notification> - - <notification - - label="Sollevamento terreno" - name="HelpRegionTerrainRaise" - > -Questa è l'ulteriore altezza in metri entro la quale i proprietari di appezzamenti possono alzare il loro terreno partendo dall'altezza preimpostata. + </notification> + <notification label="Sollevamento terreno" name="HelpRegionTerrainRaise"> + Questa è l'ulteriore altezza in metri entro la quale i proprietari di appezzamenti possono alzare il loro terreno partendo dall'altezza preimpostata. Impostazione base: 4 - </notification> - - <notification - - label="Abbassamento terreno" - name="HelpRegionTerrainLower" - > -Questa è l'ulteriore altezza in metri entro la quale i proprietari di appezzamenti possono abbassare il loro terreno partendo dall'altezza preimpostata. + </notification> + <notification label="Abbassamento terreno" name="HelpRegionTerrainLower"> + Questa è l'ulteriore altezza in metri entro la quale i proprietari di appezzamenti possono abbassare il loro terreno partendo dall'altezza preimpostata. Impostazione base: -4 - </notification> - - <notification - - label="Importa terreno RAW" - name="HelpRegionUploadRaw" - > -Questo bottone importa un file .RAW nella regione in cui sei. + </notification> + <notification label="Importa terreno RAW" name="HelpRegionUploadRaw"> + Questo bottone importa un file .RAW nella regione in cui sei. Il file deve avere le corrette dimensioni (RGB, 256x256) e 13 canali. Il modo migliore per creare un file di terreno è di scaricare un file RAW esistente. Un buon primo passo è quello di modificare il canale del rosso (altezza della terra), ed importarlo. L'importazione può impiegare fino a 45 secondi. Nota che importare un file del terreno *non muoverà * gli oggetti che sono sulla sim, soltanto il terreno stesso e i permessi associati agli appezzamenti. Questo potrebbe far sì che gli oggetti vadano sotto terra. Per maggiori informazioni sulle modifiche dei campi dell'altezza della regione, consulta il tasto F1 Aiuto. - </notification> - - <notification - - label="Scarica il terreno RAW" - name="HelpRegionDownloadRaw" - > -Questo bottone scarica un file che contiene i dati dell'altezza, delle dimensioni, dello stato di vendita del terreno e di alcuni permessi degli appezzamenti di questa regione. + </notification> + <notification label="Scarica il terreno RAW" name="HelpRegionDownloadRaw"> + Questo bottone scarica un file che contiene i dati dell'altezza, delle dimensioni, dello stato di vendita del terreno e di alcuni permessi degli appezzamenti di questa regione. Aprendo questo file in un programma come Photoshop devi specificare le dimensioni che sono: RGB, 256x256 con 13 channels. Questo file del terreno non può essere aperto in nessun altro modo. Per maggiori informazioni sulle modifiche dei campi dell'altezza della regione, consulta il tasto F1 Aiuto. - </notification> - - <notification - - label="Usa il sole della proprietà " - name="HelpRegionUseEstateSun" - > -Questa casella fa si che la posizione del sole in questa regione coincida con la posizione del sole nel resto della proprietà . + </notification> + <notification label="Usa il sole della proprietà " name="HelpRegionUseEstateSun"> + Questa casella fa si che la posizione del sole in questa regione coincida con la posizione del sole nel resto della proprietà . Impostazione base: attivo - </notification> - - <notification - - label="Sole fisso" - name="HelpRegionFixedSun" - > -Questa casella imposta la posizione del sole ad un valore definito nel cursore delle fasi e fa in modo che il sole non si muova. + </notification> + <notification label="Sole fisso" name="HelpRegionFixedSun"> + Questa casella imposta la posizione del sole ad un valore definito nel cursore delle fasi e fa in modo che il sole non si muova. Impostazione base: spento - </notification> - - <notification - - label="Crea il Terreno" - name="HelpRegionBakeTerrain" - > -Questo bottone salva l'attuale forma del terreno come impostazione base per la regione. Una volta creato, il terreno può riassumere la forma base ogni volta che che tu o altri dovessero usare l'opzione 'Reimposta' della modifica del terreno. + </notification> + <notification label="Crea il Terreno" name="HelpRegionBakeTerrain"> + Questo bottone salva l'attuale forma del terreno come impostazione base per la regione. Una volta creato, il terreno può riassumere la forma base ogni volta che che tu o altri dovessero usare l'opzione 'Reimposta' della modifica del terreno. Il terreno creato è anche il punto intermedio dei limiti di sollevamento ed abbassamento terreno. - </notification> - - <notification - - label="Manager della proprietà " - name="HelpEstateEstateManager" - > -Un manager della proprietà è un residente a cui avete delegato il controllo di una regione o di una proprietà . Un manager della proprietà può cambiare qualunque impostazione in queste finestre, eccezion fatta per l'importazione, l'esportazione e la creazione del terreno. In particolare, possono consentire o bloccare l'accesso ai residenti nella tua proprietà . + </notification> + <notification label="Manager della proprietà " name="HelpEstateEstateManager"> + Un manager della proprietà è un residente a cui avete delegato il controllo di una regione o di una proprietà . Un manager della proprietà può cambiare qualunque impostazione in queste finestre, eccezion fatta per l'importazione, l'esportazione e la creazione del terreno. In particolare, possono consentire o bloccare l'accesso ai residenti nella tua proprietà . I manager della proprietà possono essere soltanto aggiunti o rimossi dal possessore della proprietà e non possono farlo loro l'un l'altro. Scegli solo residenti di cui ti fidi come manager della proprietà , dato che tu sarai responsabile per le loro azioni. - </notification> - - <notification - - label="Usa l'ora globale" - name="HelpEstateUseGlobalTime" - > -Questa casella fa si che il sole nella vostra proprietà segua la stessa posizione della mainland Linden. + </notification> + <notification label="Usa l'ora globale" name="HelpEstateUseGlobalTime"> + Questa casella fa si che il sole nella vostra proprietà segua la stessa posizione della mainland Linden. Impostazione base: on - </notification> - - <notification - - label="Sole Fisso" - name="HelpEstateFixedSun" - > -Questa casella imposta la posizione del sole su una posizione del cursore di Fase del sole e lo blocca in quella posizione. - </notification> - - <notification - - label="Accesso Pubblico" - name="HelpEstateExternallyVisible" - > -Questa casella permette ai residenti che sono su altre regioni, di entrare in questa proprietà anche se non sono nella lista di accesso. + </notification> + <notification label="Sole Fisso" name="HelpEstateFixedSun"> + Questa casella imposta la posizione del sole su una posizione del cursore di Fase del sole e lo blocca in quella posizione. + </notification> + <notification label="Accesso Pubblico" name="HelpEstateExternallyVisible"> + Questa casella permette ai residenti che sono su altre regioni, di entrare in questa proprietà anche se non sono nella lista di accesso. Impostazione base: attivo - </notification> - - <notification - - label="Consenti teleport diretto" - name="HelpEstateAllowDirectTeleport" - > -Se selezionato, consente ai residenti di teleportarsi direttamente in qualunque punto di questa proprietà . + </notification> + <notification label="Consenti teleport diretto" name="HelpEstateAllowDirectTeleport"> + Se selezionato, consente ai residenti di teleportarsi direttamente in qualunque punto di questa proprietà . Se deselezionato, i residenti si teleporteranno al più vicino snodo. Impostazione base: spento - </notification> - - <notification - - label="Consenti accesso" - name="HelpEstateAllowResident" - > -L'accesso a questa proprietà verrà limitata solo ai residenti ed ai gruppi elencati più sotto. Questa impostazione è disponibile solo se l'accesso pubblico è deselezionato. - </notification> - - <notification - - label="Consenti Accesso di gruppo" - name="HelpEstateAllowGroup" - > -L'accesso a questa proprietà verrà limitata solo ai gruppi qui elencati e ai residenti loro appartenenti. Questa impostazione è disponibile soltanto se l'accesso pubblico è deselezionato. - </notification> - - <notification - - label="Indirizzo di posta email per le segnalazioni di abuso" - name="HelpEstateAbuseEmailAddress" - > -Impostando qui un indirizzo di posta elettronica valido, farà si che le segnalazioni di abuso, fatte su questa proprietà , siano mandate a quell'indirizzo. + </notification> + <notification label="Consenti accesso" name="HelpEstateAllowResident"> + L'accesso a questa proprietà verrà limitata solo ai residenti ed ai gruppi elencati più sotto. Questa impostazione è disponibile solo se l'accesso pubblico è deselezionato. + </notification> + <notification label="Consenti Accesso di gruppo" name="HelpEstateAllowGroup"> + L'accesso a questa proprietà verrà limitata solo ai gruppi qui elencati e ai residenti loro appartenenti. Questa impostazione è disponibile soltanto se l'accesso pubblico è deselezionato. + </notification> + <notification label="Indirizzo di posta email per le segnalazioni di abuso" name="HelpEstateAbuseEmailAddress"> + Impostando qui un indirizzo di posta elettronica valido, farà si che le segnalazioni di abuso, fatte su questa proprietà , siano mandate a quell'indirizzo. Lasciandolo vuoto causerà l'invio delle segnalazioni di abuso soltanto ai Linden Lab. - </notification> - - <notification - - label="Rifiuta accesso" - name="HelpEstateBanResident" - > -I residenti su questa lista non saranno accettati nella tua proprietà , indipendentemente da qualunque altra impostazione. - </notification> - - <notification - - label="Consenti la voice chat" - name="HelpEstateVoiceChat" - > -I terreni di questa proprietà potranno avere i loro canali voce nei quali i residenti potranno parlare con gli avatar vicini. + </notification> + <notification label="Rifiuta accesso" name="HelpEstateBanResident"> + I residenti su questa lista non saranno accettati nella tua proprietà , indipendentemente da qualunque altra impostazione. + </notification> + <notification label="Consenti la voice chat" name="HelpEstateVoiceChat"> + I terreni di questa proprietà potranno avere i loro canali voce nei quali i residenti potranno parlare con gli avatar vicini. Impostazione base: spento - </notification> - - <notification - - label="Versione voice non compatibile" - name="VoiceVersionMismatch" - > -Questa versione di Second Life non è compatibile con le impostazioni di voice chat di questa regione. Per poter fare funzionare correttamente la chat voce devi aggiornare Second Life. - </notification> - - <notification - - label="Regolamento della proprietà " - name="HelpEstateCovenant" - > -Impostare un regolamento della proprietà ti consente di vendere i terreni all'interno di quella proprietà . Se non imposti un regolamento, non puoi vendere i terreni. La notecard per il tuo regolamente può essere vuota se non desideri applicare nessuna regola o informare i compratori di cose inerenti la terra, prima dell'acquisto. + </notification> + <notification label="Versione voice non compatibile" name="VoiceVersionMismatch"> + Questa versione di Second Life non è compatibile con le impostazioni di voice chat di questa regione. Per poter fare funzionare correttamente la chat voce devi aggiornare Second Life. + </notification> + <notification label="Regolamento della proprietà " name="HelpEstateCovenant"> + Impostare un regolamento della proprietà ti consente di vendere i terreni all'interno di quella proprietà . Se non imposti un regolamento, non puoi vendere i terreni. La notecard per il tuo regolamente può essere vuota se non desideri applicare nessuna regola o informare i compratori di cose inerenti la terra, prima dell'acquisto. 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. - </notification> - - <notification - - label="Impossibile comprare oggetti" - name="BuyObjectOneOwner" - > -Impossibile comprare oggetti da proprietari diversi nello stesso momento. + </notification> + <notification label="Impossibile comprare oggetti" name="BuyObjectOneOwner"> + Impossibile comprare oggetti da proprietari diversi nello stesso momento. Seleziona solo un oggetto e riprova. - </notification> - - <notification - - label="Impossibile comprare il contenuto" - name="BuyContentsOneOnly" - > -Impossibile comprare il contenuto di più di un oggetto per volta. + </notification> + <notification label="Impossibile comprare il contenuto" name="BuyContentsOneOnly"> + Impossibile comprare il contenuto di più di un oggetto per volta. Seleziona solo un oggetto e riprova. - </notification> - - <notification - - label="Impossibile comprare il contenuto" - name="BuyContentsOneOwner" - > -Impossibile comprare oggetti da proprietari differenti nello stesso momento. + </notification> + <notification label="Impossibile comprare il contenuto" name="BuyContentsOneOwner"> + Impossibile comprare oggetti da proprietari differenti nello stesso momento. Scegli un solo oggetto e riprova. - </notification> - - <notification - - name="BuyOriginal" - > -Compra l'oggetto originale da [OWNER] per [PRICE]L$? + </notification> + <notification name="BuyOriginal"> + Compra l'oggetto originale da [OWNER] per [PRICE]L$? Diventerai proprietario di questo oggetto. Sarai in grado di: Modificare: [MODIFYPERM] Copiare: [COPYPERM] Rivendere o regalare: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -Compra l'oggetto originale per [PRICE]L$? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="BuyOriginalNoOwner"> + Compra l'oggetto originale per [PRICE]L$? Diventerai proprietario di questo oggetto. Sarai in grado di: Modificare: [MODIFYPERM] Copiare: [COPYPERM] Rivendere o regalare: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopy" - > -Compra una copia da [OWNER] per [PRICE]L$? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="BuyCopy"> + Compra una copia da [OWNER] per [PRICE]L$? L'oggetto verrà copiato nel tuo inventario. Sarai in grado di: Modificare: [MODIFYPERM] Copiare: [COPYPERM] Rivendere o regalare: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -Compra una copia per [PRICE]L$? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="BuyCopyNoOwner"> + Compra una copia per [PRICE]L$? L'oggetto verrà copiato nel tuo inventario. Sarai in grado di: Modificare: [MODIFYPERM] Copiare: [COPYPERM] Rivendere o regalare: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="BuyContents" - > -Compra il contenuto da [OWNER] per [PRICE]L$? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="BuyContents"> + Compra il contenuto da [OWNER] per [PRICE]L$? Il contenuto verrà copiato nel tuo inventario. - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -Compra il contenuto per [PRICE]L$? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="BuyContentsNoOwner"> + Compra il contenuto per [PRICE]L$? Il contenuto verrà copiato nel tuo inventario. - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -Questa transazione farà : + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmPurchase"> + Questa transazione farà : [ACTION] Confermi di voler procedere all'acquisto? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -Questa transazione farà : + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="OK"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + Questa transazione farà : [ACTION] Confermi di voler procedere all'acquisto? Ridigita la tua password e premi OK. - <form name="form"> - <input - name="message" - type="password"/> - <button - - - name="ConfirmPurchase" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -Nota: + <form name="form"> + <input name="message" type="password"/> + <button name="ConfirmPurchase" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="SetPickLocation"> + Nota: Hai aggiornato l'ubicazione di questo preferito ma gli altri dettagli conserveranno il loro valore originale. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -Hai selezionato elementi dall'inventario 'non copiabili'. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + Hai selezionato elementi dall'inventario 'non copiabili'. 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"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -Hai selezionato elementi dell'inventario non copiabili. Questi elementi verranno trasferiti nel tuo inventario, non verranno copiati. + <usetemplate ignoretext="Quando si trasferiscono, dagli oggetti all'inventario, elementi non copiabili" 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"/> - </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()"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -Non ci sono elementi in questo oggetto che tu possa copiare. - </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"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -Visita il sito di supporto di Second Life? - <usetemplate - ignoretext="Quando visiti il sito del supporto di Second Life." - name="okcancelignore" - notext="Annulla" - yestext="Vai"/> - </notification> - - <notification - - name="ConfirmQuit" - > -Confermi di voler uscire? - <usetemplate - ignoretext="Quando esci da Second Life." - name="okcancelignore" - notext="Continua" - yestext="Esci"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -Usa questo strumento per segnalare violazioni ai Termini di Servizio e agli standard della Comunità . Vedi: + <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()"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + Non ci sono elementi in questo oggetto che tu possa copiare. + </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"/> + </notification> + <notification name="ClickOpenF1Help"> + Visita il sito di supporto di Second Life? + <usetemplate ignoretext="Quando visiti il sito del supporto di Second Life." name="okcancelignore" notext="Annulla" yestext="Vai"/> + </notification> + <notification name="ConfirmQuit"> + Confermi di voler uscire? + <usetemplate ignoretext="Quando esci da Second Life." name="okcancelignore" notext="Continua" yestext="Esci"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + Usa questo strumento per segnalare violazioni ai Termini di Servizio e agli standard della Comunità . Vedi: http://secondlife.com/corporate/tos.php http://secondlife.com/corporate/cs.php @@ -3759,13 +2026,9 @@ http://secondlife.com/corporate/cs.php Tutte gli abusi ai Termini di Servizio e agli Standard della Comunità segnalati, sono indagati e risolti. Puoi controllare la risoluzione degli abusi visitando la pagina delle Risoluzioni degli Incidenti: http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -IMPORTANTE: questo rapporto verrà inviato al proprietario della regione dove sei in questo momento e non ai Linden Lab. + </notification> + <notification name="HelpReportAbuseEmailEO"> + IMPORTANTE: questo rapporto verrà inviato al proprietario della regione dove sei in questo momento e non ai Linden Lab. Come servizio ai residenti e ai visitatori, il proprietario della regione in cui ti trovi, ha scelto di ricevere e risolvere le segnalazioni di abuso che nascono in questa regione. Il Linden Lab non investiga sulle segnalazione inviate da qui. @@ -3773,13 +2036,9 @@ Il proprietario della regione risolverà le segnalazione basandosi sulle regole (Puoi vedere il regolamento andando sul menu Mondo e selezionando Informazioni sul terreno.) La risoluzione di questa segnalazione verrà applicata solo in questa regione; L'accesso dei residenti ad altre aree di Second Life non verrà influenzato dal risultato di questa segnalazione. Soltanto i Linden Lab possono restringere l'accesso alla totalità di Second Life. - </notification> - - <notification - - name="HelpReportBug" - > -Usa questo strumento per segnalare *soltanto* caratteristiche tecniche che non funzionano come descitto o atteso, fornisci quanti più dettagli è possibile, Puoi rispondere all'email automatica aggiungendo ulteriori dettagli sulla tua segnalazione. + </notification> + <notification name="HelpReportBug"> + Usa questo strumento per segnalare *soltanto* caratteristiche tecniche che non funzionano come descitto o atteso, fornisci quanti più dettagli è possibile, Puoi rispondere all'email automatica aggiungendo ulteriori dettagli sulla tua segnalazione. Tutte le segnalazioni di bug sono investigate e valutate. Non vengono inviate risposte via email. @@ -3788,79 +2047,43 @@ Se hai difficoltà tecniche contatta il supporto: http://secondlife.com/community/support.php Nota: segnalazioni incomplete non verranno prese in considerazione - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -Scegli una categoria per questa segnalazione di abuso. + </notification> + <notification name="HelpReportAbuseSelectCategory"> + Scegli una categoria per questa segnalazione di abuso. Scegliere una categoria, ci aiuta a gestire ed elaborare le segnalazioni di abuso. - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -Scegli una categoria per questo bug. + </notification> + <notification name="HelpReportBugSelectCategory"> + Scegli una categoria per questo bug. Scegliere una categoria, ci aiuta a gestire ed elaborare le segnalazioni di bug. - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -Introduci il nome di chi abusa. + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + Introduci il nome di chi abusa. Introducendo un valore accurato, ci aiuti a gestire ed elaborare le segnalazioni di abuso. - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -Inserisci il luogo dove l'abuso è avvenuto. + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + Inserisci il luogo dove l'abuso è avvenuto. Introducendo un valore accurato, ci aiuti a gestire ed elaborare le segnalazioni di abuso. - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -Inserisci un yiyolo descrittivo dell'abuso che è avvenuto. + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + Inserisci un yiyolo descrittivo dell'abuso che è avvenuto. Introducendo un titolo descrittivo accurato, ci aiuti a gestire ed elaborare le segnalazioni di abuso. - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -Introduci una descrizione del bug. + </notification> + <notification name="HelpReportBugSummaryEmpty"> + Introduci una descrizione del bug. Introducendo una descrizione accurata ci aiuti a gestire ed elaborare le segnalazioni di bug. - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -Inserisci una descrizione dettagliata dell'abuso che è avvenuto. + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + Inserisci una descrizione dettagliata dell'abuso che è avvenuto. Devi essere il più specifico possibile, includendo i nomi e i dettagli dell'incidente che stai segnalando. Inserendo una descrizione accurata ci aiuti a gestire ed elaborare le segnalazioni di abuso. - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -Inserisci una descrizione dettagliata del bug. + </notification> + <notification name="HelpReportBugDetailsEmpty"> + Inserisci una descrizione dettagliata del bug. Devi essere il pià specifico possibile, includendo se possibil i passi per riprodurre il problema. Inserendo una descrizione accurata, ci aiuti a gestire ed elaborare le segnalazioni di bug. - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Caro residente, + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + Caro residente, Sembra che stai segnalando un problema di furto di proprietà intellettuale. Cerca di essere sicuro che la tua segnalazione stia riportando correttamente: @@ -3872,143 +2095,61 @@ Se desideri egualmente continuare con il processo di abuso, chiudi questa finest Grazie, La Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -I seguenti componenti obbligatori sono mancanti da [FLOATER]: + </notification> + <notification name="FailedRequirementsCheck"> + I seguenti componenti obbligatori sono mancanti da [FLOATER]: [COMPONENTS] - </notification> - - <notification - - label="Sostituisci gli oggetti indossati" - name="ReplaceAttachment" - > -C'è già un oggetto indossato in questo punto del corpo. + </notification> + <notification label="Sostituisci gli oggetti indossati" name="ReplaceAttachment"> + 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"/> - <button - - - - name="Yes" - text="OK"/> - <button - - - name="No" - text="Annulla"/> - </form> - </notification> - - <notification - - label="Avviso di 'Occupato'" - name="BusyModePay" - > -Sei in modalità 'Occupato', ciò significa che non riceverai ciò che attendi per questo pagamento. + <form name="form"> + <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> + </notification> + <notification label="Avviso di 'Occupato'" name="BusyModePay"> + Sei in modalità 'Occupato', ciò significa che non riceverai ciò che attendi per questo pagamento. 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'"/> - <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"/> - </notification> - - <notification - - name="ConfirmClearBrowserCache" - > -Confermi di voler pulire la cache del tuo browser? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Si"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -Confermi di volere cancellare i tuoi cookie? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Si"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -Confermi di voler cancellare la lista degli URL salvati? - <usetemplate - name="okcancelbuttons" - notext="Annulla" - yestext="Si"/> - </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"/> - </notification> - - <notification - - name="CopySLURL" - > -Lo SLURL seguente è stato copiato nei tuoi appunti: + <form name="form"> + <ignore name="ignore" save_option="true" text="Quando avviene il pagamento di una persona o 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"/> + </notification> + <notification name="ConfirmClearBrowserCache"> + Confermi di voler pulire la cache del tuo browser? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Si"/> + </notification> + <notification name="ConfirmClearCookies"> + Confermi di volere cancellare i tuoi cookie? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Si"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + Confermi di voler cancellare la lista degli URL salvati? + <usetemplate name="okcancelbuttons" notext="Annulla" yestext="Si"/> + </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"/> + </notification> + <notification name="CopySLURL"> + 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"/> - </form> - </notification> - - <notification - - name="GraphicsPreferencesHelp" - > -Questo pannello controlla la dimensione delle finestre, la risoluzione e la qualità della grafica del tuo browser. Le Preferenze > Grafica consente di scegliere fra quattro livelli grafici: Basso, Medio, Alto, e Ultra. Puoi anche modificare le impostazioni grafiche selezionando la casella Personalizza e manipolando le seguenti impostazioni: + <form name="form"> + <ignore name="ignore" text="Quando copi lo SLURL negli appunti"/> + </form> + </notification> + <notification name="GraphicsPreferencesHelp"> + Questo pannello controlla la dimensione delle finestre, la risoluzione e la qualità della grafica del tuo browser. Le Preferenze > Grafica consente di scegliere fra quattro livelli grafici: Basso, Medio, Alto, e Ultra. Puoi anche modificare le impostazioni grafiche selezionando la casella Personalizza e manipolando le seguenti impostazioni: Effetti grafici: Abilita o disabilita vari tipi di effetti grafici. @@ -4027,74 +2168,33 @@ Dettaglio della retinatura: Imposta il dettaglio o il numero di triangoli che so Dettagli dell'illuminazione: Seleziona quali tipi di luce vuoi visualizzare. Dettaglio del terreno: Imposta la quantità di dettagli che vuoi vedere per le texture del terreno. - </notification> - - <notification - - name="WLSavePresetAlert" - > -Vuoi sovrascrivere le preimpostazioni salvate? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="WLDeletePresetAlert" - > -Vuoi cancellare [SKY]? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="WLNoEditDefault" - > -Non puoi modificare o cancellare una preimpostazione di fabbrica. - </notification> - - <notification - - name="WLMissingSky" - > -Questo file di ciclo giornaliero fa riferimento ad un file di cielo mancante: [SKY]. - </notification> - - <notification - - name="PPSaveEffectAlert" - > -Effetto di post elaborazione già presente. Vuoi sovrascrivere? - <usetemplate - name="okcancelbuttons" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="HelpEditSky" - > -Modifica i cursori di WindLight per creare e savare un insieme di cieli. - </notification> - - <notification - - name="HelpEditDayCycle" - > -Scegli quale cielo impostare per ciclo giornaliero. - </notification> - - <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. + </notification> + <notification name="WLSavePresetAlert"> + Vuoi sovrascrivere le preimpostazioni salvate? + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="WLDeletePresetAlert"> + Vuoi cancellare [SKY]? + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="WLNoEditDefault"> + Non puoi modificare o cancellare una preimpostazione di fabbrica. + </notification> + <notification name="WLMissingSky"> + Questo file di ciclo giornaliero fa riferimento ad un file di cielo mancante: [SKY]. + </notification> + <notification name="PPSaveEffectAlert"> + Effetto di post elaborazione già presente. Vuoi sovrascrivere? + <usetemplate name="okcancelbuttons" notext="No" yestext="Si"/> + </notification> + <notification name="HelpEditSky"> + Modifica i cursori di WindLight per creare e savare un insieme di cieli. + </notification> + <notification name="HelpEditDayCycle"> + Scegli quale cielo impostare per ciclo giornaliero. + </notification> + <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. @@ -4109,13 +2209,9 @@ Clicca "Usa l'ora della proprietà " per sincronizzare il tempo de 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. - </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. + </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. @@ -4126,1670 +2222,868 @@ Si possono impostare le posizioni temporali dei fotogrammi chiave spostandole lu 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> - - <notification - - name="HelpBlueHorizon" - > -Si usano i cursori RGB (Rosso/Verde/Blu) per modificare il colore del cielo. Si può usare il cursore I (Intensità ) per alterare i tre cursori all'unisono. - </notification> - - <notification - - name="HelpHazeHorizon" - > -Altezza della foschia all'orizzonte è uno dei parametri più utili per modificare l'esposizione di luce complessiva nella scena. + </notification> + <notification name="HelpBlueHorizon"> + Si usano i cursori RGB (Rosso/Verde/Blu) per modificare il colore del cielo. Si può usare il cursore I (Intensità ) per alterare i tre cursori all'unisono. + </notification> + <notification name="HelpHazeHorizon"> + Altezza della foschia all'orizzonte è uno dei parametri più utili per modificare l'esposizione di luce complessiva nella scena. E' utile per simulare molte impostazioni di esposizione, come la sovraesposizione del sole e impostazioni più scure a diaframma chiuso. - </notification> - - <notification - - name="HelpBlueDensity" - > -La densità del blu influenza la saturazione complessiva del cielo e della nebbia. Se impostate il cursore (I) Intensità verso destra i colori diventeranno più brillanti e accesi. Se lo impostate tutto a sinistra, i colori diventeranno opachi e ultimamente si confonderanno con il bianco/nero. Se si vuole controllare in modo preciso l'equilibro di colori del cielo, si può agire sui singoli elementi di saturazione utilizzando i tre cursori RGB (Rosso, Verde, Blu). - </notification> - - <notification - - name="HelpHazeDensity" - > -La densità della foschia controlla il livello di foschia grigia generale nell'atmosfera. + </notification> + <notification name="HelpBlueDensity"> + La densità del blu influenza la saturazione complessiva del cielo e della nebbia. Se impostate il cursore (I) Intensità verso destra i colori diventeranno più brillanti e accesi. Se lo impostate tutto a sinistra, i colori diventeranno opachi e ultimamente si confonderanno con il bianco/nero. Se si vuole controllare in modo preciso l'equilibro di colori del cielo, si può agire sui singoli elementi di saturazione utilizzando i tre cursori RGB (Rosso, Verde, Blu). + </notification> + <notification name="HelpHazeDensity"> + La densità della foschia controlla il livello di foschia grigia generale nell'atmosfera. E' utile per simulare scene con un livello alto di fumo e di inquinamento di origine umana. 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. - </notification> - - <notification - - name="HelpDistanceMult" - > -Modifica la distanza percepita da WindLight. + </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. + </notification> + <notification name="HelpDistanceMult"> + Modifica la distanza percepita da WindLight. Immettendo il valore zero si spegne l'influenza di WindLight sul terreno e gli oggetti. Valori più grandi di 1 simulano distanze più grandi per effetti atmosferici più spessi. - </notification> - - <notification - - name="HelpMaxAltitude" - > -Altitudine Massima modifica i calcoli di altezza che fa WindLight quando calcola l'illuminazione atmosferica. + </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. - </notification> - - <notification - - name="HelpSunlightColor" - > -Modifica il colore e l'intensità della luce diretta nella scena. - </notification> - - <notification - - name="HelpSunAmbient" - > -Modifica il colore e l'intensità della luce atmosferica ambientale nella scena. - </notification> - - <notification - - name="HelpSunGlow" - > -Il cursore Dimensione controlla la dimensione del sole. + </notification> + <notification name="HelpSunlightColor"> + Modifica il colore e l'intensità della luce diretta nella scena. + </notification> + <notification name="HelpSunAmbient"> + 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. - </notification> - - <notification - - name="HelpSceneGamma" - > -Modifica la distribuzione di luci e ombre nello schermo. - </notification> - - <notification - - name="HelpStarBrightness" - > -Modifica la brillantezza delle stelle nel cielo. - </notification> - - <notification - - name="HelpTimeOfDay" - > -Controlla la posizione del sole nel cielo. + </notification> + <notification name="HelpSceneGamma"> + Modifica la distribuzione di luci e ombre nello schermo. + </notification> + <notification name="HelpStarBrightness"> + Modifica la brillantezza delle stelle nel cielo. + </notification> + <notification name="HelpTimeOfDay"> + Controlla la posizione del sole nel cielo. Simile all'elevazione. - </notification> - - <notification - - name="HelpEastAngle" - > -Controlla la posizione del sole nel cielo. + </notification> + <notification name="HelpEastAngle"> + Controlla la posizione del sole nel cielo. Simile all'azimuth. - </notification> - - <notification - - name="HelpCloudColor" - > -Modifica il colore delle nuvole. Normalmente si raccomanda di mantenere un colore verso il bianco, ma puoi sbizzarrirti. - </notification> - - <notification - - name="HelpCloudDetail" - > -Controlla l'immagine dei dettagli che è sovraimposta sopra l'immagine principale delle nuvole. + </notification> + <notification name="HelpCloudColor"> + Modifica il colore delle nuvole. Normalmente si raccomanda di mantenere un colore verso il bianco, ma puoi sbizzarrirti. + </notification> + <notification name="HelpCloudDetail"> + Controlla l'immagine dei dettagli che è sovraimposta sopra l'immagine principale delle nuvole. X e Y controllano la sua posizione. D (Densità ) controlla quanto gonfie o spezzettate appaiono le nuvole. - </notification> - - <notification - - name="HelpCloudDensity" - > -Consente di controllare la posizione delle nuvole usando i cursori X e Y e quanto dense siano usando il cursore D. - </notification> - - <notification - - name="HelpCloudCoverage" - > -Controlla quanto le nuvole coprono il cielo. - </notification> - - <notification - - name="HelpCloudScale" - > -Controlla le dimensioni delle immagini delle nuvole sul cielo stellato. - </notification> - - <notification - - name="HelpCloudScrollX" - > -Controlla la velocità delle nuvole lungo la direzione X. - </notification> - - <notification - - name="HelpCloudScrollY" - > -Controlla la velocità delle nuvole lungo la direzione Y. - </notification> - - <notification - - name="HelpClassicClouds" - > -Seleziona questa casella per consentire la visualizzazione delle nuvole nello stile classico in aggiunta alle nuvole Windlight. - </notification> - - <notification - - name="HelpWaterFogColor" - > -Sceglie il Colore della nebbiosità dell'acqua. - </notification> - - <notification - - name="HelpWaterFogDensity" - > -Controlla la densità della foschia dell'acqua e quanto lontano si può vedere sott'acqua. - </notification> - - <notification - - name="HelpUnderWaterFogMod" - > -Modifica l'effetto dell'Esponente Densità Vapore Acqueo per controllare quanto lontano può vedere il vostro avatar quando è sott'acqua. - </notification> - - <notification - - name="HelpWaterGlow" - > -Controlla la quantità del bagliore dell'acqua. - </notification> - - <notification - - name="HelpWaterNormalScale" - > -Controlla le dimensioni delle tre wavelet che compongono l'acqua. - </notification> - - <notification - - name="HelpWaterFresnelScale" - > -Controlla quanta luce è riflessa ad angoli differenti. - </notification> - - <notification - - name="HelpWaterFresnelOffset" - > -Controlla quanta intensità di luce è riflessa. - </notification> - - <notification - - name="HelpWaterScaleAbove" - > -Controlla quanta luce è rifratta guardando dal di sopra della superficie dell'acqua. - </notification> - - <notification - - name="HelpWaterScaleBelow" - > -Controlla quanta luce è rifratta guardando dal di sotto della superficie dell'acqua. - </notification> - - <notification - - name="HelpWaterBlurMultiplier" - > -Controlla come le onde e le riflessioni vengono miscelate. - </notification> - - <notification - - name="HelpWaterNormalMap" - > -Controlla quale mappa normale è sovraimposta nell'acqua per determinare le riflessioni/rifrazioni. - </notification> - - <notification - - name="HelpWaterWave1" - > -Controlla dove e quanto velocemente la versione ingrandita della mappa normale si muove lungo le direzioni X e Y. - </notification> - - <notification - - name="HelpWaterWave2" - > -Controlla dove e quanto velocemente la versione ridotta della mappa normale si muove lungo le direzioni X e Y. - </notification> - - <notification - - name="NewSkyPreset" - > -Fornisci il nome per il nuovo cielo. - <form name="form"> - <input name="message" type="text"> -Nuova preimpostazione - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="ExistsSkyPresetAlert" - > -La preimpostazione esiste già ! - </notification> - - <notification - - name="NewWaterPreset" - > -Fornisci il nome per la nuova preregolazione del livello dell'acqua. - <form name="form"> - <input name="message" type="text"> -Nuova preimpostazione - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="ExistsWaterPresetAlert" - > -La preimpostazione esiste già ! - </notification> - - <notification - - name="WaterNoEditDefault" - > -Non puoi modificare o cancellare una preimpostazione. - </notification> - - <notification - - name="ChatterBoxSessionStartError" - > -Impossibile iniziare una nuova sessione di chat con [RECIPIENT]. + </notification> + <notification name="HelpCloudDensity"> + Consente di controllare la posizione delle nuvole usando i cursori X e Y e quanto dense siano usando il cursore D. + </notification> + <notification name="HelpCloudCoverage"> + Controlla quanto le nuvole coprono il cielo. + </notification> + <notification name="HelpCloudScale"> + Controlla le dimensioni delle immagini delle nuvole sul cielo stellato. + </notification> + <notification name="HelpCloudScrollX"> + Controlla la velocità delle nuvole lungo la direzione X. + </notification> + <notification name="HelpCloudScrollY"> + Controlla la velocità delle nuvole lungo la direzione Y. + </notification> + <notification name="HelpClassicClouds"> + Seleziona questa casella per consentire la visualizzazione delle nuvole nello stile classico in aggiunta alle nuvole Windlight. + </notification> + <notification name="HelpWaterFogColor"> + Sceglie il Colore della nebbiosità dell'acqua. + </notification> + <notification name="HelpWaterFogDensity"> + Controlla la densità della foschia dell'acqua e quanto lontano si può vedere sott'acqua. + </notification> + <notification name="HelpUnderWaterFogMod"> + Modifica l'effetto dell'Esponente Densità Vapore Acqueo per controllare quanto lontano può vedere il vostro avatar quando è sott'acqua. + </notification> + <notification name="HelpWaterGlow"> + Controlla la quantità del bagliore dell'acqua. + </notification> + <notification name="HelpWaterNormalScale"> + Controlla le dimensioni delle tre wavelet che compongono l'acqua. + </notification> + <notification name="HelpWaterFresnelScale"> + Controlla quanta luce è riflessa ad angoli differenti. + </notification> + <notification name="HelpWaterFresnelOffset"> + Controlla quanta intensità di luce è riflessa. + </notification> + <notification name="HelpWaterScaleAbove"> + Controlla quanta luce è rifratta guardando dal di sopra della superficie dell'acqua. + </notification> + <notification name="HelpWaterScaleBelow"> + Controlla quanta luce è rifratta guardando dal di sotto della superficie dell'acqua. + </notification> + <notification name="HelpWaterBlurMultiplier"> + Controlla come le onde e le riflessioni vengono miscelate. + </notification> + <notification name="HelpWaterNormalMap"> + Controlla quale mappa normale è sovraimposta nell'acqua per determinare le riflessioni/rifrazioni. + </notification> + <notification name="HelpWaterWave1"> + Controlla dove e quanto velocemente la versione ingrandita della mappa normale si muove lungo le direzioni X e Y. + </notification> + <notification name="HelpWaterWave2"> + Controlla dove e quanto velocemente la versione ridotta della mappa normale si muove lungo le direzioni X e Y. + </notification> + <notification name="NewSkyPreset"> + Fornisci il nome per il nuovo cielo. + <form name="form"> + <input name="message" type="text"> + Nuova preimpostazione + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + La preimpostazione esiste già ! + </notification> + <notification name="NewWaterPreset"> + Fornisci il nome per la nuova preregolazione del livello dell'acqua. + <form name="form"> + <input name="message" type="text"> + Nuova preimpostazione + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + La preimpostazione esiste già ! + </notification> + <notification name="WaterNoEditDefault"> + Non puoi modificare o cancellare una preimpostazione. + </notification> + <notification name="ChatterBoxSessionStartError"> + Impossibile iniziare una nuova sessione di chat con [RECIPIENT]. [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ForceCloseChatterBoxSession" - > -La sessione chat con [NAME] deve chiudere. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + La sessione chat con [NAME] deve chiudere. [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="Cannot_Purchase_an_Attachment" - > -Gli elementi non possono essere comprati mentre sono indossati. - </notification> - - <notification - - label="Informazioni sulle richieste per il permesso di addebito" - name="DebitPermissionDetails" - > -Accettare questa richiesta da allo script il permesso continuativo di prendere Linden dollar (L$) dal tuo account. Per revocare questo permesso, il proprietario dell'oggetto deve cancellare l'oggetto oppure reimpostare gli script nell'oggetto. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AutoWearNewClothing" - > -Vuoi indossare automaticamente i vestiti che crei? - <usetemplate - ignoretext="Indossa automaticamente i nuovi vestiti." - name="okcancelignore" - notext="No" - yestext="Si"/> - </notification> - - <notification - - name="NotAgeVerified" - > -La tua età deve essere verificata per poter entrare in questo territorio. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + Gli elementi non possono essere comprati mentre sono indossati. + </notification> + <notification label="Informazioni sulle richieste per il permesso di addebito" name="DebitPermissionDetails"> + Accettare questa richiesta da allo script il permesso continuativo di prendere Linden dollar (L$) dal tuo account. Per revocare questo permesso, il proprietario dell'oggetto deve cancellare l'oggetto oppure reimpostare gli script nell'oggetto. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + Vuoi indossare automaticamente i vestiti che crei? + <usetemplate ignoretext="Indossa automaticamente i nuovi vestiti." name="okcancelignore" notext="No" yestext="Si"/> + </notification> + <notification name="NotAgeVerified"> + La tua età deve essere verificata per poter entrare in questo territorio. Vuoi visitare il sito di Second Life per verificare la tua eta? [_URL] - <url option="0" name="url"> - + <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"/> - </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. + </url> + <usetemplate ignoretext="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. Vuoi visitare il sito di Second Life per impostarle? [_URL] - <url option="0" name="url"> - + <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"/> - </notification> - - <notification - - name="MissingString" - > -La stringa [STRING_NAME] non è presente in strings.xml - </notification> - - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> - - <notification - - name="Cancelled" - > -Annullato - </notification> - - <notification - - name="CancelledSit" - > -Seduta annullata - </notification> - - <notification - - name="CancelledAttach" - > -Attaccamento annullato - </notification> - - <notification - - name="ReplacedMissingWearable" - > -Gli abiti/parti del corpo mancanti sono stati sostituiti con quelli di default . - </notification> - - <notification - - name="GroupNotice" - > -Oggetto: [SUBJECT], Messaggio: [MESSAGE] - </notification> - - <notification - - name="FriendOnline" - > -[FIRST] [LAST] è Online - </notification> - - <notification - - name="FriendOffline" - > -[FIRST] [LAST] è Offline - </notification> - - <notification - - name="AddSelfFriend" - > -Non puoi aggiungere te stesso come amico. - </notification> - - <notification - - name="UploadingAuctionSnapshot" - > -Sto importando le fotografie per l'uso inworld e per il web... + </url> + <usetemplate ignoretext="Avviso per mancanza di informazioni di pagamento registrato" name="okcancelignore" notext="No" yestext="Si"/> + </notification> + <notification name="MissingString"> + La stringa [STRING_NAME] non è presente in strings.xml + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + Annullato + </notification> + <notification name="CancelledSit"> + Seduta annullata + </notification> + <notification name="CancelledAttach"> + Attaccamento annullato + </notification> + <notification name="ReplacedMissingWearable"> + Gli abiti/parti del corpo mancanti sono stati sostituiti con quelli di default . + </notification> + <notification name="GroupNotice"> + Oggetto: [SUBJECT], Messaggio: [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] è Online + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] è Offline + </notification> + <notification name="AddSelfFriend"> + Non puoi aggiungere te stesso come amico. + </notification> + <notification name="UploadingAuctionSnapshot"> + Sto importando le fotografie per l'uso inworld e per il web... (Durata circa 5 minuti.) - </notification> - - <notification - - name="UploadPayment" - > -Hai pagato [AMOUNT]L$ per il caricamento. - </notification> - - <notification - - name="UploadWebSnapshotDone" - > -Il caricamento della fotografia nel sito web è andato a buon fine. - </notification> - - <notification - - name="UploadSnapshotDone" - > -Il caricamento della fotografia inworld è andato a buon fine. - </notification> - - <notification - - name="TerrainDownloaded" - > -Terrain.raw caricato - </notification> - - <notification - - name="GestureMissing" - > -La gesture [NAME] non è stata trovata nel database. - </notification> - - <notification - - name="UnableToLoadGesture" - > -Impossibile caricare la gesture [NAME]. -Riprova. - </notification> - - <notification - - name="LandmarkMissing" - > -Landmark non trovato nel database. - </notification> - - <notification - - name="UnableToLoadLandmark" - > -Impossibile caricare il Landmark di riferimento. Riprova. - </notification> - - <notification - - name="CapsKeyOn" - > -Il tasto BLOC MAIUSC è attivato. -Dato che questo tasto ha effetto su come scrivi la password, forse sarebbe preferibile disattivarlo. - </notification> - - <notification - - name="NotecardMissing" - > -Notecard non trovata nel database. - </notification> - - <notification - - name="NotecardNoPermissions" - > -Permessi insufficienti per visualizzare la notecard. - </notification> - - <notification - - name="RezItemNoPermissions" - > -Permessi insufficienti per creare un oggetto. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Impossibile caricare la notecard. -Riprova. - </notification> - - <notification - - name="ScriptMissing" - > -Script non trovato nel database. - </notification> - - <notification - - name="ScriptNoPermissions" - > -Permessi insufficenti per visualizzare lo script. - </notification> - - <notification - - name="UnableToLoadScript" - > -Impossibile caricare lo script. Riprova. - </notification> - - <notification - - name="IncompleteInventory" - > -Il contenuto che stai offrendo per il momento non è localmente disponibile. Prova a rioffrire gli oggetti fra un minuto. - </notification> - - <notification - - name="CannotModifyProtectedCategories" - > -Non è possibile modificare le categorie protette. - </notification> - - <notification - - name="CannotRemoveProtectedCategories" - > -Non è possibile rimuovere le categorie protette. - </notification> - - <notification - - name="OfferedCard" - > -Hai offerto un biglietto da visita a [FIRST] [LAST] - </notification> - - <notification - - name="UnableToBuyWhileDownloading" - > -Impossibile acquistare l'oggetto durante il download dei dati. -Riprova. - </notification> - - <notification - - name="UnableToLinkWhileDownloading" - > -Impossibile collegare l'oggetto durante il download dei dati. + </notification> + <notification name="UploadPayment"> + Hai pagato [AMOUNT]L$ per il caricamento. + </notification> + <notification name="UploadWebSnapshotDone"> + Il caricamento della fotografia nel sito web è andato a buon fine. + </notification> + <notification name="UploadSnapshotDone"> + Il caricamento della fotografia inworld è andato a buon fine. + </notification> + <notification name="TerrainDownloaded"> + Terrain.raw caricato + </notification> + <notification name="GestureMissing"> + La gesture [NAME] non è stata trovata nel database. + </notification> + <notification name="UnableToLoadGesture"> + Impossibile caricare la gesture [NAME]. Riprova. - </notification> - - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -Non è possibile acquistare oggetti provenienti da diversi proprietari allo stesso tempo. -Seleziona un oggetto singolo per volta. - </notification> - - <notification - - name="ObjectNotForSale" - > -L'oggetto non sembra essere in vendita - </notification> - - <notification - - name="EnteringGodMode" - > -Entra in modalità divina, livello [LEVEL] - </notification> - - <notification - - name="LeavingGodMode" - > -Esci dalla modalità divina, livello [LEVEL] - </notification> - - <notification - - name="CopyFailed" - > -La copia non è riuscita perche non hai il permesso di copiare. - </notification> - - <notification - - name="InventoryAccepted" - > -[NAME] ha accettato la tua offerta dall'inventario. - </notification> - - <notification - - name="InventoryDeclined" - > -[NAME] non ha accettato la tua offerta dall'inventario. - </notification> - - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> - - <notification - - name="CallingCardAccepted" - > -Il tuo biglietto da visita è stato accettato. - </notification> - - <notification - - name="CallingCardDeclined" - > -Il tuo biglietto da visita non è stato accettato. - </notification> - - <notification - - name="TeleportToLandmark" - > -Ora che hai raggiunto la mainland, puoi teleportarti in posti come '[NAME]' cliccando inventario in basso a destra del tuo schermo, e selezionando la cartella dei Landmarks. + </notification> + <notification name="LandmarkMissing"> + Landmark non trovato nel database. + </notification> + <notification name="UnableToLoadLandmark"> + Impossibile caricare il Landmark di riferimento. Riprova. + </notification> + <notification name="CapsKeyOn"> + Il tasto BLOC MAIUSC è attivato. +Dato che questo tasto ha effetto su come scrivi la password, forse sarebbe preferibile disattivarlo. + </notification> + <notification name="NotecardMissing"> + Notecard non trovata nel database. + </notification> + <notification name="NotecardNoPermissions"> + Permessi insufficienti per visualizzare la notecard. + </notification> + <notification name="RezItemNoPermissions"> + Permessi insufficienti per creare un oggetto. + </notification> + <notification name="UnableToLoadNotecard"> + Impossibile caricare la notecard in questo momento. + </notification> + <notification name="ScriptMissing"> + Script non trovato nel database. + </notification> + <notification name="ScriptNoPermissions"> + Permessi insufficenti per visualizzare lo script. + </notification> + <notification name="UnableToLoadScript"> + Impossibile caricare lo script. Riprova. + </notification> + <notification name="IncompleteInventory"> + Il contenuto che stai offrendo per il momento non è localmente disponibile. Prova a rioffrire gli oggetti fra un minuto. + </notification> + <notification name="CannotModifyProtectedCategories"> + Non è possibile modificare le categorie protette. + </notification> + <notification name="CannotRemoveProtectedCategories"> + Non è possibile rimuovere le categorie protette. + </notification> + <notification name="OfferedCard"> + Hai offerto un biglietto da visita a [FIRST] [LAST] + </notification> + <notification name="UnableToBuyWhileDownloading"> + Impossibile acquistare l'oggetto durante il download dei dati. +Riprova. + </notification> + <notification name="UnableToLinkWhileDownloading"> + Impossibile collegare l'oggetto durante il download dei dati. +Riprova. + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + Non è possibile acquistare oggetti provenienti da diversi proprietari allo stesso tempo. +Seleziona un oggetto singolo per volta. + </notification> + <notification name="ObjectNotForSale"> + L'oggetto non sembra essere in vendita + </notification> + <notification name="EnteringGodMode"> + Entra in modalità divina, livello [LEVEL] + </notification> + <notification name="LeavingGodMode"> + Esci dalla modalità divina, livello [LEVEL] + </notification> + <notification name="CopyFailed"> + La copia non è riuscita perche non hai il permesso di copiare. + </notification> + <notification name="InventoryAccepted"> + [NAME] ha accettato la tua offerta dall'inventario. + </notification> + <notification name="InventoryDeclined"> + [NAME] non ha accettato la tua offerta dall'inventario. + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + Il tuo biglietto da visita è stato accettato. + </notification> + <notification name="CallingCardDeclined"> + Il tuo biglietto da visita non è stato accettato. + </notification> + <notification name="TeleportToLandmark"> + Ora che hai raggiunto la mainland, puoi teleportarti in posti come '[NAME]' cliccando inventario in basso a destra del tuo schermo, e selezionando la cartella dei Landmarks. Fai doppio click su un landmark e poi clicca su Teleport per andare là . - </notification> - - <notification - - name="TeleportToPerson" - > -Ora che hai raggiunto la mainland, puoi contattare residenti con '[NAME]' cliccando inventario in basso a destra del tuo schermo, e selezionando la cartella dei biglietti da visita. + </notification> + <notification name="TeleportToPerson"> + Ora che hai raggiunto la mainland, puoi contattare residenti con '[NAME]' cliccando inventario in basso a destra del tuo schermo, e selezionando la cartella dei biglietti da visita. Fai doppio click sul biglietto, clicca su IM messaggio istantaneo, e scrivi il messaggio. - </notification> - - <notification - - name="CantSelectLandFromMultipleRegions" - > -Non è possibile selezionare il terreno attraverso i confini del server. + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + Non è possibile selezionare il terreno attraverso i confini del server. Prova a selezionare una parte di terreno più piccola. - </notification> - - <notification - - name="GroupVote" - > -[NAME] ha proposto di votare su: -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="Vota ora"/> - <button - - name="Later" - text="Successivo"/> - </form> - </notification> - - <notification - - name="SystemMessage" - > + </notification> + <notification name="SearchWordBanned"> + Alcuni termini della ricerca sono stati esclusi a causa delle restrizioni di contenuto come esposto negli Standard della comunità . + </notification> + <notification name="NoContentToSearch"> + Seleziona almeno un tipo di contenuto per la ricerca (PG, Mature, o Adult). + </notification> + <notification name="GroupVote"> + [NAME] ha proposto di votare su: [MESSAGE] - </notification> - - <notification - - name="EventNotification" - > -Notifica eventi: + <form name="form"> + <button name="VoteNow" text="Vota ora"/> + <button name="Later" text="Successivo"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + Notifica eventi: [NAME] [DATE] - <form name="form"> - <button - - name="Teleport" - text="Teleport"/> - <button - - name="Description" - text="Descrizione"/> - <button - - name="Cancel" - text="Cancella"/> - </form> - </notification> - - <notification - - name="TransferObjectsHighlighted" - > -Tutti gli oggetti presenti sul terreno, che saranno trasferiti al compratore di questa terra, saranno ora evidenziati. + <form name="form"> + <button name="Teleport" text="Teleport"/> + <button name="Description" text="Descrizione"/> + <button name="Cancel" text="Cancella"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + Tutti gli oggetti presenti sul terreno, che saranno trasferiti al compratore di questa terra, saranno ora evidenziati. * Gli alberi e l'erba che cederai non saranno evidenziati. - <form name="form"> - <button - - name="Done" - text="Fatto"/> - </form> - </notification> - - <notification - - name="DeactivatedGesturesTrigger" - > -Usa lo stesso tasto per disattivare la gesture: + <form name="form"> + <button name="Done" text="Fatto"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + Usa lo stesso tasto per disattivare la gesture: [NAMES] - </notification> - - <notification - - name="NoQuickTime" - > -Il software Apple QuickTime sembra non essere installato nel tuo sistema. + </notification> + <notification name="NoQuickTime"> + Il software Apple QuickTime sembra non essere installato nel tuo sistema. Se desideri visualizzare il video streaming nei terreni supportati si consiglia di andare sul sito di QuickTime (http://www.apple.com/quicktime) e procedere con l'installazione di QuickTime Player. - </notification> - - <notification - - name="OwnedObjectsReturned" - > -Gli oggetti che possiedi sul terreno selezionato ti sono stati restituiti nell'inventario. - </notification> - - <notification - - name="OtherObjectsReturned" - > -Gli oggetti selezionati sul terreno che è di proprietà di [FIRST] [LAST] sono stati restituiti nel suo inventario. - </notification> - - <notification - - name="OtherObjectsReturned2" - > -Gli oggetti selezionati sul terreno di proprietà del residente '[NAME]' sono stati restituiti al loro proprietario. - </notification> - - <notification - - name="GroupObjectsReturned" - > -Gli oggetti selezionati sul terreno e condivisi con il gruppo [GROUPNAME] sono stati restituiti nell'inventario dei propietari. + </notification> + <notification name="OwnedObjectsReturned"> + Gli oggetti che possiedi sul terreno selezionato ti sono stati restituiti nell'inventario. + </notification> + <notification name="OtherObjectsReturned"> + Gli oggetti selezionati sul terreno che è di proprietà di [FIRST] [LAST] sono stati restituiti nel suo inventario. + </notification> + <notification name="OtherObjectsReturned2"> + Gli oggetti selezionati sul terreno di proprietà del residente '[NAME]' sono stati restituiti al loro proprietario. + </notification> + <notification name="GroupObjectsReturned"> + Gli oggetti selezionati sul terreno e condivisi con il gruppo [GROUPNAME] sono stati restituiti nell'inventario dei propietari. Gli oggetti trasferibili ceduti sono stati restituiti ai proprietari precedenti. Gli oggetti non trasferibili che erano stati ceduti al gruppo sono stati cancellati. - </notification> - - <notification - - name="UnOwnedObjectsReturned" - > -Gli oggetti selezionati sul terreno che non sono di tua proprietà sono stati restituiti ai loro proprietari. - </notification> - - <notification - - name="NotSafe" - > -In questa terra il danno è abilitato ('non sicura'). + </notification> + <notification name="UnOwnedObjectsReturned"> + Gli oggetti selezionati sul terreno che non sono di tua proprietà sono stati restituiti ai loro proprietari. + </notification> + <notification name="NotSafe"> + In questa terra il danno è abilitato ('non sicura'). Puoi farti male qui. Se muori, sarai teleportato a casa. - </notification> - - <notification - - name="NoFly" - > -Questa terra ha il volo disabilitato ('non puoi volare'). + </notification> + <notification name="NoFly"> + Questa terra ha il volo disabilitato ('non puoi volare'). Non è possibile volare qui. - </notification> - - <notification - - name="PushRestricted" - > -Questa terra è 'Senza spinte'. + </notification> + <notification name="PushRestricted"> + Questa terra è 'Senza spinte'. Non si puo spingere gli altri a meno che tu non sia propietario del terreno. - </notification> - - <notification - - name="NoVoice" - > -Questa terra ha il voice disabilitato. - </notification> - - <notification - - name="NoBuild" - > -Questo terreno ha la costruzione disabilitata ('non puoi costruire'). + </notification> + <notification name="NoVoice"> + Questa terra ha il voice disabilitato. + </notification> + <notification name="NoBuild"> + Questo terreno ha la costruzione disabilitata ('non puoi costruire'). Non puoi costruire qui. - </notification> - - <notification - - name="ScriptsStopped" - > -Un amministratore ha temporaneamente disabilitato gli script in questa regione. - </notification> - - <notification - - name="ScriptsNotRunning" - > -In questa terra nessuno script è attivo. - </notification> - - <notification - - name="NoOutsideScripts" - > -Questa land ha script esterni disabilitati. + </notification> + <notification name="ScriptsStopped"> + Un amministratore ha temporaneamente disabilitato gli script in questa regione. + </notification> + <notification name="ScriptsNotRunning"> + In questa terra nessuno script è attivo. + </notification> + <notification name="NoOutsideScripts"> + Questa land ha script esterni disabilitati. ('nessuno script esterno'). Nessuno script esterno funzionerà tranne quelli del propietario del terreno. - </notification> - - <notification - - name="ClaimPublicLand" - > -Puoi solo prendere possesso di terra pubblica nella regione dove sei attualmente. - </notification> - - <notification - - name="ObjectGiveItem" - > -Un oggetto chiamato [OBJECTFROMNAME] di proprietà di [FIRST] [LAST] ti ha dato un [OBJECTTYPE] che si chiama [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Prendi"/> - <button - - name="Discard" - text="Rifiuta"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="ObjectGiveItemUnknownUser" - > -Un oggetto chiamato [OBJECTFROMNAME] di proprietà di (un utente sconosciuto) ti ha dato un [OBJECTTYPE] che si chiama [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Prendi"/> - <button - - name="Discard" - text="Rifiuta"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="UserGiveItem" - > -[NAME] ti ha dato un [OBJECTTYPE] chiamato '[OBJECTNAME]'. - <form name="form"> - <button - - name="Keep" - text="Prendi"/> - <button - - name="Discard" - text="Rifiuta"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="GodMessage" - > -[NAME] + </notification> + <notification name="ClaimPublicLand"> + Puoi solo prendere possesso di terra pubblica nella regione dove sei attualmente. + </notification> + <notification name="RegionTPAccessBlocked"> + Non puoi entrare in quella regione a causa della tua categoria di accesso. Può essere necessario validare l'età e/o installare l'ultima versione del programma. + +Visita la Knowledge Base per informazioni sull'accesso alle aree con queste categorie di accesso. + </notification> + <notification name="URBannedFromRegion"> + Tu hai l'accesso bloccato a questa regione. + </notification> + <notification name="NoTeenGridAccess"> + Il tuo account non può connettersi a questa regione della griglia per Teenager. + </notification> + <notification name="NoHelpIslandTP"> + Non è possibile per te ritornare all'Help Island. +Vai alla 'Help Island Public' per ripetere il tutorial. + </notification> + <notification name="ImproperPaymentStatus"> + Non hai una impostazioni di pagamento corrette per entrare in questa regione. + </notification> + <notification name="MustGetAgeRgion"> + Devi avere un'età verificata per entrare in questa regione. + </notification> + <notification name="MustGetAgeParcel"> + Devi essere di età verificata per entrare in questa terra. + </notification> + <notification name="NoDestRegion"> + Non è stata trovata nessuna regione di destinazione. + </notification> + <notification name="NotAllowedInDest"> + Non hai il permesso di accedere alla regione di destinazione. + </notification> + <notification name="RegionParcelBan"> + Non puoi attraversare la regione passando su un terreno ad accesso interdetto. Prova in un altro modo. + </notification> + <notification name="TelehubRedirect"> + Sei stato rediretto ad un punto di snodo di teletrasporto. + </notification> + <notification name="CouldntTPCloser"> + Non è stato possibile teleportarti più vicino al luogo di destinazione. + </notification> + <notification name="TPCancelled"> + Teletrasporto annullato. + </notification> + <notification name="FullRegionTryAgain"> + La regione in cui stai tentando di accedere è attualmente piena. +Riprova tra qualche istante. + </notification> + <notification name="GeneralFailure"> + Fallimento generale. + </notification> + <notification name="RoutedWrongRegion"> + Sei stato instradato verso la regione sbagliata. Riprova. + </notification> + <notification name="NoValidAgentID"> + Nessun ID valido. + </notification> + <notification name="NoValidSession"> + Nessun ID valido. + </notification> + <notification name="NoValidCircuit"> + Nessun codice circuito valido. + </notification> + <notification name="NoValidTimestamp"> + Nessuna data/timestamp valido. + </notification> + <notification name="NoPendingConnection"> + Impossibile creare la connessione in sospeso. + </notification> + <notification name="InternalUsherError"> + Si è verificato un errore interno durante il tentativo di trasportarti alla destinazione. Potrebbero esserci problemi in Second Life al momento. + </notification> + <notification name="NoGoodTPDestination"> + Impossibile trovare una buona destinazione per il teletrasporto in questa regione. + </notification> + <notification name="InternalErrorRegionResolver"> + Si è verificato un errore interno durante il tentativo di risolvere le coordinate per la richiesta di teletrasporto. Può darsi che ci siano problemi in Second Life al momento. + </notification> + <notification name="NoValidLanding"> + Non è stato trovato un punto di atterraggio valido. + </notification> + <notification name="NoValidParcel"> + Non è stato trovato nessun territorio valido. + </notification> + <notification name="ObjectGiveItem"> + Un oggetto chiamato [OBJECTFROMNAME] di proprietà di [FIRST] [LAST] ti ha dato un [OBJECTTYPE] che si chiama [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Prendi"/> + <button name="Discard" text="Rifiuta"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + Un oggetto chiamato [OBJECTFROMNAME] di proprietà di (un utente sconosciuto) ti ha dato un [OBJECTTYPE] che si chiama [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Prendi"/> + <button name="Discard" text="Rifiuta"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME] ti ha dato un [OBJECTTYPE] chiamato '[OBJECTNAME]'. + <form name="form"> + <button name="Keep" text="Prendi"/> + <button name="Discard" text="Rifiuta"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - </notification> - - <notification - - name="JoinGroup" - > -[MESSAGE] - <form name="form"> - <button - - name="Join" - text="Iscriviti"/> - <button - - name="Decline" - text="Rifiuta"/> - <button - - name="Info" - text="Info"/> - </form> - </notification> - - <notification - - name="TeleportOffered" - > -[NAME] ti ha offerto di teleportarti dove sta ora: - -[MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="Teleport"/> - <button - - name="Cancel" - text="Cancella"/> - </form> - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="Iscriviti"/> + <button name="Decline" text="Rifiuta"/> + <button name="Info" text="Info"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME] ti ha offerto di teleportarti dove sta ora: - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="Teleport"/> + <button name="Cancel" text="Cancella"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="Successivo"/> - <button - - name="GoNow..." - text="Vai ora..."/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME] ti ha offerto la sua amicizia. + <form name="form"> + <button name="Later" text="Successivo"/> + <button name="GoNow..." text="Vai ora..."/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME] ti ha offerto la sua amicizia. [MESSAGE] (Di default, potrete vedervi reciprocamente online.) - <form name="form"> - <button - - name="Accept" - text="Accetta"/> - <button - - name="Decline" - text="Rifiuta"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME] ti ha offerto la sua amicizia. + <form name="form"> + <button name="Accept" text="Accetta"/> + <button name="Decline" text="Rifiuta"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME] ti ha offerto la sua amicizia. (Di default, potrete vedervi reciprocamente online.) - <form name="form"> - <button - - name="Accept" - text="Accetta"/> - <button - - name="Decline" - text="Rifiuta"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -[NAME] ha accettato la tua offerta di amicizia. - </notification> - - <notification - - name="FriendshipDeclined" - > -[NAME] ha rifiutato la tua offerta di amicizia. - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST] ti ha offerto il suo biglietto da visita. + <form name="form"> + <button name="Accept" text="Accetta"/> + <button name="Decline" text="Rifiuta"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + [NAME] ha accettato la tua offerta di amicizia. + </notification> + <notification name="FriendshipDeclined"> + [NAME] ha rifiutato la tua offerta di amicizia. + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST] ti ha offerto il suo biglietto da visita. Questo aggiungerà un segnalibro nel tuo inventario. in modo da poter rapidamente inviargli un IM al residente. - <form name="form"> - <button - - name="Accept" - text="Accetta"/> - <button - - name="Decline" - text="Rifiuta"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -Il riavvio della regione avverrà tra [MINUTES] minuti. + <form name="form"> + <button name="Accept" text="Accetta"/> + <button name="Decline" text="Rifiuta"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + Il riavvio della regione avverrà tra [MINUTES] minuti. Se rimani in questa regione sarai disconnesso. - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -Il riavvio della regione avverrà tra [SECONDS] secondi. + </notification> + <notification name="RegionRestartSeconds"> + Il riavvio della regione avverrà tra [SECONDS] secondi. Se rimani in questa regione sarai disconnesso. - </notification> - - <notification - - name="LoadWebPage" - > -Caricare pagina web [URL]? + </notification> + <notification name="LoadWebPage"> + Caricare pagina web [URL]? [MESSAGE] Dall'oggetto: [OBJECTNAME], di: [NAME]? - <form name="form"> - <button - - name="Gotopage" - text="Vai alla pagina"/> - <button - - name="Cancel" - text="Annulla"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -Impossibile trovare [TYPE] nel database. - </notification> - - <notification - - name="FailedToFindWearable" - > -Impossibile trovare [TYPE] chiamato [DESC] nel database. - </notification> - - <notification - - name="ScriptQuestion" - > -'[OBJECTNAME]', un oggetto di proprietà di '[NAME]', vorrebbe: + <form name="form"> + <button name="Gotopage" text="Caricare"/> + <button name="Cancel" text="Annulla"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + Impossibile trovare [TYPE] nel database. + </notification> + <notification name="FailedToFindWearable"> + Impossibile trovare [TYPE] chiamato [DESC] nel database. + </notification> + <notification name="InvalidWearable"> + L'oggetto che si sta tentando di indossare utilizza una funzione che il programma non riesce a leggere. Aggiorna la tua versione di Second Life per riuscire a indossare l'oggetto. + </notification> + <notification name="ScriptQuestion"> + '[OBJECTNAME]', un oggetto di proprietà di '[NAME]', vorrebbe: [QUESTIONS] Va bene? - <form name="form"> - <button - - name="Yes" - text="Si"/> - <button - - name="No" - text="No"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -'[OBJECTNAME]', un oggetto di proprietà di '[NAME]', vorrebbe: + <form name="form"> + <button name="Yes" text="Si"/> + <button name="No" text="No"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + '[OBJECTNAME]', un oggetto di proprietà di '[NAME]', vorrebbe: [QUESTIONS] Se non ci si fida dell'oggetto e del suo creatore, si dovrebbe negare la richiesta. Per ulteriori informazioni, fai clic sul pulsante 'Dettagli'. Accettare tale richiesta? - <form name="form"> - <button - - name="Grant" - text="Accetta"/> - <button - - name="Deny" - text="Nega"/> - <button - - name="Details" - text="Dettagli..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -[FIRST] [LAST] '[TITLE]' + <form name="form"> + <button name="Grant" text="Accetta"/> + <button name="Deny" text="Nega"/> + <button name="Details" text="Dettagli..."/> + </form> + </notification> + <notification name="ScriptDialog"> + [FIRST] [LAST] '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignora"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -[GROUPNAME] '[TITLE]' + <form name="form"> + <button name="Ignore" text="Ignora"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + [GROUPNAME] '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignora"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -Hai appena ricevuto [AMOUNT]L$. + <form name="form"> + <button name="Ignore" text="Ignora"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + Hai appena ricevuto [AMOUNT]L$. Gli oggetti e gli altri utenti possono darti L$. Il tuo saldo è indicato nell'angolo in alto a destra dello schermo. - </notification> - - <notification - - name="FirstBalanceDecrease" - > -Hai appena pagato [AMOUNT]L$. + </notification> + <notification name="FirstBalanceDecrease"> + Hai appena pagato [AMOUNT]L$. Il tuo saldo è indicato nell'angolo in alto a destra dello schermo. - </notification> - - <notification - - name="FirstSit" - > -Sei seduto. + </notification> + <notification name="FirstSit"> + Sei seduto. Utilizza i tasti freccia (o AWSD) per cambiare visualizzazione. Fai clic sul pulsante 'Alzati' per rialzarti. - </notification> - - <notification - - name="FirstMap" - > -Fai clic e trascina per scorrere la mappa. + </notification> + <notification name="FirstMap"> + Fai clic e trascina per scorrere la mappa. Doppio click per teleportarti. Utilizza i controlli sulla destra per trovare le cose e visualizzare sfondi differenti. - </notification> - - <notification - - name="FirstBuild" - > -È possibile creare nuovi oggetti in alcune zone di [SECOND_LIFE]. + </notification> + <notification name="FirstBuild"> + È possibile creare nuovi oggetti in alcune zone di [SECOND_LIFE]. Utilizza gli strumenti in alto a sinistra per costruire, e prova a tenere premuto Ctrl o Alt per passare rapidamente tra uno strumento e l'altro. Premi Esc per smettere di costruire. - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -Cliccare con il tasto sinistro fa interagire con particolari oggetti. + </notification> + <notification name="FirstLeftClickNoHit"> + Cliccare con il tasto sinistro fa interagire con particolari oggetti. Se il puntatore del mouse si trasforma in una mano, puoi interagire con l'oggetto. Se fai clic col tasto destro ti verranno sempre mostrati menù con le cose che puoi fare. - </notification> - - <notification - - name="FirstTeleport" - > -Questa regione non permette i teleport da punto a punto, cosi sei stato teletrasportato nel punto più vicino. + </notification> + <notification name="FirstTeleport"> + Questa regione non permette i teleport da punto a punto, cosi sei stato teletrasportato nel punto più vicino. La tua destinazione originale è comunque segnata da un segnale luminoso. Segui la freccia rossa per arrivare a destinazione, o fai clic sulla freccia per spegnerla. - </notification> - - <notification - - name="FirstOverrideKeys" - > -I tuoi movimenti della tastiera vengono ora gestiti da un oggetto. + </notification> + <notification name="FirstOverrideKeys"> + I tuoi movimenti della tastiera vengono ora gestiti da un oggetto. Prova i tasti freccia o AWSD per vedere quello che fanno. Alcuni oggetti (come pistole) richiedono di andare in mouselook per il loro utilizzo. Premi 'M' per farlo. - </notification> - - <notification - - name="FirstAppearance" - > -Stai modificando il tuo aspetto. + </notification> + <notification name="FirstAppearance"> + Stai modificando il tuo aspetto. Per ruotare e fare uno zoom, utilizza le frecce della tastiera. Quando hai finito, premi 'Salva tutto' per salvare il tuo look e uscire. Puoi modificare il tuo aspetto ogni qualvolta vuoi. - </notification> - - <notification - - name="FirstInventory" - > -Questo è il tuo inventario, che contiene gli oggetti, notecard, abbigliamento, e altre cose che possiedi. + </notification> + <notification name="FirstInventory"> + Questo è il tuo inventario, che contiene gli oggetti, notecard, abbigliamento, e altre cose che possiedi. * Per indossare un oggetto o un outfit completo contenuto in una cartella, trascinali su te stesso. * Per ricreare un oggetto inworld, trascinalo sul terreno. * Per leggere una notecard, fai doppio clic su di essa. - </notification> - - <notification - - name="FirstSandbox" - > -Questa è una regione sandbox. + </notification> + <notification name="FirstSandbox"> + Questa è una regione sandbox. Gli oggetti che costruisci qui, potrebbero essere cancellati dopo che lasci questa area, dato che le sandbox si autopuliscono regolarmente. Leggi le informazioni scritte al riguardo, vicino al nome della regione in alto sullo schermo. Le regioni sandbox sono rare, e sono contrassegnate da segnali. - </notification> - - <notification - - name="FirstFlexible" - > -Questo oggetto è flessibile. + </notification> + <notification name="FirstFlexible"> + Questo oggetto è flessibile. Gli oggetti flessibili non possono essere fisici e devano essere fantasma fino a quando la casella di controllo della flessibilità verrà deselezionata. - </notification> - - <notification - - name="FirstDebugMenus" - > -Hai attivato il menu Avanzato. + </notification> + <notification name="FirstDebugMenus"> + Hai attivato il menu Avanzato. Questo menu contiene funzioni utili per gli sviluppatori per il debug di Second Life. Per attivare o disattivare questo menu su Windows premere Ctrl-Alt-D. Su Mac premere Cmd-Opt-Shift-D. - </notification> - - <notification - - name="FirstSculptedPrim" - > -Si sta modificando uno sculpted prim. + </notification> + <notification name="FirstSculptedPrim"> + Si sta modificando uno sculpted prim. Gli sculpted prim richiedono una speciale texture che ne specifichi la forma. Puoi trovare esempi di texture sculpted nella libreria dell'inventario. - </notification> - - <notification - - name="FirstMedia" - > -Hai iniziato la riproduzione dei media. I media possono essere impostati per essere riprodotti automaticamente nella finestra delle Preferenze sotto la voce Audio / Video. Questo può essere un rischio di sicurezza da media che non sono affidabili. - </notification> - - <notification - - name="MaxListSelectMessage" - > -È possibile selezionare solo fino a [MAX_SELECT] oggetti da questa lista. - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME] ti ha invitato a una chiamata Voice. + </notification> + <notification name="FirstMedia"> + Hai iniziato la riproduzione dei media. I media possono essere impostati per essere riprodotti automaticamente nella finestra delle Preferenze sotto la voce Audio / Video. Questo può essere un rischio di sicurezza da media che non sono affidabili. + </notification> + <notification name="MaxListSelectMessage"> + È possibile selezionare solo fino a [MAX_SELECT] oggetti da questa lista. + </notification> + <notification name="VoiceInviteP2P"> + [NAME] ti ha invitato a una chiamata Voice. Fai clic su Accetta per partecipare alla chiamata o su Rifiuta per rifiutare l'invito. fai clic sul pulsante Muta per mutare il chiamante. - <form name="form"> - <button - - name="Accept" - text="Accetta"/> - <button - - name="Decline" - text="Rifiuta"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -A [FIRST] [LAST] e' stato mandato un messaggio instantaneo ed è stato quindi automaticamente non mutato. - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -A [FIRST] [LAST] è stato dato del denaro ed è stato automaticamente non mutato. - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -A [FIRST] [LAST] é stato passato qualcosa dall'inventario ed è stato automaticamente non mutato. - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME] ha iniziato una chiamata Voice-Chat con il gruppo [GROUP]. + <form name="form"> + <button name="Accept" text="Accetta"/> + <button name="Decline" text="Rifiuta"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + A [FIRST] [LAST] e' stato mandato un messaggio instantaneo ed è stato quindi automaticamente non mutato. + </notification> + <notification name="AutoUnmuteByMoney"> + A [FIRST] [LAST] è stato dato del denaro ed è stato automaticamente non mutato. + </notification> + <notification name="AutoUnmuteByInventory"> + A [FIRST] [LAST] é stato passato qualcosa dall'inventario ed è stato automaticamente non mutato. + </notification> + <notification name="VoiceInviteGroup"> + [NAME] ha iniziato una chiamata Voice-Chat con il gruppo [GROUP]. Fai clic su Accetta per partecipare alla chiamata o Rifiuta per Rifiutare l'invito. Fai clic sul pulsante muta per mutare il chiamante. - <form name="form"> - <button - - name="Accept" - text="Accetta"/> - <button - - name="Decline" - text="Rifiuta"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME] ha iniziato una chiamata Voice Chat mediante una conferenza chat.. + <form name="form"> + <button name="Accept" text="Accetta"/> + <button name="Decline" text="Rifiuta"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME] ha iniziato una chiamata Voice Chat mediante una conferenza chat.. Fai clic su Accetta per partecipare alla chiamata o Rifiuta per Rifiutare l'invito. Fai clic sul pulsante muta per mutare il chiamante. - <form name="form"> - <button - - name="Accept" - text="Accetta"/> - <button - - name="Decline" - text="Rifiuta"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME] ti ha invitato ad una conferenza chat. + <form name="form"> + <button name="Accept" text="Accetta"/> + <button name="Decline" text="Rifiuta"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME] ti ha invitato ad una conferenza chat. Fai clic su Accetta per partecipare alla chiamata o su Rifiuta per rifiutare l'invito. Fai clic sul pulsante muta per mutare il chiamante. - <form name="form"> - <button - - name="Accept" - text="Accetta"/> - <button - - name="Decline" - text="Rifiuta"/> - <button - - name="Mute" - text="Muta"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -La chiamata vocale a cui si sta cercando di unirsi, [VOICE_CHANNEL_NAME], ha raggiunto la capacità massima. Si prega di riprovare più tardi. - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -Siamo spiacenti. Questa area ha raggiunto la capacità massima per le chiamate voice. Si prega di provare ad usare il voice in un'altra area. - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -Sei stato disconnesso da [VOICE_CHANNEL_NAME]. Ora verrai riconnesso al canale voice chat pubblico. - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME] ha chiuso la chiamata. Ora verrai riconnesso al canale voice chat pubblico. - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME] ha rifiutato la tua chiamata. Ora verrai riconnesso al canale voice chat pubblico. - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME] non è disponibile per rispondere alla chiamata. Ora verrai riconnesso al canale voice chat pubblico. - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -Impossibile connettersi con [VOICE_CHANNEL_NAME], si prega di riprovare più tardi. Ora verrai riconnesso al canale voice chat pubblico. - </notification> - - <notification - - name="VoiceLoginRetry" - > -Stiamo creando una canale voice per te. Questo può richiedere fino a un minuto. - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -Non puoi entrare nel terreno, non sei un membro del gruppo appropriato. - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -Non puoi entrare nel terreno, sei stato bloccato. - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -Non puoi entrare nel terreno, non fai parte della lista di accesso. - </notification> - - <notification - - name="VoiceNotAllowed" - > -Non hai il permesso di collegarti ad una voice chat con [VOICE_CHANNEL_NAME]. - </notification> - - <notification - - name="VoiceCallGenericError" - > -Si è verificato un errore durante il tentativo di collegarti a una voice chat con [VOICE_CHANNEL_NAME]. Riprova più tardi. - </notification> - - <notification - - name="ServerVersionChanged" - > -La regione in cui sei entrato, gira su una versione di simulatore differente. Fai clic su questo messaggio per i dettagli. - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -L'URL che hai selezionato non può essere aperto da questo browser. - </notification> - - <global name="UnsupportedCPU"> -- La velocità della tua CPU non soddisfa i requisiti minimi. - </global> - - <global name="UnsupportedGLRequirements"> -Sembra che tu non abbia i requisiti appropriati hardware per Second Life. Second Life ha bisogno di una scheda grafica OpenGL che abbia il supporto multitexture. Se ritieni di avere l'hardware giusto verifica di avere installati i driver più aggiornati per la tua scheda grafica e gli aggiornamenti e service pack appropriati per il tuo sistema operativo. + <form name="form"> + <button name="Accept" text="Accetta"/> + <button name="Decline" text="Rifiuta"/> + <button name="Mute" text="Muta"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + La chiamata vocale a cui si sta cercando di unirsi, [VOICE_CHANNEL_NAME], ha raggiunto la capacità massima. Si prega di riprovare più tardi. + </notification> + <notification name="ProximalVoiceChannelFull"> + Siamo spiacenti. Questa area ha raggiunto la capacità massima per le chiamate voice. Si prega di provare ad usare il voice in un'altra area. + </notification> + <notification name="VoiceChannelDisconnected"> + Sei stato disconnesso da [VOICE_CHANNEL_NAME]. Ora verrai riconnesso al canale voice chat pubblico. + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME] ha chiuso la chiamata. Ora verrai riconnesso al canale voice chat pubblico. + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME] ha rifiutato la tua chiamata. Ora verrai riconnesso al canale voice chat pubblico. + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME] non è disponibile per rispondere alla chiamata. Ora verrai riconnesso al canale voice chat pubblico. + </notification> + <notification name="VoiceChannelJoinFailed"> + Impossibile connettersi con [VOICE_CHANNEL_NAME], si prega di riprovare più tardi. Ora verrai riconnesso al canale voice chat pubblico. + </notification> + <notification name="VoiceLoginRetry"> + Stiamo creando una canale voice per te. Questo può richiedere fino a un minuto. + </notification> + <notification name="Cannot enter parcel: not a group member"> + Non puoi entrare nel terreno, non sei un membro del gruppo appropriato. + </notification> + <notification name="Cannot enter parcel: banned"> + Non puoi entrare nel terreno, sei stato bloccato. + </notification> + <notification name="Cannot enter parcel: not on access list"> + Non puoi entrare nel terreno, non fai parte della lista di accesso. + </notification> + <notification name="VoiceNotAllowed"> + Non hai il permesso di collegarti ad una voice chat con [VOICE_CHANNEL_NAME]. + </notification> + <notification name="VoiceCallGenericError"> + Si è verificato un errore durante il tentativo di collegarti a una voice chat con [VOICE_CHANNEL_NAME]. Riprova più tardi. + </notification> + <notification name="ServerVersionChanged"> + La regione in cui sei entrato, gira su una versione di simulatore differente. Fai clic su questo messaggio per i dettagli. + </notification> + <notification name="UnableToOpenCommandURL"> + L'URL che hai selezionato non può essere aperto da questo browser. + </notification> + <global name="UnsupportedCPU"> + - La velocità della tua CPU non soddisfa i requisiti minimi. + </global> + <global name="UnsupportedGLRequirements"> + Sembra che tu non abbia i requisiti appropriati hardware per Second Life. Second Life ha bisogno di una scheda grafica OpenGL che abbia il supporto multitexture. Se ritieni di avere l'hardware giusto verifica di avere installati i driver più aggiornati per la tua scheda grafica e gli aggiornamenti e service pack appropriati per il tuo sistema operativo. Se continui ad avere problemi, visita il sito: http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- La tua scheda grafica non soddisfa i requisiti minimi. - </global> - - <global name="UnsupportedRAM"> -- La memoria del tuo sistema non soddisfa i requisiti minimi. - </global> - - <global name="PermYes"> -Si - </global> - - <global name="PermNo"> -No - </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - La tua scheda grafica non soddisfa i requisiti minimi. + </global> + <global name="UnsupportedRAM"> + - La memoria del tuo sistema non soddisfa i requisiti minimi. + </global> + <global name="PermYes"> + Si + </global> + <global name="PermNo"> + No + </global> </notifications> - diff --git a/indra/newview/skins/default/xui/it/panel_group_general.xml b/indra/newview/skins/default/xui/it/panel_group_general.xml index dc72a5fb516dfd24a89a5a6bd7f766c07f1f16ba..cc044a2e560a512665b77b93a63845d42ee1773c 100644 --- a/indra/newview/skins/default/xui/it/panel_group_general.xml +++ b/indra/newview/skins/default/xui/it/panel_group_general.xml @@ -49,7 +49,17 @@ Passa il mouse sulle opzioni per un aiuto aggiuntivo. <check_box label="Iscrizione libera" name="open_enrollement" tool_tip="Imposta se questo gruppo permette ai nuovi membri di unirsi senza essere invitati."/> <check_box label="Tassa di iscrizione: L$" name="check_enrollment_fee" tool_tip="Imposta se richiedere una tassa di iscrizione per unirsi al gruppo."/> <spinner name="spin_enrollment_fee" tool_tip="I nuovi membri devono pagare questa tassa per unirsi al gruppo. La tassa di iscrizione è selezionata."/> - + <combo_box name="group_mature_check" tool_tip="Imposta se le informazioni sul tuo gruppo sono da considerarsi Mature."> + <combo_item name="select_mature"> + - Seleziona - + </combo_item> + <combo_item name="mature"> + Contenuto Mature + </combo_item> + <combo_item name="pg"> + Contenuto PG + </combo_item> + </combo_box> <panel name="title_container"> <text name="active_title_label"> Il mio titolo attivo diff --git a/indra/newview/skins/default/xui/it/panel_group_invite.xml b/indra/newview/skins/default/xui/it/panel_group_invite.xml index 0640161e24269a5a9bf1794b955cafabedd09c9f..d75b3a46e8f01bdd6d5a3642fffd04f1b53c25ad 100644 --- a/indra/newview/skins/default/xui/it/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/it/panel_group_invite.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Invita una persona" name="invite_panel"> <text name="help_text"> - Puoi selezionare residenti multipli -da invitare nel tuo gruppo. Clicca 'Apri seleziona persone' -per iniziare. + Puoi selezionare più di un residente +da invitare nel tuo gruppo. Clicca su 'Scelta +residenti' per iniziare. </text> - <button label="Apri seleziona persone" name="add_button" tool_tip=""/> + <button label="Scelta residenti" name="add_button" tool_tip=""/> <name_list name="invitee_list" tool_tip="Tieni premuto il tasto ctrl e clicca i nomi dei residenti per avere una selezione multipla."/> <button label="Rimuovi i selezionati dall'elenco" name="remove_button" tool_tip="Rimuove i residenti qui sopra selezionati, dall'elenco degli inviti."/> <text name="role_text"> diff --git a/indra/newview/skins/default/xui/it/panel_group_land_money.xml b/indra/newview/skins/default/xui/it/panel_group_land_money.xml index 45c6a3574cd40095cd80b2759006515365c6704c..907ce8ea5afc1cca06702fc54e6e6481c1a14c5d 100644 --- a/indra/newview/skins/default/xui/it/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/it/panel_group_land_money.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Terra & L$" name="land_money_tab"> <string name="help_text"> - Porzioni di terreno posseduti dal gruppo sono elencati insieme ai dettagli dei contributi. Un avvertimento sarà visualizzato finchè la terra totale in uso è minore o uguale al totale delle contribuzioni. Le pagine 'Dettagli' e 'Vendite' forniscono informazioni riguardanti lo stato finanziario del gruppo. + I terreni di proprietà del gruppo sono elencati insieme ai dettagli delle contribuzioni. Un avviso viene visualizzato se la superficie totale in uso è inferiore o pari al totale delle contribuzioni. Le schede: Pianificazione, Dettagli e Vendite forniscono informazioni sulle finanze del gruppo. </string> <button label="?" name="help_button"/> <string name="cant_view_group_land_text"> @@ -19,6 +19,7 @@ <scroll_list name="group_parcel_list"> <column label="Nome dell'appezzamento" name="name"/> <column label="Regione" name="location"/> + <column label="Tipo" name="type"/> <column label="Area" name="area"/> </scroll_list> <button label="Mostra sulla mappa" label_selected="Mostra sulla mappa" name="map_button"/> @@ -56,6 +57,11 @@ L$ del gruppo </text> <tab_container name="group_money_tab_container"> + <panel label="Pianificazione" name="group_money_planning_tab"> + <text_editor name="group_money_planning_text"> + Conteggio... + </text_editor> + </panel> <panel label="Dettagli" name="group_money_details_tab"> <text_editor name="group_money_details_text"> Calcolo... diff --git a/indra/newview/skins/default/xui/it/panel_group_roles.xml b/indra/newview/skins/default/xui/it/panel_group_roles.xml index 42e12febd323acd1ebc021a329ad99243958eb0e..2629b91db5dd14aa93810c12755f94552ab766dd 100644 --- a/indra/newview/skins/default/xui/it/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/it/panel_group_roles.xml @@ -51,7 +51,7 @@ eseguire tali abilità . <column label="Contributo donato" name="donated"/> <column label="Ultimo accesso" name="online"/> </name_list> - <button label="Invitare una nuova persona..." name="member_invite"/> + <button label="Invita un nuovo membro ..." name="member_invite"/> <button label="Espellere dal gruppo" name="member_eject"/> <string name="help_text"> Puoi aggiungere o rimuovere i ruoli assegnati ai membri. diff --git a/indra/newview/skins/default/xui/it/panel_login.xml b/indra/newview/skins/default/xui/it/panel_login.xml index cd13b5339586a6eec90f0b880a9412875af7e8a0..acd047d75dff14301fbbe59e95dce68452d36e3b 100644 --- a/indra/newview/skins/default/xui/it/panel_login.xml +++ b/indra/newview/skins/default/xui/it/panel_login.xml @@ -6,35 +6,37 @@ <string name="forgot_password_url"> http://secondlife.com/account/request.php </string> - <text name="first_name_text"> + <text name="first_name_text" left="20"> Nome: </text> - <text name="last_name_text"> + <line_editor left="20" name="first_name_edit" width="126" /> + <text name="last_name_text" left="158"> Cognome: </text> + <line_editor left="158" name="last_name_edit" width="126" /> <text name="password_text"> Password: </text> - <text name="start_location_text"> - Luogo di partenza: + <text name="start_location_text" left="20" width="105"> + Punto di partenza: </text> - <combo_box name="start_location_combo"> + <combo_box name="start_location_combo" left_delta="105" width="160"> <combo_item name="MyHome"> Casa Mia </combo_item> <combo_item name="MyLastLocation"> - Ultimo luogo dove sono stato + Ultimo luogo visitato </combo_item> <combo_item name="Typeregionname"> - <Scrivi la regione di partenza> + <Scrivi la regione> </combo_item> </combo_box> - <check_box label="Ricorda password" name="remember_check"/> + <check_box label="Ricorda password" name="remember_check" left_delta="168"/> <button label="Log In" label_selected="Log In" name="connect_btn"/> <text name="create_new_account_text"> Registra un account </text> - <text name="forgot_password_text"> + <text name="forgot_password_text" left="-240" width="230"> Hai dimenticato il tuo nome o la password? </text> <text name="channel_text"> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_chat.xml b/indra/newview/skins/default/xui/it/panel_preferences_chat.xml index 3d2780a270e6cacb3efbf1a104cef256a1c46e8a..fd20b11c02cea373097a8edfc3e61cece7bc2414 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_chat.xml @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Text Chat" name="chat"> <text name="text_box"> - Grandezza carattere chat: + Grandezza carattere +chat: </text> <radio_group name="chat_font_size"> <radio_item name="radio"> diff --git a/indra/newview/skins/default/xui/it/panel_preferences_general.xml b/indra/newview/skins/default/xui/it/panel_preferences_general.xml index 6977a1484eee9455d408d89d414d17d074052a57..aadd86d0556399cab8b1b7075e81903d0a2831e1 100644 --- a/indra/newview/skins/default/xui/it/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/it/panel_preferences_general.xml @@ -8,7 +8,7 @@ Ultimo posto visitato </radio_item> </radio_group> - <check_box label="Mostra il posto di partenza sulla schermata d'inizio" name="show_location_checkbox"/> + <check_box label="Mostra il punto di partenza nella schermata d'inizio" name="show_location_checkbox"/> <combo_box name="fade_out_combobox" width="166"> <combo_item name="Never"> Mai @@ -33,12 +33,30 @@ </text> <check_box label="Usa ridimensionamento indipendente dalla risoluzione" name="ui_auto_scale"/> <spinner label="Assente dopo:" name="afk_timeout_spinner"/> - <check_box label="Ruota la Mini-Mappa" name="rotate_mini_map_checkbox"/> <check_box label="Avvisami quando spendo o ricevo Linden Dollars (L$)" name="notify_money_change_checkbox"/> - <check_box label="Usa la tavolozza di scelta colori di default del sistema" name="use_system_color_picker_checkbox" tool_tip="Usa la tavolozza di scelta colori di default del sistema, invece di quella integrata in Second Life."/> - <check_box label="Mostra il pannello di ricerca nella barra" name="show_search_panel" tool_tip="Visualizza il pannello di ricerca integrato."/> + <text name="maturity_desired_label" bottom="-312"> + Categoria di accesso: + </text> + <text name="maturity_desired_prompt" bottom="-312"> + Voglio accedere al +contenuto di tipo: + </text> + <combo_box name="maturity_desired_combobox" bottom="-330" left="274"> + <combo_item name="Desired_Adult"> + PG, Mature e Adult + </combo_item> + <combo_item name="Desired_Mature"> + PG e Mature + </combo_item> + <combo_item name="Desired_PG"> + solo PG + </combo_item> + </combo_box> + <text name="maturity_desired_textbox" bottom="-324" left="274"> + solo PG + </text> <text name="start_location_textbox"> - Punto di inizio: + Punto di partenza: </text> <text name="show_names_textbox"> Mostra Nomi: @@ -55,8 +73,8 @@ <text name="language_textbox"> Lingua: </text> - <text name="language_textbox2" left_delta="313"> - (Richiede restart) + <text left_delta="313" name="language_textbox2"> + (Richiede il riavvio) </text> <string name="region_name_prompt"> <Scrivi il nome della regione> @@ -91,15 +109,30 @@ <combo_item name="French"> Français (Francese) - Beta </combo_item> + <combo_item name="Italian"> + Italiano - Beta + </combo_item> <combo_item name="Hungarian"> Magyar (Ungherese) - Beta </combo_item> + <combo_item name="Dutch"> + Nederlands (Olandese) - Beta + </combo_item> <combo_item name="Polish"> Polski (Polacco) - Beta </combo_item> <combo_item name="Portugese"> Portugués (Portoghese) - Beta </combo_item> + <combo_item name="Russian"> + РуÑÑкий (Russo) - Beta + </combo_item> + <combo_item name="Turkish"> + Türkçe (Turco) - Beta + </combo_item> + <combo_item name="Ukrainian"> + УкраїнÑька (Ukraino) - Beta + </combo_item> <combo_item name="Chinese"> ä¸æ–‡ (简体) (Cinese) - Beta </combo_item> diff --git a/indra/newview/skins/default/xui/it/panel_region_covenant.xml b/indra/newview/skins/default/xui/it/panel_region_covenant.xml index c785415c9c3118356b23baa238cbf600938b6ccb..802156ea0bc62d872da51fb6b773bed084ec392f 100644 --- a/indra/newview/skins/default/xui/it/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/it/panel_region_covenant.xml @@ -1,39 +1,70 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Regolamento" name="Covenant"> - <text name="covenant_help_text"> - Le modifiche alle informazioni del regolamento saranno esposte in tutti i terreni della proprietà immobiliare. - </text> - <text name="region_name_lbl"> - Regione: - </text> - <text name="region_name_text"> - (sconosciuta) + <text name="estate_section_lbl"> + Proprietà : </text> <text name="estate_name_lbl"> - Proprietà immobiliare: + Nome: </text> <text name="estate_name_text"> - (sconosciuta) + mainland </text> <text name="estate_owner_lbl"> - Proprietario immobiliare: + Proprietario: </text> <text name="estate_owner_text"> - (sconosciuto) + (nessuno) </text> - <text name="resellable_clause"> - Un terreno acquistato in questa regione può o non può essere rivenduto. + <text name="estate_cov_lbl"> + Regolamento: </text> - <text name="changeable_clause"> - Un terreno acquistato in questa regione può o non può essere unito o suddiviso. - </text> - <text name="covenent_instructions"> - Trascina e rilascia una notecard per cambiare il Regolamento di questa Proprietà Immobiliare. + <text name="covenant_timestamp_text"> + Ultima modifica Merc 31 Dic 1969 16:00:00 </text> + <button label="?" name="covenant_help"/> <text_editor name="covenant_editor"> - In caricamento... + Per questa proprietà non è stato emesso alcun regolamento. </text_editor> <button label="Ripristina" name="reset_covenant"/> + <text name="covenant_help_text"> + Le modifiche nel regolamento saranno visibili su tutti i terreni della proprietà . + </text> + <text name="covenant_instructions"> + Trascina e rilascia una notecard per cambiare il regolamento di questa proprietà . + </text> + <text name="region_section_lbl"> + Regione: + </text> + <text name="region_name_lbl"> + Nome: + </text> + <text name="region_name_text"> + leyla + </text> + <text name="region_landtype_lbl"> + Tipo: + </text> + <text name="region_landtype_text"> + Mainland / Homestead + </text> + <text name="region_maturity_lbl"> + Categoria di accesso: + </text> + <text name="region_maturity_text"> + Adult + </text> + <text name="resellable_lbl"> + Rivendita: + </text> + <text name="resellable_clause"> + La terra in questa regione non può essere rivenduta. + </text> + <text name="changeable_lbl"> + Suddividi: + </text> + <text name="changeable_clause"> + La terra in questa regione non può essere unita/suddivisa. + </text> <string name="can_resell"> Un terreno acquistato in questa regione può essere rivenduto. </string> @@ -46,5 +77,4 @@ <string name="can_not_change"> Un terreno acquistato in questa regione non può essere unito o suddiviso. </string> - <button label="?" name="covenant_help"/> </panel> diff --git a/indra/newview/skins/default/xui/it/panel_region_general.xml b/indra/newview/skins/default/xui/it/panel_region_general.xml index 3fc001fda2b7bc90e24ad19d308427e051288246..fffe51770e3d56fac6f6e33ba79e7bf354cf5877 100644 --- a/indra/newview/skins/default/xui/it/panel_region_general.xml +++ b/indra/newview/skins/default/xui/it/panel_region_general.xml @@ -12,6 +12,12 @@ <text name="version_channel_text"> sconosciuta </text> + <text name="region_type_lbl"> + Tipo: + </text> + <text name="region_type"> + sconosciuto + </text> <check_box label="Proibisci la modifica del terreno" name="block_terraform_check"/> <button label="?" name="terraform_help"/> <check_box label="Impedisci il volo" name="block_fly_check"/> @@ -31,9 +37,19 @@ <spinner label="Bonus di oggetti" name="object_bonus_spin"/> <button label="?" name="object_bonus_help"/> <text label="Maturità " name="access_text"> - Maturità : + Categoria di accesso: </text> - + <combo_box label="Mature" name="access_combo"> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Mature"> + Mature + </combo_item> + <combo_item name="PG"> + PG + </combo_item> + </combo_box> <button label="?" name="access_help"/> <button label="Applica" name="apply_btn"/> <button label="Teletrasporta a casa un utente..." name="kick_btn"/> diff --git a/indra/newview/skins/default/xui/it/strings.xml b/indra/newview/skins/default/xui/it/strings.xml index 0fc22df3ec6257990aaf1d232c4532360834a214..d7884cfbdbba6f1176dd6c2ce8676374bec12f20 100644 --- a/indra/newview/skins/default/xui/it/strings.xml +++ b/indra/newview/skins/default/xui/it/strings.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. - It is only for those strings which don't belong in a floater. + It is only for those strings which do not belong in a floater. For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> @@ -55,9 +55,6 @@ <string name="LoginDownloadingClothing"> Sto caricando i vestiti... </string> - <string name="LoginFailedNoNetwork"> - Errore di rete: impossibile connettersi, verifica la tua connessione. - </string> <string name="AgentLostConnection"> Questa regione sta avendo problemi. Verifica la tua connessione a Internet. </string> @@ -184,6 +181,9 @@ <string name="AssetErrorCircuitGone"> Circuito perso </string> + <string name="AssetErrorPriceMismatch"> + Il programma e il server non combaciano nel prezzo + </string> <string name="AssetErrorUnknownStatus"> Stato sconosciuto </string> @@ -418,4 +418,69 @@ <string name="shout"> grida: </string> + <string name="SIM_ACCESS_PG"> + PG + </string> + <string name="SIM_ACCESS_MATURE"> + Mature + </string> + <string name="SIM_ACCESS_ADULT"> + Adult + </string> + <string name="SIM_ACCESS_DOWN"> + Offline + </string> + <string name="SIM_ACCESS_MIN"> + Sconosciuto + </string> + <string name="land_type_unknown"> + (sconosciuto) + </string> + <string name="covenant_never_modified">Ultima modifica: (mai)</string> + <string name="covenant_modified">Ultima modifica: </string> + <string name="all_files"> + Tutti i file + </string> + <string name="sound_files"> + Suoni + </string> + <string name="animation_files"> + Animazioni + </string> + <string name="image_files"> + Immagini + </string> + <string name="save_file_verb"> + Salva + </string> + <string name="load_file_verb"> + Carica + </string> + <string name="targa_image_files"> + Immagini Targa + </string> + <string name="bitmap_image_files"> + Immagini Bitmap + </string> + <string name="avi_movie_file"> + File video AVI + </string> + <string name="xaf_animation_file"> + File animazione XAF + </string> + <string name="xml_file"> + File XML + </string> + <string name="dot_raw_file"> + File RAW + </string> + <string name="compressed_image_files"> + Immagini compresse + </string> + <string name="load_files"> + Carica i file + </string> + <string name="choose_the_directory"> + Scegli la cartella + </string> </strings> diff --git a/indra/newview/skins/default/xui/it/teleport_strings.xml b/indra/newview/skins/default/xui/it/teleport_strings.xml index 5eced9cf2fbcf4792236d74564f74d20dfcaf24d..4ef802dc5bf280c8eb5b05f4c39884faf8be279c 100644 --- a/indra/newview/skins/default/xui/it/teleport_strings.xml +++ b/indra/newview/skins/default/xui/it/teleport_strings.xml @@ -2,10 +2,12 @@ <teleport_messages> <message_set name="errors"> <message name="invalid_tport"> - C'è stato un problema nell'elaborare la tua richiesta di teletrasporto. Potresti aver bisogno di ricollegarti prima di poter usare il teletrasporto. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: www.secondlife.com/support + C'è stato un problema nell'elaborare la tua richiesta di teletrasporto. Potresti aver bisogno di ricollegarti prima di poter usare il teletrasporto. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: +www.secondlife.com/support </message> <message name="invalid_region_handoff"> - C'è stato un problema nell'elaborare il cambio di regione. Potresti aver bisogno di ricollegarti prima di poterlo effetuare. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: www.secondlife.com/support + C'è stato un problema nell'elaborare il cambio di regione. Potresti aver bisogno di ricollegarti prima di poterlo effetuare. Se continui ad avere problemi, controlla per favore le FAQ del Supporto Tecnico a: +www.secondlife.com/support </message> <message name="blocked_tport"> Spiacenti, il teletrasporto è bloccato al momento. Prova di nuovo tra pochi istanti. Se ancora non potrai teletrasportarti, per favore scollegati e ricollegati per risolvere il problema. diff --git a/indra/newview/skins/default/xui/ja/floater_about.xml b/indra/newview/skins/default/xui/ja/floater_about.xml index c8f6b76babf01a40ca30a8f397a811b88772ecc9..ffdbec666d5cf6dddacc6a101fcce82fcfc83e1a 100644 --- a/indra/newview/skins/default/xui/ja/floater_about.xml +++ b/indra/newview/skins/default/xui/ja/floater_about.xml @@ -20,13 +20,14 @@ SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) xmlrpc-epi Copyright (C) 2000 Epinions, Inc. zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. - + google-perftools Copyright (c) 2005, Google Inc. + ç„¡æ–転写ã€è¤‡è£½ã€è»¢è¼‰ã‚’ç¦ã˜ã¾ã™ã€‚ 詳細ã¯licenses.txtã‚’å‚ç…§ã—ã¦ãã ã•ã„。 Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) - å‹é”ã®åŠ©ã‘ãŒã‚ã‚Œã°ä½•ã¨ã‹ã‚„ã£ã¦ã„ã‘ã‚‹ --リãƒãƒ£ãƒ¼ãƒ‰ãƒ»ã‚¹ã‚¿ãƒ¼ã‚ー + ビジãƒã‚¹ã§æˆåŠŸã™ã‚‹ã«ã¯ã€å‹‡æ°—ã‚’æŒã£ã¦ã€èª°ã‚ˆã‚Šã‚‚å…ˆã«ã€äººã¨é•ã£ãŸã“ã¨ã‚’ã™ã‚‹ã“ã¨ã 。 --Henry Marchant </text_editor> <text name="you_are_at"> [POSITION] diff --git a/indra/newview/skins/default/xui/ja/floater_about_land.xml b/indra/newview/skins/default/xui/ja/floater_about_land.xml index d958c35b4bf70eedf71c25017b08633672048be5..c8195d8f38be3abf82e6037479234b011dff151e 100644 --- a/indra/newview/skins/default/xui/ja/floater_about_land.xml +++ b/indra/newview/skins/default/xui/ja/floater_about_land.xml @@ -9,6 +9,18 @@ <text length="1" name="Description:" type="string"> 説明: </text> + <text name="LandType"> + 種類: + </text> + <text name="LandTypeText"> + メインランド/ホームステッド + </text> + <text name="ContentRating"> + 区分: + </text> + <text name="ContentRatingText"> + Adult + </text> <text length="1" name="Owner:" type="string"> オーナー: </text> @@ -24,7 +36,7 @@ <button label="è²æ¸¡..." label_selected="è²æ¸¡..." name="Deed..." tool_tip="é¸æŠžã•ã‚ŒãŸã‚°ãƒ«ãƒ¼ãƒ—ã®ã‚ªãƒ•ã‚£ã‚µãƒ¼ã§ã‚ã‚‹ã¨ãã®ã¿ã€åœŸåœ°ã‚’è²æ¸¡ã§ãã¾ã™ã€‚"/> <check_box label="オーナーãŒè²æ¸¡ã¨å…±ã«å¯„付" name="check contrib" tool_tip="土地ãŒã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚Œã‚‹ã¨ãã€å‰ã®æ‰€æœ‰è€…ã¯è²æ¸¡ãŒæˆç«‹ã™ã‚‹ã‚ˆã†ã€å分ãªåœŸåœ°ã‚’寄付ã—ã¾ã™ã€‚"/> <text length="1" name="For Sale:" type="string"> - 売り出ã—ä¸ï¼š + 販売ã®æœ‰ç„¡ï¼š </text> <text length="1" name="Not for sale." type="string"> 販売対象外 @@ -44,7 +56,7 @@ </text> <button label="土地販売ã®å–り消ã—" label_selected="土地販売ã®å–り消ã—" name="Cancel Land Sale"/> <text length="1" name="Claimed:" type="string"> - è¦æ±‚: + å–得日時: </text> <text length="1" name="DateClaimText" type="string"> 2006å¹´8月15æ—¥ç«æ›œæ—¥13:47:25 @@ -61,11 +73,11 @@ <text length="1" name="DwellText" type="string"> 誤 </text> - <button label="土地を購入..." label_selected="土地を購入..." name="Buy Land..." width="125" left="130"/> + <button label="土地を購入..." label_selected="土地を購入..." left="130" name="Buy Land..." width="125"/> <button label="グループ用ã«è³¼å…¥..." label_selected="グループ用ã«è³¼å…¥..." name="Buy For Group..."/> - <button label="å…¥å ´è¨±å¯ã‚’購入..." label_selected="å…¥å ´è¨±å¯ã‚’購入..." name="Buy Pass..." tool_tip="ã“ã®åœŸåœ°ã¸ã®ä¸€æ™‚çš„ãªã‚¢ã‚¯ã‚»ã‚¹ã‚’許å¯ã—ã¾ã™ã€‚" width="125" left="130"/> + <button label="å…¥å ´è¨±å¯ã‚’購入..." label_selected="å…¥å ´è¨±å¯ã‚’購入..." left="130" name="Buy Pass..." tool_tip="ã“ã®åœŸåœ°ã¸ã®ä¸€æ™‚çš„ãªã‚¢ã‚¯ã‚»ã‚¹ã‚’許å¯ã—ã¾ã™ã€‚" width="125"/> <button label="土地を放棄..." label_selected="土地を放棄..." name="Abandon Land..."/> - <button label="土地開拓..." label_selected="土地開拓..." name="Reclaim Land..."/> + <button label="土地ã®è¿”é‚„ã‚’è¦æ±‚..." label_selected="土地ã®è¿”é‚„ã‚’è¦æ±‚..." name="Reclaim Land..."/> <button label="Lindenセール..." label_selected="Lindenセール..." name="Linden Sale..." tool_tip="土地ãŒæ‰€æœ‰ã•ã‚Œã¦ãŠã‚Šã€ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ãŒè¨å®šã•ã‚Œã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚オークションã®å¯¾è±¡ã«ãªã£ã¦ã„ãªã„ã“ã¨ã‚‚å¿…è¦æ¡ä»¶ã§ã™ã€‚"/> <string name="new users only"> æ–°è¦ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ã¿ @@ -74,7 +86,7 @@ 誰ã§ã‚‚ </string> <string name="area_text"> - エリア + é¢ç©ï¼š </string> <string name="area_size_text"> [AREA]平方メートル @@ -105,40 +117,65 @@ </string> <string name="no_selection_text"> 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 -[世界]メニュー>[åœŸåœ°æƒ…å ±]ã«é€²ã‚€ã‹ã€åˆ¥ã®åŒºç”»ã‚’é¸æŠžã—ã¦ã€è©³ç´°ã‚’表示ã—ã¾ã™ã€‚ +「世界ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ï¼žã€ŒåœŸåœ°æƒ…å ±ã€ã«é€²ã‚€ã‹ã€åˆ¥ã®åŒºç”»ã‚’é¸æŠžã—ã¦ã€è©³ç´°ã‚’表示ã—ã¾ã™ã€‚ </string> </panel> <panel label="約款" name="land_covenant_panel"> + <text font="SansSerifLarge" name="estate_section_lbl"> + ä¸å‹•ç”£ï¼š + </text> + <text length="1" name="estate_name_lbl" type="string"> + åå‰ï¼š + </text> + <text length="1" name="estate_name_text" type="string"> + メインランド + </text> + <text length="1" name="estate_owner_lbl" type="string"> + オーナー: + </text> + <text length="1" name="estate_owner_text" type="string"> + (ãªã—) + </text> + <text_editor length="1" name="covenant_editor" type="string"> + ã“ã®ä¸å‹•ç”£ã«ã¯ç´„款ãŒã‚ã‚Šã¾ã›ã‚“。 + </text_editor> <text length="1" name="covenant_timestamp_text" type="string"> 最後ã®æ›´æ–°1969å¹´12月31日水曜日16:00:00 </text> - <text length="1" name="region_name_lbl" type="string"> + <text font="SansSerifLarge" name="region_section_lbl"> 地域: </text> + <text length="1" name="region_name_lbl" type="string"> + åå‰ï¼š + </text> <text length="1" name="region_name_text" type="string"> Leyla </text> - <text length="1" name="estate_name_lbl" type="string"> - ä¸å‹•ç”£ï¼š + <text name="region_landtype_lbl"> + 種類: </text> - <text length="1" name="estate_name_text" type="string"> - メインランド + <text name="region_landtype_text"> + メインランド/ホームステッド </text> - <text length="1" name="estate_owner_lbl" type="string"> - ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ï¼š + <text name="region_maturity_lbl"> + 区分: </text> - <text length="1" name="estate_owner_text" type="string"> - (ãªã—) + <text name="region_maturity_text"> + Adult + </text> + <text name="resellable_lbl"> + å†è²©ï¼š </text> <text length="1" name="resellable_clause" type="string"> - ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€å†è²©ã§ããªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ + ã“ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«ã‚る土地ã¯å†è²©ã§ãã¾ã›ã‚“。 + </text> + <text name="changeable_lbl"> + å†åˆ†å‰²ï¼š </text> <text length="1" name="changeable_clause" type="string"> - ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€çµ±åˆï¼å†åˆ†å‰²ã§ããªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ + ã“ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«ã‚る土地ã¯çµ±åˆã¾ãŸã¯åˆ†å‰²ãŒã§ã +ã¾ã›ã‚“。 </text> - <text_editor length="1" name="covenant_editor" type="string"> - ã“ã®ä¸å‹•ç”£ã«ã¯ç´„款ãŒã‚ã‚Šã¾ã›ã‚“。 - </text_editor> <string name="can_resell"> ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€å†è²©ã§ãã¾ã™ã€‚ </string> @@ -149,7 +186,8 @@ ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€çµ±åˆã¾ãŸã¯å†åˆ†å‰²ã§ãã¾ã™ã€‚ </string> <string name="can_not_change"> - ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€çµ±åˆï¼å†åˆ†å‰²ã§ããªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ + ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€çµ±åˆï¼å†åˆ†å‰²ã§ããªã„ã“ã¨ãŒ +ã‚ã‚Šã¾ã™ã€‚ </string> </panel> <panel label="オブジェクト" name="land_objects_panel"> @@ -255,6 +293,57 @@ <check_box label="安全(ダメージãªã—)" name="check safe" tool_tip="ãƒã‚§ãƒƒã‚¯ã‚’入れるã¨ã“ã®åœŸåœ°ã§ã®ãƒ€ãƒ¡ãƒ¼ã‚¸ã‚³ãƒ³ãƒãƒƒãƒˆãŒç„¡åŠ¹ã«ãªã‚Šã€ã€Œå®‰å…¨ã€ã«è¨å®šã•ã‚Œã¾ã™ã€‚ ãƒã‚§ãƒƒã‚¯ã‚’外ã™ã¨ãƒ€ãƒ¡ãƒ¼ã‚¸ã‚³ãƒ³ãƒãƒƒãƒˆãŒæœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚"/> <check_box label="プッシングを制é™" name="PushRestrictCheck" tool_tip="スクリプトã«ã‚ˆã‚‹ãƒ—ッシングを制é™ã—ã¾ã™ã€‚ ã“ã®ã‚ªãƒ—ションをé¸æŠžã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šã€ã‚ãªãŸã®åœŸåœ°ã§ã®ç ´å£Šçš„行動を妨ã’ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚"/> <check_box label="検索ã«è¡¨ç¤ºï¼žï¼ˆé€±L$30)以下ã®å ´æ‰€" name="ShowDirectoryCheck" tool_tip="検索çµæžœã§ã“ã®åŒºç”»ã‚’表示ã•ã›ã‚‹"/> + <string name="search_enabled_tooltip"> + ã“ã®åŒºç”»ã‚’検索çµæžœã«è¡¨ç¤ºã™ã‚‹ + </string> + <string name="search_disabled_small_tooltip"> + 区画é¢ç©ãŒ128平方メートルã‹ãれ以下ã®ãŸã‚ã€ã“ã®ã‚ªãƒ—ションã¯ç„¡åŠ¹ã§ã™ã€‚ +大ããªåŒºç”»ã®ã¿æ¤œç´¢ã«è¡¨ç¤ºã•ã›ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚ + </string> + <string name="search_disabled_permissions_tooltip"> + ã‚ãªãŸã¯ã“ã®åŒºç”»ã®è¨å®šç·¨é›†ãŒã§ããªã„ãŸã‚ã€ã“ã®ã‚ªãƒ—ションã¯ç„¡åŠ¹ã§ã™ã€‚ + </string> + <combo_box name="land category with adult"> + <combo_item name="AnyCategory"> + 全カテゴリ + </combo_item> + <combo_item name="LindenLocation"> + Linden所在地 + </combo_item> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Arts&Culture"> + アートã¨ã‚«ãƒ«ãƒãƒ£ãƒ¼ + </combo_item> + <combo_item name="Business"> + ビジãƒã‚¹ + </combo_item> + <combo_item name="Educational"> + 教育的 + </combo_item> + <combo_item name="Gaming"> + ゲーム+ </combo_item> + <combo_item name="Hangout"> + ãŸã¾ã‚Šå ´ + </combo_item> + <combo_item name="NewcomerFriendly"> + æ–°ä½äººã«å¥½æ„çš„ + </combo_item> + <combo_item name="Parks&Nature"> + 公園ã¨è‡ªç„¶ + </combo_item> + <combo_item name="Residential"> + ä½å®…用 + </combo_item> + <combo_item name="Shopping"> + ショッピング + </combo_item> + <combo_item name="Other"> + ãã®ä»– + </combo_item> + </combo_box> <combo_box name="land category"> <combo_item name="AnyCategory"> 全カテゴリー @@ -262,7 +351,6 @@ <combo_item name="LindenLocation"> Linden所在地 </combo_item> - <combo_item name="Arts&Culture"> アート&カルãƒãƒ£ãƒ¼ </combo_item> @@ -295,18 +383,30 @@ </combo_item> </combo_box> <button label="?" label_selected="?" name="?"/> - <check_box name="MatureCheck" /> + <check_box label="Matureコンテンツ" name="MatureCheck" tool_tip=""/> + <string name="mature_check_mature"> + Matureコンテンツ + </string> + <string name="mature_check_adult"> + Adultコンテンツ + </string> + <string name="mature_check_mature_tooltip"> + ã‚ãªãŸã®åŒºç”»æƒ…å ±åŠã³ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯Matureã¨ã•ã‚Œã¦ã„ã¾ã™ã€‚ + </string> + <string name="mature_check_adult_tooltip"> + ã‚ãªãŸã®åŒºç”»æƒ…å ±åŠã³ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯Adultã¨ã•ã‚Œã¦ã„ã¾ã™ã€‚ + </string> <text length="1" name="Snapshot:" type="string"> スナップショット: </text> <texture_picker label="" left="116" name="snapshot_ctrl" tool_tip="写真をクリックã—ã¦é¸æŠž"/> <text name="landing_point"> - ç€é™¸åœ°ç‚¹: [LANDING] + ç€åœ°ç‚¹: [LANDING] </text> <string name="landing_point_none"> (ãªã—) </string> - <button label="è¨å®š" label_selected="è¨å®š" name="Set" tool_tip="訪å•è€…ã®ç€åœ°åœ°ç‚¹ã®è¨å®šã‚’è¡Œã„ã¾ã™ã€‚ã“ã®åŒºç”»å†…ã«ç«‹ã£ã¦è¡Œã£ã¦ãã ã•ã„。"/> + <button label="è¨å®š" label_selected="è¨å®š" name="Set" tool_tip="訪å•è€…ã®ç€åœ°ç‚¹ã®è¨å®šã‚’è¡Œã„ã¾ã™ã€‚ã“ã®åŒºç”»å†…ã«ç«‹ã£ã¦è¡Œã£ã¦ãã ã•ã„。"/> <button label="クリア" label_selected="クリア" name="Clear" tool_tip="ç€åœ°ç‚¹ã‚’クリアã—ã¦ãã ã•ã„。"/> <text length="1" name="Teleport Routing: " type="string"> テレãƒãƒ¼ãƒˆåˆ¶é™ï¼š @@ -347,9 +447,10 @@ ャå–替: </text> <texture_picker label="" name="media texture" tool_tip="写真をクリックã—ã¦é¸æŠž"/> - <text name="replace_texture_help"> - ï¼»å†ç”Ÿï¼½çŸ¢å°ã‚’クリックã™ã‚‹ã¨ã€ã“ã®ãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ¼ã‚’使用ã™ã‚‹ã‚ªãƒ–ジェクト㫠-å‹•ç”»ã¾ãŸã¯ã‚¦ã‚§ãƒ–・ページãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ + <text name="replace_texture_help" width="290"> + 「å†ç”Ÿã€çŸ¢å°ã‚’クリックã™ã‚‹ã¨ã€ã“ã®ãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ¼ã‚’ + 使用ã™ã‚‹ã‚ªãƒ–ジェクトã«å‹•ç”»ã¾ãŸã¯ã‚¦ã‚§ãƒ–・ページ + ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ </text> <text name="Options:"> メディア @@ -373,21 +474,14 @@ <text name="Sound:"> サウンド: </text> - <check_box label="ã“ã®åŒºç”»ã ã‘ã«é™å®š" name="check sound local"/> + <check_box label="ジェスãƒãƒ£ãƒ¼ã¨ã‚ªãƒ–ジェクトã®éŸ³ã‚’ã“ã®åŒºç”»ã ã‘ã«é™å®š" name="check sound local"/> + <button label="?" label_selected="?" left="408" name="?"/> <text name="Voice settings:"> ボイス: </text> - <radio_group name="parcel_voice_channel" width="310"> - <radio_item name="Estate"> - ä¸å‹•ç”£ï¼ˆã‚¨ã‚¹ãƒ†ãƒ¼ãƒˆï¼‰å…¨ä½“ - </radio_item> - <radio_item name="Private"> - ã“ã®åŒºç”»ã®ã¿ - </radio_item> - <radio_item name="Disabled"> - 使用ä¸å¯ - </radio_item> - </radio_group> + <check_box label="ボイスを有効ã«ã™ã‚‹" name="parcel_enable_voice_channel"/> + <check_box label="ボイスを有効ã«ã™ã‚‹ï¼ˆä¸å‹•ç”£è¨å®šï¼‰" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="ã“ã®åŒºç”»ã§ã®ãƒœã‚¤ã‚¹ä½¿ç”¨ã‚’制é™ã™ã‚‹" name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="アクセス" name="land_access_panel"> <text length="1" name="Limit access to this parcel to:" type="string"> diff --git a/indra/newview/skins/default/xui/ja/floater_avatar_picker.xml b/indra/newview/skins/default/xui/ja/floater_avatar_picker.xml index a23c6f02ad3c40292419c506933190bb5d70cc19..ea076846529674cd4ec62288c84795bb6b1ca794 100644 --- a/indra/newview/skins/default/xui/ja/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/ja/floater_avatar_picker.xml @@ -1,21 +1,40 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="avatarpicker" title="ä½äººã‚’é¸æŠž"> - <text name="Type part of the person's name:"> - ä½äººã®åå‰ã®ä¸€éƒ¨ã‚’入力ã—ã¦ãã ã•ã„。 - </text> - <text name="instruct_search_resident_name"> - ä½äººã®åå‰ã‚’一部入力ã—ã¦ãã ã•ã„: - </text> - <button label="検索" label_selected="検索" name="Find" /> - <text name="Or select a calling card:"> - ã¾ãŸã¯ã‚³ãƒ¼ãƒªãƒ³ã‚°ãƒ»ã‚«ãƒ¼ãƒ‰ã‚’é¸æŠžï¼š - </text> - <text name="Or select their calling card:"> - ã¾ãŸã¯ã€ã‚³ãƒ¼ãƒªãƒ³ã‚°ã‚«ãƒ¼ãƒ‰ã‚’é¸æŠžï¼š - </text> - <button label="é¸æŠž" label_selected="é¸æŠž" name="Select" /> - <button label="é–‰ã˜ã‚‹" label_selected="é–‰ã˜ã‚‹" name="Close" /> - <text name="NotFound"> - '[TEXT]'ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 - </text> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="avatarpicker" title="ä½äººã‚’é¸æŠž" min_width="275" width="275"> + <tab_container name="ResidentChooserTabs" width="265"> + <panel label="検索" name="SearchPanel" width="145"> + <text name="InstructSearchResidentName"> + ä½äººã®åå‰ã®ä¸€éƒ¨ã‚’入力: + </text> + <button label="検索" label_selected="検索" name="Find"/> + </panel> + <panel label="コーリングカード" name="CallingCardsPanel" width="145"> + <text name="InstructSelectCallingCard"> + コーリングカードをé¸æŠžï¼š + </text> + </panel> + <panel label="自分ã®è¿‘ã" name="NearMePanel" width="145"> + <text name="InstructSelectResident"> + è¿‘ãã®ä½äººã‚’é¸æŠžï¼š + </text> + <button label="リスト更新" label_selected="リスト更新" name="Refresh"/> + <slider label="範囲" name="near_me_range"/> + <text name="meters" width="50"> + メートル + </text> + </panel> + </tab_container> + <button label="é¸æŠž" label_selected="é¸æŠž" name="Select"/> + <button label="å–り消ã—" label_selected="å–り消ã—" name="Cancel"/> + <string name="not_found"> + 「[TEXT]ã€ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—㟠+ </string> + <string name="no_one_near"> + è¿‘ãã«èª°ã‚‚ã„ã¾ã›ã‚“ + </string> + <string name="no_results"> + 検索çµæžœï¼šã‚¼ãƒ + </string> + <string name="searching"> + 検索ä¸... + </string> </floater> diff --git a/indra/newview/skins/default/xui/ja/floater_avatar_textures.xml b/indra/newview/skins/default/xui/ja/floater_avatar_textures.xml index fb0659f69422b60507686c8d005c442487429b1e..95940dba969f0ef5c0a031d86ef125f835d55c9d 100644 --- a/indra/newview/skins/default/xui/ja/floater_avatar_textures.xml +++ b/indra/newview/skins/default/xui/ja/floater_avatar_textures.xml @@ -1,30 +1,31 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatar_texture_debug" title="ã‚¢ãƒã‚¿ãƒ¼ãƒ»ãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ¼"> - <text name="baked_label" width="128"> - 構築ã•ã‚ŒãŸï¾ƒï½¸ï½½ï¾ï½¬ï½° + <text name="label"> + ベークドテクスãƒãƒ£ </text> <text name="composite_label" width="128"> åˆæˆãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ¼ </text> - <texture_picker label="é " name="baked_head" /> - <texture_picker label="メイクアップ" name="head_bodypaint" /> - <texture_picker label="髪" name="hair" /> - <button label="æ¨ã¦ã‚‹" label_selected="æ¨ã¦ã‚‹" name="Dump" /> - <texture_picker label="眼" name="baked_eyes" /> - <texture_picker label="眼" name="eye_texture" /> - <texture_picker label="上åŠèº«" name="baked_upper_body" /> - <texture_picker label="上åŠèº«ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="upper_bodypaint" /> - <texture_picker label="(下ç€ã®ï¼‰ã‚·ãƒ£ãƒ„" name="undershirt" /> - <texture_picker label="手袋" name="gloves" /> - <texture_picker label="シャツ" name="shirt" /> - <texture_picker label="上åŠèº«ã®ã‚¸ãƒ£ã‚±ãƒƒãƒˆ" name="upper_jacket" /> - <texture_picker label="下åŠèº«" name="baked_lower_body" /> - <texture_picker label="下åŠèº«ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="lower_bodypaint" /> - <texture_picker label="(下ç€ã®ï¼‰ãƒ‘ンツ" name="underpants" /> - <texture_picker label="é´ä¸‹" name="socks" /> - <texture_picker label="é´" name="shoes" /> - <texture_picker label="ズボン" name="pants" /> - <texture_picker label="ジャケット" name="jacket" /> - <texture_picker label="スカート" name="baked_skirt" /> - <texture_picker label="スカート" name="skirt_texture" /> + <button label="テクスãƒãƒ£ID一覧をコンソールã«æ›¸ã込む" label_selected="æ¨ã¦ã‚‹" name="Dump"/> + <texture_picker label="髪型" name="hair-baked"/> + <texture_picker label="髪" name="hair"/> + <texture_picker label="é " name="head-baked"/> + <texture_picker label="メイクアップ" name="head bodypaint"/> + <texture_picker label="ç›®" name="eyes-baked"/> + <texture_picker label="ç›®" name="iris"/> + <texture_picker label="上åŠèº«" name="upper-baked"/> + <texture_picker label="上åŠèº«ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="upper bodypaint"/> + <texture_picker label="(下ç€ã®ï¼‰ã‚·ãƒ£ãƒ„" name="undershirt"/> + <texture_picker label="手袋" name="gloves"/> + <texture_picker label="シャツ" name="shirt"/> + <texture_picker label="上ç€" name="upper jacket"/> + <texture_picker label="下åŠèº«" name="lower-baked"/> + <texture_picker label="下åŠèº«ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="lower bodypaint"/> + <texture_picker label="(下ç€ã®ï¼‰ãƒ‘ンツ" name="underpants"/> + <texture_picker label="é´ä¸‹" name="socks"/> + <texture_picker label="é´" name="shoes"/> + <texture_picker label="ズボン" name="pants"/> + <texture_picker label="上ç€" name="lower jacket"/> + <texture_picker label="スカート" name="skirt-baked"/> + <texture_picker label="スカート" name="skirt"/> </floater> diff --git a/indra/newview/skins/default/xui/ja/floater_bulk_perms.xml b/indra/newview/skins/default/xui/ja/floater_bulk_perms.xml index f7d3d58dc55297845eee0332d5f484609e3ef81e..6ee90038fb7aa624e90ea7f10ad00a3a4b450b5c 100644 --- a/indra/newview/skins/default/xui/ja/floater_bulk_perms.xml +++ b/indra/newview/skins/default/xui/ja/floater_bulk_perms.xml @@ -26,6 +26,7 @@ <check_box label="ä¿®æ£" name="next_owner_modify"/> <check_box label="コピー" name="next_owner_copy"/> <check_box label="å†è²©/プレゼント" name="next_owner_transfer"/> + <button label="ヘルプ" name="help"/> <button label="é©ç”¨" name="apply"/> <button label="é–‰ã˜ã‚‹" name="close"/> <string name="nothing_to_modify_text"> diff --git a/indra/newview/skins/default/xui/ja/floater_buy_currency.xml b/indra/newview/skins/default/xui/ja/floater_buy_currency.xml index a532640d91d3c3ed718524df594a8e70063b4c24..9d5aea612b409bc2c340fc5c440ab58a663f5bc8 100644 --- a/indra/newview/skins/default/xui/ja/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/ja/floater_buy_currency.xml @@ -12,7 +12,7 @@ <text name="error_message"> 何ã‹å¤‰ã§ã™ã€‚ </text> - <button label="ウェブ・サイトã«ç§»å‹•" name="error_web" /> + <button label="ウェブ・サイトã«ç§»å‹•" name="error_web" width="140"/> <text name="contacting"> LindeXã¨ã‚³ãƒ³ã‚¿ã‚¯ãƒˆä¸â€¦ </text> @@ -31,7 +31,7 @@ <text name="currency_est"> ç´„US$ [USD] </text> - <text name="getting_data"> + <text name="getting_data" left_delta="3"> データをå–å¾—ã—ã¦ã„ã¾ã™... </text> <text name="balance_label"> diff --git a/indra/newview/skins/default/xui/ja/floater_buy_land.xml b/indra/newview/skins/default/xui/ja/floater_buy_land.xml index 0a47e0e970c64ee954eb5b10c56d5df2ad0e7d50..ba51e7263dbecfd4091102e55604fe680ec515cf 100644 --- a/indra/newview/skins/default/xui/ja/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/ja/floater_buy_land.xml @@ -6,6 +6,12 @@ <text name="region_name_text"> (ä¸æ˜Žï¼‰ </text> + <text name="region_type_label"> + 種類: + </text> + <text name="region_type_text"> + (ä¸æ˜Žï¼‰ + </text> <text name="estate_name_label"> ä¸å‹•ç”£ï¼š </text> @@ -22,10 +28,10 @@ ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ï¼š </text> <text name="resellable_clause"> - ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€å†è²©ãŒå¯èƒ½ãªå ´åˆã¨ãã†ã§ãªã„å ´åˆãŒã‚ã‚Šã¾ã™ + å†è²©ã§ãã‚‹å ´åˆã¨ã§ããªã„å ´åˆãŒã‚ã‚Šã¾ã™ã€‚ </text> <text name="changeable_clause"> - çµ±åˆã¾ãŸã¯å†åˆ†å‰²ã•ã‚Œã‚‹å¯èƒ½æ€§ã‚‚ã€ã•ã‚Œãªã„å¯èƒ½æ€§ã‚‚ã‚ã‚Šã¾ã™ + çµ±åˆã¾ãŸã¯å†åˆ†å‰²ã§ãã‚‹å ´åˆã¨ã§ããªã„å ´åˆãŒã‚ã‚Šã¾ã™ã€‚ </text> <text name="covenant_text"> ä¸å‹•ç”£ç´„款ã«åŒæ„ã—ã¦ãã ã•ã„: @@ -162,7 +168,7 @@ ã“ã®åœŸåœ°ã‚’è²·ã†ã¨ï¼š </string> <string name="buying_for_group"> - グループ用ã«åœŸåœ°ã‚’購入: + グループ用ã®åœŸåœ°ã‚’購入ã™ã‚‹ã¨ï¼š </string> <string name="cannot_buy_now"> ç¾åœ¨è³¼å…¥ä¸å¯ï¼š @@ -192,10 +198,10 @@ ã“ã®åŒºç”»ã¯ [AMOUNT] 平方メートルã‚ã‚Šã¾ã™ </string> <string name="premium_land"> - ã“ã®åœŸåœ°ã¯ãƒ—レミアムãªã®ã§ã€ [AMOUNT] 平方メートル ã¨ã—ã¦è«‹æ±‚ã•ã‚Œã¾ã™ + ã“ã®åœŸåœ°ã¯å‰²ã‚Šå¢—ã—付ã§ã™ã€‚ [AMOUNT] 平方メートルã®æ–™é‡‘ãŒã‹ã‹ã‚Šã¾ã™ã€‚ </string> <string name="discounted_land"> - ã“ã®åœŸåœ°ã¯å€¤ä¸‹ã’ã•ã‚Œã€[AMOUNT]平方メートルã¨ã—ã¦è«‹æ±‚ã•ã‚Œã¾ã™ + ã“ã®åœŸåœ°ã¯ãƒ‡ã‚£ã‚¹ã‚«ã‚¦ãƒ³ãƒˆã•ã‚Œã¦ã„ã¾ã™ã€‚ [AMOUNT] 平方メートルã®æ–™é‡‘ãŒã‹ã‹ã‚Šã¾ã™ã€‚ </string> <string name="meters_supports_object"> [AMOUNT]平方メートルã§ã‚ã‚Œã°ã€ @@ -210,13 +216,11 @@ </string> <string name="info_price_string"> L$ [PRICE] -L$[PRICE] (L$[PRICE_PER_SQM]/平方メートル) +(L$ [PRICE_PER_SQM]/平方メートル) [SOLD_WITH_OBJECTS] </string> <string name="insufficient_land_credits"> - ã“ã® [GROUP] ãŒåŒºç”»ã®è³¼å…¥æ‰‹ç¶šãを完了ã™ã‚‹ã«ã¯ã€ -ä¾¡æ ¼ã«è¦‹åˆã†ã ã‘ã®å¯„付ã•ã‚ŒãŸåœŸåœ°ã®åˆ©ç”¨å®Ÿç¸¾ãŒ -å¿…è¦ã§ã™ + ã“ã® [GROUP] ãŒåŒºç”»ã®è³¼å…¥æ‰‹ç¶šãを完了ã™ã‚‹ã«ã¯ã€ ä¾¡æ ¼ã«è¦‹åˆã†ã ã‘ã®å¯„付ã•ã‚ŒãŸåœŸåœ°ã®åˆ©ç”¨å®Ÿç¸¾ãŒå¿…è¦ã§ã™ </string> <string name="have_enough_lindens"> ã‚ãªãŸã®æ‰€æŒã™ã‚‹ L$ [AMOUNT]ã§ã€ã“ã®åœŸåœ°ã‚’購入ã§ãã¾ã™ diff --git a/indra/newview/skins/default/xui/ja/floater_customize.xml b/indra/newview/skins/default/xui/ja/floater_customize.xml index 4b420dbc2e7c5aa7f4357734c09de014e099bb4d..27fa434963b6d5fe0129bee3b60f467fc7591167 100644 --- a/indra/newview/skins/default/xui/ja/floater_customize.xml +++ b/indra/newview/skins/default/xui/ja/floater_customize.xml @@ -1,469 +1,471 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater customize" title="容姿"> <tab_container name="customize tab container"> - <panel label="身体部ä½" /> - <panel label="身体部ä½" name="body_parts_placeholder" /> + <panel label="身体部ä½" name="body_parts_placeholder"/> <panel label="シェイプ" name="Shape"> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> - <button label="身体" label_selected="身体" name="Body" /> - <button label="é " label_selected="é " name="Head" /> - <button label="眼" label_selected="眼" name="Eyes" /> - <button label="耳" label_selected="耳" name="Ears" /> - <button label="é¼»" label_selected="é¼»" name="Nose" /> - <button label="å£" label_selected="å£" name="Mouth" /> - <button label="ã‚ã”" label_selected="ã‚ã”" name="Chin" /> - <button label="胴体" label_selected="胴体" name="Torso" /> - <button label="両脚" label_selected="両脚" name="Legs" /> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> + <button label="身体" label_selected="身体" name="Body"/> + <button label="é " label_selected="é " name="Head"/> + <button label="眼" label_selected="眼" name="Eyes"/> + <button label="耳" label_selected="耳" name="Ears"/> + <button label="é¼»" label_selected="é¼»" name="Nose"/> + <button label="å£" label_selected="å£" name="Mouth"/> + <button label="ã‚ã”" label_selected="ã‚ã”" name="Chin"/> + <button label="胴体" label_selected="胴体" name="Torso"/> + <button label="両脚" label_selected="両脚" name="Legs"/> <radio_group name="sex radio"> - <radio_item type="string" length="1" name="radio"> + <radio_item length="1" name="radio" type="string"> 女性 </radio_item> - <radio_item type="string" length="1" name="radio2"> + <radio_item length="1" name="radio2" type="string"> 男性 </radio_item> </radio_group> - <button label="ランダム化" label_selected="ランダム化" name="Randomize" /> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> - æ–°ã—ã„シェイプ(体型)ã‚’æŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ + <text length="1" name="not worn instructions" type="string"> + æ–°ã—ã„シェイプ(体型)ã‚’æŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ +ã—ょã†ã€‚完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <button label="æ–°ã—ã„シェイプ(体型)を作æˆ" label_selected="æ–°ã—ã„シェイプ(体型)を作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> + <text name="Item Action Label"> + シェイプ: + </text> + <button label="æ–°ã—ã„シェイプ(体型)を作æˆ" label_selected="æ–°ã—ã„シェイプ(体型)を作æˆ" name="Create New"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> </panel> <panel label="スã‚ン" name="Skin"> - <button label="スã‚ンã®è‰²" label_selected="スã‚ンã®è‰²" name="Skin Color" /> - <button label="é¡”ã®ç´°éƒ¨" label_selected="é¡”ã®ç´°éƒ¨" name="Face Detail" /> - <button label="メイクアップ" label_selected="メイクアップ" name="Makeup" /> - <button label="身体細部" label_selected="身体細部" name="Body Detail" /> - <text type="string" length="1" name="title"> + <button label="スã‚ンã®è‰²" label_selected="スã‚ンã®è‰²" name="Skin Color"/> + <button label="é¡”ã®ç´°éƒ¨" label_selected="é¡”ã®ç´°éƒ¨" name="Face Detail"/> + <button label="メイクアップ" label_selected="メイクアップ" name="Makeup"/> + <button label="身体細部" label_selected="身体細部" name="Body Detail"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„スã‚ンをæŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="é 部ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="Head Tattoos" - tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <texture_picker label="上åŠèº«ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="Upper Tattoos" - tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <texture_picker label="下部ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="Lower Tattoos" - tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <button label="ランダム化" label_selected="ランダム化" name="Randomize" /> - <button label="æ–°ã—ã„スã‚ンを作æˆ" - label_selected="æ–°ã—ã„スã‚ンを作æˆ" name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + スã‚ン: + </text> + <texture_picker label="é 部ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="Head Tattoos" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <texture_picker label="上åŠèº«ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="Upper Tattoos" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <texture_picker label="下部ã®ã‚¿ãƒˆã‚¥ãƒ¼" name="Lower Tattoos" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <button label="æ–°ã—ã„スã‚ンを作æˆ" label_selected="æ–°ã—ã„スã‚ンを作æˆ" name="Create New"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="髪" name="Hair"> - <button label="色" label_selected="色" name="Color" /> - <button label="スタイル" label_selected="スタイル" name="Style" /> - <button label="眉毛" label_selected="眉毛" name="Eyebrows" /> - <button label="é¡”" label_selected="é¡”" name="Facial" /> - <text type="string" length="1" name="title"> + <button label="色" label_selected="色" name="Color"/> + <button label="スタイル" label_selected="スタイル" name="Style"/> + <button label="眉毛" label_selected="眉毛" name="Eyebrows"/> + <button label="é¡”" label_selected="é¡”" name="Facial"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„髪型をæŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="テクスãƒãƒ£ãƒ¼" name="Texture" - tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <button label="ランダム化" label_selected="ランダム化" name="Randomize" /> - <button label="æ–°ã—ã„髪を作æˆ" label_selected="æ–°ã—ã„髪を作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + 髪型: + </text> + <texture_picker label="テクスãƒãƒ£ãƒ¼" name="Texture" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <button label="æ–°ã—ã„髪を作æˆ" label_selected="æ–°ã—ã„髪を作æˆ" name="Create New"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="眼" name="Eyes"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„眼をæŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="虹彩" name="Iris" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <button label="ランダム化" label_selected="ランダム化" name="Randomize" /> - <button label="æ–°ã—ã„眼を作æˆ" label_selected="æ–°ã—ã„眼を作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + 目: + </text> + <texture_picker label="虹彩" name="Iris" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <button label="æ–°ã—ã„眼を作æˆ" label_selected="æ–°ã—ã„眼を作æˆ" name="Create New"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> - <panel label="æœ" /> - <panel label="æœ" name="clothes_placeholder" /> + <panel label="æœ" name="clothes_placeholder"/> <panel label="シャツ" name="Shirt"> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„シャツを作æˆ" - label_selected="æ–°ã—ã„シャツを作æˆ" name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> - <text type="string" length="1" name="title"> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„シャツを作æˆ" label_selected="æ–°ã—ã„シャツを作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„シャツをæŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> + <text name="Item Action Label"> + シャツ: + </text> </panel> <panel label="ズボン" name="Pants"> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„ズボンを作æˆ" - label_selected="æ–°ã—ã„ズボンを作æˆ" name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> - <text type="string" length="1" name="title"> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„ズボンを作æˆ" label_selected="æ–°ã—ã„ズボンを作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„ズボンをæŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> + <text name="Item Action Label"> + ズボン: + </text> </panel> <panel label="é´" name="Shoes"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„é´ã‚’æŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„é´ã‚’作æˆ" label_selected="æ–°ã—ã„é´ã‚’作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + é´ï¼š + </text> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„é´ã‚’作æˆ" label_selected="æ–°ã—ã„é´ã‚’作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="é´ä¸‹" name="Socks"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„é´ä¸‹ã‚’æŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„é´ä¸‹ã‚’作æˆ" label_selected="æ–°ã—ã„é´ä¸‹ã‚’作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + é´ä¸‹ï¼š + </text> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„é´ä¸‹ã‚’作æˆ" label_selected="æ–°ã—ã„é´ä¸‹ã‚’作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="上ç€" name="Jacket"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„上ç€ã‚’æŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="上åŠèº«ã®ç”Ÿåœ°" name="Upper Fabric" - tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <texture_picker label="下層生地" name="Lower Fabric" - tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„上ç€ã‚’作æˆ" label_selected="æ–°ã—ã„上ç€ã‚’作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + 上ç€ï¼š + </text> + <texture_picker label="上åŠèº«ã®ç”Ÿåœ°" name="Upper Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <texture_picker label="下層生地" name="Lower Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„上ç€ã‚’作æˆ" label_selected="æ–°ã—ã„上ç€ã‚’作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="手袋" name="Gloves"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„手袋をæŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„手袋を作æˆ" label_selected="æ–°ã—ã„手袋を作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + 手袋: + </text> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„手袋を作æˆ" label_selected="æ–°ã—ã„手袋を作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="下ç€ã‚·ãƒ£ãƒ„" name="Undershirt"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„下ç€ã‚’æŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„下ç€ã‚·ãƒ£ãƒ„を作æˆ" - label_selected="æ–°ã—ã„下ç€ã‚·ãƒ£ãƒ„を作æˆ" name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + 下ç€ã‚·ãƒ£ãƒ„: + </text> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„下ç€ã‚·ãƒ£ãƒ„を作æˆ" label_selected="æ–°ã—ã„下ç€ã‚·ãƒ£ãƒ„を作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="下ç€ãƒ‘ンツ" name="Underpants"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„パンツをæŒã¡ç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="æ–°ã—ã„パンツを作æˆ" - label_selected="æ–°ã—ã„パンツを作æˆ" name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + 下ç€ãƒ‘ンツ: + </text> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="æ–°ã—ã„パンツを作æˆ" label_selected="æ–°ã—ã„パンツを作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> <panel label="スカート" name="Skirt"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: ä¿®æ£ã§ãã¾ã›ã‚“。 </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: 未装ç€ã€‚ </text> - <text type="string" length="1" name="path"> - [PATH]ã«æ‰€åœ¨ + <text length="1" name="path" type="string"> + [PATH] ã«æ‰€åœ¨ </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> æ–°ã—ã„スカートをæŒç‰©ã‹ã‚‰ã‚¢ãƒã‚¿ãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦è£…ç€ã—ã¾ã—ょã†ã€‚ 完全ã«æ–°è¦ã®çŠ¶æ…‹ã‹ã‚‰ä½œæˆã—ã¦è£…ç€ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> ã‚ãªãŸã¯ã“ã®æœã®ä¿®æ£ã‚’許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 </text> - <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž" /> - <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" - tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" /> - <button label="スカートを作æˆ" label_selected="スカートを作æˆ" - name="Create New" /> - <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off" /> - <button label="ä¿å˜" label_selected="ä¿å˜" name="Save" /> - <button label="別åã§ä¿å˜" label_selected="別åã§ä¿å˜" name="Save As" /> - <button label="戻ã™" label_selected="戻ã™" name="Revert" /> + <text name="Item Action Label"> + スカート: + </text> + <texture_picker label="生地" name="Fabric" tool_tip="写真をクリックã—ã¦é¸æŠž"/> + <color_swatch label="色ï¼æ˜Žæš—" name="Color/Tint" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> + <button label="スカートを作æˆ" label_selected="スカートを作æˆ" name="Create New"/> + <button label="å–り外ã™" label_selected="å–り外ã™" name="Take Off"/> + <button label="ä¿å˜" label_selected="ä¿å˜" name="Save"/> + <button label="別åã§ä¿å˜..." label_selected="別åã§ä¿å˜..." name="Save As"/> + <button label="戻ã™" label_selected="戻ã™" name="Revert"/> </panel> </tab_container> - <button label="æœè£…を作æˆ" label_selected="æœè£…を作æˆ" name="Make Outfit" /> - <button label="ã™ã¹ã¦ä¿å˜" label_selected="ã™ã¹ã¦ä¿å˜" name="Save All" /> - <button label="é–‰ã˜ã‚‹" label_selected="é–‰ã˜ã‚‹" name="Close" /> + <button label="ã‚ャンセル" label_selected="ã‚ャンセル" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="æœè£…を作æˆ..." label_selected="æœè£…を作æˆ..." name="Make Outfit"/> </floater> diff --git a/indra/newview/skins/default/xui/ja/floater_font_test.xml b/indra/newview/skins/default/xui/ja/floater_font_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..b853f395dd53a27338288df0afe60bd2264a2f52 --- /dev/null +++ b/indra/newview/skins/default/xui/ja/floater_font_test.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="フォントã®ãƒ†ã‚¹ãƒˆ"> + <text name="linea"> + オーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ†ã‚¹ãƒˆ - Times Romanã§ã“ã“ã«è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ (default/xui/en-us フォルダー内) + </text> +</floater> diff --git a/indra/newview/skins/default/xui/ja/floater_god_tools.xml b/indra/newview/skins/default/xui/ja/floater_god_tools.xml index 7524356bfca4b0bfc7c7f6a50d95f4e42573fd2f..d91744c391831ab4ed64f3bbd9c05c883a2faf83 100644 --- a/indra/newview/skins/default/xui/ja/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/ja/floater_god_tools.xml @@ -143,7 +143,7 @@ オブジェクト<パターン> </combo_item> <combo_item name="rez<asset_id>"> - rez <asset_id> + rez <asset_id> </combo_item> </combo_box> <text name="Parameter:"> diff --git a/indra/newview/skins/default/xui/ja/floater_land_holdings.xml b/indra/newview/skins/default/xui/ja/floater_land_holdings.xml index ba85592dd93eebe95472ffd1f197dbbe165c4b4d..cb87dafb49f2688e9723009806c98005ff1d2468 100644 --- a/indra/newview/skins/default/xui/ja/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/ja/floater_land_holdings.xml @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="land holdings floater" title="自分ã®åœŸåœ°"> <scroll_list name="parcel list"> - <column label="åå‰" name="name"/> - <column label="ä½ç½®" name="location"/> + <column label="区画å" name="name"/> + <column label="地域(リージョン)" name="location"/> + <column label="種類" name="type"/> <column label="é¢ç©" name="area"/> <column label="" name="hidden"/> </scroll_list> diff --git a/indra/newview/skins/default/xui/ja/floater_preview_gesture.xml b/indra/newview/skins/default/xui/ja/floater_preview_gesture.xml index 177895f44ec1724907b4b552cd656aee45ff5642..9ddf537fee0c321fdc787eec05b618646d3a77ac 100644 --- a/indra/newview/skins/default/xui/ja/floater_preview_gesture.xml +++ b/indra/newview/skins/default/xui/ja/floater_preview_gesture.xml @@ -15,10 +15,10 @@ <text name="trigger_label"> トリガー: </text> - <text name="replace_text" tool_tip="トリガー・ワードをã“れらã®å˜èªžã«ç½®ãæ›ãˆã¾ã™ã€‚ ãŸã¨ãˆã°ã€ãƒˆãƒªã‚¬ãƒ¼'hello'ã‚’'Howdy'ã«ç½®æ›ã™ã‚‹ã¨ã€'I wanted to say hello'ã¨ã„ã†ãƒãƒ£ãƒƒãƒˆæ–‡ãŒ'I wanted to say howdy'ã«å¤‰ã‚ã‚Šã€ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã«ã‚‚ç½®æ›ãŒåæ˜ ã•ã‚Œã¾ã™ã€‚"> + <text name="replace_text" tool_tip="トリガー・ワードをã“れらã®å˜èªžã«ç½®ãæ›ãˆã¾ã™ã€‚ ãŸã¨ãˆã°ã€ãƒˆãƒªã‚¬ãƒ¼ã€Œhelloã€ã‚’「Howdyã€ã«ç½®æ›ã™ã‚‹ã¨ã€ã€ŒI wanted to say helloã€ã¨ã„ã†ãƒãƒ£ãƒƒãƒˆæ–‡ãŒã€ŒI wanted to say howdyã€ã«å¤‰ã‚ã‚Šã€ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã«ã‚‚ç½®æ›ãŒåæ˜ ã•ã‚Œã¾ã™ã€‚"> ç½®æ›ï¼š </text> - <line_editor name="replace_editor" tool_tip="トリガー・ワードをã“れらã®å˜èªžã«ç½®ãæ›ãˆã¾ã™ã€‚ ãŸã¨ãˆã°ã€ãƒˆãƒªã‚¬ãƒ¼'hello'ã‚’'Howdy'ã«ç½®æ›ã™ã‚‹ã¨ã€'I wanted to say hello'ã¨ã„ã†ãƒãƒ£ãƒƒãƒˆæ–‡ãŒ'I wanted to say howdy'ã«å¤‰ã‚ã‚Šã€ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã«ã‚‚ç½®æ›ãŒåæ˜ ã•ã‚Œã¾ã™ã€‚"/> + <line_editor name="replace_editor" tool_tip="トリガー・ワードをã“れらã®å˜èªžã«ç½®ãæ›ãˆã¾ã™ã€‚ ãŸã¨ãˆã°ã€ãƒˆãƒªã‚¬ãƒ¼ã€Œhelloã€ã‚’「Howdyã€ã«ç½®æ›ã™ã‚‹ã¨ã€ã€ŒI wanted to say helloã€ã¨ã„ã†ãƒãƒ£ãƒƒãƒˆæ–‡ãŒã€ŒI wanted to say howdyã€ã«å¤‰ã‚ã‚Šã€ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã«ã‚‚ç½®æ›ãŒåæ˜ ã•ã‚Œã¾ã™ã€‚"/> <text name="key_label"> ショートカット・ã‚ー: </text> diff --git a/indra/newview/skins/default/xui/ja/floater_report_abuse.xml b/indra/newview/skins/default/xui/ja/floater_report_abuse.xml index f2269e429fea9f4cf12213c8161f99d49732c6a4..b523023e6e2792560218afe62e6c6ed0e619136f 100644 --- a/indra/newview/skins/default/xui/ja/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/ja/floater_report_abuse.xml @@ -41,112 +41,112 @@ カテゴリーをé¸æŠž </combo_item> <combo_item name="Age__Age_play"> - å¹´é½¢>å¹´é½¢å½è¨¼ + 年齢>年齢å½è¨¼ </combo_item> <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> - å¹´é½¢>æˆäººã®ä½äººãŒTeen Second Life上ã«ã„ã‚‹ + 年齢>æˆäººã®ä½äººãŒTeen Second Life上ã«ã„ã‚‹ + </combo_item> + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + 年齢>未æˆå¹´ãªä½äººãŒTeen Second Lifeã®å¤–ã«ã„ã‚‹ </combo_item> - - - <combo_item name="Assault__Combat_sandbox___unsafe_area"> - 攻撃>コンãƒãƒƒãƒˆãƒ»ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹/å±é™ºãªã‚¨ãƒªã‚¢ + 攻撃>コンãƒãƒƒãƒˆãƒ»ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹/å±é™ºãªã‚¨ãƒªã‚¢ </combo_item> <combo_item name="Assault__Safe_area"> - 攻撃>安全ãªã‚¨ãƒªã‚¢ + 攻撃>安全ãªã‚¨ãƒªã‚¢ </combo_item> <combo_item name="Assault__Weapons_testing_sandbox"> - 攻撃>æ¦å™¨ãƒ†ã‚¹ãƒˆç”¨ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹ + 攻撃>æ¦å™¨ãƒ†ã‚¹ãƒˆç”¨ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹ </combo_item> <combo_item name="Commerce__Failure_to_deliver_product_or_service"> - 商å–引>製å“ã¾ãŸã¯ã‚µãƒ¼ãƒ“スã®æä¾›ãŒè¡Œã‚ã‚Œãªã„ + 商å–引>製å“ã¾ãŸã¯ã‚µãƒ¼ãƒ“スã®æä¾›ãŒè¡Œã‚ã‚Œãªã„ </combo_item> <combo_item name="Disclosure__Real_world_information"> - 開示 > リアルワールドã®æƒ…å ± + 開示>リアルワールドã®æƒ…å ± </combo_item> <combo_item name="Disclosure__Remotely_monitoring chat"> - 開示>離れãŸã¨ã“ã‚ã‹ã‚‰ãƒãƒ£ãƒƒãƒˆã‚’モニターã—ã¦ã„ã‚‹ + 開示>離れãŸã¨ã“ã‚ã‹ã‚‰ãƒãƒ£ãƒƒãƒˆã‚’モニターã—ã¦ã„ã‚‹ </combo_item> <combo_item name="Disclosure__Second_Life_information_chat_IMs"> - 開示>Second Lifeã®æƒ…å ±/ãƒãƒ£ãƒƒãƒˆ/IM + 開示>Second Lifeã®æƒ…å ±/ãƒãƒ£ãƒƒãƒˆ/IM </combo_item> <combo_item name="Disturbing_the_peace__Unfair_use_of_region_resources"> - å¹³ç©ã‚’ä¹±ã™è¡Œç‚º>地域リソースã®ä½¿ç”¨ãŒä¸å…¬å¹³ + å¹³ç©ã‚’ä¹±ã™è¡Œç‚ºï¼žåœ°åŸŸãƒªã‚½ãƒ¼ã‚¹ã®ä½¿ç”¨ãŒä¸å…¬å¹³ </combo_item> <combo_item name="Disturbing_the_peace__Excessive_scripted_objects"> - å¹³ç©ã‚’ä¹±ã™è¡Œç‚º>スクリプト・オブジェクトã®ä¹±ç”¨ + å¹³ç©ã‚’ä¹±ã™è¡Œç‚ºï¼žã‚¹ã‚¯ãƒªãƒ—ト・オブジェクトã®ä¹±ç”¨ </combo_item> <combo_item name="Disturbing_the_peace__Object_littering"> - å¹³ç©ã‚’ä¹±ã™è¡Œç‚º>オブジェクトã®æ¨ã¦ç½®ã + å¹³ç©ã‚’ä¹±ã™è¡Œç‚ºï¼žã‚ªãƒ–ジェクトã®æ¨ã¦ç½®ã </combo_item> <combo_item name="Disturbing_the_peace__Repetitive_spam"> - å¹³ç©ã‚’ä¹±ã™è¡Œç‚º>ç¹°ã‚Šè¿”ã—スパム+ å¹³ç©ã‚’ä¹±ã™è¡Œç‚ºï¼žç¹°ã‚Šè¿”ã—スパム</combo_item> <combo_item name="Disturbing_the_peace__Unwanted_advert_spam"> - å¹³ç©ã‚’ä¹±ã™è¡Œç‚º>ä¸è¦ãªåºƒå‘Šã‚¹ãƒ‘ム+ å¹³ç©ã‚’ä¹±ã™è¡Œç‚ºï¼žä¸è¦ãªåºƒå‘Šã‚¹ãƒ‘ム</combo_item> <combo_item name="Fraud__L$"> - è©æ¬º> L$ + è©æ¬ºï¼ž L$ </combo_item> <combo_item name="Fraud__Land"> - è©æ¬º>土地 + è©æ¬ºï¼žåœŸåœ° </combo_item> <combo_item name="Fraud__Pyramid_scheme_or_chain_letter"> - è©æ¬º>マルãƒå•†æ³•ã¾ãŸã¯ãƒã‚§ãƒ¼ãƒ³ãƒ»ãƒ¡ãƒ¼ãƒ« + è©æ¬ºï¼žãƒžãƒ«ãƒå•†æ³•ã¾ãŸã¯ãƒã‚§ãƒ¼ãƒ³ãƒ»ãƒ¡ãƒ¼ãƒ« </combo_item> <combo_item name="Fraud__US$"> - è©æ¬º> US$ + è©æ¬ºï¼ž US$ </combo_item> <combo_item name="Harassment__Advert_farms___visual_spam"> - å«ŒãŒã‚‰ã›>広告委託/視覚的ãªã‚¹ãƒ‘ム+ å«ŒãŒã‚‰ã›ï¼žåºƒå‘Šå§”託/視覚的ãªã‚¹ãƒ‘ム</combo_item> <combo_item name="Harassment__Defaming_individuals_or_groups"> - å«ŒãŒã‚‰ã›>個人ã¾ãŸã¯ã‚°ãƒ«ãƒ¼ãƒ—ã®ä¸å‚· + å«ŒãŒã‚‰ã›ï¼žå€‹äººã¾ãŸã¯ã‚°ãƒ«ãƒ¼ãƒ—ã®ä¸å‚· </combo_item> <combo_item name="Harassment__Impeding_movement"> - å«ŒãŒã‚‰ã›>移動ã®å¦¨å®³ + å«ŒãŒã‚‰ã›ï¼žç§»å‹•ã®å¦¨å®³ </combo_item> <combo_item name="Harassment__Sexual_harassment"> - å«ŒãŒã‚‰ã›>性的ãªå«ŒãŒã‚‰ã› + å«ŒãŒã‚‰ã›ï¼žæ€§çš„ãªå«ŒãŒã‚‰ã› </combo_item> <combo_item name="Harassment__Solicting_inciting_others_to_violate_ToS"> - å«ŒãŒã‚‰ã›>利用è¦ç´„(ToS)ã«é•åã™ã‚‹è¡Œç‚ºã‚’è¡Œã†ã‚ˆã†ä»–者を勧誘/扇動 + å«ŒãŒã‚‰ã›ï¼žåˆ©ç”¨è¦ç´„(ToS)ã«é•åã™ã‚‹è¡Œç‚ºã‚’è¡Œã†ã‚ˆã†ä»–者を勧誘/扇動 </combo_item> <combo_item name="Harassment__Verbal_abuse"> - å«ŒãŒã‚‰ã›>暴言 + å«ŒãŒã‚‰ã›ï¼žæš´è¨€ </combo_item> <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> - ã‚ã„ã›ã¤>è‘—ã—ãä¸å¿«ã§ã‚ã‚‹ã¨è¦‹ãªã•ã‚Œã‚‹ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¾ãŸã¯è¡Œç‚º + ã‚ã„ã›ã¤ï¼žè‘—ã—ãä¸å¿«ã§ã‚ã‚‹ã¨è¦‹ãªã•ã‚Œã‚‹ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¾ãŸã¯è¡Œç‚º </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> - ã‚ã„ã›ã¤>ä¸é©åˆ‡ãªã‚¢ãƒã‚¿ãƒ¼å + ã‚ã„ã›ã¤ï¼žä¸é©åˆ‡ãªã‚¢ãƒã‚¿ãƒ¼å + </combo_item> + <combo_item name="Indecency__Mature_content_in_PG_region"> + ã‚ã„ã›ã¤ï¼žPG地域ã§ã®ä¸é©åˆ‡ãªã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¾ãŸã¯è¡Œç‚º + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + ã‚ã„ã›ã¤ï¼žMature地域ã§ã®ä¸é©åˆ‡ãªã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¾ãŸã¯è¡Œç‚º </combo_item> - - - <combo_item name="Intellectual_property_infringement_Content_Removal"> - 知的財産ã®ä¾µå®³ > コンテンツã®æ’¤åŽ» + 知的財産ã®ä¾µå®³ï¼žã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã®æ’¤åŽ» </combo_item> <combo_item name="Intellectual_property_infringement_CopyBot_or_Permissions_Exploit"> - 知的財産ã®ä¾µå®³ > コピーBotåŠã³æ¨©é™ã®æ‚ªç”¨ + 知的財産ã®ä¾µå®³ï¼žã‚³ãƒ”ーBotåŠã³æ¨©é™ã®æ‚ªç”¨ </combo_item> <combo_item name="Intolerance"> ä¸å¯›å®¹ </combo_item> <combo_item name="Land__Abuse_of_sandbox_resources"> - 土地>サンドボックス・リソースã®ä¹±ç”¨ + 土地>サンドボックス・リソースã®ä¹±ç”¨ </combo_item> <combo_item name="Land__Encroachment__Objects_textures"> - 土地>ä¸æ³•ä¾µå…¥>オブジェクト/テクスãƒãƒ£ãƒ¼ + 土地>ä¸æ³•ä¾µå…¥ï¼žã‚ªãƒ–ジェクト/テクスãƒãƒ£ãƒ¼ </combo_item> <combo_item name="Land__Encroachment__Particles"> - 土地>ä¸æ³•ä¾µå…¥>パーティクル + 土地>ä¸æ³•ä¾µå…¥ï¼žãƒ‘ーティクル </combo_item> <combo_item name="Land__Encroachment__Trees_plants"> - 土地>ä¸æ³•ä¾µå…¥>樹木/æ¤ç‰© + 土地>ä¸æ³•ä¾µå…¥ï¼žæ¨¹æœ¨/æ¤ç‰© </combo_item> <combo_item name="Wagering_gambling"> è³ã‘/ギャンブル diff --git a/indra/newview/skins/default/xui/ja/floater_sell_land.xml b/indra/newview/skins/default/xui/ja/floater_sell_land.xml index 1db0e2ad0efe03d3daad8993fcef33214a374767..90c83c2103005dee4d683fe5070eb070a0925f30 100644 --- a/indra/newview/skins/default/xui/ja/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/ja/floater_sell_land.xml @@ -1,20 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="sell land" title="土地を販売" height="511" min_height="511" > +<floater name="sell land" title="土地を販売" height="496" min_height="496" > <text name="info_parcel_label"> 区画: </text> - <text name="info_parcel" left="62"> + <text name="info_parcel"> 区画å </text> <text name="info_size_label"> サイズ: </text> - <text name="info_size" left="62"> + <text name="info_size"> [AREA]平方メートル </text> - <text name="info_action"> - ã“ã®åŒºç”»ã‚’販売ã™ã‚‹ã«ã¯: + <text name="info_action" bottom_delta="-57"> + ã“ã®åŒºç”»ã‚’販売㙠+ã‚‹ã«ã¯: </text> + <icon bottom_delta="-86" name="step_price" /> <text name="price_label"> ä¾¡æ ¼ã‚’è¨å®šï¼š </text> @@ -65,6 +67,6 @@ <text name="nag_message_label"> 注æ„:返å“や交æ›ã¯ã§ãã¾ã›ã‚“ </text> - <button label="売り地ã®è¨å®š" name="sell_btn" bottom="-505"/> + <button label="販売を決定" name="sell_btn" bottom="-489"/> <button label="å–り消ã—" name="cancel_btn" /> </floater> diff --git a/indra/newview/skins/default/xui/ja/floater_sound_preview.xml b/indra/newview/skins/default/xui/ja/floater_sound_preview.xml index cc890ce5be3d152fd73354fdd882a1642c2f0578..6bc259536f91545b1bd0ca0a914a08a32d9d8047 100644 --- a/indra/newview/skins/default/xui/ja/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/ja/floater_sound_preview.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="Name/Description" title="sound.wav"> +<floater name="Sound Preview" title="sound.wav"> <text name="name_label"> åå‰ï¼š </text> diff --git a/indra/newview/skins/default/xui/ja/floater_statistics.xml b/indra/newview/skins/default/xui/ja/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..de83e97b80309e0d2392fe3f8e5913b70ee61b4b --- /dev/null +++ b/indra/newview/skins/default/xui/ja/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="統計"/> diff --git a/indra/newview/skins/default/xui/ja/floater_telehub.xml b/indra/newview/skins/default/xui/ja/floater_telehub.xml index 9570d4079f8dd2cebcf75f285e6fc6c4cb107693..cd590abe3c8bab69c7cd6314cf24f3b932177f3b 100644 --- a/indra/newview/skins/default/xui/ja/floater_telehub.xml +++ b/indra/newview/skins/default/xui/ja/floater_telehub.xml @@ -7,10 +7,10 @@ テレãƒãƒ–未接続 </text> <text name="help_text_connected"> - [切æ–]をクリックã—ã¦å‰Šé™¤ã—ã¾ã™ã€‚ + 「切æ–ã€ã‚’クリックã—ã¦å‰Šé™¤ã—ã¾ã™ã€‚ </text> <text name="help_text_not_connected"> - 物体をé¸æŠžã—[テレãƒãƒ–ã®æŽ¥ç¶šã€ã‚’クリックã™ã‚‹ + 物体をé¸æŠžã—「テレãƒãƒ–ã®æŽ¥ç¶šã€ã‚’クリックã™ã‚‹ </text> <button label="テレãƒãƒ–ã®æŽ¥ç¶š" name="connect_btn" /> <button label="切æ–" name="disconnect_btn" /> @@ -20,7 +20,7 @@ <button label="出ç¾ä½ç½®ã‚’è¿½åŠ " name="add_spawn_point_btn" /> <button label="出ç¾åœ°ç‚¹ã‚’削除" name="remove_spawn_point_btn" /> <text name="spawn_point_help"> - 物体をé¸æŠžã—[è¿½åŠ ]をクリックã—ä½ç½®ã‚’指定。 + 物体をé¸æŠžã—ã€Œè¿½åŠ ã€ã‚’クリックã—ä½ç½®ã‚’指定。 物体を移動ã¾ãŸã¯å‰Šé™¤ã§ãる。 ä½ç½®ã¯ãƒ†ãƒ¬ãƒãƒ–・センターãŒåŸºæº–ã®ç›¸å¯¾ä½ç½®ã€‚ リスト内å“目をé¸æŠžã—ワールド内ä½ç½®ã‚’示ã™ã€‚ diff --git a/indra/newview/skins/default/xui/ja/floater_tools.xml b/indra/newview/skins/default/xui/ja/floater_tools.xml index 44e585b7b38247d1bd581ac4ed0c2bae45524dd6..0b03a04f3e2826b927e01a46537abc1d4748b89a 100644 --- a/indra/newview/skins/default/xui/ja/floater_tools.xml +++ b/indra/newview/skins/default/xui/ja/floater_tools.xml @@ -7,19 +7,19 @@ <button label="" label_selected="" name="button land" tool_tip="土地"/> <check_box label="ズーム" name="radio zoom"/> <check_box label="軌跡(Ctrl)" name="radio orbit"/> - <check_box label="パン(Ctrl+Shift)" name="radio pan"/> + <check_box label="パン(Ctrl+Shift)" name="radio pan"/> <check_box label="移動" name="radio move"/> <check_box label="æŒã¡ä¸Šã’る(Ctrl)" name="radio lift"/> - <check_box label="スピン(Ctrl+Shift)" name="radio spin"/> + <check_box label="スピン(Ctrl+Shift)" name="radio spin"/> <check_box label="ä½ç½®" name="radio position"/> <check_box label="回転(Ctrl)" name="radio rotate"/> - <check_box label="引伸ã°ã™ï¼ˆCtrl+Shift)" name="radio stretch"/> + <check_box label="引伸ã°ã™ï¼ˆCtrl+Shift)" name="radio stretch"/> <check_box label="テクスãƒãƒ£ãƒ¼ã‚’é¸æŠž" name="radio select face"/> <check_box label="リンク部ä½ã‚’編集" name="checkbox edit linked parts"/> - <text name="text ruler mode" width="120"> + <text name="text ruler mode" width="88"> ルーラー: </text> - <combo_box left_delta="110" name="combobox grid mode" width="60"> + <combo_box left_delta="60" name="combobox grid mode" width="76"> <combo_item name="World"> 世界 </combo_item> @@ -32,7 +32,7 @@ </combo_box> <check_box label="両å´ã‚’引伸ã°ã™" left="116" name="checkbox uniform"/> <check_box label="テクスãƒãƒ£ãƒ¼ã‚’引伸ã°ã™" name="checkbox stretch textures"/> - <check_box label="グリッド使用" left_delta="27" name="checkbox snap to grid"/> + <check_box label="グリッド使用" left_delta="27" name="checkbox snap to grid"/> <button label="オプション" label_selected="オプション" name="Options..."/> <text name="text status"> 移動ã™ã‚‹ã«ã¯ãƒ‰ãƒ©ãƒƒã‚°ã€ã‚³ãƒ”ーã™ã‚‹ã«ã¯Shiftã‚ーを押ã—ãªãŒã‚‰ãƒ‰ãƒ©ãƒƒã‚° @@ -74,10 +74,10 @@ 強度 </text> <text name="obj_count"> - é¸æŠžã—ãŸã‚ªãƒ–ジェクト: [COUNT] + é¸æŠžã‚ªãƒ–ジェクト:[COUNT] </text> <text name="prim_count"> - プリム: [COUNT] + プリム:[COUNT] </text> <tab_container name="Object Info Tabs" tab_max_width="150" tab_min_width="30"> <panel label="一般" name="General"> @@ -93,14 +93,14 @@ <text name="Creator Name"> Thrax Linden </text> - <button label="プロフィール..." label_selected="プロフィール..." name="button creator profile"/> + <button label="æƒ…å ±..." label_selected="æƒ…å ±..." name="button creator profile"/> <text name="Owner:"> オーナー: </text> <text name="Owner Name"> Thrax Linden </text> - <button label="プロフィール..." label_selected="プロフィール..." name="button owner profile"/> + <button label="æƒ…å ±..." label_selected="æƒ…å ±..." name="button owner profile"/> <text name="Group:"> グループ: </text> @@ -114,7 +114,7 @@ <text name="perm_modify"> ã“ã®ã‚ªãƒ–ジェクトã¯ä¿®æ£ã§ãã¾ã™ã€‚ </text> - <check_box label="グループã§å…±åŒç®¡ç†" name="checkbox share with group" tool_tip="グループ・メンãƒãƒ¼ã«å¯¾ã—ã¦ç§»å‹•ã€ä¿®æ£ã€ã‚³ãƒ”ーã€å‰Šé™¤ã‚’許å¯"/> + <check_box label="グループã§å…±åŒç®¡ç†" name="checkbox share with group" tool_tip="è¨å®šã—ãŸã‚°ãƒ«ãƒ¼ãƒ—ã«å±žã™ã‚‹ã™ã¹ã¦ã®ãƒ¡ãƒ³ãƒãƒ¼ã¨ã“ã®ã‚ªãƒ–ジェクトã®æ¨©é™ã‚’共有ã—ã¾ã™ã€‚ 役割制é™ã‚’有効ã«ã™ã‚‹ã«ã¯ã€è²æ¸¡ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚"/> <string name="text deed continued"> è²æ¸¡... </string> @@ -206,7 +206,7 @@ 権é™ã‚’è¨å®šã™ã‚‹ã«ã¯ã€ã‚ªãƒ–ジェクト全体をé¸æŠžã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ </string> <string name="Cost Default"> - ä¾¡æ ¼ï¼š L$ + ä¾¡æ ¼ï¼š L$ </string> <string name="Cost Total"> åˆè¨ˆä¾¡æ ¼ï¼š L$ @@ -221,7 +221,7 @@ æ··åˆè²©å£² </string> </panel> - <panel label="オブジェクト" name="Object"> + <panel label="形状" name="Object"> <text name="select_single"> プリムを1ã¤ã ã‘é¸æŠžã—ã¦ç·¨é›†ã—ã¦ãã ã•ã„ </text> @@ -405,24 +405,24 @@ オブジェクトã®ç‰¹å¾´ã‚’編集: </text> <check_box label="フレã‚シブル・パス" name="Flexible1D Checkbox Ctrl" tool_tip="Z軸をä¸å¿ƒã¨ã™ã‚‹ã‚ªãƒ–ジェクトã®æŠ˜ã‚Œæ›²ãŒã‚Šã‚’有効ã«ã™ã‚‹ (クライアントå´ã®ã¿ï¼‰"/> - <spinner label="柔軟性" name="FlexNumSections"/> - <spinner label="é‡åŠ›" name="FlexGravity"/> - <spinner label="ドラッグ" name="FlexFriction"/> - <spinner label="風" name="FlexWind"/> - <spinner label="ç·Šå¼µ" name="FlexTension"/> - <spinner label="X軸方å‘ã®åŠ›" name="FlexForceX"/> - <spinner label="Y軸方å‘ã®åŠ›" name="FlexForceY"/> - <spinner label="Z軸方å‘ã®åŠ›" name="FlexForceZ"/> + <spinner label="柔軟性" name="FlexNumSections" width="135" label_width="72"/> + <spinner label="é‡åŠ›" name="FlexGravity" width="135" label_width="72"/> + <spinner label="ドラッグ" name="FlexFriction" width="135" label_width="72"/> + <spinner label="風" name="FlexWind" width="135" label_width="72"/> + <spinner label="ç·Šå¼µ" name="FlexTension" width="135" label_width="72"/> + <spinner label="X軸方å‘ã®åŠ›" name="FlexForceX" width="135" label_width="72"/> + <spinner label="Y軸方å‘ã®åŠ›" name="FlexForceY" width="135" label_width="72"/> + <spinner label="Z軸方å‘ã®åŠ›" name="FlexForceZ" width="135" label_width="72"/> <check_box label="å…‰" name="Light Checkbox Ctrl" tool_tip="オブジェクトãŒç™ºå…‰"/> <text name="label color"> 色 </text> - <color_swatch label="" name="colorswatch" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> - <spinner label="è¼åº¦" name="Light Intensity"/> - <spinner label="åŠå¾„" name="Light Radius"/> - <spinner label="å¼±ã¾ã‚‹" name="Light Falloff"/> + <color_swatch label="" name="colorswatch" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã" left_delta="74"/> + <spinner label="è¼åº¦" name="Light Intensity" width="135" label_width="72"/> + <spinner label="åŠå¾„" name="Light Radius" width="135" label_width="72"/> + <spinner label="å¼±ã¾ã‚‹" name="Light Falloff" width="135" label_width="72"/> </panel> - <panel label="テクスãƒãƒ£ãƒ¼" name="Texture"> + <panel label="æ質" name="Texture"> <texture_picker label="テクスãƒãƒ£ãƒ¼" name="texture control" tool_tip="写真をクリックã—ã¦é¸æŠž"/> <color_swatch label="色" name="colorswatch" tool_tip="カラー・ピッカーをクリックã—ã¦é–‹ã"/> <text name="color trans"> @@ -548,11 +548,11 @@ メディア・テクスãƒãƒ£ãƒ¼ã‚’æƒãˆã‚‹ (最åˆã«ãƒãƒ¼ãƒ‰ã™ã‚‹ã“ã¨ï¼‰ </text> - <button bottom="-361" label="æƒãˆã‚‹" label_selected="æƒãˆã‚‹" left="155" name="button align"/> + <button bottom="-365" label="æƒãˆã‚‹" label_selected="æƒãˆã‚‹" left="155" name="button align"/> </panel> - <panel label="コンテンツ" name="Contents"> - <button label="æ–°ã—ã„スクリプト" label_selected="æ–°ã—ã„スクリプト..." name="button new script"/> - <button label="権é™..." name="button permissions"/> + <panel label="ä¸èº«" name="Contents"> + <button label="æ–°ã—ã„スクリプト" label_selected="æ–°ã—ã„スクリプト" name="button new script" width="120"/> + <button label="権é™..." name="button permissions" left_delta="130" width="80"/> </panel> </tab_container> <panel name="land info panel"> @@ -567,7 +567,7 @@ </text> <button label="åœŸåœ°æƒ…å ±..." label_selected="åœŸåœ°æƒ…å ±..." name="button about land"/> <check_box label="オーナーを表示" name="checkbox show owners" tool_tip="所有権別ã«åŒºç”»ã‚’色分ã‘ã—ã¾ã™"/> - <button label="?" label_selected="?" name="button show owners help"/> + <button label="?" label_selected="?" name="button show owners help" left_delta="114"/> <text name="label_parcel_modify"> 区画ã®ç·¨é›† </text> @@ -586,7 +586,7 @@ é¸æŠžã—ãŸå´ã‚’クリックã—ã€ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦å¼•ã伸ã°ã™ </string> <string name="status_move"> - ドラッグã—移動、シフトキーを押ã—ãªãŒã‚‰ï¾„゙ラッグã—コピー + 移動:ドラッグã€ã‚³ãƒ”ー:Shiftを押ã—ãªãŒã‚‰ï¾„゙ラッグ </string> <string name="status_modifyland"> 土地をクリックã—ã€ãƒœã‚¿ãƒ³ã‚’押ã—ãŸã¾ã¾å…¥åŠ›ã—ã¦ä¿®æ£å¤‰æ›´ @@ -595,7 +595,7 @@ クリックã—ドラッグã—ã¦è¦–界を調整 </string> <string name="status_grab"> - ドラッグã§ç§»å‹•ã€Ctrlã§æŒã¡ä¸Šã’ã€Ctrl-Shiftã§å›žè»¢ + 移動:ドラッグã€æŒã¡ä¸Šã’:Ctrlã€å›žè»¢ï¼šCtrl+Shift </string> <string name="status_place"> インワールドã§ã‚¯ãƒªãƒƒã‚¯ã—ã¦ä½œæˆ 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 026247f752ecf49222cba696dd1e73df5a23de51..a7a6e305ae186eb3f1396f1a9728cbe36a23a5ea 100644 --- a/indra/newview/skins/default/xui/ja/floater_world_map.xml +++ b/indra/newview/skins/default/xui/ja/floater_world_map.xml @@ -1,92 +1,62 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="worldmap" title="世界地図"> <tab_container name="maptab"> - <panel label="オブジェクト" name="objects_mapview" /> - <panel label="地形" name="terrain_mapview" /> + <panel label="オブジェクト" name="objects_mapview"/> + <panel label="地形" name="terrain_mapview"/> </tab_container> - <text name="land_for_sale_label"> - 売出ã—ä¸ã®åœŸåœ° - </text> - <text name="auction_label"> - オークション - </text> <text name="you_label"> ã‚ãªãŸ </text> <text name="home_label"> ホーム</text> - <button label="ホームã¸" label_selected="ホームã¸" name="Go Home" - tool_tip="自分ã®ãƒ›ãƒ¼ãƒ ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆ" /> - <text name="classifieds_label"> - クラシファイド広告 - </text> - <check_box label=" " name="class_chk" /> - <text name="person_label"> - 人 - </text> - <check_box label=" " name="people_chk" /> - <text name="infohub_label"> - インフォãƒãƒ– - </text> - <check_box label=" " name="infohub_chk" /> - <text name="telehub_label"> - テレãƒãƒ– - </text> - <check_box label=" " name="telehubchk" /> - <text name="popular_label"> - 人気 + <text name="auction_label"> + オークション </text> - <check_box label=" " name="popular_chk" /> - <text left_delta="15" name="land_for_sale_label2"> + <icon left="1123" name="square"/> + <text left_delta="20" name="land_for_sale_label"> 売出ã—ä¸ã®åœŸåœ° </text> - <check_box label=" " left_delta="85" name="land_for_sale_chk" /> + <button label="ホームã¸" label_selected="ホームã¸" name="Go Home" tool_tip="自分ã®ãƒ›ãƒ¼ãƒ ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆ"/> + <check_box label="ä½äºº" name="people_chk"/> + <check_box label="インフォãƒãƒ–" name="infohub_chk"/> + <check_box label="テレãƒãƒ–" name="telehubchk"/> + <check_box label="売り地" name="land_for_sale_chk"/> <text name="events_label"> - イベント + イベント: </text> - <check_box label=" " name="event_chk" /> - - <check_box label="" name="event_mature_chk" /> - <combo_box label="オンラインã®ãƒ•ãƒ¬ãƒ³ãƒ‰" name="friend combo" - tool_tip="Friend to Show on Map"> + <check_box label="PG" name="event_chk"/> + <check_box label="Mature" name="event_mature_chk"/> + <check_box label="Adult" name="event_adult_chk"/> + <combo_box label="オンラインã®ãƒ•ãƒ¬ãƒ³ãƒ‰" name="friend combo" tool_tip="地図ã«è¡¨ç¤ºã•ã‚ŒãŸãƒ•ãƒ¬ãƒ³ãƒ‰"> <combo_item name="none_selected"> オンラインã®ãƒ•ãƒ¬ãƒ³ãƒ‰ </combo_item> </combo_box> - <combo_box label="ランドマーク" name="landmark combo" - tool_tip="Landmark to Show on Map"> + <combo_box label="ランドマーク" name="landmark combo" tool_tip="地図ã«è¡¨ç¤ºã•ã‚ŒãŸãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯"> <combo_item name="none_selected"> ランドマーク </combo_item> </combo_box> - <line_editor label="地域åã§æ¤œç´¢" name="location" - tool_tip="地域åを入力ã—ã¦ãã ã•ã„。" /> - <button label="検索" name="DoSearch" tool_tip="地域検索" /> + <line_editor label="地域åã§æ¤œç´¢" name="location" tool_tip="地域åを入力ã—ã¦ãã ã•ã„。"/> + <button label="検索" name="DoSearch" tool_tip="地域検索"/> <text name="search_label"> 検索çµæžœï¼š </text> <scroll_list name="search_results"> - <column label="" name="icon" /> - <column label="" name="sim_name" /> + <column label="" name="icon"/> + <column label="" name="sim_name"/> </scroll_list> <text name="location_label"> - ãƒã‚±ãƒ¼ã‚·ãƒ§ãƒ³ï¼š - </text> - <spinner name="spin x" tool_tip="地図上ã«è¡¨ç¤ºã•ã‚Œã‚‹ä½ç½®ã®X座標" /> - <spinner name="spin y" tool_tip="地図上ã«è¡¨ç¤ºã•ã‚Œã‚‹ä½ç½®ã®Y座標" /> - <spinner name="spin z" tool_tip="地図上ã«è¡¨ç¤ºã•ã‚Œã‚‹ä½ç½®ã®Z座標" /> - <button label="テレãƒãƒ¼ãƒˆ" label_selected="テレãƒãƒ¼ãƒˆ" name="Teleport" - tool_tip="é¸æŠžã•ã‚ŒãŸãƒã‚±ãƒ¼ã‚·ãƒ§ãƒ³ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆ" /> - <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ã¨ã—ã¦ã‚³ãƒ”ーã—ã€ã‚¦ã‚§ãƒ–ã§ä½¿ç”¨" /> - <slider label="ズーム" name="zoom slider" /> + ä½ç½®ï¼š + </text> + <spinner name="spin x" tool_tip="地図上ã«è¡¨ç¤ºã•ã‚Œã‚‹ä½ç½®ã®X座標"/> + <spinner name="spin y" tool_tip="地図上ã«è¡¨ç¤ºã•ã‚Œã‚‹ä½ç½®ã®Y座標"/> + <spinner name="spin z" tool_tip="地図上ã«è¡¨ç¤ºã•ã‚Œã‚‹ä½ç½®ã®Z座標"/> + <button label="テレãƒãƒ¼ãƒˆ" label_selected="テレãƒãƒ¼ãƒˆ" name="Teleport" tool_tip="é¸æŠžã•ã‚ŒãŸãƒã‚±ãƒ¼ã‚·ãƒ§ãƒ³ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆ"/> + <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ã¨ã—ã¦ã‚³ãƒ”ーã—ã€ã‚¦ã‚§ãƒ–ã§ä½¿ç”¨"/> + <slider label="ズーム" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/ja/menu_login.xml b/indra/newview/skins/default/xui/ja/menu_login.xml index 1ebc9d1c88cbdbcc1709ccd2a89b547559c2e1d3..906822e54b0f61391452537ecd23c5ee381903d6 100644 --- a/indra/newview/skins/default/xui/ja/menu_login.xml +++ b/indra/newview/skins/default/xui/ja/menu_login.xml @@ -7,7 +7,7 @@ <menu_item_call label="環境è¨å®š..." name="Preferences..." /> </menu> <menu label="ヘルプ" name="Help"> - <menu_item_call label="セカンドライフヘルプ" name="Second Life Help" /> + <menu_item_call label="Second Lifeヘルプ" name="Second Life Help" /> <menu_item_call label="Second Lifeã«ã¤ã„ã¦..." name="About Second Life..." /> </menu> </menu_bar> diff --git a/indra/newview/skins/default/xui/ja/menu_mini_map.xml b/indra/newview/skins/default/xui/ja/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..c8828a50beffa58d6af5ee1104fd318854936293 --- /dev/null +++ b/indra/newview/skins/default/xui/ja/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="ズーム(近)" name="Zoom Close"/> + <menu_item_call label="ズーム(ä¸ï¼‰" name="Zoom Medium"/> + <menu_item_call label="ズーム(é )" name="Zoom Far"/> + <menu_item_call label="追跡をやã‚ã‚‹" name="Stop Tracking"/> + <menu_item_call label="プãƒãƒ•ã‚£ãƒ¼ãƒ«..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/ja/menu_viewer.xml b/indra/newview/skins/default/xui/ja/menu_viewer.xml index 9d18436f1eb9fb16a5c876a020a781ed7c061395..c994995ed26bb1afdc6d116b265f5ec6b3dc3ddc 100644 --- a/indra/newview/skins/default/xui/ja/menu_viewer.xml +++ b/indra/newview/skins/default/xui/ja/menu_viewer.xml @@ -4,7 +4,7 @@ <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> <menu label="アップãƒãƒ¼ãƒ‰" name="upload"> <menu_item_call label="ç”»åƒ ï¼ˆL$[COST])..." name="Upload Image"/> - <menu_item_call label="アニメーション (L$[COST])..." name="Upload Sound"/> + <menu_item_call label="サウンド (L$[COST])..." name="Upload Sound"/> <menu_item_call label="アニメーション (L$[COST])..." name="Upload Animation"/> <menu_item_call label="一括 (ファイルã«ã¤ãL$[COST])..." name="Bulk Upload"/> <menu_item_separator label="-----------" name="separator"/> @@ -83,6 +83,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_check label="地域ã®çµ±è¨ˆæƒ…å ±" name="Statistics Bar"/> <menu_item_check label="土地ã®å¢ƒç•Œç·š" name="Property Lines"/> + <menu_item_check label="ç«‹å…¥ç¦æ¢ãƒ©ã‚¤ãƒ³" name="Banlines"/> <menu_item_check label="土地オーナー" name="Land Owners"/> <menu_item_separator label="-----------" name="separator4"/> <menu label="ヒントã®ãƒãƒƒãƒ—アップ" name="Hover Tips"> @@ -170,7 +171,6 @@ <menu_item_call label="é¸æŠžç¯„囲ã«ã‚ºãƒ¼ãƒ イン" name="Zoom to Selection"/> <menu_item_call label="オブジェクトを購入" name="Menu Object Take"/> <menu_item_call label="コピーをå–ã‚‹" name="Take Copy"/> - <menu_item_call label="オブジェクトをæŒã¡ç‰©ã«æˆ»ã—ã¦ä¿å˜" name="Save Object Back to My Inventory"/> <menu_item_call label="オブジェクトをオブジェクト・コンテンツã«æˆ»ã—ã¦ä¿å˜" name="Save Object Back to Object Contents"/> <menu_item_separator label="-----------" name="separator6"/> <menu_item_call label="スクリプトè¦å‘Šï¼ã‚¨ãƒ©ãƒ¼ãƒ»ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’表示" name="Show Script Warning/Error Window"/> @@ -188,7 +188,9 @@ <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Lindenå…¬å¼ãƒ–ãƒã‚°..." name="Official Linden Blog..."/> <menu_item_separator label="-----------" name="separator2"/> - <menu_item_call label="スクリプト・ãƒãƒ¼ã‚¿ãƒ«..." name="Scripting Portal..."/> + <menu_item_call label="スクリプト・ãƒãƒ¼ã‚¿ãƒ«..." name="Scripting Portal..."> + <on_click name="ScriptingPortal_url" userdata="WebLaunchLSLWiki,http://wiki.secondlife.com/wiki/LSL_Portal/ja" /> + </menu_item_call> <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="å«ŒãŒã‚‰ã›ã®å ±å‘Š..." name="Report Abuse..."/> <menu_item_call label="è¡çªã®è¨˜éŒ²..." name="Bumps, Pushes &amp; Hits..."/> @@ -196,9 +198,13 @@ <menu_item_separator label="-----------" name="separator7"/> <menu label="ãƒã‚°ã®å ±å‘Š" name="Bug Reporting"> <menu_item_call label="パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼..." name="Public Issue Tracker..."/> - <menu_item_call label="パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ ヘルプ..." name="Publc Issue Tracker Help..."/> + <menu_item_call label="パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ ヘルプ..." name="Publc Issue Tracker Help..."> + <on_click name="PublicIssueTrackerHelp_url" userdata="WebLaunchPublicIssueHelp,http://wiki.secondlife.com/wiki/Issue_tracker/ja" /> + </menu_item_call> <menu_item_separator label="-----------" name="separator7"/> - <menu_item_call label="ãƒã‚°ã®å ±å‘Š 101..." name="Bug Reporing 101..."/> + <menu_item_call label="ãƒã‚°ã®å ±å‘Š 101..." name="Bug Reporing 101..."> + <on_click name="BugReporting101_url" userdata="WebLaunchBugReport101,http://wiki.secondlife.com/wiki/Bug_Reporting_101"/> + </menu_item_call> <menu_item_call label="ã‚»ã‚ュリティå•é¡Œ..." name="Security Issues..."> <on_click name="SecurityIssues_url" userdata="WebLaunchSecurityIssues,http://wiki.secondlife.com/wiki/Security_issues/ja"/> </menu_item_call> diff --git a/indra/newview/skins/default/xui/ja/notifications.xml b/indra/newview/skins/default/xui/ja/notifications.xml index e96240471343da6cbc1fbff0ba0010245ab1ae4b..c20a4f50b486b6f28f522cd3ad9311cf0eb9e564 100644 --- a/indra/newview/skins/default/xui/ja/notifications.xml +++ b/indra/newview/skins/default/xui/ja/notifications.xml @@ -1,15 +1,11 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> 今後ã¯è¡¨ç¤ºã—ãªã„ - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> 常ã«ã“ã®ã‚ªãƒ—ションをé¸æŠž - </global> - + </global> <template name="okbutton"> <form> <button @@ -74,4088 +70,2246 @@ text="$canceltext"/> </form> </template> - - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -「[_NAME]ã€ãŒnotifications.xmlã«å«ã¾ã‚Œã¦ã„ã¾ã›ã‚“ï¼ - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -フãƒãƒ¼ã‚¿ãƒ»ã‚¨ãƒ©ãƒ¼ï¼šä¸‹è¨˜ã®ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸï¼š + <notification functor="GenericAcknowledge" label="ä¸æ˜Žãªè¦å‘Šãƒ¡ãƒƒã‚»ãƒ¼ã‚¸" name="MissingAlert"> + ã‚ãªãŸã® Second Life ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã¯ã€ +今å—ã‘å–ã£ãŸè¦å‘Šãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + +エラー詳細: 「[_NAME]ã€ã¨ã„ã†è¦å‘Šã¯ notifications.xml ã«ã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + フãƒãƒ¼ã‚¿ãƒ»ã‚¨ãƒ©ãƒ¼ï¼šä¸‹è¨˜ã®ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸï¼š [CONTROLS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -ç¾åœ¨åˆ©ç”¨å¯èƒ½ãªãƒãƒ¥ãƒ¼ãƒˆãƒªã‚¢ãƒ«ã¯ã‚ã‚Šã¾ã›ã‚“。 - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="WearableSave" - > -ç¾åœ¨ã®è¡£æœ/ボディーパーツã®å¤‰æ›´ã‚’ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="ã‚ャンセル" - name="yesnocancelbuttons" - notext="ä¿å˜ã—ãªã„" - yestext="ä¿å˜"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -次ã®ç†ç”±ã§ã€ã‚¹ã‚¯ãƒªãƒ—ト用テã‚ストã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON] 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -次ã®ç†ç”±ã§ã€ã‚³ãƒ³ãƒ‘イルã—ãŸã‚¹ã‚¯ãƒªãƒ—トã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="WriteAnimationFail" - > -アニメーションデータã®æ›¸ãè¾¼ã¿ã«å•é¡ŒãŒã‚ã‚Šã¾ã™ã€‚後ã§ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -次ã®ç†ç”±ã§ã€ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚¹ãƒŠãƒƒãƒ—ショットã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON] - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -一度ã«è¤‡æ•°ã®ã‚¢ã‚¤ãƒ†ãƒ ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯è¡¨ç¤ºã§ãã¾ã›ã‚“。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + ç¾åœ¨åˆ©ç”¨å¯èƒ½ãªãƒãƒ¥ãƒ¼ãƒˆãƒªã‚¢ãƒ«ã¯ã‚ã‚Šã¾ã›ã‚“。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="ã¯ã„"/> + </notification> + <notification name="BadInstallation"> + Second Life をアップデートä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ secondlife.com ã‹ã‚‰æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’ダウンãƒãƒ¼ãƒ‰ã—ã¦ãã ã•ã„。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LoginFailedNoNetwork"> + ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚¨ãƒ©ãƒ¼ï¼š 接続ãŒç¢ºç«‹ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ +「[DIAGNOSTIC]〠+ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯æŽ¥ç¶šã‚’確èªã—ã¦ãã ã•ã„。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MessageTemplateNotFound"> + メッセージテンプレート [PATH] ãŒã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="WearableSave"> + ç¾åœ¨ã®è¡£æœ/ボディーパーツã®å¤‰æ›´ã‚’ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="ã‚ャンセル" name="yesnocancelbuttons" notext="ä¿å˜ã—ãªã„" yestext="ä¿å˜"/> + </notification> + <notification name="CompileQueueSaveText"> + 次ã®ç†ç”±ã§ã€ã‚¹ã‚¯ãƒªãƒ—ト用テã‚ストã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON] 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="CompileQueueSaveBytecode"> + 次ã®ç†ç”±ã§ã€ã‚³ãƒ³ãƒ‘イルã—ãŸã‚¹ã‚¯ãƒªãƒ—トã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="WriteAnimationFail"> + アニメーションデータã®æ›¸ãè¾¼ã¿ã«å•é¡ŒãŒã‚ã‚Šã¾ã™ã€‚後ã§ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="UploadAuctionSnapshotFail"> + 次ã®ç†ç”±ã§ã€ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚¹ãƒŠãƒƒãƒ—ショットã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON] + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + 一度ã«è¤‡æ•°ã®ã‚¢ã‚¤ãƒ†ãƒ ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯è¡¨ç¤ºã§ãã¾ã›ã‚“。 é¸æŠžã™ã‚‹ã‚¢ã‚¤ãƒ†ãƒ ã‚’1ã¤ã ã‘ã«ã—ã¦ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -è¡£æœï¼èº«ä½“部ä½ã«å¯¾ã™ã‚‹å¤‰æ›´ã‚’ã™ã¹ã¦ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ä¿å˜ã—ãªã„" - yestext="ã™ã¹ã¦ä¿å˜"/> - </notification> - - <notification - - name="GrantModifyRights" - > -ä»–ã®ä½äººã«å¤‰æ›´æ¨©é™ã‚’与ãˆã‚‹ã¨ã€ãã®äººã¯ã‚ãªãŸãŒæ‰€æœ‰ã—ã¦ã„ã‚‹ + </notification> + <notification name="SaveClothingBodyChanges"> + è¡£æœï¼èº«ä½“部ä½ã«å¯¾ã™ã‚‹å¤‰æ›´ã‚’ã™ã¹ã¦ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ä¿å˜ã—ãªã„" yestext="ã™ã¹ã¦ä¿å˜"/> + </notification> + <notification name="GrantModifyRights"> + ä»–ã®ä½äººã«å¤‰æ›´æ¨©é™ã‚’与ãˆã‚‹ã¨ã€ãã®äººã¯ã‚ãªãŸãŒæ‰€æœ‰ã—ã¦ã„ã‚‹ ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを変更ã€å‰Šé™¤ã€ã¾ãŸã¯å–å¾—ã™ã‚‹ã“ã¨ãŒã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ã“ã®è¨±å¯ã‚’与ãˆã‚‹ã¨ãã¯ç´°å¿ƒã®æ³¨æ„を払ã£ã¦ãã ã•ã„。 [FIRST_NAME] [LAST_NAME]ã«å¯¾ã—ã¦å¤‰æ›´æ¨©é™ã‚’与ãˆã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -変更権é™ã‚’与ãˆã‚‹ã¨ã€ãã®äººã¯ã‚ãªãŸãŒä½œæˆã—ãŸå…¨ã¦ã®ã‚ªãƒ–ジェクトを -変更ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®è¨±å¯ã‚’与ãˆã‚‹ã¨ãã«ã¯ç´°å¿ƒã®æ³¨æ„ã‚’ -払ã£ã¦ãã ã•ã„。 + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + 変更権é™ã‚’与ãˆã‚‹ã¨ã€ãã®äººã¯ã‚ãªãŸãŒä½œæˆã—ãŸå…¨ã¦ã®ã‚ªãƒ–ジェクトを変更ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ +ã“ã®è¨±å¯ã‚’与ãˆã‚‹ã¨ãã«ã¯ç´°å¿ƒã®æ³¨æ„を払ã£ã¦ãã ã•ã„。 é¸æŠžã—ãŸä½äººã«å¤‰æ›´æ¨©é™ã‚’与ãˆã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -[FIRST_NAME] [LAST_NAME]ã«å¯¾ã—ã¦å¤‰æ›´æ¨©é™ã‚’å–り消ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -é¸æŠžã—ãŸä½äººã‹ã‚‰å¤‰æ›´æ¨©é™ã‚’å–り下ã’ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -グループを作æˆã§ãã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="RevokeModifyRights"> + [FIRST_NAME] [LAST_NAME]ã«å¯¾ã—ã¦å¤‰æ›´æ¨©é™ã‚’å–り消ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + é¸æŠžã—ãŸä½äººã‹ã‚‰å¤‰æ›´æ¨©é™ã‚’å–り下ã’ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="UnableToCreateGroup"> + グループを作æˆã§ãã¾ã›ã‚“。 [MESSAGE] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="変更を無視" - yestext="変更をé©ç”¨"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -グループ通知ã®é€ä¿¡ã«ã¯ã€ä»¶åã®è¨˜å…¥ãŒå¿…è¦ã§ã™ã€‚ - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -ã‚ãªãŸã¯ [ROLE_NAME]ã®å½¹å‰²ã«ãƒ¡ãƒ³ãƒãƒ¼ã‚’åŠ ãˆã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ã€‚ -任命ã•ã‚ŒãŸãƒ¡ãƒ³ãƒãƒ¼ãŒè‡ªã‚‰é€€ä»»ã—ãªã„ -é™ã‚Šã€å½¼ã‚‰ã‚’役柄ã‹ã‚‰å‰Šé™¤ã§ãã¾ã›ã‚“。 + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="変更を無視" yestext="変更をé©ç”¨"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + グループ通知ã®é€ä¿¡ã«ã¯ã€ä»¶åã®è¨˜å…¥ãŒå¿…è¦ã§ã™ã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + ã‚ãªãŸã¯ [ROLE_NAME]ã®å½¹å‰²ã«ãƒ¡ãƒ³ãƒãƒ¼ã‚’与ãˆã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ã€‚ +任命ã•ã‚ŒãŸãƒ¡ãƒ³ãƒãƒ¼ãŒè‡ªã‚‰é€€ä»»ã—ãªã„é™ã‚Šã€ +彼らを役柄ã‹ã‚‰å‰Šé™¤ã§ãã¾ã›ã‚“。 æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="オーナーã®å½¹å‰²ã«ã‚°ãƒ«ãƒ¼ãƒ—・メンãƒãƒ¼ã‚’åŠ ãˆã‚‹ã¨ã" - name="okcancelignore" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -ã‚ãªãŸã¯[ROLE_NAME]ã« [ACTION_NAME]ã®èƒ½åŠ›ã‚’ -åŠ ãˆã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ã€‚ + <usetemplate ignoretext="オーナーã®å½¹å‰²ã«ã‚°ãƒ«ãƒ¼ãƒ—・メンãƒãƒ¼ã‚’åŠ ãˆã‚‹ã¨ã" name="okcancelignore" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="AssignDangerousActionWarning"> + ã‚ãªãŸã¯[ROLE_NAME]ã« [ACTION_NAME]ã®èƒ½åŠ›ã‚’ +与ãˆã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ã€‚ *è¦å‘Š* - ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ - 自分ã¨ä»–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«ç¾åœ¨ã‚ˆã‚Šå¼·åŠ›ãªæ¨©é™ã‚’割り当ã¦ã€ +ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ +自分ã¨ä»–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«ç¾åœ¨ã‚ˆã‚Šå¼·åŠ›ãªæ¨©é™ã‚’割り当ã¦ã€ 自分をオーナーã¨ã»ã¼åŒæ§˜ã®ç«‹å ´ã« 任命ã™ã‚‹ã“ã¨ã‚‚ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ ã“ã®è¡Œç‚ºã®æ„味をよãç†è§£ã—ã¦ã‹ã‚‰ 実行ã—ã¦ãã ã•ã„。 -ã“ã®èƒ½åŠ›ã‚’[ROLE_NAME]ã«åŠ ãˆã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -ã‚ãªãŸã¯[ROLE_NAME]ã« [ACTION_NAME]ã®èƒ½åŠ›ã‚’ -åŠ ãˆã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ã€‚ +ã“ã®èƒ½åŠ›ã‚’[ROLE_NAME]ã«å‰²ã‚Šå½“ã¦ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + ã‚ãªãŸã¯[ROLE_NAME]ã« [ACTION_NAME]ã®èƒ½åŠ›ã‚’ +与ãˆã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ã€‚ *è¦å‘Š* - ã“ã®èƒ½åŠ›ã‚’ã‚‚ã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€è‡ªåˆ†ã¨ä»–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«ã™ã¹ã¦ã® -能力を割り当ã¦ã€è‡ªåˆ†ã‚’オーナーã¨ã»ã¼åŒæ§˜ã®ç«‹å ´ã« -任命ã§ãã¾ã™ã€‚ - -ã“ã®èƒ½åŠ›ã‚’[ROLE_NAME]ã«åŠ ãˆã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -「検索ã§å…¬é–‹ã€ã‚’é¸æŠž +ã“ã®èƒ½åŠ›ã‚’ã‚‚ã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ +自分ã¨ä»–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«ã™ã¹ã¦ã®èƒ½åŠ›ã‚’割り当ã¦ã€ +自分をオーナーã¨ã»ã¼åŒæ§˜ã®ç«‹å ´ã«ä»»å‘½ã§ãã¾ã™ã€‚ + +ã“ã®èƒ½åŠ›ã‚’[ROLE_NAME]ã«å‰²ã‚Šå½“ã¦ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="ClickPublishHelpLand"> + 「検索ã§å…¬é–‹ã€ã‚’é¸æŠž ã“ã®ãƒœãƒƒã‚¯ã‚¹ã«ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨è¡¨ç¤ºï¼š - 検索çµæžœã«ãŠã‘ã‚‹ã“ã®åŒºç”» - ã“ã®åŒºç”»ã®ãƒ‘ブリック・オブジェクト - ウェブ検索ã«ãŠã‘ã‚‹ã“ã®åŒºç”» - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -ã“ã®åŒºç”»ã¯æ¤œç´¢ã‚’ç¦ãšã‚‹åœ°åŸŸã«ã‚ã‚‹ãŸã‚〠+ </notification> + <notification name="ClickSoundHelpLand"> + メディアã¨éŸ³æ¥½ã¯ã“ã®åŒºç”»å†…ã§ã®ã¿ãŠæ¥½ã—ã¿ã„ãŸã ã‘ã¾ã™ã€‚ サウンドã¨ãƒœã‚¤ã‚¹ã¯åŒºç”»å†…é™å®šã‹ã€å„自ã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã£ã¦ã¯åŒºç”»å¤–ã§ã‚‚èžãã“ã¨ãŒã§ãã¾ã™ã€‚ ナレッジベースを開ã„ã¦è¨å®šã®ä»•æ–¹ã‚’å¦ã³ã¾ã™ã‹ï¼Ÿ + <url name="url"> + http://wiki.secondlife.com/wiki/区画上ã®ãƒ¡ãƒ‡ã‚£ã‚¢_(KB) + </url> + <usetemplate name="okcancelbuttons" notext="é–‰ã˜ã‚‹" yestext="ナレッジベースを開ã"/> + </notification> + <notification name="ClickSearchHelpAll"> + 検索çµæžœã¯ä»Šè¦‹ã¦ã„るタブã€ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã€é¸æŠžã—ãŸã‚«ãƒ†ã‚´ãƒªãã®ä»–ã‚’å…ƒã«ç·¨æˆã•ã‚Œã¦ã„ã¾ã™ã€‚ 詳細ã¯ãƒŠãƒ¬ãƒƒã‚¸ãƒ™ãƒ¼ã‚¹ã‚’ã”覧ãã ã•ã„。 + <url name="url"> + http://wiki.secondlife.com/wiki/検索ã«é–¢ã™ã‚‹ã‚ˆãã‚る質å•é›†_(KB) + </url> + <usetemplate name="okcancelbuttons" notext="é–‰ã˜ã‚‹" yestext="ナレッジベースを開ã"/> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + ã“ã®åŒºç”»ã¯æ¤œç´¢ã‚’ç¦ãšã‚‹åœ°åŸŸã«ã‚ã‚‹ãŸã‚〠ã“ã®åŒºç”»ã‚’検索ã«è¡¨ç¤ºã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="ClickPublishHelpAvatar" - > -「検索ã«è¡¨ç¤ºã€ã‚’é¸æŠžã™ã‚‹ã¨è¡¨ç¤ºï¼š + </notification> + <notification name="ClickPublishHelpAvatar"> + 「検索ã«è¡¨ç¤ºã€ã‚’é¸æŠžã™ã‚‹ã¨è¡¨ç¤ºï¼š - 検索çµæžœã«ãŠã‘る自分ã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ« -- パブリック・グループ・ページã«ãŠã‘る自分ã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«ã¸ã®ãƒªãƒ³ã‚¯ - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -[SECOND_LIFE]ã®ã‚¦ã‚§ãƒ–・サイトã‹ã‚‰ã€ä»–ã®ä½äººã¸ã®ãƒ—ãƒãƒãƒ¼ã‚ºã€ãƒ‘ートナー解消ãŒã§ãã¾ã™ã€‚ +- 公開グループ・ページã«ãŠã‘る自分ã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«ã¸ã®ãƒªãƒ³ã‚¯ + </notification> + <notification name="ClickPartnerHelpAvatar"> + [SECOND_LIFE]ã®ã‚¦ã‚§ãƒ–・サイトã‹ã‚‰ã€ +ä»–ã®ä½äººã¸ã®ãƒ—ãƒãƒãƒ¼ã‚ºã€ãƒ‘ートナー解消手続ããŒã§ãã¾ã™ã€‚ ウェブ・サイトã«è¡Œã£ã¦ パートナーã«é–¢ã™ã‚‹æƒ…å ±ã‚’å–å¾—ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="ページã«ç§»å‹•"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -ã“ã®ä½äººãŒã‚¦ã‚§ãƒ–・プãƒãƒ•ã‚£ãƒ¼ãƒ«URLã‚’è¨å®šã—ã¦ã„ã‚‹å ´åˆã¯ã€ä»¥ä¸‹ã®ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="ページã«ç§»å‹•"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + ã‚ãªãŸã®æŒã¤ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®æ¨©é™ã¯å¤ã„地域ã§ã¯ä½¿ãˆã¾ã›ã‚“。 + </notification> + <notification name="ClickWebProfileHelpAvatar"> + ã“ã®ä½äººãŒã‚¦ã‚§ãƒ–・プãƒãƒ•ã‚£ãƒ¼ãƒ«URLã‚’è¨å®šã—ã¦ã„ã‚‹å ´åˆã¯ã€ä»¥ä¸‹ã®ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚ * 「ãƒãƒ¼ãƒ‰ã€ã‚’クリックã—ã€ã“ã®ã‚¦ã‚§ãƒ–・タブ内ã§ãƒšãƒ¼ã‚¸ã‚’表示 * 「ãƒãƒ¼ãƒ‰ã€ï¼žã€Œå¤–部ブラウザ〠をクリックã—ã€ãƒ‡ã‚£ãƒ•ã‚©ãƒ«ãƒˆã®ã‚¦ã‚§ãƒ–・ブラウザã§ãƒšãƒ¼ã‚¸ã‚’表示 * 「ãƒãƒ¼ãƒ‰ã€ï¼žã€Œãƒ›ãƒ¼ãƒ URL〠をクリックã—ã€ä»–ã®ãƒšãƒ¼ã‚¸ã‹ã‚‰ã“ã®ä½äººã®ã‚¦ã‚§ãƒ–・プãƒãƒ•ã‚£ãƒ¼ãƒ«ã«æˆ»ã‚‹ 自分ã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«ã«ä»»æ„ã®URLを入力ã—OKをクリックã—ã¦ã€ã‚¦ã‚§ãƒ–・プãƒãƒ•ã‚£ãƒ¼ãƒ«ã¨ã—ã¦è¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ ãれを見ãŸä»–ã®ä½äººãŒãã®ã‚µã‚¤ãƒˆã‚’訪れるã“ã¨ãŒã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="JoinGroupCanAfford" - > -ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«å‚åŠ ã™ã‚‹ã«ã¯ã€L$[COST]ã‹ã‹ã‚Šã¾ã™ã€‚ + </notification> + <notification name="JoinGroupCanAfford"> + ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«å‚åŠ ã™ã‚‹ã«ã¯ã€L$[COST]ã‹ã‹ã‚Šã¾ã™ã€‚ 続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="å‚åŠ "/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«åŠ å…¥ã™ã‚‹ã«ã¯ã€L$[COST]å¿…è¦ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="å‚åŠ "/> + </notification> + <notification name="JoinGroupCannotAfford"> + ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«åŠ å…¥ã™ã‚‹ã«ã¯ã€L$[COST]å¿…è¦ã§ã™ã€‚ L$ãŒä¸è¶³ã—ã¦ã„ã‚‹ã®ã§ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«å‚åŠ ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="LandBuyPass" - > -L$[COST]㧠[TIME] 時間ã«ã‚ãŸã£ã¦ã€ã“ã®åœŸåœ°[PARCEL_NAME]ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚パスを購入ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -ä¸ç‰¹å®šã®äººã«å£²å´ã™ã‚‹å ´åˆã«ã¯ã€å£²å´ä¾¡æ ¼ã¯L$0以上ã«è¨å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ -売å´ä¾¡æ ¼ã‚’L$0ã«è¨å®šã™ã‚‹å ´åˆã¯ã€å£²å´ã™ã‚‹å€‹äººã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -é¸æŠžã•ã‚ŒãŸ[LAND_SIZE]平方メートルã®åœŸåœ°ã¯ã€å£²ã‚Šå‡ºã—ä¸ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="LandBuyPass"> + L$[COST]㧠[TIME]時間ã“ã®åœŸåœ°[PARCEL_NAME]ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ +å…¥å ´è¨±å¯ã‚’購入ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + ä¸ç‰¹å®šã®äººã«å£²å´ã™ã‚‹å ´åˆã«ã¯ã€ +売å´ä¾¡æ ¼ã¯L$0以上ã«è¨å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +売å´ä¾¡æ ¼ã‚’L$0ã«è¨å®šã™ã‚‹å ´åˆã¯ã€ +売å´ã™ã‚‹å€‹äººã‚’é¸æŠžã—ã¦ãã ã•ã„。 + </notification> + <notification name="ConfirmLandSaleChange"> + é¸æŠžã•ã‚ŒãŸ[LAND_SIZE]平方メートルã®åœŸåœ°ã¯ã€å£²ã‚Šå‡ºã—ä¸ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ 売å´ä¾¡æ ¼L$[SALE_PRICE]ã§ã€[NAME]ã«å£²å´ã‚’èªå¯ã—ã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -注:「誰ã«ã§ã‚‚売å´ã™ã‚‹ã€ã‚’クリックã™ã‚‹ã¨ã€ã‚ãªãŸã®åœŸåœ°ã¯ã€Second Lifeã®ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ã®ã©ã“ã‹ã‚‰ã§ã‚‚(ã“ã®åœ°åŸŸã«ãªã„コミュニティをå«ã‚€ï¼‰è³¼å…¥ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ - -é¸æŠžã•ã‚ŒãŸ[LAND_SIZE]平方メートルã®åœŸåœ°ã¯ã€å£²ã‚Šå‡ºã—ä¸ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + 注:「誰ã«ã§ã‚‚売å´ã™ã‚‹ã€ã‚’クリックã™ã‚‹ã¨ã€ +ã‚ãªãŸã®åœŸåœ°ã¯Second Life ã®ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ã®ã©ã“ã‹ã‚‰ã§ã‚‚ +(ã“ã®åœ°åŸŸã«ãªã„コミュニティをå«ã‚€ï¼‰è³¼å…¥ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ + +é¸æŠžã•ã‚ŒãŸ[LAND_SIZE]平方メートルã®åœŸåœ°ã¯ã€ +売り出ã—ä¸ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ 売å´ä¾¡æ ¼L$[SALE_PRICE]ã§ã€[NAME]ã«å£²å´ã‚’èªå¯ã—ã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -ã“ã®åŒºç”»ã®ã‚°ãƒ«ãƒ¼ãƒ—[NAME]共有ã®ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトをã€ä»¥å‰ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«æˆ»ãã†ã¨ã—ã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + ã“ã®åŒºç”»ã®ã‚°ãƒ«ãƒ¼ãƒ—[NAME]共有ã®ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトをã€ä»¥å‰ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«æˆ»ãã†ã¨ã—ã¦ã„ã¾ã™ã€‚ æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ *è¦å‘Š* ã“ã‚Œã«ã‚ˆã‚Šã€ -ãã®ã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚ŒãŸ -è²æ¸¡ä¸å¯èƒ½ãªã‚ªãƒ–ジェクトã¯å‰Šé™¤ã•ã‚Œã¾ã™ï¼ +グループã«è²æ¸¡ã•ã‚ŒãŸè²æ¸¡ä¸å¯èƒ½ãªã‚ªãƒ–ジェクトã¯å‰Šé™¤ã•ã‚Œã¾ã™ï¼ オブジェクト: [N] - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedByUser" - > -ã“ã®åŒºç”»ã§ã€ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + ã“ã®åŒºç”»ã§ã€ ä½äºº[NAME]ãŒæ‰€æœ‰ã™ã‚‹å…¨ã¦ã®ã‚ªãƒ–ジェクトを 彼らã®æŒã¡ç‰©ã«æœ¬å½“ã«è¿”å´ã—ã¦ã‚‚よã„ã§ã™ã‹ï¼Ÿ オブジェクト: [N] - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedBySelf" - > -ã“ã®åœŸåœ°åŒºç”»å†…ã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ -ã‚ãªãŸãŒæ‰€æœ‰ã™ã‚‹ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + ã“ã®åœŸåœ°åŒºç”»å†…ã«ã‚ã‚‹ã€ã‚ãªãŸãŒæ‰€æœ‰ã™ã‚‹ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを〠ã‚ãªãŸã®æŒã¡ç‰©ã«æˆ»ãã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ オブジェクト: [N] - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -ã“ã®åœŸåœ°åŒºç”»å†…ã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ -ã‚ãªãŸãŒæ‰€æœ‰ã—ã¦ã„ãªã„ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトをãã‚Œãžã‚Œã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«æˆ»ãã†ã¨ã—ã¦ã„ã¾ã™ã€‚ -æ“作を続行ã—ã¾ã™ã‹ï¼Ÿã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚ŒãŸè²æ¸¡å¯èƒ½ã‚ªãƒ–ジェクトã¯ã€ä»¥å‰ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + ã“ã®åœŸåœ°åŒºç”»å†…ã«ã‚ã‚‹ã€ã‚ãªãŸä»¥å¤–ãŒæ‰€æœ‰ã™ã‚‹ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを〠+ãã‚Œãžã‚Œã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«æˆ»ãã†ã¨ã—ã¦ã„ã¾ã™ã€‚ +æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ +グループã«è²æ¸¡ã•ã‚ŒãŸè²æ¸¡å¯èƒ½ã‚ªãƒ–ジェクトã¯ã€ä»¥å‰ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã™ã€‚ *è¦å‘Š* ã“ã‚Œã«ã‚ˆã‚Šã€ -ãã®ã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚ŒãŸ -è²æ¸¡ä¸å¯èƒ½ãªã‚ªãƒ–ジェクトã¯å‰Šé™¤ã•ã‚Œã¾ã™ï¼ +グループã«è²æ¸¡ã•ã‚ŒãŸè²æ¸¡ä¸å¯èƒ½ãªã‚ªãƒ–ジェクトã¯å‰Šé™¤ã•ã‚Œã¾ã™ï¼ オブジェクト: [N] - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByUser" - > -ã“ã®åœŸåœ°åŒºç”»å†…ã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ -[NAME]ãŒæ‰€æœ‰ã—ã¦ã„ãªã„ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトをãã‚Œãžã‚Œã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«è¿”å´ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + ã“ã®åœŸåœ°åŒºç”»å†…ã«ã‚る〠+[NAME]以外ã«ã‚ˆã‚‹æ‰€æœ‰ã®ã‚ªãƒ–ジェクトをã™ã¹ã¦ãã‚Œãžã‚Œã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«è¿”å´ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ æ“作を続行ã—ã¾ã™ã‹ï¼Ÿã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚ŒãŸè²æ¸¡å¯èƒ½ã‚ªãƒ–ジェクトã¯ã€ä»¥å‰ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã™ã€‚ *è¦å‘Š* ã“ã‚Œã«ã‚ˆã‚Šã€ -ãã®ã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚ŒãŸ -è²æ¸¡ä¸å¯èƒ½ãªã‚ªãƒ–ジェクトã¯å‰Šé™¤ã•ã‚Œã¾ã™ï¼ +グループã«è²æ¸¡ã•ã‚ŒãŸè²æ¸¡ä¸å¯èƒ½ãªã‚ªãƒ–ジェクトã¯å‰Šé™¤ã•ã‚Œã¾ã™ï¼ オブジェクト: [N] - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ReturnAllTopObjects" - > -å…¨ã¦ã®ãƒªã‚¹ãƒˆã•ã‚ŒãŸã‚ªãƒ–ジェクトを所有者ã«æœ¬å½“ã«è¿”å´ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="DisableAllTopObjects" - > -ã“ã®åœ°åŸŸå†…ã®ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを無効ã«ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -ã“ã®åœŸåœ°ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—[NAME] + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ReturnAllTopObjects"> + å…¨ã¦ã®ãƒªã‚¹ãƒˆã•ã‚ŒãŸã‚ªãƒ–ジェクトを所有者ã«æœ¬å½“ã«è¿”å´ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="DisableAllTopObjects"> + ã“ã®åœ°åŸŸå†…ã®ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを無効ã«ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + ã“ã®åœŸåœ°ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—[NAME] ã¨ã®é–“ã§å…±æœ‰ã—ã¦ã„ãªã„オブジェクトをオーナーã«è¿”å´ã—ã¾ã™ã‹ï¼Ÿ オブジェクト: [N] - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="UnableToDisableOutsideScripts" - > -スクリプトを無効ã«ã§ãã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + スクリプトを無効ã«ã§ãã¾ã›ã‚“。 ã“ã®åœ°åŸŸå…¨ä½“ãŒã€Œãƒ€ãƒ¡ãƒ¼ã‚¸æœ‰åŠ¹ã€ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ æ¦å™¨ã‚’使用ã™ã‚‹ã«ã¯ã‚¹ã‚¯ãƒªãƒ—トã®å®Ÿè¡Œã‚’許å¯ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="MustBeInParcel" - > -ç€åœ°ç‚¹ã‚’è¨å®šã™ã‚‹ã«ã¯ã€ã“ã®åŒºç”»ã®å†…å´ã« + </notification> + <notification name="MustBeInParcel"> + ç€åœ°ç‚¹ã‚’è¨å®šã™ã‚‹ã«ã¯ã€ã“ã®åŒºç”»ã®å†…å´ã« ç«‹ã£ã¦ãã ã•ã„。 - </notification> - - <notification - - name="PromptRecipientEmail" - > -å—信者ã®æœ‰åŠ¹ãªEメールアドレスを入力ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="PromptSelfEmail" - > -ã‚ãªãŸã®Eメール・アドレスを入力ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="PromptMissingSubjMsg" - > -デフォルトã®ä»¶åã¾ãŸã¯ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’付ã‘ã¦ã€ã‚¹ãƒŠãƒƒãƒ—ショットをé€ä¿¡ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ErrorProcessingSnapshot" - > -スナップショット・データã®å‡¦ç†ã‚¨ãƒ©ãƒ¼ - </notification> - - <notification - - name="ErrorEncodingSnapshot" - > -スナップショットã®ã‚¨ãƒ³ã‚³ãƒ¼ãƒ‰åŒ–ã§ã‚¨ãƒ©ãƒ¼ãŒå‡ºã¾ã—ãŸï¼ - </notification> - - <notification - - name="ErrorUploadingPostcard" - > -次ã®ç†ç”±ã§ã€ã‚¹ãƒŠãƒƒãƒ—ショットã®é€ä¿¡æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸï¼š [REASON] - </notification> - - <notification - - name="ErrorUploadingReportScreenshot" - > -次ã®ç†ç”±ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã®ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã‚·ãƒ§ãƒƒãƒˆã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON] - </notification> - - <notification - - name="MustAgreeToLogIn" - > -[SECOND_LIFE]ã¸ã®ãƒã‚°ã‚¤ãƒ³ã‚’続ã‘ã‚‹ã«ã¯ã€åˆ©ç”¨è¦ç´„ã«åŒæ„ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CouldNotPutOnOutfit" - > -æœè£…を装ç€ã§ãã¾ã›ã‚“。 + </notification> + <notification name="PromptRecipientEmail"> + å—信者ã®æœ‰åŠ¹ãªEメールアドレスを入力ã—ã¦ãã ã•ã„。 + </notification> + <notification name="PromptSelfEmail"> + ã‚ãªãŸã®Eメール・アドレスを入力ã—ã¦ãã ã•ã„。 + </notification> + <notification name="PromptMissingSubjMsg"> + デフォルトã®ä»¶åã¾ãŸã¯ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’付ã‘ã¦ã€ã‚¹ãƒŠãƒƒãƒ—ショットをé€ä¿¡ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + スナップショット・データã®å‡¦ç†ã‚¨ãƒ©ãƒ¼ + </notification> + <notification name="ErrorEncodingSnapshot"> + スナップショットã®ã‚¨ãƒ³ã‚³ãƒ¼ãƒ‰åŒ–ã§ã‚¨ãƒ©ãƒ¼ãŒå‡ºã¾ã—ãŸï¼ + </notification> + <notification name="ErrorUploadingPostcard"> + 次ã®ç†ç”±ã§ã€ã‚¹ãƒŠãƒƒãƒ—ショットã®é€ä¿¡æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸï¼š [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + 次ã®ç†ç”±ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã®ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã‚·ãƒ§ãƒƒãƒˆã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + [SECOND_LIFE] ã¸ã®ãƒã‚°ã‚¤ãƒ³ã‚’続ã‘ã‚‹ã«ã¯ã€åˆ©ç”¨è¦ç´„ã«åŒæ„ã—ã¦ãã ã•ã„。 + </notification> + <notification name="CouldNotPutOnOutfit"> + æœè£…を装ç€ã§ãã¾ã›ã‚“。 æœè£…フォルダã«è¡£æœã€èº«ä½“部ä½ã€ä»˜å±žå“ãŒã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotWearTrash" - > -ゴミ箱ã«ã‚ã‚‹æœã‚„ボディーパーツã®ç€ç”¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotWearInfoNotComplete" - > -ã¾ã èªã¿è¾¼ã¾ã‚Œã¦ã„ãªã„ãŸã‚ã€ãã®ã‚¢ã‚¤ãƒ†ãƒ を装ç€ã§ãã¾ã›ã‚“。後ã§ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="MustHaveAccountToLogIn" - > -ãŠã£ã¨! 記入æ¼ã‚ŒãŒã‚ã‚Šã¾ã™ã‚ˆã€‚ + </notification> + <notification name="CannotWearTrash"> + ゴミ箱ã«ã‚ã‚‹æœã‚„ボディーパーツã®ç€ç”¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotWearInfoNotComplete"> + ã¾ã èªã¿è¾¼ã¾ã‚Œã¦ã„ãªã„ãŸã‚ã€ãã®ã‚¢ã‚¤ãƒ†ãƒ を装ç€ã§ãã¾ã›ã‚“。後ã§ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 + </notification> + <notification name="MustHaveAccountToLogIn"> + ãŠã£ã¨! 記入æ¼ã‚ŒãŒã‚ã‚Šã¾ã™ã‚ˆã€‚ ã‚¢ãƒã‚¿ãƒ¼ã®ãƒ•ã‚¡ãƒ¼ã‚¹ãƒˆãƒãƒ¼ãƒ ã¨ãƒ©ã‚¹ãƒˆãƒãƒ¼ãƒ ã®ä¸¡æ–¹ã‚’入力ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ [SECOND_LIFE]ã«å…¥ã‚‹ã«ã¯ã€ã‚¢ã‚«ã‚¦ãƒ³ãƒˆãŒå¿…è¦ã§ã™ã€‚ アカウントを作æˆã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚‚ã†ä¸€åº¦è©¦ã™" - yestext="æ–°ã—ã„アカウントを作æˆ"/> - </notification> - - <notification - - name="AddClassified" - > -検索ディレクトリã®ã€Œã‚¯ãƒ©ã‚·ãƒ•ã‚¡ã‚¤ãƒ‰ã€ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«ã€ + <usetemplate name="okcancelbuttons" notext="ã‚‚ã†ä¸€åº¦è©¦ã™" yestext="æ–°ã—ã„アカウントを作æˆ"/> + </notification> + <notification name="AddClassified"> + 検索ディレクトリã®ã€Œã‚¯ãƒ©ã‚·ãƒ•ã‚¡ã‚¤ãƒ‰ã€ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«ã€ クラシファイド広告ãŒ1週間掲載ã•ã‚Œã¾ã™ã€‚ 広告を記入後ã€ã€Œå…¬é–‹ã€ã‚’クリックã—ã€ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã« è¿½åŠ ã—ã¾ã™ã€‚ 「公開ã€ã‚’クリックã™ã‚‹ã¨ã€æ”¯æ‰•é‡‘é¡ã‚’å°‹ãられã¾ã™ã€‚ 多ã払ã†ã»ã©ã€åºƒå‘ŠãŒã‚¯ãƒ©ã‚·ãƒ•ã‚¡ã‚¤ãƒ‰ãƒ»ãƒªã‚¹ãƒˆã¨ã‚ーワード検索 ã®ä¸Šä½ã«è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ - <usetemplate - ignoretext="æ–°ã—ã„ã‚¯ãƒ©ã‚·ãƒ•ã‚¡ã‚¤ãƒ‰åºƒå‘Šã‚’åŠ ãˆã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="DeleteClassified" - > -クラシファイド広告[NAME]ã®å‰Šé™¤ã‚’ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="æ–°ã—ã„ã‚¯ãƒ©ã‚·ãƒ•ã‚¡ã‚¤ãƒ‰åºƒå‘Šã‚’åŠ ãˆã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="DeleteClassified"> + クラシファイド広告[NAME]ã®å‰Šé™¤ã‚’ã—ã¾ã™ã‹ï¼Ÿ 支払ã„済ã¿ã®æ–™é‡‘ã¯è¿”金ã•ã‚Œã¾ã›ã‚“。 - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ClassifiedSave" - > -クラシファイド広告[NAME]ã¸ã®å¤‰æ›´ã‚’ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="ã‚ャンセル" - name="yesnocancelbuttons" - notext="ä¿å˜ã—ãªã„" - yestext="ä¿å˜"/> - </notification> - - <notification - - name="DeleteAvatarPick" - > -ピック[PICK]を削除ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="PromptGoToEventsPage" - > -[SECOND_LIFE]イベント・ウェブ・ページã«ç§»å‹•ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="SelectProposalToView" - > -表示ã™ã‚‹æ案をé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="SelectHistoryItemToView" - > -表示ã™ã‚‹å±¥æ´ã‚¢ã‚¤ãƒ†ãƒ ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ResetShowNextTimeDialogs" - > -ã“れらã®ãƒãƒƒãƒ—アップ全ã¦ã‚’å†åº¦æœ‰åŠ¹åŒ–ã—ã¾ã™ã‹ï¼Ÿï¼ˆä»¥å‰ã€Œä»Šå¾Œã¯è¡¨ç¤ºã—ãªã„ã€ã¨æŒ‡å®šã—ã¦ã„ã¾ã™ï¼‰ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -スã‚ップå¯èƒ½ãªãƒãƒƒãƒ—アップ全ã¦ã‚’無効化ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="CacheWillClear" - > -[SECOND_LIFE]ã®å†èµ·å‹•å¾Œã«ã‚ャッシュãŒã‚¯ãƒªã‚¢ã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="CacheWillBeMoved" - > -[SECOND_LIFE]ã®å†èµ·å‹•å¾Œã«ã‚ャッシュãŒç§»å‹•ã•ã‚Œã¾ã™ã€‚ -メモ:ã“ã‚Œã«ã‚ˆã‚Šã‚ャッシュãŒã‚¯ãƒªã‚¢ã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="ChangeConnectionPort" - > -ãƒãƒ¼ãƒˆã®è¨å®šã¯ã€[SECOND_LIFE]ã®å†èµ·å‹•å¾Œã«æœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="ChangeSkin" - > -æ–°ã—ã„スã‚ンã¯[SECOND_LIFE]ã‚’å†èµ·å‹•ã™ã‚‹ã¨ç¾ã‚Œã¾ã™ - </notification> - - <notification - - name="GoToAuctionPage" - > -[SECOND_LIFE]ウェブ・ページã«ç§»å‹•ã—〠入æœã‚ã‚‹ã„ã¯ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ã®è©³ç´°ã‚’確èªã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="SaveChanges" - > -変更をä¿å˜ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ä¿å˜ã—ãªã„" - yestext="ä¿å˜"/> - </notification> - - <notification - - name="GestureSaveFailedTooManySteps" - > -ジェスãƒãƒ£ãƒ¼ã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ClassifiedSave"> + クラシファイド広告[NAME]ã¸ã®å¤‰æ›´ã‚’ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="ã‚ャンセル" name="yesnocancelbuttons" notext="ä¿å˜ã—ãªã„" yestext="ä¿å˜"/> + </notification> + <notification name="DeleteAvatarPick"> + ピック[PICK]を削除ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="PromptGoToEventsPage"> + [SECOND_LIFE]イベント・ウェブ・ページã«ç§»å‹•ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="SelectProposalToView"> + 表示ã™ã‚‹æ案をé¸æŠžã—ã¦ãã ã•ã„。 + </notification> + <notification name="SelectHistoryItemToView"> + 表示ã™ã‚‹å±¥æ´ã‚¢ã‚¤ãƒ†ãƒ ã‚’é¸æŠžã—ã¦ãã ã•ã„。 + </notification> + <notification name="ResetShowNextTimeDialogs"> + ã“れらã®ãƒãƒƒãƒ—アップ全ã¦ã‚’å†åº¦æœ‰åŠ¹åŒ–ã—ã¾ã™ã‹ï¼Ÿï¼ˆä»¥å‰ã€Œä»Šå¾Œã¯è¡¨ç¤ºã—ãªã„ã€ã¨æŒ‡å®šã—ã¦ã„ã¾ã™ï¼‰ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + スã‚ップå¯èƒ½ãªãƒãƒƒãƒ—アップ全ã¦ã‚’無効化ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + [SECOND_LIFE]ã®å†èµ·å‹•å¾Œã«ã‚ャッシュãŒã‚¯ãƒªã‚¢ã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="CacheWillBeMoved"> + [SECOND_LIFE]ã®å†èµ·å‹•å¾Œã«ã‚ャッシュãŒç§»å‹•ã•ã‚Œã¾ã™ã€‚ +注æ„:ã“ã‚Œã«ã‚ˆã‚Šã‚ャッシュãŒã‚¯ãƒªã‚¢ã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="ChangeConnectionPort"> + ãƒãƒ¼ãƒˆã®è¨å®šã¯ã€[SECOND_LIFE]ã®å†èµ·å‹•å¾Œã«æœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚ + </notification> + <notification name="ChangeSkin"> + æ–°ã—ã„スã‚ンã¯[SECOND_LIFE]ã‚’å†èµ·å‹•ã™ã‚‹ã¨ç¾ã‚Œã¾ã™ + </notification> + <notification name="GoToAuctionPage"> + [SECOND_LIFE]ウェブ・ページã«ç§»å‹•ã—〠入æœã‚ã‚‹ã„ã¯ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ã®è©³ç´°ã‚’確èªã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="SaveChanges"> + 変更をä¿å˜ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ä¿å˜ã—ãªã„" yestext="ä¿å˜"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + ジェスãƒãƒ£ãƒ¼ã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ ステップãŒå¤šã™ãŽã¾ã™ã€‚ ステップをã„ãã¤ã‹å‰Šé™¤ã—ã¦ã‹ã‚‰å†ä¿å˜ã—ã¦ãã ã•ã„ - </notification> - - <notification - - name="GestureSaveFailedTryAgain" - > -ジェスãƒãƒ£ãƒ¼ã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚å°‘ã—å¾…ã£ã¦ã‹ã‚‰ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="GestureSaveFailedObjectNotFound" - > -ジェスãƒãƒ£ãƒ¼ã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚オブジェクトã€ã¾ãŸã¯é–¢é€£ã™ã‚‹ã‚ªãƒ–ジェクトæŒã¡ç‰©ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="GestureSaveFailedTryAgain"> + ジェスãƒãƒ£ãƒ¼ã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚å°‘ã—å¾…ã£ã¦ã‹ã‚‰ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + ジェスãƒãƒ£ãƒ¼ã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚オブジェクトã€ã¾ãŸã¯é–¢é€£ã™ã‚‹ã‚ªãƒ–ジェクトæŒã¡ç‰©ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 オブジェクトãŒç¯„囲内ã«å˜åœ¨ã—ãªã„ã‹ã€ã¾ãŸã¯å‰Šé™¤ã•ã‚ŒãŸå¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="GestureSaveFailedReason" - > -次ã®ç†ç”±ã§ã€ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã®ä¿å˜æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="SaveNotecardFailObjectNotFound" - > -ノートカードã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚オブジェクトã€ã¾ãŸã¯é–¢é€£ã™ã‚‹ã‚ªãƒ–ジェクトæŒã¡ç‰©ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="GestureSaveFailedReason"> + 次ã®ç†ç”±ã§ã€ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã®ä¿å˜æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + ノートカードã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚オブジェクトã€ã¾ãŸã¯é–¢é€£ã™ã‚‹ã‚ªãƒ–ジェクトæŒã¡ç‰©ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 オブジェクトãŒç¯„囲内ã«å˜åœ¨ã—ãªã„ã‹ã€ã¾ãŸã¯å‰Šé™¤ã•ã‚ŒãŸå¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="SaveNotecardFailReason" - > -次ã®ç†ç”±ã§ã€ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã®ä¿å˜æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ScriptCannotUndo" - > -ã‚ãªãŸã®ã‚¹ã‚¯ãƒªãƒ—トã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã¯ã€å¤‰æ›´ã‚’å…ƒã«æˆ»ã™ã“ã¨ã¯ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="SaveNotecardFailReason"> + 次ã®ç†ç”±ã§ã€ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã®ä¿å˜æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="ScriptCannotUndo"> + ã‚ãªãŸã®ã‚¹ã‚¯ãƒªãƒ—トã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã¯ã€å¤‰æ›´ã‚’å…ƒã«æˆ»ã™ã“ã¨ã¯ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ サーãƒãƒ¼ã®æœ€æ–°ä¿å˜ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’ãƒãƒ¼ãƒ‰ã—ã¾ã™ã‹ï¼Ÿ -(**è¦å‘Š**:ã“ã®æ“作ã¯å…ƒã«æˆ»ã™ã“ã¨ãŒã§ãã¾ã›ã‚“) - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="SaveScriptFailReason" - > -次ã®ç†ç”±ã§ã€ã‚¹ã‚¯ãƒªãƒ—トã®ä¿å˜ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="SaveScriptFailObjectNotFound" - > -スクリプトã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚スクリプトãŒå…¥ã£ãŸã‚ªãƒ–ジェクトãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 +(**è¦å‘Š**:ã“ã®æ“作後元ã«æˆ»ã™ã“ã¨ã¯ã§ãã¾ã›ã‚“) + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="SaveScriptFailReason"> + 次ã®ç†ç”±ã§ã€ã‚¹ã‚¯ãƒªãƒ—トã®ä¿å˜ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="SaveScriptFailObjectNotFound"> + スクリプトã®ä¿å˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚スクリプトãŒå…¥ã£ãŸã‚ªãƒ–ジェクトãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 オブジェクトã¯ç¯„囲外ã‹ã€ã¾ãŸã¯å‰Šé™¤ã•ã‚Œã¦ã„ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 - </notification> - - <notification - - name="SaveBytecodeFailReason" - > -次ã®ç†ç”±ã§ã€ã‚³ãƒ³ãƒ‘イルã—ãŸã‚¹ã‚¯ãƒªãƒ—トã®ä¿å˜æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CouldNotStartStopScript" - > -スクリプトã®èµ·å‹•ã¾ãŸã¯åœæ¢ã«å¤±æ•—ã—ã¾ã—ãŸã€‚スクリプトãŒæ ¼ç´ã•ã‚Œã¦ã„るオブジェクトãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="SaveBytecodeFailReason"> + 次ã®ç†ç”±ã§ã€ã‚³ãƒ³ãƒ‘イルã—ãŸã‚¹ã‚¯ãƒªãƒ—トã®ä¿å˜æ™‚ã«å•é¡ŒãŒèµ·ã“ã‚Šã¾ã—ãŸã€‚ [REASON]。 後ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="CouldNotStartStopScript"> + スクリプトã®èµ·å‹•ã¾ãŸã¯åœæ¢ã«å¤±æ•—ã—ã¾ã—ãŸã€‚スクリプトãŒæ ¼ç´ã•ã‚Œã¦ã„るオブジェクトãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 オブジェクトãŒç¯„囲内ã«å˜åœ¨ã—ãªã„ã‹ã€ã¾ãŸã¯å‰Šé™¤ã•ã‚ŒãŸå¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="CannotDownloadFile" - > -ファイルをダウンãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotWriteFile" - > -ファイル[[FILE]]を書ãè¾¼ã‚ã¾ã›ã‚“。 - </notification> - - <notification - - name="UnsupportedHardware" - > -è¦å‘Šï¼š ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ 㯠Second Life を使用ã™ã‚‹ãŸã‚ã«å¿…è¦ãªå¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 Second Life ã‚’ã“ã®ã¾ã¾ã”使用ã«ãªã‚‹ã¨ã€ä¸å分ãªãƒ‘フォーマンスã—ã‹å¾—られãªã„ãŠãã‚ŒãŒã‚ã‚Šã¾ã™ã€‚ ã¾ãŸã€ã‚µãƒãƒ¼ãƒˆå¤–ã®ã‚·ã‚¹ãƒ†ãƒ 構æˆã§ã”使用ã®å ´åˆã€ãƒ†ã‚¯ãƒ‹ã‚«ãƒ«ã‚µãƒãƒ¼ãƒˆã‚’ã”利用ã„ãŸã ãã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotDownloadFile"> + ファイルをダウンãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotWriteFile"> + ファイル[[FILE]]を書ãè¾¼ã‚ã¾ã›ã‚“。 + </notification> + <notification name="UnsupportedHardware"> + è¦å‘Šï¼š ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ 㯠Second Life を使用ã™ã‚‹ãŸã‚ã«å¿…è¦ãªå¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 +Second Life ã‚’ã“ã®ã¾ã¾ã”使用ã«ãªã‚‹ã¨ã€ä¸å分ãªãƒ‘フォーマンスã—ã‹å¾—られãªã„ãŠãã‚ŒãŒã‚ã‚Šã¾ã™ã€‚ +ã¾ãŸã€ã‚µãƒãƒ¼ãƒˆå¤–ã®ã‚·ã‚¹ãƒ†ãƒ 構æˆã§ã”使用ã®å ´åˆã€ãƒ†ã‚¯ãƒ‹ã‚«ãƒ«ã‚µãƒãƒ¼ãƒˆã‚’ã”利用ã„ãŸã ãã“ã¨ãŒã§ãã¾ã›ã‚“。 å¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ [_URL] ã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã€ã•ã‚‰ã«è©³ã—ã„æƒ…å ±ã‚’ã”覧ã«ãªã‚Šã¾ã™ã‹ï¼Ÿ - <url option="0" name="url"> - + <url name="url" option="0"> http://secondlife.com/support/sysreqs.php?lang=ja - </url> - <usetemplate - ignoretext="サãƒãƒ¼ãƒˆå¤–ã®ãƒãƒ¼ãƒ‰ã‚¦ã‚§ã‚¢ã®æ¤œå‡ºæ™‚" - name="okcancelignore" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="UnknownGPU" - > -ãŠä½¿ã„ã®ã‚·ã‚¹ãƒ†ãƒ ã«ã¯ã€ç¾æ™‚点ã§ã¯ä¸æ˜Žãªã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ãŒæ載ã•ã‚Œã¦ã„ã¾ã™ã€‚ -ã“ã‚Œã¯ã€å½“社ã«ã‚ˆã‚‹å‹•ä½œãƒ†ã‚¹ãƒˆãŒè¡Œã‚ã‚Œã¦ã„ãªã„æ–°ã—ã„ãƒãƒ¼ãƒ‰ã‚¦ã‚§ã‚¢ãŒä½¿ç”¨ã•ã‚Œã¦ã„ã‚‹å ´åˆãŒã»ã¨ã‚“ã©ã§ã™ã€‚ Second Lifeã¯ã»ã¼é–“é•ã„ãªãæ£å¸¸ã«å‹•ä½œã—ã¾ã™ãŒã€å¿…è¦ã«å¿œã˜ãŸã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯è¨å®šã®èª¿æ•´ãŒå¿…è¦ã«ãªã‚‹å ´åˆãŒã‚ã‚Šã¾ã™ã€‚ -(「編集ã€ï¼žã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã€ï¼‰ã€‚ - <form name="form"> - <ignore name="ignore" text="ä¸æ˜Žãªã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ã®æ¤œå‡ºæ™‚"/> - </form> - </notification> - - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] ã¯ã€ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ãƒ‰ãƒ©ã‚¤ãƒã®åˆæœŸåŒ–ä¸ã«ã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã—ã¾ã—ãŸã€‚ -一般的ãªãƒ‰ãƒ©ã‚¤ãƒãƒ»ã‚¨ãƒ©ãƒ¼ã‚’回é¿ã™ã‚‹ãŸã‚ã€ã€Œã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã®å“質ã€ã¯ã€Œä½Žã€ã«è¨å®šã•ã‚Œã¾ã™ã€‚ + </url> + <usetemplate ignoretext="サãƒãƒ¼ãƒˆå¤–ã®ãƒãƒ¼ãƒ‰ã‚¦ã‚§ã‚¢ã®æ¤œå‡ºæ™‚" name="okcancelignore" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="UnknownGPU"> + ãŠä½¿ã„ã®ã‚·ã‚¹ãƒ†ãƒ ã«ã¯ã€ç¾æ™‚点ã§ã¯ä¸æ˜Žãªã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ãŒæ載ã•ã‚Œã¦ã„ã¾ã™ã€‚ +ã“ã‚Œã¯ã€å½“社ã«ã‚ˆã‚‹å‹•ä½œãƒ†ã‚¹ãƒˆãŒè¡Œã‚ã‚Œã¦ã„ãªã„æ–°ã—ã„ãƒãƒ¼ãƒ‰ã‚¦ã‚§ã‚¢ãŒä½¿ç”¨ã•ã‚Œã¦ã„ã‚‹å ´åˆãŒã»ã¨ã‚“ã©ã§ã™ã€‚ +Second Life ã¯ã»ã¼é–“é•ã„ãªãæ£å¸¸ã«å‹•ä½œã—ã¾ã™ãŒã€ +å¿…è¦ã«å¿œã˜ãŸã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯è¨å®šã®èª¿æ•´ãŒå¿…è¦ã«ãªã‚‹å ´åˆãŒã‚ã‚Šã¾ã™ã€‚ +(「編集ã€ï¼žã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œè¡¨ç¤ºã€ï¼‰ + <form name="form"> + <ignore name="ignore" text="ä¸æ˜Žãªã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ã®æ¤œå‡ºæ™‚"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] ã¯ã€ +グラフィック・ドライãƒã®åˆæœŸåŒ–ä¸ã«ã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã—ã¾ã—ãŸã€‚ +一般的ãªãƒ‰ãƒ©ã‚¤ãƒãƒ»ã‚¨ãƒ©ãƒ¼ã‚’回é¿ã™ã‚‹ãŸã‚ã€ã€Œå“質ãŠã‚ˆã³ãƒ‘フォーマンスã€ã¯ã€Œä½Žã€ã«è¨å®šã•ã‚Œã¾ã™ã€‚ ã“ã‚Œã«ã‚ˆã‚Šã€ã„ãã¤ã‹ã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã‚¹æ©Ÿèƒ½ã¯ç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚ グラフィックカード・ドライãƒã®ã‚¢ãƒƒãƒ—デートをãŠå‹§ã‚ã—ã¾ã™ã€‚ -「グラフィックã®å“質ã€ã¯ã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã€ã‹ã‚‰ä¸Šã’ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="RegionNoTerraforming" - > -ã“ã®åœ°åŸŸ[REGION] ã¯ã€ãƒ†ãƒ©ãƒ•ã‚©ãƒ¼ãƒŸãƒ³ã‚°ãŒã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotCopyWarning" - > -ã‚ãªãŸã¯ã“ã®ã‚¢ã‚¤ãƒ†ãƒ ã®ã‚³ãƒ”ーを +「グラフィックã®å“質ã€ã¯ã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œè¡¨ç¤ºã€ã‹ã‚‰ä¸Šã’ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + </notification> + <notification name="RegionNoTerraforming"> + ã“ã®åœ°åŸŸ[REGION] ã¯ã€ãƒ†ãƒ©ãƒ•ã‚©ãƒ¼ãƒŸãƒ³ã‚°ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotCopyWarning"> + ã‚ãªãŸã¯ã“ã®ã‚¢ã‚¤ãƒ†ãƒ ã®ã‚³ãƒ”ーを 許ã•ã‚Œã¦ã„ãªã„ã®ã§ã€äººã«ã‚ã’る㨠æŒã¡ç‰©ã‹ã‚‰å¤±ã‚ã‚Œã¾ã™ã€‚ 本当㫠ã“れをã‚ã’ãŸã„ã§ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="CannotGiveItem" - > -æŒã¡ç‰©ã®ã‚¢ã‚¤ãƒ†ãƒ を渡ã›ã¾ã›ã‚“。 - </notification> - - <notification - - name="TransactionCancelled" - > -å–引ãŒã‚ャンセルã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="TooManyItems" - > -一度ã®ã‚¤ãƒ³ãƒ™ãƒ³ãƒˆãƒªäº¤æ›ã§ã€42以上ã®ã‚¢ã‚¤ãƒ†ãƒ ã¯é€ã‚Œã¾ã›ã‚“。 - </notification> - - <notification - - name="NoItems" - > -é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã‚’è²æ¸¡ã§ãる権é™ãŒã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotCopyCountItems" - > -ã‚ãªãŸã¯é¸æŠžã•ã‚ŒãŸã‚¢ã‚¤ãƒ†ãƒ ã®[COUNT]ã®ã‚³ãƒ”ーを -許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã¯ã‚ãªãŸã® -æŒã¡ç‰©ã‹ã‚‰å¤±ã‚ã‚Œã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="CannotGiveItem"> + æŒã¡ç‰©ã®ã‚¢ã‚¤ãƒ†ãƒ を渡ã›ã¾ã›ã‚“。 + </notification> + <notification name="TransactionCancelled"> + å–引ãŒã‚ャンセルã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="TooManyItems"> + 一度ã®ã‚¤ãƒ³ãƒ™ãƒ³ãƒˆãƒªäº¤æ›ã§ã€42以上ã®ã‚¢ã‚¤ãƒ†ãƒ ã¯é€ã‚Œã¾ã›ã‚“。 + </notification> + <notification name="NoItems"> + é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã‚’è²æ¸¡ã§ãる権é™ãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="CannotCopyCountItems"> + ã‚ãªãŸã¯é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã®[COUNT]ã®ã‚³ãƒ”ーを +許ã•ã‚Œã¦ã„ã¾ã›ã‚“。 +ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã¯ã‚ãªãŸã®æŒã¡ç‰©ã‹ã‚‰å¤±ã‚ã‚Œã¾ã™ã€‚ 本当ã«ã‚¢ã‚¤ãƒ†ãƒ ã‚’ã‚ã’ãŸã„ã§ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="CannotGiveCategory" - > -é¸æŠžã—ãŸãƒ•ã‚©ãƒ«ãƒ€ã‚’è²æ¸¡ã§ãã‚‹æ¨©é™ -ãŒã‚ã‚Šã¾ã›ã‚“ - </notification> - - <notification - - name="FreezeAvatar" - > -ã“ã®ã‚¢ãƒã‚¿ãƒ¼ã‚’フリーズã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="CannotGiveCategory"> + é¸æŠžã—ãŸãƒ•ã‚©ãƒ«ãƒ€ã‚’è²æ¸¡ã§ãる権é™ãŒã‚ã‚Šã¾ã›ã‚“ + </notification> + <notification name="FreezeAvatar"> + ã“ã®ã‚¢ãƒã‚¿ãƒ¼ã‚’フリーズã—ã¾ã™ã‹ï¼Ÿ ã‚¢ãƒã‚¿ãƒ¼ã¯ä¸€æ™‚çš„ã«å‹•ã‘ãªããªã‚Šã€ ãƒãƒ£ãƒƒãƒˆãªã©ã€ã“ã®ä¸–ç•Œã«å¯¾ã™ã‚‹é–¢ã‚ã‚Šã‚’æŒã¤ã“ã¨ãŒã§ããªããªã‚Šã¾ã™ã€‚ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="解å‡" - yestext="フリーズ"/> - </notification> - - <notification - - name="FreezeAvatarFullname" - > -[AVATAR_NAME]をフリーズã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="解å‡" yestext="フリーズ"/> + </notification> + <notification name="FreezeAvatarFullname"> + [AVATAR_NAME]をフリーズã—ã¾ã™ã‹ï¼Ÿ フリーズã•ã‚ŒãŸäººã¯ä¸€æ™‚çš„ã«å‹•ã‘ãªããªã‚Šã€ãƒãƒ£ãƒƒãƒˆãªã©ã€ã“ã®ä¸–ç•Œã«å¯¾ã™ã‚‹é–¢ã‚ã‚Šã‚’æŒã¤ã“ã¨ãŒã§ããªããªã‚Šã¾ã™ã€‚ - <usetemplate - canceltext="ã‚ャンセル" - name="yesnocancelbuttons" - notext="解å‡" - yestext="フリーズ"/> - </notification> - - <notification - - name="EjectAvatarFullname" - > -ã‚ãªãŸã®åœŸåœ°ã‹ã‚‰[AVATAR_NAME]を追放ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="ã‚ャンセル" - name="yesnocancelbuttons" - notext="追放ã¨ç¦æ¢" - yestext="追放"/> - </notification> - - <notification - - name="EjectAvatarNoBan" - > -ã“ã®ã‚¢ãƒã‚¿ãƒ¼ã‚’ã‚ãªãŸã®åœŸåœ°ã‹ã‚‰è¿½æ”¾ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="追放"/> - </notification> - - <notification - - name="EjectAvatarFullnameNoBan" - > -[AVATAR_NAME] ã‚’ã‚ãªãŸã®åœŸåœ°ã‹ã‚‰è¿½æ”¾ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="追放"/> - </notification> - - <notification - - name="AcquireErrorTooManyObjects" - > -å–得エラー:é¸æŠžã—ãŸã‚ªãƒ–ジェクトã®æ•°ãŒå¤šã™ãŽã¾ã™ã€‚ - </notification> - - <notification - - name="AcquireErrorObjectSpan" - > -å–得エラー:オブジェクトãŒè¤‡æ•°ã®åœ°åŸŸã«ã¾ãŸãŒã£ã¦å˜åœ¨ã—ã¦ã„ã¾ã™ã€‚ -å–å¾—ã™ã‚‹ã‚ªãƒ–ジェクトã¯ã€ã™ã¹ã¦åŒã˜åœ°åŸŸå†…ã«ç§»å‹•ã•ã›ã¦ãã ã•ã„。 - </notification> - - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] + <usetemplate canceltext="ã‚ャンセル" name="yesnocancelbuttons" notext="解å‡" yestext="フリーズ"/> + </notification> + <notification name="EjectAvatarFullname"> + ã‚ãªãŸã®åœŸåœ°ã‹ã‚‰[AVATAR_NAME]を追放ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="ã‚ャンセル" name="yesnocancelbuttons" notext="追放ã¨ç¦æ¢" yestext="追放"/> + </notification> + <notification name="EjectAvatarNoBan"> + ã“ã®ã‚¢ãƒã‚¿ãƒ¼ã‚’ã‚ãªãŸã®åœŸåœ°ã‹ã‚‰è¿½æ”¾ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="追放"/> + </notification> + <notification name="EjectAvatarFullnameNoBan"> + [AVATAR_NAME] ã‚’ã‚ãªãŸã®åœŸåœ°ã‹ã‚‰è¿½æ”¾ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="追放"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + å–得エラー:é¸æŠžã—ãŸã‚ªãƒ–ジェクトã®æ•°ãŒå¤šã™ãŽã¾ã™ã€‚ + </notification> + <notification name="AcquireErrorObjectSpan"> + å–得エラー: +オブジェクトãŒè¤‡æ•°ã®åœ°åŸŸã«ã¾ãŸãŒã£ã¦å˜åœ¨ã—ã¦ã„ã¾ã™ã€‚ +å–å¾—ã™ã‚‹ã‚ªãƒ–ジェクトã¯ã€ +ã™ã¹ã¦åŒã˜åœ°åŸŸå†…ã«ç§»å‹•ã•ã›ã¦ãã ã•ã„。 + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] [URL]ã«ç§»å‹•ã—ã¦è²¨å¹£è³¼å…¥ã«é–¢ã™ã‚‹æƒ…å ±ã‚’ç¢ºèªã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="UnableToLinkObjects" - > -ã“れらã®[COUNT]オブジェクトをリンクã§ãã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="UnableToLinkObjects"> + ã“れらã®[COUNT]オブジェクトをリンクã§ãã¾ã›ã‚“。 最大[MAX]オブジェクトをリンクã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="CannotLinkIncompleteSet" - > -セットã¨ã—ã¦æƒã£ã¦ã„るオブジェクトã®ã¿ãƒªãƒ³ã‚¯ã§ãã¾ã™ã€‚複数㮠+ </notification> + <notification name="CannotLinkIncompleteSet"> + セットã¨ã—ã¦æƒã£ã¦ã„るオブジェクトã®ã¿ãƒªãƒ³ã‚¯ã§ãã¾ã™ã€‚複数㮠オブジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotLinkModify" - > -ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトã«å¯¾ã™ã‚‹ä¿®æ£è¨±å¯ãŒã‚ãªãŸã«ãªã„ãŸã‚〠+ </notification> + <notification name="CannotLinkModify"> + ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトã«å¯¾ã™ã‚‹ä¿®æ£è¨±å¯ãŒã‚ãªãŸã«ãªã„ãŸã‚〠リンクã§ãã¾ã›ã‚“。 オブジェクトãŒã™ã¹ã¦ãƒãƒƒã‚¯ã•ã‚Œã¦ãŠã‚‰ãšã€ã‚ãªãŸã®ã‚‚ã®ã§ã‚ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotLinkDifferentOwners" - > -所有者ãŒç•°ãªã‚‹ãŸã‚ã€ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを + </notification> + <notification name="CannotLinkDifferentOwners"> + 所有者ãŒç•°ãªã‚‹ãŸã‚ã€ã™ã¹ã¦ã®ã‚ªãƒ–ジェクトを リンクã§ãã¾ã›ã‚“。 自分ãŒæ‰€æœ‰ã—ã¦ã„るオブジェクトã ã‘ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="NoFileExtension" - > -ファイル「[FILE]ã€ã®æ‹¡å¼µåãŒç„¡åŠ¹ã§ã™ã€‚ + </notification> + <notification name="NoFileExtension"> + ファイル「[FILE]ã€ã®æ‹¡å¼µåãŒç„¡åŠ¹ã§ã™ã€‚ ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®æ‹¡å¼µåãŒæ£ã—ã„ã‹ã©ã†ã‹ã‚’確èªã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="InvalidFileExtension" - > -ファイル拡張å[EXTENSION]ã¯ç„¡åŠ¹ã§ã™ + </notification> + <notification name="InvalidFileExtension"> + ファイル拡張å[EXTENSION]ã¯ç„¡åŠ¹ã§ã™ æ£ã—ã„æ‹¡å¼µå:[VALIDS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -èªã¿è¾¼ã¿ã®ãŸã‚ã«ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã•ã‚ŒãŸã‚µã‚¦ãƒ³ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«ã‚’é–‹ã‘ã¾ã›ã‚“: + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + èªã¿è¾¼ã¿ã®ãŸã‚ã«ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã•ã‚ŒãŸã‚µã‚¦ãƒ³ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«ã‚’é–‹ã‘ã¾ã›ã‚“: [FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -ファイルãŒRIFF WAVEファイルã¨ã—ã¦èªè˜ã•ã‚Œã¾ã›ã‚“: + </notification> + <notification name="SoundFileNotRIFF"> + ファイルãŒRIFF WAVEファイルã¨ã—ã¦èªè˜ã•ã‚Œã¾ã›ã‚“: [FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -ファイルãŒPCM WAVEオーディオ・ファイルã¨ã—ã¦èªè˜ã•ã‚Œã¾ã›ã‚“: + </notification> + <notification name="SoundFileNotPCM"> + ファイルãŒPCM WAVEオーディオ・ファイルã¨ã—ã¦èªè˜ã•ã‚Œã¾ã›ã‚“: [FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -ファイルã®ãƒãƒ£ãƒ³ãƒãƒ«æ•°ãŒç„¡åŠ¹ã§ã™ï¼ˆãƒ¢ãƒŽãƒ©ãƒ«ã¾ãŸã¯ã‚¹ãƒ†ãƒ¬ã‚ªã‚’使用ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼‰ï¼š + </notification> + <notification name="SoundFileInvalidChannelCount"> + ファイルã®ãƒãƒ£ãƒ³ãƒãƒ«æ•°ãŒç„¡åŠ¹ã§ã™ï¼ˆãƒ¢ãƒŽãƒ©ãƒ«ã¾ãŸã¯ã‚¹ãƒ†ãƒ¬ã‚ªã‚’使用ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼‰ï¼š [FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -ファイルã®ã‚µãƒ³ãƒ—ル・レートãŒã‚µãƒãƒ¼ãƒˆå¤–ã§ã™ï¼ˆ44.1kを指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼‰ï¼š + </notification> + <notification name="SoundFileInvalidSampleRate"> + ファイルã®ã‚µãƒ³ãƒ—ル・レートãŒã‚µãƒãƒ¼ãƒˆå¤–ã§ã™ï¼ˆ44.1kを指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼‰ï¼š [FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -ファイルã®ãƒ¯ãƒ¼ãƒ‰ãƒ»ã‚µã‚¤ã‚ºãŒã‚µãƒãƒ¼ãƒˆå¤–ã§ã™ï¼ˆ8ã¾ãŸã¯16ビットを指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼‰ï¼š + </notification> + <notification name="SoundFileInvalidWordSize"> + ファイルã®ãƒ¯ãƒ¼ãƒ‰ãƒ»ã‚µã‚¤ã‚ºãŒã‚µãƒãƒ¼ãƒˆå¤–ã§ã™ï¼ˆ8ã¾ãŸã¯16ビットを指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼‰ï¼š [FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -WAVヘッダーã«ãƒ‡ãƒ¼ã‚¿ãƒ»ãƒãƒ£ãƒ³ã‚¯ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: + </notification> + <notification name="SoundFileInvalidHeader"> + WAVヘッダーã«ãƒ‡ãƒ¼ã‚¿ãƒ»ãƒãƒ£ãƒ³ã‚¯ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: [FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -オーディオ・ファイルãŒé•·ã™ãŽã¾ã™ã€‚(最大10秒): + </notification> + <notification name="SoundFileInvalidTooLong"> + オーディオ・ファイルãŒé•·ã™ãŽã¾ã™ã€‚(最大10秒): [FILE] - </notification> - - <notification - - name="ProblemWithFile" - > -ファイル[FILE]ã«ã‚¨ãƒ©ãƒ¼ãŒã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification name="ProblemWithFile"> + ファイル[FILE]ã«ã‚¨ãƒ©ãƒ¼ãŒã‚ã‚Šã¾ã™ã€‚ [ERROR] - </notification> - - <notification - - name="CannotOpenTemporarySoundFile" - > -書ãè¾¼ã¿ç”¨ã®ä¸€æ™‚圧縮サウンド・ファイルを開ãã“ã¨ãŒã§ãã¾ã›ã‚“:[FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -未知ã®Vorbis æš—å·åŒ–ã«å¤±æ•—: [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -ç ´æã—ãŸãƒªã‚½ãƒ¼ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ï¼š [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -未知ã®lindenリソースファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ï¼š [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -æœè£…ファイルを作æˆã§ãã¾ã›ã‚“: [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -アニメーションファイルã®ãƒãƒ«ã‚¯ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã¯ç¾åœ¨ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotUploadReason" - > -次ã®ç†ç”±ã§ã€[FILE] をアップãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“: [REASON] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + 書ãè¾¼ã¿ç”¨ã®ä¸€æ™‚圧縮サウンド・ファイルを開ãã“ã¨ãŒã§ãã¾ã›ã‚“:[FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + 未知ã®Vorbis æš—å·åŒ–ã«å¤±æ•—: [FILE] + </notification> + <notification name="CannotEncodeFile"> + 次ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ã‚¨ãƒ³ã‚³ãƒ¼ãƒ‰ãŒã§ãã¾ã›ã‚“: [FILE] + </notification> + <notification name="CorruptResourceFile"> + ç ´æã—ãŸãƒªã‚½ãƒ¼ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ï¼š [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + 未知ã®lindenリソースファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ï¼š [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + æœè£…ファイルを作æˆã§ãã¾ã›ã‚“: [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + アニメーションファイルã®ãƒãƒ«ã‚¯ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã¯ç¾åœ¨ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“。 + </notification> + <notification name="CannotUploadReason"> + 次ã®ç†ç”±ã§ã€[FILE] をアップãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“: [REASON] ã‚ã¨ã§ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -土地ã®æ‰€æœ‰è€…ãŒè¨±å¯ã—ã¦ã„ãªã„ãŸã‚〠+ </notification> + <notification name="CannotCreateLandmarkNotOwner"> + 土地ã®æ‰€æœ‰è€…ãŒè¨±å¯ã—ã¦ã„ãªã„ãŸã‚〠ランドマークを作æˆã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -å†ç·¨é›†ã¯ä¸å¯èƒ½ã§ã™ã€‚ + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + å†ç·¨é›†ã¯ä¸å¯èƒ½ã§ã™ã€‚ スクリプト化ã•ã‚ŒãŸã‚ªãƒ–ジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -「å†ç·¨é›†ã€ã¯ä¸å¯èƒ½ã§ã™ã€‚ + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + 「å†ç·¨é›†ã€ã¯ä¸å¯èƒ½ã§ã™ã€‚ 変更修æ£æ¨©é™ã®ã‚ã‚‹ スクリプト化ã•ã‚ŒãŸã‚ªãƒ–ジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -「å†è¨å®šã€ã‚’è¡Œã†ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + 「å†è¨å®šã€ã‚’è¡Œã†ã“ã¨ãŒã§ãã¾ã›ã‚“。 スクリプト化ã•ã‚ŒãŸã‚ªãƒ–ジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -「å†è¨å®šã€ã‚’è¡Œã†ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + 「å†è¨å®šã€ã‚’è¡Œã†ã“ã¨ãŒã§ãã¾ã›ã‚“。 変更修æ£æ¨©é™ã®ã‚ã‚‹ スクリプト化ã•ã‚ŒãŸã‚ªãƒ–ジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -スクリプトã®ã€Œå®Ÿè¡Œã€ã®è¨å®šãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + スクリプトã®ã€Œå®Ÿè¡Œã€ã®è¨å®šãŒã§ãã¾ã›ã‚“。 スクリプト化ã•ã‚ŒãŸã‚ªãƒ–ジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -スクリプトを「実行ã—ãªã„ã€ã«è¨å®šã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + スクリプトを「実行ã—ãªã„ã€ã«è¨å®šã§ãã¾ã›ã‚“。 スクリプト化ã•ã‚ŒãŸã‚ªãƒ–ジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="NoFrontmostFloater" - > -ä¿å˜ã™ã¹ãfrontmostフãƒãƒ¼ã‚¿ãŒã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -指定ã—ãŸæ¤œç´¢ã‚¯ã‚¨ãƒªã¯å¤‰æ›´ã•ã‚Œã€çŸã™ãŽã‚‹èªžå¥ã¯å–り除ã‹ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="NoFrontmostFloater"> + ä¿å˜ã™ã¹ãfrontmostフãƒãƒ¼ã‚¿ãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="SeachFilteredOnShortWords"> + 指定ã—ãŸæ¤œç´¢ã‚¯ã‚¨ãƒªã¯å¤‰æ›´ã•ã‚Œã€çŸã™ãŽã‚‹èªžå¥ã¯å–り除ã‹ã‚Œã¦ã„ã¾ã™ã€‚ 検索語å¥ï¼š [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -指定ã—ãŸæ¤œç´¢èªžå¥ãŒçŸã™ãŽãŸãŸã‚ã€æ¤œç´¢ã¯è¡Œã‚ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚ - </notification> - - <notification - - name="CouldNotTeleportReason" - > -テレãƒãƒ¼ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚ + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + 指定ã—ãŸæ¤œç´¢èªžå¥ãŒçŸã™ãŽãŸãŸã‚ã€æ¤œç´¢ã¯è¡Œã‚ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="CouldNotTeleportReason"> + テレãƒãƒ¼ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚ [REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -土地所有者è¨å®šãŒã§ãã¾ã›ã‚“: + </notification> + <notification name="invalid_tport"> + テレãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã®å‡¦ç†ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚テレãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒå¼•ã続ã表示ã•ã‚Œã‚‹å ´åˆã¯ã€æŠ€è¡“サãƒãƒ¼ãƒˆFAQ(www.secondlife.com/support)をå‚ç…§ã—ã¦ãã ã•ã„。 + </notification> + <notification name="invalid_region_handoff"> + 地域間ã®ç§»å‹•ã®å‡¦ç†ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚地域間を移動ã™ã‚‹ã«ã¯ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒå¼•ã続ã表示ã•ã‚Œã‚‹å ´åˆã¯ã€æŠ€è¡“サãƒãƒ¼ãƒˆFAQ(www.secondlife.com/support)をå‚ç…§ã—ã¦ãã ã•ã„。 + </notification> + <notification name="blocked_tport"> + 申ã—訳ã”ã–ã„ã¾ã›ã‚“。テレãƒãƒ¼ãƒˆã¯ç¾åœ¨ã€ãƒ–ãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ã‚‚ã†å°‘ã—後ã§ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 +ã‚„ã‚Šç›´ã—ã¦ã‚‚テレãƒãƒ¼ãƒˆã§ããªã„å ´åˆã¯ã€ã„ã£ãŸã‚“ãƒã‚°ã‚¢ã‚¦ãƒˆã—ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã—ã¦å•é¡Œã‚’解決ã—ã¦ãã ã•ã„。 + </notification> + <notification name="nolandmark_tport"> + 残念ãªãŒã‚‰ã€ã‚·ã‚¹ãƒ†ãƒ ã¯ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ç›®çš„地を探ã›ã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="timeout_tport"> + 申ã—訳ã”ã–ã„ã¾ã›ã‚“。システムã¯ãƒ†ãƒ¬ãƒãƒ¼ãƒˆæŽ¥ç¶šã‚’完了ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ +ã‚‚ã†å°‘ã—後ã§ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 + </notification> + <notification name="noaccess_tport"> + 残念ãªãŒã‚‰ã€ãã®ãƒ†ãƒ¬ãƒãƒ¼ãƒˆç›®çš„地ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="missing_attach_tport"> + 添付物ã¯ã€ã¾ã 到ç€ã—ã¦ã„ã¾ã›ã‚“。ã‚ã¨æ•°ç§’é–“ãŠå¾…ã¡ã„ãŸã ãã‹ã€ã„ã£ãŸã‚“ãƒã‚°ã‚¢ã‚¦ãƒˆã—ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã—ã¦ã‹ã‚‰ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã‚’ã‚„ã‚Šç›´ã—ã¦ã ã•ã„。 + </notification> + <notification name="too_many_uploads_tport"> + ã“ã®åœ°åŸŸã®è³‡ç”£ã‚ューãŒç¾åœ¨è¾¼ã¿åˆã£ã¦ã„ã‚‹ãŸã‚ã€ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’時間通りã«å‡¦ç†ã™ã‚‹ã“ã¨ãŒé›£ã—ã„状æ³ã§ã™ã€‚ +数分後ã«ã‚„ã‚Šç›´ã™ã‹ã€ã¾ãŸã¯æ··é›‘ã—ã¦ã„ãªã„ä»–ã®åœ°åŸŸã‚’ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="expired_tport"> + 申ã—訳ã”ã–ã„ã¾ã›ã‚“。システムã¯ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’時間ã©ãŠã‚Šã«å®Œäº†ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 + </notification> + <notification name="expired_region_handoff"> + 申ã—訳ã”ã–ã„ã¾ã›ã‚“。システムã¯åœ°åŸŸé–“ã®ç§»å‹•ã‚’時間ã©ãŠã‚Šã«å®Œäº†ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ +数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 + </notification> + <notification name="no_host"> + テレãƒãƒ¼ãƒˆç›®çš„地を見ã¤ã‘られã¾ã›ã‚“。目的地ãŒä¸€æ™‚çš„ã«åˆ©ç”¨ã§ããªã„状態ã‹ã€ã¾ãŸã¯ã™ã§ã«æ¶ˆæ»…ã—ã¦ã„ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 + </notification> + <notification name="no_inventory_host"> + æŒã¡ç‰©ã‚·ã‚¹ãƒ†ãƒ ã¯ç¾åœ¨åˆ©ç”¨ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotSetLandOwnerNothingSelected"> + 土地所有者è¨å®šãŒã§ãã¾ã›ã‚“: 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -複数ã®åœ°åŸŸãŒé¸æŠžã•ã‚ŒãŸãŸã‚ã€åœŸåœ°ã®æ‰€æœ‰æ¨©ã‚’主張 -ã§ãã¾ã›ã‚“。 é¸æŠžã™ã‚‹é¢ç©ã‚’å°ã•ãã—ã¦ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -ã“ã®åŒºç”»ã¯ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ã«å‡ºå“ã•ã‚Œã¦ã„ã¾ã™ã€‚ 区画ã®æ‰€æœ‰æ¨©ã‚’主張ã™ã‚‹ã¨ -オークションãŒç„¡åŠ¹ã«ãªã‚Šã€å…¥æœãŒé–‹å§‹ã—ã¦ã„ãŸã‚‰ä¸æº€ã«æ€ã† -ä½äººãŒå‡ºã¦ãã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 所有権を主張ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -コンテンツ化ã¯ä¸å¯èƒ½ã§ã™ï¼š + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + 複数ã®åœ°åŸŸãŒé¸æŠžã•ã‚ŒãŸãŸã‚〠+土地ã®æ‰€æœ‰æ¨©ã‚’å–å¾—ã§ãã¾ã›ã‚“。 +é¸æŠžã™ã‚‹é¢ç©ã‚’å°ã•ãã—ã¦ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="ForceOwnerAuctionWarning"> + ã“ã®åŒºç”»ã¯ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ã«å‡ºå“ã•ã‚Œã¦ã„ã¾ã™ã€‚ +区画ã®æ‰€æœ‰æ¨©ã‚’å–å¾—ã™ã‚‹ã¨ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ãŒç„¡åŠ¹ã«ãªã‚Šã€ +å…¥æœãŒé–‹å§‹ã—ã¦ã„ãŸã‚‰ä¸æº€ã«æ€ã†ä½äººãŒå‡ºã¦ãã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 +所有権をå–å¾—ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + コンテンツ化ã¯ä¸å¯èƒ½ã§ã™ï¼š 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -コンテンツ化ã¯ä¸å¯èƒ½ã§ã™ï¼š + </notification> + <notification name="CannotContentifyNoRegion"> + コンテンツ化ã¯ä¸å¯èƒ½ã§ã™ï¼š 土地ãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -土地をæ¨ã¦ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotReleaseLandNothingSelected"> + åœŸåœ°ã‚’ç ´æ£„ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“: 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotReleaseLandNoRegion"> + åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: 地域ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -土地を購入ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotBuyLandNothingSelected"> + 土地を購入ã§ãã¾ã›ã‚“: 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -土地を購入ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotBuyLandNoRegion"> + 土地を購入ã§ãã¾ã›ã‚“: ã“ã®åœŸåœ°ãŒã‚る地域を見ã¤ã‘ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -Second Lifeã«ã‚ˆã‚‹ã“ã®å–引ã®è¦‹ç©ã‚ŠãŒå®Œäº†ã™ã‚‹ã¾ã§ã€ŒåœŸåœ°ã‚’購入ã€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -土地をè²æ¸¡ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotCloseFloaterBuyLand"> + Second Lifeã«ã‚ˆã‚‹ã€ +ã“ã®å–引ã®è¦‹ç©ã‚ŠãŒå®Œäº†ã™ã‚‹ã¾ã§ã€ŒåœŸåœ°ã‚’購入ã€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotDeedLandNothingSelected"> + 土地をè²æ¸¡ã§ãã¾ã›ã‚“: 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -土地をè²æ¸¡ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotDeedLandNoGroup"> + 土地をè²æ¸¡ã§ãã¾ã›ã‚“: グループãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -土地をè²æ¸¡ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotDeedLandNoRegion"> + 土地をè²æ¸¡ã§ãã¾ã›ã‚“: ã“ã®åœŸåœ°ãŒã‚る地域ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 「ツールã€ï¼žã€Œãƒã‚°ã‚’å ±å‘Šã™ã‚‹ã€ã‚’使ã£ã¦å ±å‘Šã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -土地をè²æ¸¡ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotDeedLandMultipleSelected"> + 土地をè²æ¸¡ã§ãã¾ã›ã‚“: 複数ã®åŒºç”»ãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã™ã€‚ ã“れより1ã¤ã®åŒºç”»ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -ã“ã“ã§ã¯ã‚¹ãƒˆãƒªãƒ¼ãƒŸãƒ³ã‚°ãƒ»ãƒ¡ãƒ‡ã‚£ã‚¢å†ç”ŸãŒå¯èƒ½ã§ã™ã€‚ + </notification> + <notification name="ParcelCanPlayMedia"> + ã“ã“ã§ã¯ã‚¹ãƒˆãƒªãƒ¼ãƒŸãƒ³ã‚°ãƒ»ãƒ¡ãƒ‡ã‚£ã‚¢å†ç”ŸãŒå¯èƒ½ã§ã™ã€‚ メディアã®ã‚¹ãƒˆãƒªãƒ¼ãƒŸãƒ³ã‚°ã«ã¯ã€é«˜é€Ÿãªã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šç’°å¢ƒãŒå¿…è¦ã§ã™ã€‚ 利用å¯èƒ½ã«ãªã£ãŸã‚‰å†ç”Ÿã—ã¾ã™ã‹ï¼Ÿ -(ã“ã®ã‚ªãƒ—ションã¯ã€ã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œã‚ªãƒ¼ãƒ‡ã‚£ã‚ªï¼†ãƒ“デオã€ã§å¾Œã‹ã‚‰ã§ã‚‚変更ã§ãã¾ã™ï¼‰ - <usetemplate - name="okcancelbuttons" - notext="無効化" - yestext="メディアをå†ç”Ÿ"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -土地をè²æ¸¡ã§ãã¾ã›ã‚“: +(ã“ã®ã‚ªãƒ—ションã¯ã€ã€Œç’°å¢ƒè¨å®šã€ï¼žã€ŒéŸ³å£°ã¨ãƒ“デオã€ã§å¾Œã‹ã‚‰ã§ã‚‚変更ã§ãã¾ã™ï¼‰ + <usetemplate name="okcancelbuttons" notext="無効化" yestext="メディアをå†ç”Ÿ"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + 土地をè²æ¸¡ã§ãã¾ã›ã‚“: サーãƒãƒ¼ã‹ã‚‰ã®æ‰€æœ‰æ¨©æƒ…å ±ã‚’å¾…ã£ã¦ã„ã¾ã™ã€‚ å†åº¦ã€è©¦ã¿ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -土地をè²æ¸¡ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotDeedLandNoTransfer"> + 土地をè²æ¸¡ã§ãã¾ã›ã‚“: ã“ã®åœ°åŸŸ [REGION] ã§ã¯åœŸåœ°ã®è²æ¸¡ãŒè¨±ã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotReleaseLandWatingForServer"> + åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: サーãƒãƒ¼ãŒåŒºç”»æƒ…å ±ã‚’æ›´æ–°ã™ã‚‹ã®ã‚’å¾…ã£ã¦ã„ã¾ã™ã€‚ ã‚‚ã†å°‘ã—後ã§ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotReleaseLandSelected"> + åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: ã‚ãªãŸã¯ã€é¸æŠžã—ãŸã™ã¹ã¦ã®åŒºç”»ã‚’所有ã—ã¦ã„ã¾ã›ã‚“。 1ã¤ã®åŒºç”»ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotReleaseLandDontOwn"> + åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: ã‚ãªãŸã¯ã“ã®åœŸåœ°ã‚’手放ã™ã“ã¨ã‚’許å¯ã•ã‚Œã¦ã„ã¾ã›ã‚“。 ã‚ãªãŸã®åŒºç”»ã¯ç·‘色ã§è¡¨ç¤ºã•ã‚Œã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: ã“ã®åœŸåœ°ãŒã‚る地域ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 「ツールã€ï¼žã€Œãƒã‚°ã‚’å ±å‘Šã™ã‚‹ã€ã‚’使ã£ã¦å ±å‘Šã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotReleaseLandNoTransfer"> + åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: ã“ã® [REGION] ã§ã¯åœŸåœ°ã®è²æ¸¡ãŒè¨±ã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: -区画全体をé¸æŠžã—ã¦è§£æ”¾ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification name="CannotReleaseLandPartialSelection"> + åœŸåœ°ã‚’ç ´æ£„ã§ãã¾ã›ã‚“: +区画全体をé¸æŠžã—ã¦ç ´æ£„ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ 区画全体をé¸æŠžã™ã‚‹ã‹ã€ã¾ãŸã¯ã€ã¾ãšæœ€åˆã«åŒºç”»ã‚’分割ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ReleaseLandWarning" - > -ã‚ãªãŸã¯ã€[AREA]平方メートルã®åœŸåœ°ã‚’解放ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ -ã“ã®åŒºç”»ã‚’解放ã™ã‚‹ã¨ã€ã‚ãªãŸã®åœŸåœ°æ‰€æœ‰ã‹ã‚‰å¤–ã‚Œã¾ã™ãŒã€ -L$ã¯è´ˆä¸Žã•ã‚Œã¾ã›ã‚“。 - -土地を解放ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -土地を分割ã§ãã¾ã›ã‚“: + </notification> + <notification name="ReleaseLandWarning"> + ã‚ãªãŸã¯ã€[AREA]平方メートルã®åœŸåœ°ã‚’ç ´æ£„ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ +ã“ã®åŒºç”»ã‚’ç ´æ£„ã™ã‚‹ã¨ã‚ãªãŸã®åœŸåœ°ã§ã¯ãªããªã‚Šã¾ã™ãŒã€ +L$ã¯è¿”金ã•ã‚Œã¾ã›ã‚“。 + +åœŸåœ°ã‚’ç ´æ£„ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + 土地を分割ã§ãã¾ã›ã‚“: 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -土地を分割ã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotDivideLandPartialSelection"> + 土地を分割ã§ãã¾ã›ã‚“: 区画全体ãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã™ã€‚ 区画ã®ä¸€éƒ¨ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="LandDivideWarning" - > -ã“ã®åœŸåœ°ã‚’分割ã™ã‚‹ã¨ã€2ã¤ã®åŒºç”»ã«åˆ¥ã‚Œã¾ã™ã€‚ + </notification> + <notification name="LandDivideWarning"> + ã“ã®åœŸåœ°ã‚’分割ã™ã‚‹ã¨ã€2ã¤ã®åŒºç”»ã«åˆ¥ã‚Œã¾ã™ã€‚ 区画ã”ã¨ã®è¨å®šãŒå¯èƒ½ã«ãªã‚Šã¾ã™ã€‚ ã“ã®æ“作を行ã†ã¨ã€ä¸€éƒ¨ã®è¨å®šãŒãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã«ãƒªã‚»ãƒƒãƒˆã•ã‚Œã¾ã™ã€‚ 土地ã®åˆ†å‰²æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -土地を分割ã§ãã¾ã›ã‚“: + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + 土地を分割ã§ãã¾ã›ã‚“: ã“ã®åœŸåœ°ãŒã‚る地域ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 「ツールã€ï¼žã€Œãƒã‚°ã‚’å ±å‘Šã™ã‚‹ã€ã‚’使ã£ã¦å ±å‘Šã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -土地を統åˆã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotJoinLandNoRegion"> + 土地を統åˆã§ãã¾ã›ã‚“: ã“ã®åœŸåœ°ãŒã‚る地域ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 「ツールã€ï¼žã€Œãƒã‚°ã‚’å ±å‘Šã™ã‚‹ã€ã‚’使ã£ã¦å ±å‘Šã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -土地を統åˆã§ãã¾ã›ã‚“ã§ã—ãŸï¼š + </notification> + <notification name="CannotJoinLandNothingSelected"> + 土地を統åˆã§ãã¾ã›ã‚“ã§ã—ãŸï¼š 区画ãŒé¸å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -土地を統åˆã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + 土地を統åˆã§ãã¾ã›ã‚“: 1ã¤ã®åŒºç”»ã—ã‹é¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。 両方ã®åŒºç”»ã‚’ã¾ãŸã„ã§åœŸåœ°ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotJoinLandSelection" - > -土地を統åˆã§ãã¾ã›ã‚“: + </notification> + <notification name="CannotJoinLandSelection"> + 土地を統åˆã§ãã¾ã›ã‚“: 1ã¤ä»¥ä¸Šã®åŒºç”»ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ 両方ã®åŒºç”»ã‚’ã¾ãŸã„ã§åœŸåœ°ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="JoinLandWarning" - > -ã“ã®åœŸåœ°ã‚’çµ±åˆã™ã‚‹ã¨ã€é¸æŠžã•ã‚ŒãŸé•·æ–¹å½¢ã«äº¤å·®ã™ã‚‹ + </notification> + <notification name="JoinLandWarning"> + ã“ã®åœŸåœ°ã‚’çµ±åˆã™ã‚‹ã¨ã€é¸æŠžã•ã‚ŒãŸé•·æ–¹å½¢ã«äº¤å·®ã™ã‚‹ å…¨ã¦ã®åŒºç”»ã‚’基ã«ã—ã¦1ã¤ã®å¤§ããªåŒºç”»ãŒä½œæˆã•ã‚Œã¾ã™ã€‚ æ–°ã—ã„区画ã®åå‰ã¨ã‚ªãƒ—ションをå†è¨å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ 土地を統åˆã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -ã“ã®ã‚¢ã‚¤ãƒ†ãƒ をコピーã€è¡¨ç¤ºã™ã‚‹å‰ã«ã€ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã®ä¿å˜ãŒå¿…è¦ã§ã™ã€‚ ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -ã“ã®ã‚¢ã‚¤ãƒ†ãƒ ã‚’ã‚ãªãŸã®æŒã¡ç‰©ã«ã‚³ãƒ”ーã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="コピー"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -解åƒåº¦ã‚’ [RESX]x[RESY]ã«åˆ‡ã‚Šæ›¿ãˆã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -エラー:未定義ã®æ¤ç‰©ï¼š[SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -エラー:未定義ã®æ¨¹æœ¨ï¼š[SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -「[NAME]ã€ã‚’æœã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ä¿å˜ã§ãã¾ã›ã‚“。 コンピューター㮠+ <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ShowOwnersHelp"> + オーナーを表示: +区画ã«è‰²ã‚’付ã‘ã¦ã‚ªãƒ¼ãƒŠãƒ¼ã®ç¨®é¡žã‚’表示 + +ç·‘ = ã‚ãªãŸã®åœŸåœ° +アクア = ã‚ãªãŸã®ã‚°ãƒ«ãƒ¼ãƒ—所有地 +赤 = 他人ãŒæ‰€æœ‰ã™ã‚‹åœŸåœ° +黄色 = 売り出ã—ä¸ +ç´« = オークション +グレー = パブリック + </notification> + <notification name="ConfirmNotecardSave"> + ã“ã®ã‚¢ã‚¤ãƒ†ãƒ をコピーã€è¡¨ç¤ºã™ã‚‹å‰ã«ã€ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã®ä¿å˜ãŒå¿…è¦ã§ã™ã€‚ ä¿å˜ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ConfirmItemCopy"> + ã“ã®ã‚¢ã‚¤ãƒ†ãƒ ã‚’ã‚ãªãŸã®æŒã¡ç‰©ã«ã‚³ãƒ”ーã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="コピー"/> + </notification> + <notification name="ResolutionSwitchFail"> + 解åƒåº¦ã‚’ [RESX]x[RESY]ã«åˆ‡ã‚Šæ›¿ãˆã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="ErrorUndefinedGrasses"> + エラー:未定義ã®æ¤ç‰©ï¼š[SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + エラー:未定義ã®æ¨¹æœ¨ï¼š[SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + 「[NAME]ã€ã‚’æœã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ä¿å˜ã§ãã¾ã›ã‚“。 コンピューター㮠ディスクスペースを少ã—増やã—ã¦ã‹ã‚‰ã€ã‚‚ã†ä¸€åº¦ ä¿å˜ã—ã¦ã¿ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -[NAME]ã‚’ä¸å¤®è³‡ç”£æ ¼ç´åº«ã«ä¿å˜ã§ãã¾ã›ã‚“。 -ã“ã‚Œã¯ä¸€æ™‚çš„ãªä¸å…·åˆã§ã™ã€‚æœé£¾å“ãªã©ã‚’ -カスタマイズã—ã€æ•°åˆ†å¾Œã«ã‚‚ã†ä¸€åº¦ -ä¿å˜ã—ã¦ãã ã•ã„。 + </notification> + <notification name="CannotSaveToAssetStore"> + [NAME]ã‚’ä¸å¤®è³‡ç”£æ ¼ç´åº«ã«ä¿å˜ã§ãã¾ã›ã‚“。 +ã“ã‚Œã¯ä¸€æ™‚çš„ãªä¸å…·åˆã§ã™ã€‚ +æœé£¾å“ãªã©ã‚’カスタマイズã—ã€æ•°åˆ†å¾Œã«ã‚‚ã†ä¸€åº¦ä¿å˜ã—ã¦ãã ã•ã„。 ã“ã®å•é¡ŒãŒç¶šãよã†ãªã‚‰ã€ã€Œãƒ„ールã€ï¼žã€Œãƒã‚°ã‚’å ±å‘Šã™ã‚‹ã€ã‚’クリックã—ã€ãŠä½¿ã„ã®ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯è¨å®šã®è©³ç´°ã‚’å ±å‘Šã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -ã‚ãªãŸã¯[SECOND_LIFE]ã‹ã‚‰ãƒã‚°ã‚¢ã‚¦ãƒˆã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="YouHaveBeenLoggedOut"> + ã‚ãªãŸã¯[SECOND_LIFE]ã‹ã‚‰ãƒã‚°ã‚¢ã‚¦ãƒˆã•ã‚Œã¾ã—ãŸã€‚ [MESSAGE] -「IMã¨ãƒãƒ£ãƒƒãƒˆã‚’表示ã€ã‚’クリックã™ã‚‹ã¨ã€ç¾åœ¨ã‚ã‚‹IMã¨ãƒãƒ£ãƒƒãƒˆã‚’確èªã§ãã¾ã™ã€‚ 確èªã—ãªã„å ´åˆã¯ã€ã€Œçµ‚了ã€ã‚’クリックã—ã¦ã€ã™ãã«[SECOND_LIFE]を終了ã—ã¦ãã ã•ã„。 - <usetemplate - name="okcancelbuttons" - notext="終了" - yestext="IMã¨ãƒãƒ£ãƒƒãƒˆã‚’表示"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -グループ用ã®åœŸåœ°ã®è³¼å…¥ãŒã§ãã¾ã›ã‚“: +「IMã¨ãƒãƒ£ãƒƒãƒˆã‚’表示ã€ã‚’クリックã™ã‚‹ã¨ã€ +ç¾åœ¨ã‚ã‚‹IMã¨ãƒãƒ£ãƒƒãƒˆã‚’確èªã§ãã¾ã™ã€‚ +確èªã—ãªã„å ´åˆã¯ã€Œçµ‚了ã€ã‚’クリックã—〠+ã™ãã«[SECOND_LIFE]を終了ã—ã¦ãã ã•ã„。 + <usetemplate name="okcancelbuttons" notext="終了" yestext="IMã¨ãƒãƒ£ãƒƒãƒˆã‚’表示"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + グループ用ã®åœŸåœ°ã®è³¼å…¥ãŒã§ãã¾ã›ã‚“: ã‚ãªãŸã«ã¯ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªã‚°ãƒ«ãƒ¼ãƒ—ã®ãŸã‚ã«åœŸåœ°ã‚’購入ã™ã‚‹æ¨©é™ãŒã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - label="ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚’è¿½åŠ " - name="AddFriend" - > -フレンドã¨ã—ã¦è¿½åŠ ã™ã‚‹ã¨ã€ãŠäº’ã„ã®ç¾åœ¨åœ°ã®åœ°å›³ã¸ã®è¡¨ç¤ºè¨±å¯ã€ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹è¡¨ç¤ºã®è¨å®šã‚’ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + </notification> + <notification label="ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚’è¿½åŠ " name="AddFriend"> + フレンドã¨ã—ã¦è¿½åŠ ã™ã‚‹ã¨ã€ãŠäº’ã„ã®ç¾åœ¨åœ°ã®åœ°å›³ã¸ã®è¡¨ç¤ºè¨±å¯ã€ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹è¡¨ç¤ºã®è¨å®šã‚’ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ [NAME] ã«ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚·ãƒƒãƒ—ã‚’é€ã‚Šã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - label="ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚’è¿½åŠ " - name="AddFriendWithMessage" - > -フレンドã¨ã—ã¦è¿½åŠ ã™ã‚‹ã¨ã€ãŠäº’ã„ã®ç¾åœ¨åœ°ã®åœ°å›³ã¸ã®è¡¨ç¤ºè¨±å¯ã€ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹è¡¨ç¤ºã®è¨å®šã‚’ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification label="ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚’è¿½åŠ " name="AddFriendWithMessage"> + フレンドã¨ã—ã¦è¿½åŠ ã™ã‚‹ã¨ã€ãŠäº’ã„ã®ç¾åœ¨åœ°ã®åœ°å›³ã¸ã®è¡¨ç¤ºè¨±å¯ã€ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹è¡¨ç¤ºã®è¨å®šã‚’ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ [NAME] ã«ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚·ãƒƒãƒ—ã®ã‚ªãƒ•ã‚¡ãƒ¼ã‚’ã—ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <input name="message" type="text"> -フレンドã¨ã—ã¦ç™»éŒ²ã—ã¦ãã‚Œã¾ã™ã‹ï¼Ÿ - </input> - <button - - - name="Offer" - text="OK"/> - <button - - name="Cancel" - text="ã‚ャンセル"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -[FIRST_NAME] [LAST_NAME]をフレンドリストã‹ã‚‰å‰Šé™¤ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -フレンドリストã‹ã‚‰è¤‡æ•°ã®ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚’削除ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -**[AVATAR_NAME]** + <form name="form"> + <input name="message" type="text"> + フレンドã¨ã—ã¦ç™»éŒ²ã—ã¦ãã‚Œã¾ã™ã‹ï¼Ÿ + </input> + <button name="Offer" text="OK"/> + <button name="Cancel" text="ã‚ャンセル"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + [FIRST_NAME] [LAST_NAME]をフレンドリストã‹ã‚‰å‰Šé™¤ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + フレンドリストã‹ã‚‰è¤‡æ•°ã®ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚’削除ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + **[AVATAR_NAME]** 所有ã®ã™ã¹ã¦ã®ã‚¹ã‚¯ãƒªãƒ—ト・オブジェクトをã“ã®ã‚·ãƒ 内ã®ä»–ã®ã™ã¹ã¦ã®åœŸåœ°ã‹ã‚‰å‰Šé™¤ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -**[AVATAR_NAME]** + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + **[AVATAR_NAME]** 所有ã®ã™ã¹ã¦ã®ã‚¹ã‚¯ãƒªãƒ—ト・オブジェクトをã“ã®ã‚·ãƒ 内ã®ã™ã¹ã¦ã®åœŸåœ°ã‹ã‚‰å‰Šé™¤ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -**[AVATAR_NAME]** + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + **[AVATAR_NAME]** 所有ã®ã™ã¹ã¦ã®ã‚ªãƒ–ジェクト(スクリプト・オブジェクトã¨éžã‚¹ã‚¯ãƒªãƒ—ト・オブジェクト)を ã“ã®ã‚·ãƒ 内ã®ã™ã¹ã¦ã®åœŸåœ°ã‹ã‚‰å‰Šé™¤ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -クラシファイドã«åå‰ã‚’指定ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="MinClassifiedPrice" - > -広告料ã®æ”¯æ‰•ã„金é¡ã¯ã€Lã¨[MIN_PRICE]ãŒä¸‹é™ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="BlankClassifiedName"> + クラシファイドã«åå‰ã‚’指定ã—ã¦ãã ã•ã„。 + </notification> + <notification name="MinClassifiedPrice"> + 広告料ã®æ”¯æ‰•ã„金é¡ã¯ã€Lã¨[MIN_PRICE]ãŒä¸‹é™ã§ã™ã€‚ 金é¡ã‚’増やã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã®1ã¤ä»¥ä¸ŠãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="ConfirmObjectDeleteLock"> + é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã®1ã¤ä»¥ä¸ŠãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ 本当ã«ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã®1ã¤ä»¥ä¸ŠãŒã‚³ãƒ”ーã§ãã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã®1ã¤ä»¥ä¸ŠãŒã‚³ãƒ”ーã§ãã¾ã›ã‚“。 本当ã«ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã®1ã¤ä»¥ä¸Šã‚’ã€ã‚ãªãŸã¯æ‰€æœ‰ã—ã¦ã„ã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + é¸æŠžã—ãŸã‚¢ã‚¤ãƒ†ãƒ ã®1ã¤ä»¥ä¸Šã‚’ã€ã‚ãªãŸã¯æ‰€æœ‰ã—ã¦ã„ã¾ã›ã‚“。 本当ã«ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + 一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ 一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒã‚³ãƒ”ーã§ãã¾ã›ã‚“。 本当ã«ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + 一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ 1ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトをã€ã‚ãªãŸã¯æ‰€æœ‰ã—ã¦ã„ã¾ã›ã‚“。 本当ã«ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒã‚³ãƒ”ーã§ãã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + 一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒã‚³ãƒ”ーã§ãã¾ã›ã‚“。 1ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトをã€ã‚ãªãŸã¯æ‰€æœ‰ã—ã¦ã„ã¾ã›ã‚“。 本当ã«ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + 一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ 一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒã‚³ãƒ”ーã§ãã¾ã›ã‚“。 1ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトをã€ã‚ãªãŸã¯æ‰€æœ‰ã—ã¦ã„ã¾ã›ã‚“。 本当ã«ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + 一ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å–得を続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -å–å¾—ã—よã†ã¨ã—ã¦ã„るオブジェクトã«ã¯ã€ã‚ãªãŸã®æ‰€æœ‰ç‰©ã§ãªã„オブジェクトãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚ -ã‚ãªãŸã®æ‰€æœ‰ç‰©ã§ã¯ãªã„オブジェクトをå–å¾—ã™ã‚‹ã¨ã€æ¬¡ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æ¨©é™ãŒ -ãã®ã‚ªãƒ–ジェクトã«é©ç”¨ã•ã‚Œã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + å–å¾—ã—よã†ã¨ã—ã¦ã„るオブジェクトã«ã¯ã€ã‚ãªãŸã®æ‰€æœ‰ç‰©ã§ãªã„オブジェクトãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚ +ã‚ãªãŸã®æ‰€æœ‰ç‰©ã§ã¯ãªã„オブジェクトをå–å¾—ã™ã‚‹ã¨ã€æ¬¡ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æ¨©é™ãŒãã®ã‚ªãƒ–ジェクトã«é©ç”¨ã•ã‚Œã¾ã™ã€‚ ãã®ãŸã‚ã€å°†æ¥ã€å¤‰æ›´ã‚„コピーã®èƒ½åŠ›ãŒåˆ¶é™ã•ã‚Œã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å–得を続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -1ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + 1ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトãŒãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ å–å¾—ã—よã†ã¨ã—ã¦ã„るオブジェクトã«ã¯ã€ã‚ãªãŸã®æ‰€æœ‰ç‰©ã§ãªã„オブジェクトãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚ -ã‚ãªãŸã®æ‰€æœ‰ç‰©ã§ã¯ãªã„オブジェクトをå–å¾—ã™ã‚‹ã¨ã€æ¬¡ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æ¨©é™ãŒ -ãã®ã‚ªãƒ–ジェクトã«é©ç”¨ã•ã‚Œã¾ã™ã€‚ +ã‚ãªãŸã®æ‰€æœ‰ç‰©ã§ã¯ãªã„オブジェクトをå–å¾—ã™ã‚‹ã¨ã€æ¬¡ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æ¨©é™ãŒãã®ã‚ªãƒ–ジェクトã«é©ç”¨ã•ã‚Œã¾ã™ã€‚ ãã®ãŸã‚ã€å°†æ¥ã€å¤‰æ›´ã‚„コピーã®èƒ½åŠ›ãŒåˆ¶é™ã•ã‚Œã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ ã“ã®é¸æŠžå†…容ã®ã¾ã¾ã§ç¶šè¡Œã™ã‚‹ã“ã¨ã¯å¯èƒ½ã§ã™ãŒã€ ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã®å–得を続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -複数ã®åœ°åŸŸãŒé¸æŠžã•ã‚ŒãŸãŸã‚ã€åœŸåœ°ã‚’購入ã§ãã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + 複数ã®åœ°åŸŸãŒé¸æŠžã•ã‚ŒãŸãŸã‚ã€åœŸåœ°ã‚’購入ã§ãã¾ã›ã‚“。 é¸æŠžã™ã‚‹é¢ç©ã‚’å°ã•ãã—ã¦ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="DeedLandToGroup" - > -ã“ã®åŒºç”»ã®è²æ¸¡ã«éš›ã—ã¦ã¯ã€ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ãŒå分ãªåœŸåœ°ã‚¯ãƒ¬ã‚¸ãƒƒãƒˆã‚’ -ä¿æœ‰ãŠã‚ˆã³ç¶æŒã—ã¦ã„ã‚‹ã“ã¨ãŒå¿…è¦ã§ã™ã€‚ -土地ã®è³¼å…¥ä¾¡æ ¼ã¯ã€ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”金ã•ã‚Œã¾ã›ã‚“。è²æ¸¡ã•ã‚ŒãŸåŒºç”»ãŒå£²ã‚Œã‚‹ã¨ã€è²©å£²ä¾¡æ ¼ã¯ -グループ・メンãƒãƒ¼ã«å‡ç‰ã«åˆ†é…ã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="DeedLandToGroup"> + ã“ã®åŒºç”»ã®è²æ¸¡ã«éš›ã—ã¦ã¯ã€ +ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ãŒå分ãªåœŸåœ°ã‚¯ãƒ¬ã‚¸ãƒƒãƒˆã‚’ä¿æœ‰ãŠã‚ˆã³ç¶æŒã—ã¦ã„ã‚‹ã“ã¨ãŒå¿…è¦ã§ã™ã€‚ +土地ã®è³¼å…¥ä¾¡æ ¼ã¯ã€ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”金ã•ã‚Œã¾ã›ã‚“。è²æ¸¡ã•ã‚ŒãŸåŒºç”»ãŒå£²ã‚Œã‚‹ã¨ã€è²©å£²ä¾¡æ ¼ã¯ã‚°ãƒ«ãƒ¼ãƒ—・メンãƒãƒ¼ã«å‡ç‰ã«åˆ†é…ã•ã‚Œã¾ã™ã€‚ ã“ã®[AREA]平方メートルã®åœŸåœ°ã‚’ã€ã‚°ãƒ«ãƒ¼ãƒ— 「[GROUP_NAME]ã€ã«è²æ¸¡ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -ã“ã®åŒºç”»ã®è²æ¸¡ã«éš›ã—ã¦ã¯ã€ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—㌠+ <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + ã“ã®åŒºç”»ã®è²æ¸¡ã«éš›ã—ã¦ã¯ã€ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—㌠å分ãªåœŸåœ°ã‚¯ãƒ¬ã‚¸ãƒƒãƒˆã‚’ä¿æœ‰ãŠã‚ˆã³ç¶æŒã—ã¦ã„ã‚‹ã“ã¨ãŒå¿…è¦ã§ã™ã€‚ ã“ã®è²æ¸¡ã«ã‚ˆã‚Šã€ -「[FIRST_NAME] [LAST_NAME]ã€ã‹ã‚‰ã‚°ãƒ«ãƒ¼ãƒ—ã«å¯¾ã—ã¦åœŸåœ°ãŒåŒæ™‚ã«æä¾›ã•ã‚Œã¾ã™ã€‚ -土地ã®è³¼å…¥ä¾¡æ ¼ã¯ã€ã‚ªãƒ¼ãƒŠãƒ¼ã« -返金ã•ã‚Œã¾ã›ã‚“。è²æ¸¡ã•ã‚ŒãŸåŒºç”»ãŒå£²ã‚Œã‚‹ã¨ã€ -è²©å£²ä¾¡æ ¼ã¯ã‚°ãƒ«ãƒ¼ãƒ—・メンãƒãƒ¼ã«å‡ç‰ã«åˆ†é…ã•ã‚Œã¾ã™ã€‚ +「[FIRST_NAME] [LAST_NAME]ã€ã‹ã‚‰ +グループã«å¯¾ã—ã¦åœŸåœ°ãŒåŒæ™‚ã«æä¾›ã•ã‚Œã¾ã™ã€‚ +土地ã®è³¼å…¥ä¾¡æ ¼ã¯ã€ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”金ã•ã‚Œã¾ã›ã‚“。 +è²æ¸¡ã•ã‚ŒãŸåŒºç”»ãŒå£²ã‚Œã‚‹ã¨ã€è²©å£²æ–™é‡‘ã¯ã‚°ãƒ«ãƒ¼ãƒ—・メンãƒãƒ¼ã«å‡ç‰ã«åˆ†é…ã•ã‚Œã¾ã™ã€‚ ã“ã®[AREA]平方メートルã®åœŸåœ°ã‚’ã€ã‚°ãƒ«ãƒ¼ãƒ—「[GROUP_NAME]ã€ã«è²æ¸¡ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > --safeオプションを指定ã—ãŸã®ã§ã€ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="DisplaySetToSafe"> + -safeオプションを指定ã—ãŸã®ã§ã€ 表示è¨å®šã¯ã‚»ãƒ¼ãƒ•ãƒ»ãƒ¬ãƒ™ãƒ«ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="DisplaySetToRecommended" - > -表示è¨å®šã¯ã€ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ 構æˆã« + </notification> + <notification name="DisplaySetToRecommended"> + 表示è¨å®šã¯ã€ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ 構æˆã« 基ã¥ã„ã¦æŽ¨å¥¨ã•ã‚ŒãŸãƒ¬ãƒ™ãƒ«ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -ã‚ãªãŸãŒè¨ªã‚ŒãŸã„[TYPE]ã®ãƒã‚±ãƒ¼ã‚·ãƒ§ãƒ³ã¯ç¾åœ¨ã”利用ã§ãã¾ã›ã‚“。 [HELP] + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + ã‚ãªãŸãŒè¨ªã‚ŒãŸã„[TYPE]ã®ãƒã‚±ãƒ¼ã‚·ãƒ§ãƒ³ã¯ç¾åœ¨ã”利用ã§ãã¾ã›ã‚“。 [HELP] è¿‘ãã®åœ°åŸŸã«ç§»å‹•ã—ã¾ã—ãŸã€‚ - </notification> - - <notification - - name="ClothingLoading" - > -ã‚ãªãŸã®æœã‚’ã€ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ä¸ã§ã™ã€‚ -通常ã©ãŠã‚Šã«[SECOND_LIFE]を使ãˆã€ä»–ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚‚ã‚ãªãŸã‚’æ£å¸¸ã«è¦‹ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ - <form name="form"> - <ignore name="ignore" text="æœã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã«é•·ã„時間ãŒã‹ã‹ã‚‹å ´åˆ"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -[SECOND_LIFE]ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãŒå®Œäº†ã—ã¾ã—ãŸã€‚ - -[SECOND_LIFE]ã®ä½¿ç”¨ãŒåˆã‚ã¦ã®æ–¹ã¯ã€ãƒã‚°ã‚¤ãƒ³å‰ã«ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ä½œæˆãŒå¿…è¦ã§ã™ã€‚ -www.secondlife.comã«æˆ»ã£ã¦ã€æ–°è¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ä½œæˆã‚’è¡Œã„ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="続行" - yestext="æ–°è¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆ..."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -接続ã«å•é¡ŒãŒç”Ÿã˜ã¦ã„ã¾ã™ã€‚ ã‚ãªãŸã®ã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šã€ã¾ãŸã¯Second Lifeサーãƒãƒ¼ã«å•é¡ŒãŒã‚ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ - -ã‚ãªãŸã®ã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šã‚’確èªã—ã¦æ•°åˆ†å¾Œã«ã‚‚ã†ä¸€åº¦è©¦ã¿ã‚‹ã‹ã€ã€Œãƒ˜ãƒ«ãƒ—ã€ã‚’クリックã—ã¦å½“社ã®ã‚µãƒãƒ¼ãƒˆãƒ»ã‚µã‚¤ãƒˆã«æŽ¥ç¶šã—ã¦ãã ã•ã„。ã¾ãŸã¯ã€ã€Œãƒ†ãƒ¬ãƒãƒ¼ãƒˆã€ã‚’クリックã—ã¦ãƒ›ãƒ¼ãƒ ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã—ã¦ã¿ã¦ãã ã•ã„。 - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="ヘルプ"/> - <button - - name="Teleport" - text="テレãƒãƒ¼ãƒˆ"/> - </form> - </notification> - - <notification - - name="WelcomeChooseSex" - > -ã¾ã‚‚ãªãã‚ãªãŸã®ã‚¢ãƒã‚¿ãƒ¼ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="ClothingLoading"> + ã‚ãªãŸã®æœã‚’ダウンãƒãƒ¼ãƒ‰ä¸ã§ã™ã€‚ +通常ã©ãŠã‚Šã«[SECOND_LIFE]を使ãˆã€ +ä»–ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚‚ã‚ãªãŸã‚’æ£å¸¸ã«è¦‹ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + <form name="form"> + <ignore name="ignore" text="æœã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã«é•·ã„時間ãŒã‹ã‹ã‚‹å ´åˆ"/> + </form> + </notification> + <notification name="FirstRun"> + [SECOND_LIFE]ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãŒå®Œäº†ã—ã¾ã—ãŸã€‚ + +[SECOND_LIFE] ã®ä½¿ç”¨ãŒåˆã‚ã¦ã®æ–¹ã¯ã€ +ãƒã‚°ã‚¤ãƒ³å‰ã«ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ä½œæˆãŒå¿…è¦ã§ã™ã€‚ +www.secondlife.comã«ç§»å‹•ã—ã€æ–°è¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ä½œæˆã‚’è¡Œã„ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="続行" yestext="æ–°è¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆ..."/> + </notification> + <notification name="LoginPacketNeverReceived"> + 接続ã«å•é¡ŒãŒç”Ÿã˜ã¦ã„ã¾ã™ã€‚ ã‚ãªãŸã®ã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šã€ã¾ãŸã¯Second Life サーãƒãƒ¼ã«å•é¡ŒãŒã‚ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ + +インターãƒãƒƒãƒˆæŽ¥ç¶šã‚’確èªã—ã¦æ•°åˆ†å¾Œã«ã‚‚ã†ä¸€åº¦è©¦ã¿ã‚‹ã‹ã€ã€Œãƒ˜ãƒ«ãƒ—ã€ã‚’クリックã—ã¦å½“社ã®ã‚µãƒãƒ¼ãƒˆã‚µã‚¤ãƒˆã«æŽ¥ç¶šã—ã¦ãã ã•ã„。ã¾ãŸã¯ã€ã€Œãƒ†ãƒ¬ãƒãƒ¼ãƒˆã€ã‚’クリックã—ã¦ãƒ›ãƒ¼ãƒ ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã—ã¦ã¿ã¦ãã ã•ã„。 + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="ヘルプ"/> + <button name="Teleport" text="テレãƒãƒ¼ãƒˆ"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + ã¾ã‚‚ãªãã‚ãªãŸã®ã‚¢ãƒã‚¿ãƒ¼ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ 矢å°ã‚ーを使用ã—ã¦æ©ãã¾ã™ã€‚ ヘルプãŒå¿…è¦ãªã¨ãã‚„[SECOND_LIFE]ã«ã¤ã„ã¦çŸ¥ã‚ŠãŸã„ã¨ãã¯ã€ F1ã‚ーを押ã—ã¦ãã ã•ã„。 男性ã‚ã‚‹ã„ã¯å¥³æ€§ã®ã‚¢ãƒã‚¿ãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„。 ã‚ãªãŸã®æ±ºå®šã¯å¾Œã§å¤‰æ›´ã§ãã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="女性" - yestext="男性"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] L$[PRICE] 残高ä¸è¶³ã®ãŸã‚実行ä¸å¯ã§ã™ã€‚ - </notification> - - <notification - - name="GrantedModifyRights" - > -ã‚ãªãŸã«ã¯ã€ [FIRST_NAME] [LAST_NAME]ã®ã‚ªãƒ–ジェクトを修æ£ã™ã‚‹ç‰¹æ¨©ãŒä¸Žãˆã‚‰ã‚Œã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="RevokedModifyRights" - > -[FIRST_NAME] [LAST_NAME]ã®ã‚ªãƒ–ジェクトを修æ£ã™ã‚‹ç‰¹æ¨©ãŒå–り消ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -ã“ã®æ‰‹é †ã¯ã€ã“ã®åœ°åŸŸã®åœ°å›³ã®ã‚ャッシュを消去ã—ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="女性" yestext="男性"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] L$[PRICE] 残高ä¸è¶³ã®ãŸã‚実行ä¸å¯ã§ã™ã€‚ + </notification> + <notification name="GrantedModifyRights"> + ã‚ãªãŸã«ã¯ã€ +[FIRST_NAME] [LAST_NAME] +ã®ã‚ªãƒ–ジェクトを修æ£ã™ã‚‹æ¨©é™ãŒä¸Žãˆã‚‰ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="RevokedModifyRights"> + [FIRST_NAME] [LAST_NAME] +ã®ã‚ªãƒ–ジェクトを修æ£ã™ã‚‹æ¨©é™ãŒå–り消ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="FlushMapVisibilityCaches"> + ã“ã®æ‰‹é †ã¯ã€ã“ã®åœ°åŸŸã®åœ°å›³ã®ã‚ャッシュを消去ã—ã¾ã™ã€‚ ã“ã‚ŒãŒä¾¿åˆ©ãªã®ã¯ãƒ‡ãƒãƒƒã‚°æ™‚ã®ã¿ã§ã™ã€‚ (作æˆä¸ã¯5分間経ã¤ã¨ã€å…¨å“¡ã®åœ°å›³ãŒå†åº¦ãƒã‚°ã‚¤ãƒ³å¾Œã« æ›´æ–°ã•ã‚Œã¾ã™ï¼‰ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -一度ã«è¤‡æ•°ã®ã‚¢ã‚¤ãƒ†ãƒ ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯ã‚³ãƒ”ーã§ãã¾ã›ã‚“。 + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + 一度ã«ä¸€ã¤ä»¥ä¸Šã®ã‚ªãƒ–ジェクトをã¨è²·ã†ã“ã¨ã¯ã§ãã¾ã›ã‚“。 オブジェクトを一ã¤ã ã‘é¸ã‚“ã§ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + 一度ã«è¤‡æ•°ã®ã‚¢ã‚¤ãƒ†ãƒ ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯ã‚³ãƒ”ーã§ãã¾ã›ã‚“。 é¸æŠžã™ã‚‹ã‚ªãƒ–ジェクトを1ã¤ã ã‘ã«ã—ã¦ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -ã“ã®åœ°åŸŸã®å…¨ã¦ã®ä½äººã‚’ホームã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -[USER_NAME]ãŒæ‰€æœ‰ã—ã¦ã„るオブジェクトを返å´ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -地域テクスãƒãƒ£ã‚’è¨å®šã§ãã¾ã›ã‚“ã§ã—ãŸï¼š + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + ã“ã®åœ°åŸŸã®å…¨ã¦ã®ä½äººã‚’ホームã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + [USER_NAME]ãŒæ‰€æœ‰ã—ã¦ã„るオブジェクトを返å´ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + 地域テクスãƒãƒ£ã‚’è¨å®šã§ãã¾ã›ã‚“ã§ã—ãŸï¼š 地形テクスãƒãƒ£[TEXTURE_NUM]ã¯ã€ç„¡åŠ¹ã®ãƒ“ット深度[TEXTURE_BIT_DEPTH]ã§ã™ã€‚ -テクスãƒãƒ£[TEXTURE_NUM]ã‚’24ビット512x512ã‹ãれ以下ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã¨äº¤æ›ã—〠-「é©ç”¨ã€ã‚’å†åº¦ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="InvalidTerrainSize" - > -地域テクスãƒãƒ£ã‚’è¨å®šã§ãã¾ã›ã‚“ã§ã—ãŸï¼š +テクスãƒãƒ£[TEXTURE_NUM]ã‚’24ビット512x512ã‹ãれ以下ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã¨äº¤æ›ã—ã€ã€Œé©ç”¨ã€ã‚’å†åº¦ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãã ã•ã„。 + </notification> + <notification name="InvalidTerrainSize"> + 地域テクスãƒãƒ£ã‚’è¨å®šã§ãã¾ã›ã‚“ã§ã—ãŸï¼š 地形テクスãƒãƒ£[TEXTURE_NUM]ã¯ã€[TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]ã§ã¯å¤§ãã™ãŽã¾ã™ã€‚ -テクスãƒãƒ£[TEXTURE_NUM]ã‚’24ビット512x512ã‹ãれ以下ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã¨äº¤æ›ã—〠-「é©ç”¨ã€ã‚’å†åº¦ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="RawUploadStarted" - > -アップãƒãƒ¼ãƒ‰é–‹å§‹ã€‚ 接続速度ã«ã‚ˆã£ã¦ã¯ã€ +テクスãƒãƒ£[TEXTURE_NUM]ã‚’24ビット512x512ã‹ãれ以下ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã¨äº¤æ›ã—ã€ã€Œé©ç”¨ã€ã‚’å†åº¦ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãã ã•ã„。 + </notification> + <notification name="RawUploadStarted"> + アップãƒãƒ¼ãƒ‰é–‹å§‹ã€‚ 接続速度ã«ã‚ˆã£ã¦ã¯ã€ 最大2分間ã‹ã‹ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -ç¾åœ¨ã®åœ°å½¢ã‚’構築ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="ConfirmBakeTerrain"> + ç¾åœ¨ã®åœ°å½¢ã‚’構築ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ ã“ã®æ“作を行ã†ã¨ã€ç¾åœ¨ã®åœ°å½¢ãŒä¸Šæ˜‡ï¼ä¸‹é™ã®åˆ¶é™ç¯„囲ã®ä¸å¿ƒã«ãªã‚Šã€ã€Œå¾©å¸°ã€ãƒ„ールã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã«ãªã‚Šã¾ã™ã€‚ æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -許å¯ä½äººã¯ [MAX_AGENTS] 人ã¾ã§ã§ã™ã€‚ - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -ç¦æ¢ä½äººã¯[MAX_BANNED]人ã¾ã§ã§ã™ã€‚ - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -[NUM_ADDED] 個ã®ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’è¿½åŠ ã—よã†ã¨ã—ã¦å¤±æ•—ã—ã¾ã—ãŸï¼š [MAX_AGENTS] [LIST_TYPE] 制é™ã‚’ [NUM_EXCESS] 個超éŽã—ã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -許å¯ã‚°ãƒ«ãƒ¼ãƒ—ã¯[MAX_GROUPS]グループã¾ã§ã§ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="構築ã™ã‚‹"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã¯[MAX_MANAGER]人ã¾ã§ã§ã™ã€‚ - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã‚’ä¸å‹•ç”£ã€Œç¦æ¢ä½äººã€ãƒªã‚¹ãƒˆã«è¿½åŠ ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -æœãŠã‚ˆã³å½¢ãŒãƒãƒ¼ãƒ‰ã•ã‚Œã‚‹ã¾ã§ã€å®¹å§¿ã®å¤‰æ›´ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -クラシファイド広告ã®åå‰ã¯ã€ã‚¢ãƒ«ãƒ•ã‚¡ãƒ™ãƒƒãƒˆã‹ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + 許å¯ä½äººã¯ [MAX_AGENTS] 人ã¾ã§ã§ã™ã€‚ + </notification> + <notification name="MaxBannedAgentsOnRegion"> + ç¦æ¢ä½äººã¯[MAX_BANNED]人ã¾ã§ã§ã™ã€‚ + </notification> + <notification name="MaxAgentOnRegionBatch"> + [NUM_ADDED] 個ã®ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’è¿½åŠ ã—よã†ã¨ã—ã¦å¤±æ•—ã—ã¾ã—ãŸï¼š [MAX_AGENTS] [LIST_TYPE] 制é™ã‚’ [NUM_EXCESS] 個超éŽã—ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + 許å¯ã‚°ãƒ«ãƒ¼ãƒ—ã¯[MAX_GROUPS]グループã¾ã§ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="構築ã™ã‚‹"/> + </notification> + <notification name="MaxManagersOnRegion"> + ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã¯[MAX_MANAGER]人ã¾ã§ã§ã™ã€‚ + </notification> + <notification name="OwnerCanNotBeDenied"> + ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã‚’ä¸å‹•ç”£ã€Œç¦æ¢ä½äººã€ãƒªã‚¹ãƒˆã«è¿½åŠ ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + æœãŠã‚ˆã³å½¢ãŒãƒãƒ¼ãƒ‰ã•ã‚Œã‚‹ã¾ã§ã€å®¹å§¿ã®å¤‰æ›´ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + クラシファイド広告ã®åå‰ã¯ã€ã‚¢ãƒ«ãƒ•ã‚¡ãƒ™ãƒƒãƒˆã‹ æ•°å—ã§å§‹ã‚ã¾ã™ã€‚ å¥èªç‚¹ã§ã¯å§‹ã‚られã¾ã›ã‚“。 - </notification> - - <notification - - name="CantSetBuyObject" - > -オブジェクトãŒè²©å£²å¯¾è±¡ã§ã¯ãªã„ãŸã‚ã€ã‚ªãƒ–ジェクトã®è³¼å…¥ãŒè¨å®šã§ãã¾ã›ã‚“。 + </notification> + <notification name="CantSetBuyObject"> + オブジェクトãŒè²©å£²å¯¾è±¡ã§ã¯ãªã„ãŸã‚ã€ã‚ªãƒ–ジェクトã®è³¼å…¥ãŒè¨å®šã§ãã¾ã›ã‚“。 販売対象ã®ã‚ªãƒ–ジェクトをè¨å®šã—ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="FinishedRawDownload" - > -æœªåŠ å·¥ã®åœ°å½¢ãƒ•ã‚¡ã‚¤ãƒ«ã‚’次ã¸ã¨ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¾ã—ãŸï¼š + </notification> + <notification name="FinishedRawDownload"> + æœªåŠ å·¥ã®åœ°å½¢ãƒ•ã‚¡ã‚¤ãƒ«ã‚’次ã¸ã¨ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¾ã—ãŸï¼š [DOWNLOAD_PATH]。 - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -[SECOND_LIFE]ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ + </notification> + <notification name="DownloadWindowsMandatory"> + [SECOND_LIFE]ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ [MESSAGE] -[SECOND_LIFE]を使用ã™ã‚‹ãŸã‚ã«ã€ã“ã®ã‚¢ãƒƒãƒ—デートをダウンãƒãƒ¼ãƒ‰ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="終了" - yestext="ダウンãƒãƒ¼ãƒ‰"/> - </notification> - - <notification - - name="DownloadWindows" - > -[SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ +[SECOND_LIFE]を使用ã™ã‚‹ãŸã‚ã«ã¯ã€ +ã“ã®ã‚¢ãƒƒãƒ—デートをダウンãƒãƒ¼ãƒ‰ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="終了" yestext="ダウンãƒãƒ¼ãƒ‰"/> + </notification> + <notification name="DownloadWindows"> + [SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ [MESSAGE] ã“ã®ã‚¢ãƒƒãƒ—デートã¯å¿…é ˆã§ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€ãƒ‘フォーマンスã¨å®‰å®šæ€§ã‚’å‘上ã•ã›ã‚‹ãŸã‚ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="続行" - yestext="ダウンãƒãƒ¼ãƒ‰"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -[SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="続行" yestext="ダウンãƒãƒ¼ãƒ‰"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + [SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ [MESSAGE] ã“ã®ã‚¢ãƒƒãƒ—デートã¯å¿…é ˆã§ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€ãƒ‘フォーマンスã¨å®‰å®šæ€§ã‚’å‘上ã•ã›ã‚‹ãŸã‚ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="続行" - yestext="ダウンãƒãƒ¼ãƒ‰"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -[SECOND_LIFE]ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="続行" yestext="ダウンãƒãƒ¼ãƒ‰"/> + </notification> + <notification name="DownloadMacMandatory"> + [SECOND_LIFE]ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ [MESSAGE] -[SECOND_LIFE]を使用ã™ã‚‹ãŸã‚ã«ã€ã“ã®ã‚¢ãƒƒãƒ—デートをダウンãƒãƒ¼ãƒ‰ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +[SECOND_LIFE]を使用ã™ã‚‹ãŸã‚ã«ã€ +ã“ã®ã‚¢ãƒƒãƒ—デートをダウンãƒãƒ¼ãƒ‰ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ アプリケーションãŒã‚るフォルダã«ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="終了" - yestext="ダウンãƒãƒ¼ãƒ‰"/> - </notification> - - <notification - - name="DownloadMac" - > -[SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="終了" yestext="ダウンãƒãƒ¼ãƒ‰"/> + </notification> + <notification name="DownloadMac"> + [SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ [MESSAGE] ã“ã®ã‚¢ãƒƒãƒ—デートã¯å¿…é ˆã§ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€ãƒ‘フォーマンスã¨å®‰å®šæ€§ã‚’å‘上ã•ã›ã‚‹ãŸã‚ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™ã€‚ アプリケーションãŒã‚るフォルダã«ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="続行" - yestext="ダウンãƒãƒ¼ãƒ‰"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -[SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="続行" yestext="ダウンãƒãƒ¼ãƒ‰"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + [SECOND_LIFE]ã®ã‚¢ãƒƒãƒ—デート・ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨å¯èƒ½ã§ã™ã€‚ [MESSAGE] ã“ã®ã‚¢ãƒƒãƒ—デートã¯å¿…é ˆã§ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€ãƒ‘フォーマンスã¨å®‰å®šæ€§ã‚’å‘上ã•ã›ã‚‹ãŸã‚ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™ã€‚ アプリケーションãŒã‚るフォルダã«ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="続行" - yestext="ダウンãƒãƒ¼ãƒ‰"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -ã“ã®ã‚ªãƒ–ジェクトをè²æ¸¡ã™ã‚‹ã¨ã‚°ãƒ«ãƒ¼ãƒ—ã«ä»¥ä¸‹ã®ã“ã¨ãŒèµ·ã“ã‚Šã¾ã™ï¼š + <usetemplate name="okcancelbuttons" notext="続行" yestext="ダウンãƒãƒ¼ãƒ‰"/> + </notification> + <notification name="DeedObjectToGroup"> + ã“ã®ã‚ªãƒ–ジェクトをè²æ¸¡ã™ã‚‹ã¨ã‚°ãƒ«ãƒ¼ãƒ—ã¯ä»¥ä¸‹ã®ã“ã¨ãŒå¯èƒ½ã§ã™ï¼š * オブジェクトã«æ”¯æ‰•ã‚ã‚ŒãŸL$ã‚’å—é ˜ã—ã¾ã™ã€‚ - <usetemplate - ignoretext="オブジェクトをグループã«è²æ¸¡ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="è²æ¸¡"/> - </notification> - - <notification - - name="WebLaunchExternalTarget" - > -ãŠä½¿ã„ã®ã‚·ã‚¹ãƒ†ãƒ ã®ã‚¦ã‚§ãƒ–・ブラウザを開ã„ã¦ã€ã“ã®å†…容を表示ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="ãŠä½¿ã„ã®ã‚·ã‚¹ãƒ†ãƒ ã®ãƒ–ラウザを開ã„ã¦ã‚¦ã‚§ãƒ–・ページを表示ã—よã†ã¨ã—ãŸã¨ã" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchJoinNow" - > -www.secondlife.comã«ç§»å‹•ã—ã¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’管ç†ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="アカウントを管ç†ã™ã‚‹ãŸã‚ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchBugReport101" - > -[SECOND_LIFE]Wikiã§ã€ãƒã‚°ã‚’å ±å‘Šã™ã‚‹æ£ã—ã„方法をã”覧ãã ã•ã„。 - <usetemplate - ignoretext="ãƒã‚°ãƒ¬ãƒãƒ¼ãƒˆ101 Wikiを閲覧ã™ã‚‹ãŸã‚ã®ãƒ–ラウザを開ãã«ã‚ãŸã£ã¦" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSecurityIssues" - > -[SECOND_LIFE]Wikiã§ã€ã‚»ã‚ュリティå•é¡Œã‚’å ±å‘Šã™ã‚‹æ–¹æ³•ã‚’ã”覧ãã ã•ã„。 - <usetemplate - ignoretext="ã‚»ã‚ュリティå•é¡ŒWikiを閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchQAWiki" - > -[SECOND_LIFE] å“質ä¿è¨¼é–¢é€£Wikiã‚’ã”覧ãã ã•ã„。 - <usetemplate - ignoretext="å“質ä¿è¨¼é–¢é€£Wikiを閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssue" - > -[SECOND_LIFE]ã®ãƒ‘ブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ã§ã€ãƒã‚°ã‚„ãã®ä»–ã®å•é¡Œã‚’å ±å‘Šã§ãã¾ã™ã€‚ - <usetemplate - ignoretext="パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ã‚’閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="ページã¸è¡Œã"/> - </notification> - - <notification - - name="WebLaunchPublicIssueHelp" - > -[SECOND_LIFE]Wikiã§ã€ãƒ‘ブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ã®ä½¿ç”¨æ–¹æ³•ã‚’ã”覧ãã ã•ã„。 - <usetemplate - ignoretext="パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼Wikiを閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="ページã¸è¡Œã"/> - </notification> - - <notification - - name="WebLaunchSupportWiki" - > -Lindenå…¬å¼ãƒ–ãƒã‚°ã§ã€æœ€æ–°ã®ãƒ‹ãƒ¥ãƒ¼ã‚¹ã‚„æƒ…å ±ã‚’å…¥æ‰‹ã—ã¦ãã ã•ã„。 - <usetemplate - ignoretext="ブãƒã‚°ã‚’表示ã™ã‚‹ãŸã‚ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLGuide" - > -スクリプトガイドを開ã„ã¦ã€ã‚¹ã‚¯ãƒªãƒ—トã®ãƒ˜ãƒ«ãƒ—ã‚’å‚ç…§ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="LSLガイドを表示ã™ã‚‹ãŸã‚ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLWiki" - > -LSLãƒãƒ¼ã‚¿ãƒ«ã‚’é–‹ã„ã¦ã‚¹ã‚¯ãƒªãƒ—トã®ãƒ˜ãƒ«ãƒ—ã‚’å‚ç…§ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="LSLãƒãƒ¼ã‚¿ãƒ«ã‚’表示ã™ã‚‹ãŸã‚ã«ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="ページã«ç§»å‹•"/> - </notification> - - <notification - - name="ReturnToOwner" - > -é¸æŠžã—ãŸã‚ªãƒ–ジェクトをã€æ‰€æœ‰è€…ã«è¿”å´ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="オブジェクトをグループã«è²æ¸¡ã™ã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="è²æ¸¡"/> + </notification> + <notification name="WebLaunchExternalTarget"> + ãŠä½¿ã„ã®ã‚·ã‚¹ãƒ†ãƒ ã®ã‚¦ã‚§ãƒ–・ブラウザを開ã„ã¦ã€ã“ã®å†…容を表示ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="ãŠä½¿ã„ã®ã‚·ã‚¹ãƒ†ãƒ ã®ãƒ–ラウザを開ã„ã¦ã‚¦ã‚§ãƒ–・ページを表示ã—よã†ã¨ã—ãŸã¨ã" name="okcancelignore" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="WebLaunchJoinNow"> + www.secondlife.comã«ç§»å‹•ã—ã¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã‚’管ç†ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="アカウントを管ç†ã™ã‚‹ãŸã‚ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="WebLaunchBugReport101"> + [SECOND_LIFE]Wikiã§ã€ãƒã‚°ã‚’å ±å‘Šã™ã‚‹æ£ã—ã„方法をã”覧ãã ã•ã„。 + <usetemplate ignoretext="ãƒã‚°ãƒ¬ãƒãƒ¼ãƒˆ101 Wikiを閲覧ã™ã‚‹ãŸã‚ã®ãƒ–ラウザを開ãã«ã‚ãŸã£ã¦" name="okcancelignore" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="WebLaunchSecurityIssues"> + [SECOND_LIFE] Wikiã§ã€ +ã‚»ã‚ュリティå•é¡Œã‚’å ±å‘Šã™ã‚‹æ–¹æ³•ã‚’ã”覧ãã ã•ã„。 + <usetemplate ignoretext="ã‚»ã‚ュリティå•é¡ŒWikiを閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" name="okcancelignore" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="WebLaunchQAWiki"> + [SECOND_LIFE] å“質ä¿è¨¼é–¢é€£Wikiã‚’ã”覧ãã ã•ã„。 + <usetemplate ignoretext="å“質ä¿è¨¼é–¢é€£Wikiを閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" name="okcancelignore" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssue"> + [SECOND_LIFE]ã®ãƒ‘ブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ã§ã€ +ãƒã‚°ã‚„ãã®ä»–ã®å•é¡Œã‚’å ±å‘Šã§ãã¾ã™ã€‚ + <usetemplate ignoretext="パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ã‚’閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" name="okcancelignore" notext="ã‚ャンセル" yestext="ページã¸è¡Œã"/> + </notification> + <notification name="WebLaunchPublicIssueHelp"> + [SECOND_LIFE] Wikiã§ã€ +パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼ã®ä½¿ç”¨æ–¹æ³•ã‚’ã”覧ãã ã•ã„。 + <usetemplate ignoretext="パブリックå•é¡Œãƒˆãƒ©ãƒƒã‚«ãƒ¼Wikiを閲覧ã™ã‚‹ãŸã‚ã«ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã«ã‚ãŸã£ã¦" name="okcancelignore" notext="ã‚ャンセル" yestext="ページã¸è¡Œã"/> + </notification> + <notification name="WebLaunchSupportWiki"> + Lindenå…¬å¼ãƒ–ãƒã‚°ã§ã€æœ€æ–°ã®ãƒ‹ãƒ¥ãƒ¼ã‚¹ã‚„æƒ…å ±ã‚’å…¥æ‰‹ã—ã¦ãã ã•ã„。 + <usetemplate ignoretext="ブãƒã‚°ã‚’表示ã™ã‚‹ãŸã‚ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLGuide"> + スクリプトガイドを開ã„ã¦ã€ã‚¹ã‚¯ãƒªãƒ—トã®ãƒ˜ãƒ«ãƒ—ã‚’å‚ç…§ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="LSLガイドを表示ã™ã‚‹ãŸã‚ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLWiki"> + LSLãƒãƒ¼ã‚¿ãƒ«ã‚’é–‹ã„ã¦ã‚¹ã‚¯ãƒªãƒ—トã®ãƒ˜ãƒ«ãƒ—ã‚’å‚ç…§ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="LSLãƒãƒ¼ã‚¿ãƒ«ã‚’表示ã™ã‚‹ãŸã‚ã«ã€ã‚¦ã‚§ãƒ–・ブラウザを起動ã™ã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="ページã«ç§»å‹•"/> + </notification> + <notification name="ReturnToOwner"> + é¸æŠžã—ãŸã‚ªãƒ–ジェクトをã€æ‰€æœ‰è€…ã«è¿”å´ã—ã¾ã™ã‹ï¼Ÿ è²æ¸¡å¯èƒ½ãªã‚ªãƒ–ジェクト㯠以å‰ã®æ‰€æœ‰è€…ã«è¿”å´ã•ã‚Œã¾ã™ã€‚ *è¦å‘Š* 移転ãŒä¸å¯èƒ½ã®è²æ¸¡ã•ã‚ŒãŸã‚ªãƒ–ジェクトã¯å‰Šé™¤ã•ã‚Œã¾ã™ï¼ - <usetemplate - ignoretext="オブジェクトをæŒã¡ä¸»ã«è¿”å´ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -ç¾åœ¨ã‚ãªãŸã¯ [GROUP]ã®ãƒ¡ãƒ³ãƒãƒ¼ã§ã™ã€‚ + <usetemplate ignoretext="オブジェクトをæŒã¡ä¸»ã«è¿”å´ã™ã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="GroupLeaveConfirmMember"> + ç¾åœ¨ã‚ãªãŸã¯ [GROUP]ã®ãƒ¡ãƒ³ãƒãƒ¼ã§ã™ã€‚ ã“ã“ã‹ã‚‰æŠœã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmKick" - > -ã™ã¹ã¦ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’グリッド外ã«ã‚ックã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="å…¨ã¦ã®ãƒ¦ãƒ¼ã‚¶ã‚’追ã„出ã™"/> - </notification> - - <notification - - name="MuteLinden" - > -残念ãªãŒã‚‰ã€Lindenをミュートã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="オブジェクトをåå‰ã§ãƒŸãƒ¥ãƒ¼ãƒˆã§ãã¾ã›ã‚“ã§ã—ãŸ" - name="MuteByNameFailed" - > -ã‚ãªãŸã¯ã™ã§ã«ã“ã®åå‰ã‚’ミュートã—ã¦ã„ã¾ã™ã€‚ - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -コンテンツを削除ã™ã‚‹ã¨ã€è¨±å¯ãŒã‚ã£ã¦ã‚‚ã€ã‚ªãƒ–ジェクトã«ãƒ€ãƒ¡ãƒ¼ã‚¸ã‚’与ãˆã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ConfirmKick"> + ã™ã¹ã¦ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’グリッド外ã«ã‚ックã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="å…¨ã¦ã®ãƒ¦ãƒ¼ã‚¶ã‚’追ã„出ã™"/> + </notification> + <notification name="MuteLinden"> + 残念ãªãŒã‚‰Lindenを無視è¨å®šã«å…¥ã‚Œã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + æ—¢ã«å£²ã‚Šå‡ºã—ä¸ã®åŒºç”»ãªã®ã§ã‚ªãƒ¼ã‚¯ã‚·ãƒ§ãƒ³ã«ã‹ã‘ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 オークションã«ã‹ã‘ãŸã„å ´åˆã¯å£²ã‚Šå‡ºã—è¨å®šã‚’解除ã—ã¦ã‹ã‚‰è¡Œã£ã¦ãã ã•ã„。 + </notification> + <notification label="オブジェクトをåå‰ã§ãƒŸãƒ¥ãƒ¼ãƒˆã§ãã¾ã›ã‚“ã§ã—ãŸ" name="MuteByNameFailed"> + ã‚ãªãŸã¯ã™ã§ã«ã“ã®åå‰ã‚’ミュートã—ã¦ã„ã¾ã™ã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + コンテンツを削除ã™ã‚‹ã¨ã€è¨±å¯ãŒã‚ã£ã¦ã‚‚ã€ã‚ªãƒ–ジェクトã«ãƒ€ãƒ¡ãƒ¼ã‚¸ã‚’与ãˆã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ ãã®ã‚¢ã‚¤ãƒ†ãƒ ã®å‰Šé™¤ã‚’続ã‘ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -ç¾åœ¨ã‚³ãƒ¼ãƒªãƒ³ã‚°ãƒ»ã‚«ãƒ¼ãƒ‰ã‚’贈れã¾ã›ã‚“。数分後ã«ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -ç¾åœ¨ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚·ãƒƒãƒ—を贈れã¾ã›ã‚“。数分後ã«è©¦ã—ã¦ãã ã•ã„。 - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -å–ã‚Šè¾¼ã¿ä¸ã«è¨å®šã•ã‚Œã¾ã—ãŸã€‚ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="CantOfferCallingCard"> + ç¾åœ¨ã‚³ãƒ¼ãƒªãƒ³ã‚°ã‚«ãƒ¼ãƒ‰ã‚’é€ã‚Œã¾ã›ã‚“。数分後ã«ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + ç¾åœ¨ãƒ•ãƒ¬ãƒ³ãƒ‰ã‚·ãƒƒãƒ—ã‚’é€ã‚Œã¾ã›ã‚“。数分後ã«è©¦ã—ã¦ãã ã•ã„。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="BusyModeSet"> + å–ã‚Šè¾¼ã¿ä¸ã«è¨å®šã•ã‚Œã¾ã—ãŸã€‚ ãƒãƒ£ãƒƒãƒˆã¨ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ãƒˆãƒ»ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ï¼ˆIM)ãŒéš ã‚Œã¾ã™ã€‚ 相手ã¯ã€Œå–ã‚Šè¾¼ã¿ä¸å¿œç”メッセージã€ã‚’IMã§å—ã‘å–ã‚Šã¾ã™ã€‚ テレãƒãƒ¼ãƒˆã®ã‚ªãƒ•ã‚¡ãƒ¼ã¯å…¨ã¦æ‹’å¦ã•ã‚Œã€æŒã¡ç‰©ã®ã‚ªãƒ•ã‚¡ãƒ¼ã¯å…¨ã¦ã‚´ãƒŸç®±ã«é€ã‚‰ã‚Œã¾ã™ã€‚ - <usetemplate - ignoretext="å–ã‚Šè¾¼ã¿ä¸ã®è¨å®šã‚’ã™ã‚‹ã¨ã" - name="okignore" - yestext="OK"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -ã‚ãªãŸã¯ç¾åœ¨ãƒ¡ãƒ³ãƒãƒ¼ã«ãªã£ã¦ã„るグループãŒå¤šã™ãŽã‚‹ãŸã‚〠-ä»–ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«å‚åŠ ã§ãã¾ã›ã‚“。少ãªãã¨ã‚‚1ã¤ã®ã‚°ãƒ«ãƒ¼ãƒ—を脱退ã—ã¦ã‹ã‚‰ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«å‚åŠ ã™ã‚‹ã‹ã€ -ã“ã®æ‹›å¾…ã‚’æ–ã£ã¦ãã ã•ã„。 -グループを抜ã‘ã‚‹ã«ã¯ã€ç·¨é›†ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‹ã‚‰ã€Œã‚°ãƒ«ãƒ¼ãƒ—...ã€ã‚ªãƒ—ションを -ã‚’é¸æŠžã—ã¾ã™ã€‚ + <usetemplate ignoretext="å–ã‚Šè¾¼ã¿ä¸ã®è¨å®šã‚’ã™ã‚‹ã¨ã" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + ã‚ãªãŸã¯ç¾åœ¨ãƒ¡ãƒ³ãƒãƒ¼ã«ãªã£ã¦ã„るグループãŒå¤šã™ãŽã‚‹ãŸã‚〠+ä»–ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«å‚åŠ ã§ãã¾ã›ã‚“。少ãªãã¨ã‚‚1ã¤ã®ã‚°ãƒ«ãƒ¼ãƒ—を脱退ã—ã¦ã‹ã‚‰ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«å‚åŠ ã™ã‚‹ã‹ã€ã“ã®æ‹›å¾…ã‚’æ–ã£ã¦ãã ã•ã„。 +グループを抜ã‘ã‚‹ã«ã¯ã€ç·¨é›†ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‹ã‚‰ã€Œã‚°ãƒ«ãƒ¼ãƒ—...ã€ã‚ªãƒ—ションををé¸æŠžã—ã¾ã™ã€‚ [NAME]ã¯ã€ã‚ãªãŸã‚’メンãƒãƒ¼ã¨ã—ã¦ã‚°ãƒ«ãƒ¼ãƒ—ã«æ‹›å¾…ã—ã¦ã„ã¾ã™ã€‚ [INVITE] - <usetemplate - name="okcancelbuttons" - notext="辞退" - yestext="å‚åŠ "/> - </notification> - - <notification - - name="KickUser" - > -ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’追ã„出ã—ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <input name="message" type="text"> -ã‚ãªãŸã¯ç®¡ç†è€…ã«ã‚ˆã‚Šãƒã‚°ã‚ªãƒ•ã•ã‚Œã¾ã—ãŸã€‚ - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã‚°ãƒªãƒƒãƒ‰ã«ã„る全員を追ã„出ã—ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <input name="message" type="text"> -ã‚ãªãŸã¯ç®¡ç†è€…ã«ã‚ˆã‚Šãƒã‚°ã‚ªãƒ•ã•ã‚Œã¾ã—ãŸã€‚ - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’フリーズã—ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <input name="message" type="text"> -ã‚ãªãŸã¯ãƒ•ãƒªãƒ¼ã‚ºã•ã‚Œã¦ã„ã¾ã™ã€‚ å‹•ãã“ã¨ã‚‚ãƒãƒ£ãƒƒãƒˆã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã›ã‚“。 管ç†è€…ãŒIMを通ã˜ã¦ã‚ãªãŸã«é€£çµ¡ã—ã¾ã™ã€‚ - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ•ãƒªãƒ¼ã‚ºã‚’解除ã—ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <input name="message" type="text"> -ã‚‚ã†ãƒ•ãƒªãƒ¼ã‚ºã•ã‚Œã¦ã„ã¾ã›ã‚“。 - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -次ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’æ·»ãˆã¦ã‚ãªãŸãŒä»Šã„ã‚‹å ´æ‰€ã¸ã®ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã‚’é€ã‚Šã¾ã™ã‹ï¼Ÿ - <form name="form"> - <input name="message" type="text"> -[REGION]ã«æ¥ã¾ã›ã‚“ã‹ï¼Ÿ - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -ユーザーをゴッド・コールã§å‘¼ã³å¯„ã›ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <input name="message" type="text"> -[REGION]ã«æ¥ã¾ã›ã‚“ã‹ï¼Ÿ - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -本当ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="æŒã¡ç‰©ã®ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã‹ã‚‰ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã™ã‚‹æ™‚" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="テレãƒãƒ¼ãƒˆ"/> - </notification> - - <notification - - label="ã‚ãªãŸã®ä¸å‹•ç”£å†…ã®å…¨å“¡ã«ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ä¿¡" - name="MessageEstate" - > -今ã‚ãªãŸã®ä¸å‹•ç”£ã«ã„る人全員ã«é€ã‚‹ + <usetemplate name="okcancelbuttons" notext="辞退" yestext="å‚åŠ "/> + </notification> + <notification name="KickUser"> + ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’追ã„出ã—ã¾ã™ã‹ï¼Ÿ + <form name="form"> + <input name="message" type="text"> + ã‚ãªãŸã¯ç®¡ç†è€…ã«ã‚ˆã‚Šãƒã‚°ã‚ªãƒ•ã•ã‚Œã¾ã—ãŸã€‚ + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="KickAllUsers"> + ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã‚°ãƒªãƒƒãƒ‰ã«ã„る全員を追ã„出ã—ã¾ã™ã‹ï¼Ÿ + <form name="form"> + <input name="message" type="text"> + ã‚ãªãŸã¯ç®¡ç†è€…ã«ã‚ˆã‚Šãƒã‚°ã‚ªãƒ•ã•ã‚Œã¾ã—ãŸã€‚ + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="FreezeUser"> + ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’フリーズã—ã¾ã™ã‹ï¼Ÿ + <form name="form"> + <input name="message" type="text"> + ã‚ãªãŸã¯ãƒ•ãƒªãƒ¼ã‚ºã•ã‚Œã¦ã„ã¾ã™ã€‚ å‹•ãã“ã¨ã‚‚ãƒãƒ£ãƒƒãƒˆã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã›ã‚“。 管ç†è€…ãŒIMを通ã˜ã¦ã‚ãªãŸã«é€£çµ¡ã—ã¾ã™ã€‚ + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="UnFreezeUser"> + ã©ã‚“ãªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’表示ã—ã¦ã€ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ•ãƒªãƒ¼ã‚ºã‚’解除ã—ã¾ã™ã‹ï¼Ÿ + <form name="form"> + <input name="message" type="text"> + ã‚‚ã†ãƒ•ãƒªãƒ¼ã‚ºã•ã‚Œã¦ã„ã¾ã›ã‚“。 + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="OfferTeleport"> + 次ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’æ·»ãˆã¦ã‚ãªãŸãŒä»Šã„ã‚‹å ´æ‰€ã¸ã®ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã‚’é€ã‚Šã¾ã™ã‹ï¼Ÿ + <form name="form"> + <input name="message" type="text"> + [REGION]ã«æ¥ã¾ã›ã‚“ã‹ï¼Ÿ + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + ユーザーをゴッド・コールã§å‘¼ã³å¯„ã›ã¾ã™ã‹ï¼Ÿ + <form name="form"> + <input name="message" type="text"> + [REGION]ã«æ¥ã¾ã›ã‚“ã‹ï¼Ÿ + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + 本当ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="æŒã¡ç‰©ã®ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã‹ã‚‰ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã™ã‚‹æ™‚" name="okcancelignore" notext="ã‚ャンセル" yestext="テレãƒãƒ¼ãƒˆ"/> + </notification> + <notification label="ã‚ãªãŸã®ä¸å‹•ç”£å†…ã®å…¨å“¡ã«ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ä¿¡" name="MessageEstate"> + 今ã‚ãªãŸã®ä¸å‹•ç”£ã«ã„る人全員ã«é€ã‚‹ çŸã„メッセージを入力ã—ã¦ãã ã•ã„。 - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - label="Lindenã®ä¸å‹•ç”£ã‚’変更" - name="ChangeLindenEstate" - > -ã‚ãªãŸã¯Linden所有ã®ä¸å‹•ç”£ï¼ˆãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã€ãƒ†ã‚£ãƒ¼ãƒ³ãƒ»ã‚°ãƒªãƒƒãƒ‰ã€ã‚ªãƒªã‚¨ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³ãªã©ï¼‰ã‚’変更ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification label="Lindenã®ä¸å‹•ç”£ã‚’変更" name="ChangeLindenEstate"> + ã‚ãªãŸã¯Linden所有ã®ä¸å‹•ç”£ï¼ˆãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã€ãƒ†ã‚£ãƒ¼ãƒ³ã‚°ãƒªãƒƒãƒ‰ã€ã‚ªãƒªã‚¨ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³ãªã©ï¼‰ã‚’変更ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ -ã“ã‚Œã¯ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®çµŒé¨“ã‚’æ ¹æœ¬ã‹ã‚‰æºã‚‹ãŒã—ã‹ããªã„「éžå¸¸ã«å±é™ºãªè¡Œç‚ºã€ã§ã™ã€‚ -ã“ã‚Œã«ã‚ˆã‚Šã€ãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã§å¤šæ•°ã®åœ°åŸŸãŒå¤‰æ›´ã•ã‚Œã€ã‚¹ãƒšãƒ¼ã‚¹ã‚µãƒ¼ãƒãƒ¼ã«æ‚ªå½±éŸ¿ãŒç”Ÿã˜ã¾ã™ã€‚ +ã“ã‚Œã¯ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®çµŒé¨“ã‚’æ ¹æœ¬ã‹ã‚‰æºã‚‹ãŒã—ã‹ããªã„「éžå¸¸ã«å±é™ºãªè¡Œç‚ºã€ã§ã™ã€‚ã“ã‚Œã«ã‚ˆã‚Šã€ãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã§å¤šæ•°ã®åœ°åŸŸãŒå¤‰æ›´ã•ã‚Œã€ã‚¹ãƒšãƒ¼ã‚¹ã‚µãƒ¼ãƒãƒ¼ã«æ‚ªå½±éŸ¿ãŒç”Ÿã˜ã¾ã™ã€‚ æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - label="Lindenã®ä¸å‹•ç”£ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’変更" - name="ChangeLindenAccess" - > -ã‚ãªãŸã¯Linden所有ã®ä¸å‹•ç”£ï¼ˆãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã€ãƒ†ã‚£ãƒ¼ãƒ³ãƒ»ã‚°ãƒªãƒƒãƒ‰ã€ã‚ªãƒªã‚¨ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³ãªã©ï¼‰ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ãƒ»ãƒªã‚¹ãƒˆã‚’変更ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ - -ã“ã®è¡Œç‚ºã¯ã€Œå±é™ºã€ã§ã‚ã‚Šã€ã‚°ãƒªãƒƒãƒ‰ã‹ã‚‰ã‚ªãƒ–ジェクトやãŠé‡‘ã®è»¢é€ã‚’ã‚‚ãŸã‚‰ã™ -ãƒãƒƒã‚ングを引ãèµ·ã“ã™å¯èƒ½æ€§ãŒ -ã‚ã‚‹ãŸã‚ã€å®Œå…¨ã«ãれをæ„図ã—ãŸå ´åˆã®ã¿è¡Œã†ã¹ãã‚‚ã®ã§ã™ã€‚ -ã“ã‚Œã«ã‚ˆã‚Šå¤šæ•°ã®åœ°åŸŸãŒå¤‰æ›´ã•ã‚Œã€ã‚¹ãƒšãƒ¼ã‚¹ã‚µãƒ¼ãƒãƒ¼ã« -悪影響ãŒç”Ÿã˜ã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateAllowedAgentAdd" - > -ã“ã®ä¸å‹•ç”£ã®è¨±å¯ãƒªã‚¹ãƒˆã ã‘ã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚[ALL_ESTATES]ã®ã™ã¹ã¦ã®è¨±å¯ãƒªã‚¹ãƒˆã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateAllowedAgentRemove" - > -許å¯ãƒªã‚¹ãƒˆã‹ã‚‰ã®å‰Šé™¤ã‚’ã“ã®ä¸å‹•ç”£ã«ã¤ã„ã¦ã®ã¿è¡Œã„ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚ã€[ALL_ESTATES]ã«ã¤ã„ã¦è¡Œã„ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateAllowedGroupAdd" - > -ã“ã®ä¸å‹•ç”£ã®ã‚°ãƒ«ãƒ¼ãƒ—許å¯ãƒªã‚¹ãƒˆã ã‘ã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚[ALL_ESTATES]ã®ã‚°ãƒ«ãƒ¼ãƒ—許å¯ãƒªã‚¹ãƒˆã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateAllowedGroupRemove" - > -許å¯ãƒªã‚¹ãƒˆã‹ã‚‰ã®å‰Šé™¤ã‚’ã“ã®ä¸å‹•ç”£ã«ã¤ã„ã¦ã®ã¿è¡Œã„ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚ã€[ALL_ESTATES]ã«ã¤ã„ã¦è¡Œã„ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateBannedAgentAdd" - > -ã“ã®ä¸å‹•ç”£ã«ã¤ã„ã¦ã®ã¿ã‚¢ã‚¯ã‚»ã‚¹ã‚’æ‹’å¦ã—ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚[ALL_ESTATE]ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’æ‹’å¦ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateBannedAgentRemove" - > -ã“ã®ä½äººã‚’ã€ã“ã®ä¸å‹•ç”£ã®ã¿ã€ã¾ãŸã¯[ALL_ESTATES]ã¸ã¨ã‚¢ã‚¯ã‚»ã‚¹ã§ãるよã†ã«ã€ç¦æ¢ãƒªã‚¹ãƒˆã‹ã‚‰å‰Šé™¤ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateManagerAdd" - > -ã“ã®ä¸å‹•ç”£ã®ã¿ã€ã¾ãŸã¯[ALL_ESTATES]ã«å¯¾ã—ã¦ã€ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã‚’è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ä¸å‹•ç”£ã‚’é¸æŠž" - name="EstateManagerRemove" - > -ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã‚’ã€ã“ã®ä¸å‹•ç”£ã®ã¿ã€ã¾ãŸã¯[ALL_ESTATES]ã‹ã‚‰ã€å‰Šé™¤ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - canceltext="å–り消ã—" - name="yesnocancelbuttons" - notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" - yestext="ã“ã®ä¸å‹•ç”£"/> - </notification> - - <notification - - label="ã‚ックを確èª" - name="EstateKickUser" - > -ã“ã®ä¸å‹•ç”£ã‹ã‚‰[EVIL_USER]を追ã„出ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="EstateChangeCovenant" - > -ä¸å‹•ç”£ç´„款を変更ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ProblemImportingEstateCovenant" - > -ä¸å‹•ç”£ç´„款ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆæ™‚ã«å•é¡Œç™ºç”Ÿã€‚ - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -æ–°ã—ã„ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã®è¿½åŠ ã«é–¢ã™ã‚‹å•é¡Œã€‚1ã¤ä»¥ä¸Šã®ä¸å‹•ç”£ã§ã€ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ãƒªã‚¹ãƒˆãŒæº€æ¯ã«ãªã£ã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -ä¸å‹•ç”£ãƒªã‚¹ãƒˆã®è¿½åŠ ã«é–¢ã™ã‚‹å•é¡Œã€‚1ã¤ä»¥ä¸Šã®ä¸å‹•ç”£ã§ã€ãƒªã‚¹ãƒˆãŒæº€æ¯ã«ãªã£ã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="UnableToLoadNotecard" - > -ç¾åœ¨ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã®è³‡ç”£ã‚’ãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -è¦æ±‚ã•ã‚ŒãŸè³‡ç”£IDã«é–¢ã™ã‚‹ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã‚’閲覧ã™ã‚‹ã«ã¯æ¨©é™ãŒä¸å分ã§ã™ã€‚ - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MissingNotecardAssetID" - > -ノートカード用資産IDãŒãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ç™»éŒ²ã•ã‚Œã¦ã„ã¾ã›ã‚“。 - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PublishClassified" - > -注æ„:クラシファイド広告ã®æ–™é‡‘ã¯æ‰•ã„戻ã—ã•ã‚Œã¾ã›ã‚“。 - -L$[AMOUNT]ã§ã€ã“ã®ã‚¯ãƒ©ã‚·ãƒ•ã‚¡ã‚¤ãƒ‰åºƒå‘Šã‚’今ã™ã公開ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - - - - - <notification - - label="å†èµ·å‹•ã‚’確èª" - name="ConfirmRestart" - > -ã“ã®åœ°åŸŸã‚’2分後ã«å†èµ·å‹•ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - label="ã“ã®åœ°åŸŸå†…ã®å…¨å“¡ã«ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ä¿¡" - name="MessageRegion" - > -ã“ã®åœ°åŸŸã«ã„る人全員ã«é€ã‚‹ -çŸã„メッセージを入力ã—ã¦ãã ã•ã„。 - <form name="form"> - <input name="message" type="text"/> + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification label="Lindenã®ä¸å‹•ç”£ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’変更" name="ChangeLindenAccess"> + ã‚ãªãŸã¯Linden所有ã®ä¸å‹•ç”£ï¼ˆãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã€ãƒ†ã‚£ãƒ¼ãƒ³ã‚°ãƒªãƒƒãƒ‰ã€ã‚ªãƒªã‚¨ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³ãªã©ï¼‰ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ãƒªã‚¹ãƒˆã‚’変更ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ + +ã“ã®è¡Œç‚ºã¯ã€Œå±é™ºã€ã§ã‚ã‚Šã€ã‚°ãƒªãƒƒãƒ‰ã‹ã‚‰ã‚ªãƒ–ジェクトやãŠé‡‘ã®è»¢é€ã‚’ã‚‚ãŸã‚‰ã™ãƒãƒƒã‚ングを引ãèµ·ã“ã™å¯èƒ½æ€§ãŒã‚ã‚‹ãŸã‚ã€å®Œå…¨ã«ãれをæ„図ã—ãŸå ´åˆã®ã¿è¡Œã†ã¹ãã‚‚ã®ã§ã™ã€‚ +ã“ã‚Œã«ã‚ˆã‚Šå¤šæ•°ã®åœ°åŸŸãŒå¤‰æ›´ã•ã‚Œã€ã‚¹ãƒšãƒ¼ã‚¹ã‚µãƒ¼ãƒãƒ¼ã«æ‚ªå½±éŸ¿ãŒç”Ÿã˜ã¾ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateAllowedAgentAdd"> + ã“ã®ä¸å‹•ç”£ã®è¨±å¯ãƒªã‚¹ãƒˆã ã‘ã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚[ALL_ESTATES]ã®ã™ã¹ã¦ã®è¨±å¯ãƒªã‚¹ãƒˆã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateAllowedAgentRemove"> + 許å¯ãƒªã‚¹ãƒˆã‹ã‚‰ã®å‰Šé™¤ã‚’ã“ã®ä¸å‹•ç”£ã«ã¤ã„ã¦ã®ã¿è¡Œã„ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚ã€[ALL_ESTATES]ã«ã¤ã„ã¦è¡Œã„ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateAllowedGroupAdd"> + ã“ã®ä¸å‹•ç”£ã®ã‚°ãƒ«ãƒ¼ãƒ—許å¯ãƒªã‚¹ãƒˆã ã‘ã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚[ALL_ESTATES]ã®ã‚°ãƒ«ãƒ¼ãƒ—許å¯ãƒªã‚¹ãƒˆã«è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateAllowedGroupRemove"> + 許å¯ãƒªã‚¹ãƒˆã‹ã‚‰ã®å‰Šé™¤ã‚’ã“ã®ä¸å‹•ç”£ã«ã¤ã„ã¦ã®ã¿è¡Œã„ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚ã€[ALL_ESTATES]ã«ã¤ã„ã¦è¡Œã„ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateBannedAgentAdd"> + ã“ã®ä¸å‹•ç”£ã«ã¤ã„ã¦ã®ã¿ã‚¢ã‚¯ã‚»ã‚¹ã‚’æ‹’å¦ã—ã¾ã™ã‹ï¼Ÿ ãã‚Œã¨ã‚‚[ALL_ESTATE]ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’æ‹’å¦ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateBannedAgentRemove"> + ã“ã®ä½äººã‚’ã€ã“ã®ä¸å‹•ç”£ã®ã¿ã€ã¾ãŸã¯[ALL_ESTATES]ã¸ã¨ã‚¢ã‚¯ã‚»ã‚¹ã§ãるよã†ã«ã€ç¦æ¢ãƒªã‚¹ãƒˆã‹ã‚‰å‰Šé™¤ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateManagerAdd"> + ã“ã®ä¸å‹•ç”£ã®ã¿ã€ã¾ãŸã¯[ALL_ESTATES]ã«å¯¾ã—ã¦ã€ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã‚’è¿½åŠ ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ä¸å‹•ç”£ã‚’é¸æŠž" name="EstateManagerRemove"> + ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã‚’ã€ã“ã®ä¸å‹•ç”£ã®ã¿ã€ã¾ãŸã¯[ALL_ESTATES]ã‹ã‚‰ã€å‰Šé™¤ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="å–り消ã—" name="yesnocancelbuttons" notext="ã™ã¹ã¦ã®ä¸å‹•ç”£" yestext="ã“ã®ä¸å‹•ç”£"/> + </notification> + <notification label="ã‚ックを確èª" name="EstateKickUser"> + ã“ã®ä¸å‹•ç”£ã‹ã‚‰[EVIL_USER]を追ã„出ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="EstateChangeCovenant"> + ä¸å‹•ç”£ç´„款を変更ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ãã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã¸ã¯å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 年齢を確èªã™ã‚‹éš›ã®æƒ…å ±ã«ä¸è¶³ãŒã‚ã£ãŸãŸã‚ã¨è€ƒãˆã‚‰ã‚Œã¾ã™ã€‚ + +最新ビューワãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã‹ã‚’ã”確èªãã ã•ã„。ã“ã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã§ã®ã‚¢ã‚¯ã‚»ã‚¹ã«é–¢ã™ã‚‹è©³ç´°ã¯ãƒŠãƒ¬ãƒƒã‚¸ãƒ™ãƒ¼ã‚¹ã‚’ã”覧ãã ã•ã„。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ãã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã¸ã¯å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + +ナレッジベースを開ãレーティング区分ã«ã¤ã„ã¦å¦ã³ã¾ã™ã‹ï¼Ÿ + <url name="url"> + http://wiki.secondlife.com/wiki/レーティング区分概è¦_(KB) + </url> + <usetemplate ignoretext="レーティング区分ã«ã‚ˆã£ã¦åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«å…¥ã‚Œãªã„ã¨ã" name="okcancelignore" notext="é–‰ã˜ã‚‹" yestext="ナレッジベースを開ã"/> + </notification> + <notification name="RegionEntryAccessBlocked_Notify"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ãã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã¸ã¯å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†è¨å®šã«ã‚ˆã‚Šã€ãã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã¸ã¯å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + +「è¨å®šã‚’変更ã€ã‚’クリックã™ã‚‹ã¨ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ãŒä¸ŠãŒã‚Šã€å…¥ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚ ã‚ãªãŸã¯ä»Šå¾Œ [REGIONMATURITY] コンテンツã®æ¤œç´¢åŠã³ã‚¢ã‚¯ã‚»ã‚¹ãŒå¯èƒ½ã¨ãªã‚Šã¾ã™ã€‚ +ã‚ã¨ã§è¨å®šã‚’å…ƒã«æˆ»ã—ãŸã„å ´åˆã¯ã€ã€Œç·¨é›†ã€ï¼žã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œä¸€èˆ¬ã€ã‚’ã”覧ãã ã•ã„。 + <form name="form"> <button - - name="OK" - text="OK"/> + text="è¨å®šã®å¤‰æ›´"/> <button - + default="true" name="Cancel" - text="å–り消ã—"/> + text="é–‰ã˜ã‚‹"/> + <ignore name="ignore" text="レーティング区分è¨å®šã«ã‚ˆã£ã¦åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«å…¥ã‚Œãªã„ã¨ã"/> </form> - </notification> - - <notification - - label="土地整備をブãƒãƒƒã‚¯" - name="HelpRegionBlockTerraform" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹å ´åˆã€ + </notification> + <notification name="LandClaimAccessBlocked"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’å–å¾—ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 年齢を確èªã™ã‚‹éš›ã®æƒ…å ±ã«ä¸è¶³ãŒã‚ã£ãŸãŸã‚ã¨è€ƒãˆã‚‰ã‚Œã¾ã™ã€‚ + +最新ビューワãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã‹ã‚’ã”確èªãã ã•ã„。ã“ã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã§ã®ã‚¢ã‚¯ã‚»ã‚¹ã«é–¢ã™ã‚‹è©³ç´°ã¯ãƒŠãƒ¬ãƒƒã‚¸ãƒ™ãƒ¼ã‚¹ã‚’ã”覧ãã ã•ã„。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’å–å¾—ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + +ナレッジベースを開ãレーティング区分ã«ã¤ã„ã¦å¦ã³ã¾ã™ã‹ï¼Ÿ + <url name="url"> + http://wiki.secondlife.com/wiki/レーティング区分概è¦_(KB) + </url> + <usetemplate ignoretext="レーティング区分ã«ã‚ˆã£ã¦åœŸåœ°ã‚’å–å¾—ã§ããªã„ã¨ã" name="okcancelignore" notext="é–‰ã˜ã‚‹" yestext="ナレッジベースを開ã"/> + </notification> + <notification name="LandClaimAccessBlocked_Notify"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’å–å¾—ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="LandClaimAccessBlocked_Change"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†è¨å®šã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’å–å¾—ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + +「è¨å®šã‚’変更ã€ã‚’クリックã™ã‚‹ã¨ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ãŒä¸ŠãŒã‚Šã€å…¥ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚ ã‚ãªãŸã¯ä»Šå¾Œ [REGIONMATURITY] コンテンツã®æ¤œç´¢åŠã³ã‚¢ã‚¯ã‚»ã‚¹ãŒå¯èƒ½ã¨ãªã‚Šã¾ã™ã€‚ +ã‚ã¨ã§è¨å®šã‚’å…ƒã«æˆ»ã—ãŸã„å ´åˆã¯ã€ã€Œç·¨é›†ã€ï¼žã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œä¸€èˆ¬ã€ã‚’ã”覧ãã ã•ã„。 + <usetemplate ignoretext="レーティング区分è¨å®šã«ã‚ˆã£ã¦åœŸåœ°ã‚’å–å¾—ã§ããªã„ã¨ã" name="okcancelignore" notext="é–‰ã˜ã‚‹" yestext="è¨å®šã®å¤‰æ›´"/> + </notification> + <notification name="LandBuyAccessBlocked"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 年齢を確èªã™ã‚‹éš›ã®æƒ…å ±ã«ä¸è¶³ãŒã‚ã£ãŸãŸã‚ã¨è€ƒãˆã‚‰ã‚Œã¾ã™ã€‚ + +最新ビューワãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã‹ã‚’ã”確èªãã ã•ã„。ã“ã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã§ã®ã‚¢ã‚¯ã‚»ã‚¹ã«é–¢ã™ã‚‹è©³ç´°ã¯ãƒŠãƒ¬ãƒƒã‚¸ãƒ™ãƒ¼ã‚¹ã‚’ã”覧ãã ã•ã„。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + +ナレッジベースを開ãレーティング区分ã«ã¤ã„ã¦å¦ã³ã¾ã™ã‹ï¼Ÿ + <url name="url"> + http://wiki.secondlife.com/wiki/レーティング区分概è¦_(KB) + </url> + <usetemplate ignoretext="レーティング区分ã«ã‚ˆã£ã¦åœŸåœ°ã‚’購入ã§ããªã„ã¨ã" name="okcancelignore" notext="é–‰ã˜ã‚‹" yestext="ナレッジベースを開ã"/> + </notification> + <notification name="LandBuyAccessBlocked_Notify"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="LandBuyAccessBlocked_Change"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†è¨å®šã«ã‚ˆã‚Šã€ã“ã®åœŸåœ°ã‚’購入ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + +「è¨å®šã‚’変更ã€ã‚’クリックã™ã‚‹ã¨ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ãŒä¸ŠãŒã‚Šã€å…¥ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚ ã‚ãªãŸã¯ä»Šå¾Œ [REGIONMATURITY] コンテンツã®æ¤œç´¢åŠã³ã‚¢ã‚¯ã‚»ã‚¹ãŒå¯èƒ½ã¨ãªã‚Šã¾ã™ã€‚ +ã‚ã¨ã§è¨å®šã‚’å…ƒã«æˆ»ã—ãŸã„å ´åˆã¯ã€ã€Œç·¨é›†ã€ï¼žã€Œç’°å¢ƒè¨å®šã€ï¼žã€Œä¸€èˆ¬ã€ã‚’ã”覧ãã ã•ã„。 + <usetemplate ignoretext="レーティング区分è¨å®šã«ã‚ˆã£ã¦åœŸåœ°ã‚’購入ã§ããªã„ã¨ã" name="okcancelignore" notext="é–‰ã˜ã‚‹" yestext="è¨å®šã®å¤‰æ›´"/> + </notification> + <notification name="TooManyPrimsSelected"> + é¸æŠžã—ãŸãƒ—リムãŒå¤šã™ãŽã¾ã™ã€‚ +[MAX_PRIM_COUNT] ã‚’é¸æŠžã™ã‚‹ã‹ã€ +プリム数を減らã—ã¦ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="ProblemImportingEstateCovenant"> + ä¸å‹•ç”£ç´„款ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆæ™‚ã«å•é¡Œç™ºç”Ÿã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + æ–°ã—ã„ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã®è¿½åŠ ã«é–¢ã™ã‚‹å•é¡Œï¼š +1ã¤ä»¥ä¸Šã®ä¸å‹•ç”£ã§ã€ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ãƒªã‚¹ãƒˆãŒæº€æ¯ã«ãªã£ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="ProblemAddingEstateGeneric"> + ä¸å‹•ç”£ãƒªã‚¹ãƒˆã®è¿½åŠ ã«é–¢ã™ã‚‹å•é¡Œï¼š +1ã¤ä»¥ä¸Šã®ä¸å‹•ç”£ã§ã€ãƒªã‚¹ãƒˆãŒæº€æ¯ã«ãªã£ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="UnableToLoadNotecardAsset"> + ç¾åœ¨ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã®è³‡ç”£IDã‚’èªã¿è¾¼ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="NotAllowedToViewNotecard"> + è¦æ±‚ã•ã‚ŒãŸè³‡ç”£IDã«é–¢ã™ã‚‹ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã‚’閲覧ã™ã‚‹ã«ã¯æ¨©é™ãŒä¸å分ã§ã™ã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + ノートカード用資産IDãŒãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ç™»éŒ²ã•ã‚Œã¦ã„ã¾ã›ã‚“。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + 注æ„:クラシファイド広告ã®æ–™é‡‘ã¯æ‰•ã„戻ã—ã•ã‚Œã¾ã›ã‚“。 + +L$[AMOUNT]ã§ã€ã“ã®ã‚¯ãƒ©ã‚·ãƒ•ã‚¡ã‚¤ãƒ‰åºƒå‘Šã‚’今ã™ã公開ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="SetClassifiedMature"> + ã“ã®åºƒå‘Šã«Matureコンテンツã¯å«ã¾ã‚Œã¦ã„ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="ã‚ャンセル" name="yesnocancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="SetGroupMature"> + ã“ã®åºƒå‘Šã«Matureコンテンツã¯å«ã¾ã‚Œã¦ã„ã¾ã™ã‹ï¼Ÿ + <usetemplate canceltext="ã‚ャンセル" name="yesnocancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification label="å†èµ·å‹•ã‚’確èª" name="ConfirmRestart"> + ã“ã®åœ°åŸŸã‚’2分後ã«å†èµ·å‹•ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ +æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification label="ã“ã®åœ°åŸŸå†…ã®å…¨å“¡ã«ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ä¿¡" name="MessageRegion"> + ã“ã®åœ°åŸŸã«ã„る人全員ã«é€ã‚‹ +çŸã„メッセージを入力ã—ã¦ãã ã•ã„。 + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification label="土地整備をブãƒãƒƒã‚¯" name="HelpRegionBlockTerraform"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹å ´åˆã€ 区画ã”ã¨ã®ã€Œé ˜åŸŸã‚’編集ã€ã®è¨å®šã«ã‹ã‹ã‚らãšã€åœŸåœ°ã‚ªãƒ¼ãƒŠãƒ¼ã¯åœŸåœ°æ•´å‚™ãŒã§ãã¾ã›ã‚“。 デフォルト:オフ - </notification> - - <notification - - label="飛行をブãƒãƒƒã‚¯" - name="HelpRegionBlockFly" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€åŒºç”»ã”ã¨ã®ã€Œé£›è¡Œã€è¨å®šã«é–¢ã‚らãšé£›è¡ŒãŒã§ããªããªã‚Šã¾ã™ã€‚ + </notification> + <notification label="飛行をブãƒãƒƒã‚¯" name="HelpRegionBlockFly"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€åŒºç”»ã”ã¨ã®ã€Œé£›è¡Œã€è¨å®šã«é–¢ã‚らãšé£›è¡ŒãŒã§ããªããªã‚Šã¾ã™ã€‚ デフォルト:オフ - </notification> - - <notification - - label="ダメージ許å¯" - name="HelpRegionAllowDamage" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€å„区画ã®å€‹åˆ¥ã®è¨å®šã«ã‹ã‹ã‚らãšã€å…¨ã¦ã®åŒºç”»ã«ãŠã‘ã‚‹ -ヘルスシステムを有効ã«ã—ã¾ã™ã€‚ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ãªã„å ´åˆã§ã‚‚〠-個別ã®åŒºç”»ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€è‡ªåˆ†ã®åŒºç”»ã«å¯¾ã™ã‚‹ãƒ˜ãƒ«ã‚¹ã‚·ã‚¹ãƒ†ãƒ ã‚’ -有効ã«ã§ãã¾ã™ã€‚ + </notification> + <notification label="コンテンツ権é™ã®ä¸€æ‹¬å¤‰æ›´" name="HelpBulkPermission"> + 権é™ã®ä¸€æ‹¬å¤‰æ›´ãƒ„ールã§ã¯ã€é¸æŠžã—ãŸè¤‡æ•°ã®ã‚¢ã‚¤ãƒ†ãƒ ã®æ¨©é™ã‚’ç´ æ—©ã変更ã™ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚ +ã—ã‹ã—é¸æŠžã—ãŸã‚ªãƒ–ジェクトã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã®ä¸èº«ã®æ¨©é™è¨å®šã‚’ã™ã‚‹ã ã‘ã§ã€ã‚ªãƒ–ジェクトãã®ã‚‚ã®ã§ã¯ãªã„ã“ã¨ã«ã”注æ„ãã ã•ã„。 + +ã¾ãŸã€æ¨©é™ã¯ä¸ã«ã‚るアイテムã®ãã®ä¸èº«ã«ã¯é©ç”¨ã•ã‚Œãªã„ã“ã¨ã‚‚ã”注æ„ãã ã•ã„。 1段階層ã®ã‚¢ã‚¤ãƒ†ãƒ ã®ã¿ã¸ã®ãƒªã‚¯ã‚¨ã‚¹ãƒˆã¨ãªã‚Šã¾ã™ã€‚ + +「コンテンツã®ç¨®é¡žã€ã«ã‚ã‚‹ãƒã‚§ãƒƒã‚¯ãƒªã‚¹ãƒˆã‚’使ã£ã¦ã€ä¿®æ£ã™ã‚‹ã‚¢ã‚¤ãƒ†ãƒ ã®ç¨®é¡žã‚’é¸æŠžã—ã¾ã™ã€‚ テクスãƒãƒ£ãƒ¼ã‚’é¸æŠžã™ã‚‹ã¨ã€ã‚¹ãƒŠãƒƒãƒ—ショットもå«ã¾ã‚Œã¾ã™ã€‚ + +* ã“ã®ãƒ„ールã®ä½¿ç”¨ã¯ã€ +ã‚ãªãŸãŒå¤‰æ›´ã™ã‚‹ã“ã¨ã®ã§ãるアイテムã«ã®ã¿æœ‰åŠ¹ã§ã™ã€‚ +* 次ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æ¨©é™ãŒã‚ãªãŸã«ãªã„å ´åˆã¯ã€é©ç”¨ã•ã‚Œã¾ã›ã‚“。 +* 次ã®ã‚ªãƒ¼ãƒŠãƒ¼ã®æ¨©é™ã¯å˜ã«ãƒªã‚¯ã‚¨ã‚¹ãƒˆã«ã™ãŽã¾ã›ã‚“。 ã©ã‚Œã‹ä¸€ã¤ã®ã‚¢ã‚¤ãƒ†ãƒ ã§ã‚‚æ–°ã—ã„権é™ã®è¨å®šã‚’å—ã‘付ã‘ãªã„å ´åˆã€ã™ã¹ã¦ã®æ¨©é™ã®è¨å®šã¯ãã®ã¾ã¾ç¶æŒã•ã‚Œã¾ã™ã€‚ + +一括変更ã®æº–å‚™ãŒã§ããŸã‚‰ã€ã€Œé©ç”¨ã€ã‚’クリックã—ã¦çµæžœãŒè¡¨ç¤ºã•ã‚Œã‚‹ã®ã‚’ãŠå¾…ã¡ãã ã•ã„。 + +権é™å¤‰æ›´ä¸ã«æ¨©é™ã®ä¸€æ‹¬å¤‰æ›´ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ãŸå ´åˆã€å‡¦ç†ã¯åœæ¢ã•ã‚Œã¾ã™ã€‚ + </notification> + <notification label="ダメージ許å¯" name="HelpRegionAllowDamage"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€ +å„区画ã®å€‹åˆ¥ã®è¨å®šã«ã‹ã‹ã‚らãšã€å…¨ã¦ã®åŒºç”»ã«ãŠã‘るヘルスシステムを有効ã«ã—ã¾ã™ã€‚ +ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ãªã„å ´åˆã§ã‚‚〠+個別ã®åŒºç”»ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€è‡ªåˆ†ã®åŒºç”»ã«å¯¾ã™ã‚‹ãƒ˜ãƒ«ã‚¹ã‚·ã‚¹ãƒ†ãƒ を有効ã«ã§ãã¾ã™ã€‚ デフォルト: オフ - </notification> - - <notification - - label="人物ã®åˆ¶é™" - name="HelpRegionAgentLimit" - > -ã“ã®åœ°åŸŸã«è¨±å¯ã•ã‚Œã‚‹ã‚¢ãƒã‚¿ãƒ¼ã®æœ€å¤§æ•°ã‚’è¨å®šã—ã¾ã™ã€‚ + </notification> + <notification label="人物ã®åˆ¶é™" name="HelpRegionAgentLimit"> + ã“ã®åœ°åŸŸã«è¨±å¯ã•ã‚Œã‚‹ã‚¢ãƒã‚¿ãƒ¼ã®æœ€å¤§æ•°ã‚’è¨å®šã—ã¾ã™ã€‚ 1ã¤ã®åœ°åŸŸã«ã‚¢ãƒã‚¿ãƒ¼ãŒå¤šã„ã¨ãƒ‘フォーマンス㌠低下ã™ã‚‹åŽŸå› ã«ãªã‚‹ã®ã§æ³¨æ„ã—ã¦ãã ã•ã„。 デフォルト: 40 - </notification> - - <notification - - label="物体ボーナス" - name="HelpRegionObjectBonus" - > -オブジェクトボーナスã¯ã€åŒºç”»ã«ãŠã„ã¦è¨±å¯ã•ã‚Œã¦ã„るプリムã®å€çŽ‡æ•°ã‚’ -æ„味ã—ã¾ã™ã€‚èªå¯ã•ã‚Œã¦ã„る範囲ã¯1ã‹ã‚‰10ã§ã™ã€‚ã—ãŸãŒã£ã¦ã€ã€Œ1ã€ã«è¨å®šã™ã‚‹ã¨ã€512 m²ã®åœŸåœ°ã«ã¯ã€ -117ã®ã‚ªãƒ–ジェクトãŒè¨±å¯ã•ã‚Œã¾ã™ã€‚「2ã€ã«è¨å®šã™ã‚‹ã¨ã€åŒã˜512 m²ã®åœŸåœ°ã«ã¯ã€1ã®ã¨ãã®2å€ã«ã‚ãŸã‚‹ -234ã®ã‚ªãƒ–ジェクトãŒè¨±å¯ã•ã‚Œã€3以é™ã‚‚åŒæ§˜ã«å¢—ãˆã¦ã„ãã¾ã™ã€‚全地域ã®æœ€é«˜ã‚ªãƒ–ジェクト数ã¯ã€ -オブジェクトボーナスã®å€¤ã«å½±éŸ¿ã•ã‚Œãšã€ -15,000ã®ã¾ã¾å¤‰ã‚ã‚Šã¾ã›ã‚“。ã„ã£ãŸã‚“決定ã—ãŸå¾Œã§ã‚ªãƒ–ジェクトボーナスã®å€¤ã‚’下ã’ã‚‹ã¨ã€ã‚ªãƒ–ジェクトãŒè¿”å´ã¾ãŸã¯å‰Šé™¤ã•ã‚Œã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã®ã§ã”注æ„ãã ã•ã„。 + </notification> + <notification label="物体ボーナス" name="HelpRegionObjectBonus"> + オブジェクトボーナスã¯ã€åŒºç”»ã«ãŠã„ã¦è¨±å¯ã•ã‚Œã¦ã„るプリムã®å€çŽ‡æ•°ã‚’æ„味ã—ã¾ã™ã€‚ +èªå¯ã•ã‚Œã¦ã„る範囲ã¯1ã‹ã‚‰10ã§ã™ã€‚ +ã—ãŸãŒã£ã¦ã€ã€Œ1ã€ã«è¨å®šã™ã‚‹ã¨ã€512 m²ã®åœŸåœ°ã«ã¯ã€117ã®ã‚ªãƒ–ジェクトãŒè¨±å¯ã•ã‚Œã¾ã™ã€‚ +「2ã€ã«è¨å®šã™ã‚‹ã¨ã€åŒã˜512 m²ã®åœŸåœ°ã«ã¯ã€1ã®ã¨ãã®2å€ã«ã‚ãŸã‚‹234ã®ã‚ªãƒ–ジェクトãŒè¨±å¯ã•ã‚Œã€3以é™ã‚‚åŒæ§˜ã«å¢—ãˆã¦ã„ãã¾ã™ã€‚ +全地域ã®æœ€é«˜ã‚ªãƒ–ジェクト数ã¯ã€ã‚ªãƒ–ジェクトボーナスã®å€¤ã«å½±éŸ¿ã•ã‚Œãšã€ +15,000ã®ã¾ã¾å¤‰ã‚ã‚Šã¾ã›ã‚“。 +ã„ã£ãŸã‚“決定ã—ãŸå¾Œã§ã‚ªãƒ–ジェクトボーナスã®å€¤ã‚’下ã’ã‚‹ã¨ã€ã‚ªãƒ–ジェクトãŒè¿”å´ã¾ãŸã¯å‰Šé™¤ã•ã‚Œã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã®ã§ã”注æ„ãã ã•ã„。 ディフォルト: 1.0 - </notification> - - - - <notification - - label="プッシュを制é™" - name="HelpRegionRestrictPushObject" - > -ã“ã®ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã¯ã€åˆ¶é™ã•ã‚ŒãŸãƒ—ッシュ権é™ã‚’全地域ã«é©ç”¨ã—ã¾ã™ã€‚ -有効ã«ãªã£ã¦ã„ã‚‹å ´åˆã€å±…ä½è€…ã¯è‡ªåˆ†è‡ªèº«ã§ã®ãƒ—ッシュ〠+ </notification> + <notification label="レーティング区分" name="HelpRegionMaturity"> + ä½äººã®ãƒ“ューワ上部ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãƒãƒ¼ã«è¡¨ç¤ºã•ã‚Œã‚‹ã€åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã‚’è¨å®šã—ã¾ã™ã€‚ +世界地図上ã§ã‚«ãƒ¼ã‚½ãƒ«ã‚’ã“ã®åœ°åŸŸã«ä¹—ã›ã‚‹ã¨ãƒ„ールãƒãƒƒãƒ—ã«è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ +ã“ã®è¨å®šã¯ã“ã®åœ°åŸŸå…¨ä½“ã¨æ¤œç´¢çµæžœã«åæ˜ ã•ã‚Œã¾ã™ã€‚ +ä»–ã®ä½äººã¯ç’°å¢ƒè¨å®šã§é¸æŠžã—ãŸãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«åˆã£ãŸåœ°åŸŸã«å…¥ã‚‹ã“ã¨ãŒã§ãã€æ¤œç´¢çµæžœã‚’見るã“ã¨ãŒã§ãã¾ã™ã€‚ + +地図ã«ã“ã®å¤‰æ›´ãŒåæ˜ ã™ã‚‹ã«ã¯æ•°åˆ†ã‹ã‹ã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification label="プッシュを制é™" name="HelpRegionRestrictPushObject"> + ã“ã®ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã¯ã€åˆ¶é™ã•ã‚ŒãŸãƒ—ッシュ権é™ã‚’全地域ã«é©ç”¨ã—ã¾ã™ã€‚ +有効ã«ãªã£ã¦ã„ã‚‹å ´åˆã€ä½äººã¯è‡ªåˆ†è‡ªèº«ã§ã®ãƒ—ッシュ〠ã‚ã‚‹ã„ã¯åŒºç”»ã®æ‰€æœ‰è€…ã«ã‚ˆã‚‹ãƒ—ッシュã ã‘ã«åˆ¶é™ã§ãã¾ã™ã€‚ (プッシュã¯ã€LSLã® llPushObject() 機能をå‚ç…§ã—ã¾ã™ã€‚) デフォルト: オフ - </notification> - - <notification - - label="区画統åˆï¼å†åˆ†å‰²" - name="HelpParcelChanges" - > -ã“ã®ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã¯ã€ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ãŒæ‰€æœ‰ã—ã¦ã„ãªã„区画を〠-çµ±åˆã¾ãŸã¯å†åˆ†å‰²ã§ãã‚‹ã‹ã©ã†ã‹ã‚’è¨å®šã—ã¾ã™ã€‚ + </notification> + <notification label="区画統åˆï¼å†åˆ†å‰²" name="HelpParcelChanges"> + ã“ã®ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã¯ã€ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ãŒæ‰€æœ‰ã—ã¦ã„ãªã„区画を統åˆã¾ãŸã¯å†åˆ†å‰²ã§ãã‚‹ã‹ã©ã†ã‹ã‚’è¨å®šã—ã¾ã™ã€‚ 本オプションãŒç„¡åŠ¹ãªå ´åˆï¼š -* ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã€ã¾ãŸã¯ç®¡ç†è€…ã®ã¿ãŒã€çµ±åˆï¼å†åˆ†å‰²ã‚’è¡Œã†ã“ã¨ãŒã§ãã¾ã™ã€‚ -* オーナーã€ã¾ãŸã¯ã€é©åˆ‡ãªæ¨©é™ã‚’æŒã¤ã‚°ãƒ«ãƒ¼ãƒ—ã«å±žã™ã‚‹åŒºç”»ã®ã¿ã‚’ +*ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã€ã¾ãŸã¯ç®¡ç†è€…ã®ã¿ãŒã€çµ±åˆï¼å†åˆ†å‰²ã‚’è¡Œã†ã“ã¨ãŒã§ãã¾ã™ã€‚ +*オーナーã€ã¾ãŸã¯ã€é©åˆ‡ãªæ¨©é™ã‚’æŒã¤ã‚°ãƒ«ãƒ¼ãƒ—ã«å±žã™ã‚‹åŒºç”»ã®ã¿ã‚’ çµ±åˆï¼å†åˆ†å‰²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ 本オプションãŒæœ‰åŠ¹ãªå ´åˆï¼š -* å…¨ã¦ã®åŒºç”»ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€æ‰€æœ‰ã™ã‚‹åŒºç”»ã®çµ±åˆï¼å†åˆ†å‰²ãŒã§ãã¾ã™ã€‚ -* グループ所有ã®åŒºç”»ã¯ã€é©åˆ‡ãªæ¨©é™ã‚’æŒã¤ã‚°ãƒ«ãƒ¼ãƒ—ã«å±žã™ã‚‹åŒºç”»ã‚’〠-çµ±åˆï¼å†åˆ†å‰²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ +*å…¨ã¦ã®åŒºç”»ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€æ‰€æœ‰ã™ã‚‹åŒºç”»ã®çµ±åˆï¼å†åˆ†å‰²ãŒã§ãã¾ã™ã€‚ +*グループ所有ã®åŒºç”»ã¯ã€é©åˆ‡ãªæ¨©é™ã‚’æŒã¤ã‚°ãƒ«ãƒ¼ãƒ—ã«å±žã™ã‚‹åŒºç”»ã‚’çµ±åˆï¼å†åˆ†å‰²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ デフォルト:ãƒã‚§ãƒƒã‚¯ã‚ã‚Š - </notification> - - <notification - - label="検索ã§è¡¨ç¤ºã—ãªã„" - name="HelpRegionSearch" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€åŒºç”»ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€è‡ªåˆ†ã®åŒºç”»ãŒæ¤œç´¢çµæžœã«ãƒªã‚¹ãƒˆã•ã‚Œã‚‹ã“ã¨ã‚’阻æ¢ã§ãã¾ã™ã€‚ + </notification> + <notification label="検索ã§è¡¨ç¤ºã—ãªã„" name="HelpRegionSearch"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€åŒºç”»ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€è‡ªåˆ†ã®åŒºç”»ãŒæ¤œç´¢çµæžœã«ãƒªã‚¹ãƒˆã•ã‚Œã‚‹ã“ã¨ã‚’阻æ¢ã§ãã¾ã™ã€‚ デフォルト:オフ - </notification> - - <notification - - label="地域ã®æˆäººæŒ‡å®šå¤‰æ›´æ¸ˆã¿" - name="RegionMaturityChange" - > -ã“ã®åœ°åŸŸã®æˆäººæŒ‡å®šãŒã‚¢ãƒƒãƒ—デートã•ã‚Œã¾ã—ãŸã€‚ -ã“ã®å¤‰æ›´ãŒåœ°å›³ã«åæ˜ ã•ã‚Œã‚‹ã¾ã§ã«ã¯ã€ã—ã°ã‚‰ã時間ãŒã‹ã‹ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - label="土地ã®å†è²©" - name="HelpRegionLandResell" - > -ä¸å‹•ç”£ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¨ç®¡ç†è€…ã¯ã€ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã®åœŸåœ°ã‚’販売ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + </notification> + <notification label="地域ã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†æŒ‡å®šå¤‰æ›´æ¸ˆã¿" name="RegionMaturityChange"> + ã“ã®åœ°åŸŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†æŒ‡å®šãŒã‚¢ãƒƒãƒ—デートã•ã‚Œã¾ã—ãŸã€‚ +ã“ã®å¤‰æ›´ãŒåœ°å›³ã«åæ˜ ã•ã‚Œã‚‹ã¾ã§ã«ã¯ã—ã°ã‚‰ã時間ãŒã‹ã‹ã‚Šã¾ã™ã€‚ + </notification> + <notification label="土地ã®å†è²©" name="HelpRegionLandResell"> + ä¸å‹•ç”£ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¨ç®¡ç†è€…ã¯ã€ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã®åœŸåœ°ã‚’販売ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“ã®ã‚ªãƒ—ションをãƒã‚§ãƒƒã‚¯ã—ãªã„å ´åˆã€è³¼å…¥è€…ãŒæœ¬åœ°åŸŸã«ãŠã‘る土地をå†è²©ã™ã‚‹ã“ã¨ã¯ã§ããªããªã‚Šã¾ã™ã€‚ ã“ã®ã‚ªãƒ—ションをãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã€è³¼å…¥è€…ã¯æœ¬åœ°åŸŸã«ãŠã‘る土地をå†è²©ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ デフォルト:許å¯ã—ãªã„ - </notification> - - <notification - - label="スクリプトを無効化" - name="HelpRegionDisableScripts" - > -スクリプトãŒåŽŸå› ã§ã‚·ãƒ ã®çŠ¶æ³ãŒæ‚ªããªã‚‹å ´åˆãŒã‚ã‚Šã¾ã™ã€‚統計グラフを -ã ã—ã¦ï¼ˆCtrl-Shift-1)シミュレーターフィジックスFPSを見ã¦ãã ã•ã„。 -45より数ãŒä½Žã‘ã‚Œã°ã€ä¸€ç•ªä¸‹ã«ä½ç½®ã—ã¦ã„るタイムパãƒãƒ«ã‚’ -é–‹ã„ã¦ãã ã•ã„。スクリプト時間ãŒ25ms以上ã§ã‚ã‚Œã°ã€ -「トップスクリプトをå–å¾—ã€ãƒœã‚¿ãƒ³ã‚’クリックã—ã¾ã™ã€‚悪影響をåŠã¼ã—ã¦ã„るスクリプト㮠-åå‰ã¨ä½ç½®ãŒç¾ã‚Œã¾ã™ã€‚ - -「スクリプトを無効ã«ã™ã‚‹ã€ã‚’ãƒã‚§ãƒƒã‚¯ã—「é©ç”¨ã€ã‚’クリックã™ã‚‹ã¨ã€ -地域内ã®å…¨ã¦ã®ã‚¹ã‚¯ãƒªãƒ—トãŒä¸€æ™‚çš„ã«ç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚トップスクリプト㧠-検索ã—ãŸã‚¹ã‚¯ãƒªãƒ—トã®ä½ç½®ã¾ã§åˆ°é”ã™ã‚‹ã«ã¯ã€ -ã“ã®ã‚¹ãƒ†ãƒƒãƒ—ãŒå¿…è¦ã«ãªã‚‹å ´åˆã‚‚ã‚ã‚Šã¾ã™ã€‚スクリプトä½ç½®ã«åˆ°ç€å¾Œã€ -スクリプトを見ã¦æ‚ªå½±éŸ¿ã‚’与ãˆã¦ã„ã‚‹ã‹èª¿æŸ»ã—ã¦ãã ã•ã„。スクリプトã®æ‰€æœ‰è€…ã« -連絡ã™ã‚‹ã‹ã€ã‚ã‚‹ã„ã¯ã‚ªãƒ–ジェクトã®å‰Šé™¤ã¾ãŸã¯è¿”å´ã‚‚考ãˆã‚‰ã‚Œã¾ã™ã€‚ -「スクリプトを無効ã«ã™ã‚‹ã€ã®ãƒã‚§ãƒƒã‚¯ã‚’外ã—ã€ã€Œé©ç”¨ã€ã‚’クリックã—㦠-地域全体ã®ã‚¹ã‚¯ãƒªãƒ—トを有効ã«æˆ»ã—ã¦ãã ã•ã„。 + </notification> + <notification label="スクリプトを無効化" name="HelpRegionDisableScripts"> + スクリプトãŒåŽŸå› ã§ã‚·ãƒ ã®çŠ¶æ³ãŒæ‚ªããªã‚‹å ´åˆãŒã‚ã‚Šã¾ã™ã€‚ +統計グラフをã ã—ã¦ï¼ˆCtrl-Shift-1)〠+シミュレーターフィジックスFPSを見ã¦ãã ã•ã„。 +45より数ãŒä½Žã‘ã‚Œã°ã€ä¸€ç•ªä¸‹ã«ä½ç½®ã—ã¦ã„るタイムパãƒãƒ«ã‚’é–‹ã„ã¦ãã ã•ã„。 +スクリプト時間ãŒ25ms以上ã§ã‚ã‚Œã°ã€ +「トップスクリプトをå–å¾—ã€ãƒœã‚¿ãƒ³ã‚’クリックã—ã¾ã™ã€‚ +悪影響をåŠã¼ã—ã¦ã„るスクリプトã®åå‰ã¨ä½ç½®ãŒç¾ã‚Œã¾ã™ã€‚ + +「スクリプトを無効ã«ã™ã‚‹ã€ã‚’ãƒã‚§ãƒƒã‚¯ã—「é©ç”¨ã€ã‚’クリックã™ã‚‹ã¨ã€åœ°åŸŸå†…ã®å…¨ã¦ã®ã‚¹ã‚¯ãƒªãƒ—トãŒä¸€æ™‚çš„ã«ç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚ +トップスクリプトã§æ¤œç´¢ã—ãŸã‚¹ã‚¯ãƒªãƒ—トã®ä½ç½®ã¾ã§åˆ°é”ã™ã‚‹ã«ã¯ã€ +ã“ã®ã‚¹ãƒ†ãƒƒãƒ—ãŒå¿…è¦ã«ãªã‚‹å ´åˆã‚‚ã‚ã‚Šã¾ã™ã€‚ +スクリプトä½ç½®ã«åˆ°ç€å¾Œã€ã‚¹ã‚¯ãƒªãƒ—トを見ã¦æ‚ªå½±éŸ¿ã‚’与ãˆã¦ã„ã‚‹ã‹èª¿æŸ»ã—ã¦ãã ã•ã„。 +スクリプトã®æ‰€æœ‰è€…ã«é€£çµ¡ã™ã‚‹ã‹ã€ã‚ã‚‹ã„ã¯ã‚ªãƒ–ジェクトã®å‰Šé™¤ã¾ãŸã¯è¿”å´ã‚‚考ãˆã‚‰ã‚Œã¾ã™ã€‚ +「スクリプトを無効ã«ã™ã‚‹ã€ã®ãƒã‚§ãƒƒã‚¯ã‚’外ã—ã€ã€Œé©ç”¨ã€ã‚’クリックã—ã¦åœ°åŸŸå…¨ä½“ã®ã‚¹ã‚¯ãƒªãƒ—トを有効ã«æˆ»ã—ã¦ãã ã•ã„。 デフォルト:オフ - </notification> - - <notification - - label="è¡çªã‚’無効化" - name="HelpRegionDisableCollisions" - > -物ç†çš„オブジェクトãŒåŽŸå› ã§ã‚·ãƒ ã®å‡¦ç†ãŒé‡ããªã‚‹å ´åˆãŒã‚ã‚Šã¾ã™ã€‚ -統計グラフを開ã„ã¦ï¼ˆCtrl-Shift-1) シミュレーターフィジックス -FPSを見ã¦ãã ã•ã„。 数値ãŒ45より低ã‘ã‚Œã°ã€çµ±è¨ˆãƒãƒ¼ã®ä¸‹ã«ä½ç½®ã—ã¦ã„るタイムパãƒãƒ«ã‚’ -é–‹ã„ã¦ãã ã•ã„。 ã‚‚ã—シムタイム(物ç†çš„作用) -ãŒ20 msより長ã„å ´åˆã¯ã€ã€Œãƒˆãƒƒãƒ—・コライダーをå–å¾—ã€ã‚’クリックã—ã¦ãã ã•ã„。 -悪影響をåŠã¼ã—ã¦ã„ã‚‹å¯èƒ½æ€§ãŒã‚る物ç†ã‚ªãƒ–ジェクト㮠-åå‰ã¨ä½ç½®ãŒç¾ã‚Œã¾ã™ã€‚ + </notification> + <notification label="è¡çªã‚’無効化" name="HelpRegionDisableCollisions"> + 物ç†çš„オブジェクトãŒåŽŸå› ã§ã€ +シムã®å‡¦ç†ãŒé‡ããªã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ +統計グラフを開ã„ã¦ï¼ˆCtrl-Shift-1)〠+シミュレーターフィジックスFPSを見ã¦ãã ã•ã„。 +数値ãŒ45より低ã‘ã‚Œã°ã€çµ±è¨ˆãƒãƒ¼ã®ä¸‹ã«ä½ç½®ã—ã¦ã„るタイムパãƒãƒ«ã‚’é–‹ã„ã¦ãã ã•ã„。 +ã‚‚ã—シムタイム(物ç†çš„作用)ãŒ20 msより長ã„å ´åˆã¯ã€ +「トップ・コライダーをå–å¾—ã€ã‚’クリックã—ã¦ãã ã•ã„。 +悪影響をåŠã¼ã—ã¦ã„ã‚‹å¯èƒ½æ€§ãŒã‚る物ç†ã‚ªãƒ–ジェクトã®åå‰ã¨ä½ç½®ãŒç¾ã‚Œã¾ã™ã€‚ 「è¡çªã‚’無効ã«ã™ã‚‹ã€ã‚’ãƒã‚§ãƒƒã‚¯ã—「é©ç”¨ã€ã‚’クリックã™ã‚‹ã¨ã€ -オブジェクトåŒå£«ã®è¡çªãŒä¸€æ™‚çš„ã«ç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚ 当該ã®ãƒˆãƒƒãƒ—・コライダー -ã®ä½ç½®ã¾ã§åˆ°é”ã™ã‚‹ã«ã¯ -上記ã®ã‚¹ãƒ†ãƒƒãƒ—ãŒå¿…è¦ã«ãªã‚‹å ´åˆã‚‚ã‚ã‚Šã¾ã™ã€‚ 到ç€å¾Œã€ -オブジェクトを見ã¦å¸¸æ™‚ä»–ã®ã‚ªãƒ–ジェクトã¨è¡çªã—ã¦ã„ã‚‹ã‹èª¿æŸ»ã—ã¦ãã ã•ã„。 オブジェクトã®æ‰€æœ‰è€…ã« -連絡ã™ã‚‹ã‹ã€ã‚ã‚‹ã„ã¯ã‚ªãƒ–ジェクトã®å‰Šé™¤ã¾ãŸã¯è¿”å´ã‚’考慮ã™ã¹ãã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 +オブジェクトåŒå£«ã®è¡çªãŒä¸€æ™‚çš„ã«ç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚ +当該ã®ãƒˆãƒƒãƒ—・コライダーã®ä½ç½®ã¾ã§åˆ°é”ã™ã‚‹ã«ã¯ +上記ã®ã‚¹ãƒ†ãƒƒãƒ—ãŒå¿…è¦ã«ãªã‚‹å ´åˆã‚‚ã‚ã‚Šã¾ã™ã€‚ +到ç€å¾Œã€ã‚ªãƒ–ジェクトを見ã¦å¸¸æ™‚ä»–ã®ã‚ªãƒ–ジェクトã¨è¡çªã—ã¦ã„ã‚‹ã‹èª¿æŸ»ã—ã¦ãã ã•ã„。 +オブジェクトã®æ‰€æœ‰è€…ã«é€£çµ¡ã™ã‚‹ã‹ã€ã‚ã‚‹ã„ã¯ã‚ªãƒ–ジェクトã®å‰Šé™¤ã¾ãŸã¯è¿”å´ã‚’考慮ã™ã¹ãã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 「è¡çªã‚’無効ã«ã™ã‚‹ã€ã®ãƒã‚§ãƒƒã‚¯ã‚’外ã—ã€ã€Œé©ç”¨ã€ã‚’クリックã—㦠地域全体ã®è¡çªã‚’有効ã«æˆ»ã—ã¦ãã ã•ã„。 デフォルト:オフ - </notification> + </notification> + <notification label="物ç†ä½œç”¨ã‚’無効化" name="HelpRegionDisablePhysics"> + 物ç†çš„作用を無効ã«ã™ã‚‹ã“ã¨ã¯ã€ç‰©ç†çš„シミュレーション全ã¦ã®ç„¡åŠ¹ã‚’除ã„ã¦ã€è¡çªã‚’無効ã«ã™ã‚‹ã“ã¨ã¨ä¼¼ã¦ã„ã¾ã™ã€‚ +ã“ã‚Œã¯ã€ã‚ªãƒ–ジェクトã®è¡çªã‚’æ¢ã‚ã‚‹ã®ã¿ãªã‚‰ãšã€ã‚¢ãƒã‚¿ãƒ¼ã®ç§»å‹•ãŒã§ããªããªã‚‹ã“ã¨ã‚’æ„味ã—ã¾ã™ã€‚ - <notification - - label="物ç†ä½œç”¨ã‚’無効化" - name="HelpRegionDisablePhysics" - > -物ç†çš„作用を無効ã«ã™ã‚‹ã“ã¨ã¯ã€ç‰©ç†çš„シミュレーション全ã¦ã®ç„¡åŠ¹ã‚’除ã„ã¦ã€ -è¡çªã‚’無効ã«ã™ã‚‹ã“ã¨ã¨ä¼¼ã¦ã„ã¾ã™ã€‚ã“ã‚Œã¯ã€ã‚ªãƒ–ジェクトã®è¡çªã‚’æ¢ã‚ã‚‹ã®ã¿ãªã‚‰ãšã€ -ã‚¢ãƒã‚¿ãƒ¼ã®ç§»å‹•ãŒã§ããªããªã‚‹ã“ã¨ã‚’æ„味ã—ã¾ã™ã€‚ - -ã“ã®æ©Ÿèƒ½ã¯ã€ç‰©ç†çš„ãªå•é¡Œãªã®ã‹ã€ã¾ãŸã¯ãƒˆãƒƒãƒ—・コライダーãªã®ã‹ã‚’調査ã™ã‚‹ã«ã‚ãŸã‚Šã€ -è¡çªã®ç„¡åŠ¹ãŒåœ°åŸŸã«å¯¾ã—ã¦å分ãªãƒ‘フォーマンスを発æ®ã—ãªã„å ´åˆã«ã®ã¿ -使用ã—ã¦ãã ã•ã„。 +ã“ã®æ©Ÿèƒ½ã¯ã€ç‰©ç†çš„ãªå•é¡Œãªã®ã‹ã€ã¾ãŸã¯ãƒˆãƒƒãƒ—・コライダーãªã®ã‹ã‚’調査ã™ã‚‹ã«ã‚ãŸã‚Šã€è¡çªã®ç„¡åŠ¹ãŒåœ°åŸŸã«å¯¾ã—ã¦å分ãªãƒ‘フォーマンスを発æ®ã—ãªã„å ´åˆã«ã®ã¿ä½¿ç”¨ã—ã¦ãã ã•ã„。 終了ã™ã‚‹æ™‚ã«ã¯ã€ç‰©ç†çš„作用をå†åº¦å¯èƒ½ã«è¨å®šã—ã¦ãã ã•ã„。 ãã®ã¾ã¾ã ã¨ã€ã‚¢ãƒã‚¿ãƒ¼ã¯ãšã£ã¨å‹•ã‘ã¾ã›ã‚“。 デフォルト:オフ - </notification> - - <notification - - label="トップ・コライダー" - name="HelpRegionTopColliders" - > -オブジェクトåŒå£«ã®è¡çªãŒæœ€ã‚‚多ã„å¯èƒ½æ€§ã®ã‚ã‚‹ + </notification> + <notification label="トップ・コライダー" name="HelpRegionTopColliders"> + オブジェクトåŒå£«ã®è¡çªãŒæœ€ã‚‚多ã„å¯èƒ½æ€§ã®ã‚ã‚‹ オブジェクトã®ãƒªã‚¹ãƒˆã‚’表示ã—ã¾ã™ã€‚ã“れらã®ã‚ªãƒ–ジェクトã¯ã€ -パフォーマンスを低下ã•ã›ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ビューã‹ã‚‰çµ±è¨ˆãƒãƒ¼ã‚’é¸æŠžã—〠+パフォーマンスを低下ã•ã›ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ +ビューã‹ã‚‰çµ±è¨ˆãƒãƒ¼ã‚’é¸æŠžã—〠シミュレータ>時間>シム時間 (物ç†çš„作用) ã§ã€ 物ç†çš„作用ã«20 ms以上を費ã—ã¦ã„ã‚‹ã‹ã‚’確èªã—ã¦ãã ã•ã„。 - </notification> - - <notification - - label="トップ・スクリプト" - name="HelpRegionTopScripts" - > -LSLスクリプトã®å®Ÿè¡Œã«ä¸€ç•ªæ™‚間を費やã—ã¦ã„るオブジェクトã®ãƒªã‚¹ãƒˆã‚’ -入手ã—ã¾ã™ã€‚ã“れらã®ã‚ªãƒ–ジェクトã¯ã€ãƒ‘フォーマンスを低下ã•ã›ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification label="トップ・スクリプト" name="HelpRegionTopScripts"> + LSLスクリプトã®å®Ÿè¡Œã«ä¸€ç•ªæ™‚間を費やã—ã¦ã„るオブジェクトã®ãƒªã‚¹ãƒˆã‚’入手ã—ã¾ã™ã€‚ +ã“れらã®ã‚ªãƒ–ジェクトã¯ã€ãƒ‘フォーマンスを低下ã•ã›ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ ビューã‹ã‚‰çµ±è¨ˆãƒãƒ¼ã‚’é¸æŠžã—〠ミュレータ>時間>スクリプト時間ã§ã€ スクリプトã«25 ms以上を費ã—ã¦ã„ã‚‹ã‹ã‚’確èªã—ã¦ãã ã•ã„。 - </notification> - - <notification - - label="地域をリスタート" - name="HelpRegionRestart" - > -2分後ã«ã‚µãƒ¼ãƒãƒ¼ãŒå†èµ·å‹•ã•ã‚Œã‚‹ã¨ã„ã†è¦å‘Šãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã®å¾Œã«ã€ã“ã®åœ°åŸŸã®ã‚µãƒ¼ãƒãƒ¼ãƒ—ãƒã‚»ã‚¹ã‚’ -å†èµ·å‹•ã—ã¾ã™ã€‚ã“ã®åœ°åŸŸã®ã™ã¹ã¦ã®ä½äººã® -接続ãŒåˆ‡æ–ã•ã‚Œã¾ã™ã€‚地域ã®ãƒ‡ãƒ¼ã‚¿ã¯ä¿å˜ã•ã‚Œã€ -90秒以内ã«å›žå¾©ã—ã¾ã™ã€‚ + </notification> + <notification label="地域をå†èµ·å‹•" name="HelpRegionRestart"> + 2分後ã«ã‚µãƒ¼ãƒãƒ¼ãŒå†èµ·å‹•ã•ã‚Œã‚‹ã¨ã„ã†è¦å‘Šãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã®å¾Œã«ã€ +ã“ã®åœ°åŸŸã®ã‚µãƒ¼ãƒãƒ¼ãƒ—ãƒã‚»ã‚¹ã‚’å†èµ·å‹•ã—ã¾ã™ã€‚ +ã“ã®åœ°åŸŸã®ã™ã¹ã¦ã®ä½äººã®æŽ¥ç¶šãŒåˆ‡æ–ã•ã‚Œã¾ã™ã€‚ +地域ã®ãƒ‡ãƒ¼ã‚¿ã¯ä¿å˜ã•ã‚Œã€90秒以内ã«å›žå¾©ã—ã¾ã™ã€‚ ã“ã®åœ°åŸŸã‚’å†èµ·å‹•ã—ã¦ã‚‚ã€ã»ã¨ã‚“ã©ã®ãƒ‘フォーマンスã®å•é¡Œã«å¤‰åŒ–ã¯ã‚ã‚Šã¾ã›ã‚“。 指示ã•ã‚ŒãŸæ™‚ã ã‘利用ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - label="æ°´é¢ã®é«˜ã•" - name="HelpRegionWaterHeight" - > -ã“ã‚Œã¯ã€æ°´ãŒç¾ã‚Œã‚‹é«˜ã•ï¼ˆå˜ä½ï¼šãƒ¡ãƒ¼ãƒˆãƒ«ï¼‰ã§ã™ã€‚ + </notification> + <notification label="æ°´é¢ã®é«˜ã•" name="HelpRegionWaterHeight"> + ã“ã‚Œã¯ã€æ°´ãŒç¾ã‚Œã‚‹é«˜ã•ï¼ˆå˜ä½ï¼šãƒ¡ãƒ¼ãƒˆãƒ«ï¼‰ã§ã™ã€‚ ã“ã®è¨å®šãŒ20以外ã§ã€æ°´ãŒä¸–界㮠端やã€ã€Œç©ºã®ã€æ°´ã«è¿‘ã‘ã‚Œã°ã€ æºãŒè¦‹ãˆã‚‹ã§ã—ょã†ã€‚ デフォルト: 20 - </notification> - - <notification - - label="地形ã®ä¸Šæ˜‡" - name="HelpRegionTerrainRaise" - > -ã“ã®æ•°å€¤ã¯ã€ã€Œãƒ™ãƒ¼ã‚¯ã€åœ°å½¢ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®é«˜ã•ä»¥ä¸Šã«ã€ -区画ã®æ‰€æœ‰è€…ãŒåœŸåœ°ã‚’上ã’られるメートル -æ•°ã§ã™ã€‚ + </notification> + <notification label="地形ã®ä¸Šæ˜‡" name="HelpRegionTerrainRaise"> + ã“ã®æ•°å€¤ã¯ã€ã€Œãƒ™ãƒ¼ã‚¯ã€åœ°å½¢ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®é«˜ã•ä»¥ä¸Šã«ã€ +区画所有者ãŒåœŸåœ°ã‚’上ã’ã‚‹ã“ã¨ã®ã§ãるメートル値ã§ã™ã€‚ デフォルト: 4 - </notification> - - <notification - - label="地形ã®ä¸‹é™" - name="HelpRegionTerrainLower" - > -ã“ã®æ•°å€¤ã¯ã€ã€Œãƒ™ãƒ¼ã‚¯ã€åœ°å½¢ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®é«˜ã•ä»¥ä¸‹ã«ã€ -区画ã®æ‰€æœ‰è€…ãŒåœŸåœ°ã‚’下ã’られるメートル -æ•°ã§ã™ã€‚ + </notification> + <notification label="地形ã®ä¸‹é™" name="HelpRegionTerrainLower"> + ã“ã®æ•°å€¤ã¯ã€ã€Œãƒ™ãƒ¼ã‚¯ã€åœ°å½¢ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®é«˜ã•ä»¥ä¸‹ã«ã€ +区画所有者ãŒåœŸåœ°ã‚’下ã’られるメートル値ã§ã™ã€‚ デフォルト: -4 - </notification> - - <notification - - label="RAW地形をアップãƒãƒ¼ãƒ‰" - name="HelpRegionUploadRaw" - > -ã“ã®ãƒœã‚¿ãƒ³ã§ã€.RAW ファイルをã€ç¾åœ¨ã‚ãªãŸãŒå±…る地域ã«ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚ + </notification> + <notification label="RAW地形をアップãƒãƒ¼ãƒ‰" name="HelpRegionUploadRaw"> + ã“ã®ãƒœã‚¿ãƒ³ã‚’使ã£ã¦ã€.RAW ファイルを +ç¾åœ¨ã‚ãªãŸãŒå±…る地域ã«ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚ ファイルãŒå¿…ãšæ£ã—ã„サイズã®256x256ã€RGB〠-ã¾ãŸã€ãƒãƒ£ãƒ³ãƒãƒ«æ•°ãŒ13ã§ã‚ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。地形 -(Terrain) ファイルを作æˆã™ã‚‹æœ€è‰¯ã®æ–¹æ³•ã¯ã€æ—¢å˜ã®RAWファイルをダウンãƒãƒ¼ãƒ‰ã™ã‚‹ã“ã¨ã§ã™ã€‚ã¾ãš -最åˆã®ãƒãƒ£ãƒ³ãƒãƒ«ï¼ˆåœŸåœ°ã®é«˜ã•ï¼‰ã‚’変更ã—ã€ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã™ã‚‹ã“ã¨ã‹ã‚‰ -始ã‚られã¾ã™ã€‚ +ã¾ãŸã€ãƒãƒ£ãƒ³ãƒãƒ«æ•°ãŒ13ã§ã‚ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。 +地形(Terrain) ファイルを作æˆã™ã‚‹æœ€è‰¯ã®æ–¹æ³•ã¯ã€ +æ—¢å˜ã®RAWファイルをダウンãƒãƒ¼ãƒ‰ã™ã‚‹ã“ã¨ã§ã™ã€‚ +ã¾ãšæœ€åˆã®ãƒãƒ£ãƒ³ãƒãƒ«ï¼ˆåœŸåœ°ã®é«˜ã•ï¼‰ã‚’変更ã—〠+アップãƒãƒ¼ãƒ‰ã™ã‚‹ã“ã¨ã‹ã‚‰å§‹ã‚られã¾ã™ã€‚ -アップãƒãƒ¼ãƒ‰ã«ã¯45秒ã»ã©ã‹ã‹ã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ã“ã“ã§æ³¨æ„ã™ã‚‹ã“ã¨ã¯ã€ -地形ファイルã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã«ã‚ˆã£ã¦ã€åœŸåœ°ã«é…ç½®ã•ã‚Œã¦ã„るオブジェクトã¯ã€Œå‹•ã‹ãªã„ã€ã¨ã„ã†ã“ã¨ã§ã™ã€‚ -影響ãŒã‚ã‚‹ã®ã¯ã€åœ°å½¢è‡ªä½“ã¨ã€åœŸåœ°ã«é–¢ä¿‚ã™ã‚‹ -許å¯ã®ã¿ã§ã™ã€‚よã£ã¦ã€ã‚ªãƒ–ジェクトãŒåœ°ä¸‹ã«åŸ‹ã¾ã£ã¦ã—ã¾ã†ã“ã¨ãŒã‚ã‚‹ã®ã§ã”注æ„ãã ã•ã„。 +アップãƒãƒ¼ãƒ‰ã«ã¯45秒ã»ã©ã‹ã‹ã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ +ã“ã“ã§æ³¨æ„ã™ã‚‹ã“ã¨ã¯ã€åœ°å½¢ãƒ•ã‚¡ã‚¤ãƒ«ã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã«ã‚ˆã£ã¦ã€åœŸåœ°ã«é…ç½®ã•ã‚Œã¦ã„るオブジェクトã¯ã€Œå‹•ã‹ãªã„ã€ã¨ã„ã†ã“ã¨ã§ã™ã€‚ +影響ãŒã‚ã‚‹ã®ã¯ã€åœ°å½¢è‡ªä½“ã¨ã€åœŸåœ°ã«é–¢ä¿‚ã™ã‚‹è¨±å¯ã®ã¿ã§ã™ã€‚ +よã£ã¦ã€ã‚ªãƒ–ジェクトãŒåœ°ä¸‹ã«åŸ‹ã¾ã£ã¦ã—ã¾ã†ã“ã¨ãŒã‚ã‚‹ã®ã§ã”注æ„ãã ã•ã„。 地形è¨å®šç·¨é›†ã®æƒ…å ±ã¨è©³ç´°ã«ã¤ã„ã¦ã¯ã€F1ヘルプをã”覧ãã ã•ã„。 - </notification> - - <notification - - label="RAW地形をダウンãƒãƒ¼ãƒ‰" - name="HelpRegionDownloadRaw" - > -ã“ã®ãƒœã‚¿ãƒ³ã‚’押ã™ã¨ã€æ¨™é«˜ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ãƒ‡ãƒ¼ã‚¿ã€ + </notification> + <notification label="RAW地形をダウンãƒãƒ¼ãƒ‰" name="HelpRegionDownloadRaw"> + ã“ã®ãƒœã‚¿ãƒ³ã‚’押ã™ã¨ã€æ¨™é«˜ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ãƒ‡ãƒ¼ã‚¿ã€ 区画寸法ã€å£²ã‚Šå‡ºã—区画ステータスã€ã“ã®åœ°åŸŸã«ãŠã‘る許å¯ã‚’ å«ã‚€ãƒ•ã‚¡ã‚¤ãƒ«ã‚’ダウンãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚フォトショップã®ã‚ˆã†ãªãƒ—ãƒã‚°ãƒ©ãƒ ã§ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’é–‹ãã«ã¯ã€ -以下ã®ã‚ˆã†ãªãƒ‰ã‚ュメントã®ã‚µã‚¤ã‚ºã‚’ -指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼šRGBã€256x256ã§ã€ãƒãƒ£ãƒ³ãƒãƒ«æ•°ãŒ13。ã“ã®åœ°å½¢ãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€ -ä»–ã®æ–¹æ³•ã§ã¯é–‹ãã“ã¨ã¯ã§ãã¾ã›ã‚“。 +以下ã®ã‚ˆã†ãªãƒ‰ã‚ュメントã®ã‚µã‚¤ã‚ºã‚’指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼š +RGBã€256x256ã§ã€ãƒãƒ£ãƒ³ãƒãƒ«æ•°ãŒ13 +ã“ã®åœ°å½¢ãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€ä»–ã®æ–¹æ³•ã§ã¯é–‹ãã“ã¨ã¯ã§ãã¾ã›ã‚“。 地形ã«ãŠã‘る標高フィールドã®ç·¨é›†ã«é–¢ã™ã‚‹è©³ç´°ã«ã¤ã„ã¦ã¯ã€F1ヘルプをã”覧ãã ã•ã„。 - </notification> - - <notification - - label="ä¸å‹•ç”£ã®å¤ªé™½ã‚’使用" - name="HelpRegionUseEstateSun" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€ã“ã®åœ°åŸŸã®å¤ªé™½ã¯ + </notification> + <notification label="ä¸å‹•ç”£ã®å¤ªé™½ã‚’使用" name="HelpRegionUseEstateSun"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€ã“ã®åœ°åŸŸã®å¤ªé™½ã¯ ä¸å‹•ç”£ã®ä»–ã®å ´æ‰€ã«ãŠã‘る太陽ã¨ä½ç½®ãŒåŒã˜ã«ãªã‚Šã¾ã™ã€‚ デフォルト: オン - </notification> - - <notification - - label="太陽固定" - name="HelpRegionFixedSun" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€å¤ªé™½ã®ä½ç½®ã¯æ®µéšŽã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼å†…ã« + </notification> + <notification label="太陽固定" name="HelpRegionFixedSun"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã¨ã€å¤ªé™½ã®ä½ç½®ã¯æ®µéšŽã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼å†…ã« è¨å®šã•ã‚Œã€å‹•ã‹ãªããªã‚Šã¾ã™ã€‚ デフォルト: オフ - </notification> - - <notification - - label="地形を構築ã™ã‚‹" - name="HelpRegionBakeTerrain" - > -ã“ã®ãƒœã‚¿ãƒ³ã«ã‚ˆã‚Šã€ç¾åœ¨ã®åœ°å½¢ã®å½¢çŠ¶ã‚’æ–°ãŸãª -デフォルトã¨ã—ã¦ä¿å˜ã—ã¾ã™ã€‚一度ベークã•ã‚Œã‚‹ã¨ã€ -ã‚ãªãŸã‚„ä»–ã®äººãŒåœ°å½¢ç·¨é›†ã®ã€Œå¾©å¸°ã€ã‚ªãƒ—ションï¼ãƒ„ールを使用ã—ãŸéš›ã«ã€ -ä¿å˜ã•ã‚ŒãŸå½¢çŠ¶ã«å›žå¾©ã§ãã¾ã™ã€‚ベークã•ã‚ŒãŸåœ°å½¢ã¯ã€ -地形上昇ãŠã‚ˆã³ä¸‹é™å¢ƒç•Œã®ä¸é–“点ã§ã‚‚ã‚ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - label="ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼" - name="HelpEstateEstateManager" - > -ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã¨ã¯ã€åœ°åŸŸã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«ã¨ + </notification> + <notification label="地形を構築ã™ã‚‹" name="HelpRegionBakeTerrain"> + ã“ã®ãƒœã‚¿ãƒ³ã«ã‚ˆã‚Šã€ç¾åœ¨ã®åœ°å½¢ã®å½¢çŠ¶ã‚’æ–°ãŸãªãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã¨ã—ã¦ä¿å˜ã—ã¾ã™ã€‚ +一度ベークã•ã‚Œã‚‹ã¨ã€ã‚ãªãŸã‚„ä»–ã®äººãŒåœ°å½¢ç·¨é›†ã®ã€Œå¾©å¸°ã€ã‚ªãƒ—ションï¼ãƒ„ールを使用ã—ãŸéš›ã«ã€ä¿å˜ã•ã‚ŒãŸå½¢çŠ¶ã«å›žå¾©ã§ãã¾ã™ã€‚ +ベークã•ã‚ŒãŸåœ°å½¢ã¯ã€åœ°å½¢ä¸Šæ˜‡ãŠã‚ˆã³ä¸‹é™å¢ƒç•Œã®ä¸é–“点ã§ã‚‚ã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification label="ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼" name="HelpEstateEstateManager"> + ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã¨ã¯ã€åœ°åŸŸã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«ã¨ ä¸å‹•ç”£è¨å®šãŒå§”ä»»ã•ã‚ŒãŸä½äººã‚’ã•ã—ã¾ã™ã€‚ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã¯ã€ アップãƒãƒ¼ãƒ‰ã€ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã€ãŠã‚ˆã³åœ°å½¢æ§‹ç¯‰ã‚’除ã„ãŸãƒ‘ãƒãƒ«å†…ã® è¨å®šã‚’変更ã§ãã¾ã™ã€‚特ç†ã™ã¹ãã¯ã€ ä½äººã®ã‚¢ã‚¯ã‚»ã‚¹è¨±å¯ã¾ãŸã¯ç¦æ¢ã®è¨å®šãŒã§ãã‚‹ã“ã¨ã§ã™ã€‚ -ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã®è¿½åŠ ã¨å‰Šé™¤ã¯ã€ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã®ã¿ãŒè¡Œã†ã“ã¨ãŒã§ã〠-マãƒãƒ¼ã‚¸ãƒ£ãƒ¼åŒå£«ã§ã¯ä¸å¯èƒ½ã§ã™ã€‚ä¿¡é ¼ã§ãã‚‹ä½äººã®ã¿ -ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã«ä»»å‘½ã—ã¦ãã ã•ã„。彼らã®è¡Œå‹•ã® -全責任ã¯ã€æœ€çµ‚çš„ã«ã¯ã‚ãªãŸã«ã‚ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - label="ã‚°ãƒãƒ¼ãƒãƒ«ãƒ»ã‚¿ã‚¤ãƒ を使用" - name="HelpEstateUseGlobalTime" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€ã‚ãªãŸã®æ‰€æœ‰åœ°ã®å¤ªé™½ã¯ -Linden社所有ã®ãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã®ä¸å‹•ç”£ã§ã®å¤ªé™½ã®ä½ç½®ã« -準ã˜ã¾ã™ã€‚ +ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã®è¿½åŠ ã¨å‰Šé™¤ã¯ã€ä¸å‹•ç”£ã‚ªãƒ¼ãƒŠãƒ¼ã®ã¿ãŒè¡Œã†ã“ã¨ãŒã§ãã€ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼åŒå£«ã§ã¯ä¸å¯èƒ½ã§ã™ã€‚ +ä¿¡é ¼ã§ãã‚‹ä½äººã®ã¿ä¸å‹•ç”£ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã«ä»»å‘½ã—ã¦ãã ã•ã„。 +彼らã®è¡Œå‹•ã®å…¨è²¬ä»»ã¯ã€æœ€çµ‚çš„ã«ã¯ã‚ãªãŸã«ã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification label="ã‚°ãƒãƒ¼ãƒãƒ«ãƒ»ã‚¿ã‚¤ãƒ を使用" name="HelpEstateUseGlobalTime"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€ +ã‚ãªãŸã®æ‰€æœ‰åœ°ã®å¤ªé™½ã¯Linden社所有ã®ãƒ¡ã‚¤ãƒ³ãƒ©ãƒ³ãƒ‰ã®ä¸å‹•ç”£ã§ã®å¤ªé™½ã®ä½ç½®ã«æº–ã˜ã¾ã™ã€‚ デフォルト: オン - </notification> - - <notification - - label="太陽固定" - name="HelpEstateFixedSun" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€å¤ªé™½ã®ä½ç½®ã¯æ®µéšŽã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼å†…ã« -è¨å®šã•ã‚Œã€å‹•ã‹ãªããªã‚Šã¾ã™ã€‚ - </notification> - - <notification - - label="パブリック・アクセス" - name="HelpEstateExternallyVisible" - > -ã“ã®ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã¯ã€ä»–ã®ä¸å‹•ç”£ã«ã„ã‚‹ä½äººãŒã€ã‚¢ã‚¯ã‚»ã‚¹ãƒªã‚¹ãƒˆã«ç™»éŒ²ã•ã‚Œã¦ã„ãªãã¦ã‚‚ã€ã“ã®ä¸å‹•ç”£ã«ç«‹ã¡å…¥ã‚‹ã“ã¨ãŒã§ãã‚‹ã‹ã©ã†ã‹ã‚’ -è¨å®šã—ã¾ã™ã€‚ + </notification> + <notification label="太陽固定" name="HelpEstateFixedSun"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€ +太陽ã®ä½ç½®ã¯æ®µéšŽã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼å†…ã«è¨å®šã•ã‚Œã€å‹•ã‹ãªããªã‚Šã¾ã™ã€‚ + </notification> + <notification label="パブリック・アクセス" name="HelpEstateExternallyVisible"> + ã“ã®ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã¯ã€ +ä»–ã®ä¸å‹•ç”£ã«ã„ã‚‹ä½äººãŒã€ã‚¢ã‚¯ã‚»ã‚¹ãƒªã‚¹ãƒˆã«ç™»éŒ²ã•ã‚Œã¦ã„ãªãã¦ã‚‚ã“ã®ä¸å‹•ç”£ã«ç«‹ã¡å…¥ã‚‹ã“ã¨ãŒã§ãã‚‹ã‹ã©ã†ã‹ã‚’è¨å®šã—ã¾ã™ã€‚ デフォルト: オン - </notification> - - <notification - - label="直接テレãƒãƒ¼ãƒˆã‚’許å¯" - name="HelpEstateAllowDirectTeleport" - > -ãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€ä¸å‹•ç”£ã®ã©ã“ã«ã§ã‚‚直接テレãƒãƒ¼ãƒˆãŒ + </notification> + <notification label="直接テレãƒãƒ¼ãƒˆã‚’許å¯" name="HelpEstateAllowDirectTeleport"> + ãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ã€ä¸å‹•ç”£ã®ã©ã“ã«ã§ã‚‚直接テレãƒãƒ¼ãƒˆãŒ å¯èƒ½ã«ãªã‚Šã¾ã™ã€‚ãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ãªã„ã¨ã€æœ€ã‚‚è¿‘ã„テレãƒãƒ–㫠テレãƒãƒ¼ãƒˆã—ã¾ã™ã€‚ デフォルト: オフ - </notification> - - <notification - - label="アクセスを許å¯" - name="HelpEstateAllowResident" - > -ã“ã®ä¸å‹•ç”£ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã¯ã€ã“ã“ã«ç™»éŒ²ã•ã‚Œã¦ã„ã‚‹ä½äººã¨ -下記ã§ç‰¹åˆ¥ã«ç™»éŒ²ã•ã‚ŒãŸã‚°ãƒ«ãƒ¼ãƒ—ã®ã¿ã«è¨±å¯ã•ã‚Œã¾ã™ã€‚ ã“ã®è¨å®šã¯ -「パブリック・アクセスã€ãŒã‚ªãƒ•ã«ãªã£ã¦ã‚‹ã¨ãã®ã¿ã€ -使用å¯èƒ½ã§ã™ã€‚ - </notification> - - <notification - - label="グループ・アクセスを許å¯" - name="HelpEstateAllowGroup" - > -ã“ã®ä¸å‹•ç”£ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã¯ã€ã“ã“ã«ç™»éŒ²ã•ã‚Œã¦ã„るグループ㨠-下記ã§ç‰¹åˆ¥ã«ç™»éŒ²ã•ã‚ŒãŸä½äººã®ã¿ã«è¨±å¯ã•ã‚Œã¾ã™ã€‚ ã“ã®è¨å®šã¯ -「パブリック・アクセスã€ãŒã‚ªãƒ•ã«ãªã£ã¦ã‚‹ã¨ãã®ã¿ã€ -使用å¯èƒ½ã§ã™ã€‚ - </notification> - - <notification - - label="å«ŒãŒã‚‰ã›ã«é–¢ã™ã‚‹ãƒ¡ãƒ¼ãƒ«å…ˆ" - name="HelpEstateAbuseEmailAddress" - > -ã“れを有効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã«è¨å®šã™ã‚‹ã¨ã€ãã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã«ã“ã®ä¸å‹•ç”£ã«ãŠã„ã¦è¡Œã‚れ㟠+ </notification> + <notification label="アクセスを許å¯" name="HelpEstateAllowResident"> + ã“ã®ä¸å‹•ç”£ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã¯ã€ã“ã“ã«ç™»éŒ²ã•ã‚Œã¦ã„ã‚‹ä½äººã¨ +下記ã§ç‰¹åˆ¥ã«ç™»éŒ²ã•ã‚ŒãŸã‚°ãƒ«ãƒ¼ãƒ—ã®ã¿ã«è¨±å¯ã•ã‚Œã¾ã™ã€‚ +ã“ã®è¨å®šã¯ã€Œãƒ‘ブリック・アクセスã€ãŒã‚ªãƒ•ã«ãªã£ã¦ã‚‹ã¨ãã®ã¿ä½¿ç”¨å¯èƒ½ã§ã™ã€‚ + </notification> + <notification label="グループ・アクセスを許å¯" name="HelpEstateAllowGroup"> + ã“ã®ä¸å‹•ç”£ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã¯ã€ã“ã“ã«ç™»éŒ²ã•ã‚Œã¦ã„るグループ㨠+下記ã§ç‰¹åˆ¥ã«ç™»éŒ²ã•ã‚ŒãŸä½äººã®ã¿ã«è¨±å¯ã•ã‚Œã¾ã™ã€‚ +ã“ã®è¨å®šã¯ã€Œãƒ‘ブリック・アクセスã€ãŒã‚ªãƒ•ã«ãªã£ã¦ã‚‹ã¨ãã®ã¿ä½¿ç”¨å¯èƒ½ã§ã™ã€‚ + </notification> + <notification label="å«ŒãŒã‚‰ã›ã«é–¢ã™ã‚‹ãƒ¡ãƒ¼ãƒ«å…ˆ" name="HelpEstateAbuseEmailAddress"> + ã“れを有効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã«è¨å®šã™ã‚‹ã¨ã€ãã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã«ã“ã®ä¸å‹•ç”£ã«ãŠã„ã¦è¡Œã‚れ㟠嫌ãŒã‚‰ã›ã®å ±å‘ŠãŒé€ä¿¡ã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚ è¨å®šã‚’è¡Œã‚ãªã„å ´åˆï¼ˆç©ºç™½ï¼‰ã€å«ŒãŒã‚‰ã›å ±å‘Šã¯ Linden Lab ã«ã®ã¿ é€ä¿¡ã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - label="アクセス拒å¦" - name="HelpEstateBanResident" - > -ã“ã®ãƒªã‚¹ãƒˆã®ä½äººã¯ã€ä»–ã®è¨å®šã«ã‹ã‹ã‚らãšã€ã‚ãªãŸã®ä¸å‹•ç”£ã¸ã® + </notification> + <notification label="アクセス拒å¦" name="HelpEstateBanResident"> + ã“ã®ãƒªã‚¹ãƒˆã®ä½äººã¯ã€ä»–ã®è¨å®šã«ã‹ã‹ã‚らãšã€ã‚ãªãŸã®ä¸å‹•ç”£ã¸ã® アクセスãŒç¦æ¢ã•ã‚Œã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - label="ボイスãƒãƒ£ãƒƒãƒˆã‚’許å¯" - name="HelpEstateVoiceChat" - > -ã“ã®ä¸å‹•ç”£ã®åŒºç”»ã¯ã€ä½äººãŒè¿‘所ã®äººã¨å¯¾è©±ã§ãã‚‹ -独自ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã¤ã“ã¨ãŒ -ã§ãã¾ã™ã€‚ + </notification> + <notification label="ボイスãƒãƒ£ãƒƒãƒˆã‚’許å¯" name="HelpEstateVoiceChat"> + ã“ã®ä¸å‹•ç”£ã®åŒºç”»ã¯ã€ä½äººãŒè¿‘所ã®äººã¨å¯¾è©±ã§ãã‚‹ +独自ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã¤ã“ã¨ãŒã§ãã¾ã™ã€‚ デフォルト: オフ - </notification> - - <notification - - label="ボイスãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ä¸ä¸€è‡´" - name="VoiceVersionMismatch" - > -ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã® Second Life ã¯ã€ã“ã®åœ°åŸŸã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆæ©Ÿèƒ½ã«å¯¾å¿œã—ã¦ã„ã¾ã›ã‚“。ボイスãƒãƒ£ãƒƒãƒˆã‚’æ£ã—ã使用ã™ã‚‹ã«ã¯ã€Second Life ã®ã‚¢ãƒƒãƒ—デートãŒå¿…è¦ã§ã™ã€‚ - </notification> - - <notification - - label="ä¸å‹•ç”£ç´„款" - name="HelpEstateCovenant" - > -ä¸å‹•ç”£ç´„款を定ã‚ã‚‹ã¨ã€è‡ªåˆ†ã®ä¸å‹•ç”£å†…ã®åŒºç”»ã‚’販売\ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ 約款を定ã‚ã¦ã„ãªã„ã¨ã€\土地ã¯å£²ã‚Œã¾ã›ã‚“。 土地ã«é–¢ã™ã‚‹è¦å‰‡ã‚’é©ç”¨ã—ãŸããªã‹ã£ãŸã‚Šã€è³¼å…¥å‰ã«\土地ã«é–¢ã™ã‚‹æƒ…å ±ã‚’è³¼å…¥è€…ã«çŸ¥ã‚‰ã›ãŸããªã‹ã£ãŸã‚‰ã€\ã‚ãªãŸã®ç´„款ã®ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã¯ç™½ç´™ã§ã‹ã¾ã„ã¾ã›ã‚“。 - -約款ã¯è³¼å…¥ã‚’考ãˆã¦ã„る人ã«ã€è¦å‰‡ã€ã‚¬ã‚¤ãƒ‰ãƒ©ã‚¤ãƒ³ã€\æ–‡åŒ–çš„æƒ…å ±ã‚„å˜ã«ã‚ãªãŸãŒæœŸå¾…ã™ã‚‹ã“ã¨ã‚’ä¼ãˆã‚‹ãŸã‚ã«ã‚‚\使ãˆã¾ã™ã€‚ ã“ã“ã«ã¯ã€åŒºç”»è¦åˆ¶ã€å»ºé€ 物è¦åˆ¶ã€\支払ã„オプションã€ãã‚Œã‹ã‚‰è³¼å…¥è€…ãŒäº‹å‰ã«\目を通ã—ã¦åŒæ„ã—ã¦ãŠãã¹ãã ã¨ã‚ãªãŸãŒæ€ã†é‡è¦ãªæƒ…å ±ã‚’ã™ã¹ã¦\入れるã“ã¨ãŒã§ãã¾ã™ã€‚ - -購入者ãŒãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã—ã¦ç´„款ã«åŒæ„ã—ãªã„ã‹ãŽã‚Šã€\購入ã®æ‰‹ç¶šãã¯å®Œäº†ã—ã¾ã›ã‚“。 ä¸å‹•ç”£\約款ãŒå®šã‚られã¦ã„る区画ã§ã‚ã‚Œã°ã€ã™ã¹ã¦ã€ŒåœŸåœ°æƒ…å ±ã€ã‹ã‚‰\約款をã„ã¤ã§ã‚‚閲覧ã§ãã¾ã™ã€‚ - </notification> - - <notification - - label="オブジェクトを購入ã§ãã¾ã›ã‚“" - name="BuyObjectOneOwner" - > -複数ã®ã‚ªãƒ¼ãƒŠãƒ¼ã‹ã‚‰åŒæ™‚ã«ã‚ªãƒ–ジェクトを購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification label="ボイスãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ä¸ä¸€è‡´" name="VoiceVersionMismatch"> + ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã® Second Life ã¯ã€ +ã“ã®åœ°åŸŸã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆæ©Ÿèƒ½ã«å¯¾å¿œã—ã¦ã„ã¾ã›ã‚“。 +ボイスãƒãƒ£ãƒƒãƒˆã‚’æ£ã—ã使用ã™ã‚‹ã«ã¯ã€ +Second Life ã®ã‚¢ãƒƒãƒ—デートãŒå¿…è¦ã§ã™ã€‚ + </notification> + <notification label="ä¸å‹•ç”£ç´„款" name="HelpEstateCovenant"> + ä¸å‹•ç”£ç´„款を定ã‚ã‚‹ã¨ã€è‡ªåˆ†ã®ä¸å‹•ç”£å†…ã®åŒºç”»ã‚’販売ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ +約款を定ã‚ã¦ã„ãªã„ã¨åœŸåœ°ã¯å£²ã‚Œã¾ã›ã‚“。 +土地ã«é–¢ã™ã‚‹è¦å‰‡ã‚’é©ç”¨ã—ãŸããªã‹ã£ãŸã‚Šã€è³¼å…¥å‰ã«åœŸåœ°ã«é–¢ã™ã‚‹æƒ…å ±ã‚’è³¼å…¥è€…ã«çŸ¥ã‚‰ã›ãŸããªã„å ´åˆã€ã‚ãªãŸã®ç´„款ã®ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã¯ç™½ç´™ã§ã‹ã¾ã„ã¾ã›ã‚“。 + +約款ã¯è³¼å…¥ã‚’考ãˆã¦ã„る人ã«ã€è¦å‰‡ã€ã‚¬ã‚¤ãƒ‰ãƒ©ã‚¤ãƒ³ã€æ–‡åŒ–çš„æƒ…å ±ã‚„ +å˜ã«ã‚ãªãŸãŒæœŸå¾…ã™ã‚‹ã“ã¨ã‚’ä¼ãˆã‚‹ãŸã‚ã«ã‚‚使ãˆã¾ã™ã€‚ +ã“ã“ã«ã¯ã€åŒºç”»è¦åˆ¶ã€å»ºé€ 物è¦åˆ¶ã€æ”¯æ‰•ã„オプションã€ãã‚Œã‹ã‚‰è³¼å…¥è€…ãŒäº‹å‰ã«ç›®ã‚’通ã—ã¦åŒæ„ã—ã¦ãŠãã¹ãã ã¨ã‚ãªãŸãŒæ€ã†é‡è¦ãªæƒ…å ±ã‚’ã™ã¹ã¦å…¥ã‚Œã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + +購入者ãŒãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã—ã¦ç´„款ã«åŒæ„ã—ãªã„ã‹ãŽã‚Šã€è³¼å…¥ã®æ‰‹ç¶šãã¯å®Œäº†ã—ã¾ã›ã‚“。 +ä¸å‹•ç”£ç´„款ãŒå®šã‚られã¦ã„る区画ã§ã‚ã‚Œã°ã€ã€ŒåœŸåœ°æƒ…å ±ã€ã‹ã‚‰ç´„款をã„ã¤ã§ã‚‚閲覧ã§ãã¾ã™ã€‚ + </notification> + <notification label="オブジェクトを購入ã§ãã¾ã›ã‚“" name="BuyObjectOneOwner"> + 複数ã®ã‚ªãƒ¼ãƒŠãƒ¼ã‹ã‚‰åŒæ™‚ã«ã‚ªãƒ–ジェクトを購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 å˜ä¸€ã®ã‚ªãƒ–ジェクトをé¸æŠžã—ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - label="コンテンツを購入ã§ãã¾ã›ã‚“" - name="BuyContentsOneOnly" - > -一度ã«è¤‡æ•°ã®ã‚ªãƒ–ジェクトã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯è³¼å…¥ã§ãã¾ã›ã‚“。 + </notification> + <notification label="コンテンツを購入ã§ãã¾ã›ã‚“" name="BuyContentsOneOnly"> + 一度ã«è¤‡æ•°ã®ã‚ªãƒ–ジェクトã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯è³¼å…¥ã§ãã¾ã›ã‚“。 é¸æŠžã™ã‚‹ã‚ªãƒ–ジェクトを1ã¤ã ã‘ã«ã—ã¦ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - label="コンテンツを購入ã§ãã¾ã›ã‚“" - name="BuyContentsOneOwner" - > -複数ã®ã‚ªãƒ¼ãƒŠãƒ¼ã‹ã‚‰åŒæ™‚ã«ã‚ªãƒ–ジェクトを購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification label="コンテンツを購入ã§ãã¾ã›ã‚“" name="BuyContentsOneOwner"> + 複数ã®ã‚ªãƒ¼ãƒŠãƒ¼ã‹ã‚‰åŒæ™‚ã«ã‚ªãƒ–ジェクトを購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 å˜ä¸€ã®ã‚ªãƒ–ジェクトをé¸æŠžã—ã€ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="BuyOriginal" - > -オリジナルã®ã‚ªãƒ–ジェクトを[OWNER]ã‹ã‚‰L$[PRICE]ã§è³¼å…¥ã—ã¾ã™ã‹ï¼Ÿ + </notification> + <notification name="BuyOriginal"> + オリジナルã®ã‚ªãƒ–ジェクトを[OWNER]ã‹ã‚‰L$[PRICE]ã§è³¼å…¥ã—ã¾ã™ã‹ï¼Ÿ ã“ã‚Œã«ã‚ˆã‚Šã€ã‚ãªãŸãŒã‚ªãƒ–ジェクトã®ã‚ªãƒ¼ãƒŠãƒ¼ã«ãªã‚Šã¾ã™ã€‚ å¯èƒ½ãªæ“作ã¯ã€ -変更:[MODIFYPERM] -ã€ã‚³ãƒ”ー:[COPYPERM] -ã€å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -L$[PRICE]ã§ã‚ªãƒªã‚¸ãƒŠãƒ«ã®ã‚ªãƒ–ジェクトを購入ã—ã¾ã™ã‹ï¼Ÿ +変更:[MODIFYPERM]ã€ã‚³ãƒ”ー:[COPYPERM]〠+å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="BuyOriginalNoOwner"> + L$[PRICE]ã§ã‚ªãƒªã‚¸ãƒŠãƒ«ã®ã‚ªãƒ–ジェクトを購入ã—ã¾ã™ã‹ï¼Ÿ ã“ã‚Œã«ã‚ˆã‚Šã€ã‚ãªãŸãŒã‚ªãƒ–ジェクトã®ã‚ªãƒ¼ãƒŠãƒ¼ã«ãªã‚Šã¾ã™ã€‚ å¯èƒ½ãªæ“作ã¯ã€ -変更:[MODIFYPERM] -ã€ã‚³ãƒ”ー:[COPYPERM] -ã€å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopy" - > -コピーを[OWNER]ã‹ã‚‰L$[PRICE]ã§è³¼å…¥ã—ã¾ã™ã‹ï¼Ÿ +変更:[MODIFYPERM]ã€ã‚³ãƒ”ー:[COPYPERM]〠+å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="BuyCopy"> + コピーを[OWNER]ã‹ã‚‰L$[PRICE]ã§è³¼å…¥ã—ã¾ã™ã‹ï¼Ÿ 購入ã—ãŸã‚ªãƒ–ジェクトã¯ã€ã‚ãªãŸã®æŒã¡ç‰©ã«ã‚³ãƒ”ーã•ã‚Œã¾ã™ã€‚ -å¯èƒ½ãªæ“作ã¯ã€å¤‰æ›´ï¼š[MODIFYPERM] -ã€ã‚³ãƒ”ー:[COPYPERM] -ã€å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -L$[PRICE]ã§ã‚³ãƒ”ーを購入ã—ã¾ã™ã‹ï¼Ÿ +å¯èƒ½ãªæ“作ã¯ã€å¤‰æ›´ï¼š[MODIFYPERM]ã€ã‚³ãƒ”ー:[COPYPERM]〠+å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="BuyCopyNoOwner"> + L$[PRICE]ã§ã‚³ãƒ”ーを購入ã—ã¾ã™ã‹ï¼Ÿ 購入ã—ãŸã‚ªãƒ–ジェクトã¯ã€ã‚ãªãŸã®æŒã¡ç‰©ã«ã‚³ãƒ”ーã•ã‚Œã¾ã™ã€‚ -å¯èƒ½ãªæ“作ã¯ã€å¤‰æ›´ï¼š[MODIFYPERM] -ã€ã‚³ãƒ”ー:[COPYPERM] -ã€å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="BuyContents" - > -コンテンツを[OWNER]ã‹ã‚‰L$[PRICE]ã§è³¼å…¥ã—ã¾ã™ã‹ï¼Ÿ +å¯èƒ½ãªæ“作ã¯ã€å¤‰æ›´ï¼š[MODIFYPERM]ã€ã‚³ãƒ”ー:[COPYPERM]〠+å†è²©ï¼ãƒ—レゼント[RESELLPERM]ã§ã™ã€‚ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="BuyContents"> + コンテンツを[OWNER]ã‹ã‚‰L$[PRICE]ã§è³¼å…¥ã—ã¾ã™ã‹ï¼Ÿ 購入ã—ãŸã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯ã€ã‚ãªãŸã®æŒã¡ç‰©ã«ã‚³ãƒ”ーã•ã‚Œã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -L$[PRICE]ã§ã‚³ãƒ³ãƒ†ãƒ³ãƒ„を購入ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="BuyContentsNoOwner"> + L$[PRICE]ã§ã‚³ãƒ³ãƒ†ãƒ³ãƒ„を購入ã—ã¾ã™ã‹ï¼Ÿ 購入ã—ãŸã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯ã€ã‚ãªãŸã®æŒã¡ç‰©ã«ã‚³ãƒ”ーã•ã‚Œã¾ã™ã€‚ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -ã“ã®å–引ã¯ä»¥ä¸‹ã®ã¨ãŠã‚Šè¡Œã‚ã‚Œã¾ã™ï¼š + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ConfirmPurchase"> + ã“ã®å–引ã¯ä»¥ä¸‹ã®ã¨ãŠã‚Šè¡Œã‚ã‚Œã¾ã™ï¼š [ACTION] ã“ã®è³¼å…¥ã‚’続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="å–り消ã—" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -ã“ã®å–引ã¯ä»¥ä¸‹ã®ã¨ãŠã‚Šè¡Œã‚ã‚Œã¾ã™ï¼š + <usetemplate name="okcancelbuttons" notext="å–り消ã—" yestext="OK"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + ã“ã®å–引ã¯ä»¥ä¸‹ã®ã¨ãŠã‚Šè¡Œã‚ã‚Œã¾ã™ï¼š [ACTION] ã“ã®è³¼å…¥ã‚’続行ã—ã¾ã™ã‹ï¼Ÿ パスワードをå†å…¥åŠ›ã—ã€ã€ŒOKã€ã‚’クリックã—ã¦ãã ã•ã„。 - <form name="form"> - <input - name="message" - type="password"/> - <button - - - name="ConfirmPurchase" - text="OK"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -メモ: -本ピックã®ãƒã‚±ãƒ¼ã‚·ãƒ§ãƒ³ã‚’æ›´æ–°ã—ã¾ã—ãŸãŒ -ã€ä»–ã®è©³ç´°ã¯å…ƒã®å€¤ã®ã¾ã¾ã«ãªã‚Šã¾ã™ã€‚ - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -「コピーç¦æ¢ã€ã®æŒã¡ç‰©ã‚¢ã‚¤ãƒ†ãƒ ãŒé¸æŠžã•ã‚Œã¾ã—ãŸã€‚ -ã“れらã®~アイテムã¯ã‚³ãƒ”ーã•ã‚Œãªã„ã¾ã¾ã€ã‚ãªãŸã®æŒã¡ç‰©ã«ç§»å‹•ã•ã‚Œã¾ã™ã€‚ + <form name="form"> + <input name="message" type="password"/> + <button name="ConfirmPurchase" text="OK"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="SetPickLocation"> + メモ: +本ピックã®ãƒã‚±ãƒ¼ã‚·ãƒ§ãƒ³ã‚’æ›´æ–°ã—ã¾ã—ãŸãŒã€ +ä»–ã®è©³ç´°ã¯å…ƒã®å€¤ã®ã¾ã¾ã«ãªã‚Šã¾ã™ã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + 「コピーç¦æ¢ã€ã®æŒã¡ç‰©ã‚¢ã‚¤ãƒ†ãƒ ãŒé¸æŠžã•ã‚Œã¾ã—ãŸã€‚ +ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã¯ã‚³ãƒ”ーã•ã‚Œãªã„ã¾ã¾ã€ã‚ãªãŸã®æŒã¡ç‰©ã«ç§»å‹•ã•ã‚Œã¾ã™ã€‚ アイテムを動ã‹ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="コピーç¦æ¢ã®æŒã¡ç‰©ã‚’オブジェクトã‹ã‚‰ç§»å‹•ã•ã›ã‚‹ã¨ã" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -「コピーç¦æ¢ã€ã®æŒã¡ç‰©ã‚¢ã‚¤ãƒ†ãƒ ãŒé¸æŠžã•ã‚Œã¾ã—ãŸã€‚ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ 㯠-コピーã•ã‚Œã‚‹ã®ã§ã¯ãªãã€ã‚ãªãŸã®æŒã¡ç‰©ã«ç§»å‹•ã•ã‚Œã¾ã™ã€‚ + <usetemplate ignoretext="コピーç¦æ¢ã®æŒã¡ç‰©ã‚’オブジェクトã‹ã‚‰ç§»å‹•ã•ã›ã‚‹ã¨ã" name="okcancelignore" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromScriptedObject"> + 「コピーç¦æ¢ã€ã®æŒã¡ç‰©ã‚¢ã‚¤ãƒ†ãƒ ãŒé¸æŠžã•ã‚Œã¾ã—ãŸã€‚ +ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã¯ã‚³ãƒ”ーã•ã‚Œã‚‹ã®ã§ã¯ãªãã€ã‚ãªãŸã®æŒã¡ç‰©ã«ç§»å‹•ã•ã‚Œã¾ã™ã€‚ ã“ã®ã‚ªãƒ–ジェクトã¯ã‚¹ã‚¯ãƒªãƒ—ト付ããªã®ã§ã€æŒã¡ç‰©ã«ç§»å‹•ã•ã›ã‚‹ã¨ スクリプトã«èª¤å‹•ä½œãŒèµ·ãã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ æŒã¡ç‰©ã‚¢ã‚¤ãƒ†ãƒ を移動ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="コピーç¦æ¢ã®æŒã¡ç‰©ã‚’スクリプト付ãオブジェクトã‹ã‚‰ç§»å‹•ã•ã›ã‚‹ã¨ã" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ClickActionNotPayable" - > -è¦å‘Šï¼šã€Œã‚¯ãƒªãƒƒã‚¯ã§ã‚ªãƒ–ジェクトã«æ”¯æ‰•ã„ã€ã®è¨å®šãŒã•ã‚Œã¾ã—ãŸã€‚ + <usetemplate ignoretext="コピーç¦æ¢ã®æŒã¡ç‰©ã‚’スクリプト付ãオブジェクトã‹ã‚‰ç§»å‹•ã•ã›ã‚‹ã¨ã" name="okcancelignore" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ClickActionNotPayable"> + è¦å‘Šï¼šã€Œã‚¯ãƒªãƒƒã‚¯ã§ã‚ªãƒ–ジェクトã«æ”¯æ‰•ã„ã€ã®è¨å®šãŒã•ã‚Œã¾ã—ãŸã€‚ ãŸã ã—ã€ã“ã‚Œã¯ã‚¹ã‚¯ãƒªãƒ—トãŒé‡‘éŠmoney() イベントã«è¿½åŠ ã•ã‚ŒãŸå ´åˆã«ã®ã¿ä½œå‹•ã—ã¾ã™ã€‚ - <form name="form"> - <ignore name="ignore" - text="money()イベントãªã—ã«ã€Œã‚ªãƒ–ジェクトã«æ”¯æ‰•ã†ã€ã‚’è¨å®šã™ã‚‹ã¨ã"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -ã“ã®ã‚ªãƒ–ジェクトã«ã‚ãªãŸãŒã‚³ãƒ”ーã—ã¦ã‚ˆã„アイテムã¯ã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="WebLaunchAccountHistory" - > -SecondLifeウェブ・ページを開ã„ã¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆå±¥æ´ã‚’確èªã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="アカウント履æ´ã®ã‚¦ã‚§ãƒ–・ページをãƒãƒ¼ãƒ‰ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="å–り消ã—" - yestext="ページã«ç§»å‹•"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -Second Life ã®ã‚µãƒãƒ¼ãƒˆã‚¦ã‚§ãƒ–サイトを利用ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="Second Life ã®ã‚µãƒãƒ¼ãƒˆã‚¦ã‚§ãƒ–サイトを閲覧ã™ã‚‹ã«ã‚ãŸã£ã¦ã€‚" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="è¡Œã"/> - </notification> - - <notification - - name="ConfirmQuit" - > -終了ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="Second Life ã®çµ‚了ã«ã‚ãŸã£ã¦ã€‚" - name="okcancelignore" - notext="継続" - yestext="終了"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -利用è¦ç´„é•åã¨ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ãƒ¼ã‚¹ã‚¿ãƒ³ãƒ€ãƒ¼ãƒ‰é•åã®å ±å‘Šã«ã“ã®ãƒ„ールをã”使用ãã ã•ã„。 å‚照: + <form name="form"> + <ignore name="ignore" text="money()イベントãªã—ã«ã€Œã‚ªãƒ–ジェクトã«æ”¯æ‰•ã†ã€ã‚’è¨å®šã™ã‚‹ã¨ã"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + ã“ã®ã‚ªãƒ–ジェクトã«ã¯ã€ã‚ãªãŸãŒã‚³ãƒ”ーã§ãるアイテムã¯ã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="WebLaunchAccountHistory"> + Second Life ウェブ・ページを開ã„㦠+アカウント履æ´ã‚’確èªã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="アカウント履æ´ã®ã‚¦ã‚§ãƒ–・ページをãƒãƒ¼ãƒ‰ã™ã‚‹ã¨ã" name="okcancelignore" notext="å–り消ã—" yestext="ページã«ç§»å‹•"/> + </notification> + <notification name="ClickOpenF1Help"> + Second Life ã®ã‚µãƒãƒ¼ãƒˆã‚¦ã‚§ãƒ–サイトを利用ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="Second Life ã®ã‚µãƒãƒ¼ãƒˆã‚¦ã‚§ãƒ–サイトを閲覧ã™ã‚‹ã«ã‚ãŸã£ã¦ã€‚" name="okcancelignore" notext="ã‚ャンセル" yestext="è¡Œã"/> + </notification> + <notification name="ConfirmQuit"> + 終了ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="Second Life ã®çµ‚了ã«ã‚ãŸã£ã¦ã€‚" name="okcancelignore" notext="継続" yestext="終了"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + 利用è¦ç´„é•åã¨ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ãƒ¼ã‚¹ã‚¿ãƒ³ãƒ€ãƒ¼ãƒ‰é•åã®å ±å‘Šã«ã“ã®ãƒ„ールをã”使用ãã ã•ã„。 å‚照: http://secondlife.com/corporate/tos.php http://secondlife.com/corporate/cs.php 利用è¦ç´„é•åã¨ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ãƒ¼ã‚¹ã‚¿ãƒ³ãƒ€ãƒ¼ãƒ‰é•åã«é–¢ã™ã‚‹å…¨ã¦ã®ãƒ¬ãƒãƒ¼ãƒˆã¯ã€èª¿æŸ»ã•ã‚Œã€è§£æ±ºã•ã‚Œã¾ã™ã€‚ -以下ã®ãƒªãƒ³ã‚¯å…ˆã®Incident Reportã«ã¦ãã®ç¢ºèªã‚’ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ +以下ã®ãƒªãƒ³ã‚¯å…ˆã®è¢«å®³å ±å‘Šã«ã¦ãã®ç¢ºèªã‚’ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -é‡è¦ï¼š ã“ã®ãƒ¬ãƒãƒ¼ãƒˆã¯Linden Lab社ã§ã¯ãªãã€\ã‚ãªãŸãŒç¾åœ¨ã„る地域ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«é€ã‚‰ã‚Œã¾ã™ã€‚ + </notification> + <notification name="HelpReportAbuseEmailEO"> + é‡è¦ï¼š ã“ã®ãƒ¬ãƒãƒ¼ãƒˆã¯Linden Lab 社ã§ã¯ãªã〠+ã‚ãªãŸãŒç¾åœ¨ã„る地域ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«é€ã‚‰ã‚Œã¾ã™ã€‚ - -ã‚ãªãŸãŒä»Šã„る地域ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€ä½äººã¨è¨ªå•è€…ã¸ã®\サービスã®ä¸€ç’°ã¨ã—ã¦ã€ã“ã®åœ°åŸŸã‹ã‚‰ã®ãƒ¬ãƒãƒ¼ãƒˆã‚’ã™ã¹ã¦\å—ã‘付ã‘ã€è§£æ±ºã™ã‚‹ã“ã¨ã«åŒæ„ã—ã¦ã„ã¾ã™ã€‚ Linden Lab社ãŒ\ã‚ãªãŸãŒã“ã“ã‹ã‚‰æ出ã™ã‚‹ãƒ¬ãƒãƒ¼ãƒˆã‚’調査ã™ã‚‹ã“ã¨ã¯ã‚ã‚Šã¾ã›ã‚“。 -地域ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€ä¸å‹•ç”£ç´„款ã§æŒ‡å®šã—ã¦ã„ã‚‹\地元ã®è¦å‰‡ã‚’基ã«ã€å ±å‘Šã•ã‚ŒãŸå•é¡Œã‚’解決ã—ã¾ã™ã€‚ -(「世界ã€ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‹ã‚‰ã€ŒåœŸåœ°æƒ…å ±ã€ã‚’é¸ã¶ã¨ã€ç´„款を\閲覧ã§ãã¾ã™ã€‚) +ã‚ãªãŸãŒä»Šã„る地域ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€ +ä½äººã¨è¨ªå•è€…ã¸ã®ã‚µãƒ¼ãƒ“スã®ä¸€ç’°ã¨ã—ã¦ã€ã“ã®åœ°åŸŸã‹ã‚‰ã®ãƒ¬ãƒãƒ¼ãƒˆã‚’ã™ã¹ã¦å—ã‘付ã‘ã€è§£æ±ºã™ã‚‹ã“ã¨ã«åŒæ„ã—ã¦ã„ã¾ã™ã€‚ +よã£ã¦Linden Lab 社ãŒã€ +ã‚ãªãŸãŒã“ã“ã‹ã‚‰æ出ã™ã‚‹ãƒ¬ãƒãƒ¼ãƒˆã‚’調査ã™ã‚‹ã“ã¨ã¯ã‚ã‚Šã¾ã›ã‚“。 +地域ã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã€ä¸å‹•ç”£ç´„款ã§æŒ‡å®šã—ã¦ã„る地元ã®è¦å‰‡ã‚’基ã«ã€å ±å‘Šã•ã‚ŒãŸå•é¡Œã‚’解決ã—ã¾ã™ã€‚ +(「世界ã€ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‹ã‚‰ã€ŒåœŸåœ°æƒ…å ±ã€ã‚’é¸ã¶ã¨ã€ç´„款を閲覧ã§ãã¾ã™ï¼‰ - -ã“ã®ãƒ¬ãƒãƒ¼ãƒˆã«é–¢ã™ã‚‹è§£æ±ºç–ã¯ã€ã“ã®åœ°åŸŸã«ã ã‘当ã¦ã¯ã¾ã‚Šã¾ã™ã€‚\ä½äººãŒã‚»ã‚«ãƒ³ãƒ‰ãƒ©ã‚¤ãƒ•ã®ä»–ã®åœ°åŸŸã¸ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹éš›ã€\ã“ã®ãƒ¬ãƒãƒ¼ãƒˆã®çµæžœã«å½±éŸ¿ã•ã‚Œã‚‹ã“ã¨ã¯ã‚ã‚Šã¾ã›ã‚“。 Linden Lab社ã ã‘ãŒ\セカンドライフ全域ã«ãŠã‘るアクセス制é™æ¨©ã‚’æŒã£ã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportBug" - > -ã“ã®ãƒ„ールã¯ã€èª¬æ˜Žã©ãŠã‚Šã«å‹•ä½œã—ãªã„ãªã©ã®ãƒ†ã‚¯ãƒ‹ã‚«ãƒ«ãªãƒ•ã‚£ãƒ¼ãƒãƒ£ãƒ¼ã®ãƒ¬ãƒãƒ¼ãƒˆã®ã¿ã« -使用ã—ã¦ãã ã•ã„。ã§ãã‚‹ã ã‘詳ã—ã„æƒ…å ±ã‚’æä¾›ã—ã¦ãã ã•ã„。 -自動返ç”メールã«ã€ã‚ˆã‚Šè©³ã—ã„æƒ…å ±ã‚’ä»˜ã‘åŠ ãˆã¦è¿”ä¿¡ã™ã‚‹ã“ã¨ã‚‚ -ã§ãã¾ã™ã€‚ +ã“ã®ãƒ¬ãƒãƒ¼ãƒˆã«é–¢ã™ã‚‹è§£æ±ºç–ã¯ã€ã“ã®åœ°åŸŸã«ã ã‘当ã¦ã¯ã¾ã‚Šã¾ã™ã€‚ +ä½äººãŒSecond Life ã®ä»–ã®åœ°åŸŸã¸ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹éš›ã€ +ã“ã®ãƒ¬ãƒãƒ¼ãƒˆã®çµæžœã«å½±éŸ¿ã•ã‚Œã‚‹ã“ã¨ã¯ã‚ã‚Šã¾ã›ã‚“。 +Linden Lab 社ã ã‘ãŒSecond Life 全域ã«ãŠã‘ã‚‹ +アクセス制é™æ¨©ã‚’æŒã£ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="HelpReportBug"> + ã“ã®ãƒ„ールã¯ã€èª¬æ˜Žã©ãŠã‚Šã«å‹•ä½œã—ãªã„ãªã©ã®ãƒ†ã‚¯ãƒ‹ã‚«ãƒ«ãªãƒ•ã‚£ãƒ¼ãƒãƒ£ãƒ¼ã®ãƒ¬ãƒãƒ¼ãƒˆã®ã¿ã«ä½¿ç”¨ã—ã¦ãã ã•ã„。 +ã§ãã‚‹ã ã‘詳ã—ã„æƒ…å ±ã‚’æä¾›ã—ã¦ãã ã•ã„。 +自動返ç”メールã«ã€ã‚ˆã‚Šè©³ã—ã„æƒ…å ±ã‚’ä»˜ã‘åŠ ãˆã¦è¿”ä¿¡ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ ãƒã‚°ãƒ¬ãƒãƒ¼ãƒˆã¯å…¨ã¦èª¿æŸ»ã•ã‚Œè§£æ±ºã•ã‚Œã¾ã™ã€‚ã“ã‚Œã«ã‚ˆã£ã¦Eメールã§è¿”ç”ãŒé€ã‚‰ã‚Œã¦ãã‚‹ã“ã¨ã¯ã‚ã‚Šã¾ã›ã‚“。 - -テクニカルãªå•é¡ŒãŒç”Ÿã˜ãŸå ´åˆã¯ã€æ¬¡ã®ã‚µãƒãƒ¼ãƒˆã«é€£çµ¡ã—ã¦ãã ã•ã„: +テクニカルãªå•é¡ŒãŒç”Ÿã˜ãŸå ´åˆã¯ã€ +次ã®ã‚µãƒãƒ¼ãƒˆã«é€£çµ¡ã—ã¦ãã ã•ã„: http://secondlife.com/community/support.php - 注æ„:未完æˆã®å ±å‘Šã¯èª¿æŸ»ã•ã‚Œã¾ã›ã‚“。 - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -å«ŒãŒã‚‰ã›å ±å‘Šã®ã‚«ãƒ†ã‚´ãƒªã‚’é¸æŠžã—ã¦ãã ã•ã„。 + </notification> + <notification name="HelpReportAbuseSelectCategory"> + å«ŒãŒã‚‰ã›å ±å‘Šã®ã‚«ãƒ†ã‚´ãƒªã‚’é¸æŠžã—ã¦ãã ã•ã„。 カテゴリをé¸æŠžã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šã€å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -ãƒã‚°ã®ã‚«ãƒ†ã‚´ãƒªã‚’é¸æŠžã—ã¦ãã ã•ã„。 + </notification> + <notification name="HelpReportBugSelectCategory"> + ãƒã‚°ã®ã‚«ãƒ†ã‚´ãƒªã‚’é¸æŠžã—ã¦ãã ã•ã„。 カテゴリをé¸æŠžã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šã€ãƒã‚°å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -å«ŒãŒã‚‰ã›è¡Œç‚ºã‚’ã—ãŸäººã®åå‰ã‚’入力ã—ã¦ãã ã•ã„。 -æ£ç¢ºãªæƒ…å ±ã®å…¥åŠ›ã¯ã€å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -å«ŒãŒã‚‰ã›ãŒã‚ã£ãŸå ´æ‰€ã‚’入力ã—ã¦ãã ã•ã„。 -æ£ç¢ºãªæƒ…å ±ã®å…¥åŠ›ã¯ã€å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -å«ŒãŒã‚‰ã›ã®æ¦‚è¦ã‚’入力ã—ã¦ãã ã•ã„。 -æ£ç¢ºãªæ¦‚è¦ã®å…¥åŠ›ã¯ã€å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -ãƒã‚°ã®æ¦‚è¦ã‚’入力ã—ã¦ãã ã•ã„。 -æ£ç¢ºãªæ¦‚è¦ã®å…¥åŠ›ã¯ã€ãƒã‚°å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -å«ŒãŒã‚‰ã›ã®è©³ç´°ãªèª¬æ˜Žã‚’入力ã—ã¦ãã ã•ã„。 + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + å«ŒãŒã‚‰ã›è¡Œç‚ºã‚’ã—ãŸäººã®åå‰ã‚’入力ã—ã¦ãã ã•ã„。 +æ£ç¢ºãªæƒ…å ±ã®å…¥åŠ›ã«ã‚ˆã‚Šã€å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + å«ŒãŒã‚‰ã›ãŒã‚ã£ãŸå ´æ‰€ã‚’入力ã—ã¦ãã ã•ã„。 +æ£ç¢ºãªæƒ…å ±ã®å…¥åŠ›ã«ã‚ˆã‚Šã€å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + å«ŒãŒã‚‰ã›ã®æ¦‚è¦ã‚’入力ã—ã¦ãã ã•ã„。 +æ£ç¢ºãªæ¦‚è¦ã®å…¥åŠ›ã«ã‚ˆã‚Šã€ +å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ + </notification> + <notification name="HelpReportBugSummaryEmpty"> + ãƒã‚°ã®æ¦‚è¦ã‚’入力ã—ã¦ãã ã•ã„。 +æ£ç¢ºãªæ¦‚è¦ã®å…¥åŠ›ã«ã‚ˆã‚Šã€ãƒã‚°å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + å«ŒãŒã‚‰ã›ã®è©³ç´°ãªèª¬æ˜Žã‚’入力ã—ã¦ãã ã•ã„。 åå‰ã‚„å«ŒãŒã‚‰ã›ã®è©³ç´°ã‚’ã€ã§ãã‚‹ã ã‘具体的ã«å…¥åŠ›ã—ã¦ãã ã•ã„。 -æ£ç¢ºãªèª¬æ˜Žã®å…¥åŠ›ã¯ã€å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -ãƒã‚°ã®è©³ç´°ãªèª¬æ˜Žã‚’入力ã—ã¦ãã ã•ã„。 +æ£ç¢ºãªèª¬æ˜Žã®å…¥åŠ›ã«ã‚ˆã‚Šã€ +å«ŒãŒã‚‰ã›å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ + </notification> + <notification name="HelpReportBugDetailsEmpty"> + ãƒã‚°ã®è©³ç´°ãªèª¬æ˜Žã‚’入力ã—ã¦ãã ã•ã„。 ãƒã‚°ãŒã©ã®ã‚ˆã†ãªæ¡ä»¶ã§å†ç¾ã™ã‚‹ã‹ãªã©ã‚’ã€ã§ãã‚‹ã ã‘具体的ã«å…¥åŠ›ã—ã¦ãã ã•ã„。 -æ£ç¢ºãªèª¬æ˜Žã®å…¥åŠ›ã¯ã€ãƒã‚°å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Dear Resident, +æ£ç¢ºãªèª¬æ˜Žã®å…¥åŠ›ã«ã‚ˆã‚Šã€ãƒã‚°å ±å‘Šã®å‡¦ç†ã‚„ä¿ç®¡ã«å¤§å¤‰å½¹ç«‹ã¡ã¾ã™ã€‚ + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + ä½äººã®çš†æ§˜ã¸ã€ 知的財産ã®ä¾µå®³ã«é–¢ã™ã‚‹å ±å‘Šã‚’è¡Œã†éš›ã«ã¯ã€ä»¥ä¸‹ã®ç‚¹ã«æ³¨æ„ã—ã¦ãã ã•ã„。 -(1) å«ŒãŒã‚‰ã›ã®å ±å‘Šã®ãƒ—ãƒã‚»ã‚¹ã€‚Second Lifeã®æ¨©é™ã‚·ã‚¹ãƒ†ãƒ を悪用ã—ã¦ã„ã‚‹ä½äººã‚’見ã¤ã‘ãŸã‚‰ã€å«ŒãŒã‚‰ã›ã®å ±å‘Šã‚’è¡Œã£ã¦ãã ã•ã„。 +(1) å«ŒãŒã‚‰ã›ã®å ±å‘Šã®ãƒ—ãƒã‚»ã‚¹ +Second Life ã®æ¨©é™ã‚·ã‚¹ãƒ†ãƒ を悪用ã—ã¦ã„ã‚‹ä½äººã‚’見ã¤ã‘ãŸã‚‰ã€ +å«ŒãŒã‚‰ã›ã®å ±å‘Šã‚’è¡Œã£ã¦ãã ã•ã„。 例ãˆã°ã‚³ãƒ”ーBotã®ä½¿ç”¨ã€ãã‚Œã«ä¼¼ãŸãƒ„ールã®ä½¿ç”¨ã«ã‚ˆã‚‹çŸ¥çš„財産権ã®ä¾µå®³ãŒã‚ã‚Šã¾ã™ã€‚ -アビューズãƒãƒ¼ãƒ ã¯èª¿æŸ»ã«åŸºã¥ãSecond Lifeã®ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ãƒ¼ã‚¹ã‚¿ãƒ³ãƒ€ãƒ¼ãƒ‰ã‚„利用è¦ç´„ã«é•åã™ã‚‹è¡Œç‚ºã¨åˆ¤æ–ã•ã‚ŒãŸå ´åˆã«ã¯é©åˆ‡ãªå‡¦ç½®ã‚’è¡Œã£ã¦ã„ã¾ã™ã€‚ -ãŸã ã—ã€ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã‚’Second Lifeã‹ã‚‰æ’¤åŽ»ã—ã¦ã»ã—ã„ã€ã¨ã„ã£ãŸè¦æœ›ã«ã¯ã‚¢ãƒ“ューズãƒãƒ¼ãƒ ã¯å¿œãˆã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 - -(2) DMCA(デジタルミレニアム著作権法)åŠã³ã‚³ãƒ³ãƒ†ãƒ³ãƒ„撤去プãƒã‚»ã‚¹ã€‚ Second Lifeã‹ã‚‰ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã®æ’¤åŽ»ã‚’リクエストã™ã‚‹ã«ã¯ã€è‘—作権侵害通知ã®æ出を行ã†å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +アビューズãƒãƒ¼ãƒ ã¯èª¿æŸ»ã«åŸºã¥ã〠+Second Life ã®ã‚³ãƒŸãƒ¥ãƒ‹ãƒ†ã‚£ãƒ¼ã‚¹ã‚¿ãƒ³ãƒ€ãƒ¼ãƒ‰ã‚„ +利用è¦ç´„ã«é•åã™ã‚‹è¡Œç‚ºã¨åˆ¤æ–ã•ã‚ŒãŸå ´åˆã«ã¯é©åˆ‡ãªå‡¦ç½®ã‚’è¡Œã£ã¦ã„ã¾ã™ã€‚ +ãŸã ã—ã€ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã‚’Second Life ã‹ã‚‰æ’¤åŽ»ã—ã¦ã»ã—ã„〠+ã¨ã„ã£ãŸè¦æœ›ã«ã¯ã‚¢ãƒ“ューズãƒãƒ¼ãƒ ã¯å¿œãˆã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + +(2) DMCA(デジタルミレニアム著作権法)åŠã³ã‚³ãƒ³ãƒ†ãƒ³ãƒ„撤去プãƒã‚»ã‚¹ +Second Life ã‹ã‚‰ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã®æ’¤åŽ»ã‚’リクエストã™ã‚‹ã«ã¯ã€ +著作権侵害通知ã®æ出を行ã†å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ å‚照: http://secondlife.com/corporate/dmca.php -ã“ã®ä»¶ã«é–¢ã™ã‚‹å«ŒãŒã‚‰ã›ã®å ±å‘Šã‚’続ã‘ã‚‹éš›ã¯ã€ã“ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã¦ãã ã•ã„。é¸æŠžã™ã¹ãカテゴリã¯ã€ŒçŸ¥çš„財産ã®ä¾µå®³ï¼žã‚³ãƒ”ーBotåŠã³æ¨©é™ã®æ‚ªç”¨ã€ãŒé©ã—ã¦ã„ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ã®ã§ã”確èªãã ã•ã„。 +ã“ã®ä»¶ã«é–¢ã™ã‚‹å«ŒãŒã‚‰ã›ã®å ±å‘Šã‚’続ã‘ã‚‹éš›ã¯ã€ã“ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã¦ãã ã•ã„。é¸æŠžã™ã¹ãカテゴリã¯ã€ŒçŸ¥çš„財産ã®ä¾µå®³ï¼žã‚³ãƒ”ーBotåŠã³æ¨©é™ã®æ‚ªç”¨ã€ã®ã»ã†ãŒé©ã—ã¦ã„ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ã®ã§ã”確èªãã ã•ã„。 -Thank you, +よã‚ã—ããŠé¡˜ã„ã—ã¾ã™ã€‚ Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -以下ã®å¿…è¦ãªã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆãŒã€[FLOATER]ã‹ã‚‰æŠœã‘è½ã¡ã¦ã„ã¾ã™ + </notification> + <notification name="FailedRequirementsCheck"> + 以下ã®å¿…è¦ãªã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆãŒã€[FLOATER]ã‹ã‚‰æŠœã‘è½ã¡ã¦ã„ã¾ã™ [COMPONENTS] - </notification> - - <notification - - label="æ—¢å˜ã®ä»˜å±žå“ã‚’ç½®æ›" - name="ReplaceAttachment" - > -体ã®ã“ã®éƒ¨ä½ã«ã¯ã‚ªãƒ–ジェクトãŒè£…ç€ã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification label="æ—¢å˜ã®ä»˜å±žå“ã‚’ç½®æ›" name="ReplaceAttachment"> + 体ã®ã“ã®éƒ¨ä½ã«ã¯ã‚ªãƒ–ジェクトãŒè£…ç€ã•ã‚Œã¦ã„ã¾ã™ã€‚ é¸æŠžã•ã‚ŒãŸã‚ªãƒ–ジェクトã¨ç½®ãæ›ãˆã¾ã™ã‹ï¼Ÿ - <form name="form"> - <ignore name="ignore" - save_option="true" - text="ç¾åœ¨ã€è£…ç€ã—ã¦ã„ã‚‹ã‚‚ã®ã‚’ç½®æ›ã™ã‚‹ã¨ã"/> - <button - - ignore="Replace Automatically" - - name="Yes" - text="OK"/> - <button - ignore="Never Replace" - - name="No" - text="ã‚ャンセル"/> - </form> - </notification> - - <notification - - label="å–ã‚Šè¾¼ã¿ä¸ã®è¦å‘Š" - name="BusyModePay" - > -ç¾åœ¨ã€å–ã‚Šè¾¼ã¿ä¸ã®ãŸã‚ã€ã“ã®æ”¯æ‰•ã„㨠+ <form name="form"> + <ignore name="ignore" save_option="true" text="ç¾åœ¨ã€è£…ç€ã—ã¦ã„ã‚‹ã‚‚ã®ã‚’ç½®æ›ã™ã‚‹ã¨ã"/> + <button ignore="自動的ã«äº¤æ›" name="Yes" text="OK"/> + <button ignore="交æ›ã—ãªã„" name="No" text="ã‚ャンセル"/> + </form> + </notification> + <notification label="å–ã‚Šè¾¼ã¿ä¸ã®è¦å‘Š" name="BusyModePay"> + ç¾åœ¨ã€å–ã‚Šè¾¼ã¿ä¸ã®ãŸã‚ã€ã“ã®æ”¯æ‰•ã„㨠引ãæ›ãˆã®ã‚¢ã‚¤ãƒ†ãƒ ã‚’å—ã‘å–ã‚‹ã“ã¨ãŒ ã§ãã¾ã›ã‚“。 ã“ã®å–引を完了ã™ã‚‹å‰ã«ã€å–ã‚Šè¾¼ã¿ä¸ã®è¨å®šã‚’解除ã—ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <ignore name="ignore" - save_option="true" - text="å–ã‚Šè¾¼ã¿ä¸ã®äººã¾ãŸã¯ã‚ªãƒ–ジェクトã«æ”¯æ‰•ã†ã¨ã"/> - <button - - ignore="Always leave Busy Mode" - - name="Yes" - text="OK"/> - <button - ignore="Never leave Busy Mode" - - name="No" - text="ã‚ャンセル"/> - </form> - </notification> - - <notification - - name="ConfirmEmptyTrash" - > -ゴミ箱フォルダã®ä¸èº«ã‚’完全ã«å‰Šé™¤ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="æŒã¡ç‰©å†…ã®ã€Œã”ã¿ç®±ã€ãƒ•ã‚©ãƒ«ãƒ€ã‚’空ã«ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="ã‚ャンセル" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmClearBrowserCache" - > -本当ã«ãƒ–ラウザã®ã‚ャッシュをクリアã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -本当ã«ã‚¯ãƒƒã‚ーをクリアã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -ä¿å˜ã•ã‚ŒãŸ URL ã®ãƒªã‚¹ãƒˆã‚’消去ã—ã¾ã™ã€‚よã‚ã—ã„ã§ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã‚ャンセル" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="ConfirmEmptyLostAndFound" - > -éºå¤±ç‰©ãƒ•ã‚©ãƒ«ãƒ€ã®ä¸èº«ã‚’完全ã«å‰Šé™¤ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="æŒã¡ç‰©å†…ã®ã€Œéºå¤±ç‰©ã€ãƒ•ã‚©ãƒ«ãƒ€ã‚’空ã«ã™ã‚‹ã¨ã" - name="okcancelignore" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="CopySLURL" - > -以下ã®SLURLãŒã‚¯ãƒªãƒƒãƒ—ボードã«ã‚³ãƒ”ーã•ã‚Œã¾ã—ãŸã€‚ + <form name="form"> + <ignore name="ignore" save_option="true" text="å–ã‚Šè¾¼ã¿ä¸ã®äººã¾ãŸã¯ã‚ªãƒ–ジェクトã«æ”¯æ‰•ã†ã¨ã"/> + <button ignore="常ã«å–ã‚Šè¾¼ã¿ä¸ã®è¨å®š" name="Yes" text="OK"/> + <button ignore="å–ã‚Šè¾¼ã¿ä¸ã®è¨å®šã«ã—ãªã„" name="No" text="ã‚ャンセル"/> + </form> + </notification> + <notification name="ConfirmEmptyTrash"> + ゴミ箱フォルダã®ä¸èº«ã‚’完全ã«å‰Šé™¤ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="æŒã¡ç‰©å†…ã®ã€Œã”ã¿ç®±ã€ãƒ•ã‚©ãƒ«ãƒ€ã‚’空ã«ã™ã‚‹ã¨ã" name="okcancelignore" notext="ã‚ャンセル" yestext="OK"/> + </notification> + <notification name="ConfirmClearBrowserCache"> + 本当ã«ãƒ–ラウザã®ã‚ャッシュをクリアã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="ã¯ã„"/> + </notification> + <notification name="ConfirmClearCookies"> + 本当ã«ã‚¯ãƒƒã‚ーをクリアã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="ã¯ã„"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + ä¿å˜ã•ã‚ŒãŸ URL ã®ãƒªã‚¹ãƒˆã‚’消去ã—ã¾ã™ã€‚よã‚ã—ã„ã§ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã‚ャンセル" yestext="ã¯ã„"/> + </notification> + <notification name="ConfirmEmptyLostAndFound"> + éºå¤±ç‰©ãƒ•ã‚©ãƒ«ãƒ€ã®ä¸èº«ã‚’完全ã«å‰Šé™¤ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚æ“作を続行ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="æŒã¡ç‰©å†…ã®ã€Œéºå¤±ç‰©ã€ãƒ•ã‚©ãƒ«ãƒ€ã‚’空ã«ã™ã‚‹ã¨ã" name="okcancelignore" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="CopySLURL"> + 以下ã®SLURLãŒã‚¯ãƒªãƒƒãƒ—ボードã«ã‚³ãƒ”ーã•ã‚Œã¾ã—ãŸã€‚ [SLURL] ä»–ã®äººãŒã‚¢ã‚¯ã‚»ã‚¹ã—ã‚„ã™ã„よã†ã«ã‚¦ã‚§ãƒ–・ページã«è¼‰ã›ãŸã‚Šã€ ブラウザã®ã‚¢ãƒ‰ãƒ¬ã‚¹ãƒ»ãƒãƒ¼ã«è²¼ã‚Šä»˜ã‘ã¦ã€è‡ªåˆ†ã§ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã¿ã¾ã—ょã†ã€‚ - <form name="form"> - <ignore name="ignore" text="SLURLをクリップボードã«ã‚³ãƒ”ーã™ã‚‹ã¨ã"/> - </form> - </notification> - - <notification - - name="GraphicsPreferencesHelp" - > -ã“ã®ãƒ‘ãƒãƒ«ã§ã¯ã€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚µã‚¤ã‚ºã¨è§£åƒåº¦ã€ãŠã‚ˆã³ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã®å“質をè¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚「環境è¨å®šã€ï¼žã€Œè¡¨ç¤ºã€ã®ã‚¤ãƒ³ã‚¿ãƒ•ã‚§ãƒ¼ã‚¹ã§ã¯ã€ä½Žã€ä¸ã€é«˜ã€è¶…高ã®4ã¤ã®ä¸ã‹ã‚‰ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ãƒ¬ãƒ™ãƒ«ã‚’é¸æŠžã§ãã¾ã™ã€‚ã¾ãŸã€ã€Œã‚«ã‚¹ã‚¿ãƒ ã€ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã‚’クリックã—ã€ä»¥ä¸‹ã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã‚¹ã®è¨å®šã‚’カスタマイズã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ + <form name="form"> + <ignore name="ignore" text="SLURLをクリップボードã«ã‚³ãƒ”ーã™ã‚‹ã¨ã"/> + </form> + </notification> + <notification name="GraphicsPreferencesHelp"> + ã“ã®ãƒ‘ãƒãƒ«ã§ã¯ã€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚µã‚¤ã‚ºã¨è§£åƒåº¦ã€ãŠã‚ˆã³ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã®å“質をè¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚「環境è¨å®šã€ï¼žã€Œè¡¨ç¤ºã€ã®ã‚¤ãƒ³ã‚¿ãƒ•ã‚§ãƒ¼ã‚¹ã§ã¯ã€ä½Žã€ä¸ã€é«˜ã€è¶…高ã®4ã¤ã®ä¸ã‹ã‚‰ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ãƒ¬ãƒ™ãƒ«ã‚’é¸æŠžã§ãã¾ã™ã€‚ã¾ãŸã€ã€Œã‚«ã‚¹ã‚¿ãƒ ã€ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã‚’クリックã—ã€ä»¥ä¸‹ã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã‚¹ã®è¨å®šã‚’カスタマイズã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ シェーダー:ピクセル・シェーダーã®ã•ã¾ã–ã¾ãªç¨®é¡žã‚’有効ã¾ãŸã¯ç„¡åŠ¹ã«ã—ã¾ã™ã€‚ @@ -4174,74 +2328,33 @@ Linden Lab ライティング詳細:レンダリングã™ã‚‹å…‰æºã®ç¨®é¡žã‚’é¸æŠžã—ã¾ã™ã€‚ 地形詳細: 地形テクスãƒãƒ£ã®ç´°éƒ¨è¡¨ç¾ã‚’è¨å®šã—ã¾ã™ã€‚ - </notification> - - <notification - - name="WLSavePresetAlert" - > -ä¿å˜ã•ã‚ŒãŸäº‹å‰è¨å®šã‚’上書ãã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="WLDeletePresetAlert" - > -[SKY] を削除ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="WLNoEditDefault" - > -デフォルトã®è¨å®šã‚’編集ã—ãŸã‚Šå‰Šé™¤ã—ãŸã‚Šã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="WLMissingSky" - > -ã“ã®ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ¬¡ã®å˜åœ¨ã—ãªã„「空ã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚’å‚ç…§ã—ã¦ã„ã¾ã™ï¼š [SKY]。 - </notification> - - <notification - - name="PPSaveEffectAlert" - > -ãƒã‚¹ãƒˆãƒ—ãƒã‚»ã‚¹åŠ¹æžœãŒå˜åœ¨ã—ã¾ã™ã€‚ 上書ãã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - name="okcancelbuttons" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="HelpEditSky" - > -ウィンドライトã®å„種スライダーを編集ã—ã¦ç©ºã‚’作æˆãŠã‚ˆã³ä¿å˜ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpEditDayCycle" - > -1 日を通ã—ã¦å¤‰åŒ–ã™ã‚‹ç©ºã®æ§˜åã‚’è¨å®šã—ã¾ã™ã€‚ - </notification> - - <notification - - name="EnvSettingsHelpButton" - > -次ã®å„è¨å®šã¯ã‚³ãƒ³ãƒ”ュータ上ã§ã‚¤ãƒ³ãƒ¯ãƒ¼ãƒ«ãƒ‰ã®ç’°å¢ƒãŒã©ã®ã‚ˆã†ã«è¡¨ç¤ºã•ã‚Œã‚‹ã‹ã‚’調整ã—ã¾ã™ã€‚ è¨å®šã®ã™ã¹ã¦ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ã«ã¯ãŠä½¿ã„ã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ãŒå‘¨å›²ï¼ˆå¤§æ°—)シェーダー (atmospheric shaders) をサãƒãƒ¼ãƒˆã—ã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification name="WLSavePresetAlert"> + ä¿å˜ã•ã‚ŒãŸäº‹å‰è¨å®šã‚’上書ãã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="WLDeletePresetAlert"> + [SKY] を削除ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="WLNoEditDefault"> + デフォルトã®è¨å®šã‚’編集ã—ãŸã‚Šå‰Šé™¤ã—ãŸã‚Šã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="WLMissingSky"> + ã“ã®ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ¬¡ã®å˜åœ¨ã—ãªã„「空ã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚’å‚ç…§ã—ã¦ã„ã¾ã™ï¼š [SKY]。 + </notification> + <notification name="PPSaveEffectAlert"> + ãƒã‚¹ãƒˆãƒ—ãƒã‚»ã‚¹åŠ¹æžœãŒå˜åœ¨ã—ã¾ã™ã€‚ 上書ãã—ã¾ã™ã‹ï¼Ÿ + <usetemplate name="okcancelbuttons" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="HelpEditSky"> + ウィンドライトã®å„種スライダーを編集ã—ã¦ç©ºã‚’作æˆãŠã‚ˆã³ä¿å˜ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpEditDayCycle"> + 1 日を通ã—ã¦å¤‰åŒ–ã™ã‚‹ç©ºã®æ§˜åã‚’è¨å®šã—ã¾ã™ã€‚ + </notification> + <notification name="EnvSettingsHelpButton"> + 次ã®å„è¨å®šã¯ã‚³ãƒ³ãƒ”ュータ上ã§ã‚¤ãƒ³ãƒ¯ãƒ¼ãƒ«ãƒ‰ã®ç’°å¢ƒãŒã©ã®ã‚ˆã†ã«è¡¨ç¤ºã•ã‚Œã‚‹ã‹ã‚’調整ã—ã¾ã™ã€‚ è¨å®šã®ã™ã¹ã¦ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ã«ã¯ãŠä½¿ã„ã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ãŒå‘¨å›²ï¼ˆå¤§æ°—)シェーダー (atmospheric shaders) をサãƒãƒ¼ãƒˆã—ã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ 「時間帯ã€ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã‚’調整ã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šãƒ“ューワã§å®Ÿéš›ã«ä½¿ç”¨ã™ã‚‹æ™‚間帯を変更ã§ãã¾ã™ã€‚ @@ -4256,1692 +2369,932 @@ Linden Lab 「空ã®é«˜åº¦ãªè¨å®šã€ã‚’クリックã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šç©ºã®ã‚ˆã‚Šé«˜åº¦ãªè¨å®šã‚’è¡Œã†ãŸã‚ã®ç·¨é›†ãƒ—ãƒã‚°ãƒ©ãƒ ã‚’èµ·å‹•ã§ãã¾ã™ã€‚ 「水ã®é«˜åº¦ãªè¨å®šã€ã‚’クリックã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šæ°´ã®ã‚ˆã‚Šé«˜åº¦ãªè¨å®šã‚’è¡Œã†ãŸã‚ã®ç·¨é›†ãƒ—ãƒã‚°ãƒ©ãƒ ã‚’èµ·å‹•ã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="HelpDayCycle" - > -「デイ・サイクル編集ã€ã§ã¯ Second Life ã§ã®æ˜¼ã¨å¤œã®ç©ºã®å¤‰åŒ–を制御ã§ãã¾ã™ã€‚ ã“ã‚Œã¯ã€ŒåŸºæœ¬ç’°å¢ƒç·¨é›†ã€ã®ã€Œæ™‚間帯ã€ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã§ä½¿ç”¨ã•ã‚Œã‚‹ã‚µã‚¤ã‚¯ãƒ«ã§ã™ã€‚ - -「デイ・サイクル編集ã€ã¯ã‚ーフレームをè¨å®šã™ã‚‹ã“ã¨ã§æ©Ÿèƒ½ã—ã¾ã™ã€‚ å„ã‚ーフレームã«ã¯ãƒ—リセットã•ã‚ŒãŸç©ºã®è¨å®šãŒé–¢é€£ä»˜ã‘られã¦ã„ã¾ã™ï¼ˆæ™‚間グラフã«ç°è‰²ã®ç¯€ã¨ã—ã¦è¡¨ç¤ºã•ã‚Œã¾ã™ï¼‰ã€‚ ウィンドライト( WindLight )ã¯ã‚ーフレーム間をデータ補間ã—ã€æ™‚é–“ã®çµŒéŽã¨ã¨ã‚‚ã«ç©ºã®è‡ªç„¶ãªã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’作り出ã—ã¾ã™ã€‚ - -時間グラフã®ä¸Šã«è¡¨ç¤ºã•ã‚Œã‚‹é»„色ã®çŸ¢å°ã¯ã€æ™‚刻をもã¨ã«ã—ãŸç¾åœ¨ã®çœºã‚を表ã—ã¦ã„ã¾ã™ã€‚ 黄色ã®çŸ¢å°ã‚’クリック&ドラッグã™ã‚‹ã“ã¨ã§ã€1 æ—¥ã®ç§»ã‚Šå¤‰ã‚りを見るã“ã¨ãŒã§ãã¾ã™ã€‚ 「ã‚ーã®è¿½åŠ ã€ãƒœã‚¿ãƒ³ã¾ãŸã¯ã€Œã‚ーã®å‰Šé™¤ã€ãƒœã‚¿ãƒ³ã‚’押ã—ã¦æ™‚間グラフã®å³å´ã«ã‚ãƒ¼ãƒ•ãƒ¬ãƒ¼ãƒ ã‚’è¿½åŠ ã‚ã‚‹ã„ã¯å‰Šé™¤ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ - -ã‚ーフレームã®æ™‚刻を指定ã™ã‚‹ã«ã¯ã€æ™‚間グラフã«æ²¿ã£ã¦ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã‹ã€Œã‚ーフレームã®è¨å®šã€ã®ãƒ•ãƒ¬ãƒ¼ãƒ 内ã§å€¤ã‚’直接入力ã—ã¾ã™ã€‚ 「ã‚ーフレームã®è¨å®šã€ã®ãƒ•ãƒ¬ãƒ¼ãƒ 内ã§ã¯ã‚ーフレームã«ã‚¦ã‚£ãƒ³ãƒ‰ãƒ©ã‚¤ãƒˆï¼ˆ WindLight )ã®äº‹å‰è¨å®šã‚’関連付ã‘ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ - -「サイクルã®é•·ã•ã€ã§ã¯1 日全体ã®æ™‚間を指定ã§ãã¾ã™ã€‚ ã“ã®å€¤ã‚’低ãè¨å®šã™ã‚‹ã¨ï¼ˆä¾‹ãˆã°ï¼’分)ã€24 時間ã®æ™‚間グラフã¯å®Ÿæ™‚é–“ã® 2 分間ã«ç›¸å½“ã™ã‚‹ã“ã¨ã‚’æ„味ã—ã¾ã™ã€‚ 時間グラフã¨ã‚ーフレーム・サイクルã®è¨å®šãŒå®Œäº†ã—ãŸã‚‰ã€ã€Œå†ç”Ÿã€ãƒœã‚¿ãƒ³ã¨ã€Œåœæ¢ã€ãƒœã‚¿ãƒ³ã‚’使用ã—ã¦çµæžœã‚’プレビューã—ã¦ã¿ã¾ã—ょã†ã€‚ ã¾ãŸã€æ™‚間グラフ上ã®é»„色ã„時刻表示矢å°ã‚’移動ã™ã‚‹ã“ã¨ã«ã‚ˆã£ã¦ã‚‚サイクルã®å¤‰åŒ–をインタラクティブã«ç¢ºèªã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ 「ä¸å‹•ç”£ã®æ™‚刻を使用ã€ãƒœã‚¿ãƒ³ã‚’使用ã™ã‚‹ã“ã¨ã§æ—¥ã®é•·ã•ã¨æ™‚刻ãŒä¸å‹•ç”£ã®ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã«åŒæœŸã•ã‚Œã¾ã™ã€‚ - -デイ・サイクルã®è¨å®šãŒå®Œäº†ã—ãŸã‚‰ã€ã€Œãƒ‡ã‚¤ãƒ»ãƒ†ã‚¹ãƒˆã‚’ä¿å˜ã€ãƒœã‚¿ãƒ³ãŠã‚ˆã³ã€Œãƒ‡ã‚¤ãƒ»ãƒ†ã‚¹ãƒˆã‚’ãƒãƒ¼ãƒ‰ã€ãƒœã‚¿ãƒ³ã‚’使用ã—ã¦ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã‚’ä¿å˜ãŠã‚ˆã³ãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚ å°šã€ç¾åœ¨ã®ä»•æ§˜ã§ã¯ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã§æŒ‡å®šã§ãã‚‹ã®ã¯ 1 日分ã ã‘ã§ã™ã€‚ - </notification> - - <notification - - name="HelpBlueHorizon" - > -空ã®è‰²ã‚’調整ã™ã‚‹ã«ã¯ 「R〠(赤)ã€ã€ŒG〠(緑)ã€ã€ŒB〠(é’) ã®å„スライダーを使用ã—ã¾ã™ã€‚  「I〠スライダーを使用ã™ã‚‹ã¨ã€3 ã¤ã® RGB スライダーを一斉ã«å‹•ã‹ã™ã“ã¨ãŒã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="HelpHazeHorizon" - > -「空ã¨é 景ã®éœ²å…‰ã€ã¯é¢¨æ™¯ã®éœ²å…‰é‡å…¨ä½“を調整ã™ã‚‹ä¸Šã§æœ€ã‚‚便利ãªãƒ‘ラメーター㮠1 ã¤ã§ã™ã€‚ 太陽光ã«ã‚ˆã‚‹ãƒ›ãƒ¯ã‚¤ãƒˆã‚¢ã‚¦ãƒˆç¾è±¡ã‚„æš—ã絞り込んã è¨å®šãªã©ã€ã•ã¾ã–ã¾ãªéœ²å‡ºè¨å®šã‚’シミュレーションã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="HelpBlueDensity" - > -「空ã®é…色ã¨æ¿ƒåº¦ã€ã¯ç©ºã¨éœ§ã®å½©åº¦å…¨ä½“ã«å½±éŸ¿ã—ã¾ã™ã€‚ 「I〠スライダーをå³ã«ç§»å‹•ã™ã‚‹ã¨è‰²ã¯æ˜Žã‚‹ããã£ãã‚Šã¨ãªã‚Šã¾ã™ã€‚ ã“ã®ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã‚’左端ã«ç§»å‹•ã™ã‚‹ã¨ã€è‰²ã¯å½©ã‚Šã‚’失ã„ã€ç™½é»’ã«é€€è‰²ã—ã¾ã™ã€‚ 空ã®è‰²ã‚’微調整ã™ã‚‹å ´åˆã¯ã€ã€ŒR〠(赤)〠「G〠(緑)〠「B〠(é’) ã®å„スライダーを使用ã—ã¦å½©åº¦ã‚’個別ã«åˆ¶å¾¡ã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="HelpHazeDensity" - > -「大気ã®ä¸é€æ˜Žåº¦ã€ã¯å¤§æ°—ä¸ã®ã©ã‚“よりã¨ã—ãŸç©ºã®é›°å›²æ°—ã€ã‚°ãƒ¬ãƒ¼ãŒã‹ã£ãŸéœ§ã®ãƒ¬ãƒ™ãƒ«ã‚’制御ã—ã¾ã™ã€‚ 濃ã„煙や大気汚染ãªã© + </notification> + <notification name="HelpDayCycle"> + 「デイ・サイクル編集ã€ã§ã¯ã€ +Second Life ã§ã®æ˜¼ã¨å¤œã®ç©ºã®å¤‰åŒ–を制御ã§ãã¾ã™ã€‚ +ã“ã‚Œã¯ã€ŒåŸºæœ¬ç’°å¢ƒç·¨é›†ã€ã®ã€Œæ™‚間帯ã€ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã§ä½¿ç”¨ã•ã‚Œã‚‹ã‚µã‚¤ã‚¯ãƒ«ã§ã™ã€‚ + +「デイ・サイクル編集ã€ã¯ã‚ーフレームをè¨å®šã™ã‚‹ã“ã¨ã§æ©Ÿèƒ½ã—ã¾ã™ã€‚ +å„ã‚ーフレームã«ã¯ãƒ—リセットã•ã‚ŒãŸç©ºã®è¨å®šãŒé–¢é€£ä»˜ã‘られã¦ã„ã¾ã™ã€‚(時間グラフã«ç°è‰²ã®ç¯€ã¨ã—ã¦è¡¨ç¤ºã•ã‚Œã¾ã™ï¼‰ +ウィンドライト( WindLight )ã¯ã‚ーフレーム間をデータ補間ã—〠+時間ã®çµŒéŽã¨ã¨ã‚‚ã«ç©ºã®è‡ªç„¶ãªã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’作り出ã—ã¾ã™ã€‚ + +時間グラフã®ä¸Šã«è¡¨ç¤ºã•ã‚Œã‚‹é»„色ã®çŸ¢å°ã¯ã€æ™‚刻をもã¨ã«ã—ãŸç¾åœ¨ã®çœºã‚を表ã—ã¦ã„ã¾ã™ã€‚ +黄色ã®çŸ¢å°ã‚’クリック&ドラッグã™ã‚‹ã“ã¨ã§ã€ +1 æ—¥ã®ç§»ã‚Šå¤‰ã‚りを見るã“ã¨ãŒã§ãã¾ã™ã€‚ +「ã‚ーã®è¿½åŠ ã€ãƒœã‚¿ãƒ³ã¾ãŸã¯ã€Œã‚ーã®å‰Šé™¤ã€ãƒœã‚¿ãƒ³ã‚’押ã—ã¦ã€ +時間グラフã®å³å´ã«ã‚ãƒ¼ãƒ•ãƒ¬ãƒ¼ãƒ ã‚’è¿½åŠ ã‚ã‚‹ã„ã¯å‰Šé™¤ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + +ã‚ーフレームã®æ™‚刻を指定ã™ã‚‹ã«ã¯ã€ +時間グラフã«æ²¿ã£ã¦ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã‹ã€Œã‚ーフレームã®è¨å®šã€ã®ãƒ•ãƒ¬ãƒ¼ãƒ 内ã§å€¤ã‚’直接入力ã—ã¾ã™ã€‚ +「ã‚ーフレームã®è¨å®šã€ã®ãƒ•ãƒ¬ãƒ¼ãƒ 内ã§ã¯ã‚ーフレームã«ã‚¦ã‚£ãƒ³ãƒ‰ãƒ©ã‚¤ãƒˆï¼ˆ WindLight )ã®äº‹å‰è¨å®šã‚’関連付ã‘ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + +「サイクルã®é•·ã•ã€ã§ã¯1 日全体ã®æ™‚間を指定ã§ãã¾ã™ã€‚ +ã“ã®å€¤ã‚’低ãè¨å®šã™ã‚‹ã¨ï¼ˆä¾‹ãˆã°2分)ã€24 時間ã®æ™‚間グラフ㯠+実時間㮠2 分間ã«ç›¸å½“ã™ã‚‹ã“ã¨ã‚’æ„味ã—ã¾ã™ã€‚ +時間グラフã¨ã‚ーフレーム・サイクルã®è¨å®šãŒå®Œäº†ã—ãŸã‚‰ã€ +「å†ç”Ÿã€ãƒœã‚¿ãƒ³ã¨ã€Œåœæ¢ã€ãƒœã‚¿ãƒ³ã‚’使用ã—ã¦çµæžœã‚’プレビューã—ã¦ã¿ã¾ã—ょã†ã€‚ +ã¾ãŸã€æ™‚間グラフ上ã®é»„色ã„時刻表示矢å°ã‚’移動ã™ã‚‹ã“ã¨ã«ã‚ˆã£ã¦ã‚‚サイクルã®å¤‰åŒ–をインタラクティブã«ç¢ºèªã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ 「ä¸å‹•ç”£ã®æ™‚刻を使用ã€ãƒœã‚¿ãƒ³ã‚’使用ã™ã‚‹ã“ã¨ã§æ—¥ã®é•·ã•ã¨æ™‚刻ãŒä¸å‹•ç”£ã®ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã«åŒæœŸã•ã‚Œã¾ã™ã€‚ + +デイ・サイクルã®è¨å®šãŒå®Œäº†ã—ãŸã‚‰ã€ã€Œãƒ‡ã‚¤ãƒ»ãƒ†ã‚¹ãƒˆã‚’ä¿å˜ã€ãƒœã‚¿ãƒ³ãŠã‚ˆã³ã€Œãƒ‡ã‚¤ãƒ»ãƒ†ã‚¹ãƒˆã‚’ãƒãƒ¼ãƒ‰ã€ãƒœã‚¿ãƒ³ã‚’使用ã—ã¦ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã‚’ä¿å˜ãŠã‚ˆã³ãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚ +å°šã€ç¾åœ¨ã®ä»•æ§˜ã§ã¯ãƒ‡ã‚¤ãƒ»ã‚µã‚¤ã‚¯ãƒ«ã§æŒ‡å®šã§ãã‚‹ã®ã¯ +1 日分ã ã‘ã§ã™ã€‚ + </notification> + <notification name="HelpBlueHorizon"> + 空ã®è‰²ã‚’調整ã™ã‚‹ã«ã¯ 「R〠(赤)ã€ã€ŒG〠(緑)ã€ã€ŒB〠(é’) ã®å„スライダーを使用ã—ã¾ã™ã€‚  「I〠スライダーを使用ã™ã‚‹ã¨ã€3 ã¤ã® RGB スライダーを一斉ã«å‹•ã‹ã™ã“ã¨ãŒã§ãã¾ã™ã€‚ + </notification> + <notification name="HelpHazeHorizon"> + 「空ã¨é 景ã®éœ²å…‰ã€ã¯é¢¨æ™¯ã®éœ²å…‰é‡å…¨ä½“を調整ã™ã‚‹ä¸Šã§æœ€ã‚‚便利ãªãƒ‘ラメーター㮠1 ã¤ã§ã™ã€‚ 太陽光ã«ã‚ˆã‚‹ãƒ›ãƒ¯ã‚¤ãƒˆã‚¢ã‚¦ãƒˆç¾è±¡ã‚„æš—ã絞り込んã è¨å®šãªã©ã€ã•ã¾ã–ã¾ãªéœ²å‡ºè¨å®šã‚’シミュレーションã§ãã¾ã™ã€‚ + </notification> + <notification name="HelpBlueDensity"> + 「空ã®é…色ã¨æ¿ƒåº¦ã€ã¯ç©ºã¨éœ§ã®å½©åº¦å…¨ä½“ã«å½±éŸ¿ã—ã¾ã™ã€‚ 「I〠スライダーをå³ã«ç§»å‹•ã™ã‚‹ã¨è‰²ã¯æ˜Žã‚‹ããã£ãã‚Šã¨ãªã‚Šã¾ã™ã€‚ +ã“ã®ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã‚’左端ã«ç§»å‹•ã™ã‚‹ã¨ã€è‰²ã¯å½©ã‚Šã‚’失ã„ã€ç™½é»’ã«é€€è‰²ã—ã¾ã™ã€‚ 空ã®è‰²ã‚’微調整ã™ã‚‹å ´åˆã¯ã€ +「R〠(赤)〠「G〠(緑)〠「B〠(é’) +ã®å„スライダーを使用ã—ã¦å½©åº¦ã‚’個別ã«åˆ¶å¾¡ã§ãã¾ã™ã€‚ + </notification> + <notification name="HelpHazeDensity"> + 「大気ã®ä¸é€æ˜Žåº¦ã€ã¯å¤§æ°—ä¸ã®ã©ã‚“よりã¨ã—ãŸç©ºã®é›°å›²æ°—ã€ã‚°ãƒ¬ãƒ¼ãŒã‹ã£ãŸéœ§ã®ãƒ¬ãƒ™ãƒ«ã‚’制御ã—ã¾ã™ã€‚ 濃ã„煙や大気汚染ãªã© を表ç¾ã™ã‚‹ã®ã«é©ã—ã¦ã„ã¾ã™ã€‚ 霧やもやãªã©ã®è¡¨ç¾æ‰‹æ®µã¨ã—ã¦ã‚‚効果的ã§ã™ã€‚ - </notification> - - <notification - - name="HelpDensityMult" - > -「大気ã®ä¸é€æ˜Žåº¦ã®å¢—å¹…ã€ã¯ç©ºæ°—ã®æ¿ƒåº¦å…¨ä½“を制御ã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã§ãã¾ã™ã€‚ ã“ã®å€¤ã‚’低ãè¨å®šã™ã‚‹ã¨ã€Œå¤§æ°—ã®è–„ã„状態ã€ã‚’演出ã—ã€é«˜ã„数値ã«è¨å®šã™ã‚‹ã¨ã¨ã¦ã‚‚ã©ã‚“よりã¨ã—ãŸã‚¹ãƒ¢ãƒƒã‚°ã®ã‹ã‹ã£ãŸé›°å›²æ°—を表ç¾ã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="HelpDistanceMult" - > -ウィンドライトã®è¦–覚的è·é›¢ã‚’調整ã—ã¾ã™ã€‚ 値ã¨ã—ã¦ã‚¼ãƒã‚’è¨å®šã™ã‚‹ã¨ã€åœ°å½¢ãŠã‚ˆã³ã‚ªãƒ–ジェクトã«å¯¾ã™ã‚‹ + </notification> + <notification name="HelpDensityMult"> + 「大気ã®ä¸é€æ˜Žåº¦ã®å¢—å¹…ã€ã¯ç©ºæ°—ã®æ¿ƒåº¦å…¨ä½“を制御ã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã§ãã¾ã™ã€‚ ã“ã®å€¤ã‚’低ãè¨å®šã™ã‚‹ã¨ã€Œå¤§æ°—ã®è–„ã„状態ã€ã‚’演出ã—ã€é«˜ã„数値ã«è¨å®šã™ã‚‹ã¨ã¨ã¦ã‚‚ã©ã‚“よりã¨ã—ãŸã‚¹ãƒ¢ãƒƒã‚°ã®ã‹ã‹ã£ãŸé›°å›²æ°—を表ç¾ã§ãã¾ã™ã€‚ + </notification> + <notification name="HelpDistanceMult"> + ウィンドライトã®è¦–覚的è·é›¢ã‚’調整ã—ã¾ã™ã€‚ 値ã¨ã—ã¦ã‚¼ãƒã‚’è¨å®šã™ã‚‹ã¨ã€åœ°å½¢ãŠã‚ˆã³ã‚ªãƒ–ジェクトã«å¯¾ã™ã‚‹ ウィンドライトã®å½±éŸ¿ã‚’効果的ã«å–り消ã™ã“ã¨ãŒã§ãã¾ã™ã€‚ 1 より大ããªå€¤ã‚’è¨å®šã™ã‚‹å ´åˆã€å€¤ãŒå¤§ãããªã‚‹ã«ã¤ã‚Œã¦ 大気ãŒæ¬¡ç¬¬ã«æ¿ƒããªã‚‹ã‚ˆã†ãªåŠ¹æžœãŒå¾—られã¾ã™ã€‚ - </notification> - - <notification - - name="HelpMaxAltitude" - > -「最大高度ã€ã§ã¯å¤§æ°—ä¸ã®å…‰ã®é‡ã‚’算出ã™ã‚‹ã¨ãã« -ウィンドライトãŒç®—出ã—ãŸé«˜åº¦ã‚’調整ã—ã¾ã™ã€‚ 1 æ—¥ã®çµ‚ã‚ã‚Šã«å¤•ç„¼ã‘ã®åº¦åˆã„を調整ã™ã‚‹ã¨ãã«å½¹ç«‹ã¡ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpSunlightColor" - > -風景ã®ä¸ã§ç›´å°„日光ã®è‰²ã‚„å¼·ã•ã‚’調整ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpSunAmbient" - > -風景ã®ä¸ã§å‘¨å›²ã‚’ã¨ã‚Šã¾ã大気ä¸ã®ã‚¢ãƒ³ãƒ“エント光ã®è‰²ã‚„å¼·ã•ã‚’調整ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpSunGlow" - > -「サイズã€ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã¯å¤ªé™½ã®å¤§ãã•ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpMaxAltitude"> + 「最大高度ã€ã§ã¯å¤§æ°—ä¸ã®å…‰ã®é‡ã‚’算出ã™ã‚‹ã¨ãã« +ウィンドライトãŒç®—出ã—ãŸé«˜åº¦ã‚’調整ã—ã¾ã™ã€‚ +1æ—¥ã®çµ‚ã‚ã‚Šã«å¤•ç„¼ã‘ã®åº¦åˆã„を調整ã™ã‚‹ã¨ãã«å½¹ç«‹ã¡ã¾ã™ã€‚ + </notification> + <notification name="HelpSunlightColor"> + 風景ã®ä¸ã§ç›´å°„日光ã®è‰²ã‚„å¼·ã•ã‚’調整ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpSunAmbient"> + 風景ã®ä¸ã§å‘¨å›²ã‚’ã¨ã‚Šã¾ã大気ä¸ã®ã‚¢ãƒ³ãƒ“エント光ã®è‰²ã‚„å¼·ã•ã‚’調整ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpSunGlow"> + 「サイズã€ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã¯å¤ªé™½ã®å¤§ãã•ã‚’制御ã—ã¾ã™ã€‚ 「フォーカスã€ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã¯ç©ºã‚’背ã«ã—ãŸå¤ªé™½ã®ã‹ã™ã¿å…·åˆã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpSceneGamma" - > -風景ã®ä¸ã§æ˜Žæš—ã®é…分を調整ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpStarBrightness" - > -空ã®æ˜Ÿã®è¼ãを調整ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpTimeOfDay" - > -空ã®å¤ªé™½ã®å ´æ‰€ã‚’調整ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpSceneGamma"> + 風景ã®ä¸ã§æ˜Žæš—ã®é…分を調整ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpStarBrightness"> + 空ã®æ˜Ÿã®è¼ãを調整ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpTimeOfDay"> + 空ã®å¤ªé™½ã®å ´æ‰€ã‚’調整ã—ã¾ã™ã€‚ 標高ã«ä¼¼ã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpEastAngle" - > -空ã®å¤ªé™½ã®å ´æ‰€ã‚’調整ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpEastAngle"> + 空ã®å¤ªé™½ã®å ´æ‰€ã‚’調整ã—ã¾ã™ã€‚ æ–¹ä½è§’ã«ä¼¼ã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpCloudColor" - > -雲ã®è‰²ã‚’編集ã—ã¾ã™ã€‚ 通常ã¯ç™½ã£ã½ã„色をãŠå‹§ã‚ã—ã¾ã™ãŒã€ã‚‚ã¡ã‚ã‚“ + </notification> + <notification name="HelpCloudColor"> + 雲ã®è‰²ã‚’編集ã—ã¾ã™ã€‚ 通常ã¯ç™½ã£ã½ã„色をãŠå‹§ã‚ã—ã¾ã™ãŒã€ã‚‚ã¡ã‚ã‚“ ãŠå¥½ã¿ã®è‰²ã‚’è¨å®šã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="HelpCloudDetail" - > -主è¦ãªé›²ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã®ä¸Šã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ã•ã‚ŒãŸè©³ç´°ãªã‚¤ãƒ¡ãƒ¼ã‚¸ã‚’制御ã—ã¾ã™ã€‚ X 㨠Y ã§ãã®ä½ç½®ã‚’制御ã—ã¾ã™ã€‚ 「D〠(濃度) ã¯çœŸç¶¿ã®ã‚ˆã†ãªæ§˜åや雲ã®å‰²ã‚Œç›®ã® -様åãªã©é›²ã®å¤–観を制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpCloudDensity" - > -「X〠㨠「Y〠ã®ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã§é›²ã®ä½ç½®ã‚’〠-「D〠ã®ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã§ãã®å¯†åº¦ã‚’制御 -ã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="HelpCloudCoverage" - > -空を覆ã†é›²ã®é‡ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpCloudScale" - > -空ã«æµ®ã‹ã¶é›²ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã®ç¸®å°ºã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpCloudScrollX" - > -「X〠ã®æ–¹å‘ã«é›²ãŒç§»å‹•ã™ã‚‹éš›ã®é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpCloudScrollY" - > -「Y〠ã®æ–¹å‘ã«é›²ãŒç§»å‹•ã™ã‚‹éš›ã®é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpClassicClouds" - > -ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’有効ã«ã™ã‚‹ã¨ã€WindLight ã®é›²ã«åŠ ãˆã¦ã€Second Life ã®å¾“æ¥ã®é›²ã‚‚レンダリングã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterFogColor" - > -æ°´ä¸ã®ãƒ•ã‚©ã‚°åŠ¹æžœã«è‰²ã‚’ã¤ã‘ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterFogDensity" - > -æ°´ä¸ã®ãƒ•ã‚©ã‚°åŠ¹æžœã®å¼·å¼±ã€æ°´ä¸ã§ã©ã®ãらã„ã®è·é›¢ã¾ã§è¦‹æ¸¡ã›ã‚‹ã‹ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpUnderWaterFogMod" - > -「水ä¸ã®ãƒ•ã‚©ã‚°æ¿ƒåº¦æŒ‡æ•°ã€ã®åŠ¹æžœã‚’åŠ æ¸›ã—ã¦ã€ã‚ãªãŸã®ã‚¢ãƒã‚¿ãƒ¼ãŒæ°´ä¸ã«ã„ã‚‹ã¨ãã€ã©ã®ãらã„é ãã¾ã§è¦‹ã‚‹ã“ã¨ãŒã§ãã‚‹ã‹ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterGlow" - > -æ°´é¢ã®è¼ãã®åº¦åˆã„を制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterNormalScale" - > -æ°´é¢ã‚’表ç¾ã™ã‚‹ 3 種類ã®ã•ã–æ³¢ã®ç¸®å°ºã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterFresnelScale" - > -ã•ã¾ã–ã¾ãªè§’度ã§ã€åå°„ã™ã‚‹å…‰ã®é‡ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterFresnelOffset" - > -åå°„ã™ã‚‹å…‰åº¦ã®é‡ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterScaleAbove" - > -上ã‹ã‚‰æ°´ä¸ã‚’見ãŸã¨ãã®å…‰ã®å±ˆæŠ˜å…·åˆã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterScaleBelow" - > -æ°´ä¸ã‹ã‚‰è¦‹ãŸã¨ãã®å…‰ã®å±ˆæŠ˜å…·åˆã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterBlurMultiplier" - > -æ³¢ã¨åå°„ã®æ··ã–ã‚Šå…·åˆã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterNormalMap" - > -å射や屈折を決定ã™ã‚‹ãŸã‚ã«æ°´ã«é‡ãられるノーマル・マップを制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterWave1" - > -拡大ã•ã‚ŒãŸãƒŽãƒ¼ãƒžãƒ«ãƒ»ãƒžãƒƒãƒ—ãŒç§»å‹•ã™ã‚‹æ–¹å‘(X 軸㨠Y 軸ã§è¡¨ç¾ï¼‰ã¨é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="HelpWaterWave2" - > -縮å°ã•ã‚ŒãŸãƒŽãƒ¼ãƒžãƒ«ãƒ»ãƒžãƒƒãƒ—ãŒç§»å‹•ã™ã‚‹æ–¹å‘(X 軸㨠Y 軸ã§è¡¨ç¾ï¼‰ã¨é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="NewSkyPreset" - > -æ–°ã—ã„空ã®åå‰ã‚’指定ã—ã¦ãã ã•ã„。 - <form name="form"> - <input name="message" type="text"> -æ–°ã—ã„事å‰è¨å®š - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="ã‚ャンセル"/> - </form> - </notification> - - <notification - - name="ExistsSkyPresetAlert" - > -事å‰è¨å®šãŒã™ã§ã«å˜åœ¨ã—ã¾ã™ï¼ - </notification> - - <notification - - name="NewWaterPreset" - > -æ–°ã—ã„æ°´ã®äº‹å‰è¨å®šã®åå‰ã‚’指定ã—ã¦ãã ã•ã„。 - <form name="form"> - <input name="message" type="text"> -æ–°ã—ã„事å‰è¨å®š - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="ã‚ャンセル"/> - </form> - </notification> - - <notification - - name="ExistsWaterPresetAlert" - > -事å‰è¨å®šãŒã™ã§ã«å˜åœ¨ã—ã¾ã™ï¼ - </notification> - - <notification - - name="WaterNoEditDefault" - > -デフォルトã®è¨å®šã‚’編集ã—ãŸã‚Šå‰Šé™¤ã—ãŸã‚Šã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="ChatterBoxSessionStartError" - > -[RECIPIENT]ã¨ã®æ–°ã—ã„ãƒãƒ£ãƒƒãƒˆã‚’開始ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ + </notification> + <notification name="HelpCloudDetail"> + 主è¦ãªé›²ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã®ä¸Šã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ã•ã‚ŒãŸè©³ç´°ãªã‚¤ãƒ¡ãƒ¼ã‚¸ã‚’制御ã—ã¾ã™ã€‚ X 㨠Y ã§ãã®ä½ç½®ã‚’制御ã—ã¾ã™ã€‚ +「Dã€ï¼ˆæ¿ƒåº¦ï¼‰ã¯çœŸç¶¿ã®ã‚ˆã†ãªæ§˜åや〠+雲ã®å‰²ã‚Œç›®ã®æ§˜åãªã©é›²ã®å¤–観を制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpCloudDensity"> + 「X〠㨠「Y〠ã®ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã§é›²ã®ä½ç½®ã‚’〠+「Dã€ã®ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ã§ãã®å¯†åº¦ã‚’制御ã§ãã¾ã™ã€‚ + </notification> + <notification name="HelpCloudCoverage"> + 空を覆ã†é›²ã®é‡ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpCloudScale"> + 空ã«æµ®ã‹ã¶é›²ã®ã‚¤ãƒ¡ãƒ¼ã‚¸ã®ç¸®å°ºã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpCloudScrollX"> + 「X〠ã®æ–¹å‘ã«é›²ãŒç§»å‹•ã™ã‚‹éš›ã®é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpCloudScrollY"> + 「Y〠ã®æ–¹å‘ã«é›²ãŒç§»å‹•ã™ã‚‹éš›ã®é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpClassicClouds"> + ã“ã®ãƒœãƒƒã‚¯ã‚¹ã‚’有効ã«ã™ã‚‹ã¨ã€WindLight ã®é›²ã«åŠ ãˆã¦ã€Second Life ã®å¾“æ¥ã®é›²ã‚‚レンダリングã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ + </notification> + <notification name="HelpWaterFogColor"> + æ°´ä¸ã®ãƒ•ã‚©ã‚°åŠ¹æžœã«è‰²ã‚’ã¤ã‘ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterFogDensity"> + æ°´ä¸ã®ãƒ•ã‚©ã‚°åŠ¹æžœã®å¼·å¼±ã€æ°´ä¸ã§ã©ã®ãらã„ã®è·é›¢ã¾ã§è¦‹æ¸¡ã›ã‚‹ã‹ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpUnderWaterFogMod"> + 「水ä¸ã®ãƒ•ã‚©ã‚°æ¿ƒåº¦æŒ‡æ•°ã€ã®åŠ¹æžœã‚’åŠ æ¸›ã—ã¦ã€ã‚ãªãŸã®ã‚¢ãƒã‚¿ãƒ¼ãŒæ°´ä¸ã«ã„ã‚‹ã¨ãã€ã©ã®ãらã„é ãã¾ã§è¦‹ã‚‹ã“ã¨ãŒã§ãã‚‹ã‹ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterGlow"> + æ°´é¢ã®è¼ãã®åº¦åˆã„を制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterNormalScale"> + æ°´é¢ã‚’表ç¾ã™ã‚‹ 3 種類ã®ã•ã–æ³¢ã®ç¸®å°ºã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterFresnelScale"> + ã•ã¾ã–ã¾ãªè§’度ã§ã€åå°„ã™ã‚‹å…‰ã®é‡ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterFresnelOffset"> + åå°„ã™ã‚‹å…‰åº¦ã®é‡ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterScaleAbove"> + 上ã‹ã‚‰æ°´ä¸ã‚’見ãŸã¨ãã®å…‰ã®å±ˆæŠ˜å…·åˆã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterScaleBelow"> + æ°´ä¸ã‹ã‚‰è¦‹ãŸã¨ãã®å…‰ã®å±ˆæŠ˜å…·åˆã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterBlurMultiplier"> + æ³¢ã¨åå°„ã®æ··ã–ã‚Šå…·åˆã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterNormalMap"> + å射や屈折を決定ã™ã‚‹ãŸã‚ã«æ°´ã«é‡ãられるノーマル・マップを制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterWave1"> + 拡大ã•ã‚ŒãŸãƒŽãƒ¼ãƒžãƒ«ãƒ»ãƒžãƒƒãƒ—ãŒç§»å‹•ã™ã‚‹æ–¹å‘(X 軸㨠Y 軸ã§è¡¨ç¾ï¼‰ã¨é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="HelpWaterWave2"> + 縮å°ã•ã‚ŒãŸãƒŽãƒ¼ãƒžãƒ«ãƒ»ãƒžãƒƒãƒ—ãŒç§»å‹•ã™ã‚‹æ–¹å‘(X 軸㨠Y 軸ã§è¡¨ç¾ï¼‰ã¨é€Ÿåº¦ã‚’制御ã—ã¾ã™ã€‚ + </notification> + <notification name="NewSkyPreset"> + æ–°ã—ã„空ã®åå‰ã‚’指定ã—ã¦ãã ã•ã„。 + <form name="form"> + <input name="message" type="text"> + æ–°ã—ã„事å‰è¨å®š + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="ã‚ャンセル"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + 事å‰è¨å®šãŒã™ã§ã«å˜åœ¨ã—ã¾ã™ï¼ + </notification> + <notification name="NewWaterPreset"> + æ–°ã—ã„æ°´ã®äº‹å‰è¨å®šã®åå‰ã‚’指定ã—ã¦ãã ã•ã„。 + <form name="form"> + <input name="message" type="text"> + æ–°ã—ã„事å‰è¨å®š + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="ã‚ャンセル"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + 事å‰è¨å®šãŒã™ã§ã«å˜åœ¨ã—ã¾ã™ï¼ + </notification> + <notification name="WaterNoEditDefault"> + デフォルトã®è¨å®šã‚’編集ã—ãŸã‚Šå‰Šé™¤ã—ãŸã‚Šã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="ChatterBoxSessionStartError"> + [RECIPIENT]ã¨ã®æ–°ã—ã„ãƒãƒ£ãƒƒãƒˆã‚’開始ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ForceCloseChatterBoxSession" - > -[NAME]ã¨ã®ãƒãƒ£ãƒƒãƒˆã‚»ãƒƒã‚·ãƒ§ãƒ³ã‚’é–‰ã˜ã¾ã™ã€‚ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + [NAME]ã¨ã®ãƒãƒ£ãƒƒãƒˆã‚»ãƒƒã‚·ãƒ§ãƒ³ã‚’é–‰ã˜ã¾ã™ã€‚ [REASON] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="Cannot_Purchase_an_Attachment" - > -アイテムãŒæ·»ä»˜ç‰©ã®ä¸€éƒ¨ã§ã‚ã‚‹é–“ã¯ã€ + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + アイテムãŒæ·»ä»˜ç‰©ã®ä¸€éƒ¨ã§ã‚ã‚‹é–“ã¯ã€ アイテムを購入ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - label="デビット許å¯ã®ãƒªã‚¯ã‚¨ã‚¹ãƒˆã«ã¤ã„ã¦" - name="DebitPermissionDetails" - > -ã“ã®è¦æ±‚を許å¯ã™ã‚‹ã¨ã€ã‚¹ã‚¯ãƒªãƒ—トã‹ã‚‰ã‚ãªãŸã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã«ãƒªãƒ³ãƒ‡ãƒ³ãƒ»ãƒ‰ãƒ«ã‚’課金ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ ã“ã®è¨±å¯ã‚’å–り消ã™ã«ã¯ã€ã‚ªãƒ–ジェクトã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã‚ªãƒ–ジェクトを削除ã™ã‚‹ã‹ã€ã‚ªãƒ–ジェクトã®ã‚¹ã‚¯ãƒªãƒ—トをリセットã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。 - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AutoWearNewClothing" - > -ã‚ãªãŸãŒä½œæˆã—ãŸæœã‚¢ã‚¤ãƒ†ãƒ を自動的ã«è£…ç€ã—ã¾ã™ã‹ï¼Ÿ - <usetemplate - ignoretext="æ–°ã—ã„æœã‚’自動的ã«è£…ç€ã™ã‚‹" - name="okcancelignore" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="NotAgeVerified" - > -ã“ã®åŒºç”»ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãŸã‚ã«ã¯ã€å¹´é½¢ç¢ºèªã‚’è¡Œã†å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ -Second Lifeã®ã‚¦ã‚§ãƒ–サイトã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã€å¹´é½¢ç¢ºèªã‚’è¡Œã„ã¾ã™ã‹ï¼Ÿ + </notification> + <notification label="デビット許å¯ã®ãƒªã‚¯ã‚¨ã‚¹ãƒˆã«ã¤ã„ã¦" name="DebitPermissionDetails"> + ã“ã®è¦æ±‚を許å¯ã™ã‚‹ã¨ã€ã‚¹ã‚¯ãƒªãƒ—トã‹ã‚‰ã‚ãªãŸã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã«ãƒªãƒ³ãƒ‡ãƒ³ãƒ‰ãƒ«ã‚’課金ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚ +ã“ã®è¨±å¯ã‚’å–り消ã™ã«ã¯ã€ã‚ªãƒ–ジェクトã®ã‚ªãƒ¼ãƒŠãƒ¼ã¯ã‚ªãƒ–ジェクトを削除ã™ã‚‹ã‹ã€ã‚ªãƒ–ジェクトã®ã‚¹ã‚¯ãƒªãƒ—トをリセットã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。 + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + ã‚ãªãŸãŒä½œæˆã—ãŸæœã‚¢ã‚¤ãƒ†ãƒ を自動的ã«è£…ç€ã—ã¾ã™ã‹ï¼Ÿ + <usetemplate ignoretext="æ–°ã—ã„æœã‚’自動的ã«è£…ç€ã™ã‚‹" name="okcancelignore" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="NotAgeVerified"> + ã“ã®åŒºç”»ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãŸã‚ã«ã¯ã€ +年齢確èªã‚’è¡Œã†å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +Second Life ã®ã‚¦ã‚§ãƒ–サイトã«ã‚¢ã‚¯ã‚»ã‚¹ã—〠+年齢確èªã‚’è¡Œã„ã¾ã™ã‹ï¼Ÿ [_URL] - <url option="0" name="url"> - + <url name="url" option="0"> https://secondlife.com/account/verification.php?lang=ja - </url> - <usetemplate - ignoretext="å¹´é½¢ã®æœªç¢ºèªã«ã¤ã„ã¦è¦å‘Šã™ã‚‹" - name="okcancelignore" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="Cannot enter parcel: no payment info on file" - > -ã“ã®åŒºç”»ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ã«ã¯ã€æ”¯æ‰•ã„æƒ…å ±ãŒäº‹å‰ã«ç™»éŒ²ã•ã‚Œã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ -Second Lifeã®ã‚¦ã‚§ãƒ–サイトã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã€è¨å®šã—ã¾ã™ã‹ï¼Ÿ + </url> + <usetemplate ignoretext="å¹´é½¢ã®æœªç¢ºèªã«ã¤ã„ã¦è¦å‘Šã™ã‚‹" name="okcancelignore" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="Cannot enter parcel: no payment info on file"> + ã“ã®åŒºç”»ã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ã«ã¯ã€æ”¯æ‰•ã„æƒ…å ±ãŒäº‹å‰ã«ç™»éŒ²ã•ã‚Œã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +Second Life ã®ã‚¦ã‚§ãƒ–サイトã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã€è¨å®šã—ã¾ã™ã‹ï¼Ÿ [_URL] - <url option="0" name="url"> - + <url name="url" option="0"> https://secondlife.com/account/index.php?lang=ja - </url> - <usetemplate - ignoretext="支払ã„æƒ…å ±ã®æœªç™»éŒ²ã«ã¤ã„ã¦è¦å‘Šã™ã‚‹" - name="okcancelignore" - notext="ã„ã„ãˆ" - yestext="ã¯ã„"/> - </notification> - - <notification - - name="MissingString" - > -æ–‡å—列[STRING_NAME]ãŒstrings.xmlã«å«ã¾ã‚Œã¦ã„ã¾ã›ã‚“ - </notification> - - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> - - <notification - - name="Cancelled" - > -å–り消ã•ã‚Œã¾ã—㟠- </notification> - - <notification - - name="CancelledSit" - > -座るã®ã‚’å–り消ã•ã‚Œã¾ã—㟠- </notification> - - <notification - - name="CancelledAttach" - > -添付ã¯å–り消ã•ã‚Œã¾ã—㟠- </notification> - - <notification - - name="ReplacedMissingWearable" - > -æ¬ è½ã—ã¦ã„ã‚‹æœï¼èº«ä½“部ä½ã‚’デフォルトã«ç½®æ›ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="GroupNotice" - > -件å: [SUBJECT], メッセージ: [MESSAGE] - </notification> - - <notification - - name="FriendOnline" - > -[FIRST] [LAST]ã¯ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ã§ã™ã€‚ - </notification> - - <notification - - name="FriendOffline" - > -[FIRST] [LAST]ã¯ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã§ã™ã€‚ - </notification> - - <notification - - name="AddSelfFriend" - > -自分自身をフレンドã«ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="UploadingAuctionSnapshot" - > -インワールドã¨ã‚¦ã‚§ãƒ–・サイトã®ã‚¹ãƒŠãƒƒãƒ—ショットをアップãƒãƒ¼ãƒ‰ä¸ã§ã™... + </url> + <usetemplate ignoretext="支払ã„æƒ…å ±ã®æœªç™»éŒ²ã«ã¤ã„ã¦è¦å‘Šã™ã‚‹" name="okcancelignore" notext="ã„ã„ãˆ" yestext="ã¯ã„"/> + </notification> + <notification name="MissingString"> + æ–‡å—列[STRING_NAME]ãŒstrings.xmlã«å«ã¾ã‚Œã¦ã„ã¾ã›ã‚“ + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + å–り消ã•ã‚Œã¾ã—㟠+ </notification> + <notification name="CancelledSit"> + 座るã®ã‚’å–り消ã•ã‚Œã¾ã—㟠+ </notification> + <notification name="CancelledAttach"> + 添付ã¯å–り消ã•ã‚Œã¾ã—㟠+ </notification> + <notification name="ReplacedMissingWearable"> + æ¬ è½ã—ã¦ã„ã‚‹æœï¼èº«ä½“部ä½ã‚’デフォルトã«ç½®æ›ã—ã¾ã™ã€‚ + </notification> + <notification name="GroupNotice"> + 件å: [SUBJECT], メッセージ: [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] ã¯ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ã§ã™ã€‚ + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] ã¯ã‚ªãƒ•ãƒ©ã‚¤ãƒ³ã§ã™ã€‚ + </notification> + <notification name="AddSelfFriend"> + 自分自身をフレンドã«ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="UploadingAuctionSnapshot"> + インワールドã¨ã‚¦ã‚§ãƒ–・サイトã®ã‚¹ãƒŠãƒƒãƒ—ショットをアップãƒãƒ¼ãƒ‰ä¸ã§ã™... (所è¦æ™‚間:約5分) - </notification> - - <notification - - name="UploadPayment" - > -アップãƒãƒ¼ãƒ‰ã« L$[AMOUNT] 支払ã„ã¾ã—ãŸã€‚ - </notification> - - - - <notification - - name="UploadSnapshotDone" - > -インワールドã§ã®ã‚¹ãƒŠãƒƒãƒ—ショットã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ãŒå®Œäº†ã—ã¾ã—ãŸã€‚ - </notification> - - <notification - - name="TerrainDownloaded" - > -raw地形ãŒãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã•ã‚Œã¾ã—㟠- </notification> - - <notification - - name="GestureMissing" - > -ジェスãƒãƒ£ãƒ¼[NAME]ãŒãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="UnableToLoadGesture" - > -ジェスãƒãƒ£ãƒ¼[NAME]ã‚’èªã¿è¾¼ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="UploadPayment"> + アップãƒãƒ¼ãƒ‰ã« L$[AMOUNT] 支払ã„ã¾ã—ãŸã€‚ + </notification> + <notification name="UploadWebSnapshotDone"> + Webサイトã®ã‚¹ãƒŠãƒƒãƒ—ショットãŒã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="UploadSnapshotDone"> + インワールドã§ã®ã‚¹ãƒŠãƒƒãƒ—ショットã®ã‚¢ãƒƒãƒ—ãƒãƒ¼ãƒ‰ãŒå®Œäº†ã—ã¾ã—ãŸã€‚ + </notification> + <notification name="TerrainDownloaded"> + raw地形ãŒãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã•ã‚Œã¾ã—㟠+ </notification> + <notification name="GestureMissing"> + ジェスãƒãƒ£ãƒ¼[NAME] ãŒãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="UnableToLoadGesture"> + ジェスãƒãƒ£ãƒ¼[NAME] ã‚’èªã¿è¾¼ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。 å†åº¦ã€è©¦ã¿ã¦ãã ã•ã„。 - </notification> - - <notification - - name="LandmarkMissing" - > -データベースã«ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ãŒã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="UnableToLoadLandmark" - > -ランドマークをãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CapsKeyOn" - > -コンピューター㮠Caps Lockã‚ー㌠+ </notification> + <notification name="LandmarkMissing"> + データベースã«ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="UnableToLoadLandmark"> + ランドマークをãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="CapsKeyOn"> + コンピューター㮠Caps Lockã‚ー㌠有効ã«ãªã£ã¦ã„ã¾ã™ã€‚パスワード入力㫠影響ã™ã‚‹ã®ã§è§£é™¤ã—ã¾ã—ょã†ã€‚ - </notification> - - <notification - - name="NotecardMissing" - > -ノートカードãŒãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="NotecardNoPermissions" - > -ノートカードを閲覧ã™ã‚‹ã«ã¯æ¨©é™ãŒä¸å分ã§ã™ã€‚ - </notification> - - <notification - - name="RezItemNoPermissions" - > -オブジェクトをrezã™ã‚‹ã«ã¯ãƒ‘ーミッション(承èªï¼‰ãŒä¸è¶³ã—ã¦ã¾ã™ã€‚ - </notification> - - <notification - - name="UnableToLoadNotecard" - > -ノートカードをãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 -ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ScriptMissing" - > -データベースã«ã‚¹ã‚¯ãƒªãƒ—トãŒã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="ScriptNoPermissions" - > -スクリプトを閲覧ã™ã‚‹ã«ã¯æ¨©é™ãŒä¸å分ã§ã™ã€‚ - </notification> - - <notification - - name="UnableToLoadScript" - > -スクリプトをãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="IncompleteInventory" - > -ã‚ãªãŸã®æä¾›ã™ã‚‹ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯ã€ã“ã®å ´æ‰€ã§ã¯ã¾ã 全部æƒã„ã¾ã›ã‚“。 + </notification> + <notification name="NotecardMissing"> + ノートカードãŒãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="NotecardNoPermissions"> + ノートカードを閲覧ã™ã‚‹ã«ã¯æ¨©é™ãŒä¸å分ã§ã™ + </notification> + <notification name="RezItemNoPermissions"> + オブジェクトをrezã™ã‚‹ã«ã¯ãƒ‘ーミッション(承èªï¼‰ãŒä¸è¶³ã—ã¦ã¾ã™ã€‚ + </notification> + <notification name="UnableToLoadNotecard"> + ç¾åœ¨ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã®è³‡ç”£ã‚’ãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 + </notification> + <notification name="ScriptMissing"> + データベースã«ã‚¹ã‚¯ãƒªãƒ—トãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="ScriptNoPermissions"> + スクリプトを閲覧ã™ã‚‹ã«ã¯æ¨©é™ãŒä¸å分ã§ã™ã€‚ + </notification> + <notification name="UnableToLoadScript"> + スクリプトをãƒãƒ¼ãƒ‰ã§ãã¾ã›ã‚“。 ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 + </notification> + <notification name="IncompleteInventory"> + ã‚ãªãŸã®æä¾›ã™ã‚‹ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã¯ã€ã“ã®å ´æ‰€ã§ã¯ã¾ã 全部æƒã„ã¾ã›ã‚“。 å°‘ã—ã—ã¦ã‹ã‚‰ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotModifyProtectedCategories" - > -ä¿è·ã•ã‚ŒãŸã‚«ãƒ†ã‚´ãƒªãƒ¼ã¯ä¿®æ£ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="CannotRemoveProtectedCategories" - > -ä¿è·ã•ã‚ŒãŸã‚«ãƒ†ã‚´ãƒªãƒ¼ã¯å‰Šé™¤ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="OfferedCard" - > -ã‚ãªãŸã¯[FIRST] [LAST]ã«ã‚³ãƒ¼ãƒªãƒ³ã‚°ãƒ»ã‚«ãƒ¼ãƒ‰ã‚’é€ã‚Šã¾ã—ãŸã€‚ - </notification> - - <notification - - name="UnableToBuyWhileDownloading" - > -オブジェクトデータã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ä¸ã¯è³¼å…¥ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotModifyProtectedCategories"> + ä¿è·ã•ã‚ŒãŸã‚«ãƒ†ã‚´ãƒªãƒ¼ã¯ä¿®æ£ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotRemoveProtectedCategories"> + ä¿è·ã•ã‚ŒãŸã‚«ãƒ†ã‚´ãƒªãƒ¼ã¯å‰Šé™¤ã§ãã¾ã›ã‚“。 + </notification> + <notification name="OfferedCard"> + ã‚ãªãŸã¯[FIRST] [LAST] ã« +コーリング・カードをé€ã‚Šã¾ã—ãŸã€‚ + </notification> + <notification name="UnableToBuyWhileDownloading"> + オブジェクトデータã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ä¸ã¯è³¼å…¥ã§ãã¾ã›ã‚“。 ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="UnableToLinkWhileDownloading" - > -オブジェクトデータã®ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ä¸ã¯ãƒªãƒ³ã‚¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="UnableToLinkWhileDownloading"> + オブジェクトデータã®ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ä¸ã¯ãƒªãƒ³ã‚¯ã§ãã¾ã›ã‚“。 ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -複数ã®ã‚ªãƒ¼ãƒŠãƒ¼ã‹ã‚‰åŒæ™‚ã«ã‚ªãƒ–ジェクトを購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + 複数ã®ã‚ªãƒ¼ãƒŠãƒ¼ã‹ã‚‰åŒæ™‚ã«ã‚ªãƒ–ジェクトを購入ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 å˜ä¸€ã®ã‚ªãƒ–ジェクトをé¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="ObjectNotForSale" - > -オブジェクトã¯è²©å£²å¯¾è±¡ã§ã¯ã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="EnteringGodMode" - > -レベル[LEVEL]ã®ã‚´ãƒƒãƒ‰ãƒ»ãƒ¢ãƒ¼ãƒ‰ã«å…¥ã‚Šã¾ã™ - </notification> - - <notification - - name="LeavingGodMode" - > -レベル[LEVEL]ã®ã‚´ãƒƒãƒ‰ãƒ»ãƒ¢ãƒ¼ãƒ‰ã‚’解除 - </notification> - - <notification - - name="CopyFailed" - > -コピー権é™ãŒãªã„ãŸã‚ã€ã‚³ãƒ”ーãŒå¤±æ•—ã—ã¾ã—ãŸã€‚ - </notification> - - <notification - - name="InventoryAccepted" - > -[NAME]ã¯ã€æŒã¡ç‰©ã®æ供をå—ã‘入れã¾ã—ãŸã€‚ - </notification> - - <notification - - name="InventoryDeclined" - > -[NAME]ã¯ã€æŒã¡ç‰©ã®æ供をæ–ã‚Šã¾ã—ãŸã€‚ - </notification> - - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> - - <notification - - name="CallingCardAccepted" - > -コーリング・カードãŒå—ç†ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="CallingCardDeclined" - > -コーリング・カードãŒæ‹’å¦ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="TeleportToLandmark" - > -本土ã«åˆ°é”ã—ã¾ã—ãŸã€‚[NAME]ãªã©ã®å ´æ‰€ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€ç”»é¢å³ä¸‹ã«ã‚ã‚‹æŒã¡ç‰©ãƒœã‚¿ãƒ³ã‚’クリックã—ã€ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ãƒ•ã‚©ãƒ«ãƒ€ã‚’é¸æŠžã—ã¦ãã ã•ã„。 + </notification> + <notification name="ObjectNotForSale"> + オブジェクトã¯è²©å£²å¯¾è±¡ã§ã¯ã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="EnteringGodMode"> + レベル[LEVEL]ã®ã‚´ãƒƒãƒ‰ãƒ»ãƒ¢ãƒ¼ãƒ‰ã«å…¥ã‚Šã¾ã™ + </notification> + <notification name="LeavingGodMode"> + レベル[LEVEL]ã®ã‚´ãƒƒãƒ‰ãƒ»ãƒ¢ãƒ¼ãƒ‰ã‚’解除 + </notification> + <notification name="CopyFailed"> + コピー権é™ãŒãªã„ãŸã‚ã€ã‚³ãƒ”ーã«å¤±æ•—ã—ã¾ã—㟠+ </notification> + <notification name="InventoryAccepted"> + [NAME]ã¯ã€æŒã¡ç‰©ã®æ供をå—ã‘入れã¾ã—ãŸã€‚ + </notification> + <notification name="InventoryDeclined"> + [NAME]ã¯ã€æŒã¡ç‰©ã®æ供をæ–ã‚Šã¾ã—ãŸã€‚ + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + コーリング・カードãŒå—ç†ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="CallingCardDeclined"> + コーリング・カードãŒæ‹’å¦ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="TeleportToLandmark"> + 本土ã«åˆ°é”ã—ã¾ã—ãŸã€‚ +[NAME]ãªã©ã®å ´æ‰€ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€ç”»é¢å³ä¸‹ã«ã‚る「æŒã¡ç‰©ã€ãƒœã‚¿ãƒ³ã‚’クリックã—ã€ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ï¼ˆLandmarks)フォルダをé¸æŠžã—ã¦ãã ã•ã„。 ランドマークをダブルクリックã—ãŸå¾Œã€Œãƒ†ãƒ¬ãƒãƒ¼ãƒˆã€ã‚’クリックã™ã‚‹ã¨ãã®å ´æ‰€ã¸ç§»å‹•ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="TeleportToPerson" - > -本土ã«åˆ°é”ã—ã¾ã—ãŸã€‚ä½äººã®[NAME]ã¨æŽ¥è§¦ã™ã‚‹ã«ã¯ã€ç”»é¢å³ä¸‹ã«ã‚ã‚‹æŒã¡ç‰©ãƒœã‚¿ãƒ³ã‚’クリックã—ã€ã‚³ãƒ¼ãƒªãƒ³ã‚°ãƒ»ã‚«ãƒ¼ãƒ‰ãƒ»ãƒ•ã‚©ãƒ«ãƒ€ã‚’é¸æŠžã—ã¦ãã ã•ã„。 -カードをダブルクリックã—ã€ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ãƒˆãƒ»ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’クリックã—ã€ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ä¿¡ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="CantSelectLandFromMultipleRegions" - > -サーãƒãƒ¼ã®å¢ƒç•Œã‚’越ãˆã¦åœŸåœ°ã‚’é¸æŠžã™ã‚‹ã“ã¨ã§ãã¾ã›ã‚“。 + </notification> + <notification name="TeleportToPerson"> + 本土ã«åˆ°é”ã—ã¾ã—ãŸã€‚ +ä½äººã®[NAME]ã¨æŽ¥è§¦ã™ã‚‹ã«ã¯ã€ç”»é¢å³ä¸‹ã«ã‚る「æŒã¡ç‰©ã€ãƒœã‚¿ãƒ³ã‚’クリックã—ã€ã‚³ãƒ¼ãƒªãƒ³ã‚°ã‚«ãƒ¼ãƒ‰ï¼ˆCalling Cards)フォルダをé¸æŠžã—ã¦ãã ã•ã„。 +カードをダブルクリックã—ã€ã€ŒIMã‚’é€ã‚‹ã€ã‚’クリックã—ã€ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ä¿¡ã—ã¦ãã ã•ã„。 + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + サーãƒãƒ¼ã®å¢ƒç•Œã‚’越ãˆã¦åœŸåœ°ã‚’é¸æŠžã™ã‚‹ã“ã¨ã§ãã¾ã›ã‚“。 ã‚‚ã£ã¨å°ã•ãªåœŸåœ°ã‚’é¸æŠžã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="GroupVote" - > -[NAME] ã¯æŠ•ç¥¨ã®ç”³è«‹ã‚’ã—ã¦ã„ã¾ã™ï¼š -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="今ã™ã投票ã™ã‚‹"/> - <button - - name="Later" - text="ã‚ã¨ã§"/> - </form> - </notification> - - <notification - - name="SystemMessage" - > + </notification> + <notification name="SearchWordBanned"> + コミュニティスタンダードã«æ˜Žè¨˜ã•ã‚Œã¦ã„るコンテンツ制é™ã«ã‚ˆã‚Šã€ã‚ãªãŸã®æ¤œç´¢èªžã®ä¸€éƒ¨ãŒé™¤å¤–ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="NoContentToSearch"> + å°‘ãªãã¨ã‚‚ã©ã‚Œã‹ä¸€ã¤ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã®ç¨®é¡žã‚’é¸æŠžã—ã¦æ¤œç´¢ã‚’è¡Œã£ã¦ãã ã•ã„。(PG, Mature, Adult) + </notification> + <notification name="GroupVote"> + [NAME] ã¯æŠ•ç¥¨ã®ç”³è«‹ã‚’ã—ã¦ã„ã¾ã™ï¼š [MESSAGE] - </notification> - - <notification - - name="EventNotification" - > -イベント通知: + <form name="form"> + <button name="VoteNow" text="今ã™ã投票ã™ã‚‹"/> + <button name="Later" text="ã‚ã¨ã§"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + イベント通知: [NAME] [DATE] - <form name="form"> - <button - - name="Teleport" - text="テレãƒãƒ¼ãƒˆ"/> - <button - - name="Description" - text="説明"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="TransferObjectsHighlighted" - > -ã“ã®åŒºç”»ä¸Šã«å˜åœ¨ã™ã‚‹ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã“ã®åŒºç”»ã®è³¼å…¥è€…ã«è²æ¸¡ã•ã‚Œã‚‹ã‚ªãƒ–ジェクトãŒã™ã¹ã¦å¼·èª¿è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ + <form name="form"> + <button name="Teleport" text="テレãƒãƒ¼ãƒˆ"/> + <button name="Description" text="説明"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + ã“ã®åŒºç”»ä¸Šã«å˜åœ¨ã™ã‚‹ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã“ã®åŒºç”»ã®è³¼å…¥è€…ã«è²æ¸¡ã•ã‚Œã‚‹ã‚ªãƒ–ジェクトãŒã™ã¹ã¦å¼·èª¿è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ *è²æ¸¡ã•ã‚Œã‚‹æ¨¹æœ¨ã‚„æ¤ç‰©ã¯ã€å¼·èª¿è¡¨ç¤ºã•ã‚Œã¾ã›ã‚“。 - <form name="form"> - <button - - name="Done" - text="完了"/> - </form> - </notification> - - <notification - - name="DeactivatedGesturesTrigger" - > -åŒã˜ãƒˆãƒªã‚¬ãƒ¼ã§ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã«ã—ãªã„ジェスãƒãƒ£ãƒ¼ï¼š + <form name="form"> + <button name="Done" text="完了"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + åŒã˜ãƒˆãƒªã‚¬ãƒ¼ã§ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã«ã—ãªã„ジェスãƒãƒ£ãƒ¼ï¼š [NAMES] - </notification> - - <notification - - name="NoQuickTime" - > -Apple社ã®QuickTimeãŒã‚·ã‚¹ãƒ†ãƒ ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ã¨æ€ã‚ã‚Œã¾ã™ã€‚ -ストリーミング・メディアã®å†ç”Ÿã‚’è¡Œã„ãŸã„å ´åˆã¯ã€QuickTimeã®ã‚µã‚¤ãƒˆï¼ˆhttp://www.apple.com/quicktime)ã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã€QuickTime Playerをインストールã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="OwnedObjectsReturned" - > -é¸æŠžã•ã‚ŒãŸåœŸåœ°ã®åŒºç”»ä¸Šã«ã‚ã£ãŸã‚ãªãŸã®ã‚ªãƒ–ジェクト㯠-ã‚ãªãŸã®æŒã¡ç‰©ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="OtherObjectsReturned" - > -é¸æŠžã•ã‚Œã¦ã„る土地ã®åŒºç”»ä¸Šã«ã‚ã£ãŸ - [FIRST] [LAST]ãŒæ‰€æœ‰ã™ã‚‹ã‚ªãƒ–ジェクトã¯ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="OtherObjectsReturned2" - > -é¸æŠžã•ã‚ŒãŸåœŸåœ°ã®åŒºç”»ä¸Šã«ã‚ã‚Šã€ä½äººã® -[NAME]ã®æ‰€æœ‰ã ã£ãŸã‚ªãƒ–ジェクトã¯ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="GroupObjectsReturned" - > -é¸æŠžã•ã‚Œã¦ã„る区画上ã«ã‚ã‚Šã€[GROUPNAME] ã¨ã„ã†ã‚°ãƒ«ãƒ¼ãƒ—ã¨å…±æœ‰ã ã£ãŸã‚ªãƒ–ジェクトã¯ã€ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="NoQuickTime"> + Apple社ã®QuickTimeãŒã‚·ã‚¹ãƒ†ãƒ ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ã¨æ€ã‚ã‚Œã¾ã™ã€‚ +ストリーミング・メディアã®å†ç”Ÿã‚’è¡Œã„ãŸã„å ´åˆã¯ã€QuickTimeã®ã‚µã‚¤ãƒˆï¼ˆhttp://www.apple.com/quicktime)ã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ã€QuickTime Player をインストールã—ã¦ãã ã•ã„。 + </notification> + <notification name="OwnedObjectsReturned"> + é¸æŠžã—ãŸåœŸåœ°ã®åŒºç”»ä¸Šã«ã‚ã£ãŸã‚ãªãŸã®ã‚ªãƒ–ジェクトã¯ã€ã‚ãªãŸã®æŒã¡ç‰©ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="OtherObjectsReturned"> + é¸æŠžã•ã‚Œã¦ã„る土地ã®åŒºç”»ä¸Šã«ã‚ã£ãŸ + [FIRST] [LAST] + ãŒæ‰€æœ‰ã™ã‚‹ã‚ªãƒ–ジェクトã¯ã€ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="OtherObjectsReturned2"> + é¸æŠžã•ã‚ŒãŸåœŸåœ°ã®åŒºç”»ä¸Šã«ã‚り〠+ä½äººã®[NAME]ã®æ‰€æœ‰ã ã£ãŸã‚ªãƒ–ジェクトã¯ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="GroupObjectsReturned"> + é¸æŠžã•ã‚Œã¦ã„る区画上ã«ã‚ã‚Šã€[GROUPNAME] ã¨ã„ã†ã‚°ãƒ«ãƒ¼ãƒ—ã¨å…±æœ‰ã ã£ãŸã‚ªãƒ–ジェクトã¯ã€ã‚ªãƒ¼ãƒŠãƒ¼ã®æŒã¡ç‰©ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ è²æ¸¡ã•ã‚Œã¦ã„ãŸè²æ¸¡å¯èƒ½ãªã‚ªãƒ–ジェクトã¯ã€å‰ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ グループã«è²æ¸¡ã•ã‚Œã¦ã„ãŸè²æ¸¡ä¸å¯èƒ½ãªã‚ªãƒ–ジェクトã¯ã€å‰Šé™¤ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="UnOwnedObjectsReturned" - > -é¸æŠžã•ã‚ŒãŸåœŸåœ°ã®åŒºç”»ä¸Šã«ã‚ã‚Šã€ã‚ãªãŸã®æ‰€æœ‰ã§ã€Œãªã‹ã£ãŸã€ã‚ªãƒ–ジェクトã¯ã€æœ¬æ¥ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="NotSafe" - > -ã“ã®åœŸåœ°ã¯ãƒ€ãƒ¡ãƒ¼ã‚¸ãŒæœ‰åŠ¹ï¼ˆã€Œå®‰å…¨ã§ã¯ãªã„ã€ï¼‰ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="UnOwnedObjectsReturned"> + é¸æŠžã•ã‚ŒãŸåœŸåœ°ã®åŒºç”»ä¸Šã«ã‚ã‚Šã€ã‚ãªãŸã®æ‰€æœ‰ã§ã€Œãªã‹ã£ãŸã€ã‚ªãƒ–ジェクトã¯ã€æœ¬æ¥ã®ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿”å´ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="NotSafe"> + ã“ã®åœŸåœ°ã¯ãƒ€ãƒ¡ãƒ¼ã‚¸ãŒæœ‰åŠ¹ï¼ˆã€Œå®‰å…¨ã§ã¯ãªã„ã€ï¼‰ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ ケガをã™ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。 命をè½ã¨ã—ãŸå ´åˆã¯ã€ãƒ›ãƒ¼ãƒ ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="NoFly" - > -ã“ã®åœŸåœ°ã¯é£›è¡ŒãŒç„¡åŠ¹ï¼ˆã€Œé£›è¡Œç¦æ¢ã€ï¼‰ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="NoFly"> + ã“ã®åœŸåœ°ã¯é£›è¡ŒãŒç„¡åŠ¹ï¼ˆã€Œé£›è¡Œç¦æ¢ã€ï¼‰ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ ã“ã“ã§é£›ã¶ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="PushRestricted" - > -ã“ã®åœŸåœ°ã§ã¯ã€Œãƒ—ッシングç¦æ¢ã€ã§ã™ã€‚ + </notification> + <notification name="PushRestricted"> + ã“ã®åœŸåœ°ã§ã¯ã€Œãƒ—ッシングç¦æ¢ã€ã§ã™ã€‚ 土地所有者以外ã¯ã“ã“ã§ä»–人をプッシュã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="NoVoice" - > -ã“ã®åœŸåœ°ã¯ãƒœã‚¤ã‚¹ãŒç„¡åŠ¹ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="NoBuild" - > -ã“ã®åœŸåœ°ã¯ã‚ªãƒ–ジェクトã®ä½œæˆç¦æ¢ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="NoVoice"> + ã“ã®åœŸåœ°ã¯ãƒœã‚¤ã‚¹ãŒç„¡åŠ¹ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="NoBuild"> + ã“ã®åœŸåœ°ã¯ã‚ªãƒ–ジェクトã®ä½œæˆç¦æ¢ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ ã“ã“ã§ã‚ªãƒ–ジェクトを作るã“ã¨ã¯ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="ScriptsStopped" - > -管ç†è€…ãŒã“ã®åœ°åŸŸå†…ã®ã‚¹ã‚¯ãƒªãƒ—トを一時åœæ¢ã•ã›ã¾ã—ãŸã€‚ - </notification> - - <notification - - name="ScriptsNotRunning" - > -ã“ã®åœ°åŸŸã§ã¯ã‚¹ã‚¯ãƒªãƒ—トã®ä½¿ç”¨ãŒç¦æ¢ã•ã‚Œã¦ã„ã¾ã™ - </notification> - - <notification - - name="NoOutsideScripts" - > -ã“ã®åœŸåœ°ã§ã¯å¤–部スクリプトãŒç„¡åŠ¹ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="ScriptsStopped"> + 管ç†è€…ãŒã“ã®åœ°åŸŸå†…ã®ã‚¹ã‚¯ãƒªãƒ—トを一時åœæ¢ã•ã›ã¾ã—ãŸã€‚ + </notification> + <notification name="ScriptsNotRunning"> + ã“ã®åœ°åŸŸã§ã¯ã‚¹ã‚¯ãƒªãƒ—トã®ä½¿ç”¨ãŒç¦æ¢ã•ã‚Œã¦ã„ã¾ã™ + </notification> + <notification name="NoOutsideScripts"> + ã“ã®åœŸåœ°ã§ã¯å¤–部スクリプトãŒç„¡åŠ¹ã«è¨å®šã•ã‚Œã¦ã„ã¾ã™ã€‚ (「外部スクリプトç¦æ¢ã€ï¼‰ -土地所有者以外ã®ã‚¹ã‚¯ãƒªãƒ—トã¯èµ·å‹•ã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="ClaimPublicLand" - > -自分ãŒã„る地域ã§ã®ã¿å…¬å…±ã®åœŸåœ°ã‚’ç²å¾—ã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="ObjectGiveItem" - > -[FIRST] [LAST]所有ã®[OBJECTFROMNAME]ã‹ã‚‰ã€[OBJECTNAME]ã¨ã„ã†[OBJECTTYPE]ãŒé€ã‚‰ã‚Œã¦ãã¾ã—ãŸã€‚ - <form name="form"> - <button - - name="Keep" - text="å—ã‘å–ã‚‹"/> - <button - - name="Discard" - text="ç ´æ£„"/> - <button - - name="Mute" - text="無視リストã¸"/> - </form> - </notification> - - <notification - - name="ObjectGiveItemUnknownUser" - > -(未知ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ï¼‰ 所有ã®[OBJECTFROMNAME]ã‹ã‚‰ã€ã‚ãªãŸã«[OBJECTNAME]ã¨ã„ã†[OBJECTTYPE]ãŒé€ã‚‰ã‚Œã¦ãã¾ã—ãŸã€‚ - <form name="form"> - <button - - name="Keep" - text="å—ã‘å–ã‚‹"/> - <button - - name="Discard" - text="ç ´æ£„"/> - <button - - name="Mute" - text="無視リストã¸"/> - </form> - </notification> - - <notification - - name="UserGiveItem" - > -[NAME]ã¯ã€ã‚ãªãŸã«[OBJECTNAME]ã¨ã„ã†åå‰ã®[OBJECTTYPE]を渡ã—ã¾ã—ãŸã€‚ - <form name="form"> - <button - - name="Keep" - text="å—ã‘å–ã‚‹"/> - <button - - name="Discard" - text="ç ´æ£„"/> - <button - - name="Mute" - text="無視リストã¸"/> - </form> - </notification> - - <notification - - name="GodMessage" - > -[NAME] -[MESSAGE] - </notification> - - <notification - - name="JoinGroup" - > -[MESSAGE] - <form name="form"> - <button - - name="Join" - text="å‚åŠ "/> - <button - - name="Decline" - text="辞退"/> - <button - - name="Info" - text="æƒ…å ±"/> - </form> - </notification> - - <notification - - name="TeleportOffered" - > -[NAME]ã¯ã‚ãªãŸã‚’テレãƒãƒ¼ãƒˆã§å‘¼ã³å¯„ã›ã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ï¼š - +土地所有者以外ã®ã‚¹ã‚¯ãƒªãƒ—トã¯èµ·å‹•ã§ãã¾ã›ã‚“ + </notification> + <notification name="ClaimPublicLand"> + 自分ãŒã„る地域ã§ã®ã¿å…¬å…±ã®åœŸåœ°ã‚’ç²å¾—ã§ãã¾ã™ã€‚ + </notification> + <notification name="RegionTPAccessBlocked"> + ã‚ãªãŸã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã«ã‚ˆã‚Šãã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã¸ã¯å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 年齢確èªã‚’è¡Œã†ã‹ã€æœ€æ–°ãƒ“ューワをインストールã—ã¦ãã ã•ã„。 + +ç¾åœ¨ã®ãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°åŒºåˆ†ã§ã‚¢ã‚¯ã‚»ã‚¹å¯èƒ½ãªã‚¨ãƒªã‚¢ã«é–¢ã™ã‚‹è©³ç´°ã¯ãƒŠãƒ¬ãƒƒã‚¸ãƒ™ãƒ¼ã‚¹ã‚’å‚ç…§ã—ã¦ãã ã•ã„。 + </notification> + <notification name="URBannedFromRegion"> + ã‚ãªãŸã¯åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã¸ã®ç«‹å…¥ãŒç¦æ¢ã•ã‚Œã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="NoTeenGridAccess"> + ã‚ãªãŸã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã§ã¯ãƒ†ã‚£ãƒ¼ãƒ³ã‚°ãƒªãƒƒãƒ‰ã«æŽ¥ç¶šã§ãã¾ã›ã‚“。 + </notification> + <notification name="NoHelpIslandTP"> + Help Islandã«ã¯æˆ»ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 +「Help Island Publicã€ã«è¡Œã〠+å†åº¦ãƒãƒ¥ãƒ¼ãƒˆãƒªã‚¢ãƒ«ã‚’è¡Œã£ã¦ãã ã•ã„。 + </notification> + <notification name="ImproperPaymentStatus"> + ã“ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«å…¥ã‚‹ãŸã‚ã«é©ã—ãŸæ”¯æ‰•ã„ステータスãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="MustGetAgeRgion"> + ã“ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«å…¥ã‚‹ã«ã¯å¹´é½¢ç¢ºèªæ¸ˆã¿ã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification name="MustGetAgeParcel"> + ã“ã®åŒºç”»ã«å…¥ã‚‹ã«ã¯å¹´é½¢ç¢ºèªæ¸ˆã¿ã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ + </notification> + <notification name="NoDestRegion"> + 目的地ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="NotAllowedInDest"> + 目的地ã«å…¥ã‚‹è¨±å¯ãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="RegionParcelBan"> + ç«‹å…¥ç¦æ¢ã•ã‚ŒãŸåŒºç”»ã‚’横æ–ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。 別ã®æ–¹æ³•ã‚’ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="TelehubRedirect"> + テレãƒãƒ–ã«è»¢é€ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="CouldntTPCloser"> + ã“れ以上目的地ã«è¿‘ã„å ´æ‰€ã«ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="TPCancelled"> + テレãƒãƒ¼ãƒˆãŒã‚ャンセルã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="FullRegionTryAgain"> + å…¥ã‚ã†ã¨ã—ã¦ã„る地域(リージョン)ã¯ç¾åœ¨æº€å“¡ã§ã™ã€‚ +ã—ã°ã‚‰ãã—ã¦ã‹ã‚‰å†åº¦ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="GeneralFailure"> + よãã‚る失敗 + </notification> + <notification name="RoutedWrongRegion"> + ç•°ãªã‚‹åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«è¿‚回ã•ã‚Œã¾ã—ãŸã€‚ ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="NoValidAgentID"> + エージェントIDãŒç„¡åŠ¹ã§ã™ã€‚ + </notification> + <notification name="NoValidSession"> + セッションIDãŒç„¡åŠ¹ã§ã™ã€‚ + </notification> + <notification name="NoValidCircuit"> + 回路コードãŒç„¡åŠ¹ã§ã™ã€‚ + </notification> + <notification name="NoValidTimestamp"> + タイムスタンプãŒç„¡åŠ¹ã§ã™ã€‚ + </notification> + <notification name="NoPendingConnection"> + 接続を生æˆã§ãã¾ã›ã‚“。 + </notification> + <notification name="InternalUsherError"> + 内部エラーãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ + </notification> + <notification name="NoGoodTPDestination"> + ã“ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã§ã¯é©åˆ‡ãªãƒ†ãƒ¬ãƒãƒ¼ãƒˆç›®çš„地ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="InternalErrorRegionResolver"> + 内部エラーãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ + </notification> + <notification name="NoValidLanding"> + 有効ãªç€åœ°ç‚¹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="NoValidParcel"> + 有効ãªåŒºç”»ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="ObjectGiveItem"> + [FIRST] [LAST]所有ã®ã€ +[OBJECTFROMNAME]ã‹ã‚‰ã€ +[OBJECTNAME]ã¨ã„ã†[OBJECTTYPE]ãŒé€ã‚‰ã‚Œã¦ãã¾ã—ãŸã€‚ + <form name="form"> + <button name="Keep" text="å—ã‘å–ã‚‹"/> + <button name="Discard" text="ç ´æ£„"/> + <button name="Mute" text="無視リストã¸"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + (未知ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ï¼‰ 所有ã®[OBJECTFROMNAME]ã‹ã‚‰ã€ +ã‚ãªãŸã«[OBJECTNAME]ã¨ã„ã†[OBJECTTYPE]ãŒé€ã‚‰ã‚Œã¦ãã¾ã—ãŸã€‚ + <form name="form"> + <button name="Keep" text="å—ã‘å–ã‚‹"/> + <button name="Discard" text="ç ´æ£„"/> + <button name="Mute" text="無視リストã¸"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME]ã¯ã€ã‚ãªãŸã«[OBJECTNAME]ã¨ã„ã†åå‰ã®[OBJECTTYPE]を渡ã—ã¾ã—ãŸã€‚ + <form name="form"> + <button name="Keep" text="å—ã‘å–ã‚‹"/> + <button name="Discard" text="ç ´æ£„"/> + <button name="Mute" text="無視リストã¸"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="テレãƒãƒ¼ãƒˆ"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="å‚åŠ "/> + <button name="Decline" text="辞退"/> + <button name="Info" text="æƒ…å ±"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME]ã¯ã‚ãªãŸã‚’テレãƒãƒ¼ãƒˆã§å‘¼ã³å¯„ã›ã‚ˆã†ã¨ã—ã¦ã„ã¾ã™ï¼š - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="テレãƒãƒ¼ãƒˆ"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="ã‚ã¨ã§"/> - <button - - name="GoNow..." - text="今ã™ãè¡Œã..."/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME]ã¯ã€ãƒ•ãƒ¬ãƒ³ãƒ‰ 登録を申ã—込んã§ã„ã¾ã™ã€‚ + <form name="form"> + <button name="Later" text="ã‚ã¨ã§"/> + <button name="GoNow..." text="今ã™ãè¡Œã"/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME]ã¯ã€ +フレンド登録を申ã—込んã§ã„ã¾ã™ã€‚ [MESSAGE] (デフォルトã§ãŠäº’ã„ã®ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ãƒ»ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ã‚’見るã“ã¨ãŒã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚) - <form name="form"> - <button - - name="Accept" - text="å—ã‘入れる"/> - <button - - name="Decline" - text="辞退"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME]ã¯ã€ãƒ•ãƒ¬ãƒ³ãƒ‰ 登録を申ã—込んã§ã„ã¾ã™ã€‚ + <form name="form"> + <button name="Accept" text="å—ã‘入れる"/> + <button name="Decline" text="辞退"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME]ã¯ã€ +フレンド登録を申ã—込んã§ã„ã¾ã™ã€‚ (デフォルトã§ãŠäº’ã„ã®ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ãƒ»ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ã‚’見るã“ã¨ãŒã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚) - <form name="form"> - <button - - name="Accept" - text="å—ã‘入れる"/> - <button - - name="Decline" - text="æ‹’å¦"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -[NAME]ã¯ã€ãƒ•ãƒ¬ãƒ³ãƒ‰ 登録をå—ã‘入れã¾ã—ãŸã€‚ - </notification> - - <notification - - name="FriendshipDeclined" - > -[NAME]ã¯ã€ãƒ•ãƒ¬ãƒ³ãƒ‰ 登録をæ–ã‚Šã¾ã—ãŸã€‚ - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST]ãŒã‚³ãƒ¼ãƒªãƒ³ã‚°ãƒ»ã‚«ãƒ¼ãƒ‰ã‚’é€ã£ã¦ãã¦ã„ã¾ã™ã€‚ -ã“ã‚Œã«ã‚ˆã‚Šã€ã‚ãªãŸã®æŒã¡ç‰©ã«ãƒ–ックマークãŒè¿½åŠ ã•ã‚Œã€ -ã“ã®ä½äººã«ã™ã°ã‚„ãIMã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ - <form name="form"> - <button - - name="Accept" - text="å—ã‘入れる"/> - <button - - name="Decline" - text="辞退"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -ã“ã®åœ°åŸŸã¯[MINUTES]分後ã«å†èµ·å‹•ã•ã‚Œã¾ã™ã€‚ + <form name="form"> + <button name="Accept" text="å—ã‘入れる"/> + <button name="Decline" text="æ‹’å¦"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + [NAME]ã¯ã€ãƒ•ãƒ¬ãƒ³ãƒ‰ 登録をå—ã‘入れã¾ã—ãŸã€‚ + </notification> + <notification name="FriendshipDeclined"> + [NAME]ã¯ã€ãƒ•ãƒ¬ãƒ³ãƒ‰ 登録をæ–ã‚Šã¾ã—ãŸã€‚ + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST]㌠+ã‚ãªãŸã«ã‚³ãƒ¼ãƒªãƒ³ã‚°ã‚«ãƒ¼ãƒ‰ã‚’é€ã£ã¦ãã¾ã—ãŸã€‚ +ã“ã‚Œã«ã‚ˆã‚Šã€ã‚ãªãŸã®æŒã¡ç‰©ã«ãƒ–ックマークãŒè¿½åŠ ã•ã‚Œã€ã“ã®ä½äººã«ã™ã°ã‚„ãIMã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + <form name="form"> + <button name="Accept" text="å—ã‘入れる"/> + <button name="Decline" text="辞退"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + ã“ã®åœ°åŸŸã¯[MINUTES]分後ã«å†èµ·å‹•ã•ã‚Œã¾ã™ã€‚ 強制ãƒã‚°ã‚¢ã‚¦ãƒˆã¨ãªã‚Šã¾ã™ã®ã§ã€ã“ã®åœ°åŸŸã®å¤–ã«å‡ºã¦ãã ã•ã„。 - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -ã“ã®åœ°åŸŸã¯[SECONDS]秒後ã«å†èµ·å‹•ã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="RegionRestartSeconds"> + ã“ã®åœ°åŸŸã¯[SECONDS]秒後ã«å†èµ·å‹•ã•ã‚Œã¾ã™ã€‚ 強制ãƒã‚°ã‚¢ã‚¦ãƒˆã¨ãªã‚Šã¾ã™ã®ã§ã€ã“ã®åœ°åŸŸã®å¤–ã«å‡ºã¦ãã ã•ã„。 - </notification> - - <notification - - name="LoadWebPage" - > -ウェブ・ページ[URL]ã‚’ãƒãƒ¼ãƒ‰ã—ã¾ã™ã‹ï¼Ÿ + </notification> + <notification name="LoadWebPage"> + ウェブ・ページ[URL]ã‚’ãƒãƒ¼ãƒ‰ã—ã¾ã™ã‹ï¼Ÿ [MESSAGE] ãƒãƒ¼ãƒ‰å…ƒã®ã‚ªãƒ–ジェクト:[OBJECTNAME]ã€ã‚ªãƒ¼ãƒŠãƒ¼ï¼š[NAME]? - <form name="form"> - <button - - name="Gotopage" - text="ページã«ç§»å‹•"/> - <button - - name="Cancel" - text="å–り消ã—"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -データベースã«[TYPE]ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ - </notification> - - <notification - - name="FailedToFindWearable" - > -データベースã«[DESC]ã¨ã„ã†åå‰ã®[TYPE]ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ - </notification> - - <notification - - name="ScriptQuestion" - > -「[NAME]ã€ãŒæ‰€æœ‰ã™ã‚‹ã‚ªãƒ–ジェクト「[OBJECTNAME]ã€ã‚’: + <form name="form"> + <button name="Gotopage" text="移動"/> + <button name="Cancel" text="å–り消ã—"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + データベースã«[TYPE]ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—㟠+ </notification> + <notification name="FailedToFindWearable"> + データベースã«[DESC]ã¨ã„ã†åå‰ã®[TYPE]ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ + </notification> + <notification name="InvalidWearable"> + ç€ç”¨ã—よã†ã¨ã—ã¦ã„るアイテムã¯ã‚ãªãŸã®ãƒ“ューワã§ã¯èªã¿è¾¼ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。 Second Lifeビューワを最新ã®ã‚‚ã®ã«ã‚¢ãƒƒãƒ—グレードã—ã¦ã‹ã‚‰ã“ã®ã‚¢ã‚¤ãƒ†ãƒ ã‚’ç€ç”¨ã—ã¦ãã ã•ã„。 + </notification> + <notification name="ScriptQuestion"> + 「[NAME]ã€ãŒæ‰€æœ‰ã™ã‚‹ã‚ªãƒ–ジェクト「[OBJECTNAME]ã€ã‚’: [QUESTIONS] よã‚ã—ã„ã§ã™ã‹ï¼Ÿ - <form name="form"> - <button - - name="Yes" - text="ã¯ã„"/> - <button - - name="No" - text="ã„ã„ãˆ"/> - <button - - name="Mute" - text="無視リストã«è¿½åŠ "/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -「[OBJECTNAME]ã€ãŒæ‰€æœ‰ã™ã‚‹ã‚ªãƒ–ジェクト「[NAME]ã€ã¯ã€æ¬¡ã®ã“ã¨ã‚’求ã‚ã¦ã„ã¾ã™ï¼š + <form name="form"> + <button name="Yes" text="ã¯ã„"/> + <button name="No" text="ã„ã„ãˆ"/> + <button name="Mute" text="無視リストã«è¿½åŠ "/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + 「[OBJECTNAME]ã€ãŒæ‰€æœ‰ã™ã‚‹ã‚ªãƒ–ジェクト「[NAME]ã€ã¯ã€æ¬¡ã®ã“ã¨ã‚’求ã‚ã¦ã„ã¾ã™ï¼š [QUESTIONS] ã“ã®ã‚ªãƒ–ジェクトã¨åˆ¶ä½œè€…ãŒä¿¡ç”¨ã§ããªã„å ´åˆã¯ã€ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’æ‹’å¦ã—ã¦ãã ã•ã„ã€‚è¿½åŠ æƒ…å ±ã¯ã€è©³ç´°ãƒœã‚¿ãƒ³ã‚’クリックã—ã¦ãã ã•ã„。 ã“ã®ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’許å¯ã—ã¾ã™ã‹ï¼Ÿ - <form name="form"> - <button - - name="Grant" - text="許å¯"/> - <button - - name="Deny" - text="æ‹’å¦"/> - <button - - name="Details" - text="詳細..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -[FIRST] [LAST]ã®ã€Œ[TITLE]〠+ <form name="form"> + <button name="Grant" text="許å¯"/> + <button name="Deny" text="æ‹’å¦"/> + <button name="Details" text="詳細..."/> + </form> + </notification> + <notification name="ScriptDialog"> + [FIRST] [LAST]ã®ã€Œ[TITLE]〠[MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="無視ã™ã‚‹"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -[GROUPNAME]ã®ã€Œ[TITLE]〠+ <form name="form"> + <button name="Ignore" text="無視ã™ã‚‹"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + [GROUPNAME]ã®ã€Œ[TITLE]〠[MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="無視ã™ã‚‹"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -L$[AMOUNT]ã‚’å—ã‘å–ã‚Šã¾ã—ãŸã€‚ + <form name="form"> + <button name="Ignore" text="無視ã™ã‚‹"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + L$[AMOUNT]ã‚’å—ã‘å–ã‚Šã¾ã—ãŸã€‚ オブジェクトãŠã‚ˆã³ä»–ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ãŒã‚ãªãŸã«ãŠé‡‘を支払ã£ãŸã‚ˆã†ã§ã™ã€‚ ã‚ãªãŸã®æ®‹é«˜ã¯ç”»é¢ã®å³ä¸Šã«è¡¨ç¤ºã•ã‚Œã¦ ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="FirstBalanceDecrease" - > -L$[AMOUNT]を支払ã„ã¾ã—ãŸã€‚ + </notification> + <notification name="FirstBalanceDecrease"> + L$[AMOUNT]を支払ã„ã¾ã—ãŸã€‚ ã‚ãªãŸã®æ®‹é«˜ã¯ç”»é¢ã®å³ä¸Šã«è¡¨ç¤ºã•ã‚Œã¦ ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="FirstSit" - > -ã‚ãªãŸã¯åº§ã£ã¦ã„ã¾ã™ã€‚ -矢å°ï¼ˆã¾ãŸã¯ AWSD)ã®ã‚ーを使ã£ã¦è¦–点を変ãˆã¾ã™ã€‚ + </notification> + <notification name="FirstSit"> + ã‚ãªãŸã¯åº§ã£ã¦ã„ã¾ã™ã€‚ +矢å°ï¼ˆã¾ãŸã¯ AWSD)ã®ã‚ーを使ã£ã¦ +視点を変ãˆã¾ã™ã€‚ ç«‹ã¡ä¸ŠãŒã‚‹ã«ã¯ã€Œç«‹ã¡ä¸ŠãŒã‚‹ã€ã‚’クリックã—ã¾ã™ã€‚ - </notification> - - <notification - - name="FirstMap" - > -地図をスクãƒãƒ¼ãƒ«ã™ã‚‹ã«ã¯ã€ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãƒ‰ãƒ©ãƒƒã‚°ã—ã¾ã™ã€‚ + </notification> + <notification name="FirstMap"> + 地図をスクãƒãƒ¼ãƒ«ã™ã‚‹ã«ã¯ã€ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãƒ‰ãƒ©ãƒƒã‚°ã—ã¾ã™ã€‚ テレãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€ãƒ€ãƒ–ルクリックã—ã¾ã™ã€‚ -å³å´ã®ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«ã‚’使用ã™ã‚‹ã¨ã€ç‰©ã‚’見ã¤ã‘ãŸã‚Šã€ -別ã®èƒŒæ™¯ã‚’表示ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="FirstBuild" - > -[SECOND_LIFE]ã«ã¯ã€æ–°ã—ã„オブジェクトを作るã“ã¨ãŒã§ãる地域ãŒã‚ã‚Šã¾ã™ã€‚ -作æˆã«ã¯ç”»é¢ä¸Šéƒ¨å·¦ã®ãƒ„ールãŒä½¿ãˆã€Ctrl ã‚ーや - Alt ã‚ーを押ã—ãŸã¾ã¾ã«ã™ã‚Œã°ç´ æ—©ãツールを切り替ãˆã‚‰ã‚Œã¾ã™ã€‚ - Escã‚ーを押ã™ã¨ã€ä½œæˆã¯çµ‚了ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -左クリックã«ã‚ˆã‚Šã€ç‰¹åˆ¥ãªã‚ªãƒ–ジェクトをæ“作ã§ãã¾ã™ã€‚ -マウス・ãƒã‚¤ãƒ³ã‚¿ãŒæ‰‹ã®ãƒžãƒ¼ã‚¯ã«å¤‰ã‚ã‚‹å ´åˆã€ -ãƒã‚¤ãƒ³ãƒˆã—ã¦ã„るオブジェクトをæ“作ã§ãã¾ã™ã€‚ -å³ã‚¯ãƒªãƒƒã‚¯ã«ã‚ˆã‚Šã€å®Ÿè¡Œå¯èƒ½ãªæ“作ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="FirstTeleport" - > -ã“ã®åœ°åŸŸã§ã¯ã€ãƒã‚¤ãƒ³ãƒˆé–“ã®ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãŒèªã‚られã¦ã„ã¾ã›ã‚“ã®ã§ã€æœ€ã‚‚è¿‘ã„テレãƒãƒ–周辺ã«ç§»å‹•ã—ã¾ã—ãŸã€‚ +å³å´ã®ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«ã‚’使用ã™ã‚‹ã¨ã€ç‰©ã‚’見ã¤ã‘ãŸã‚Šã€åˆ¥ã®èƒŒæ™¯ã‚’表示ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + </notification> + <notification name="FirstBuild"> + [SECOND_LIFE] ã«ã¯ã€ +æ–°ã—ã„オブジェクトを作るã“ã¨ãŒã§ãる地域ãŒã‚ã‚Šã¾ã™ã€‚ +作æˆã«ã¯ç”»é¢ä¸Šéƒ¨å·¦ã®ãƒ„ールãŒä½¿ãˆã€ +Ctrlã‚ーやAltã‚ーを押ã—ãŸã¾ã¾ã«ã™ã‚Œã° +ç´ æ—©ãツールを切り替ãˆã‚‰ã‚Œã¾ã™ã€‚ +Escã‚ーを押ã™ã¨ã€ä½œæˆã¯çµ‚了ã—ã¾ã™ã€‚ + </notification> + <notification name="FirstLeftClickNoHit"> + 左クリックã§ç‰¹åˆ¥ãªã‚ªãƒ–ジェクトをæ“作ã§ãã¾ã™ã€‚ +マウス・ãƒã‚¤ãƒ³ã‚¿ãŒæ‰‹ã®ãƒžãƒ¼ã‚¯ã«å¤‰ã‚ã‚‹ã¨ã€ãƒã‚¤ãƒ³ãƒˆã—ã¦ã„るオブジェクトをæ“作ã§ãã¾ã™ã€‚ +å³ã‚¯ãƒªãƒƒã‚¯ã§å®Ÿè¡Œå¯èƒ½ãªæ“作ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="FirstTeleport"> + ã“ã®åœ°åŸŸã§ã¯ã€ãƒã‚¤ãƒ³ãƒˆé–“ã®ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãŒèªã‚られã¦ã„ã¾ã›ã‚“ã®ã§ã€æœ€ã‚‚è¿‘ã„テレãƒãƒ–周辺ã«ç§»å‹•ã—ã¾ã—ãŸã€‚ ã‚ãªãŸã®ç›®çš„地ã¯ã€å¤§ããªæ¨™è˜ï¼ˆãƒ“ーコン)ã§è¡¨ç¤ºã•ã‚Œã¦ã„ã¾ã™ã€‚赤ã„矢å°ã«å‘ã‹ã£ã¦é€²ã‚€ã¨æ¨™è˜ï¼ˆãƒ“ーコン)ã¸è¾¿ã‚Šç€ãã¾ã™ã€‚ 矢å°ã‚’クリックã™ã‚‹ã¨æ¨™è˜ï¼ˆãƒ“ーコン)を消ã›ã¾ã™ - </notification> - - <notification - - name="FirstOverrideKeys" - > -ã‚ãªãŸã®ç§»å‹•ã‚ーをオブジェクトãŒæ“作ã—ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="FirstOverrideKeys"> + ã‚ãªãŸã®ç§»å‹•ã‚ーをオブジェクトãŒæ“作ã—ã¦ã„ã¾ã™ã€‚ 矢å°ã‹AWSDã®ã‚ーã§å‹•ä½œã‚’確èªã—ã¦ãã ã•ã„。 銃ãªã©ã®ã‚ªãƒ–ジェクトã ã¨ã€ä¸€äººç§°è¦–点(マウスルック)ã«å¤‰æ›´ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ Mã‚ーを押ã—ã¦å¤‰æ›´ã—ã¾ã™ã€‚ - </notification> - - <notification - - name="FirstAppearance" - > -ã‚ãªãŸã¯å®¹å§¿ã‚’編集ä¸ã§ã™ã€‚ + </notification> + <notification name="FirstAppearance"> + ã‚ãªãŸã¯å®¹å§¿ã‚’編集ä¸ã§ã™ã€‚ 回転ã€ã‚ºãƒ¼ãƒ ã™ã‚‹ã«ã¯çŸ¢å°ã‚ーを使ã„ã¾ã™ã€‚ 編集ãŒçµ‚ã‚ã£ãŸã‚‰ã€Œã™ã¹ã¦ä¿å˜ã€ã‚’クリックã—ã¦å®¹å§¿ã‚’ä¿å˜ã—ã€çµ‚了ã—ã¾ã™ã€‚ 容姿ã®ç·¨é›†ã¯ä½•åº¦ã§ã‚‚è¡Œãˆã¾ã™ã€‚ - </notification> - - <notification - - name="FirstInventory" - > -ã“ã‚Œã¯ã€ã‚ªãƒ–ジェクトã€ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã€æœã€ãã®ä»–ã‚ãªãŸã®æ‰€æœ‰ç‰©ãŒã™ã¹ã¦å…¥ã£ãŸã€ŒæŒã¡ç‰©ã€ã§ã™ã€‚ + </notification> + <notification name="FirstInventory"> + ã“ã‚Œã¯ã€ã‚ªãƒ–ジェクトã€ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã€æœã€ãã®ä»–ã‚ãªãŸã®æ‰€æœ‰ç‰©ãŒã™ã¹ã¦å…¥ã£ãŸã€ŒæŒã¡ç‰©ã€ã§ã™ã€‚ *マウスã§ã‚¢ãƒã‚¿ãƒ¼ã«ã‚ªãƒ–ジェクトやæœè£…フォルダをドラッグã—ã¦è£…ç€ã—ã¾ã™ã€‚ *オブジェクトを地é¢ã®ä¸Šã«ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã¨ã€å‘¨å›²ã®ä¸–ç•Œã«è¡¨ç¤ºã•ã›ã¾ã™ã€‚(Rez) *ノートカードをèªã‚€ã«ã¯ã€ãƒ€ãƒ–ルクリックã—ã¾ã™ã€‚ - </notification> - - <notification - - name="FirstSandbox" - > -ã“ã“ã¯ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹ã§ã™ã€‚ + </notification> + <notification name="FirstSandbox"> + ã“ã“ã¯ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹ã§ã™ã€‚ ã‚ãªãŸãŒã“ã“ã§ä½œã£ãŸã‚ªãƒ–ジェクトã¯ã‚ãªãŸãŒç«‹ã¡åŽ»ã£ãŸå¾Œã€å‰Šé™¤ã•ã‚Œã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。サンドボックスã¯å®šæœŸçš„ã«æ¸…掃ã•ã‚Œã¾ã™ã€‚詳細ã«ã¤ã„ã¦ã¯ã€ç”»é¢ä¸Šéƒ¨ã€åœ°åŸŸåã®éš£ã®æƒ…å ±ã‚’å‚ç…§ã—ã¦ãã ã•ã„。 サンドボックスã¯ç‰¹åˆ¥ãªã‚¨ãƒªã‚¢ã§ã€ç›®å°ã®ã‚µã‚¤ãƒ³ãŒã¤ã„ã¦ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="FirstFlexible" - > -ã“ã®ã‚ªãƒ–ジェクト㯠フレã‚シブルã§ã™ã€‚ -フレã‚シブル・ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã®ãƒã‚§ãƒƒã‚¯ãŒå¤–ã•ã‚Œã‚‹ã¾ã§ã¯ã€ -オブジェクトã¯ç‰©ç†çš„ã§ãªãファントムã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="FirstDebugMenus" - > -高度ãªè¨å®šã‚’有効ã«ã—ã¾ã—ãŸã€‚ -ã“ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã«ã¯ã€Second Life をデãƒãƒƒã‚°ã™ã‚‹ãƒ‡ãƒ™ãƒãƒƒãƒ‘ーã«ã¨ã£ã¦æœ‰ç”¨ãªæ©Ÿèƒ½ãŒã‚ã‚Šã¾ã™ã€‚ -ã“ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚’切り替ãˆã‚‹ã«ã¯ã€Windows ã§ã¯ Ctrl-Alt-Dを押ã—ã¾ã™ã€‚Macã®å ´åˆã¯ã€Cmd-Opt-Shift-Dを押ã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="FirstSculptedPrim" - > -スカルプトプリムを編集ã—ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="FirstFlexible"> + ã“ã®ã‚ªãƒ–ジェクト㯠フレã‚シブルã§ã™ã€‚ +フレã‚シブル・ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã®ãƒã‚§ãƒƒã‚¯ãŒå¤–ã•ã‚Œã‚‹ã¾ã§ã¯ã€ã‚ªãƒ–ジェクトã¯ç‰©ç†çš„ã§ãªãファントムã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。 + </notification> + <notification name="FirstDebugMenus"> + 高度ãªè¨å®šã‚’有効ã«ã—ã¾ã—ãŸã€‚ +ã“ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã«ã¯ã€ +Second Life をデãƒãƒƒã‚°ã™ã‚‹ãƒ‡ãƒ™ãƒãƒƒãƒ‘ーã«ã¨ã£ã¦ +有用ãªæ©Ÿèƒ½ãŒã‚ã‚Šã¾ã™ã€‚ +ã“ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚’切り替ãˆã‚‹ã«ã¯ã€ +Windowsã§ã¯Ctrl-Alt-Dを押ã—ã¾ã™ã€‚ +Macã®å ´åˆã¯ã€Cmd-Opt-Shift-Dを押ã—ã¦ãã ã•ã„。 + </notification> + <notification name="FirstSculptedPrim"> + スカルプトプリムを編集ã—ã¦ã„ã¾ã™ã€‚ スカルプトプリムã¯ã€å½¢çŠ¶ã‚’指定ã™ã‚‹ãŸã‚ã®ç‰¹åˆ¥ãªãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ¼ãŒå¿…è¦ã§ã™ã€‚ æŒã¡ç‰©ãƒ©ã‚¤ãƒ–ラリã§ã€ã‚¹ã‚«ãƒ«ãƒ—トテクスãƒãƒ£ãƒ¼ã®ã‚µãƒ³ãƒ—ルをå‚ç…§ã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="FirstMedia" - > -メディアã®å†ç”Ÿã‚’開始ã—ã¾ã—ãŸã€‚ オーディオ/ビデオã®ç’°å¢ƒè¨å®šã§ã€è‡ªå‹•çš„ã«ãƒ¡ãƒ‡ã‚£ã‚¢ã‚’å†ç”Ÿã™ã‚‹ã‚ˆã†ã«è¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ 注: ã“ã®è¨å®šã«ã‚ˆã‚Šã€ä¿¡é ¼ã—ãªã„メディア・サイトã«æŽ¥ç¶šã•ã‚Œã‚‹ã‚»ã‚ュリティ・リスクãŒä¼´ã„ã¾ã™ã€‚ - </notification> - - <notification - - name="MaxListSelectMessage" - > -ã“ã®ãƒªã‚¹ãƒˆã‹ã‚‰ã€ [MAX_SELECT] 個ã¾ã§ã®ã‚¢ã‚¤ãƒ†ãƒ ã‚’é¸æŠžã§ãã¾ã™ã€‚ - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME]ãŒã€ã‚ãªãŸã‚’ボイスãƒãƒ£ãƒƒãƒˆã‚³ãƒ¼ãƒ«ã«æ‹›å¾…ã—ã¦ã„ã¾ã™ã€‚ + </notification> + <notification name="FirstMedia"> + メディアã®å†ç”Ÿã‚’開始ã—ã¾ã—ãŸã€‚ +オーディオ/ビデオã®ç’°å¢ƒè¨å®šã§ã€è‡ªå‹•çš„ã«ãƒ¡ãƒ‡ã‚£ã‚¢ã‚’å†ç”Ÿã™ã‚‹ã‚ˆã†ã«è¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ +注: ã“ã®è¨å®šã«ã‚ˆã‚Šã€ä¿¡é ¼ã—ãªã„メディア・サイトã«æŽ¥ç¶šã•ã‚Œã‚‹ã‚»ã‚ュリティ・リスクãŒä¼´ã„ã¾ã™ã€‚ + </notification> + <notification name="MaxListSelectMessage"> + ã“ã®ãƒªã‚¹ãƒˆã‹ã‚‰[MAX_SELECT]個ã¾ã§ã®ã‚¢ã‚¤ãƒ†ãƒ ã‚’é¸æŠžã§ãã¾ã™ã€‚ + </notification> + <notification name="VoiceInviteP2P"> + [NAME]ãŒã€ã‚ãªãŸã‚’ボイスãƒãƒ£ãƒƒãƒˆã‚³ãƒ¼ãƒ«ã«æ‹›å¾…ã—ã¦ã„ã¾ã™ã€‚ コールã«å‚åŠ ã™ã‚‹ã«ã¯ã€Œå—ã‘入れるã€ã‚’クリックã—ã€æ‹›å¾…ã‚’æ–ã‚‹ã¨ãã¯ã€Œæ‹’å¦ã€ã‚’クリックã—ã¦ãã ã•ã„。ã“ã®ã‚³ãƒ¼ãƒ«ã‚’ã—ã¦ã„る人をミュートã«ã™ã‚‹å ´åˆã¯ã€ŒãƒŸãƒ¥ãƒ¼ãƒˆã€ã‚’クリックã—ã¦ãã ã•ã„。 - <form name="form"> - <button - - name="Accept" - text="å—ã‘入れる"/> - <button - - name="Decline" - text="æ‹’å¦"/> - <button - - name="Mute" - text="ミュート"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -[FIRST] [LAST]ã«ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ãƒˆãƒ»ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒé€ä¿¡ã•ã‚Œã€ 無視è¨å®šãŒè‡ªå‹•çš„ã«è§£é™¤ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -[FIRST] [LAST]ã«ãŠé‡‘を渡ã—ãŸãŸã‚〠無視è¨å®šãŒè‡ªå‹•çš„ã«è§£é™¤ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -[FIRST] [LAST]ã«æŒã¡ç‰©ã‚’渡ã—ãŸãŸã‚〠無視è¨å®šãŒè‡ªå‹•çš„ã«è§£é™¤ã•ã‚Œã¾ã—ãŸã€‚ - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME]ãŒã€ã‚°ãƒ«ãƒ¼ãƒ—[GROUP]ã¨ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã‚³ãƒ¼ãƒ«ã«å‚åŠ ã—ã¾ã—ãŸã€‚ + <form name="form"> + <button name="Accept" text="å—ã‘入れる"/> + <button name="Decline" text="æ‹’å¦"/> + <button name="Mute" text="ミュート"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + [FIRST] [LAST]ã« +インスタント・メッセージãŒé€ä¿¡ã•ã‚Œã€ç„¡è¦–è¨å®šã¯è‡ªå‹•çš„ã«è§£é™¤ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="AutoUnmuteByMoney"> + [FIRST] [LAST]ã«ãŠé‡‘を渡ã—ãŸãŸã‚〠無視è¨å®šãŒè‡ªå‹•çš„ã«è§£é™¤ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="AutoUnmuteByInventory"> + [FIRST] [LAST]ã«æŒã¡ç‰©ã‚’渡ã—ãŸãŸã‚〠無視è¨å®šãŒè‡ªå‹•çš„ã«è§£é™¤ã•ã‚Œã¾ã—ãŸã€‚ + </notification> + <notification name="VoiceInviteGroup"> + [NAME]ãŒã€ã‚°ãƒ«ãƒ¼ãƒ—[GROUP]ã¨ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã‚³ãƒ¼ãƒ«ã«å‚åŠ ã—ã¾ã—ãŸã€‚ コールã«å‚åŠ ã™ã‚‹ã«ã¯ã€Œå—ã‘入れるã€ã‚’クリックã—ã€æ‹›å¾…ã‚’æ–ã‚‹ã¨ãã¯ã€Œæ‹’å¦ã€ã‚’クリックã—ã¦ãã ã•ã„。ã“ã®ã‚³ãƒ¼ãƒ«ã‚’ã—ã¦ã„る人をミュートã«ã™ã‚‹å ´åˆã¯ã€ŒãƒŸãƒ¥ãƒ¼ãƒˆã€ã‚’クリックã—ã¦ãã ã•ã„。 - <form name="form"> - <button - - name="Accept" - text="å—ã‘入れる"/> - <button - - name="Decline" - text="æ‹’å¦"/> - <button - - name="Mute" - text="ミュート"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME]ãŒã€ä¼šè°ãƒãƒ£ãƒƒãƒˆã§ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã‚³ãƒ¼ãƒ«ã«å‚åŠ ã—ã¾ã—ãŸã€‚ + <form name="form"> + <button name="Accept" text="å—ã‘入れる"/> + <button name="Decline" text="æ‹’å¦"/> + <button name="Mute" text="ミュート"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME]ãŒã€ä¼šè°ãƒãƒ£ãƒƒãƒˆã§ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã‚³ãƒ¼ãƒ«ã«å‚åŠ ã—ã¾ã—ãŸã€‚ コールã«å‚åŠ ã™ã‚‹ã«ã¯ã€Œå—ã‘入れるã€ã‚’クリックã—ã€æ‹›å¾…ã‚’æ–ã‚‹ã¨ãã¯ã€Œæ‹’å¦ã€ã‚’クリックã—ã¦ãã ã•ã„。 ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’ミュート(消声)ã™ã‚‹å ´åˆã¯ã€ŒãƒŸãƒ¥ãƒ¼ãƒˆã€ã‚’クリックã—ã¦ãã ã•ã„。 - <form name="form"> - <button - - name="Accept" - text="å—ã‘入れる"/> - <button - - name="Decline" - text="æ‹’å¦"/> - <button - - name="Mute" - text="ミュート"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME]ãŒã€ã‚ãªãŸã‚’会è°ãƒãƒ£ãƒƒãƒˆã«æ‹›å¾…ã—ã¦ã„ã¾ã™ã€‚ + <form name="form"> + <button name="Accept" text="å—ã‘入れる"/> + <button name="Decline" text="æ‹’å¦"/> + <button name="Mute" text="ミュート"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME]ãŒã€ã‚ãªãŸã‚’会è°ãƒãƒ£ãƒƒãƒˆã«æ‹›å¾…ã—ã¦ã„ã¾ã™ã€‚ ãƒãƒ£ãƒƒãƒˆã«å‚åŠ ã™ã‚‹ã«ã¯ã€Œå—ã‘入れるã€ã‚’クリックã—ã€æ‹›å¾…ã‚’æ–ã‚‹ã¨ãã¯ã€Œæ‹’å¦ã€ã‚’クリックã—ã¦ãã ã•ã„。ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’ミュート(消声)ã™ã‚‹å ´åˆã¯ã€ŒãƒŸãƒ¥ãƒ¼ãƒˆã€ã‚’クリックã—ã¦ãã ã•ã„。 - <form name="form"> - <button - - name="Accept" - text="å—ã‘入れる"/> - <button - - name="Decline" - text="æ‹’å¦"/> - <button - - name="Mute" - text="ミュート"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -ã‚ãªãŸãŒå‚åŠ ã—よã†ã¨ã—ã¦ã„るボイスコール[VOICE_CHANNEL_NAME]ã¯ã€å‚åŠ è€…ãŒæœ€å¤§é™ã«é”ã—ã¾ã—ãŸã€‚後ã§ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -ã“ã®ã‚¨ãƒªã‚¢ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã¯æ··é›‘ã®ãŸã‚容é‡ã‚’超ãˆã¦ã—ã¾ã£ã¦ã„ã¾ã™ã€‚申ã—訳ã‚ã‚Šã¾ã›ã‚“ãŒã€ä»–ã®ã‚¨ãƒªã‚¢ã§ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã‚’ãŠè©¦ã—ãã ã•ã„ - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -[VOICE_CHANNEL_NAME]ã¸ã®æŽ¥ç¶šãŒåˆ‡æ–ã•ã‚Œã¾ã—ãŸã€‚空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME]ã¯ã€ã‚³ãƒ¼ãƒ«ã‚’終了ã—ã¾ã—ãŸã€‚空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME]ã¯ã€ã‚ãªãŸã®ã‚³ãƒ¼ãƒ«ã‚’æ‹’å¦ã—ã¾ã—ãŸã€‚空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME]ã¯ã€ã‚ãªãŸã®ã‚³ãƒ¼ãƒ«ã‚’å—ã‘å–ã‚Œã¾ã›ã‚“。空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -[VOICE_CHANNEL_NAME]ã¸ã®æŽ¥ç¶šã«å¤±æ•—ã—ã¾ã—ãŸã€‚時間をãŠã„ã¦ã€å†åº¦ã€è©¦ã¿ã¦ãã ã•ã„。空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ - </notification> - - <notification - - name="VoiceLoginRetry" - > -ã‚ãªãŸç”¨ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒ³ãƒãƒ«ã‚’作æˆã—ã¦ã„ã¾ã™ã€‚1分ã»ã©ã‹ã‹ã‚Šã¾ã™ã€‚ - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -é©åˆ‡ãªã‚°ãƒ«ãƒ¼ãƒ—ã®ãƒ¡ãƒ³ãƒãƒ¼ã§ã¯ãªã„ãŸã‚ã€åŒºç”»ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -排除ã•ã‚Œã¦ã„ã‚‹ãŸã‚ã€åŒºç”»ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -アクセス・リストã«å«ã¾ã‚Œã¦ã„ãªã„ãŸã‚ã€åŒºç”»ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 - </notification> - - <notification - - name="VoiceNotAllowed" - > -ã‚ãªãŸã«ã¯[VOICE_CHANNEL_NAME]ã®ãƒœã‚¤ã‚¹ãƒ»ãƒãƒ£ãƒƒãƒˆã«æŽ¥ç¶šã™ã‚‹æ¨©é™ãŒã‚ã‚Šã¾ã›ã‚“。 - </notification> - - <notification - - name="VoiceCallGenericError" - > -[VOICE_CHANNEL_NAME]ã®ãƒœã‚¤ã‚¹ãƒ»ãƒãƒ£ãƒƒãƒˆã«æŽ¥ç¶šä¸ã«ã€ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚後ã§ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 - </notification> - - <notification - - name="ServerVersionChanged" - > -到ç€ã—ãŸåœ°åŸŸã¯ç•°ãªã‚‹ã‚·ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚¿ãƒ¼ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§å®Ÿè¡Œã•ã‚Œã¦ã„ã¾ã™ã€‚ 詳細ã«ã¤ã„ã¦ã¯ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’クリックã—ã¦ãã ã•ã„。 - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -クリックã—ãŸURLã¯ã“ã®ã‚¦ã‚§ãƒ–ブラウザã§ã¯é–‹ã‘ã¾ã›ã‚“ - </notification> - - <global name="UnsupportedCPU"> -- ã‚ãªãŸã® CPU ã®é€Ÿåº¦ã¯å¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 - </global> - - <global name="UnsupportedGLRequirements"> -Second Life ã®ä½¿ç”¨ã«å¿…è¦ãªãƒãƒ¼ãƒ‰ã‚¦ã‚§ã‚¢ã®ç’°å¢ƒãŒæº€ãŸã•ã‚Œã¦ã„ãªã„よã†ã§ã™ã€‚ Second Life ã§ã¯ãƒžãƒ«ãƒãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ¼ã«å¯¾å¿œã—ãŸOpenGLグラフィック・カードãŒå¿…è¦ã§ã™ã€‚ ã“ã®å ´åˆã€ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ã®æœ€æ–°ãƒ‰ãƒ©ã‚¤ãƒãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã“ã¨ã€ãŠã‚ˆã³ã‚ªãƒšãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°ãƒ»ã‚·ã‚¹ãƒ†ãƒ ã«ã‚µãƒ¼ãƒ“ス・パックã¨ä¿®æ£ãƒ—ãƒã‚°ãƒ©ãƒ ãŒé©ç”¨ã•ã‚Œã¦ã„ã‚‹ã“ã¨ã‚’ã”確èªãã ã•ã„。 + <form name="form"> + <button name="Accept" text="å—ã‘入れる"/> + <button name="Decline" text="æ‹’å¦"/> + <button name="Mute" text="ミュート"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + ã‚ãªãŸãŒå‚åŠ ã—よã†ã¨ã—ã¦ã„るボイスコール[VOICE_CHANNEL_NAME]ã¯ã€å‚åŠ è€…ãŒæœ€å¤§é™ã«é”ã—ã¾ã—ãŸã€‚後ã§ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="ProximalVoiceChannelFull"> + ã“ã®ã‚¨ãƒªã‚¢ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã¯ã€æ··é›‘ã®ãŸã‚容é‡ã‚’超ãˆã¦ã—ã¾ã£ã¦ã„ã¾ã™ã€‚申ã—訳ã‚ã‚Šã¾ã›ã‚“ãŒã€ä»–ã®ã‚¨ãƒªã‚¢ã§ãƒœã‚¤ã‚¹ãƒãƒ£ãƒƒãƒˆã‚’ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="VoiceChannelDisconnected"> + [VOICE_CHANNEL_NAME]ã¸ã®æŽ¥ç¶šãŒåˆ‡æ–ã•ã‚Œã¾ã—ãŸã€‚空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME]ã¯ã€ã‚³ãƒ¼ãƒ«ã‚’終了ã—ã¾ã—ãŸã€‚空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME]ã¯ã€ã‚ãªãŸã®ã‚³ãƒ¼ãƒ«ã‚’æ‹’å¦ã—ã¾ã—ãŸã€‚空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME]ã¯ã€ã‚ãªãŸã®ã‚³ãƒ¼ãƒ«ã‚’å—ã‘å–ã‚Œã¾ã›ã‚“。空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="VoiceChannelJoinFailed"> + [VOICE_CHANNEL_NAME]ã¸ã®æŽ¥ç¶šã«å¤±æ•—ã—ã¾ã—ãŸã€‚時間をãŠã„ã¦ã€å†åº¦ã€è©¦ã¿ã¦ãã ã•ã„。空間ボイスãƒãƒ£ãƒƒãƒˆã«å†æŽ¥ç¶šã•ã‚Œã¾ã™ã€‚ + </notification> + <notification name="VoiceLoginRetry"> + ã‚ãªãŸç”¨ã®ãƒœã‚¤ã‚¹ãƒãƒ£ãƒ³ãƒãƒ«ã‚’作æˆã—ã¦ã„ã¾ã™ã€‚1分ã»ã©ã‹ã‹ã‚Šã¾ã™ã€‚ + </notification> + <notification name="Cannot enter parcel: not a group member"> + é©åˆ‡ãªã‚°ãƒ«ãƒ¼ãƒ—ã®ãƒ¡ãƒ³ãƒãƒ¼ã§ã¯ãªã„ãŸã‚ã€åŒºç”»ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="Cannot enter parcel: banned"> + ç«‹å…¥ç¦æ¢ã•ã‚Œã¦ã„ã‚‹ãŸã‚ã€åŒºç”»ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="Cannot enter parcel: not on access list"> + アクセス・リストã«å«ã¾ã‚Œã¦ã„ãªã„ãŸã‚ã€åŒºç”»ã«å…¥ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 + </notification> + <notification name="VoiceNotAllowed"> + ã‚ãªãŸã«ã¯[VOICE_CHANNEL_NAME]ã®ãƒœã‚¤ã‚¹ãƒ»ãƒãƒ£ãƒƒãƒˆã«æŽ¥ç¶šã™ã‚‹æ¨©é™ãŒã‚ã‚Šã¾ã›ã‚“。 + </notification> + <notification name="VoiceCallGenericError"> + [VOICE_CHANNEL_NAME]ã®ãƒœã‚¤ã‚¹ãƒ»ãƒãƒ£ãƒƒãƒˆã«æŽ¥ç¶šä¸ã«ã€ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚後ã§ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。 + </notification> + <notification name="ServerVersionChanged"> + 到ç€ã—ãŸåœ°åŸŸã¯ç•°ãªã‚‹ã‚·ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚¿ãƒ¼ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§å®Ÿè¡Œã•ã‚Œã¦ã„ã¾ã™ã€‚ 詳細ã«ã¤ã„ã¦ã¯ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’クリックã—ã¦ãã ã•ã„。 + </notification> + <notification name="UnableToOpenCommandURL"> + クリックã—ãŸURLã¯ã“ã®ã‚¦ã‚§ãƒ–ブラウザã§ã¯é–‹ã‘ã¾ã›ã‚“ + </notification> + <global name="UnsupportedCPU"> + - ã‚ãªãŸã® CPU ã®é€Ÿåº¦ã¯å¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 + </global> + <global name="UnsupportedGLRequirements"> + Second Life ã®ä½¿ç”¨ã«å¿…è¦ãªãƒãƒ¼ãƒ‰ã‚¦ã‚§ã‚¢ã®ç’°å¢ƒãŒæº€ãŸã•ã‚Œã¦ã„ãªã„よã†ã§ã™ã€‚ Second Life ã§ã¯ãƒžãƒ«ãƒãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ¼ã«å¯¾å¿œã—ãŸOpenGLグラフィック・カードãŒå¿…è¦ã§ã™ã€‚ ã“ã®å ´åˆã€ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ã®æœ€æ–°ãƒ‰ãƒ©ã‚¤ãƒãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã“ã¨ã€ãŠã‚ˆã³ã‚ªãƒšãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°ãƒ»ã‚·ã‚¹ãƒ†ãƒ ã«ã‚µãƒ¼ãƒ“ス・パックã¨ä¿®æ£ãƒ—ãƒã‚°ãƒ©ãƒ ãŒé©ç”¨ã•ã‚Œã¦ã„ã‚‹ã“ã¨ã‚’ã”確èªãã ã•ã„。 å•é¡ŒãŒè§£æ±ºã•ã‚Œãªã„å ´åˆã«ã¯ã€æ¬¡ã®ã‚µã‚¤ãƒˆã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ãã ã•ã„。 http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- ã‚ãªãŸã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ã¯å¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 - </global> - - <global name="UnsupportedRAM"> -- ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ ・メモリã¯å¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 - </global> - - <global name="PermYes"> -ã¯ã„ - </global> - - <global name="PermNo"> -ã„ã„㈠- </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - ã‚ãªãŸã®ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ãƒ»ã‚«ãƒ¼ãƒ‰ã¯å¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 + </global> + <global name="UnsupportedRAM"> + - ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ ・メモリã¯å¿…é ˆå‹•ä½œç’°å¢ƒã®æ¡ä»¶ã‚’満ãŸã—ã¦ã„ã¾ã›ã‚“。 + </global> + <global name="PermYes"> + ã¯ã„ + </global> + <global name="PermNo"> + ã„ã„㈠+ </global> </notifications> - diff --git a/indra/newview/skins/default/xui/ja/panel_group_general.xml b/indra/newview/skins/default/xui/ja/panel_group_general.xml index 505762bf1251137e378a2998375b3e8b6f15cf8c..ea2953038e597b561ed10f60532fa2350aabe5d3 100644 --- a/indra/newview/skins/default/xui/ja/panel_group_general.xml +++ b/indra/newview/skins/default/xui/ja/panel_group_general.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="一般" name="general_tab"> <string name="help_text"> - [一般]タブã«ã¯ã€ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«é–¢ã™ã‚‹ + 「一般ã€ã‚¿ãƒ–ã«ã¯ã€ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«é–¢ã™ã‚‹ ä¸€èˆ¬æƒ…å ±ã€ã‚ªãƒ¼ãƒŠãƒ¼ã¨è¡¨ç¤ºå¯èƒ½ãªãƒ¡ãƒ³ãƒãƒ¼ã®ãƒªã‚¹ãƒˆ -一般的ãª[グループ環境è¨å®š]ã€ãƒ¡ãƒ³ãƒãƒ¼ã®ã‚ªãƒ—ションãŒå«ã¾ã‚Œã¾ã™ã€‚ +一般的ãªã€Œã‚°ãƒ«ãƒ¼ãƒ—環境è¨å®šã€ã€ãƒ¡ãƒ³ãƒãƒ¼ã®ã‚ªãƒ—ションãŒå«ã¾ã‚Œã¾ã™ã€‚ オプションã®ä¸Šã§ãƒžã‚¦ã‚¹ã‚«ãƒ¼ã‚½ãƒ«ã‚’å‹•ã‹ã™ã¨ã€ãƒ˜ãƒ«ãƒ—æƒ…å ±ã‚’å¾—ã‚‰ã‚Œã¾ã™ã€‚ </string> @@ -49,7 +49,17 @@ <check_box label="会員募集" name="open_enrollement" tool_tip="招待状ãªã—ã«è‡ªç”±ã«ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«åŠ å…¥ã™ã‚‹ã“ã¨ã‚’許å¯ã™ã‚‹ã‹ã©ã†ã‹ã‚’指定ã—ã¾ã™"/> <check_box label="入会費:L$" name="check_enrollment_fee" tool_tip="ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã¸ã®å‚åŠ ã«å…¥ä¼šè²»ã‚’å¿…é ˆã¨ã™ã‚‹ã‹ã©ã†ã‹ã‚’指定ã—ã¾ã™"/> <spinner name="spin_enrollment_fee" tool_tip="「入会費ã€ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹å ´åˆã€æ–°è¦ä¼šå“¡ã¯å…¥ä¼šæ™‚ã«ã“ã“ã«æŒ‡å®šã•ã‚ŒãŸé‡‘é¡ã‚’支払ã†å¿…è¦ãŒã‚ã‚Šã¾ã™"/> - + <combo_box name="group_mature_check" tool_tip="ã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±ãŒMatureå‘ã‘ã‹ã©ã†ã‹ã®è¨å®šã‚’ã—ã¾ã™ã€‚"> + <combo_item name="select_mature"> + - Matureã®é¸æŠž - + </combo_item> + <combo_item name="mature"> + Matureコンテンツ + </combo_item> + <combo_item name="pg"> + PGコンテンツ + </combo_item> + </combo_box> <panel name="title_container"> <text name="active_title_label"> ç§ã®ã‚¢ã‚¯ãƒ†ã‚£ãƒ–・タイトル @@ -57,7 +67,7 @@ <combo_box name="active_title" tool_tip="ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—をアクティブè¨å®šã«ã—ãŸéš›ã‚¢ãƒã‚¿ãƒ¼ã®ãƒãƒ¼ãƒ ã‚¿ã‚°ã«è¡¨ç¤ºã•ã‚Œã‚‹ã‚¿ã‚¤ãƒˆãƒ«ã®è¨å®š"/> </panel> <check_box label="グループ通知をå—ä¿¡" name="receive_notices" tool_tip="グループã‹ã‚‰ã®é€šçŸ¥ã‚’å—ä¿¡ã™ã‚‹ã‹ã©ã†ã‹ã‚’指定ã—ã¾ã™ã€‚ ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ãŒã‚¹ãƒ‘ム行為をã—ã¦ã„ã‚‹å ´åˆã¯ã€ã“ã®ãƒœãƒƒã‚¯ã‚¹ã®ãƒã‚§ãƒƒã‚¯ã‚’外ã—ã¦ãã ã•ã„"/> - <check_box label="プロフィールã«ï½¸ï¾žï¾™ï½°ï¾Œï¾Ÿã‚’表示" name="list_groups_in_profile" tool_tip="ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã‚’ã‚ãªãŸã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«ã«è¡¨ç¤ºã™ã‚‹ã‹ã©ã†ã‹ã‚’è¨å®šã—ã¾ã™"/> + <check_box label="プãƒãƒ•ã‚£ãƒ¼ãƒ«ã«è¡¨ç¤º" name="list_groups_in_profile" tool_tip="ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã‚’ã‚ãªãŸã®ãƒ—ãƒãƒ•ã‚£ãƒ¼ãƒ«ã«è¡¨ç¤ºã™ã‚‹ã‹ã©ã†ã‹ã‚’è¨å®šã—ã¾ã™"/> </panel> <string name="incomplete_member_data_str"> メンãƒãƒ¼ãƒ»ãƒ‡ãƒ¼ã‚¿ã‚’検索 diff --git a/indra/newview/skins/default/xui/ja/panel_group_land_money.xml b/indra/newview/skins/default/xui/ja/panel_group_land_money.xml index 9331071a88c9f62da0c57e23e4aa0f385ca965b8..f55dbf90098f68a5baa0361daff66e423856e032 100644 --- a/indra/newview/skins/default/xui/ja/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/ja/panel_group_land_money.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="土地ã¨L$" name="land_money_tab"> <string name="help_text"> - グループ所有ã®åœŸåœ°ã¯è²¢çŒ®å€¤ã®è©³ç´°ã¨å…±ã«è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚土地利用ã®åˆè¨ˆãŒå¯„付ç·é¡ã‹ãれ以下ã«ãªã‚‹ã¾ã§ã¯è¦å‘ŠãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚「詳細ã€ã¨ã€Œè²©å£²ã€ã‚¿ãƒ–ã«ã‚°ãƒ«ãƒ¼ãƒ—ã®è³‡é‡‘ã«é–¢ã™ã‚‹æƒ…å ±ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ + グループ所有地一覧ã¯ã€å¯„付ã«é–¢ã™ã‚‹è©³ç´°ã¨ä¸€ç·’ã«è¡¨ç¤ºã•ã‚Œã¦ã„ã¾ã™ã€‚ 「土地利用ã®åˆè¨ˆã€ãŒã€Œå¯„付ç·é¡ã€ä»¥ä¸‹ã€ã¾ãŸã¯åŒã˜ã«ãªã‚‹ã¾ã§è¦å‘ŠãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ 「計画ã€ã€ã€Œè©³ç´°ã€ã€ã€Œè²©å£²ã€ã‚¿ãƒ–ã«ã¯ã‚°ãƒ«ãƒ¼ãƒ—ã®è³‡é‡‘ã«é–¢ã™ã‚‹æƒ…å ±ãŒæŽ²è¼‰ã•ã‚Œã¦ã„ã¾ã™ã€‚ </string> <button label="?" name="help_button"/> <string name="cant_view_group_land_text"> @@ -19,6 +19,7 @@ <scroll_list name="group_parcel_list"> <column label="区画å" name="name"/> <column label="地域(リージョン)" name="location"/> + <column label="種類" name="type"/> <column label="é¢ç©" name="area"/> <column label="" name="hidden"/> </scroll_list> @@ -57,6 +58,11 @@ グループL$ </text> <tab_container name="group_money_tab_container"> + <panel label="計画" name="group_money_planning_tab"> + <text_editor name="group_money_planning_text"> + 計算ä¸... + </text_editor> + </panel> <panel label="詳細" name="group_money_details_tab"> <text_editor name="group_money_details_text"> 計算ä¸â€¦ diff --git a/indra/newview/skins/default/xui/ja/panel_group_notices.xml b/indra/newview/skins/default/xui/ja/panel_group_notices.xml index 35b072a1aef5998c91845f9d082ab379c19aa68c..090ae2e329b0f31ea8b32d68f94bcf58de2e136d 100644 --- a/indra/newview/skins/default/xui/ja/panel_group_notices.xml +++ b/indra/newview/skins/default/xui/ja/panel_group_notices.xml @@ -16,7 +16,7 @@ </text> <text name="lbl2"> 通知ã¯14日間ä¿å˜ã•ã‚Œã¾ã™ã€‚閲覧ã—ãŸã„通知をクリックã—ã¦ãã ã•ã„。 -æ–°ç€ã®é€šçŸ¥ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã«ã¯ã€[æ›´æ–°]ボタンをクリックã—ã¾ã™ã€‚ +æ–°ç€ã®é€šçŸ¥ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã«ã¯ã€ã€Œæ›´æ–°ã€ãƒœã‚¿ãƒ³ã‚’クリックã—ã¾ã™ã€‚ ãŸã ã—ã€å„グループã®é€šçŸ¥ãƒªã‚¹ãƒˆã¯1æ—¥ã‚ãŸã‚Š200通ã«åˆ¶é™ã•ã‚Œã¾ã™ã€‚ </text> <scroll_list name="notice_list"> diff --git a/indra/newview/skins/default/xui/ja/panel_notifications_channel.xml b/indra/newview/skins/default/xui/ja/panel_notifications_channel.xml index 7cb7f75a055ada045da0b6fe0959ecbb8786c425..5723535fd2185aa522e74395770e93c905f236ac 100644 --- a/indra/newview/skins/default/xui/ja/panel_notifications_channel.xml +++ b/indra/newview/skins/default/xui/ja/panel_notifications_channel.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel name="notifications_panel"> - <layout_stack> + <layout_stack name="stack1"> <scroll_list name="notifications_list"> <column label="åå‰" name="name"/> <column label="コンテンツ" name="content"/> diff --git a/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml b/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml index e22aca4a124c20ec3e34f4f7d8ed92aa74accf0d..cc2421c9e955268471e8e5ad22029a856b6365e8 100644 --- a/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/ja/panel_preferences_chat.xml @@ -17,7 +17,7 @@ <text length="1" name="text_box2" type="string"> ãƒãƒ£ãƒƒãƒˆãƒ»ã‚«ãƒ©ãƒ¼ï¼š </text> - <color_swatch label="è²´æ–¹" name="user" width="56"/> + <color_swatch label="自分" name="user" width="56"/> <color_swatch label="ãã®ä»–" name="agent" left_delta="60"/> <color_swatch label="IM" name="im"/> <color_swatch label="システム" name="system"/> diff --git a/indra/newview/skins/default/xui/ja/panel_preferences_general.xml b/indra/newview/skins/default/xui/ja/panel_preferences_general.xml index 923e998e5523274a87d6b911c557641a7f69cc1a..83b21b87d28ef2cb7b1c2404463bee959a0a5e79 100644 --- a/indra/newview/skins/default/xui/ja/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/ja/panel_preferences_general.xml @@ -34,6 +34,26 @@ <check_box label="解åƒåº¦ç‹¬ç«‹ã‚¹ã‚±ãƒ¼ãƒ«ã‚’使用" name="ui_auto_scale"/> <spinner label="退å¸ã¾ã§ã®æ™‚間:" name="afk_timeout_spinner"/> <check_box label="リンデン・ドル(L$)ã®æ”¯æ‰•ã„/å—ã‘å–りを通知" name="notify_money_change_checkbox"/> + <text name="maturity_desired_label"> + レーティング区分: + </text> + <text name="maturity_desired_prompt"> + アクセスã—ãŸã„コンテンツ: + </text> + <combo_box name="maturity_desired_combobox"> + <combo_item name="Desired_Adult"> + PGã€Mature〠Adult + </combo_item> + <combo_item name="Desired_Mature"> + PGã¨Mature + </combo_item> + <combo_item name="Desired_PG"> + PGé™å®š + </combo_item> + </combo_box> + <text name="maturity_desired_textbox"> + PGé™å®š + </text> <text length="1" name="start_location_textbox" type="string"> ãƒã‚°ã‚¤ãƒ³ä½ç½®ï¼š </text> @@ -88,9 +108,15 @@ <combo_item length="1" name="French" type="string"> Français (フランス語) – ベータ </combo_item> + <combo_item name="Italian"> + Italiano (イタリア語) - ベータ + </combo_item> <combo_item name="Hungarian"> Magyar (ãƒãƒ³ã‚¬ãƒªãƒ¼èªž) - ベータ </combo_item> + <combo_item name="Dutch"> + Nederlands (オランダ語) - ベータ + </combo_item> <combo_item name="Polish"> Polski (ãƒãƒ¼ãƒ©ãƒ³ãƒ‰èªž) - ベータ </combo_item> @@ -100,6 +126,9 @@ <combo_item name="Russian"> РуÑÑкий (ãƒã‚·ã‚¢èªž) - ベータ </combo_item> + <combo_item name="Turkish"> + Türkçe (トルコ語) - ベータ + </combo_item> <combo_item name="Ukrainian"> УкраїнÑька (ウクライナ語) - ベータ </combo_item> diff --git a/indra/newview/skins/default/xui/ja/panel_region_covenant.xml b/indra/newview/skins/default/xui/ja/panel_region_covenant.xml index 81822c5e47e79a46f3b5f44b4a2bda132b279ed2..169f9221499f0358611a8f38741b21a2fde915a4 100644 --- a/indra/newview/skins/default/xui/ja/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/ja/panel_region_covenant.xml @@ -1,50 +1,81 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="約款" name="Covenant"> + <text font="SansSerifLarge" name="estate_section_lbl"> + ä¸å‹•ç”£ï¼š + </text> + <text name="estate_name_lbl"> + åå‰ï¼š + </text> + <text name="estate_name_text"> + メインランド + </text> + <text name="estate_owner_lbl"> + オーナー: + </text> + <text name="estate_owner_text"> + (無) + </text> + <text name="estate_cov_lbl"> + 約款: + </text> + <text name="covenant_timestamp_text"> + 最終更新日:1969å¹´12月31日(水)16:00:00 + </text> + <button label="?" name="covenant_help"/> + <text_editor bottom="-263" height="178" name="covenant_editor"> + ã“ã®ä¸å‹•ç”£ã«ã¯ç´„款ãŒã‚ã‚Šã¾ã›ã‚“。 + </text_editor> + <button label="リセット" name="reset_covenant"/> <text name="covenant_help_text"> - ç´„æ¬¾æƒ…å ±ã«å¯¾ã™ã‚‹å¤‰æ›´ã¯ã€ä¸å‹•ç”£å†…ã®ã™ã¹ã¦ã®åŒºç”»ã«ç¤ºã•ã‚Œã¾ã™ã€‚ + 約款ã®å¤‰æ›´ã¯ä¸å‹•ç”£å…¨åŒºç”»ã«é©ç”¨ã¨ãªã‚Šã¾ã™ã€‚ </text> - <text name="region_name_lbl"> + <text name="covenant_instructions"> + ã“ã®ä¸å‹•ç”£ã®ç´„款ã®å¤‰æ›´ã™ã‚‹ã«ã¯ã€ +ノートカードをドラッグ&ドãƒãƒƒãƒ—ã—ã¦ãã ã•ã„。 + </text> + <text bottom_delta="-34" font="SansSerifLarge" name="region_section_lbl"> 地域: </text> + <text name="region_name_lbl"> + åå‰ï¼š + </text> <text name="region_name_text"> - (ä¸æ˜Žï¼‰ + leyla </text> - <text name="estate_name_lbl"> - ä¸å‹•ç”£ï¼š + <text name="region_landtype_lbl"> + 種類: </text> - <text name="estate_name_text"> - (ä¸æ˜Žï¼‰ + <text name="region_landtype_text"> + メインランド/ホームステッド </text> - <text name="covenent_instructions"> - ä¸å‹•ç”£ç´„款を変更ã™ã‚‹ã«ã¯ã€ãƒŽãƒ¼ãƒˆã‚«ãƒ¼ãƒ‰ã‚’ドラッグ アンド ドãƒãƒƒãƒ—ã—ã¦ãã ã•ã„。 + <text name="region_maturity_lbl"> + 区分: </text> - <button label="?" name="covenant_help" /> - <button label="リセット" name="reset_covenant" /> - <text name="estate_owner_lbl"> - ä¸å‹•ç”£æ‰€æœ‰è€…: + <text name="region_maturity_text"> + Adult </text> - <text name="estate_owner_text"> - (ä¸æ˜Žï¼‰ + <text name="resellable_lbl"> + å†è²©ï¼š </text> <text name="resellable_clause"> - ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯å†è²©ãŒå¯èƒ½ãªå ´åˆã¨ä¸å¯èƒ½ãªå ´åˆãŒã‚ã‚Šã¾ã™ã€‚ + ã“ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«ã‚る土地ã¯å†è²©ã§ãã¾ã›ã‚“。 + </text> + <text name="changeable_lbl"> + å†åˆ†å‰²ï¼š </text> <text name="changeable_clause"> - ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯çµ±åˆï¼å†åˆ†å‰²ãŒå¯èƒ½ãªå ´åˆã¨ä¸å¯èƒ½ãªå ´åˆãŒã‚ã‚Šã¾ã™ã€‚ + ã“ã®åœ°åŸŸï¼ˆãƒªãƒ¼ã‚¸ãƒ§ãƒ³ï¼‰ã«ã‚る土地ã¯çµ±åˆã¾ãŸã¯åˆ†å‰²ãŒã§ãã¾ã›ã‚“。 </text> - <text_editor name="covenant_editor"> - ãƒãƒ¼ãƒ‰ä¸ï¼Žï¼Žï¼Ž - </text_editor> - <text name="can_resell"> + <string name="can_resell"> ã“ã®åœ°åŸŸã§è³¼å…¥ã—ãŸåœŸåœ°ã¯ã€å†è²©ã§ãã¾ã™ã€‚ - </text> - <text name="can_not_resell"> + </string> + <string name="can_not_resell"> ã“ã®åœ°åŸŸã®è³¼å…¥åœ°ã¯å†è²©ã§ããªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ - </text> - <text name="can_change"> + </string> + <string name="can_change"> ã“ã®åœ°åŸŸã®è³¼å…¥åœ°ã¯çµ±åˆã¾ãŸã¯å†åˆ†å‰²ã§ãã¾ã™ã€‚ - </text> - <text name="can_not_change"> + </string> + <string name="can_not_change"> ã“ã®åœ°åŸŸã®è³¼å…¥åœ°ã¯çµ±åˆï¼å†åˆ†å‰²ã§ããªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ - </text> + </string> </panel> diff --git a/indra/newview/skins/default/xui/ja/panel_region_general.xml b/indra/newview/skins/default/xui/ja/panel_region_general.xml index 81bf03376a86dea50c8bcaec1e84801c5ed3be95..73d202544656ecd2ab3fb716e8c4912bde4825a1 100644 --- a/indra/newview/skins/default/xui/ja/panel_region_general.xml +++ b/indra/newview/skins/default/xui/ja/panel_region_general.xml @@ -1,47 +1,59 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="地域" name="General"> <text name="region_text_lbl"> 地域: </text> - <text name="region_text" left="90"> + <text left="90" name="region_text"> 未知 </text> <text name="version_channel_text_lbl" width="100"> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ï¼š </text> - <text name="version_channel_text" left="90"> + <text left="90" name="version_channel_text"> ä¸æ˜Ž </text> - <check_box label="土地整備をブãƒãƒƒã‚¯" name="block_terraform_check" /> - <button label="?" name="terraform_help" /> - <check_box label="飛行をブãƒãƒƒã‚¯" name="block_fly_check" /> - <button label="?" name="fly_help" /> - <check_box label="ダメージを許å¯" name="allow_damage_check" /> - <button label="?" name="damage_help" /> - <check_box label="プッシュを制é™" name="restrict_pushobject" /> - <button label="?" name="restrict_pushobject_help" /> - <check_box label="土地ã®å†è²©ã‚’許å¯" name="allow_land_resell_check" /> - <button label="?" name="land_resell_help" /> - <check_box label="土地ã®çµ±åˆï¼åˆ†å‰²ã‚’許å¯" name="allow_parcel_changes_check" /> - <button label="?" name="parcel_changes_help" /> - <check_box label="土地ã®æ¤œç´¢è¡¨ç¤ºã‚’ブãƒãƒƒã‚¯" name="block_parcel_search_check" - tool_tip="検索çµæžœã§ã€ã“ã®åœ°åŸŸã¨åŒºç”»ã‚’人ã«è¦‹ã›ã‚‹" /> - <button label="?" name="parcel_search_help" /> - <spinner label="ã‚¢ãƒã‚¿ãƒ¼æ•°ä¸Šé™" name="agent_limit_spin" /> - <button label="?" name="agent_limit_help" /> - <spinner label="物体ボーナス" name="object_bonus_spin" /> - <button label="?" name="object_bonus_help" /> + <text name="region_type_lbl"> + 種類: + </text> + <text name="region_type"> + ä¸æ˜Ž + </text> + <check_box label="土地整備をブãƒãƒƒã‚¯" name="block_terraform_check"/> + <button label="?" name="terraform_help"/> + <check_box label="飛行をブãƒãƒƒã‚¯" name="block_fly_check"/> + <button label="?" name="fly_help"/> + <check_box label="ダメージを許å¯" name="allow_damage_check"/> + <button label="?" name="damage_help"/> + <check_box label="プッシュを制é™" name="restrict_pushobject"/> + <button label="?" name="restrict_pushobject_help"/> + <check_box label="土地ã®å†è²©ã‚’許å¯" name="allow_land_resell_check"/> + <button label="?" name="land_resell_help"/> + <check_box label="土地ã®çµ±åˆï¼åˆ†å‰²ã‚’許å¯" name="allow_parcel_changes_check"/> + <button label="?" name="parcel_changes_help"/> + <check_box label="土地ã®æ¤œç´¢è¡¨ç¤ºã‚’ブãƒãƒƒã‚¯" name="block_parcel_search_check" tool_tip="検索çµæžœã§ã€ã“ã®åœ°åŸŸã¨åŒºç”»ã‚’人ã«è¦‹ã›ã‚‹"/> + <button label="?" name="parcel_search_help"/> + <spinner label="ã‚¢ãƒã‚¿ãƒ¼æ•°ä¸Šé™" name="agent_limit_spin"/> + <button label="?" name="agent_limit_help"/> + <spinner label="物体ボーナス" name="object_bonus_spin"/> + <button label="?" name="object_bonus_help"/> <text label="æˆäººæŒ‡å®š" name="access_text"> - æˆäººæŒ‡å®šï¼š + 区分: </text> - - - - - <button label="?" name="access_help" /> - <button label="é©ç”¨" name="apply_btn" /> - <button label="ユーザー1人ホームテレãƒãƒ¼ãƒˆ" name="kick_btn" /> - <button label="ユーザー全員ホームテレãƒãƒ¼ãƒˆ" name="kick_all_btn" /> - <button label="メッセージを地域ã¸é€ä¿¡..." name="im_btn" /> - <button label="テレãƒãƒ–ã®ç®¡ç†..." name="manage_telehub_btn" /> + <combo_box label="Mature" name="access_combo"> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Mature"> + Mature + </combo_item> + <combo_item name="PG"> + PG + </combo_item> + </combo_box> + <button label="?" name="access_help"/> + <button label="é©ç”¨" name="apply_btn"/> + <button label="ユーザー1人ホームテレãƒãƒ¼ãƒˆ" name="kick_btn"/> + <button label="ユーザー全員ホームテレãƒãƒ¼ãƒˆ" name="kick_all_btn"/> + <button label="メッセージを地域ã¸é€ä¿¡..." name="im_btn"/> + <button label="テレãƒãƒ–ã®ç®¡ç†..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/ja/role_actions.xml b/indra/newview/skins/default/xui/ja/role_actions.xml index 57e6d620a428eeeff5791853f7537a08514a5edf..9a58f753e5d9c3fab4847663fb31aeca1da9a21b 100644 --- a/indra/newview/skins/default/xui/ja/role_actions.xml +++ b/indra/newview/skins/default/xui/ja/role_actions.xml @@ -4,38 +4,38 @@ description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—・メンãƒãƒ¼ã‚’è¿½åŠ ã€æŽ’除ã—ã€æ‹›å¾…状ãªã—ã«æ–°ãƒ¡ãƒ³ãƒãƒ¼ã®å‚åŠ ã‚’èªã‚る権é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Membership"> <action description="ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«äººã‚’招待" - longdescription="グループã«äººã‚’招待ã™ã‚‹ã«ã¯ã€[メンãƒãƒ¼ã¨å½¹å‰²]タブ>[メンãƒãƒ¼]サブタブã®[æ–°ã—ã„人を招待...]ボタンを使ã„ã¾ã™ã€‚" + longdescription="グループã«äººã‚’招待ã™ã‚‹ã«ã¯ã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ–>「メンãƒãƒ¼ã€ã‚µãƒ–タブã®ã€Œæ–°ã—ã„人を招待...ã€ãƒœã‚¿ãƒ³ã‚’使ã„ã¾ã™ã€‚" name="member invite" value="1" /> <action description="メンãƒãƒ¼ã‚’ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰è¿½æ”¾" - longdescription="メンãƒãƒ¼ã‚’ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰è¿½æ”¾ã™ã‚‹ã«ã¯ã€[メンãƒãƒ¼ã¨å½¹å‰²]タブ > [役割]サブタブã®[グループã‹ã‚‰è¿½æ”¾]を使ã„ã¾ã™ã€‚ オーナーã¯ã€ä»–ã®ã‚ªãƒ¼ãƒŠãƒ¼ä»¥å¤–ã®ä»»æ„ã®ãƒ¡ãƒ³ãƒãƒ¼ã‚’追放ã§ãã¾ã™ã€‚ オーナーã§ãªã„ユーザーãŒã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰ãƒ¡ãƒ³ãƒãƒ¼ã‚’追放ã§ãã‚‹ã®ã¯ã€ãã®ãƒ¡ãƒ³ãƒãƒ¼ãŒã€Œå…¨å“¡ã€ã®å½¹å‰²ã«ã®ã¿æ‰€å±žã—ã¦ãŠã‚Šã€ä»–ã®å½¹å‰²ã«æ‰€å±žã—ã¦ã„ãªã„å ´åˆã ã‘ã§ã™ã€‚ 役割ã‹ã‚‰ãƒ¡ãƒ³ãƒãƒ¼ã‚’除外ã™ã‚‹ã«ã¯ã€ã€Œå½¹å‰²ã‹ã‚‰ãƒ¡ãƒ³ãƒãƒ¼ã‚’除外ã€èƒ½åŠ›ã‚’有ã—ã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" + longdescription="メンãƒãƒ¼ã‚’ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰è¿½æ”¾ã™ã‚‹ã«ã¯ã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ– > 「役割ã€ã‚µãƒ–タブã®ã€Œã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰è¿½æ”¾ã€ã‚’使ã„ã¾ã™ã€‚ オーナーã¯ã€ä»–ã®ã‚ªãƒ¼ãƒŠãƒ¼ä»¥å¤–ã®ä»»æ„ã®ãƒ¡ãƒ³ãƒãƒ¼ã‚’追放ã§ãã¾ã™ã€‚ オーナーã§ãªã„ユーザーãŒã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰ãƒ¡ãƒ³ãƒãƒ¼ã‚’追放ã§ãã‚‹ã®ã¯ã€ãã®ãƒ¡ãƒ³ãƒãƒ¼ãŒã€Œå…¨å“¡ã€ã®å½¹å‰²ã«ã®ã¿æ‰€å±žã—ã¦ãŠã‚Šã€ä»–ã®å½¹å‰²ã«æ‰€å±žã—ã¦ã„ãªã„å ´åˆã ã‘ã§ã™ã€‚ 役割ã‹ã‚‰ãƒ¡ãƒ³ãƒãƒ¼ã‚’除外ã™ã‚‹ã«ã¯ã€ã€Œå½¹å‰²ã‹ã‚‰ãƒ¡ãƒ³ãƒãƒ¼ã‚’除外ã€èƒ½åŠ›ã‚’有ã—ã¦ã„ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" name="member eject" value="2" /> - <action description="[会員募集]ã«åˆ‡ã‚Šæ›¿ãˆã€[入会費]を変更。" - longdescription="招待状ãªã—ã«æ–°ãƒ¡ãƒ³ãƒãƒ¼ãŒåŠ å…¥ã§ãるよã†ã«[会員募集]ã«åˆ‡ã‚Šæ›¿ãˆã€[一般]タブã®[グループ環境è¨å®š]セクションã‹ã‚‰[入会費]を変更ã—ã¾ã™ã€‚" + <action description="「会員募集ã€ã«åˆ‡ã‚Šæ›¿ãˆã€ã€Œå…¥ä¼šè²»ã€ã‚’変更。" + longdescription="招待状ãªã—ã«æ–°ãƒ¡ãƒ³ãƒãƒ¼ãŒåŠ å…¥ã§ãるよã†ã«ã€Œä¼šå“¡å‹Ÿé›†ã€ã«åˆ‡ã‚Šæ›¿ãˆã€ã€Œä¸€èˆ¬ã€ã‚¿ãƒ–ã®ã€Œã‚°ãƒ«ãƒ¼ãƒ—環境è¨å®šã€ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‹ã‚‰ã€Œå…¥ä¼šè²»ã€ã‚’変更ã—ã¾ã™ã€‚" name="member options" value="3" /> </action_set> <action_set description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—内ã®å½¹å‰²ã‚’è¿½åŠ ã€å‰Šé™¤ã€å¤‰æ›´ã—ã€å½¹å‰²ã«ãƒ¡ãƒ³ãƒãƒ¼ã‚’è¿½åŠ ã€å‰Šé™¤ã—ã€ã•ã‚‰ã«å½¹å‰²ã¸èƒ½åŠ›ã‚’割り当ã¦ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Roles"> <action description="æ–°ã—ã„役割を作æˆ" - longdescription="[メンãƒãƒ¼ã¨å½¹å‰²]タブ > [役割]サブタブã§æ–°ã—ã„役割を作æˆ" + longdescription="「メンãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ– > 「役割ã€ã‚µãƒ–タブã§æ–°ã—ã„役割を作æˆ" name="role create" value="4" /> <action description="役割を削除" - longdescription="役割を削除ã™ã‚‹ã«ã¯ã€ãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã‚¿ãƒ– > 役割サブタブを使ã„ã¾ã™ã€‚" + longdescription="役割を削除ã™ã‚‹ã«ã¯ã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ– > 「役割ã€ã‚µãƒ–タブを使ã„ã¾ã™ã€‚" name="role delete" value="5" /> <action description="役割åã€ã‚¿ã‚¤ãƒˆãƒ«ã€èª¬æ˜Žã‚’変更" - longdescription="役割åã€ã‚¿ã‚¤ãƒˆãƒ«ã€èª¬æ˜Žã‚’変更ã™ã‚‹ã«ã¯ã€å½¹å‰²ã‚’é¸æŠžã—ãŸå¾Œã€[メンãƒãƒ¼ã¨å½¹å‰²]タブ > [役割]サブタブã®ä¸‹éƒ¨åˆ†ã‚’使ã„ã¾ã™ã€‚" + longdescription="役割åã€ã‚¿ã‚¤ãƒˆãƒ«ã€èª¬æ˜Žã‚’変更ã™ã‚‹ã«ã¯ã€å½¹å‰²ã‚’é¸æŠžã—ãŸå¾Œã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ– > 「役割ã€ã‚µãƒ–タブã®ä¸‹éƒ¨åˆ†ã‚’使ã„ã¾ã™ã€‚" name="role properties" value="6" /> <action description="メンãƒãƒ¼ã‚’割り当ã¦äººã®å½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹" - longdescription="メンãƒãƒ¼ã‚’割り当ã¦äººã®å½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹ã«ã¯ã€[メンãƒãƒ¼ã¨å½¹å‰²]タブ>[役割]サブタブã®å‰²ã‚Šå½“ã¦ã‚‰ã‚ŒãŸå½¹å‰²ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’使ã„ã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã‚’æŒã¤ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€å‰²ã‚Šå½“ã¦äººãŒç¾åœ¨æ‰€å±žã—ã¦ã„る役割ã«å¯¾ã—ã¦ã®ã¿ãƒ¡ãƒ³ãƒãƒ¼ã‚’è¿½åŠ ã§ãã¾ã™ã€‚" + longdescription="メンãƒãƒ¼ã‚’割り当ã¦äººã®å½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹ã«ã¯ã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ–>「役割ã€ã‚µãƒ–タブã®å‰²ã‚Šå½“ã¦ã‚‰ã‚ŒãŸå½¹å‰²ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’使ã„ã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã‚’æŒã¤ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€å‰²ã‚Šå½“ã¦äººãŒç¾åœ¨æ‰€å±žã—ã¦ã„る役割ã«å¯¾ã—ã¦ã®ã¿ãƒ¡ãƒ³ãƒãƒ¼ã‚’è¿½åŠ ã§ãã¾ã™ã€‚" name="role assign member limited" value="7" /> <action description="メンãƒãƒ¼ã‚’ä»»æ„ã®å½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹" - longdescription="メンãƒãƒ¼ã‚’ä»»æ„ã®å½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹ã«ã¯ã€[メンãƒãƒ¼ã¨å½¹å‰²]タブ>[役割]サブタブã®å‰²ã‚Šå½“ã¦ã‚‰ã‚ŒãŸå½¹å‰²ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’使ã„ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€è‡ªåˆ†è‡ªèº«ã‚„ä»–ã®ãƒ¡ãƒ³ãƒãƒ¼ã‚’ç¾åœ¨ã®å½¹å‰²ã‚ˆã‚Šã‚‚強力ãªå½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®ãŸã‚ã€ã‚ªãƒ¼ãƒŠãƒ¼ä»¥å¤–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«å¯¾ã—ã¦ã€ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿‘ã„パワーを与ãˆã‚‹ã“ã¨ã‚‚å¯èƒ½ã§ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" + longdescription="メンãƒãƒ¼ã‚’ä»»æ„ã®å½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹ã«ã¯ã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ–>「役割ã€ã‚µãƒ–タブã®å‰²ã‚Šå½“ã¦ã‚‰ã‚ŒãŸå½¹å‰²ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’使ã„ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€è‡ªåˆ†è‡ªèº«ã‚„ä»–ã®ãƒ¡ãƒ³ãƒãƒ¼ã‚’ç¾åœ¨ã®å½¹å‰²ã‚ˆã‚Šã‚‚強力ãªå½¹å‰²ã«å‰²ã‚Šå½“ã¦ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®ãŸã‚ã€ã‚ªãƒ¼ãƒŠãƒ¼ä»¥å¤–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«å¯¾ã—ã¦ã€ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿‘ã„パワーを与ãˆã‚‹ã“ã¨ã‚‚å¯èƒ½ã§ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" name="role assign member" value="8" /> <action description="役割ã‹ã‚‰ãƒ¡ãƒ³ãƒãƒ¼ã‚’解除" - longdescription="メンãƒãƒ¼ã‚’役割ã‹ã‚‰è§£é™¤ã™ã‚‹ã«ã¯ã€[メンãƒãƒ¼ã¨å½¹å‰²]タブ>[メンãƒãƒ¼]サブタブã®[割り当ã¦ã‚‰ã‚ŒãŸå½¹å‰²]セクションを使ã„ã¾ã™ã€‚ オーナーã¯è§£é™¤ã§ãã¾ã›ã‚“。" + longdescription="メンãƒãƒ¼ã‚’役割ã‹ã‚‰è§£é™¤ã™ã‚‹ã«ã¯ã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ–>「メンãƒãƒ¼ã€ã‚µãƒ–タブã®ã€Œå‰²ã‚Šå½“ã¦ã‚‰ã‚ŒãŸå½¹å‰²ã€ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’使ã„ã¾ã™ã€‚ オーナーã¯è§£é™¤ã§ãã¾ã›ã‚“。" name="role remove member" value="9" /> <action description="役割ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¨è§£é™¤" - longdescription="役割ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¨è§£é™¤ã¯ã€[メンãƒãƒ¼ã¨å½¹å‰²]タブ>[役割]サブタブã®è¨±å¯ã•ã‚ŒãŸèƒ½åŠ›ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§è¡Œã„ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã™ã¹ã¦ã®èƒ½åŠ›ã‚’自分自身や他ã®ãƒ¡ãƒ³ãƒãƒ¼ã«å‰²ã‚Šå½“ã¦ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®ãŸã‚ã€ã‚ªãƒ¼ãƒŠãƒ¼ä»¥å¤–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«å¯¾ã—ã¦ã€ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿‘ã„パワーをæŒãŸã›ã‚‹ã“ã¨ã‚‚å¯èƒ½ã§ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" + longdescription="役割ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¨è§£é™¤ã¯ã€ã€Œãƒ¡ãƒ³ãƒãƒ¼ã¨å½¹å‰²ã€ã‚¿ãƒ–>「役割ã€ã‚µãƒ–タブã®è¨±å¯ã•ã‚ŒãŸèƒ½åŠ›ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§è¡Œã„ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã™ã¹ã¦ã®èƒ½åŠ›ã‚’自分自身や他ã®ãƒ¡ãƒ³ãƒãƒ¼ã«å‰²ã‚Šå½“ã¦ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®ãŸã‚ã€ã‚ªãƒ¼ãƒŠãƒ¼ä»¥å¤–ã®ãƒ¡ãƒ³ãƒãƒ¼ã«å¯¾ã—ã¦ã€ã‚ªãƒ¼ãƒŠãƒ¼ã«è¿‘ã„パワーをæŒãŸã›ã‚‹ã“ã¨ã‚‚å¯èƒ½ã§ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" name="role change actions" value="10" /> </action_set> <action_set @@ -47,111 +47,111 @@ name="group change identity" value="11" /> </action_set> <action_set - description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã‚’è²æ¸¡ã€ä¿®æ£ã€è²©å£²ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚ [åœŸåœ°æƒ…å ±]ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‹ãã«ã¯ã€åœ°é¢ã‚’å³ã‚¯ãƒªãƒƒã‚¯ã—ã¦[åœŸåœ°æƒ…å ±]ã‚’é¸æŠžã™ã‚‹ã‹ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãƒãƒ¼ã®[åŒºç”»æƒ…å ±]をクリックã—ã¾ã™ã€‚" + description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã‚’è²æ¸¡ã€ä¿®æ£ã€è²©å£²ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚ ã€ŒåœŸåœ°æƒ…å ±ã€ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‹ãã«ã¯ã€åœ°é¢ã‚’å³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ã€ŒåœŸåœ°æƒ…å ±ã€ã‚’é¸æŠžã™ã‚‹ã‹ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãƒãƒ¼ã®ã€ŒåŒºç”»æƒ…å ±ã€ã‚’クリックã—ã¾ã™ã€‚" name="Parcel Management"> <action description="グループ用ã®åœŸåœ°ã®è²æ¸¡ã¨è³¼å…¥" - longdescription="グループ用ã®åœŸåœ°ã®è²æ¸¡ã¨è³¼å…¥ã‚’è¡Œã„ã¾ã™ã€‚ ã“ã®æ“作ã«ã¯ã€åœŸåœ°æƒ…å ±ç”»é¢ > 一般タブを使ã„ã¾ã™ã€‚" + longdescription="グループ用ã®åœŸåœ°ã®è²æ¸¡ã¨è³¼å…¥ã‚’è¡Œã„ã¾ã™ã€‚ ã“ã®æ“作ã«ã¯ã€åœŸåœ°æƒ…å ±ç”»é¢ ï¼ž 一般タブを使ã„ã¾ã™ã€‚" name="land deed" value="12" /> <action description="Lindenç·ç£ã«åœŸåœ°ã‚’明ã‘渡ã™" - longdescription="Lindenç·ç£ã«åœŸåœ°ã‚’明ã‘渡ã—ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€[åœŸåœ°æƒ…å ±]>[一般]ã§ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã‚’放棄ã—ã¦ã€å£²ã‚Šä¸Šã’ãªã—ã§Lindenç·ç£ã«æ˜Žã‘渡ã™ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" + longdescription="Lindenç·ç£ã«åœŸåœ°ã‚’明ã‘渡ã—ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œä¸€èˆ¬ã€ã§ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã‚’放棄ã—ã¦ã€å£²ã‚Šä¸Šã’ãªã—ã§Lindenç·ç£ã«æ˜Žã‘渡ã™ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" name="land release" value="13" /> <action description="å£²ã‚Šåœ°æƒ…å ±ã®è¨å®š" - longdescription="å£²ã‚Šåœ°æƒ…å ±ã‚’è¨å®šã—ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€[åœŸåœ°æƒ…å ±]>[一般]タブã§ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã‚’自分ã®æ€ã„ã©ãŠã‚Šã«è²©å£²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" + longdescription="å£²ã‚Šåœ°æƒ…å ±ã‚’è¨å®šã—ã¾ã™ã€‚ *è¦å‘Š* ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œä¸€èˆ¬ã€ã‚¿ãƒ–ã§ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã‚’自分ã®æ€ã„ã©ãŠã‚Šã«è²©å£²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã®å‰²ã‚Šå½“ã¦ã¯ã€ãã®ã“ã¨ã‚’ç†è§£ã—ãŸä¸Šã§è¡Œã£ã¦ãã ã•ã„。" name="land set sale info" value="14" /> <action description="区画ã®å†åˆ†å‰²ã¨çµ±åˆ" - longdescription="区画をå†åˆ†å‰²ãŠã‚ˆã³çµ±åˆã—ã¾ã™ã€‚ ã“ã®æ“作を実行ã™ã‚‹ã«ã¯ã€åœ°é¢ã‚’å³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ï¼»åœ°å½¢ã‚’編集]をé¸æŠžã—ã€åœŸåœ°ã®ä¸Šã§ãƒžã‚¦ã‚¹ã‚’ドラッグã—ã¦ç¯„囲をé¸æŠžã—ã¾ã™ã€‚ å†åˆ†å‰²ã™ã‚‹ã«ã¯ã€åˆ†å‰²å¯¾è±¡ã‚’é¸æŠžã—ãŸå¾Œã€ï¼»å†åˆ†å‰²...]をクリックã—ã¾ã™ã€‚ çµ±åˆã™ã‚‹ã«ã¯ã€è¤‡æ•°ã®éš£æŽ¥ã™ã‚‹åŒºç”»ã‚’é¸æŠžã—ãŸå¾Œã€ï¼»çµ±åˆ...]をクリックã—ã¾ã™ã€‚" + longdescription="区画をå†åˆ†å‰²ãŠã‚ˆã³çµ±åˆã—ã¾ã™ã€‚ ã“ã®æ“作を実行ã™ã‚‹ã«ã¯ã€åœ°é¢ã‚’å³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ã€Œåœ°å½¢ã‚’編集ã€ã‚’é¸æŠžã—ã€åœŸåœ°ã®ä¸Šã§ãƒžã‚¦ã‚¹ã‚’ドラッグã—ã¦ç¯„囲をé¸æŠžã—ã¾ã™ã€‚ å†åˆ†å‰²ã™ã‚‹ã«ã¯ã€åˆ†å‰²å¯¾è±¡ã‚’é¸æŠžã—ãŸå¾Œã€ã€Œå†åˆ†å‰²...ã€ã‚’クリックã—ã¾ã™ã€‚ çµ±åˆã™ã‚‹ã«ã¯ã€è¤‡æ•°ã®éš£æŽ¥ã™ã‚‹åŒºç”»ã‚’é¸æŠžã—ãŸå¾Œã€ã€Œçµ±åˆ...ã€ã‚’クリックã—ã¾ã™ã€‚" name="land divide join" value="15" /> </action_set> <action_set description="ã“れらã®èƒ½åŠ›ã«ã¯ã€åŒºç”»åã€å…¬é–‹è¨å®šã€æ¤œç´¢ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¸ã®ç™»éŒ²ã€ç€åœ°ç‚¹ãªã‚‰ã³ã«TPルートã®ã‚ªãƒ—ションを変更ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Parcel Identity"> - <action description="[å ´æ‰€æ¤œç´¢ã«è¡¨ç¤º]ã«åˆ‡ã‚Šæ›¿ãˆã€ã‚«ãƒ†ã‚´ãƒªãƒ¼ã‚’è¨å®š" - longdescription="[å ´æ‰€æ¤œç´¢ã«è¡¨ç¤º]ã«åˆ‡ã‚Šæ›¿ãˆã€[åœŸåœ°æƒ…å ±]>[オプション]タブã§ã‚«ãƒ†ã‚´ãƒªãƒ¼ã‚’è¨å®š" + <action description="ã€Œå ´æ‰€æ¤œç´¢ã«è¡¨ç¤ºã€ã«åˆ‡ã‚Šæ›¿ãˆã€ã‚«ãƒ†ã‚´ãƒªãƒ¼ã‚’è¨å®š" + longdescription="ã€Œå ´æ‰€æ¤œç´¢ã«è¡¨ç¤ºã€ã«åˆ‡ã‚Šæ›¿ãˆã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã§ã‚«ãƒ†ã‚´ãƒªãƒ¼ã‚’è¨å®š" name="land find places" value="17" /> <action description="区画åã€èª¬æ˜Žã€ã€ŒWeb上ã§å…¬é–‹ã€ã®è¨å®šã‚’変更" - longdescription="区画åã€èª¬æ˜Žã€ã€ŒWeb上ã§å…¬é–‹ã€ã®è¨å®šã‚’変更。 ã“ã®æ“作ã«ã¯ã€[åœŸåœ°æƒ…å ±] > [オプション]タブを使ã„ã¾ã™ã€‚" + longdescription="区画åã€èª¬æ˜Žã€ã€ŒWeb上ã§å…¬é–‹ã€ã®è¨å®šã‚’変更。 ã“ã®æ“作ã«ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ ï¼ž 「オプションã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="land change identity" value="18" /> <action description="ç€åœ°ç‚¹ãŠã‚ˆã³ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒ«ãƒ¼ãƒˆã‚’è¨å®š" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã§ç€åœ°ç‚¹ã‚’è¨å®šã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šå¤–部ã‹ã‚‰ã®ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã®åˆ°ç€ä½ç½®ã‚’指定ã§ãã‚‹ã¨å…±ã«ã€ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒ«ãƒ¼ãƒˆã‚’è¨å®šã—ã¦ç´°ã‹ã制御ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“ã®æ“作ã¯ã€[åœŸåœ°æƒ…å ±]>[オプション]タブã§è¡Œã„ã¾ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã§ç€åœ°ç‚¹ã‚’è¨å®šã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šå¤–部ã‹ã‚‰ã®ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã®åˆ°ç€ä½ç½®ã‚’指定ã§ãã‚‹ã¨å…±ã«ã€ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒ«ãƒ¼ãƒˆã‚’è¨å®šã—ã¦ç´°ã‹ã制御ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“ã®æ“作ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã§è¡Œã„ã¾ã™ã€‚" name="land set landing point" value="19" /> </action_set> <action_set - description="ã“れらã®èƒ½åŠ›ã«ã¯ã€[オブジェクトを作æˆ]ã€[地形を編集]ã€éŸ³æ¥½ã¨ãƒ¡ãƒ‡ã‚£ã‚¢ã®è¨å®šãªã©ã€åŒºç”»ã®ã‚ªãƒ—ションã«é–¢é€£ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" + description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã€Œã‚ªãƒ–ジェクトを作æˆã€ã€ã€Œåœ°å½¢ã‚’編集ã€ã€éŸ³æ¥½ã¨ãƒ¡ãƒ‡ã‚£ã‚¢ã®è¨å®šãªã©ã€åŒºç”»ã®ã‚ªãƒ—ションã«é–¢é€£ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Parcel Settings"> <action description="音楽ã¨ãƒ¡ãƒ‡ã‚£ã‚¢ã®è¨å®šã‚’変更" - longdescription="ストリーミング・ミュージックã¨å‹•ç”»ã®è¨å®šã‚’変更ã™ã‚‹ã«ã¯ã€[åœŸåœ°æƒ…å ±] > [メディア]タブを使ã„ã¾ã™ã€‚" + longdescription="ストリーミング・ミュージックã¨å‹•ç”»ã®è¨å®šã‚’変更ã™ã‚‹ã«ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ ï¼ž 「メディアã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="land change media" value="20" /> - <action description="[地形を編集]ã«åˆ‡ã‚Šæ›¿ãˆ" - longdescription="[地形を編集]ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚ *è¦å‘Š* [åœŸåœ°æƒ…å ±]>[オプション]>[地形を編集]ã®é †ã§é€²ã‚€ã¨ã€èª°ã§ã‚‚ã‚ãªãŸã®åœŸåœ°ã®å½¢ã®æ•´å‚™ã‚„ã€ãƒªãƒ³ãƒ‡ãƒ³ãƒ—ラントã®è¨ç½®ã€ç§»å‹•ãŒã§ãã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã‚’割り振るå‰ã«ã€ã“ã®ã“ã¨ã‚’よãç†è§£ã—ã¦ãŠã„ã¦ãã ã•ã„。 [åœŸåœ°æƒ…å ±]>[オプション]タブã‹ã‚‰[地形を編集]ã«åˆ‡ã‚Šæ›¿ãˆã‚‰ã‚Œã¾ã™ã€‚" + <action description="「地形を編集ã€ã«åˆ‡ã‚Šæ›¿ãˆ" + longdescription="「地形を編集ã€ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚ *è¦å‘Š* ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ï¼žã€Œåœ°å½¢ã‚’編集ã€ã®é †ã§é€²ã‚€ã¨ã€èª°ã§ã‚‚ã‚ãªãŸã®åœŸåœ°ã®å½¢ã®æ•´å‚™ã‚„ã€ãƒªãƒ³ãƒ‡ãƒ³ãƒ—ラントã®è¨ç½®ã€ç§»å‹•ãŒã§ãã¾ã™ã€‚ ã“ã®èƒ½åŠ›ã‚’割り振るå‰ã«ã€ã“ã®ã“ã¨ã‚’よãç†è§£ã—ã¦ãŠã„ã¦ãã ã•ã„。 ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã‹ã‚‰ã€Œåœ°å½¢ã‚’編集ã€ã«åˆ‡ã‚Šæ›¿ãˆã‚‰ã‚Œã¾ã™ã€‚" name="land edit" value="21" /> <action - description="[åœŸåœ°æƒ…å ±]>[オプション]タブ内ã®ã•ã¾ã–ã¾ãªè¨å®šã‚’切り替ãˆ" - longdescription="[安全(ダメージãªã—)]ã€[飛ã¶]ã«åˆ‡ã‚Šæ›¿ãˆã€[åœŸåœ°æƒ…å ±]>[オプション]タブã‹ã‚‰ã€ ä»–ã®ä½äººãŒã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã§[オブジェクトを作æˆ]ã€[地形を編集]ã€[ランドマークを作æˆ]ã€[スクリプトを実行]ã§ãるよã†ã«ã—ã¾ã™ã€‚" + description="ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–内ã®ã•ã¾ã–ã¾ãªè¨å®šã‚’切り替ãˆ" + longdescription="「安全(ダメージãªã—)ã€ã€ã€Œé£›ã¶ã€ã«åˆ‡ã‚Šæ›¿ãˆã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã‹ã‚‰ã€ ä»–ã®ä½äººãŒã‚°ãƒ«ãƒ¼ãƒ—所有ã®åœŸåœ°ã§ã€Œã‚ªãƒ–ジェクトを作æˆã€ã€ã€Œåœ°å½¢ã‚’編集ã€ã€ã€Œãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã‚’作æˆã€ã€ã€Œã‚¹ã‚¯ãƒªãƒ—トを実行ã€ã§ãるよã†ã«ã—ã¾ã™ã€‚" name="land options" value="22" /> </action_set> <action_set description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ã«é–¢ã™ã‚‹è¦åˆ¶ã‚’迂回ã™ã‚‹ã“ã¨ã‚’ã€ãƒ¡ãƒ³ãƒãƒ¼ã«è¨±å¯ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Parcel Powers"> <action description="常ã«ã€Œåœ°å½¢ã‚’編集ã€ã‚’許å¯" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã§åœ°å½¢ã‚’編集ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒ[åœŸåœ°æƒ…å ±]>[オプション]タブã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€åœ°å½¢ã®ç·¨é›†ãŒå¯èƒ½ã§ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã§åœ°å½¢ã‚’編集ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€åœ°å½¢ã®ç·¨é›†ãŒå¯èƒ½ã§ã™ã€‚" name="land allow edit land" value="23" /> <action description="常ã«ã€Œé£›è¡Œã€ã‚’許å¯" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã‚’飛行ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒ[åœŸåœ°æƒ…å ±]>[オプション]タブã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€é£›è¡ŒãŒå¯èƒ½ã§ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã‚’飛行ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€é£›è¡ŒãŒå¯èƒ½ã§ã™ã€‚" name="land allow fly" value="24" /> <action description="常ã«ã€Œã‚ªãƒ–ジェクト作æˆã€ã‚’許å¯" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã«ã‚ªãƒ–ジェクトを作æˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒ[åœŸåœ°æƒ…å ±]>[オプション]タブã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€ã‚ªãƒ–ジェクトã®ä½œæˆãŒå¯èƒ½ã§ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã«ã‚ªãƒ–ジェクトを作æˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€ã‚ªãƒ–ジェクトã®ä½œæˆãŒå¯èƒ½ã§ã™ã€‚" name="land allow create" value="25" /> <action description="常ã«ã€Œãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã‚’作æˆã€ã‚’許å¯" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã«ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã‚’作æˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒ[åœŸåœ°æƒ…å ±]>[オプション]タブã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã®ä½œæˆãŒå¯èƒ½ã§ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ä¸Šã«ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã‚’作æˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãã®åŒºç”»ãŒã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ—ションã€ã‚¿ãƒ–ã§ã‚ªãƒ•ã«ãªã£ã¦ã„ã¦ã‚‚ã€ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ã®ä½œæˆãŒå¯èƒ½ã§ã™ã€‚" name="land allow landmark" value="26" /> <action description="グループã®åœŸåœ°ã¸ã®ã€Œãƒ›ãƒ¼ãƒ è¨å®šã€ã‚’許å¯" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€[ワールド]メニュー>[ホームをã“ã“ã«è¨å®š]を使用ã—ã¦ã€ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚ŒãŸåŒºç”»ã‚’ホームã«è¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã€Œä¸–ç•Œã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ï¼žã€Œãƒ›ãƒ¼ãƒ ã‚’ã“ã“ã«è¨å®šã€ã‚’使用ã—ã¦ã€ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã«è²æ¸¡ã•ã‚ŒãŸåŒºç”»ã‚’ホームã«è¨å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" name="land allow set home" value="28" /> </action_set> <action_set description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ä½äººã®å‡çµã‚„追放をå«ã‚€ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’許å¯ã€åˆ¶é™ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Parcel Access"> <action description="区画アクセス・リストã®ç®¡ç†" - longdescription="区画アクセス・リストã®ç®¡ç†ã¯ã€[åœŸåœ°æƒ…å ±]>[アクセス]タブã§è¡Œã„ã¾ã™ã€‚" + longdescription="区画アクセス・リストã®ç®¡ç†ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚¢ã‚¯ã‚»ã‚¹ã€ã‚¿ãƒ–ã§è¡Œã„ã¾ã™ã€‚" name="land manage allowed" value="29" /> <action description="区画ç¦æ¢ãƒªã‚¹ãƒˆã®ç®¡ç†" - longdescription="区画ç¦æ¢ãƒªã‚¹ãƒˆã®ç®¡ç†ã¯ã€[åœŸåœ°æƒ…å ±]>[ç¦æ¢]タブã§è¡Œã„ã¾ã™ã€‚" + longdescription="区画ç¦æ¢ãƒªã‚¹ãƒˆã®ç®¡ç†ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œç¦æ¢ã€ã‚¿ãƒ–ã§è¡Œã„ã¾ã™ã€‚" name="land manage banned" value="30" /> - <action description="区画ã®ã€Œãƒ‘ス販売ã€ã®è¨å®šã‚’変更" - longdescription="区画ã®ã€Œãƒ‘ス販売ã€ã®è¨å®šã‚’変更ã™ã‚‹ã«ã¯ã€[åœŸåœ°æƒ…å ±] > [アクセス]タブを使ã„ã¾ã™ã€‚" + <action description="区画ã®ã€Œå…¥å ´è¨±å¯ã‚’販売ã€ã®è¨å®šã‚’変更" + longdescription="区画ã®ã€Œå…¥å ´è¨±å¯ã‚’販売ã€ã®è¨å®šã‚’変更ã™ã‚‹ã«ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ ï¼ž 「アクセスã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="land manage passes" value="31" /> <action description="区画上ã®ä½äººã®è¿½æ”¾ã¨å‡çµ" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ã«å•é¡Œã®ã‚ã‚‹ä½äººãŒã„ã‚‹å ´åˆã«ã€å³ã‚¯ãƒªãƒƒã‚¯ãƒ»ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‹ã‚‰[詳細>]ã‚’é¸æŠžã—ã€[追放...]ã¾ãŸã¯[フリーズ...]ã‚’é¸æŠžã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šã€ãã®ä½äººã‚’処ç†ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®åŒºç”»ã«å•é¡Œã®ã‚ã‚‹ä½äººãŒã„ã‚‹å ´åˆã«ã€å³ã‚¯ãƒªãƒƒã‚¯ãƒ»ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‹ã‚‰ã€Œè©³ç´°ã€ã‚’é¸æŠžã—ã€ã€Œè¿½æ”¾...ã€ã¾ãŸã¯ã€Œãƒ•ãƒªãƒ¼ã‚º...ã€ã‚’é¸æŠžã™ã‚‹ã“ã¨ã«ã‚ˆã‚Šã€ãã®ä½äººã‚’処ç†ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" name="land admin" value="32" /> </action_set> <action_set description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚ªãƒ–ジェクトã®è¿”å´ã€ãƒªãƒ³ãƒ‡ãƒ³ãƒ—ラントã®è¨ç½®ã‚„移動をã€ãƒ¡ãƒ³ãƒãƒ¼ã«è¨±å¯ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚ ã“ã‚Œã¯ãƒ¡ãƒ³ãƒãƒ¼ãŒã‚´ãƒŸå‡¦ç†ã‚„景観作æˆã‚’ã™ã‚‹éš›ã«ä¾¿åˆ©ã§ã™ãŒã€è¿”å´ã—ãŸã‚ªãƒ–ジェクトã¯å…ƒã«æˆ»ã›ãªã„ã®ã§ã€æ³¨æ„ã—ã¦è¡Œã„ã¾ã—ょã†ã€‚" name="Parcel Content"> <action description="グループ所有オブジェクトã®è¿”å´" - longdescription="グループ所有ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®ã‚ªãƒ–ジェクトを返å´ã™ã‚‹ã«ã¯ã€[åœŸåœ°æƒ…å ±]>[オブジェクト]タブを使ã„ã¾ã™ã€‚" + longdescription="グループ所有ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®ã‚ªãƒ–ジェクトを返å´ã™ã‚‹ã«ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ–ジェクトã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="land return group owned" value="48" /> <action description="グループã«è¨å®šã•ã‚Œã¦ã„るオブジェクトを返å´" - longdescription="グループ所有ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—ã«è¨å®šã•ã‚Œã¦ã„るオブジェクトを返å´ã™ã‚‹ã«ã¯ã€[åœŸåœ°æƒ…å ±]>[オブジェクト]タブを使ã„ã¾ã™ã€‚" + longdescription="グループ所有ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—ã«è¨å®šã•ã‚Œã¦ã„るオブジェクトを返å´ã™ã‚‹ã«ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ–ジェクトã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="land return group set" value="33" /> <action description="éžã‚°ãƒ«ãƒ¼ãƒ—・オブジェクトã®è¿”å´" - longdescription="グループ所有ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—以外ã®ã‚ªãƒ–ジェクトを返å´ã™ã‚‹ã«ã¯ã€[åœŸåœ°æƒ…å ±]>[オブジェクト]タブを使ã„ã¾ã™ã€‚" + longdescription="グループ所有ã®åŒºç”»ä¸Šã®ã‚ªãƒ–ジェクトã®ã†ã¡ã€ã‚°ãƒ«ãƒ¼ãƒ—以外ã®ã‚ªãƒ–ジェクトを返å´ã™ã‚‹ã«ã¯ã€ã€ŒåœŸåœ°æƒ…å ±ã€ï¼žã€Œã‚ªãƒ–ジェクトã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="land return non group" value="34" /> <action description="Linden製ã®æ¤ç‰©ã‚’使用ã—ã¦æ™¯è¦³ä½œæˆ" longdescription="景観作æˆèƒ½åŠ›ã«ã‚ˆã‚Šã€ãƒªãƒ³ãƒ‡ãƒ³è£½ã®æ¨¹æœ¨ã€æ¤ç‰©ã€è‰ã‚’é…ç½®ãŠã‚ˆã³ç§»å‹•ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ ã“れらã®ã‚¢ã‚¤ãƒ†ãƒ ã¯ã€è‡ªåˆ†ã®æŒã¡ç‰©ã®ãƒ©ã‚¤ãƒ–ラリ>オブジェクト・フォルダã‹ã‚‰æ¤œç´¢ã§ãã‚‹ã»ã‹ã€ã€Œä½œæˆã€ãƒœã‚¿ãƒ³ã§ä½œæˆã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚" name="land gardening" value="35" /> </action_set> <action_set - description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®ã‚ªãƒ–ジェクトをè²æ¸¡ã€ä¿®æ£ã€è²©å£²ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚ ã“ã†ã—ãŸå¤‰æ›´ã¯ã€ï¼»ç·¨é›†ãƒ„ール]>[一般]タブã§è¡Œã‚ã‚Œã¾ã™ã€‚ オブジェクトをå³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ï¼»ç·¨é›†ï¼½ã‚’é–‹ãã¨ã€è¨å®šå†…容を表示ã§ãã¾ã™ã€‚" + description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—所有ã®ã‚ªãƒ–ジェクトをè²æ¸¡ã€ä¿®æ£ã€è²©å£²ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚ ã“ã†ã—ãŸå¤‰æ›´ã¯ã€ã€Œç·¨é›†ãƒ„ールã€ï¼žã€Œä¸€èˆ¬ã€ã‚¿ãƒ–ã§è¡Œã‚ã‚Œã¾ã™ã€‚ オブジェクトをå³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ã€Œç·¨é›†ã€ã‚’é–‹ãã¨ã€è¨å®šå†…容を表示ã§ãã¾ã™ã€‚" name="Object Management"> <action description="グループã«ã‚ªãƒ–ジェクトをè²æ¸¡" - longdescription="グループã«ã‚ªãƒ–ジェクトをè²æ¸¡ã™ã‚‹ã«ã¯ã€ç·¨é›†ãƒ„ール>一般タブを使ã„ã¾ã™ã€‚" + longdescription="グループã«ã‚ªãƒ–ジェクトをè²æ¸¡ã™ã‚‹ã«ã¯ã€ã€Œç·¨é›†ãƒ„ールã€ï¼žã€Œä¸€èˆ¬ã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="object deed" value="36" /> <action description="グループ所有オブジェクトã®æ“作(移動ã€ã‚³ãƒ”ーã€ä¿®æ£ï¼‰" - longdescription="グループ所有オブジェクトã®æ“作(移動ã€ã‚³ãƒ”ーã€ä¿®æ£ï¼‰ã¯ã€[編集ツール]>[一般]タブã§è¡Œã„ã¾ã™ã€‚" + longdescription="グループ所有オブジェクトã®æ“作(移動ã€ã‚³ãƒ”ーã€ä¿®æ£ï¼‰ã¯ã€ã€Œç·¨é›†ãƒ„ールã€ï¼žã€Œä¸€èˆ¬ã€ã‚¿ãƒ–ã§è¡Œã„ã¾ã™ã€‚" name="object manipulate" value="38" /> <action description="グループ所有オブジェクトを販売å¯èƒ½ã«è¨å®š" - longdescription="グループ所有オブジェクトを販売å¯èƒ½ã«è¨å®šã«ã™ã‚‹ã«ã¯ã€[編集ツール]>[一般]タブを使ã„ã¾ã™ã€‚" + longdescription="グループ所有オブジェクトを販売å¯èƒ½ã«è¨å®šã«ã™ã‚‹ã«ã¯ã€ã€Œç·¨é›†ãƒ„ールã€ï¼žã€Œä¸€èˆ¬ã€ã‚¿ãƒ–を使ã„ã¾ã™ã€‚" name="object set sale" value="39" /> </action_set> <action_set @@ -165,17 +165,17 @@ description="ã“れらã®èƒ½åŠ›ã«ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—通知ã®é€ä¿¡ã€å—ä¿¡ã€è¡¨ç¤ºã‚’メンãƒãƒ¼ã«è¨±å¯ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Notices"> <action description="通知をé€ä¿¡" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€[ã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±]>[通知]タブã§é€šçŸ¥ã‚’é€ä¿¡ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã€Œã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±ã€ï¼žã€Œé€šçŸ¥ã€ã‚¿ãƒ–ã§é€šçŸ¥ã‚’é€ä¿¡ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" name="notices send" value="42" /> <action description="通知ã®å—ä¿¡ã¨éŽåŽ»ã®é€šçŸ¥ã®é–²è¦§" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€é€šçŸ¥ã‚’å—ã‘å–ã‚‹ã“ã¨ãŒã§ãã€[ã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±]>[通知]タブã§éŽåŽ»ã®é€šçŸ¥ã‚’閲覧ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€é€šçŸ¥ã‚’å—ã‘å–ã‚‹ã“ã¨ãŒã§ãã€ã€Œã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±ã€ï¼žã€Œé€šçŸ¥ã€ã‚¿ãƒ–ã§éŽåŽ»ã®é€šçŸ¥ã‚’閲覧ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" name="notices receive" value="43" /> </action_set> <action_set description="ã“れらã®èƒ½åŠ›ã«ã¯ã€æ案ã®ä½œæˆã¨æŠ•ç¥¨ã€æŠ•ç¥¨å±¥æ´ã®è¡¨ç¤ºã‚’メンãƒãƒ¼ã«è¨±å¯ã™ã‚‹æ¨©é™ãŒå«ã¾ã‚Œã¾ã™ã€‚" name="Proposals"> <action description="æ案を作æˆ" - longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€æŠ•ç¥¨ã®å¯¾è±¡ã¨ãªã‚‹å•é¡Œæèµ·ã‚’[ã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±]>[å•é¡Œæèµ·]タブ上ã§ä½œæˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" + longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€æŠ•ç¥¨ã®å¯¾è±¡ã¨ãªã‚‹å•é¡Œæèµ·ã‚’ã€Œã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±ã€ï¼žã€Œå•é¡Œæèµ·ã€ã‚¿ãƒ–上ã§ä½œæˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" name="proposal start" value="44" /> <action description="å•é¡Œæèµ·ã«æŠ•ç¥¨ã™ã‚‹" longdescription="ã“ã®èƒ½åŠ›ã‚’æŒã¤å½¹å‰²ã®ãƒ¡ãƒ³ãƒãƒ¼ã¯ã€ã‚°ãƒ«ãƒ¼ãƒ—æƒ…å ±ï¼žæ案タブã§æ案ã«æŠ•ç¥¨ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" diff --git a/indra/newview/skins/default/xui/ja/strings.xml b/indra/newview/skins/default/xui/ja/strings.xml index 5243cc76b92dda3abfef80e9d0fcfcf0d3e88f6b..5432c116a787733b347c162e7299548759f2f686 100644 --- a/indra/newview/skins/default/xui/ja/strings.xml +++ b/indra/newview/skins/default/xui/ja/strings.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. - It is only for those strings which don't belong in a floater. + It is only for those strings which do not belong in a floater. For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> @@ -418,6 +418,30 @@ <string name="shout"> ã®å«ã³: </string> + <string name="SIM_ACCESS_PG"> + PG + </string> + <string name="SIM_ACCESS_MATURE"> + Mature + </string> + <string name="SIM_ACCESS_ADULT"> + Adult + </string> + <string name="SIM_ACCESS_DOWN"> + オフライン + </string> + <string name="SIM_ACCESS_MIN"> + ä¸æ˜Ž + </string> + <string name="land_type_unknown"> + (ä¸æ˜Žï¼‰ + </string> + <string name="covenant_never_modified"> + 最終修æ£ï¼š (無) + </string> + <string name="covenant_modified"> + 最終修æ£ï¼š + </string> <string name="all_files"> å…¨ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ« </string> diff --git a/indra/newview/skins/default/xui/ja/teleport_strings.xml b/indra/newview/skins/default/xui/ja/teleport_strings.xml index 9e6b4bd26ec8b6785e61cc07b34e4b5055c861bb..7e99d2562ee058c7e9582dcf44c554121ed0695f 100644 --- a/indra/newview/skins/default/xui/ja/teleport_strings.xml +++ b/indra/newview/skins/default/xui/ja/teleport_strings.xml @@ -2,21 +2,16 @@ <teleport_messages name=""> <message_set name="errors"> <message name="invalid_tport"> - テレãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã®å‡¦ç†ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚テレãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€ -å†åº¦ãƒã‚°ã‚¤ãƒ³ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒ -引ã続ã表示ã•ã‚Œã‚‹å ´åˆã¯ã€æŠ€è¡“サãƒãƒ¼ãƒˆFAQ(www.secondlife.com/support) -ã‚’å‚ç…§ã—ã¦ãã ã•ã„。 + テレãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã®å‡¦ç†ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚テレãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒå¼•ã続ã表示ã•ã‚Œã‚‹å ´åˆã¯ã€æŠ€è¡“サãƒãƒ¼ãƒˆFAQ(www.secondlife.com/support)をå‚ç…§ã—ã¦ãã ã•ã„。 </message> <message name="invalid_region_handoff"> - 地域間ã®ç§»å‹•ã®å‡¦ç†ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚地域間を -移動ã™ã‚‹ã«ã¯ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒ -引ã続ã表示ã•ã‚Œã‚‹å ´åˆã¯ã€æŠ€è¡“サãƒãƒ¼ãƒˆFAQ(www.secondlife.com/support) -ã‚’å‚ç…§ã—ã¦ãã ã•ã„。 + 地域間ã®ç§»å‹•ã®å‡¦ç†ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚地域間を移動ã™ã‚‹ã«ã¯ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ +ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒå¼•ã続ã表示ã•ã‚Œã‚‹å ´åˆã¯ã€æŠ€è¡“サãƒãƒ¼ãƒˆFAQ(www.secondlife.com/support)をå‚ç…§ã—ã¦ãã ã•ã„。 </message> <message name="blocked_tport"> 申ã—訳ã”ã–ã„ã¾ã›ã‚“。テレãƒãƒ¼ãƒˆã¯ç¾åœ¨ã€ãƒ–ãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚ã‚‚ã†å°‘ã—後ã§ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 -ã‚„ã‚Šç›´ã—ã¦ã‚‚テレãƒãƒ¼ãƒˆã§ããªã„å ´åˆã¯ã€ã„ã£ãŸã‚“ãƒã‚°ã‚¢ã‚¦ãƒˆã—ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã—㦠-å•é¡Œã‚’解決ã—ã¦ãã ã•ã„。 +ã‚„ã‚Šç›´ã—ã¦ã‚‚テレãƒãƒ¼ãƒˆã§ããªã„å ´åˆã¯ã€ã„ã£ãŸã‚“ãƒã‚°ã‚¢ã‚¦ãƒˆã—ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã—ã¦å•é¡Œã‚’解決ã—ã¦ãã ã•ã„。 </message> <message name="nolandmark_tport"> 残念ãªãŒã‚‰ã€ã‚·ã‚¹ãƒ†ãƒ ã¯ãƒ©ãƒ³ãƒ‰ãƒžãƒ¼ã‚¯ç›®çš„地を探ã›ã¾ã›ã‚“ã§ã—ãŸã€‚ @@ -32,21 +27,18 @@ 添付物ã¯ã€ã¾ã 到ç€ã—ã¦ã„ã¾ã›ã‚“。ã‚ã¨æ•°ç§’é–“ãŠå¾…ã¡ã„ãŸã ãã‹ã€ã„ã£ãŸã‚“ãƒã‚°ã‚¢ã‚¦ãƒˆã—ã€å†åº¦ãƒã‚°ã‚¤ãƒ³ã—ã¦ã‹ã‚‰ãƒ†ãƒ¬ãƒãƒ¼ãƒˆã‚’ã‚„ã‚Šç›´ã—ã¦ã ã•ã„。 </message> <message name="too_many_uploads_tport"> - ã“ã®åœ°åŸŸã®è³‡ç”£ã‚ューãŒç¾åœ¨è¾¼ã¿åˆã£ã¦ã„ã‚‹ãŸã‚ã€ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ» -リクエストを時間通りã«å‡¦ç†ã™ã‚‹ã“ã¨ãŒé›£ã—ã„状æ³ã§ã™ã€‚数分後ã«ã‚„ã‚Šç›´ã™ã‹ã€ -ã¾ãŸã¯æ··é›‘ã—ã¦ã„ãªã„ä»–ã®åœ°åŸŸã‚’ãŠè©¦ã—ãã ã•ã„。 + ã“ã®åœ°åŸŸã®è³‡ç”£ã‚ューãŒç¾åœ¨è¾¼ã¿åˆã£ã¦ã„ã‚‹ãŸã‚ã€ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’時間通りã«å‡¦ç†ã™ã‚‹ã“ã¨ãŒé›£ã—ã„状æ³ã§ã™ã€‚ +数分後ã«ã‚„ã‚Šç›´ã™ã‹ã€ã¾ãŸã¯æ··é›‘ã—ã¦ã„ãªã„ä»–ã®åœ°åŸŸã‚’ãŠè©¦ã—ãã ã•ã„。 </message> <message name="expired_tport"> - 申ã—訳ã”ã–ã„ã¾ã›ã‚“。システムã¯ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’時間ã©ãŠã‚Šã« -完了ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 + 申ã—訳ã”ã–ã„ã¾ã›ã‚“。システムã¯ãƒ†ãƒ¬ãƒãƒ¼ãƒˆãƒ»ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’時間ã©ãŠã‚Šã«å®Œäº†ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 </message> <message name="expired_region_handoff"> 申ã—訳ã”ã–ã„ã¾ã›ã‚“。システムã¯åœ°åŸŸé–“ã®ç§»å‹•ã‚’時間ã©ãŠã‚Šã«å®Œäº†ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ 数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 </message> <message name="no_host"> - テレãƒãƒ¼ãƒˆç›®çš„地を見ã¤ã‘られã¾ã›ã‚“。目的地ãŒä¸€æ™‚çš„ã«åˆ©ç”¨ã§ããªã„ -状態ã‹ã€ã¾ãŸã¯ã™ã§ã«æ¶ˆæ»…ã—ã¦ã„ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 + テレãƒãƒ¼ãƒˆç›®çš„地を見ã¤ã‘られã¾ã›ã‚“。目的地ãŒä¸€æ™‚çš„ã«åˆ©ç”¨ã§ããªã„状態ã‹ã€ã¾ãŸã¯ã™ã§ã«æ¶ˆæ»…ã—ã¦ã„ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚数分後ã«ã‚„ã‚Šç›´ã—ã¦ãã ã•ã„。 </message> <message name="no_inventory_host"> æŒã¡ç‰©ã‚·ã‚¹ãƒ†ãƒ ã¯ç¾åœ¨åˆ©ç”¨ã§ãã¾ã›ã‚“。 diff --git a/indra/newview/skins/default/xui/nl/floater_about.xml b/indra/newview/skins/default/xui/nl/floater_about.xml index 8801e5713ca71eaa26951838e4e56fbd2843cc82..d981ac2c8c23070273ec48eef247d0accc3677df 100644 --- a/indra/newview/skins/default/xui/nl/floater_about.xml +++ b/indra/newview/skins/default/xui/nl/floater_about.xml @@ -27,7 +27,7 @@ All rights reserved. See licenses.txt for details. Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) -I get by with a little help from my friends. --Richard Starkey +To be a success in business, be daring, be first, be different. --Henry Marchant </text_editor> <string name="you_are_at"> U bent op [POSITION] diff --git a/indra/newview/skins/default/xui/nl/floater_about_land.xml b/indra/newview/skins/default/xui/nl/floater_about_land.xml index 2851fd14813d5a7095c0f74f863d7bfa0f40891c..a3e3b246fe744c8b85c95c64c8631025730d65f0 100644 --- a/indra/newview/skins/default/xui/nl/floater_about_land.xml +++ b/indra/newview/skins/default/xui/nl/floater_about_land.xml @@ -8,16 +8,29 @@ <text name="Description:"> Omschrijving: </text> + <text name="LandType"> + Type: + </text> + <text name="LandTypeText" left="102"> + Mainland / Homestead + </text> + <text name="ContentRating" width="98"> + Inhoudscategorie: + </text> + <text name="ContentRatingText" left="102"> + Adult + </text> <text name="Owner:"> - Eigenaar + Eigenaar: </text> - <text name="OwnerText"> + <text name="OwnerText" left="102" width="242"> Leyla Linden </text> <button label="Profiel..." label_selected="Profiel..." name="Profile..."/> <text name="Group:"> Groep: </text> + <text left="102" name="GroupText" width="242"/> <button label="Instellen..." label_selected="Instellen..." name="Set..."/> <check_box label="Overdracht aan groep toestaan" name="check deed" tool_tip="Een groepofficier kan dit land aan de groep overdragen, zodat het ondersteund wordt door de landallocatie van de groep."/> <button label="Overdragen..." label_selected="Overdragen..." name="Deed..." tool_tip="U mag alleen land overdragen indien u een officier bent in de geselecteerde groep."/> @@ -29,7 +42,7 @@ Niet te koop. </text> <text name="For Sale: Price L$[PRICE]."> - Prijs: L$[PRICE]. + Prijs: L$[PRICE] (L$[PRICE_PER_SQM]/m²). </text> <button label="Verkoop land..." label_selected="Verkoop land..." name="Sell Land..."/> <text name="For sale to"> @@ -38,12 +51,12 @@ <text name="Sell with landowners objects in parcel."> Objecten opgenomen in verkoop </text> - <text name="Selling with no objects in parcel."> + <text name="Selling with no objects in parcel." width="196"> Objecten niet opgenomen in verkoop </text> <button label="Annuleer landverkoop" label_selected="Annuleer landverkoop" name="Cancel Land Sale"/> <text name="Claimed:"> - Geclaimd + Geclaimd: </text> <text name="DateClaimText"> Tue Aug 15 13:47:25 2006 @@ -60,9 +73,9 @@ <text name="DwellText"> 0 </text> - <button label="Koop land..." label_selected="Koop land..." name="Buy Land..."/> + <button left="130" width="125" label="Koop land..." label_selected="Koop land..." name="Buy Land..."/> <button label="Koop voor groep..." label_selected="Koop voor groep..." name="Buy For Group..."/> - <button label="Koop toegangspas..." label_selected="Koop toegangspas..." name="Buy Pass..." tool_tip="Een toegangspas geeft u tijdelijk toegang tot dit land."/> + <button left="130" width="125" label="Koop toegangspas..." label_selected="Koop toegangspas..." name="Buy Pass..." tool_tip="Een toegangspas geeft u tijdelijk toegang tot dit land."/> <button label="Land Afstaan..." label_selected="Land Afstaan..." name="Abandon Land..."/> <button label="Land terugvorderen..." label_selected="Land terugvorderen..." name="Reclaim Land..."/> <button label="Lindenverkoop..." label_selected="Lindenverkoop..." name="Linden Sale..." tool_tip="Land moet in bezit zijn, de inhoud moet ingesteld zijn en niet al ter veiling zijn aangeboden."/> @@ -107,36 +120,60 @@ </string> </panel> <panel label="Convenant" name="land_covenant_panel"> + <text name="estate_section_lbl"> + Estate: + </text> + <text name="estate_name_lbl"> + Naam: + </text> + <text name="estate_name_text"> + mainland + </text> + <text name="estate_owner_lbl"> + Eigenaar: + </text> + <text name="estate_owner_text"> + (none) + </text> + <text_editor name="covenant_editor"> + Er is geen convenant voorzien voor dit estate. + </text_editor> <text name="covenant_timestamp_text"> Laatst gewijzigd Wed Dec 31 16:00:00 1969 </text> - <text name="region_name_lbl"> + <text name="region_section_lbl"> Regio: </text> + <text name="region_name_lbl"> + Naam: + </text> <text name="region_name_text"> leyla </text> - <text name="estate_name_lbl"> - Estate: + <text name="region_landtype_lbl"> + Type: </text> - <text name="estate_name_text"> - mainland + <text name="region_landtype_text"> + Mainland / Homestead </text> - <text name="estate_owner_lbl"> - Estate eigenaar: + <text name="region_maturity_lbl"> + Inhoudscategorie: </text> - <text name="estate_owner_text"> - (none) + <text name="region_maturity_text"> + Adult + </text> + <text name="resellable_lbl"> + Doorverkopen: </text> <text name="resellable_clause"> - Aangekocht land in deze regio mag niet worden doorverkocht. + Land in deze regio mag niet worden doorverkocht. + </text> + <text name="changeable_lbl"> + Opsplitsen: </text> <text name="changeable_clause"> - Aangekocht land in deze regio mag niet worden samengevoegd/opgedeeld. + Land in deze regio mag niet worden samengevoegd/opgesplitst. </text> - <text_editor name="covenant_editor"> - Er is geen convenant voorzien voor dit estate. - </text_editor> <string name="can_resell"> Aangekocht land in deze regio mag worden doorverkocht. </string> @@ -144,10 +181,12 @@ Aangekocht land in deze regio mag niet worden doorverkocht. </string> <string name="can_change"> - Aangekocht land in deze regio mag worden samengevoegd of opgedeeld. + Aangekocht land in deze regio mag worden samengevoegd of +opgedeeld. </string> <string name="can_not_change"> - Aangekocht land in deze regio mag niet worden samengevoegd of opgedeeld. + Aangekocht land in deze regio mag niet worden samengevoegd +of opgedeeld. </string> </panel> <panel label="Objecten" name="land_objects_panel"> @@ -157,7 +196,7 @@ <text name="Simulator primitive usage:"> Simulator primitieven gebruik: </text> - <text name="objects_available"> + <text name="objects_available" left="214" width="230"> [COUNT] van [MAX] ([AVAILABLE] beschikbaar) </text> <string name="objects_available_text"> @@ -166,57 +205,59 @@ <string name="objects_deleted_text"> [COUNT] van [MAX] ([DELETED] zullen worden verwijderd) </string> - <text name="Primitives parcel supports:"> + <text name="Primitives parcel supports:" width="200"> Primitieven ondersteund door perceel: </text> - <text name="object_contrib_text"> + <text name="object_contrib_text" left="214" width="152"> [COUNT] </text> <text name="Primitives on parcel:"> Primitieven op perceel: </text> - <text name="total_objects_text"> + <text name="total_objects_text" left="214" width="48"> [COUNT] </text> - <text name="Owned by parcel owner:"> + <text name="Owned by parcel owner:" left="14" width="180" > Eigendom van perceeleigenaar: </text> - <text name="owner_objects_text"> + <text name="owner_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Toon" label_selected="Toon" name="ShowOwner"/> - <button label="Retourneren..." label_selected="Retourneren..." name="ReturnOwner..." tool_tip="Retourneer objecten naar hun eigenaren."/> - <text name="Set to group:"> + <button label="Toon" label_selected="Toon" name="ShowOwner" right="-135" width="60"/> + <button label="Retourneren..." label_selected="Retourneren..." name="ReturnOwner..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> + <text name="Set to group:" left="14" width="180"> Groep toewijzen: </text> - <text name="group_objects_text"> + <text name="group_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Toon" label_selected="Toon" name="ShowGroup"/> - <button label="Retourneren..." label_selected="Retourneren..." name="ReturnGroup..." tool_tip="Retourneer objecten naar hun eigenaren."/> - <text name="Owned by others:"> + <button label="Toon" label_selected="Toon" name="ShowGroup" right="-135" width="60"/> + <button label="Retourneren..." label_selected="Retourneren..." name="ReturnGroup..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> + <text name="Owned by others:" left="14" width="128"> Eigendom van anderen: </text> - <text name="other_objects_text"> + <text name="other_objects_text" left="214" width="48"> [COUNT] </text> - <button label="Toon" label_selected="Toon" name="ShowOther"/> - <button label="Retourneren..." label_selected="Retourneren..." name="ReturnOther..." tool_tip="Retourneer objecten naar hun eigenaren."/> - <text name="Selected / sat upon:"> + <button label="Toon" label_selected="Toon" name="ShowOther" right="-135" width="60"/> + <button label="Retourneren..." label_selected="Retourneren..." name="ReturnOther..." tool_tip="Retourneer objecten naar hun eigenaren." right="-10" width="119"/> + <text name="Selected / sat upon:" left="14" width="193"> Geselecteerd/Er op gezeten </text> - <text name="selected_objects_text"> + <text name="selected_objects_text" left="214" width="48"> [COUNT] </text> - <text name="Autoreturn"> - Objecten van andere inwoners automatisch retourneren (minuten, 0 om uit te schakelen): + <text name="Autoreturn" left="4" width="412" height="32" bottom="-196"> + Objecten van andere inwoners automatisch retourneren (minuten): + (0 om uit te schakelen) </text> - <text name="Object Owners:"> + <line_editor name="clean other time" right="-50" bottom="-179"/> + <text name="Object Owners:" bottom="-213"> Objecteigenaren: </text> - <button label="Ververs lijst" label_selected="Ververs lijst" name="Refresh List"/> - <button label="Retourneer objecten..." label_selected="Retourneer objecten..." name="Return objects..."/> - <name_list name="owner list"> + <button label="Ververs lijst" label_selected="Ververs lijst" name="Refresh List" bottom="-213"/> + <button label="Retourneer objecten..." label_selected="Retourneer objecten..." name="Return objects..." width="164" bottom="-213"/> + <name_list name="owner list" height="104"> <column label="Type" name="type"/> <column label="Naam" name="name"/> <column label="Aantal" name="count"/> @@ -230,20 +271,20 @@ <check_box label="Terrein bewerken" name="edit land check" tool_tip="Indien aangevinkt, kan iedereen uw terrein bewerken. Het is het beste om dit uit te laten staan, omdat u zelf altijd uw eigen land kunt bewerken."/> <check_box label="Maak landmarkering" name="check landmark"/> <check_box label="Vliegen" name="check fly" tool_tip="Indien aangevinkt, kunnen inwoners op uw land vliegen. Indien niet aangevinkt, kunnen ze alleen het land binnenvliegen of eroverheen vliegen."/> - <text name="allow_label2"> + <text name="allow_label2" left="162"> Maak objecten: </text> - <check_box label="Alle inwoners" name="edit objects check"/> + <check_box label="Alle inwoners" name="edit objects check" left="275"/> <check_box label="Groep" name="edit group objects check"/> - <text name="allow_label3"> + <text name="allow_label3" left="162"> Objecten binnenlaten: </text> - <check_box label="Alle inwoners" name="all object entry check"/> + <check_box label="Alle inwoners" name="all object entry check" left="275"/> <check_box label="Groep" name="group object entry check"/> - <text name="allow_label4"> + <text name="allow_label4" left="162"> Scripts uitvoeren: </text> - <check_box label="Alle inwoners" name="check other scripts"/> + <check_box label="Alle inwoners" name="check other scripts" left="275"/> <check_box label="Groep" name="check group scripts"/> <text name="land_options_label"> Landopties: @@ -251,6 +292,56 @@ <check_box label="Veilig (geen letsel)" name="check safe" tool_tip="Indien aangevinkt, wordt het land op Veilig ingesteld, waarmee letselgevechten worden uitgeschakeld. Indien niet aangevinkt, is letsel ingeschakeld."/> <check_box label="Niet duwen" name="PushRestrictCheck" tool_tip="Weerhoudt scripts van duwen. Het aanvinken van deze optie kan handig zijn om storend gedrag op uw land te voorkomen."/> <check_box label="Toon plaats in Zoeken (L$30/week) onder" name="ShowDirectoryCheck" tool_tip="Laat mensen dit perceel zien in zoekresultaten."/> + <string name="search_enabled_tooltip"> + Laat mensen dit perceel zien in zoekresultaten + </string> + <string name="search_disabled_small_tooltip"> + Deze optie is uitgeschakeld, omdat dit gebied 128 m² of kleiner is. Alleen grote percelen kunnen worden opgenomen in Zoeken. + </string> + <string name="search_disabled_permissions_tooltip"> + Deze optie is uitgeschakeld omdat u de opties van dit perceel niet kunt wijzigen. + </string> + <combo_box name="land category with adult"> + <combo_item name="AnyCategory"> + Alle Categorieën + </combo_item> + <combo_item name="LindenLocation"> + Linden locatie + </combo_item> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Arts&Culture"> + Kunst & Cultuur + </combo_item> + <combo_item name="Business"> + Zakelijk + </combo_item> + <combo_item name="Educational"> + Educatief + </combo_item> + <combo_item name="Gaming"> + Spellen + </combo_item> + <combo_item name="Hangout"> + Ontmoetingsplaats + </combo_item> + <combo_item name="NewcomerFriendly"> + Nieuwkomervriendelijk + </combo_item> + <combo_item name="Parks&Nature"> + Parken & natuur + </combo_item> + <combo_item name="Residential"> + Woongebied + </combo_item> + <combo_item name="Shopping"> + Winkelen + </combo_item> + <combo_item name="Other"> + Anders + </combo_item> + </combo_box> <combo_box name="land category"> <combo_item name="AnyCategory"> Alle categorieën @@ -258,7 +349,6 @@ <combo_item name="LindenLocation"> Linden Locatie </combo_item> - <combo_item name="Arts&Culture"> Kunst & Cultuur </combo_item> @@ -291,7 +381,19 @@ </combo_item> </combo_box> <button label="?" label_selected="?" name="?"/> - <check_box name="MatureCheck" /> + <check_box label="Mature inhoud" name="MatureCheck" tool_tip=" "/> + <string name="mature_check_mature"> + Mature inhoud + </string> + <string name="mature_check_adult"> + Adult inhoud + </string> + <string name="mature_check_mature_tooltip"> + Uw perceelinformatie of -inhoud wordt beschouwd als mature. + </string> + <string name="mature_check_adult_tooltip"> + Uw perceelinformatie of -inhoud wordt beschouwd als adult. + </string> <text name="Snapshot:"> Foto: </text> @@ -302,8 +404,8 @@ <string name="landing_point_none"> (none) </string> - <button label="Instellen" label_selected="Instellen" name="Set" tool_tip="Stelt het landingspunt in waar bezoekers arriveren. Wordt ingesteld op uw avatar's positie binnen dit perceel."/> - <button label="Opschonen" label_selected="Opschonen" name="Clear" tool_tip="Landingspunt leegmaken"/> + <button width="70" label="Instellen" label_selected="Instellen" name="Set" tool_tip="Stelt het landingspunt in waar bezoekers arriveren. Wordt ingesteld op uw avatar's positie binnen dit perceel."/> + <button width="70" left="311" label="Opschonen" label_selected="Opschonen" name="Clear" tool_tip="Landingspunt leegmaken"/> <text name="Teleport Routing: "> Teleport routering: </text> @@ -333,17 +435,20 @@ <text name="at URL:"> Media URL: </text> - <button label="Instellen..." label_selected="Instellen..." name="set_media_url"/> + <button label="Instellen..." label_selected="Instellen..." name="set_media_url" width="66"/> <text name="Description:"> Omschrijving: </text> <line_editor name="url_description" tool_tip="Tekst wordt naast afspelen/laden knop weergegeven"/> <text name="Media texture:"> - Vervang textuur + Vervang +textuur: </text> <texture_picker label="" name="media texture" tool_tip="Klik om een afbeelding te kiezen"/> <text name="replace_texture_help"> - (Objecten die deze textuur gebruiken zullen de film of de webpagina tonen nadat u het afspelen-pijltje hebt geklikt.) + (Objecten die deze textuur gebruiken zullen de film +of de webpagina tonen nadat u het afspelen-pijltje +hebt geklikt.) </text> <text name="Options:"> Media opties: @@ -352,10 +457,10 @@ <check_box label="Herhaal media" name="media_loop" tool_tip="Speel media af in een lus. Wanneer de media klaar is met afspelen zal het herstarten vanaf het begin."/> <check_box label="Verberg media URL" name="hide_media_url" tool_tip="Het aanvinken van deze optie zal de media URL verbergen voor alle niet-geautoriseerde bekijkers van de perceelinformatie. Let op: dit is niet beschikbaar voor HTML types."/> <check_box label="Verberg muziek URL" name="hide_music_url" tool_tip="Het aanvinken van deze optie zal de muziek URL verbergen voor alle niet-geautoriseerde bekijkers van de perceelinformatie."/> - <text name="media_size" tool_tip="Grootte om webmedia weer te geven, laat op 0 staan voor standaard."> + <text name="media_size" tool_tip="Grootte om webmedia weer te geven, laat op 0 staan voor standaard." width="120"> Media grootte: </text> - <spinner name="media_size_width" tool_tip="Grootte om webmedia weer te geven, laat op 0 staan voor standaard."/> + <spinner left_delta="90" name="media_size_width" tool_tip="Grootte om webmedia weer te geven, laat op 0 staan voor standaard."/> <spinner name="media_size_height" tool_tip="Grootte om webmedia weer te geven, laat op 0 staan voor standaard."/> <text name="pixels"> pixels @@ -366,21 +471,14 @@ <text name="Sound:"> Geluid: </text> - <check_box label="Spatiaal geluid niet toestaan op dit perceel" name="check sound local"/> + <check_box label="Beperk gebaar- en objectgeluiden tot dit perceel" name="check sound local"/> + <button label="?" label_selected="?" name="?"/> <text name="Voice settings:"> Voice: </text> - <radio_group name="parcel_voice_channel"> - <radio_item name="Estate"> - Gebruik het estate spatiaal kanaal - </radio_item> - <radio_item name="Private"> - Gebruik een privé spatiaal kanaal - </radio_item> - <radio_item name="Disabled"> - Spatiale audio op dit perceel uitschakelen - </radio_item> - </radio_group> + <check_box label="Voice inschakelen" name="parcel_enable_voice_channel"/> + <check_box label="Voice inschakelen (ingesteld in Estate)" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Beperk voice tot dit perceel" name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="Toegang" name="land_access_panel"> <text name="Limit access to this parcel to:"> @@ -397,7 +495,7 @@ </string> <check_box label="Groepstoegang toestaan: [GROUP]" name="GroupCheck" tool_tip="Stel de groep in op het tabblad Algemeen"/> <check_box label="Verkoop toegangspassen aan:" name="PassCheck" tool_tip="Tijdelijke toegang tot dit perceel toestaan"/> - <combo_box name="pass_combo"> + <combo_box name="pass_combo" left_delta="190"> <combo_item name="Anyone"> Iedereen </combo_item> @@ -405,8 +503,8 @@ Groep </combo_item> </combo_box> - <spinner label="Prijs in L$:" name="PriceSpin"/> - <spinner label="Toegangsuren" name="HoursSpin"/> + <spinner label="Prijs in L$:" name="PriceSpin" label_width="168" width="228" /> + <spinner label="Toegangsuren" name="HoursSpin" label_width="168" width="228" /> <text label="Altijd toestaan" name="AllowedText"> Toegestane inwoners </text> diff --git a/indra/newview/skins/default/xui/nl/floater_bulk_perms.xml b/indra/newview/skins/default/xui/nl/floater_bulk_perms.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f35ec45a9745039e1224985c9e40dc3ba1c7dc8 --- /dev/null +++ b/indra/newview/skins/default/xui/nl/floater_bulk_perms.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floaterbulkperms" title="Bulk wijzigen inhoud permissies"> + <text name="applyto"> + Inhoud Typen + </text> + <check_box label="Animatie" name="check_animation"/> + <check_box label="Lichaamsdelen" name="check_bodypart"/> + <check_box label="Kleding" name="check_clothing"/> + <check_box label="Gebaren" name="check_gesture"/> + <check_box label="Landmarkeringen" name="check_landmark"/> + <check_box label="Notitiekaarten" name="check_notecard"/> + <check_box label="Objecten" name="check_object"/> + <check_box label="Scripts" name="check_script"/> + <check_box label="Geluiden" name="check_sound"/> + <check_box label="Texturen" name="check_texture"/> + <button label="Alles aanvinken" label_selected="Alles" name="check_all"/> + <button label="Alles ontvinken" label_selected="Geen" name="check_none"/> + <text name="newperms"> + Nieuwe permissies + </text> + <check_box label="Delen met groep" name="share_with_group"/> + <check_box label="Iedereen mag kopiëren" name="everyone_copy"/> + <text name="NextOwnerLabel"> + Volgende eigenaar kan: + </text> + <check_box label="Wijzigen" name="next_owner_modify"/> + <check_box label="Kopiëren" name="next_owner_copy"/> + <check_box label="Verkopen/Weggeven" name="next_owner_transfer"/> + <button label="Help" name="help"/> + <button label="Toepassen" name="apply"/> + <button label="Sluiten" name="close"/> + <string name="nothing_to_modify_text"> + Selectie bevat geen bewerkbare inhoud. + </string> + <string name="status_text"> + Permissies instellen op [NAME] + </string> + <string name="start_text"> + Starten permissie wijzigings verzoeken... + </string> + <string name="done_text"> + Beïndigd permissie wijzigings verzoeken. + </string> +</floater> diff --git a/indra/newview/skins/default/xui/nl/floater_buy_currency.xml b/indra/newview/skins/default/xui/nl/floater_buy_currency.xml index 787ccf2bdd9b83aaa87a5362294d5434b78df25b..9f740b86c848a73a0c62d7cca6ab9bdc30f2391c 100644 --- a/indra/newview/skins/default/xui/nl/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/nl/floater_buy_currency.xml @@ -22,13 +22,13 @@ <text name="buy_action"> [NAME] L$ [PRICE] </text> - <text name="currency_action"> + <text name="currency_action" width="48"> Koop L$ </text> - <line_editor name="currency_amt"> + <line_editor name="currency_amt" left_delta="53" width="75"> 1234 </line_editor> - <text name="currency_est"> + <text name="currency_est" left_delta="80"> voor ong. US$ [USD] </text> <text name="getting_data"> @@ -52,11 +52,13 @@ <text name="total_amount"> L$ [AMT] </text> - <text name="purchase_warning_repurchase"> - Het bevestigen van deze aankoop zal alleen de valuta kopen. U dient de bewerking opnieuw uit te voeren. + <text name="purchase_warning_repurchase" right="-8"> + Het bevestigen van deze aankoop zal alleen de valuta +kopen. U dient de bewerking opnieuw uit te voeren. </text> - <text name="purchase_warning_notenough"> - U koopt niet voldoende valuta. Verhoog de hoeveelheid die gekocht moet worden. + <text name="purchase_warning_notenough" right="-8"> + U koopt niet voldoende valuta. +Verhoog de hoeveelheid die gekocht moet worden. </text> <button label="Annuleren" name="cancel_btn"/> <button label="Kopen" name="buy_btn"/> diff --git a/indra/newview/skins/default/xui/nl/floater_buy_land.xml b/indra/newview/skins/default/xui/nl/floater_buy_land.xml index 69f06b087136e1d4a7b797fda446faae7debf336..69726fc2c8f8a1f75509d5c840c0c5f3575ffa02 100644 --- a/indra/newview/skins/default/xui/nl/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/nl/floater_buy_land.xml @@ -6,6 +6,12 @@ <text name="region_name_text"> (onbekend) </text> + <text name="region_type_label"> + Type: + </text> + <text name="region_type_text"> + (onbekend) + </text> <text name="estate_name_label"> Estate: </text> @@ -22,10 +28,10 @@ Aangekocht land in deze regio: </text> <text name="resellable_clause"> - Aangekocht land in deze regio mag of mag niet worden doorverkocht. + Mag niet worden doorverkocht </text> <text name="changeable_clause"> - Mag of mag niet worden samengevoegd of opgedeeld. + Mag niet worden samengevoegd/opgesplitst </text> <text name="covenant_text"> U moet instemmen met het estate convenant: @@ -44,13 +50,15 @@ Grootte: </text> <text name="info_size"> - 1024 m2. + 1024 m² </text> <text name="info_price_label"> Prijs: </text> <text name="info_price"> - L$ 1500, inclusief objecten + L$ 1500 +(L$ 1.1/m²) +verkocht met objecten </text> <text name="info_action"> Het kopen van dit land zal: @@ -80,8 +88,8 @@ Verhoog uw maandelijkse landgebruikskosten tot US$ 40/maand </text> <text name="land_use_reason"> - U bezit 1,309 vierkante meters land. -Dit perceel is 512 vierkante meters land. + U bezit 1309 m² land. +Dit perceel omvat 512 m² land. </text> <text name="purchase_action"> Betaal Joe Resident L$4000 voor het land @@ -158,7 +166,7 @@ Dit perceel is 512 vierkante meters land. Het kopen van dit land zal: </string> <string name="buying_for_group"> - Land voor groep kopen: + Land voor groep kopen zal: </string> <string name="cannot_buy_now"> Kan nu niet kopen: @@ -182,7 +190,7 @@ Dit perceel is 512 vierkante meters land. Betaal L$ [AMOUNT] aan [SELLER] voor dit land </string> <string name="buy_for_US"> - Koop L$ [AMOUNT] voor ong. US$ [AMOUNT2] , + Koop L$ [AMOUNT] voor ong. US$ [AMOUNT2], </string> <string name="parcel_meters"> Dit perceel is [AMOUNT] vierkante meters. @@ -200,6 +208,14 @@ ondersteunt [AMOUNT2] objecten <string name="sold_with_objects"> verkocht met objecten </string> + <string name="sold_without_objects"> + objecten niet inbegrepen + </string> + <string name="info_price_string"> + L$ [PRICE] +(L$ [PRICE_PER_SQM]/m²) +[SOLD_WITH_OBJECTS] + </string> <string name="insufficient_land_credits"> De groep [GROUP] heeft voldoende bijdrage van landgebruikcredits nodig om dit perceel te dekken voordat de aankoop kan worden afgerond. </string> diff --git a/indra/newview/skins/default/xui/nl/floater_customize.xml b/indra/newview/skins/default/xui/nl/floater_customize.xml index 33877792fb969efbbaeaefc056c77dc48a694008..7354c9104734dade2bf8eb0627e7fe6b17199115 100644 --- a/indra/newview/skins/default/xui/nl/floater_customize.xml +++ b/indra/newview/skins/default/xui/nl/floater_customize.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater customize" title="Uiterlijk"> - <tab_container name="customize tab container"> +<floater name="floater customize" title="Uiterlijk" width="504"> + <tab_container name="customize tab container" tab_min_width="106" width="502"> <panel label="Lichaamsdelen" name="body_parts_placeholder"/> - <panel label="Postuur" name="Shape"> + <panel label="Postuur" name="Shape" left="112" width="389"> <button label="Herstel" label_selected="Herstel" name="Revert"/> <button label="Lichaam" label_selected="Lichaam" name="Body"/> <button label="Hoofd" label_selected="Hoofd" name="Head"/> @@ -21,7 +21,6 @@ Man </radio_item> </radio_group> - <button label="Willekeurig" label_selected="Willekeurig" name="Randomize"/> <text name="title"> [DESC] </text> @@ -38,21 +37,24 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuwe postuur door hem vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuwe postuur door hem vanuit uw inventaris naar uw avatar +te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Postuur: + </text> <button label="Nieuw postuur maken" label_selected="Nieuw postuur maken" name="Create New"/> - <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> </panel> <panel label="Huid" name="Skin"> - <button label="Huidskleur" label_selected="Huidskleur" name="Skin Color"/> - <button label="Gezichtsdetail" label_selected="Gezichtsdetail" name="Face Detail"/> - <button label="Make-up" label_selected="Make-up" name="Makeup"/> - <button label="Lichaam detail" label_selected="Lichaam detail" name="Body Detail"/> + <button width="88" label="Huidskleur" label_selected="Huidskleur" name="Skin Color"/> + <button width="88" label="Gezichtsdetail" label_selected="Gezichtsdetail" name="Face Detail"/> + <button width="88" label="Make-up" label_selected="Make-up" name="Makeup"/> + <button width="88" label="Lichaam detail" label_selected="Lichaam detail" name="Body Detail"/> <text name="title"> [DESC] </text> @@ -69,19 +71,21 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuwe huid door haar vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuwe huid door haar vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> - <texture_picker label="Hoofd tatoeages" name="Head Tattoos" tool_tip="Klik om een afbeelding te kiezen"/> - <texture_picker label="Bovenste tatoeage" name="Upper Tattoos" tool_tip="Klik om een afbeelding te kiezen"/> - <texture_picker label="Onderste tatoeages" name="Lower Tattoos" tool_tip="Klik om een afbeelding te kiezen"/> - <button label="Willekeurig" label_selected="Willekeurig" name="Randomize"/> + <text name="Item Action Label"> + Huid: + </text> + <texture_picker width="88" label="Hoofd tatoeages" name="Head Tattoos" tool_tip="Klik om een afbeelding te kiezen"/> + <texture_picker width="88" label="Bovenste tatoeage" name="Upper Tattoos" tool_tip="Klik om een afbeelding te kiezen"/> + <texture_picker width="88" label="Onderste tatoeages" name="Lower Tattoos" tool_tip="Klik om een afbeelding te kiezen"/> <button label="Nieuwe huid maken" label_selected="Nieuwe huid maken" name="Create New"/> - <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Haar" name="Hair"> @@ -105,17 +109,19 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag nieuw haar door het vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan nieuw creëren en dragen. + Draag nieuw haar door het vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan nieuw creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Haar: + </text> <texture_picker label="Textuur" name="Texture" tool_tip="Klik om een afbeelding te kiezen"/> - <button label="Willekeurig" label_selected="Willekeurig" name="Randomize"/> <button label="Nieuw haar maken" label_selected="Nieuw haar maken" name="Create New"/> - <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Ogen" name="Eyes"> @@ -135,17 +141,19 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag nieuwe ogen door ze vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. + Draag nieuwe ogen door ze vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Ogen: + </text> <texture_picker label="Iris" name="Iris" tool_tip="Klik om een afbeelding te kiezen"/> - <button label="Willekeurig" label_selected="Willekeurig" name="Randomize"/> <button label="Nieuwe ogen maken" label_selected="Nieuwe ogen maken" name="Create New"/> - <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Kleding" name="clothes_placeholder"/> @@ -155,7 +163,7 @@ <button label="Nieuw hemd maken" label_selected="Nieuw hemd maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> <text name="title"> [DESC] @@ -173,11 +181,15 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuw hemd door hem vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuw hemd door hem vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Hemd: + </text> </panel> <panel label="Broek" name="Pants"> <texture_picker label="Stof" name="Fabric" tool_tip="Klik om een afbeelding te kiezen"/> @@ -185,7 +197,7 @@ <button label="Nieuwe broek maken" label_selected="Nieuwe broek maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> <text name="title"> [DESC] @@ -203,11 +215,15 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuwe broek door hem vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuwe broek door hem vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Broek: + </text> </panel> <panel label="Schoenen" name="Shoes"> <text name="title"> @@ -226,17 +242,21 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag nieuwe schoenen door ze vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. + Draag nieuwe schoenen door ze vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Schoenen: + </text> <texture_picker label="Stof" name="Fabric" tool_tip="Klik om een afbeelding te kiezen"/> <color_swatch label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> <button label="Nieuwe schoenen maken" label_selected="Nieuwe schoenen maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Sokken" name="Socks"> @@ -256,17 +276,21 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag nieuwe sokken door ze vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. + Draag nieuwe sokken door ze vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Sokken: + </text> <texture_picker label="Stof" name="Fabric" tool_tip="Klik om een afbeelding te kiezen"/> <color_swatch label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> <button label="Nieuwe sokken maken" label_selected="Nieuwe sokken maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Jas" name="Jacket"> @@ -286,18 +310,22 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuwe jas door hem vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuwe jas door hem vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> - <texture_picker label="Bovenste stof" name="Upper Fabric" tool_tip="Klik om een afbeelding te kiezen"/> - <texture_picker label="Onderste stof" name="Lower Fabric" tool_tip="Klik om een afbeelding te kiezen"/> - <color_swatch label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> + <text name="Item Action Label"> + Jas: + </text> + <texture_picker width="78" label="Bovenste stof" name="Upper Fabric" tool_tip="Klik om een afbeelding te kiezen"/> + <texture_picker width="78" label="Onderste stof" name="Lower Fabric" tool_tip="Klik om een afbeelding te kiezen"/> + <color_swatch width="78" label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> <button label="Nieuwe jas maken" label_selected="Nieuwe jas maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Handschoenen" name="Gloves"> @@ -317,17 +345,21 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag nieuwe handschoenen door ze vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. + Draag nieuwe handschoenen door ze vanuit uw inventaris naar uw avatar +te slepen. Ook kunt u zelf van begin af aan nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Handschoenen: + </text> <texture_picker label="Stof" name="Fabric" tool_tip="Klik om een afbeelding te kiezen"/> <color_swatch label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> - <button label="Nieuwe handschoenen maken" label_selected="Nieuwe handschoenen maken" name="Create New"/> + <button label="Nieuwe handschoenen maken" label_selected="Nieuwe handschoenen maken" name="Create New" width="180"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Onderhemd" name="Undershirt"> @@ -347,17 +379,21 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuw onderhemd door hem vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuw onderhemd door hem vanuit uw inventaris naar uw avatar +te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Onderhemd: + </text> <texture_picker label="Stof" name="Fabric" tool_tip="Klik om een afbeelding te kiezen"/> <color_swatch label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> <button label="Nieuw onderhemd maken" label_selected="Nieuw onderhemd maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Onderbroek" name="Underpants"> @@ -377,17 +413,22 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuwe onderbroek door hem vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuwe onderbroek door hem vanuit uw inventaris naar uw +avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren +en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Onderbroek: + </text> <texture_picker label="Stof" name="Fabric" tool_tip="Klik om een afbeelding te kiezen"/> <color_swatch label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> <button label="Nieuwe onderbroek maken" label_selected="Nieuwe onderbroek maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> <panel label="Rok" name="Skirt"> @@ -407,21 +448,26 @@ Gelegen in [PATH] </text> <text name="not worn instructions"> - Draag een nieuwe rok door hem vanuit uw inventaris naar uw avatar te slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. + Draag een nieuwe rok door hem vanuit uw inventaris naar uw avatar te +slepen. Ook kunt u zelf van begin af aan een nieuwe creëren en dragen. </text> <text name="no modify instructions"> U heeft geen permissie om dit draagbare item te wijzigen. </text> + <text name="Item Action Label"> + Rok: + </text> <texture_picker label="Stof" name="Fabric" tool_tip="Klik om een afbeelding te kiezen"/> <color_swatch label="Kleur/tint" name="Color/Tint" tool_tip="Klik om de kleurkiezer te openen"/> <button label="Nieuwe rok maken" label_selected="Nieuwe rok maken" name="Create New"/> <button label="Uitdoen" label_selected="Uitdoen" name="Take Off"/> <button label="Opslaan" label_selected="Opslaan" name="Save"/> - <button label="Opslaan als" label_selected="Opslaan als" name="Save As"/> + <button label="Opslaan als..." label_selected="Opslaan als..." name="Save As"/> <button label="Herstel" label_selected="Herstel" name="Revert"/> </panel> </tab_container> - <button label="Sluiten" label_selected="Sluiten" name="Close"/> - <button label="Alles opslaan" label_selected="Alles opslaan" name="Save All"/> - <button label="Maak kleding" label_selected="Maak kleding" name="Make Outfit"/> + <scroll_container left="207" name="panel_container"/> + <button label="Annuleren" label_selected="Annuleren" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="Maak kleding..." label_selected="Maak kleding..." name="Make Outfit" left="110"/> </floater> diff --git a/indra/newview/skins/default/xui/nl/floater_font_test.xml b/indra/newview/skins/default/xui/nl/floater_font_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..8e8b07ee1a59eeb3bb3fc144be51c4acd30108da --- /dev/null +++ b/indra/newview/skins/default/xui/nl/floater_font_test.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="Lettertypetest"> + <text name="linea"> + Overschrijf test, zou hier moeten verschijnen als Times (vanuit default/xui/en-us). + </text> +</floater> diff --git a/indra/newview/skins/default/xui/nl/floater_joystick.xml b/indra/newview/skins/default/xui/nl/floater_joystick.xml index acac088ab06e469b0970e89216d8ab5469072135..27556a89f8cc982beccf904b3175ce77d0b08d5b 100644 --- a/indra/newview/skins/default/xui/nl/floater_joystick.xml +++ b/indra/newview/skins/default/xui/nl/floater_joystick.xml @@ -71,6 +71,8 @@ Zoom dode zone </text> <button label="SpaceNavigator standaardwaarden" name="SpaceNavigatorDefaults"/> + <button label="OK" label_selected="OK" name="ok_btn"/> + <button label="Annuleren" label_selected="Annuleren" name="cancel_btn"/> <string name="JoystickMonitor"> Joystick monitor </string> diff --git a/indra/newview/skins/default/xui/nl/floater_perm_prefs.xml b/indra/newview/skins/default/xui/nl/floater_perm_prefs.xml new file mode 100644 index 0000000000000000000000000000000000000000..d19b5523f5d8ca094dedd1f9c91daf993066887a --- /dev/null +++ b/indra/newview/skins/default/xui/nl/floater_perm_prefs.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="perm prefs" title="Standaard upload Permissies"> + <panel label="Permissies" name="permissions"> + <button label="?" label_selected="?" name="help"/> + <check_box label="Delen met groep" name="share_with_group"/> + <check_box label="Iedereen mag kopiëren" name="everyone_copy"/> + <text name="NextOwnerLabel"> + Volgende eigenaar kan: + </text> + <check_box label="Wijzigen" name="next_owner_modify"/> + <check_box label="Kopiëren" name="next_owner_copy"/> + <check_box label="Verkopen/weggeven" name="next_owner_transfer"/> + </panel> + <button label="OK" label_selected="OK" name="ok"/> + <button label="Annuleren" label_selected="Annuleren" name="cancel"/> +</floater> diff --git a/indra/newview/skins/default/xui/nl/floater_report_abuse.xml b/indra/newview/skins/default/xui/nl/floater_report_abuse.xml index cb3448d33a23c3dfcc87d40abb241638d01a5461..98027a81327c5f0408a3639cdc8a30dc8f7777a6 100644 --- a/indra/newview/skins/default/xui/nl/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/nl/floater_report_abuse.xml @@ -45,9 +45,9 @@ <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> Leeftijd > Volwassen inwoner in Teen Second Life </combo_item> - - - + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + Leeftijd > Minderjarige inwoner buiten Teen Second Life + </combo_item> <combo_item name="Assault__Combat_sandbox___unsafe_area"> Aanval > Gevechtszandbak / onveilig gebied </combo_item> @@ -117,15 +117,15 @@ <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> Onfatsoenlijkheid > Globaal beledigende inhoud of gedrag </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> Onfatsoenlijkheid > Ongepaste avatar naam </combo_item> - - - + <combo_item name="Indecency__Mature_content_in_PG_region"> + Onfatsoenlijkheid > Ongepaste inhoud of gedrag in een PG regio + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + Onfatsoenlijkheid > Ongepaste inhoud of gedrag in een Mature regio + </combo_item> <combo_item name="Intellectual_property_infringement_Content_Removal"> Inbreuk op intellectueel eigendom > Verwijderen van inhoud </combo_item> diff --git a/indra/newview/skins/default/xui/nl/floater_sell_land.xml b/indra/newview/skins/default/xui/nl/floater_sell_land.xml index 7fd4d92333f205bb6e387020f46d844aff41fca0..0208886813348d0a8a38027b594e66176a3aa825 100644 --- a/indra/newview/skins/default/xui/nl/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/nl/floater_sell_land.xml @@ -10,16 +10,18 @@ Grootte: </text> <text name="info_size"> - [AREA] m2 + [AREA] m² </text> - <text name="info_action"> - Om dit perceel te verkopen: + <text height="28" name="info_action" bottom_delta="-57"> + Om dit perceel te +verkopen: </text> + <icon bottom_delta="-86" name="step_price" /> <text name="price_label"> Stel een prijs in: </text> <text name="price_text"> - Kies een geschikte prijs voor dit land + Kies een geschikte prijs voor dit land. </text> <text name="price_ld"> L$ @@ -49,9 +51,10 @@ Verkoop de objecten samen met het land? </text> <text name="sell_objects_text"> - Overdraagbare objecten die eigendom zijn van de landeigenaar zullen van eigenaar veranderen. + Overdraagbare objecten die eigendom zijn van de landeigenaar +zullen van eigenaar veranderen. </text> - <radio_group name="sell_objects"> + <radio_group name="sell_objects" bottom_delta="-58"> <radio_item name="no"> Nee, behoud het eigendom van objecten </radio_item> diff --git a/indra/newview/skins/default/xui/nl/floater_statistics.xml b/indra/newview/skins/default/xui/nl/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..b899c32a56c19935d3e954dd856358b48df9930a --- /dev/null +++ b/indra/newview/skins/default/xui/nl/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="Statistieken"/> diff --git a/indra/newview/skins/default/xui/nl/floater_tools.xml b/indra/newview/skins/default/xui/nl/floater_tools.xml index b19db6a09efc27f8ad19e600d6ef48f8d7888678..c7f99195dd9f8c7f2022a5506bb5349e16ade81a 100644 --- a/indra/newview/skins/default/xui/nl/floater_tools.xml +++ b/indra/newview/skins/default/xui/nl/floater_tools.xml @@ -17,7 +17,7 @@ <check_box label="Selecteer textuur" name="radio select face"/> <check_box label="Bewerk gekoppelde onderdelen" name="checkbox edit linked parts"/> <text name="text ruler mode"> - Liniaal modus + Liniaal: </text> <combo_box name="combobox grid mode"> <combo_item name="World"> @@ -52,35 +52,33 @@ <button label="" label_selected="" name="ToolRing" tool_tip="Ring"/> <button label="" label_selected="" name="ToolTree" tool_tip="Boom"/> <button label="" label_selected="" name="ToolGrass" tool_tip="Gras"/> - <check_box label="Behoud geselecteerde gereedschap" name="checkbox sticky"/> - <check_box label="Kopieer selectie" name="checkbox copy selection"/> - <check_box label="Middelpunt kopie" name="checkbox copy centers"/> - <check_box label="Roteer kopie" name="checkbox copy rotates"/> + <check_box label="Behoud geselecteerd" name="checkbox sticky"/> + <check_box label="Kopiëer Selectie" name="checkbox copy selection"/> + <check_box label="Middelpunt" name="checkbox copy centers"/> + <check_box label="Roteer" name="checkbox copy rotates"/> <check_box label="Selecteer land" name="radio select land"/> - <check_box label="Land vlakmaken" name="radio flatten"/> - <check_box label="Land verhogen" name="radio raise"/> - <check_box label="Land verlagen" name="radio lower"/> - <check_box label="Land egaliseren" name="radio smooth"/> - <check_box label="Land opruwen" name="radio noise"/> - <check_box label="Herstel land" name="radio revert"/> - <combo_box name="combobox brush size"> - <combo_item name="Small"> - Klein - </combo_item> - <combo_item name="Medium"> - Medium - </combo_item> - <combo_item name="Large"> - Groot - </combo_item> - </combo_box> + <check_box label="Vlak maken" name="radio flatten"/> + <check_box label="Verhogen" name="radio raise"/> + <check_box label="Verlagen" name="radio lower"/> + <check_box label="Egaliseren" name="radio smooth"/> + <check_box label="Opruwen" name="radio noise"/> + <check_box label="Herstellen" name="radio revert"/> + <button label="Toepassen" label_selected="Toepassen" name="button apply to selection" tool_tip="Wijzig geselecteerd land"/> + <text name="Bulldozer:"> + Bulldozer: + </text> + <text name="Dozer Size:"> + Grootte + </text> <text name="Strength:"> - Sterkte: + Sterkte + </text> + <text name="obj_count"> + Geselecteerde objecten: [COUNT] + </text> + <text name="prim_count"> + primitieven: [COUNT] </text> - <button label="Toepassen op selectie" label_selected="Toepassen op selectie" name="button apply to selection" tool_tip="Wijzig geselecteerd land"/> - <check_box label="Toon eigenaren" name="checkbox show owners"/> - <button label="Meer >>" name="button more" tool_tip="Geavanceerde opties"/> - <button label="<< Minder" name="button less" tool_tip="Geavanceerde opties"/> <tab_container name="Object Info Tabs"> <panel label="Algemeen" name="General"> <text name="Name:"> @@ -110,16 +108,13 @@ De Lindens </text> <button label="Instellen..." label_selected="Instellen..." name="button set group"/> - <text name="prim info"> - 1 Object, 1 Primitief - </text> <text name="Permissions:"> Permissies: </text> <text name="perm_modify"> U kunt dit object wijzigen </text> - <check_box label="Deel met groep" name="checkbox share with group" tool_tip="Groepsleden toestaan om te verplaatsen, wijzigen, kopiëren en verwijderen."/> + <check_box label="Deel met groep" name="checkbox share with group" tool_tip="Alle leden van de ingestelde groep toestaan om te delen en uw permissies voor dit object te gebruiken. U moet 'Overdragen' om rolbeperkingen in te schakelen."/> <string name="text deed continued"> Overdragen... </string> @@ -362,6 +357,9 @@ <text name="advanced_dimple"> Deuk begin en einde </text> + <text name="advanced_slice"> + Uitsnede Begin en Einde + </text> <spinner label="B" name="Path Limit Begin"/> <spinner label="E" name="Path Limit End"/> <text name="text taper2"> @@ -552,21 +550,33 @@ <button label="Uitlijnen" label_selected="Uitlijnen" name="button align"/> </panel> <panel label="Inhoud" name="Contents"> - <button label="Nieuw script..." label_selected="Nieuw script..." name="button new script"/> + <button label="Nieuw script" label_selected="Nieuw script..." name="button new script"/> + <button label="Permissies..." name="button permissions"/> </panel> </tab_container> <panel name="land info panel"> + <text name="label_parcel_info"> + Perceel Informatie + </text> <text name="label_area_price"> Prijs: L$[PRICE] voor [AREA] m2. </text> <text name="label_area"> Gebied: [AREA] m2. </text> - <button label="Koop land..." label_selected="Koop land..." name="button buy land"/> - <button label="Land Afstaan..." label_selected="Land Afstaan..." name="button abandon land"/> + <button label="Over land..." label_selected="Over land..." name="button about land"/> + <check_box label="Toon Eigenaren" name="checkbox show owners" tool_tip="Kleur percelen op basis van hun eigendom"/> + <button label="?" label_selected="?" name="button show owners help"/> + <text name="label_parcel_modify"> + Wijzig Perceel + </text> <button label="Opdelen..." label_selected="Opdelen..." name="button subdivide land"/> <button label="Samenvoegen..." label_selected="Samenvoegen..." name="button join land"/> - <button label="Over land..." label_selected="Over land..." name="button about land"/> + <text name="label_parcel_trans"> + Landtransacties + </text> + <button label="Koop land..." label_selected="Koop land..." name="button buy land"/> + <button label="Land Afstaan..." label_selected="Land Afstaan..." name="button abandon land"/> </panel> <string name="status_rotate"> Sleep de gekleurde banden om het object te roteren @@ -584,10 +594,10 @@ Klik en sleep om beeld te wijzigen </string> <string name="status_grab"> - Sleep om objecten te verplaatsen, Ctrl om op te tillen, Ctrl-Shift om te draaien + Sleep om te verplaatsen, Ctrl om op te tillen, Ctrl-Shift om te roteren. </string> <string name="status_place"> - Klik in de wereld om te creëren, shift-klik om te selecteren + Klik in-wereld om te bouwen </string> <string name="status_selectland"> Klik en sleep om land te selecteren 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 a6dcf0b8ddb3435a248f2b30b456cba9c69185a5..a13eba4dc7bbf7722ee1806195abd06ddad79edf 100644 --- a/indra/newview/skins/default/xui/nl/floater_world_map.xml +++ b/indra/newview/skins/default/xui/nl/floater_world_map.xml @@ -4,35 +4,30 @@ <panel label="Objecten" name="objects_mapview"/> <panel label="Terrein" name="terrain_mapview"/> </tab_container> - <text name="land_for_sale_label"> - Land te koop - </text> - <text name="auction_label"> - Veiling - </text> <text name="you_label"> U </text> + <icon left="1058" name="home"/> <text name="home_label"> Thuis </text> - <button label="Ga naar Thuislocatie" label_selected="Ga naar Thuislocatie" name="Go Home" tool_tip="Teleport naar uw thuislocatie"/> - <text name="person_label"> - Persoon - </text> - <text name="infohub_label"> - Infohub - </text> - <text name="telehub_label"> - Telehub + <text name="auction_label"> + Veiling </text> - <text name="land_for_sale_label2"> + <text name="land_for_sale_label"> Land te koop </text> + <button width="122" left="1116" label="Ga naar Thuislocatie" label_selected="Ga naar Thuislocatie" name="Go Home" tool_tip="Teleport naar uw thuislocatie"/> + <check_box label="Inwoner" name="people_chk"/> + <check_box label="Infohub" name="infohub_chk"/> + <check_box label="Telehub" name="telehubchk"/> + <check_box label="Land te koop" name="land_for_sale_chk"/> <text name="events_label"> - Evenementen + Evenementen: </text> - + <check_box label="PG" name="event_chk"/> + <check_box label="Mature" name="event_mature_chk"/> + <check_box label="Adult" name="event_adult_chk"/> <combo_box label="Online vrienden" name="friend combo" tool_tip="Vriend die op kaart getoond wordt"> <combo_item name="none_selected"> Online vrienden diff --git a/indra/newview/skins/default/xui/nl/menu_inventory.xml b/indra/newview/skins/default/xui/nl/menu_inventory.xml index 96bc98211dc0c9a8f2befcc58db6e327edde244e..f406bcf6bc7dd3839219febb2ee6dd3e8ef9dcef 100644 --- a/indra/newview/skins/default/xui/nl/menu_inventory.xml +++ b/indra/newview/skins/default/xui/nl/menu_inventory.xml @@ -55,6 +55,7 @@ <menu_item_call label="Activeren" name="Activate"/> <menu_item_call label="Deactiveren" name="Deactivate"/> <menu_item_call label="Losmaken van jezelf" name="Detach From Yourself"/> + <menu_item_call label="Herstellen naar laatste positie" name="Restore to Last Position"/> <menu_item_call label="Dragen" name="Object Wear"/> <menu label="Bevestigen aan" name="Attach To"/> <menu label="Bevestigen aan HUD" name="Attach To HUD"/> diff --git a/indra/newview/skins/default/xui/nl/menu_mini_map.xml b/indra/newview/skins/default/xui/nl/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..0a6dfa346580851a0e4000157073d888c837a115 --- /dev/null +++ b/indra/newview/skins/default/xui/nl/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="Zoom dichtbij" name="Zoom Close"/> + <menu_item_call label="Zoom gemiddeld" name="Zoom Medium"/> + <menu_item_call label="Zoom veraf" name="Zoom Far"/> + <menu_item_call label="Stop volgen" name="Stop Tracking"/> + <menu_item_call label="Profiel..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/nl/menu_viewer.xml b/indra/newview/skins/default/xui/nl/menu_viewer.xml index 3731dd12f053b0a7200231b7a1708b745930e48d..0827858d68c7c0b1d1957ed46300f18fd4f6769d 100644 --- a/indra/newview/skins/default/xui/nl/menu_viewer.xml +++ b/indra/newview/skins/default/xui/nl/menu_viewer.xml @@ -3,10 +3,12 @@ <menu label="Bestand" name="File"> <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> <menu label="Upload" name="upload"> - <menu_item_call label="Upload afbeelding (L$[COST])..." name="Upload Image"/> - <menu_item_call label="Upload geluid (L$[COST])..." name="Upload Sound"/> - <menu_item_call label="Upload animatie (L$[COST])..." name="Upload Animation"/> - <menu_item_call label="Bulk Upload (L$[COST] per bestand)..." name="Bulk Upload"/> + <menu_item_call label="Afbeelding (L$[COST])..." name="Upload Image"/> + <menu_item_call label="Geluid (L$[COST])..." name="Upload Sound"/> + <menu_item_call label="Animatie (L$[COST])..." name="Upload Animation"/> + <menu_item_call label="Bulk (L$[COST] per bestand)..." name="Bulk Upload"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Standaard permissies instellen..." name="perm prefs"/> </menu> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Sluit venster" name="Close Window"/> @@ -81,6 +83,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_check label="Statistiekenbalk" name="Statistics Bar"/> <menu_item_check label="Eigendomlijnen" name="Property Lines"/> + <menu_item_check label="Banlijnen" name="Banlines"/> <menu_item_check label="Landeigenaren" name="Land Owners"/> <menu_item_separator label="-----------" name="separator4"/> <menu label="Tooltips" name="Hover Tips"> @@ -113,7 +116,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="Afwezig instellen" name="Set Away"/> <menu_item_call label="Niet-storen instellen" name="Set Busy"/> - <menu_item_call label="Stop alle animaties" name="Stop All Animations"/> + <menu_item_call label="Stop het animeren van mijn avatar" name="Stop Animating My Avatar"/> <menu_item_call label="Toetsen vrijgeven" name="Release Keys"/> <menu_item_separator label="-----------" name="separator4"/> <menu_item_call label="Account geschiedenis..." name="Account History..."/> @@ -164,7 +167,6 @@ <menu_item_call label="Zoom naar selectie" name="Zoom to Selection"/> <menu_item_call label="Koop object" name="Menu Object Take"/> <menu_item_call label="Neem kopie" name="Take Copy"/> - <menu_item_call label="Object terug opslaan in mijn inventaris" name="Save Object Back to My Inventory"/> <menu_item_call label="Object terug opslaan in objectinhoud" name="Save Object Back to Object Contents"/> <menu_item_separator label="-----------" name="separator6"/> <menu_item_call label="Toon script waarschuwing/fout venster" name="Show Script Warning/Error Window"/> diff --git a/indra/newview/skins/default/xui/nl/notifications.xml b/indra/newview/skins/default/xui/nl/notifications.xml index 708e6c22d278830402117d633793ec309de1f12e..c64c2cd021e16165109b57e5dd3dbb0638201606 100644 --- a/indra/newview/skins/default/xui/nl/notifications.xml +++ b/indra/newview/skins/default/xui/nl/notifications.xml @@ -1,20 +1,14 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> Toon mij dit niet meer. - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> Kies altijd deze optie - </global> - + </global> <template name="okbutton"> <form> <button - - name="OK" text="$yestext"/> </form> @@ -23,8 +17,6 @@ <template name="okignore"> <form> <button - - name="OK" text="$yestext"/> <ignore text="$ignoretext"/> @@ -34,12 +26,9 @@ <template name="okcancelbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> </form> @@ -48,12 +37,9 @@ <template name="okcancelignore"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> <ignore text="$ignoretext"/> @@ -63,12 +49,9 @@ <template name="okhelpbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Help" text="$helptext"/> </form> @@ -77,5715 +60,3026 @@ <template name="yesnocancelbuttons"> <form> <button - - name="Yes" text="$yestext"/> <button - name="No" text="$notext"/> <button - name="Cancel" text="$canceltext"/> </form> </template> + <notification functor="GenericAcknowledge" label="Onbekende waarschuwingsboodschap" name="MissingAlert"> + Uw versie van Second Life weet niet hoe het de waarschuwingsboodschap die zojuist ontvangen is moet weergeven. - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -'[_NAME]' ontbreekt in notifications.xml. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -Reële waarde fout: Kon de volgende controllers niet vinden: +Foutdetails: De waarschuwing genaamd '[_NAME]' is niet gevonden in notifications.xml. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + Reële waarde fout: Kon de volgende controllers niet vinden: [CONTROLS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + Er is momenteel geen handleiding beschikbaar. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Ja"/> + </notification> + <notification name="BadInstallation"> + Er is een fout opgetreden tijdens het bijwerken van Second Life. Download alstublieft de meest recente versie van secondlife.com <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -Er is momenteel geen handleiding beschikbaar. - <usetemplate + </notification> + <notification name="LoginFailedNoNetwork"> + Netwerkfout: Kan geen verbinding opzetten. +'[DIAGNOSTIC]' +Controleer alstublieft uw netwerkverbinding. + <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Ja"/> - </notification> - - <notification - - name="WearableSave" - > -Wijzigingen aan huidig kledingstuk/lichaamsdeel opslaan? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Niet Opslaan" - yestext="Opslaan"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -Er was een probleem met het uploaden van de tekst van een script vanwege de volgende reden: [REASON]. Probeer het alstublieft later nog eens. - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -Er was een probleem met het uploaden van het gecompileerde script vanwege de volgende reden: [REASON]. Probeer het alstublieft later nog eens. - </notification> - - <notification - - name="WriteAnimationFail" - > -Er was een probleem met het wegschrijven van animatie gegevens. Probeer het alstublieft later nog eens. - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -Er was een probleem met het uploaden van de veiling foto vanwege de volgende reden: [REASON] - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -Het is niet mogelijk om de inhoud van meer dan één item tegelijk te zien. + </notification> + <notification name="MessageTemplateNotFound"> + Berichtsjabloon [PATH] niet gevonden. + <usetemplate + name="okbutton" + yestext="OK"/> + </notification> + <notification name="WearableSave"> + Wijzigingen aan huidig kledingstuk/lichaamsdeel opslaan? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Niet Opslaan" yestext="Opslaan"/> + </notification> + <notification name="CompileQueueSaveText"> + Er was een probleem met het uploaden van de tekst van een script vanwege de volgende reden: [REASON]. Probeer het alstublieft later nog eens. + </notification> + <notification name="CompileQueueSaveBytecode"> + Er was een probleem met het uploaden van het gecompileerde script vanwege de volgende reden: [REASON]. Probeer het alstublieft later nog eens. + </notification> + <notification name="WriteAnimationFail"> + Er was een probleem met het wegschrijven van animatie gegevens. Probeer het alstublieft later nog eens. + </notification> + <notification name="UploadAuctionSnapshotFail"> + Er was een probleem met het uploaden van de veiling foto vanwege de volgende reden: [REASON] + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + Het is niet mogelijk om de inhoud van meer dan één item tegelijk te zien. Kies alstublieft slechts één item en probeer het opnieuw. - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -Wijzigingen aan kledingstuk/lichaamsdeel opslaan? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Niet Opslaan" - yestext="Alles Opslaan"/> - </notification> - - <notification - - name="GrantModifyRights" - > -Het geven van wijzigingsrechten aan een andere inwoner, maakt het voor hun mogelijk om elk willekeurig object te wijzigen, te verwijderen of om WILLEKEURIGE objecten die u in wereld heeft terug te nemen. Wees HEEL voorzichtig met het uitgeven van dit recht. + </notification> + <notification name="SaveClothingBodyChanges"> + Wijzigingen aan kledingstuk/lichaamsdeel opslaan? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Niet Opslaan" yestext="Alles Opslaan"/> + </notification> + <notification name="GrantModifyRights"> + Het geven van wijzigingsrechten aan een andere inwoner, maakt het voor hun mogelijk om elk willekeurig object te wijzigen, te verwijderen of om WILLEKEURIGE objecten die u in wereld heeft terug te nemen. Wees HEEL voorzichtig met het uitgeven van dit recht. Wilt u wijzigingsrechten aan [FIRST_NAME] [LAST_NAME] geven? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -Het geven van wijzigingsrechten aan een andere inwoner, maakt het voor hun mogelijk elk WILLEKEURIG object te wijzigen die u in wereld heeft. Wees HEEL voorzichtig met het uitgeven van dit recht. + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + Het geven van wijzigingsrechten aan een andere inwoner, maakt het voor hun mogelijk elk WILLEKEURIG object te wijzigen die u in wereld heeft. Wees HEEL voorzichtig met het uitgeven van dit recht. Wilt u wijzigingsrechten aan de geselecteerde inwoners geven? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -Wilt u de wijzigingsrechten voor [FIRST_NAME] [LAST_NAME] terugnemen? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -Wilt u de wijzigingsrechten voor de geselecteerde inwoners terugnemen? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -Kan geen groep aanmaken. + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="RevokeModifyRights"> + Wilt u de wijzigingsrechten voor [FIRST_NAME] [LAST_NAME] terugnemen? + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + Wilt u de wijzigingsrechten voor de geselecteerde inwoners terugnemen? + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="UnableToCreateGroup"> + Kan geen groep aanmaken. [MESSAGE] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Wijzigingen Negeren" - yestext="Wijzigingen Toepassen"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -U moet een onderwerp opgeven om dit bericht te kunnen versturen. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -U staat op het punt groepsleden de rol [ROLE_NAME] te geven. + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Wijzigingen Negeren" yestext="Wijzigingen Toepassen"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + U moet een onderwerp opgeven om dit bericht te kunnen versturen. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + U staat op het punt groepsleden de rol [ROLE_NAME] te geven. Leden kunnen niet van die groep worden verwijderd. De leden moeten zichzelf ontheffen uit deze rol. Weet u zeker dat u door wilt gaan? - <usetemplate - ignoretext="Wanneer u groepsleden toevoegt aan de eigenaren rol" - name="okcancelignore" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -U staat op het punt de Bekwaamheid '[ACTION_NAME]' aan de Rol '[ROLE_NAME]' toe te voegen. + <usetemplate ignoretext="Wanneer u groepsleden toevoegt aan de eigenaren rol" name="okcancelignore" notext="Nee" yestext="Ja"/> + </notification> + <notification name="AssignDangerousActionWarning"> + U staat op het punt de Bekwaamheid '[ACTION_NAME]' aan de Rol '[ROLE_NAME]' toe te voegen. *WAARSCHUWING* Elk lid in de Rol met deze Bekwaamheid kan zichzelf - en elk ander lid - Rollen geven die meer mogelijkheden hebben dan waar zij nu over beschikken, zichzelf daarmee verheffend tot bijna eigenaar mogelijkheden. Weet zeker waar u mee bezig bent alvorens deze Bekwaamheid toe te kennen. Deze Bekwaamheid toevoegen aan '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -U staat op het punt de Bekwaamheid '[ACTION_NAME]' aan de Rol '[ROLE_NAME]' toe te voegen. + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + U staat op het punt de Bekwaamheid '[ACTION_NAME]' aan de Rol '[ROLE_NAME]' toe te voegen. *WAARSCHUWING* Elk lid in de Rol met deze Bekwaamheid kan zichzelf - en elk ander lid - alle Bekwaamheden geven, zich daarmee verheffend tot bijna Eigenaar mogelijkheden. Deze Bekwaamheid toevoegen aan '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -Het selecteren van de "Publiceer in Zoeken" optie + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="ClickPublishHelpLand"> + Het selecteren van de "Publiceer in Zoeken" optie Het aan vinken van deze optie zal: - dit perceel weergeven in de zoek resultaten - de publieke objecten van dit perceel weergeven - dit perceel in web zoeken weergeven - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -U kunt dit perceel niet zichtbaar maken in zoeken omdat het zich in een regio bevindt dat dit niet toelaat - </notification> - - <notification - - name="ClickPublishHelpAvatar" - > -Het selecteren van "Weergeven in Zoeken" zal weergeven: + </notification> + <notification name="ClickSoundHelpLand"> + Media en muziek kunnen alleen binnen het perceel ervaren worden. Geluid- en voice-opties kunnen worden beperkt tot het perceel of zullen worden gehoord door inwoners buiten het perceel, gebaseerd op hun inhoudscategorie. Ga naar de kennisbank om meer te leren over hoe deze opties ingesteld kunnen worden. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Ga naar kennisbank" + notext="Sluiten" /> + </notification> + <notification name="ClickSearchHelpAll"> + Zoekresultaten zijn georganiseerd op basis van het tabblad waar u zich in bevindt, uw inhoudscategorie, de gekozen categorie en andere factoren. Kijk alstublieft in de kennisbank voor meer details. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Ga naar kennisbank" + notext="Sluiten" /> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + U kunt dit perceel niet zichtbaar maken in zoeken omdat het zich in een regio bevindt dat dit niet toelaat + </notification> + <notification name="ClickPublishHelpAvatar"> + Het selecteren van "Weergeven in Zoeken" zal weergeven: - mijn profiel in de zoek resultaten - een link naar mijn profiel in de publieke groep pagina's - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -U kunt een andere Inwoner ten huwelijk vragen of een bestaand partner schap verbreken via de [SECOND_LIFE] website. + </notification> + <notification name="ClickPartnerHelpAvatar"> + U kunt een andere Inwoner ten huwelijk vragen of een bestaand partner schap verbreken via de [SECOND_LIFE] website. Naar de Second Life website gaan voor meer informatie over partner schap? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Ga naar Pagina"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -Als een Inwoner een web profiel URL heeft ingesteld: + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Ga naar Pagina"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + Uw standaard permissies werken mogelijk niet in oudere regio's. + </notification> + <notification name="ClickWebProfileHelpAvatar"> + Als een Inwoner een web profiel URL heeft ingesteld: * Klik op 'Laden' om de pagina in deze web tab te zien. * Klik op Laden > 'In externe browser' om de pagina in uw standaard browser te zien * 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. - </notification> - - <notification - - name="JoinGroupCanAfford" - > -Deelname aan deze groep kost L$[COST]. + </notification> + <notification name="JoinGroupCanAfford"> + Deelname aan deze groep kost L$[COST]. Wilt u doorgaan? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Deelnemen"/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -Deelname aan deze groep kost L$[COST]. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Deelnemen"/> + </notification> + <notification name="JoinGroupCannotAfford"> + Deelname aan deze groep kost L$[COST]. U heeft niet genoeg L$ om deel te kunnen nemen aan deze groep. - </notification> - - <notification - - name="LandBuyPass" - > -Voor L$[COST] krijgt u toegang tot het land ('[PARCEL_NAME]') voor de duur van [TIME] uur. + </notification> + <notification name="LandBuyPass"> + Voor L$[COST] krijgt u toegang tot het land ('[PARCEL_NAME]') voor de duur van [TIME] uur. Een pas kopen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -De verkoopprijs moet ingesteld staan op meer dan L$0 indien u aan iemand verkoopt. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + De verkoopprijs moet ingesteld staan op meer dan L$0 indien u aan iemand verkoopt. Kies een individu indien u het voor L$0 verkoopt. - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -De geselecteerde [LAND_SIZE] m² land is te koop gezet. + </notification> + <notification name="ConfirmLandSaleChange"> + De geselecteerde [LAND_SIZE] m² land is te koop gezet. Uw verkoopprijs is L$[SALE_PRICE] en zal geautoriseerd worden voor verkoop door [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -ATTENTIE: Het aanklikken van 'verkoop aan iedereen' zal uw land beschikbaar maken aan de gehele Second Life gemeenschap, zo ook diegenen niet in deze regio! + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + ATTENTIE: Het aanklikken van 'verkoop aan iedereen' zal uw land beschikbaar maken aan de gehele Second Life gemeenschap, zo ook diegenen niet in deze regio! De geselecteerde [LAND_SIZE] m² land is te koop gezet. Uw verkoopprijs is L$[SALE_PRICE] en zal geautoriseerd worden voor verkoop door [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -Weet u zeker dat u alle met de groep '[NAME]' gedeelde objecten van dit perceel wilt retourneren naar de inventaris van hun vorige eigenaren? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + Weet u zeker dat u alle met de groep '[NAME]' gedeelde objecten van dit perceel wilt retourneren naar de inventaris van hun vorige eigenaren? *WAARSCHUWING* Dit zal alle niet-overdraagbare aan de groep toegekende objecten verwijderen! Objecten: [N] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedByUser" - > -Weet u zeker dat u alle objecten van Inwoner '[NAME]' op dit perceel wilt retourneren naar hun inventaris? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + Weet u zeker dat u alle objecten van Inwoner '[NAME]' op dit perceel wilt retourneren naar hun inventaris? Objecten: [N] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsOwnedBySelf" - > -Weet u zeker dat u al uw eigen objecten op dit perceel wilt retourneren naar uw inventaris? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + Weet u zeker dat u al uw eigen objecten op dit perceel wilt retourneren naar uw inventaris? Objecten: [N] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -Weet u zeker dat u alle objecten op dit perceel die geen eigendom van u zijn wilt retourneren naar de inventaris van hun eigenaren? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + Weet u zeker dat u alle objecten op dit perceel die geen eigendom van u zijn wilt retourneren naar de inventaris van hun eigenaren? Overdraagbare objecten toegekend aan de groep zullen worden geretourneerd naar de oorspronkelijke eigenaren. *WAARSCHUWING* Dit zal alle niet-overdraagbare aan de groep toegekende objecten verwijderen! Objecten: [N] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByUser" - > -Weet u zeker dat u alle objecten op dit perceel die GEEN eigendom zijn van [NAME] wilt retourneren naar de inventaris van hun eigenaar? Overdraagbare objecten toegekend aan de groep zullen worden geretourneerd naar de oorspronkelijke eigenaren. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + Weet u zeker dat u alle objecten op dit perceel die GEEN eigendom zijn van [NAME] wilt retourneren naar de inventaris van hun eigenaar? Overdraagbare objecten toegekend aan de groep zullen worden geretourneerd naar de oorspronkelijke eigenaren. *WAARSCHUWING* Dit zal alle niet-overdraagbare aan de groep toegekende objecten verwijderen! Objecten: [N] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ReturnAllTopObjects" - > -Weet u zeker dat u alle weergegeven objecten wilt retourneren naar de inventaris van hun eigenaar? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="DisableAllTopObjects" - > -Weet u zeker dat u alle objecten in deze regio uit wilt schakelen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -Alle objecten op dit perceel die NIET gedeeld worden met de groep [NAME] retourneren naar hun eigenaren? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ReturnAllTopObjects"> + Weet u zeker dat u alle weergegeven objecten wilt retourneren naar de inventaris van hun eigenaar? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="DisableAllTopObjects"> + Weet u zeker dat u alle objecten in deze regio uit wilt schakelen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + Alle objecten op dit perceel die NIET gedeeld worden met de groep [NAME] retourneren naar hun eigenaren? Objecten: [N] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="UnableToDisableOutsideScripts" - > -Kan scripts niet uitschakelen. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + Kan scripts niet uitschakelen. Voor de hele regio is letsel ingeschakeld. Scripts moeten toegestaan worden om wapens te kunnen laten werken. - </notification> + </notification> + <notification name="MustBeInParcel"> + U moet binnen een perceel staan om het Landings Punt in te stellen. + </notification> + <notification name="PromptRecipientEmail"> + Geef alstublieft een geldig email adres op van de ontvanger(s). + </notification> + <notification name="PromptSelfEmail"> + Voer uw email adres in. + </notification> + <notification name="PromptMissingSubjMsg"> + Foto e-mailen met het standaard onderwerp of bericht? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + Fout opgetreden met het verwerken van de foto gegevens + </notification> + <notification name="ErrorEncodingSnapshot"> + Fout opgetreden met het coderen van de foto. + </notification> + <notification name="ErrorUploadingPostcard"> + Er is een probleem met het verzenden van de foto vanwege de volgende reden: [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + Er is een probleem met het uploaden van de rapport foto vanwege de volgende reden: [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + U moet akkoord gaan met de Voorwaarden van Dienstverlening (Terms of Service) om in te kunnen loggen in [SECOND_LIFE]. + </notification> + <notification name="CouldNotPutOnOutfit"> + Kon de outfit niet aan doen. +De outfit folder bevat geen kleding, lichaamsdelen of externe bevestigingen. + </notification> + <notification name="CannotWearTrash"> + U kunt geen kleding of lichaamsdelen aan trekken die zich in de vuilnisbak bevinden. + </notification> + <notification name="CannotWearInfoNotComplete"> + U kunt dat item niet aantrekken omdat het nog niet geladen is. Probeer het over een minuut opnieuw. + </notification> + <notification name="MustHaveAccountToLogIn"> + Oeps! Iets is nog leeg. +U moet zowel de voornaam als de achternaam van uw avatar opgeven. - <notification - - name="MustBeInParcel" - > -U moet binnen een perceel staan om het Landings Punt in te stellen. - </notification> +U heeft een account nodig om [SECOND_LIFE] binnen te gaan. Wilt u er nu een maken? + <usetemplate name="okcancelbuttons" notext="Probeer het opnieuw" yestext="Maak een nieuw account"/> + </notification> + <notification name="AddClassified"> + Geclassificeerde advertenties verschijnen een week lang in de 'Advertentie' sectie van de Zoek gids en op www.secondlife.com. +Vul uw advertentie in en klik op 'Publiceer...' om het toe te voegen aan de gids. +Er zal u om een prijs worden gevraagd als u deze gaat publiceren. +Indien u meer betaald zal uw advertentie hoger in de lijst verschijnen en ook hoger als men op sleutelwoorden zoekt. + <usetemplate ignoretext="Indien u een advertentie toevoegt" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="DeleteClassified"> + Advertentie '[NAME]' verwijderen? +Betaalde advertentiekosten zullen niet worden terug gestort. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ClassifiedSave"> + Wijzigingen in advertentie [NAME] opslaan? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Niet Opslaan" yestext="Opslaan"/> + </notification> + <notification name="DeleteAvatarPick"> + Favoriet [PICK] verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="PromptGoToEventsPage"> + Naar de [SECOND_LIFE] evenementen web pagina gaan? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="SelectProposalToView"> + Kies alstublieft een voorstel om in te zien. + </notification> + <notification name="SelectHistoryItemToView"> + Kies alstublieft een geschiedenis item om in te zien. + </notification> + <notification name="ResetShowNextTimeDialogs"> + Wilt u alle Pop-Up's opnieuw inschakelen die u eerder aanmerkte als 'Laat mij niet opnieuw zien'? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + Wilt u alle Pop-Up's uitschakelen die overgeslagen kunnen worden? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + 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. +Opmerking: Dit zal de Cache legen. + </notification> + <notification name="ChangeConnectionPort"> + Poort instelling zullen effect hebben nadat u [SECOND_LIFE] opnieuw start. + </notification> + <notification name="ChangeSkin"> + De nieuwe skin zal verschijnen nadat u [SECOND_LIFE] opnieuw start. + </notification> + <notification name="GoToAuctionPage"> + Ga naar de [SECOND_LIFE] web pagina om de veiling details te zien of een bod uit te brengen. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="SaveChanges"> + Wijzigingen Opslaan? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Niet Opslaan" yestext="Opslaan"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + Gebaar opslaan is niet gelukt. +Dit gebaar heeft te veel stappen. +Probeer enkele stappen te verwijderen en opnieuw op te slaan. + </notification> + <notification name="GestureSaveFailedTryAgain"> + Gebaar opslaan is niet gelukt. Probeer het over enkele ogenblikken opnieuw. + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + Kon het gebaar niet opslaan omdat het object of bijbehorende object niet in de inventaris kon worden gevonden. - <notification - - name="PromptRecipientEmail" - > -Geef alstublieft een geldig email adres op van de ontvanger(s). - </notification> +Het object kan buiten bereik of mogelijk verwijderd zijn. + </notification> + <notification name="GestureSaveFailedReason"> + Er was een probleem met het opslaan van het gebaar vanwege de volgende reden: [REASON]. Probeert u het gebaar later nogmaals op te slaan. + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + Kon de notitiekaart niet opslaan omdat het object of bijbehorende object niet in de inventaris kon worden gevonden. - <notification - - name="PromptSelfEmail" - > -Voer uw email adres in. - </notification> +Het object kan buiten bereik of mogelijk verwijderd zijn. + </notification> + <notification name="SaveNotecardFailReason"> + Er was een probleem met het opslaan van de notitiekaart vanwege de volgende reden: [REASON]. Probeert u de notitiekaart later nogmaals op te slaan. + </notification> + <notification name="ScriptCannotUndo"> + Kon niet alle wijzigingen ongedaan maken in uw versie van het script. +Wilt u de laatst op de server opgeslagen versie laden? +(**Waarschuwing** Deze operatie kan niet ongedaan gemaakt worden.) + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="SaveScriptFailReason"> + Er was een probleem met het opslaan van een script vanwege de volgende reden: [REASON]. Probeert u het script later nogmaals op te slaan. + </notification> + <notification name="SaveScriptFailObjectNotFound"> + Kon het script niet opslaan omdat het object waar het in zit niet gevonden kon worden. +Het object kan buiten bereik of mogelijk verwijderd zijn. + </notification> + <notification name="SaveBytecodeFailReason"> + Er was een probleem met het opslaan van een gecompileerd script vanwege de volgende reden: [REASON]. Probeert u het script later nogmaals op te slaan. + </notification> + <notification name="CouldNotStartStopScript"> + Kon het script niet starten of stoppen omdat het object wat het in zit niet gevonden kon worden. +Het object kan buiten bereik of mogelijk verwijderd zijn. + </notification> + <notification name="CannotDownloadFile"> + Kon het bestand niet downloaden + </notification> + <notification name="CannotWriteFile"> + Kan niet naar bestand [[FILE]] schrijven + </notification> + <notification name="UnsupportedHardware"> + Waarschuwing: Uw systeem voldoet niet aan de Second Life minimum systeem eisen. Indien u Second Life gebruikt, ervaart u mogelijk slechte prestaties. Helaas kunnen we geen technische ondersteuning geven voor niet ondersteunde configuraties. - <notification - - name="PromptMissingSubjMsg" - > -Foto e-mailen met het standaard onderwerp of bericht? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> +MINSPECS +Wilt u [_URL] bezoeken voor meer informatie? + <url name="url" option="0"> + http://secondlife.com/support/sysreqs.php?lang=nl + </url> + <usetemplate ignoretext="Indien niet ondersteunde hardware gedetecteerd" name="okcancelignore" notext="Nee" yestext="Ja"/> + </notification> + <notification name="UnknownGPU"> + Uw systeem heeft een grafische kaart die bij ons nog niet bekend is op dit moment. - <notification - - name="ErrorProcessingSnapshot" - > -Fout opgetreden met het verwerken van de foto gegevens - </notification> +Dit is vaak het geval met nieuwe hardware waarbij wij nog niet de kans gehad hebben om het te testen. Second Life zal mogelijk naar behoren functioneren, doch het kan zijn dat u uw grafische instellingen naar geschiktere waarden zult moeten instellen. +(Bewerken menu > Voorkeuren > Grafisch). + <form name="form"> + <ignore name="ignore" text="Indien een onbekende grafische kaart gedetecteerd"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] is gestopt bij het initialiseren van de grafische stuurprogramma's. +Grafische kwaliteit zal op zijn laagst worden ingesteld om veel voorkomende fouten met stuurprogramma's te vermijden. +Dit zal sommige grafische opties uitschakelen. +Wij adviseren u de stuurprogramma's van uw grafische kaart bij te werken. +Grafische kwaliteit kan verhoogd worden in Voorkeuren > Grafisch. + </notification> + <notification name="RegionNoTerraforming"> + De regio [REGION] staat geen land aanpassingen toe. + </notification> + <notification name="CannotCopyWarning"> + U heeft geen permissie dit item te kopiëren en zult het kwijtraken als u het weg geeft. Wilt u dit item echt aanbieden? + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="CannotGiveItem"> + Kan inventaris item niet geven. + </notification> + <notification name="TransactionCancelled"> + Transactie afgebroken. + </notification> + <notification name="TooManyItems"> + Kan niet meer dan 42 items in één enkele inventaris overdracht geven. + </notification> + <notification name="NoItems"> + U heeft geen permissie de geselecteerde items over te dragen. + </notification> + <notification name="CannotCopyCountItems"> + U heeft geen permissie om [COUNT] geselecteerde items te kopiëren. U zult deze items uit uw inventaris kwijtraken. +Weet u zeker dat u deze items wilt geven? + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="CannotGiveCategory"> + U heeft geen permissie de geselecteerde map over te dragen. + </notification> + <notification name="FreezeAvatar"> + Avatar bevriezen? +Hij of zij zal zich tijdelijk niet kunnen bewegen, praten of interactie kunnen hebben met de wereld. + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Ontdooien" yestext="Bevriezen"/> + </notification> + <notification name="FreezeAvatarFullname"> + Bevries [AVATAR_NAME]? +Hij of zij zal zich tijdelijk niet kunnen bewegen, praten of interactie kunnen hebben met de wereld. + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Ontdooien" yestext="Bevriezen"/> + </notification> + <notification name="EjectAvatarFullname"> + [AVATAR_NAME] van uw land verwijderen? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Verwijderen en Bannen" yestext="Verwijderen"/> + </notification> + <notification name="EjectAvatarNoBan"> + Deze avatar van u land verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Verwijder"/> + </notification> + <notification name="EjectAvatarFullnameNoBan"> + [AVATAR_NAME] van uw land verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Verwijder"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + VERWERVINGS FOUT: Te veel objecten geselecteerd + </notification> + <notification name="AcquireErrorObjectSpan"> + VERWERVINGS FOUT: Objecten beslaan meer dan één regio. +Verplaats alstublieft alle objecten die u wilt verwerven naar dezelfde regio. + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] - <notification - - name="ErrorEncodingSnapshot" - > -Fout opgetreden met het coderen van de foto. - </notification> +Naar [URL] gaan voor informatie over de aankoop valuta? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="UnableToLinkObjects"> + Kon deze [COUNT] objecten niet linken. +U kunt maximaal [MAX] objecten linken. + </notification> + <notification name="CannotLinkIncompleteSet"> + U kunt alleen complete sets van objecten linken en moet meer dan één object selecteren. + </notification> + <notification name="CannotLinkModify"> + Kon niet linken omdat u geen wijziging permissies heeft op alle objecten. - <notification - - name="ErrorUploadingPostcard" - > -Er is een probleem met het verzenden van de foto vanwege de volgende reden: [REASON] - </notification> +Wees er van overtuigd dat er geen enkele geblokkeerd is en dat ze allen uw eigendom zijn. + </notification> + <notification name="CannotLinkDifferentOwners"> + Kon niet linken omdat niet alle objecten dezelfde eigenaar hebben. - <notification - - name="ErrorUploadingReportScreenshot" - > -Er is een probleem met het uploaden van de rapport foto vanwege de volgende reden: [REASON] - </notification> +Wees er van overtuigd dat alle objecten uw eigendom zijn. + </notification> + <notification name="NoFileExtension"> + Geen bestandsextensie voor het bestand: '[FILE]' - <notification - - name="MustAgreeToLogIn" - > -U moet akkoord gaan met de Voorwaarden van Dienstverlening (Terms of Service) om in te kunnen loggen in [SECOND_LIFE]. - </notification> +Zorg dat het bestand de juiste bestandsextensie heeft. + </notification> + <notification name="InvalidFileExtension"> + Ongeldige bestandsextensie [EXTENSION] +Verwacht [VALIDS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + Kon het geüploade geluidsbestand niet openen om te lezen: +[FILE] + </notification> + <notification name="SoundFileNotRIFF"> + Het bestand lijkt geen RIFF WAVE bestand te zijn: +[FILE] + </notification> + <notification name="SoundFileNotPCM"> + Het bestand lijkt geen PCM WAVE audio bestand te zijn: +[FILE] + </notification> + <notification name="SoundFileInvalidChannelCount"> + Het bestand heeft een ongeldig aantal kanalen (moet mono of stereo zijn): +[FILE] + </notification> + <notification name="SoundFileInvalidSampleRate"> + Het bestand lijkt geen ondersteund sample rate te hebben (moet 44.1k zijn): +[FILE] + </notification> + <notification name="SoundFileInvalidWordSize"> + Het bestand lijkt geen ondersteund word size te hebben (moet 8 of 16 bit zijn): +[FILE] + </notification> + <notification name="SoundFileInvalidHeader"> + Kon geen 'data' chunk in WAV header vinden: +[FILE] + </notification> + <notification name="SoundFileInvalidTooLong"> + Audio bestand is te lang (10 seconden maximum): +[FILE] + </notification> + <notification name="ProblemWithFile"> + Probleem met bestand [FILE]: - <notification - - name="CouldNotPutOnOutfit" - > -Kon de outfit niet aan doen. -De outfit folder bevat geen kleding, lichaamsdelen of externe bevestigingen. - </notification> +[ERROR] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + Kon geen tijdelijk gecomprimeerd geluidsbestand openen om naar toe te schrijven: [FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + Onbekende Vorbis codeer fout in: [FILE] + </notification> + <notification name="CannotEncodeFile"> + Kan bestand niet coderen: [FILE] + </notification> + <notification name="CorruptResourceFile"> + Beschadigd bron bestand: [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + Onbekende Linden bronbestandsversie in bestand: [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + Niet mogelijk om uitvoerbestand te maken: [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + Wij ondersteunen momenteel geen bulk upload van animatie bestanden. + </notification> + <notification name="CannotUploadReason"> + Niet mogelijk om bestand [FILE] te uploaden vanwege de volgende reden: [REASON] +Probeer het later opnieuw. + </notification> + <notification name="CannotCreateLandmarkNotOwner"> + U kunt hier geen land markering maken omdat de eigenaar van het land dit niet toestaat. + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + Niet mogelijk om te 'her compileren'. +Selecteer een object met een script. + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + Niet mogelijk om te 'hercompileren'. - <notification - - name="CannotWearTrash" - > -U kunt geen kleding of lichaamsdelen aan trekken die zich in de vuilnisbak bevinden. - </notification> +Selecteer objecten met scripts waarvan u permissie heeft deze aan te passen. + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + Kan geen 'Opnieuw instellen' uitvoeren. - <notification - - name="CannotWearInfoNotComplete" - > -U kunt dat item niet aantrekken omdat het nog niet geladen is. Probeer het over een minuut opnieuw. - </notification> +Selecteer objecten met scripts. + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + Kan geen 'Opnieuw instellen' uitvoeren. - <notification - - name="MustHaveAccountToLogIn" - > -Oeps! Iets is nog leeg. -U moet zowel de voornaam als de achternaam van uw avatar opgeven. +Selecte objecten met scripts waarvan u permissie heeft deze aan te passen. + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + Kan geen enkele scripts instellen op 'Uitvoeren'. -U heeft een account nodig om [SECOND_LIFE] binnen te gaan. Wilt u er nu een maken? - <usetemplate - name="okcancelbuttons" - notext="Probeer het opnieuw" - yestext="Maak een nieuw account"/> - </notification> +Selecteer objecten met scripts. + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + Kan geen enkele scripts instellen op 'Niet uitvoeren'. - <notification - - name="AddClassified" - > -Geclassificeerde advertenties verschijnen een week lang in de 'Advertentie' sectie van de Zoek gids en op www.secondlife.com. -Vul uw advertentie in en klik op 'Publiceer...' om het toe te voegen aan de gids. -Er zal u om een prijs worden gevraagd als u deze gaat publiceren. -Indien u meer betaald zal uw advertentie hoger in de lijst verschijnen en ook hoger als men op sleutelwoorden zoekt. - <usetemplate - ignoretext="Indien u een advertentie toevoegt" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="DeleteClassified" - > -Advertentie '[NAME]' verwijderen? -Betaalde advertentiekosten zullen niet worden terug gestort. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ClassifiedSave" - > -Wijzigingen in advertentie [NAME] opslaan? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Niet Opslaan" - yestext="Opslaan"/> - </notification> - - <notification - - name="DeleteAvatarPick" - > -Favoriet [PICK] verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="PromptGoToEventsPage" - > -Naar de [SECOND_LIFE] evenementen web pagina gaan? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="SelectProposalToView" - > -Kies alstublieft een voorstel om in te zien. - </notification> - - <notification - - name="SelectHistoryItemToView" - > -Kies alstublieft een geschiedenis item om in te zien. - </notification> - - <notification - - name="ResetShowNextTimeDialogs" - > -Wilt u alle Pop-Up's opnieuw inschakelen die u eerder aanmerkte als 'Laat mij niet opnieuw zien'? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -Wilt u alle Pop-Up's uitschakelen die overgeslagen kunnen worden? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="CacheWillClear" - > -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. -Opmerking: Dit zal de Cache legen. - </notification> - - <notification - - name="ChangeConnectionPort" - > -Poort instelling zullen effect hebben nadat u [SECOND_LIFE] opnieuw start. - </notification> - - <notification - - name="ChangeSkin" - > -De nieuwe skin zal verschijnen nadat u [SECOND_LIFE] opnieuw start. - </notification> - - <notification - - name="GoToAuctionPage" - > -Ga naar de [SECOND_LIFE] web pagina om de veiling details te zien of een bod uit te brengen. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="SaveChanges" - > -Wijzigingen Opslaan? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Niet Opslaan" - yestext="Opslaan"/> - </notification> - - <notification - - name="GestureSaveFailedTooManySteps" - > -Gebaar opslaan is niet gelukt. -Dit gebaar heeft te veel stappen. -Probeer enkele stappen te verwijderen en opnieuw op te slaan. - </notification> - - <notification - - name="GestureSaveFailedTryAgain" - > -Gebaar opslaan is niet gelukt. Probeer het over enkele ogenblikken opnieuw. - </notification> - - <notification - - name="GestureSaveFailedObjectNotFound" - > -Kon het gebaar niet opslaan omdat het object of bijbehorende object niet in de inventaris kon worden gevonden. - -Het object kan buiten bereik of mogelijk verwijderd zijn. - </notification> - - <notification - - name="GestureSaveFailedReason" - > -Er was een probleem met het opslaan van het gebaar vanwege de volgende reden: [REASON]. Probeert u het gebaar later nogmaals op te slaan. - </notification> - - <notification - - name="SaveNotecardFailObjectNotFound" - > -Kon de notitiekaart niet opslaan omdat het object of bijbehorende object niet in de inventaris kon worden gevonden. - -Het object kan buiten bereik of mogelijk verwijderd zijn. - </notification> - - <notification - - name="SaveNotecardFailReason" - > -Er was een probleem met het opslaan van de notitiekaart vanwege de volgende reden: [REASON]. Probeert u de notitiekaart later nogmaals op te slaan. - </notification> - - <notification - - name="ScriptCannotUndo" - > -Kon niet alle wijzigingen ongedaan maken in uw versie van het script. -Wilt u de laatst op de server opgeslagen versie laden? -(**Waarschuwing** Deze operatie kan niet ongedaan gemaakt worden.) - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="SaveScriptFailReason" - > -Er was een probleem met het opslaan van een script vanwege de volgende reden: [REASON]. Probeert u het script later nogmaals op te slaan. - </notification> - - <notification - - name="SaveScriptFailObjectNotFound" - > -Kon het script niet opslaan omdat het object waar het in zit niet gevonden kon worden. -Het object kan buiten bereik of mogelijk verwijderd zijn. - </notification> - - <notification - - name="SaveBytecodeFailReason" - > -Er was een probleem met het opslaan van een gecompileerd script vanwege de volgende reden: [REASON]. Probeert u het script later nogmaals op te slaan. - </notification> - - <notification - - name="CouldNotStartStopScript" - > -Kon het script niet starten of stoppen omdat het object wat het in zit niet gevonden kon worden. -Het object kan buiten bereik of mogelijk verwijderd zijn. - </notification> - - <notification - - name="CannotDownloadFile" - > -Kon het bestand niet downloaden - </notification> - - <notification - - name="CannotWriteFile" - > -Kan niet naar bestand [[FILE]] schrijven - </notification> - - <notification - - name="UnsupportedHardware" - > -Waarschuwing: Uw systeem voldoet niet aan de Second Life minimum systeem eisen. Indien u Second Life gebruikt, ervaart u mogelijk slechte prestaties. Helaas kunnen we geen technische ondersteuning geven voor niet ondersteunde configuraties. - -MINSPECS -Wilt u [_URL] bezoeken voor meer informatie? - <url option="0" name="url"> - - http://secondlife.com/support/sysreqs.php?lang=nl - </url> - <usetemplate - ignoretext="Indien niet ondersteunde hardware gedetecteerd" - name="okcancelignore" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="UnknownGPU" - > -Uw systeem heeft een grafische kaart die bij ons nog niet bekend is op dit moment. - -Dit is vaak het geval met nieuwe hardware waarbij wij nog niet de kans gehad hebben om het te testen. Second Life zal mogelijk naar behoren functioneren, doch het kan zijn dat u uw grafische instellingen naar geschiktere waarden zult moeten instellen. -(Bewerken menu > Voorkeuren > Grafisch). - <form name="form"> - <ignore name="ignore" - text="Indien een onbekende grafische kaart gedetecteerd"/> - </form> - </notification> - - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] is gestopt bij het initialiseren van de grafische stuurprogramma's. -Grafische kwaliteit zal op zijn laagst worden ingesteld om veel voorkomende fouten met stuurprogramma's te vermijden. -Dit zal sommige grafische opties uitschakelen. -Wij adviseren u de stuurprogramma's van uw grafische kaart bij te werken. -Grafische kwaliteit kan verhoogd worden in Voorkeuren > Grafisch. - </notification> - - <notification - - name="RegionNoTerraforming" - > -De regio [REGION] staat geen land aanpassingen toe. - </notification> - - <notification - - name="CannotCopyWarning" - > -U heeft geen permissie dit item te kopiëren en zult het kwijtraken als u het weg geeft. Wilt u dit item echt aanbieden? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="CannotGiveItem" - > -Kan inventaris item niet geven. - </notification> - - <notification - - name="TransactionCancelled" - > -Transactie afgebroken. - </notification> - - <notification - - name="TooManyItems" - > -Kan niet meer dan 42 items in één enkele inventaris overdracht geven. - </notification> - - <notification - - name="NoItems" - > -U heeft geen permissie de geselecteerde items over te dragen. - </notification> - - <notification - - name="CannotCopyCountItems" - > -U heeft geen permissie om [COUNT] geselecteerde items te kopiëren. U zult deze items uit uw inventaris kwijtraken. -Weet u zeker dat u deze items wilt geven? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> - </notification> - - <notification - - name="CannotGiveCategory" - > -U heeft geen permissie de geselecteerde map over te dragen. - </notification> - - <notification - - name="FreezeAvatar" - > -Avatar bevriezen? -Hij of zij zal zich tijdelijk niet kunnen bewegen, praten of interactie kunnen hebben met de wereld. - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Ontdooien" - yestext="Bevriezen"/> - </notification> - - <notification - - name="FreezeAvatarFullname" - > -Bevries [AVATAR_NAME]? -Hij of zij zal zich tijdelijk niet kunnen bewegen, praten of interactie kunnen hebben met de wereld. - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Ontdooien" - yestext="Bevriezen"/> - </notification> - - <notification - - name="EjectAvatarFullname" - > -[AVATAR_NAME] van uw land verwijderen? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Verwijderen en Bannen" - yestext="Verwijderen"/> - </notification> - - <notification - - name="EjectAvatarNoBan" - > -Deze avatar van u land verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Verwijder"/> - </notification> - - <notification - - name="EjectAvatarFullnameNoBan" - > -[AVATAR_NAME] van uw land verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Verwijder"/> - </notification> - - <notification - - name="AcquireErrorTooManyObjects" - > -VERWERVINGS FOUT: Te veel objecten geselecteerd - </notification> - - <notification - - name="AcquireErrorObjectSpan" - > -VERWERVINGS FOUT: Objecten beslaan meer dan één regio. -Verplaats alstublieft alle objecten die u wilt verwerven naar dezelfde regio. - </notification> - - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] - -Naar [URL] gaan voor informatie over de aankoop valuta? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="UnableToLinkObjects" - > -Kon deze [COUNT] objecten niet linken. -U kunt maximaal [MAX] objecten linken. - </notification> - - <notification - - name="CannotLinkIncompleteSet" - > -U kunt alleen complete sets van objecten linken en moet meer dan één object selecteren. - </notification> - - <notification - - name="CannotLinkModify" - > -Kon niet linken omdat u geen wijziging permissies heeft op alle objecten. - -Wees er van overtuigd dat er geen enkele geblokkeerd is en dat ze allen uw eigendom zijn. - </notification> - - <notification - - name="CannotLinkDifferentOwners" - > -Kon niet linken omdat niet alle objecten dezelfde eigenaar hebben. - -Wees er van overtuigd dat alle objecten uw eigendom zijn. - </notification> - - <notification - - name="NoFileExtension" - > -Geen bestandsextensie voor het bestand: '[FILE]' - -Zorg dat het bestand de juiste bestandsextensie heeft. - </notification> - - <notification - - name="InvalidFileExtension" - > -Ongeldige bestandsextensie [EXTENSION] -Verwacht [VALIDS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -Kon het geüploade geluidsbestand niet openen om te lezen: -[FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -Het bestand lijkt geen RIFF WAVE bestand te zijn: -[FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -Het bestand lijkt geen PCM WAVE audio bestand te zijn: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -Het bestand heeft een ongeldig aantal kanalen (moet mono of stereo zijn): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -Het bestand lijkt geen ondersteund sample rate te hebben (moet 44.1k zijn): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -Het bestand lijkt geen ondersteund word size te hebben (moet 8 of 16 bit zijn): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -Kon geen 'data' chunk in WAV header vinden: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -Audio bestand is te lang (10 seconden maximum): -[FILE] - </notification> - - <notification - - name="ProblemWithFile" - > -Probleem met bestand [FILE]: - -[ERROR] - </notification> - - <notification - - name="CannotOpenTemporarySoundFile" - > -Kon geen tijdelijk gecomprimeerd geluidsbestand openen om naar toe te schrijven: [FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -Onbekende Vorbis codeer fout in: [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -Beschadigd bron bestand: [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -Onbekende Linden bronbestandsversie in bestand: [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -Niet mogelijk om uitvoerbestand te maken: [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -Wij ondersteunen momenteel geen bulk upload van animatie bestanden. - </notification> - - <notification - - name="CannotUploadReason" - > -Niet mogelijk om bestand [FILE] te uploaden vanwege de volgende reden: [REASON] -Probeer het later opnieuw. - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -U kunt hier geen land markering maken omdat de eigenaar van het land dit niet toestaat. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -Niet mogelijk om te 'her compileren'. -Selecteer een object met een script. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -Niet mogelijk om te 'hercompileren'. - -Selecteer objecten met scripts waarvan u permissie heeft deze aan te passen. - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -Kan geen 'Opnieuw instellen' uitvoeren. - -Selecteer objecten met scripts. - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -Kan geen 'Opnieuw instellen' uitvoeren. - -Selecte objecten met scripts waarvan u permissie heeft deze aan te passen. - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -Kan geen enkele scripts instellen op 'Uitvoeren'. - -Selecteer objecten met scripts. - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -Kan geen enkele scripts instellen op 'Niet uitvoeren'. - -Selecteer objecten met scripts. - </notification> - - <notification - - name="NoFrontmostFloater" - > -Geen voorgaande floating waarde om op te slaan. - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -Uw zoek opdracht was aangepast en de woorden die te kort waren zijn verwijderd. - -Gezocht naar: [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -Uw zoek termen waren te kort en er is geen zoekopdracht uitgevoerd. - </notification> - - <notification - - name="CouldNotTeleportReason" - > -Kon niet Teleporteren. -[REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -Kan landeigenaar niet instellen: -Geen perceel geselecteerd. - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -Kon geen land eigendom forceren omdat de selectie meerder regio's omvat. -Selecteer alstublieft een kleiner gebied en probeer het opnieuw. - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -Dit perceel staat voor veiling aangemerkt. Eigendom forceren zal de veiling afbreking en kan potentieel een aantal inwoners niet erg blij maken als het bieden al is begonnen. Eigendom forceren? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -Unable to contentify: -Geen perceel geselecteerd. - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -Unable to contentify: -Geen regio geselecteerd. - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -Kan land niet afstaan: -Geen perceel geselecteerd. - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -Kan land niet afstaan: -kan de regio niet vinden. - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -Kan land niet kopen: -Geen perceel geselecteerd. - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -Kan land niet kopen: -Kan de regio niet vinden waar dit land zich bevind. - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -U kunt het Koop Land venster niet sluiten totdat Second Life de prijs van de transactie geschat heeft. - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -Kan land niet toekennen: -Geen perceel geselecteerd. - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -Kan land niet toekennen: -Geen groep geselecteerd. - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -Kan land niet toekennen: -Kan de regio niet vinden waar dit land zich bevind. -Gebruik alstublieft Gereedschappen -> Report Bug om het te rapporteren. - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -Kan land niet toekennen: -Meerder percelen geselecteerd. - -Probeer één enkel perceel te selecteren. - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -Deze locatie van streaming media afspelen. - -Streaming media vereisen een snelle internet verbinding. - -Streaming media afspelen wanneer beschikbaar? -(U kunt deze optie later wijzigen onder Preferenties > Audio & Video.) - <usetemplate - name="okcancelbuttons" - notext="Uitschakelen" - yestext="Media Afspelen"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -Kan land niet toekennen: -Wacht op de server om eigendom te rapporteren. - -Probeer het alstublieft opnieuw. - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -Kan land niet toekennen: -De regio [REGION] staat geen overdracht van land toe. - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -Kan land niet afstaan: -Wacht op server om de perceel informatie bij te werken. - -Probeer het over enkele ogenblikken opnieuw. - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -Kan land niet afstaan: -Niet alle geselecteerde percelen zijn uw eigendom. - -Kies alstublieft één perceel. - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -Kan land niet afstaan: -U heeft geen permissie dit perceel vrij te geven. -Percelen in uw eigendom verschijnen in groen. - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -Kan land niet afstaan: -Kan de regio niet vinden waar dit land zich bevind. - -Gebruik alstublieft Gereedschappen > Report Bug om het te rapporteren. - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -Kan land niet afstaan: -De regio [REGION] staat geen overdracht van land toe. - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -Kan land niet afstaan: -U moet het gehele perceel selecteren om het vrij te kunnen geven. - -Selecteer het gehele perceel of deel het eerst op. - </notification> - - <notification - - name="ReleaseLandWarning" - > -U staat op het punt om [AREA] m² land af te staan. -Met het afstaan van dit perceel zal het uit uw land houderschapsoverzicht verdwijnen, maar zal u geen L$ toekennen. - -Dit land afstaan? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -Kan land niet opdelen: - -Geen percelen geselecteerd. - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -Kan land niet opdelen: - -U heeft het gehele perceel geselecteerd. -Probeer een deel van het perceel te selecteren. - </notification> - - <notification - - name="LandDivideWarning" - > -Opdelen zal het perceel in twee delen verdelen en elk perceel kan zijn eigen instellingen hebben. Sommige instellingen zullen naar de standaard waarden terugkeren als de operatie voltooid is. - -Land opdelen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -Kan het land niet opdelen: -Kan de regio niet vinden waar dit land zich bevind. - -Gebruik alstublieft Gereedschappen > Report Bug om het te rapporteren. - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -Kan land niet verbinden: -Kan de regio niet vinden waar dit land zich bevind. - -Gebruik alstublieft Gereedschappen > Report Bug om het te rapporteren. - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -Kan land niet verbinden: -Geen perceel geselecteerd. - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -Kan land niet verbinden: -U heeft slechts één perceel geselecteerd. - -Selecteer land over beide percelen. - </notification> - - <notification - - name="CannotJoinLandSelection" - > -Kan land niet verbinden: -U moet meer dan één perceel selecteren. - -Selecteer land over beide percelen. - </notification> - - <notification - - name="JoinLandWarning" - > -Het verbinding van dit land zal één groot perceel opleveren uit alle percelen die de rechthoek doorkruisen. -U zult de naam en opties van het nieuwe perceel opnieuw in moeten stellen. - -Land verbinden? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -Deze notitiekaart zal moet worden opgeslagen voordat het item kan worden gekopieerd of bekeken. Notitiekaart opslaan? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -Dit item naar uw inventaris kopiëren? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Kopiëren"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -Mislukt om resolutie te verwisselen van [RESX] naar [RESY] - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -Fout: Onbekend gras: [SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -Fout: Onbekende bomen: [SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -Kon '[NAME]' niet opslaan voor draagbaar item. U zult wat ruimte moeten maken op uw computer en het draagbare item opnieuw op moeten slaan. - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -Kon [NAME] niet opslaan in centrale (asset) opslag. -Meestal is dit een tijdelijk probleem. -Wijzig en sla het draagbaar item over een paar minuten opnieuw op. - -Indien dit probleem aanhoudt, klik dan alstublieft op 'Gereedschap > Rapporteer Bug' in het menu en voeg informatie toe over uw netwerk instellingen. - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -U bent uitgelogd uit [SECOND_LIFE]: -[MESSAGE] -U kunt uw bestaande IM en chat bekijken door te klikken op 'Toon IM & Chat'. Anders, klik op Afsluiten om [SECOND_LIFE] direct te verlaten. - <usetemplate - name="okcancelbuttons" - notext="Afsluiten" - yestext="Toon IM & Chat"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -Kan land niet voor de groep kopen: -U heeft geen permissie land te kopen voor de actieve groep. - </notification> - - <notification - - label="Vriend Toevoegen" - name="AddFriend" - > -Vrienden kunnen elkaar permissie geven om elkaar te volgen op de Kaart en om Online status updates te verkrijgen. - -Vriendschap aanbieden aan [NAME]? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - label="Vriend Toevoegen" - name="AddFriendWithMessage" - > -Vrienden kunnen elkaar permissie geven om elkaar te volgen op de Kaart en om Online status updates te verkrijgen. - -Vriendschap aanbieden aan [NAME]? - <form name="form"> - <input name="message" type="text"> -Wilt U mijn vriend zijn? - </input> - <button - - - name="Offer" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -Wilt u [FIRST_NAME] [LAST_NAME] van uw Vriend lijst verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -Wilt u meerder vrienden van uw Vrienden lijst verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -Weet u zeker dat u alle gescripte objecten wilt verwijderen eigendom van -** [AVATAR_NAME] ** -op allen hun land in deze sim? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -Weet u zeker dat u ALLE gescripte objecten wilt VERWIJDEREN eigendom van -** [AVATAR_NAME] ** -op AL het land in deze sim? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -Weet u zeker, dat u ALLE objecten (gescript of niet) wilt VERWIJDEREN eigendom van -** [AVATAR_NAME] ** -op AL het LAND in deze sim? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -U moet een naam opgeven voor uw advertentie. - </notification> - - <notification - - name="MinClassifiedPrice" - > -De prijs voor weergave moet minimaal L$[MIN_PRICE] zijn. - -Voor alstublieft een hoger bedrag in. - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -Ten minste één van de geselecteerde items is geblokkeerd. - -Weet u zeker dat u deze items wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -Ten minste één van de geselecteerde items is niet kopieerbaar. - -Weet u zeker dat u deze items wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -Tenminste één van de geselecteerde items is niet uw eigendom. - -Weet u zeker dat u deze items wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -Ten minste één item is geblokkeerd. -Ten minste één item is niet kopieerbaar. - -Weet u zeker dat u deze items wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -Ten minste één item is geblokkeerd. -Tenminste één object is niet uw eigendom. - -Weet u zeker dat u deze items wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -Ten minste één object is niet kopieerbaar. -Tenminste één object is niet uw eigendom. - -Weet u zeker dat u deze items wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -Ten minste één item is geblokkeerd. -Ten minste één item is niet kopieerbaar. -Tenminste één object is niet uw eigendom. - -Weet u zeker dat u deze items wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -Ten minste één object is geblokkeerd. - -Weet u zeker dat u deze items terug wilt nemen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -Niet alle objecten die u terug neemt zijn uw eigendom. -Indien u verder gaat, worden de permissies van de volgende eigenaar er op toegepast en beperkt het u mogelijk het aan te passen of te kopiëren. - -Weet u zeker dat u deze items terug wilt nemen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -Ten minste één object is geblokkeerd. -Niet alle objecten die u terug neemt zijn uw eigendom. -Indien u verder gaat, worden de permissies van de volgende eigenaar er op toegepast en beperkt het u mogelijk het aan te passen of te kopiëren. -Echter, U kunt de huidige selectie wel terugnemen. - -Weet u zeker dat u deze items terug wilt nemen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -Kan het land niet kopen omdat het meerder regio's omvat. - -Kiest u alstublieft een kleiner gebied en probeer het opnieuw. - </notification> - - <notification - - name="DeedLandToGroup" - > -Voor het overdragen van dit perceel zal de groep voldoen land gebruikscredit moeten hebben en onderhouden. -Het aankoop bedrag zal niet naar de eigenaar worden terug gestort. -Indien een overgedragen perceel wordt verkocht, zal het verkoop bedrag gelijkmatig over de groepsleden worden verdeeld. - -Deze [AREA] m² land overdragen aan de groep '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -Voor het overdragen van dit perceel zal de groep voldoen land gebruikscredit moeten hebben en onderhouden. -De overdracht zal een simultane land contributie verlangen van de groep van '[FIRST_NAME] [LAST_NAME]'. -Het aankoop bedrag zal niet naar de eigenaar worden terug gestort. -Indien een overgedragen perceel wordt verkocht, zal het verkoop bedrag gelijkmatig over de groepsleden worden verdeeld. - -Deze [AREA] m² land overdragen aan de groep '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > -Weergave instellingen zijn op veilige waarden ingesteld omdat u de -save optie op heeft gegeven. - </notification> - - <notification - - name="DisplaySetToRecommended" - > -Weergave instellingen zijn ingesteld op geadviseerde waarden, gebaseerd op uw systeem configuratie. - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -Uw [TYPE] locatie is momenteel niet beschikbaar. -[HELP] -U bent naar een nabij gelegen regio verplaatst. - </notification> - - <notification - - name="ClothingLoading" - > -Uw kleding wordt nog steeds geladen. -U kunt [SECOND_LIFE] normaal gebruiken en anderen zullen u correct zien. - <form name="form"> - <ignore name="ignore" - text="Indien kleding een erg lange tijd in beslag neemt om de laden"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -[SECOND_LIFE] installatie compleet. - -Als dit de eerste keer is dat u [SECOND_LIFE] gebruikt, zult u een account aan moeten maken voordat u in kan loggen. -Terugkeren naar www.secondlife.com om een nieuw account aan te maken? - <usetemplate - name="okcancelbuttons" - notext="Doorgaan" - yestext="Nieuw Account..."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -Wij hebben problemen verbinding te maken. Er zou een probleem kunnen zijn met uw internet verbinding of met de Second Life servers. - -U kunt uw internet verbinding controleren en het over een paar minuten opnieuw proberen, op Help klikken om verbinding te maken met onze support website, of klik op Teleporteren om een poging te doen naar uw thuis locatie te teleporteren. - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="Help"/> - <button - - name="Teleport" - text="Teleport"/> - </form> - </notification> - - <notification - - name="WelcomeChooseSex" - > -Uw avatar zal over enkele ogenblikken verschijnen. - -Gebruik de pijltjestoetsen om te lopen. -Druk op elk gewenst moment op F1 voor Help en om meer te leren over [SECOND_LIFE]. -Kies alstublieft een mannelijk of vrouwelijke avatar. U kunt later nog van gedachten veranderen. - <usetemplate - name="okcancelbuttons" - notext="Vrouw" - yestext="Man"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] L$ [PRICE] U heeft niet genoeg L$ om dit te doen. - </notification> - - <notification - - name="GrantedModifyRights" - > -U heeft het recht verkregen om objecten van [FIRST_NAME] [LAST_NAME] te wijzigen. - </notification> - - <notification - - name="RevokedModifyRights" - > -Uw recht om objecten van [FIRST_NAME] [LAST_NAME] is ingetrokken. - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -Dit zal de Kaart cache van deze regio opschonen. - -Dit is eigenlijk alleen nuttig voor debugging. -(In productie, wacht 5 minuten, dan zal de Kaart van iedereen bijgewerkt worden als ze opnieuw verbinden.) - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -Kan niet de inhoud van meer dan één item per keer kopiëren. -Kies alstublieft slechts één object en probeer het opnieuw. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -Alle Inwoners in deze regio naar de thuis locatie Teleporteren? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -Weet u zeker dat u alle objecten wilt retourneren eigendom van [USER_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -Kon de regio textuur niet plaatsen: -Terrein textuur [TEXTURE_NUM] heeft een ongeldige bit diepte van [TEXTURE_BIT_DEPTH]. - -Vervang de textuur [TEXTURE_NUM] met een 24-bit 512x512 of een kleinere afbeelding, klik dan op opnieuw op "Toepassen". - </notification> - - <notification - - name="InvalidTerrainSize" - > -Kon de regio textuur niet plaatsen: -Terrein textuur [TEXTURE_NUM] is te groot met [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. - -Vervang de textuur [TEXTURE_NUM] met een 24-bit 512x512 of een kleinere afbeelding, klik dan op opnieuw op "Toepassen". - </notification> - - <notification - - name="RawUploadStarted" - > -Upload gestart. Het kan tot twee minuten duren, afhankelijk van u verbindings snelheid. - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -Wilt u werkelijk het huidige terrein 'baken', dit als middelpunt voor de verhoog/verlaag limieten instellen en als standaard instellen voor het 'Herstel' gereedschap? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -U kunt slechts [MAX_AGENTS] Toegestane Inwoners hebben. - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -U kunt slechts [MAX_BANNED] Verbannen Inwoners hebben. - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -Een poging [NUM_ADDED] agents toe te voegen is mislukt: -Overstijgt de [MAX_AGENTS] [LIST_TYPE] limiet met [NUM_EXCESS]. - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -U kunt slechts [MAX_GROUPS] Toegestane Groepen hebben. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Bake"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -U kunt slechts [MAX_MANAGER] Estate Beheerders hebben. - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -Kan de estate eigenaar niet aan de Verbannen lijst van het estate toe voegen. - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -Kan het Uiterlijk niet veranderen totdat kleding en Postuur geladen zijn. - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -De naam van uw advertentie moet beginnen met een letter van A tot Z of een nummer. -Leestekens zijn niet toegestaan. - </notification> - - <notification - - name="CantSetBuyObject" - > -Kan Koop Object niet instellen omdat het object niet te koop is. -Zet het object alstublieft te koop en probeer het opnieuw. - </notification> - - <notification - - name="FinishedRawDownload" - > -Download van raw terrein bestand geëindigd naar: -[DOWNLOAD_PATH]. - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -Een nieuwe versie van [SECOND_LIFE] is beschikbaar. -[MESSAGE] -U moet deze update downloaden om [SECOND_LIFE] te kunnen gebruiken. - <usetemplate - name="okcancelbuttons" - notext="Afsluiten" - yestext="Download"/> - </notification> - - <notification - - name="DownloadWindows" - > -Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. -[MESSAGE] -Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. - <usetemplate - name="okcancelbuttons" - notext="Doorgaan" - yestext="Download"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. -[MESSAGE] -Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. - <usetemplate - name="okcancelbuttons" - notext="Doorgaan" - yestext="Download"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -Een nieuwe versie van [SECOND_LIFE] is beschikbaar. -[MESSAGE] -U moet deze update downloaden om [SECOND_LIFE] te kunnen gebruiken. - -Downloaden naar uw Applicatie Data map? - <usetemplate - name="okcancelbuttons" - notext="Afsluiten" - yestext="Download"/> - </notification> - - <notification - - name="DownloadMac" - > -Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. -[MESSAGE] -Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. - -Downloaden naar uw Applicatie Data map? - <usetemplate - name="okcancelbuttons" - notext="Doorgaan" - yestext="Download"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. -[MESSAGE] -Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. - -Downloaden naar uw Applicatie Data map? - <usetemplate - name="okcancelbuttons" - notext="Doorgaan" - yestext="Download"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -Dit object overdragen aan de groep zal de groep: -* L$ ontvangen als betaald in het object - <usetemplate - ignoretext="Bij objecten die overgedragen worden aan groepen" - name="okcancelignore" - notext="Annuleren" - yestext="Overdragen"/> - </notification> - - <notification - - name="WebLaunchExternalTarget" - > -Uw systeem browser openen om deze inhoud te bekijken? - <usetemplate - ignoretext="Bij openen van systeem browser om de webpagina te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchJoinNow" - > -Naar www.secondlife.com gaan om uw account te beheren? - <usetemplate - ignoretext="Bij openen van webbrowser om uw account te beheren" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchBugReport101" - > -Bezoek de [SECOND_LIFE] Wiki en leer hoe Bugs correct gerapporteerd kunnen worden. - <usetemplate - ignoretext="Bij openen webbrowser om de Bug Reporting 101 Wiki te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSecurityIssues" - > -Bezoek de [SECOND_LIFE] Wiki voor details over hoe een Veiligheids Probleem (Security Issue) te rapporteren. - <usetemplate - ignoretext="Bij openen webbrowser om de Veiligheids Problemen Wiki (Security Issues Wiki) te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchQAWiki" - > -Bezoek de [SECOND_LIFE] QA Wiki (Kwaliteitsbeheersing Wiki). - <usetemplate - ignoretext="Bij openen webbrowser om de QA Wiki (Kwaliteitsbeheersing Wiki) te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssue" - > -Bezoek de [SECOND_LIFE] Publieke problemenlijst, waar u Bugs en andere Problemen kunt rapporteren. - <usetemplate - ignoretext="Bij openen webbrowser om de Publieke problemenlijst te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="Ga naar pagina"/> - </notification> - - <notification - - name="WebLaunchPublicIssueHelp" - > -Bezoek de [SECOND_LIFE] Wiki voor informatie over het gebruik van de Publieke problemenlijst. - <usetemplate - ignoretext="Bij openen webbrowser om de Publieke problemenlijst Wiki te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="Ga naar pagina"/> - </notification> - - <notification - - name="WebLaunchSupportWiki" - > -Ga naar de Officiële Linden Blog voor het laatste Nieuws en Informatie. - <usetemplate - ignoretext="Bij openen webbrowser om de blog te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLGuide" - > -Naar de Script Gids gaan voor hulp met scripten? - <usetemplate - ignoretext="Bij openen webbrowser om de Script Gids te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLWiki" - > -Naar de LSL Portaal gaan voor hulp met scripten? - <usetemplate - ignoretext="Bij openen webbrowser om de LSL Portal te bekijken" - name="okcancelignore" - notext="Annuleren" - yestext="Ga naar pagina"/> - </notification> - - <notification - - name="ReturnToOwner" - > -Weet u zeker dat u de geselecteerde objecten wilt retourneren naar de eigenaren? -Overdraagbare toegekende objecten zullen naar de oorspronkelijke eigenaren worden geretourneerd. - -*WAARSCHUWING* Niet overdraagbare toegekende objecten zullen worden verwijderd! - <usetemplate - ignoretext="Bij retourneren objecten naar de eigenaren" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -U bent momenteel een lid van de groep [GROUP]. -Groep Verlaten? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmKick" - > -Weet u HEEL ZEKER dat u alle gebruikers uit het grid wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Verwijder Alle Gebruikers"/> - </notification> - - <notification - - name="MuteLinden" - > -Sorry, u kunt geen Linden Negeren - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="Negeren van object mislukt" - name="MuteByNameFailed" - > -U heeft deze naam al genegeerd. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -Alhoewel toegestaan, verwijderen van de inhoud kan het object beschadigen. Wilt u dit item verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -Kan op dit moment geen visitekaart aanbieden. Probeer het alstublieft later opnieuw. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -Kan op dit moment geen vriendschap aanbieden. Probeer het alstublieft later opnieuw. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -Niet Storen modus ingesteld. - -Chat and instant messages zullen verborgen blijven. Instant messages zullen uw Niet Storen melding krijgen. Alle teleport aanbiedingen zullen worden afgewezen. Alle inventaris aanbiedingen zullen in uw Vuilnisbak terecht komen. - <usetemplate - ignoretext="Bij instellen Niet Storen modus" - name="okignore" - yestext="OK"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -U ben lid van teveel groepen om lid te worden van een andere. Verlaat op zijn minst één groep alvorens lid te worden van een andere of weiger de lidmaatschap aanbieding. -Om een groep te verlaten, selecteer de 'Groep..' optie via het 'Bewerken' menu. - -[NAME] heeft u uitgenodigd om lid te worden van de groep als algemeen lid. - -[INVITE] - <usetemplate - name="okcancelbuttons" - notext="Afslaan" - yestext="Lid worden"/> - </notification> - - <notification - - name="KickUser" - > -Verwijder deze gebruiker met welk bericht? - <form name="form"> - <input name="message" type="text"> -Een administrator heeft u uitgelogd. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -Verwijder iedereen momenteel op het grid met welk bericht? - <form name="form"> - <input name="message" type="text"> -Een administrator heeft u uitgelogd. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -Bevries deze gebruiker met welk bericht? - <form name="form"> - <input name="message" type="text"> -U bent bevroren. U kunt zich niet verplaatsen of praten. Een administrator zal contact met u opnemen via instant message (IM). - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -Ontdooi deze gebruiker met welk bericht? - <form name="form"> - <input name="message" type="text"> -U bent niet langer bevroren. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -Een Teleport aanbieden naar uw locatie met welk bericht? - <form name="form"> - <input name="message" type="text"> -Voeg u bij mij in [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -God beveel gebruiker naar uw locatie? - <form name="form"> - <input name="message" type="text"> -Voeg u bij mij in [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -Weet u zeker dat u wilt teleporteren? - <usetemplate - ignoretext="Bij teleporteren via een landmarkering in inventaris" - name="okcancelignore" - notext="Annuleren" - yestext="Teleporteren"/> - </notification> - - <notification - - label="Bericht iedereen in uw Estate" - name="MessageEstate" - > -Type een kort bericht om naar iedereen sturen die momenteel in uw Estate aanwezig is. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - label="Wijzig Linden Estate" - name="ChangeLindenEstate" - > -U staat op het punt een Linden beheerde Estate te wijzigen mainland, teen grid, orientation, etc.). - -Dit is EXTREEM GEVAARLIJK om het fundamenteel de gebruikers ervaring kan aantasten. -Op het mainland zal het duizenden regionen wijzigen en de spaceserver kan storingen vertonen. - -Doorgaan? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - label="Wijzig Linden Estate Toegang" - name="ChangeLindenAccess" - > -U staat op het punt de toegangslijst van een Linden Estate eigendom aan te passen (mainland, teen grid, orientation, etc.). - -Dit is GEVAARLIJK en zou alleen gedaan moeten worden om de hack toe te staan om objecten/L$ over te dragen in/uit het grid. -Het zal het duizenden regionen wijzigen en de spaceserver kan storingen vertonen. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateAllowedAgentAdd" - > -Alleen aan toegangslijst voor dit Estate toevoegen of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateAllowedAgentRemove" - > -Verwijderen van toegangslijst voor alleen dit Estate of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateAllowedGroupAdd" - > -Alleen aan groeps toegangslijst voor dit Estate toevoegen of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateAllowedGroupRemove" - > -Verwijderen van groeps toegangslijst voor alleen dit Estate of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateBannedAgentAdd" - > -Weiger toegang voor alleen dit Estate of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateBannedAgentRemove" - > -Deze Inwoner van de ban lijst voor toegang voor alleen dit Estate verwijderen of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateManagerAdd" - > -Estate beheerder toevoegen voor alleen dit Estate of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Selecteer Estate" - name="EstateManagerRemove" - > -Estate beheerder verwijderen voor alleen dit Estate of voor [ALL_ESTATES]? - <usetemplate - canceltext="Annuleren" - name="yesnocancelbuttons" - notext="Alle Estates" - yestext="Dit Estate"/> - </notification> - - <notification - - label="Bevestig Verwijderen" - name="EstateKickUser" - > -Verwijder [EVIL_USER] van deze Estate? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="EstateChangeCovenant" - > -Weet u zeker dat u de Estate Convenant wilt wijzigen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ProblemImportingEstateCovenant" - > -Probleem met importeren Estate Convenant. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -Problemen met het toevoegen van een Estate beheerder. Eén of meer Estates kunnen een volle beheerders lijst hebben. - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -Problemen met toevoegen aan deze Estate lijst. Eén of meer Estates kunnen een volle lijst hebben. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Kan op dit moment notitiekaart inhoud niet laden. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -Onvoldoende rechten om de notitiekaart in te zien geassocieerd met het opgevraagde asset ID. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MissingNotecardAssetID" - > -Asset ID voor de notitiekaart ontbreekt in de database. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PublishClassified" - > -Bedenk: kosten voor advertenties worden niet terugbetaald. - -Advertentie nu Publiceren voor L$[AMOUNT]? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - - - - - <notification - - label="Bevestig herstart" - name="ConfirmRestart" - > -Wilt u deze regio echt binnen 2 minuten herstarten? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - label="Bericht iedereen in deze regio" - name="MessageRegion" - > -Type een kort bericht om naar iedereen sturen die momenteel in regio aanwezig is. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - label="Weiger Land aanpassingen" - name="HelpRegionBlockTerraform" - > -Indien dit aan gevinkt kunnen landeigenaren geen terrein bewerkingen doen op hun land, ongeacht de per perceel ingestelde waarde voor 'Wijzig Terrein' - -Standaard: uitgeschakeld - </notification> - - <notification - - label="Blokkeer Vliegen" - name="HelpRegionBlockFly" - > -Indien dit is aan gevinkt kunnen personen niet vliegen in deze regio ongeacht de per perceel ingestelde waarde 'Vliegen' - -Standaard: uitgeschakeld - </notification> - - <notification - - label="Sta Letsel Toe" - name="HelpRegionAllowDamage" - > -Indien dit is aan gevinkt stelt het Letsel systeem in voor alle percelen, ongeacht de individuele instellingen op de percelen. Indien uitgeschakeld, kunnen perceel eigenaren het Letsel systeem op hun perceel activeren. - -Standaard: uitgeschakeld - </notification> - - <notification - - label="Agent Limiet" - name="HelpRegionAgentLimit" - > -Stelt het maximale aantal toegestane avatars in voor deze regio. -De prestaties kunnen variëren afhankelijk van het aantal aanwezige avatars. - -Standaard: 40 - </notification> - - <notification - - label="Object Bonus" - name="HelpRegionObjectBonus" - > -De Object Bonus is een vermeerderaar voor primitieven op een willekeurig perceel. -Het bereik is van 1 tot 10. Ingesteld op '1' kan elk 512m² perceel 117 objecten bevatten. Ingesteld op '2' kan elk 512m² perceel 234 objecten bevatten, enzovoort. Het maximale aantal objecten blijft 15.000, ongeacht wat de Object Bonus is. Denk er aan, dat eenmaal ingesteld, het verlagen van de Object Bonus het retourneren of verwijderen van objecten tot gevolg kan hebben. - -Standaard: 1.0 - </notification> - - - - <notification - - label="Beperk Duwen" - name="HelpRegionRestrictPushObject" - > -Deze instelling stelt de hele regio in op beperkte duwen permissies. -Indien aan gevinkt kunnen Inwoners alleen door hun zelf geduwd worden of door de perceel eigenaar. - -(Push (Duwen) verwijst naar de llPushObject() LSL functie) - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Perceel Samenvoegen/Opsplitsen" - name="HelpParcelChanges" - > -Deze instelling stel in of percelen die niet van de estate eigenaar zijn kunnen worden samengevoegd of opgesplitst. - -Indien niet aan gevinkt: - * Alleen Estate eigenaren of beheerders kunnen percelen samenvoegen op opsplitsen. - * Zij kunnen alleen percelen samenvoegen of opsplitsen die eigendom zijn van de eigenaar of van een groep met de juiste bevoegdheden. - -Indien aan gevinkt: - * Alle perceel eigenaren kunnen percelen samenvoegen of opsplitsen die zij bezitten. - * Voor percelen in Groep eigendom, kunnen alleen zij met de juiste rechten percelen samenvoegen of opsplitsen. - -Standaard: Ingeschakeld - </notification> - - <notification - - label="Niet in Zoeken tonen" - name="HelpRegionSearch" - > -Deze optie aan vinken zal perceel eigenaren blokkeren hun perceel in Zoeken te tonen. - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Regio Volwassenen Gewijzigd" - name="RegionMaturityChange" - > -De Volwassen instelling voor deze regio is bijgewerkt. -Het kan enige tijd duren voordat de wijziging zichtbaar is op de Kaart. - </notification> - - <notification - - label="Land Herverkoop" - name="HelpRegionLandResell" - > -Estate eigenaren en beheerders kunnen elk stuk land verkopen in eigendom van de Estate eigenaar. - -Indien deze optie niet is aan gevinkt, kunnen kopers hun land in deze regio niet verkopen. -Indien deze optie is aan gevinkt, kunnen kopers hun land in deze regio verkopen. - -Standaard: Niet toestaan - </notification> - - <notification - - label="Scripts Uitschakelen" - name="HelpRegionDisableScripts" - > -Indien de sim prestaties slecht zijn, kan een script de oorzaak zijn. Open de Statistieken balk (Ctrl-Shift-1). Kijk naar de Simulator Fysieke FPS. Indien het lager is dan 45, open dan het Tijd paneel onderaan de Statistieken balk. Indien de Script Tijd 25 ms of hoger is, klik dan op de Top Scripts knop. U krijgt dan een naam en lokatie van scripts die mogelijk de slechte prestaties veroorzaken. - -Het aan vinken van Scripts Uitschakelen en vervolgens op de Toepassen knop drukken, zal tijdelijk alle scripts in deze regio uitschakelen. U zult dit mogelijk moeten doen om naar de lokatie te gaan van het 'top script'. Eenmaal aangekomen, onderzoek dan of het script het probleem veroorzaakt. U zult mogelijk de eigenaar willen contacteren of het object willen retourneren c.q. verwijderen. -Verwijder het vinkje van Scripts Uitschakelen en klik op Toepassen om scripts weer te reactiveren in de regio. - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Botsingen Uitschakelen" - name="HelpRegionDisableCollisions" - > -Indien de sim prestaties slecht zijn, kunnen fysieke objecten de oorzaak zijn. Open de Statistieken balk (Ctrl-Shift-1). Kijk naar de Simulator Fysieke FPS. Indien het lager is dan 45, open dan het Tijd paneel onderaan de Statistieken balk. Indien de Sim Tijd (Fysiek) 20 ms of hoger is, klik dan op de Toon Top Botsingen knop. U krijgt dan een naam en lokatie van de fysieke objecten die mogelijk de slecht prestaties veroorzaken. - -Het aan vinken van de Botsingen Uitschakelen knop en vervolgens op de Toepassen knop drukken, zal tijdelijk object-object botsingen uitschakelen. U zult dit mogelijk moeten doen om naar de lokatie te gaan van de 'top botsingen'. Eenmaal aangekomen, onderzoek dan het object. Botst het constant met andere objecten? U zult mogelijk de eigenaar willen contacteren of het object willen retourneren c.q. verwijderen. -Verwijder het vinkje van Botsingen Uitschakelen en klik op Toepassen om botsingen weer te reactiveren in de regio. - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Fysiek Uitschakelen" - name="HelpRegionDisablePhysics" - > -Fysiek Uitschakelen is gelijkwaardig aan Botsingen Uitschakelen, alleen alle fysieke simulatie is uitgeschakeld. Dit betekend dat niet alleen alle objecten zullen stoppen met botsen, maar ook dat avatars zich niet meer kunnen bewegen. - -Dit zou alleen gebruikt moeten worden als het uitschakelen van Botsingen niet genoeg prestatie winst geeft om een fysiek probleem of top botsingen te onderzoeken. - -Indien u klaar bent, wees er dan zeker van Fysiek weer in te schakelen, anders kunnen avatars zich niet meer bewegen. - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Top Botsingen" - name="HelpRegionTopColliders" - > -Toon een lijst van objecten van het grootste aantal potentiële object-object botsingen. -Deze objecten kunnen een trage prestatie veroorzaken. Selecteer Beeld > Statistieken Balk en kijk onder Simulator > Tijd > Sim Tijd (Fysiek) om te zien of meer dan 20 ms wordt gespendeerd aan fysiek. - </notification> - - <notification - - label="Top Scripts" - name="HelpRegionTopScripts" - > -Toon een lijst van objecten die de meeste tijd besteden aan het uitvoeren van LSL scripts. -Deze objecten kunnen een trage prestatie veroorzaken. Selecteer Beeld > Statistieken Balk en kijk onder Simulator > Tijd > Script Tijd om te zien of meer dan 25 ms wordt gespendeerd aan scripts. - </notification> - - <notification - - label="Herstart Regio" - name="HelpRegionRestart" - > -Herstart het server proces van de regio na een twee minuten waarschuwing. -Alle Inwoners van de regio zullen de verbinding kwijt raken. De regio zal alle gegevens bewaren en zou binnen 90 seconden weer operabel moeten zijn. - -De regio herstarten zou de meeste prestatie problemen moeten verhelpen en zou normaal gesproken alleen gebruikt moeten worden indien aangegeven. - </notification> - - <notification - - label="Water Hoogte" - name="HelpRegionWaterHeight" - > -Dit is de hoogte in meters waarop het water verschijnt. -Als deze instelling anders is dan 20 en u heeft water aan de rand van de wereld of u heeft 'ontbrekend' water, zal er een gat zichtbaar zijn. - -Standaard: 20 - </notification> - - <notification - - label="Terrein Ophogen" - name="HelpRegionTerrainRaise" - > -Dit is de hoogte in meters dat perceel eigenaren hun terrein kunnen verhogen boven de standaard 'baked' terrein hoogte. - -Standaard: 4 - </notification> - - <notification - - label="Terrein Verlagen" - name="HelpRegionTerrainLower" - > -Dit is de hoogte in meters dat perceel eigenaren hun terrein kunnen verlagen onder de standaard 'baked' terrein hoogte. - -Standaard: -4 - </notification> - - <notification - - label="Upload RAW Terrein" - name="HelpRegionUploadRaw" - > -Deze knop upload een .RAW bestand naar de regio waar u zich bevindt. -Het bestand moet de juiste afmetingen hebben (RGB, 256x256) en 13 kanalen. -De beste manier om een terrein bestand te maken is het downloaden van een bestaand RAW bestand. Een goede eerste stap is om het rode kanaal (land hoogte) aan te passen en dat te uploaden. - -De upload kan tot 45 seconden in beslag nemen. Bedenk dat het uploaden van een terrein bestand de objecten reeds aanwezig op het land *niet* zal verplaatsen, alleen het terrein zelf en de permissies geassocieerd met de percelen. Dit kan resulteren in objecten die ondergronds gaan. - -Voor meer informatie over het wijzigen van de hoogte velden, raadpleeg F1 Help. - </notification> - - <notification - - label="Download RAW Terrein" - name="HelpRegionDownloadRaw" - > -Deze knop download een bestand welke de hoogte veld gegevens, perceel afmetingen, perceel te koop status en sommige perceel permissies bevat voor deze regio. -Indien u het bestand opent in een programma als Photoshop, moet u de document afmetingen opgeven, welk RGB, 256x256 met 13 kanalen is. Dit terrein bestand kan op geen enkele andere manier worden geopend. - -Voor meer informatie over het wijzigen van de hoogte velden, raadpleeg F1 Help. - </notification> - - <notification - - label="Gebruik Estate Zon" - name="HelpRegionUseEstateSun" - > -Dit aan vinken zorgt er voor dat de zon positie overeen komt met de zon positie in de rest van het Estate. - -Standaard: Ingeschakeld - </notification> - - <notification - - label="Vaste Zon" - name="HelpRegionFixedSun" - > -Dit aan vinken stelt de zon in op de positie van de Fase schuif knop en stopt het verder bewegen van de zon. - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Bake Terrein" - name="HelpRegionBakeTerrain" - > -Deze knop slaat de huidige vorm van het terrein op als nieuwe standaard voor de regio. Eenmaal baked, kan het land terugkeren naar de opgeslagen vorm wanneer u of anderen gebruik maken van de Wijzig Terrein 'Terugkeer' optie. Het baked terrein is ook het uitgangspunt voor de terrein verhogings- en verlagingslimieten. - </notification> - - <notification - - label="Estate Beheerders" - name="HelpEstateEstateManager" - > -Een Estate Beheerder is een Inwoner aan wie u de controle over de regio en estate instellingen heeft uitbesteed. De Estate Beheerder kan de instellingen wijzigen in deze panels, behalve het uploaden, downloaden en terrein bakken. In bijzonder kunnen zij Inwoners toestaan of verbannen van het Estate. - -Estate Beheerders kunnen alleen toegevoegd of verwijderd worden door de eigenaar van het Estate, niet door elkaar. Gebruik alstublieft alleen Inwoners die u kunt vertrouwen als Estate Beheerders, omdat uiteindelijk u verantwoordelijk bent voor hun acties. - </notification> - - <notification - - label="Gebruik Globale Tijd" - name="HelpEstateUseGlobalTime" - > -Dit aan vinken zorgt ervoor dat de zon in uw estate dezelfde positie volgt als in Linden-eigendom 'mainland' Estates. - -Standaard: aan - </notification> - - <notification - - label="Vaste Zon" - name="HelpEstateFixedSun" - > -Dit aan vinken stelt de zon in op de positie van de Fase schuif knop en stopt het verder bewegen van de zon. - </notification> - - <notification - - label="Publieke Toegang" - name="HelpEstateExternallyVisible" - > -Dit aan vinken geeft aan dat Inwoners die in andere Estates zijn, deze Estate kunnen bezoeken zonder op de Toegangs lijst te staan. - -Standaard: Ingeschakeld - </notification> - - <notification - - label="Direct Teleporteren Toestaan" - name="HelpEstateAllowDirectTeleport" - > -Indien aan gevinkt staat het Inwoners toe om direct te Teleporteren naar elke plek in uw Estate. Indien niet aan gevinkt kunnen Inwoners Teleporteren naar de dichtstbijzijnde telehub. - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Toegang Toestaan" - name="HelpEstateAllowResident" - > -Toegang tot dit Estate zal gelimiteerd zijn tot Inwoners in deze lijst en onderstaande groepen. Deze instelling is allen beschikbaar indien Publieke Toegang niet is aan gevinkt. - </notification> - - <notification - - label="Groeps Toegang Toestaan" - name="HelpEstateAllowGroup" - > -Toegang tot dit Estate zal gelimiteerd worden tot groepen in deze lijst en elke Inwoner bovenaan. Deze Instelling is alleen beschikbaar als Publieke Toegang niet is aan gevinkt. - </notification> - - <notification - - label="Misbruik Email Adres" - name="HelpEstateAbuseEmailAddress" - > -Dit instellen met een geldig email adres zal misbruik rapporten op dit Estate doen versturen naar dat adres. -Indien u het leeg laat, zullen misbruik rapporten alleen verzonden worden naar Linden Lab. - </notification> - - <notification - - label="Toegang Weigeren" - name="HelpEstateBanResident" - > -Inwoners in deze lijst zijn de toegang geweigerd in uw Estate, ongeacht elke andere instelling. - </notification> - - <notification - - label="Voice Chat Toestaan" - name="HelpEstateVoiceChat" - > -Percelen in dit Estate kunnen hun eigen Voice kanalen hebben waarin Inwoners die in de buurt van elkaar zijn, elkaar kunnen horen en met elkaar kunnen praten. - -Standaard: Uitgeschakeld - </notification> - - <notification - - label="Voice Versie Ongelijkheid" - name="VoiceVersionMismatch" - > -Deze versie van Second Life is niet compatibel met de Voice spraak optie in deze regio. Om Voice Chat goed te laten functioneren, moet u Second Life bijwerken. - </notification> - - <notification - - label="Estate Convenant" - name="HelpEstateCovenant" - > -Het instellen van een Estate Convenant maakt het u mogelijk om percelen in het Estate te verkopen. Indien de Convenant niet is ingesteld kunt u het niet verkopen. Een notitiekaart voor uw Convenant kan leeg zijn indien u geen regels wilt instellen, advies aan kopers wilt geven of iets anders in relatie tot het land wilt mededelen voor als men het koopt. - -Een Convenant kan gebruikt worden als u regels wilt mededelen, richtlijnen, culturele informatie of simpelweg uw eigen verwachtingen aan prospect kopers. -Dit kan zoneren bevatten, bouw reglementen, betaal opties of elke andere vorm van informatie waarvan u het belangrijk vind dat de nieuwe eigenaar het heeft gezien en mee akkoord is gegaan alvorens het te kopen. - -De koper moet instemmen met de Convenant middels het aan vinken van het kadertje alvorens zij de aankoop af kunnen ronden. Estate Overeenkomsten zijn altijd zichtbaar in het Over Land dialoog venster voor elk perceel dat er eentje ingesteld heeft staan. - </notification> - - <notification - - label="Kan Geen Objecten Kopen" - name="BuyObjectOneOwner" - > -Kan geen objecten van verschillende eigenaren tegelijk kopen. - -Kies alstublieft slechts één object en probeer het opnieuw. - </notification> - - <notification - - label="Kan Inhoud Niet Kopen" - name="BuyContentsOneOnly" - > -Kan geen inhoud kopen van meer dan één object tegelijk. - -Kies alstublieft slechts één object en probeer het opnieuw. - </notification> - - <notification - - label="Kan Inhoud Niet Kopen" - name="BuyContentsOneOwner" - > -Kan geen inhoud kopen van verschillende eigenaren tegelijk. - -Kies alstublieft slechts één object en probeer het opnieuw. - </notification> - - <notification - - name="BuyOriginal" - > -Koop originele object van [OWNER] voor L$[PRICE]? -U zult de eigenaar worden van dit object. -U kunt het dan: - Wijzigen: [MODIFYPERM] - Kopiëren: [COPYPERM] - Verkopen of Weggeven: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -Koop originele object voor L$[PRICE]? -U zult de eigenaar worden van dit object. -U kunt het dan: - Wijzigen: [MODIFYPERM] - Kopiëren: [COPYPERM] - Verkopen of Weggeven: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopy" - > -Koop een kopie van [OWNER] voor L$[PRICE]? -Het object zal gekopieerd worden naar uw inventaris. -U kunt het dan: - Wijzigen: [MODIFYPERM] - Kopiëren: [COPYPERM] - Verkopen of Weggeven: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -Koop een kopie voor L$[PRICE]? -Het object zal gekopieerd worden naar uw inventaris. -U kunt het dan: - Wijzigen: [MODIFYPERM] - Kopiëren: [COPYPERM] - Verkopen of Weggeven: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="BuyContents" - > -Koop de inhoud van [OWNER] voor L$[PRICE]? -De inhoud zal naar uw inventaris gekopieerd worden. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -Koop de inhoud voor L$[PRICE]? -De inhoud zal naar uw inventaris gekopieerd worden. - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -Deze transactie zal: -[ACTION] - -Weet u zeker dat u verder wilt gaan met deze aankoop? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -Deze transactie zal: -[ACTION] - -Weet u zeker dat u verder wilt gaan met deze aankoop? -Voer alstublieft opnieuw uw wachtwoord in en klik op OK. - <form name="form"> - <input - name="message" - type="password"/> - <button - - - name="ConfirmPurchase" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -Opmerking: - -U heeft de locatie van deze Favoriet bijgewerkt, maar andere details blijven ongewijzigd. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -U heeft 'niet kopieerbare' items geselecteerd. -Deze items zullen worden verplaatst naar uw inventaris, niet gekopieerd. - -Verplaats de inventaris item(s)? - <usetemplate - ignoretext="Wanneer niet kopieerbare inventaris uit objecten verplaatst wordt" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -U heeft 'niet kopieerbare' inventaris items geselecteerd. -Deze items zullen verplaatst worden naar uw inventaris, niet gekopieerd. -Omdat deze objecten scripts bevatten, kan het verplaatsen naar uw inventaris er voor zorgen dat het object niet meer werkt. -inventaris item(s) verplaatsen? - <usetemplate - ignoretext="Indien verplaatsen 'niet kopieerbare' inventaris van gescripte objecten" - name="okcancelignore" - notext="Annuleren" - yestext="OK"/> - </notification> - - <notification - - name="ClickActionNotPayable" - > -Waarschuwing: Het Betaal Object aan klik actie is ingesteld, maar het zal alleen werken als er een script is toegevoegd met een money() event. - <form name="form"> - <ignore name="ignore" - text="Indien instellen 'Betaal' op objecten zonder money() events"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -Er zitten geen items in dit object die u kunt kopiëren. - </notification> - - <notification - - name="WebLaunchAccountHistory" - > -Naar de Second Life web site gaan om uw account geschiedenis te bekijken? - <usetemplate - ignoretext="Bij laden van de account geschiedenis webpagina" - name="okcancelignore" - notext="Annuleren" - yestext="Ga naar pagina"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -De Second Life Support Web site bezoeken? - <usetemplate - ignoretext="Bij bezoeken van de Second Life Support Website." - name="okcancelignore" - notext="Annuleren" - yestext="Ga"/> - </notification> - - <notification - - name="ConfirmQuit" - > -Weet u zeker dat u wilt afsluiten? - <usetemplate - ignoretext="Bij afsluiten Second Life." - name="okcancelignore" - notext="Doorgaan" - yestext="Afsluiten"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -Gebruik dit gereedschap om overtredingen van de Voorwaarden voor Service (Terms of Service) en Gemeenschaps Standaarden (Community Standards)te rapporteren. Zie: - -http://secondlife.com/corporate/tos.php -http://secondlife.com/corporate/cs.php - -Alle gerapporteerde misbruiken van de Voorwaarden voor Service en Gemeenschaps Standaarden zullen worden onderzocht en opgelost. U kunt de incident oplossing in de Incidenten Rapportage zien op: - -http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -BELANGRIJK: Dit rapport zal naar de eigenaar van deze regio gaan en niet naar Linden Lab! - -Als een service aan Inwoners en bezoekers heeft de eigenaar van deze regio er voor gekozen om rapporten vanuit deze regio zelf te ontvangen en af te handelen. Linden Lab zal geen onderzoek doen naar rapporten die u indient vanaf deze locatie. - -De regio eigenaar zal de rapporten afhandelen op basis van de regels geldend voor deze regio zoals weergegeven in het Estate Convenant (Bekijk Convenants door naar Wereld te gaan in het menu en te kiezen voor Over Land). - -De afhandeling van dit rapport is alleen van toepassing op deze regio. -Toegang van Inwoners tot andere gebieden van Second Life zullen niet beïnvloed worden door de uitkomst van dit rapport. Alleen Linden Lab kan de toegang tot geheel Second Life beperken. - </notification> - - <notification - - name="HelpReportBug" - > -Gebruik dit gereedschap *alleen* voor het rapporteren van technische opties die niet functioneren als verwacht. Geef alstublieft zoveel mogelijk technische details als mogelijk. U kunt de automatische-antwoord email gebruiken om op te reageren om aanvullende gegevens toe te voegen aan uw rapport. - -Alle bug rapporten worden onderzocht en ingeschat. Er zal geen antwoord per email worden verzonden. - -Als u technische problemen heeft, neem dan contact op met Support op: -http://secondlife.com/community/support.php - -Opmerking: Onvolledige rapporten zullen niet worden onderzocht. - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -Selecteer alstublieft een categorie voor dit misbruik rapport. - -Het selecteren van een categorie helpt ons met het archiveren en verwerken van misbruik rapporten. - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -Selecteer alstublieft een categorie voor dit bug rapport. - -Het selecteren van een categorie helpt ons met het archiveren en verwerken van bug rapporten. - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -Geef alstublieft een naam op van de misbruiker. - -Een accurate waarde opgeven helpt ons met het archiveren en verwerken van misbruik rapporten. - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -Geef alstublieft een locatie op waar het misbruik plaats vond. - -Een accurate waarde opgeven helpt ons met het archiveren en verwerken van misbruik rapporten. - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -Geef alstublieft een korte samenvatting op van het misbruik dat plaats vond. - -Een accurate waarde opgeven helpt ons met het archiveren en verwerken van misbruik rapporten. - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -Geef alstublieft een korte samenvatting van de bug. - -Een accurate samenvatting opgeven helpt ons met het archiveren en verwerken van bug rapporten. - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -Geef alstublieft een gedetailleerde omschrijving van het misbruik dat plaats vond. - -Wees zo specifiek als mogelijk, inclusief namen en details van het incident waarover u rapporteert. - -Het opgeven van een accurate omschrijving helpt ons met het archiveren en verwerken van misbruik rapporten. - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -Geef alstublieft een gedetailleerde omschrijving van de bug. - -Wees zo specifiek als mogelijk, inclusief stappen om de bug te reproduceren, indien mogelijk. - -Het opgeven van een accurate omschrijving helpt ons met het archiveren en verwerken van misbruik rapporten. - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Beste Inwoner, - -Het lijkt er op dat u intellectueel eigendoms misbruik rapporteert. Wees er alstublieft van overtuigd dat u dit correct rapporteert: - -(1) Het Misbruik Proces. U kunt een misbruik rapport indienen als u er van overtuigd bent dat een Inwoner het Second Life permissie systeem uitbuit, bijvoorbeeld door gebruik van CopyBot of soortgelijke gereedschappen, daarmee de intellectuele eigendoms rechten overtredend. Het Abuse Team onderzoekt en zal passende maatregelen uitvaardigen tegen gedrag dat de Second Life Gemeenschaps Standaarden overtreedt. Echter, het Abuse Team zal geen actie ondernemen en niet reageren op verzoeken om inhoud te verwijderen uit de Second Life wereld. - -(2) Het DMCA of Inhoud Verwijder Proces. Voor een verzoek tot verwijdering van inhoud in Second Life, MOET u een geldige berichtgeving van misbruik indienen zoals voorzien in onze DMCA beleid op http://secondlife.com/corporate/dmca.php. - -Indien u nog steeds door wilt gaan met het misbruik proces, sluit dan alstublieft dit venster en maak het indienen van uw rapport af. U zult mogelijk een specifieke catagorie moeten kiezen 'CopyBot of Permissie Uitbuiting'. - -Dank U, -Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -De volgende vereiste componenten ontbreken van [FLOATER]: -[COMPONENTS] - </notification> - - <notification - - label="Vervang Bestaande Bevestiging" - name="ReplaceAttachment" - > -Er is al een object bevestigd op dit punt aan uw lichaam. -Wilt u dit vervangen met het geselecteerde object? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Bij vervangen van bestaande bevestigingen"/> - <button - - - - name="Yes" - text="OK"/> - <button - - - name="No" - text="Annuleren"/> - </form> - </notification> - - <notification - - label="Niet Storen Modus Waarschuwing" - name="BusyModePay" - > -U bevind zich in Niet Storen Modus, hetgeen inhoudt dat u geen enkele items kunt ontvangen voor deze betaling. - -Wilt u de Niet Storen Modus verlaten voordat u deze transactie completeert? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Bij betalen van een persoon of object in Niet Storen modus"/> - <button - - - - name="Yes" - text="OK"/> - <button - - - name="No" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="ConfirmEmptyTrash" - > -Weet u zeker dat u de inhoud van uw vuilnisbak map permanent wilt verwijderen? - <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? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Ja"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -Weet u zeker dat u al uw cookies wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Ja"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -Weet u zeker dat u uw lijst met al de opgeslagen URL's wilt verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Annuleren" - yestext="Ja"/> - </notification> - - <notification - - name="ConfirmEmptyLostAndFound" - > -Weet u zeker dat u de inhoud van de Verloren en Gevonden map permanent wilt verwijderen? - <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: -[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"/> - </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: - -Shaders: In of uitschakelen van de verschillende typen pixel shaders. - -Reflectie Detail: 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. - -Zicht bereik: 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. - -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. +Selecteer objecten met scripts. + </notification> + <notification name="NoFrontmostFloater"> + Geen voorgaande floating waarde om op te slaan. + </notification> + <notification name="SeachFilteredOnShortWords"> + Uw zoek opdracht was aangepast en de woorden die te kort waren zijn verwijderd. -Licht Detail: Bepaald welke typen lichten u wenst weer te geven. +Gezocht naar: [FINALQUERY] + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + Uw zoek termen waren te kort en er is geen zoekopdracht uitgevoerd. + </notification> + <notification name="CouldNotTeleportReason"> + Kon niet Teleporteren. +[REASON] + </notification> -Terrein Detail: Stelt de hoeveelheid detail in die u wilt zien voor het terrein textuur. + <notification name="invalid_tport"> +Er is een probleem opgetreden bij het verwerken van uw verzoek voor een teleport. U dient wellicht opnieuw in te loggen voor uw kunt teleporteren. Wanneer u deze boodschap blijft ontvangen, controleert u dan alstublieft de Tech Support FAQ op: +www.secondlife.com/support </notification> - - <notification - - name="WLSavePresetAlert" - > -Wilt u de opgeslagen voor instellingen overschrijven? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> + <notification name="invalid_region_handoff"> +Er is een probleem opgetreden bij het oversteken naar een andere regio. U dient wellicht opnieuw in te loggen voor uw kunt oversteken naar andere regio's. Wanneer u deze boodschap blijft ontvangen, controleert u dan alstublieft de Tech Support FAQ op: +www.secondlife.com/support </notification> - - <notification - - name="WLDeletePresetAlert" - > -Wilt u [SKY] verwijderen? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> + <notification name="blocked_tport"> +Sorry, teleport is momenteel geblokkeerd. Probeer het zo meteen opnieuw. Indien u nog steeds niet kunt teleporteren, log dan alstublieft uit en weer in om het probleem te verhelpen. </notification> - - <notification - - name="WLNoEditDefault" - > -U kunt de standaard instellingen niet wijzigen of verwijderen. + <notification name="nolandmark_tport"> +Sorry, het systeem was niet in staat de bestemming van de landmarkering te vinden. </notification> - - <notification - - name="WLMissingSky" - > -Dit dag cyclus bestand heeft een ontbrekend lucht bestand: [SKY]. + <notification name="timeout_tport"> +Sorry, het systeem was niet in staat om de teleport verbinding af te ronden. Probeer het zo meteen nog een keer. </notification> - - <notification - - name="PPSaveEffectAlert" - > -Voorbewerkingeffecten bestaan. Wilt u ze alsnog overschrijven? - <usetemplate - name="okcancelbuttons" - notext="Nee" - yestext="Ja"/> + <notification name="noaccess_tport"> +Sorry, u heeft geen toegang tot die teleportbestemming. </notification> - - <notification - - name="HelpEditSky" - > -Wijzig de WindLight schuif knoppen en maak en sla een set van luchten op. + <notification name="missing_attach_tport"> +Uw bevestigingen zijn nog niet gearriveerd. Probeer nog een aantal seconden te wachten of log uit en weer in voor u probeert te teleporteren. </notification> - - <notification - - name="HelpEditDayCycle" - > -Bepaald de luchten te gebruiken gedurende de dag. + <notification name="too_many_uploads_tport"> +De assetwachtrij in deze regio is momenteel volgelopen, dus uw teleportverzoek zal niet tijdig afgerond kunnen worden. Probeer het alstublieft opnieuw over een aantal minuten of ga naar een minder druk gebied. + </notification> + <notification name="expired_tport"> +Sorry, het systeem was niet in staat uw teleportverzoek tijdig af te ronden. Probeer het alstublieft opnieuw over een aantal minuten. + </notification> + <notification name="expired_region_handoff"> +Sorry, het systeem was niet in staat om het oversteken naar een andere regio tijdig af te ronden. Probeer het alstublieft opnieuw over een aantal minuten. + </notification> + <notification name="no_host"> +Kan teleportbestemming niet vinden. De bestemming is mogelijk tijdelijk niet beschikbaar of bestaat niet meer. Probeer het alstublieft opnieuw over een aantal minuten. + </notification> + <notification name="no_inventory_host"> +Het inventarissysteem is momenteel niet beschikbaar. </notification> - <notification - - name="EnvSettingsHelpButton" - > -Deze instelling bepalen hoe de omgeving er uit ziet op uw computer. Uw grafische kaart zal grafische shaders moeten ondersteunen om toegang te krijgen tot alle instellingen. - -Wijzig de "Tijd van de Dag" schuif knop om de fase van de dag lokaal in de viewer aan te passen. - -Wijzig de "Wolken Dichtheid" schuif knop om de hoeveelheid wolken die de lucht bedekken in te stellen. - -Kies een kleur in de "Water Kleur" kleuren kiezer om de kleur van het water aan te passen. - -Wijzig de "Water Mist" schuif knop om de dichtheid van de mist onder water in te stellen. + <notification name="CannotSetLandOwnerNothingSelected"> + Kan landeigenaar niet instellen: +Geen perceel geselecteerd. + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + Kon geen land eigendom forceren omdat de selectie meerder regio's omvat. +Selecteer alstublieft een kleiner gebied en probeer het opnieuw. + </notification> + <notification name="ForceOwnerAuctionWarning"> + Dit perceel staat voor veiling aangemerkt. Eigendom forceren zal de veiling afbreking en kan potentieel een aantal inwoners niet erg blij maken als het bieden al is begonnen. Eigendom forceren? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + Unable to contentify: +Geen perceel geselecteerd. + </notification> + <notification name="CannotContentifyNoRegion"> + Unable to contentify: +Geen regio geselecteerd. + </notification> + <notification name="CannotReleaseLandNothingSelected"> + Kan land niet afstaan: +Geen perceel geselecteerd. + </notification> + <notification name="CannotReleaseLandNoRegion"> + Kan land niet afstaan: +kan de regio niet vinden. + </notification> + <notification name="CannotBuyLandNothingSelected"> + Kan land niet kopen: +Geen perceel geselecteerd. + </notification> + <notification name="CannotBuyLandNoRegion"> + Kan land niet kopen: +Kan de regio niet vinden waar dit land zich bevind. + </notification> + <notification name="CannotCloseFloaterBuyLand"> + U kunt het Koop Land venster niet sluiten totdat Second Life de prijs van de transactie geschat heeft. + </notification> + <notification name="CannotDeedLandNothingSelected"> + Kan land niet toekennen: +Geen perceel geselecteerd. + </notification> + <notification name="CannotDeedLandNoGroup"> + Kan land niet toekennen: +Geen groep geselecteerd. + </notification> + <notification name="CannotDeedLandNoRegion"> + Kan land niet toekennen: +Kan de regio niet vinden waar dit land zich bevind. +Gebruik alstublieft Gereedschappen -> Report Bug om het te rapporteren. + </notification> + <notification name="CannotDeedLandMultipleSelected"> + Kan land niet toekennen: +Meerder percelen geselecteerd. -Klik op "Gebruik Estate Tijd" om de tijd van de dag te herstellen naar de huidige tijd en die te volgen. +Probeer één enkel perceel te selecteren. + </notification> + <notification name="ParcelCanPlayMedia"> + Deze locatie van streaming media afspelen. -Klik op "Geavanceerde Lucht" om de editor op te roepen voor geavanceerde instellingen voor de lucht. +Streaming media vereisen een snelle internet verbinding. -Klik op "Geavanceerd Water" om de editor op te roepen voor geavanceerde instellingen voor water. - </notification> +Streaming media afspelen wanneer beschikbaar? +(U kunt deze optie later wijzigen onder Preferenties > Audio & Video.) + <usetemplate name="okcancelbuttons" notext="Uitschakelen" yestext="Media Afspelen"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + Kan land niet toekennen: +Wacht op de server om eigendom te rapporteren. - <notification - - name="HelpDayCycle" - > -De Dag Cyclus Editor geeft u controle over de lucht gedurende de Second Life's dag/nacht cyclus. Dit is de cyclus die gebruikt wordt in de Basis Omgeving Editor's Tijd van de Dag schuif knop. +Probeer het alstublieft opnieuw. + </notification> + <notification name="CannotDeedLandNoTransfer"> + Kan land niet toekennen: +De regio [REGION] staat geen overdracht van land toe. + </notification> + <notification name="CannotReleaseLandWatingForServer"> + Kan land niet afstaan: +Wacht op server om de perceel informatie bij te werken. -De Dag Cyclus Editor werkt beter met het instellen van gemarkeerde frames. Dit zijn nodes (weergegeven als grijze blips in de tijd weergave) die Hemel voorinstelling met zich geassocieerd hebben. Als de Tijd van de Dag voortschrijdt, "animeert" de WindLight Hemel als het interpoleert tussen de gemarkeerde frames. +Probeer het over enkele ogenblikken opnieuw. + </notification> + <notification name="CannotReleaseLandSelected"> + Kan land niet afstaan: +Niet alle geselecteerde percelen zijn uw eigendom. -De gele pijlen boven de tijdlijn representeert uw huidige zicht, gebaseerd op de Tijd van de Dag. Klik en sleep deze om te zien hoe uw dag zal animeren. U kunt gemarkeerde frames toe voegen of verwijderen middels het indrukken van de Frame Toevoegen of Frame Verwijderen knoppen, rechts van de tijdlijn. +Kies alstublieft één perceel. + </notification> + <notification name="CannotReleaseLandDontOwn"> + Kan land niet afstaan: +U heeft geen permissie dit perceel vrij te geven. +Percelen in uw eigendom verschijnen in groen. + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + Kan land niet afstaan: +Kan de regio niet vinden waar dit land zich bevind. -U kunt de tijds positie van een gemarkeerd frame instellen door het te slepen over de tijdlijn of middels het handmatig invullen van de Gemarkeerde Frame Instellingen. Binnen de Gemarkeerde Frame Instellingen krijgt u de mogelijkheid het gemarkeerde frame te associëren met de respectievelijke WindLight voorinstelling. +Gebruik alstublieft Gereedschappen > Report Bug om het te rapporteren. + </notification> + <notification name="CannotReleaseLandNoTransfer"> + Kan land niet afstaan: +De regio [REGION] staat geen overdracht van land toe. + </notification> + <notification name="CannotReleaseLandPartialSelection"> + Kan land niet afstaan: +U moet het gehele perceel selecteren om het vrij te kunnen geven. -De lengte van de Cyclus bepaald de totale tijdsduur van een "dag". Stelt u dit in op een lage waarde (bijv. twee minuten) betekend dat uw volledig 24 uurs tijdlijn zal animeren in slechts twee minuten! Als u tevreden bent met uw tijdlijn en gemarkeerde frame cyclus, gebruik dan de Start en Stop knoppen om het resultaat voor te beschouwen. Onthoud dat u ook de gele tijd indicator pijl boven de tijdlijn kunt bewegen om de animatie cyclus interactief te bekijken. Het gebruik van de Estate Tijd knop zal de lengte en tijd van uw dag synchroniseren met de Estate's dag cyclus. +Selecteer het gehele perceel of deel het eerst op. + </notification> + <notification name="ReleaseLandWarning"> + U staat op het punt om [AREA] m² land af te staan. +Met het afstaan van dit perceel zal het uit uw land houderschapsoverzicht verdwijnen, maar zal u geen L$ toekennen. -Als u tevreden bent met uw Dag Cyclus, kunt het opslaan en laden met de Test Dag Opslaan en Laad Test Dag knoppen. Merk op, dat wij momenteel slechts één Dag Cyclus toestaan. - </notification> +Dit land afstaan? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + Kan land niet opdelen: - <notification - - name="HelpBlueHorizon" - > -Gebruik de Rood/Groen/Blauw schuif knoppen om de kleur van de hemel aan te passen. U kunt de Intensiteit (I) schuif knop gebruiken om alle drie de schuif knoppen tegelijk te bewegen. - </notification> +Geen percelen geselecteerd. + </notification> + <notification name="CannotDivideLandPartialSelection"> + Kan land niet opdelen: - <notification - - name="HelpHazeHorizon" - > -Nevel Horizon is één van de meest handige parameters voor de algehele belichting in de scène. Het is effectief om de vele belichting instellingen te simuleren, zoals wit-vlakken van de zon en donkere gesloten iris instellingen. - </notification> +U heeft het gehele perceel geselecteerd. +Probeer een deel van het perceel te selecteren. + </notification> + <notification name="LandDivideWarning"> + Opdelen zal het perceel in twee delen verdelen en elk perceel kan zijn eigen instellingen hebben. Sommige instellingen zullen naar de standaard waarden terugkeren als de operatie voltooid is. - <notification - - name="HelpBlueDensity" - > -Blauw Dichtheid beïnvloed de algehele kleur verzadiging van de hemel en mist. Indien u de Intensiteit (I) schuif knop naar rechts schuift, zullen de kleuren lichter en sprekender worden. Indien u het geheel naar links schuift, worden de kleuren doffer, uiteindelijk vervagend naar zwart en wit. Als u de hemel kleur nauwkeurig wilt uitbalanceren, kunt u de individuele elementen van verzadiging instellen door gebruik van de Rood/Groen/Blauw (RGB) schuif knoppen. - </notification> +Land opdelen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + Kan het land niet opdelen: +Kan de regio niet vinden waar dit land zich bevind. - <notification - - name="HelpHazeDensity" - > -Nevel Dichtheid bepaald de hoeveelheid dofheid, grijze nevel in de atmosfeer. Het is effectief om scènes met veel rook of zelf gemaakte vervuiling te simuleren. Het is ook effectief voor het simuleren van nevel en mist. - </notification> +Gebruik alstublieft Gereedschappen > Report Bug om het te rapporteren. + </notification> + <notification name="CannotJoinLandNoRegion"> + Kan land niet verbinden: +Kan de regio niet vinden waar dit land zich bevind. - <notification - - name="HelpDensityMult" - > -De Dichtheid Vermeerderaar kan gebruikt worden om de algehele dichtheid van de atmosfeer te beïnvloeden. -Bij lagere instelling creëert het een gevoel van "dunne lucht" en met hogere instellingen een dik zwaar smog effect. - </notification> +Gebruik alstublieft Gereedschappen > Report Bug om het te rapporteren. + </notification> + <notification name="CannotJoinLandNothingSelected"> + Kan land niet verbinden: +Geen perceel geselecteerd. + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + Kan land niet verbinden: +U heeft slechts één perceel geselecteerd. - <notification - - name="HelpDistanceMult" - > -Stelt de WindLight's waargenomen afstand in. Een waarde van nul stopt de invloed van WindLight op terrein en objecten. Waarden groter dan 1 simuleren grotere afstanden voor dikkere atmosferische effecten. - </notification> +Selecteer land over beide percelen. + </notification> + <notification name="CannotJoinLandSelection"> + Kan land niet verbinden: +U moet meer dan één perceel selecteren. - <notification - - name="HelpMaxAltitude" - > -Maximale Hoogte bepaald de hoogte calculaties die WindLight uitvoert bij het berekenen van de atmosferische belichting. Later op de dag is het handig om de "diepte" van de zonsondergang weergave in te stellen. - </notification> +Selecteer land over beide percelen. + </notification> + <notification name="JoinLandWarning"> + Het verbinding van dit land zal één groot perceel opleveren uit alle percelen die de rechthoek doorkruisen. +U zult de naam en opties van het nieuwe perceel opnieuw in moeten stellen. - <notification - - name="HelpSunlightColor" - > -Stelt de kleur en intensiteit in van direct licht in de scène. - </notification> +Land verbinden? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ShowOwnersHelp"> + Toon eigenaren: +Kleur percelen om het eigenaarstype te tonen. + +Groen = Uw land +Aqua = Land van uw groep +Rood = Eigendom van anderen +Geel = Te koop +Paars = Ter veiling +Grijs = Openbaar + </notification> + <notification name="ConfirmNotecardSave"> + Deze notitiekaart zal moet worden opgeslagen voordat het item kan worden gekopieerd of bekeken. Notitiekaart opslaan? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmItemCopy"> + Dit item naar uw inventaris kopiëren? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Kopiëren"/> + </notification> + <notification name="ResolutionSwitchFail"> + Mislukt om resolutie te verwisselen van [RESX] naar [RESY] + </notification> + <notification name="ErrorUndefinedGrasses"> + Fout: Onbekend gras: [SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + Fout: Onbekende bomen: [SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + Kon '[NAME]' niet opslaan voor draagbaar item. U zult wat ruimte moeten maken op uw computer en het draagbare item opnieuw op moeten slaan. + </notification> + <notification name="CannotSaveToAssetStore"> + Kon [NAME] niet opslaan in centrale (asset) opslag. +Meestal is dit een tijdelijk probleem. +Wijzig en sla het draagbaar item over een paar minuten opnieuw op. - <notification - - name="HelpSunAmbient" - > -Stelt de kleur en intensiteit in van het omgevings atmosferische licht in de scène. - </notification> +Indien dit probleem aanhoudt, klik dan alstublieft op 'Gereedschap > Rapporteer Bug' in het menu en voeg informatie toe over uw netwerk instellingen. + </notification> + <notification name="YouHaveBeenLoggedOut"> + U bent uitgelogd uit [SECOND_LIFE]: +[MESSAGE] +U kunt uw bestaande IM en chat bekijken door te klikken op 'Toon IM & Chat'. Anders, klik op Afsluiten om [SECOND_LIFE] direct te verlaten. + <usetemplate name="okcancelbuttons" notext="Afsluiten" yestext="Toon IM & Chat"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + Kan land niet voor de groep kopen: +U heeft geen permissie land te kopen voor de actieve groep. + </notification> + <notification label="Vriend Toevoegen" name="AddFriend"> + Vrienden kunnen elkaar permissie geven om elkaar te volgen op de Kaart en om Online status updates te verkrijgen. - <notification - - name="HelpSunGlow" - > -De Afmeting schuif knop stelt de afmeting van de zon in. -De Focus schuif knop bepaald de wazigheid van de zon aan de hemel. - </notification> +Vriendschap aanbieden aan [NAME]? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification label="Vriend Toevoegen" name="AddFriendWithMessage"> + Vrienden kunnen elkaar permissie geven om elkaar te volgen op de Kaart en om Online status updates te verkrijgen. - <notification - - name="HelpSceneGamma" - > -Wijzigt de verdeling van licht op het scherm in licht of donker. - </notification> +Vriendschap aanbieden aan [NAME]? + <form name="form"> + <input name="message" type="text"> + Wilt U mijn vriend zijn? + </input> + <button name="Offer" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + Wilt u [FIRST_NAME] [LAST_NAME] van uw Vriend lijst verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + Wilt u meerder vrienden van uw Vrienden lijst verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + Weet u zeker dat u alle gescripte objecten wilt verwijderen eigendom van +** [AVATAR_NAME] ** +op allen hun land in deze sim? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + Weet u zeker dat u ALLE gescripte objecten wilt VERWIJDEREN eigendom van +** [AVATAR_NAME] ** +op AL het land in deze sim? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + Weet u zeker, dat u ALLE objecten (gescript of niet) wilt VERWIJDEREN eigendom van +** [AVATAR_NAME] ** +op AL het LAND in deze sim? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="BlankClassifiedName"> + U moet een naam opgeven voor uw advertentie. + </notification> + <notification name="MinClassifiedPrice"> + De prijs voor weergave moet minimaal L$[MIN_PRICE] zijn. - <notification - - name="HelpStarBrightness" - > -Wijzigt de helderheid van sterren aan de hemel. - </notification> +Voor alstublieft een hoger bedrag in. + </notification> + <notification name="ConfirmObjectDeleteLock"> + Ten minste één van de geselecteerde items is geblokkeerd. - <notification - - name="HelpTimeOfDay" - > -Bepaald de locatie van de zon aan de hemel. -Gelijkwaardig aan elevatie. - </notification> +Weet u zeker dat u deze items wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + Ten minste één van de geselecteerde items is niet kopieerbaar. - <notification - - name="HelpEastAngle" - > -Bepaald de locatie van de zon aan de hemel. -Gelijkwaardig aan azimut. - </notification> +Weet u zeker dat u deze items wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + Tenminste één van de geselecteerde items is niet uw eigendom. - <notification - - name="HelpCloudColor" - > -Wijzigt de kleur van de wolken. Het is algemeen aanbevolen deze wit-achtig te houden, maar hé, heb plezier als u dit wilt. - </notification> +Weet u zeker dat u deze items wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + Ten minste één item is geblokkeerd. +Ten minste één item is niet kopieerbaar. - <notification - - name="HelpCloudDetail" - > -Bepaald het detail plaatje als laag bovenop het basis wolken plaatje. X en Y bepalen de positie. D (Dichtheid) bepaald hoe wollig of verspreid de wolken verschijnen. - </notification> +Weet u zeker dat u deze items wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + Ten minste één item is geblokkeerd. +Tenminste één object is niet uw eigendom. - <notification - - name="HelpCloudDensity" - > -Geeft u de mogelijkheid de positie van wolken met de X en Y schuif knoppen in te stellen en hoe dicht ze zijn met de D schuif knop. - </notification> +Weet u zeker dat u deze items wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + Ten minste één object is niet kopieerbaar. +Tenminste één object is niet uw eigendom. - <notification - - name="HelpCloudCoverage" - > -Bepaald hoeveel de wolken de hemel bedekken. - </notification> +Weet u zeker dat u deze items wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + Ten minste één item is geblokkeerd. +Ten minste één item is niet kopieerbaar. +Tenminste één object is niet uw eigendom. - <notification - - name="HelpCloudScale" - > -Bepaald de schaal van het wolken plaatje op de hemelboog. - </notification> +Weet u zeker dat u deze items wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + Ten minste één object is geblokkeerd. - <notification - - name="HelpCloudScrollX" - > -Bepaald de snelheid van de wolken terwijl zij in X richting bewegen. - </notification> +Weet u zeker dat u deze items terug wilt nemen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + Niet alle objecten die u terug neemt zijn uw eigendom. +Indien u verder gaat, worden de permissies van de volgende eigenaar er op toegepast en beperkt het u mogelijk het aan te passen of te kopiëren. - <notification - - name="HelpCloudScrollY" - > -Bepaald de snelheid van de wolken terwijl zij in Y richting bewegen. - </notification> +Weet u zeker dat u deze items terug wilt nemen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + Ten minste één object is geblokkeerd. +Niet alle objecten die u terug neemt zijn uw eigendom. +Indien u verder gaat, worden de permissies van de volgende eigenaar er op toegepast en beperkt het u mogelijk het aan te passen of te kopiëren. +Echter, U kunt de huidige selectie wel terugnemen. - <notification - - name="HelpClassicClouds" - > -Vink dit aan voor weergave van Second Life's oudere klassieke wolken als toevoeging op WindLight's wolken. - </notification> +Weet u zeker dat u deze items terug wilt nemen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + Kan het land niet kopen omdat het meerder regio's omvat. - <notification - - name="HelpWaterFogColor" - > -Kiest de kleur van de onder water nevel. - </notification> +Kiest u alstublieft een kleiner gebied en probeer het opnieuw. + </notification> + <notification name="DeedLandToGroup"> + Voor het overdragen van dit perceel zal de groep voldoen land gebruikscredit moeten hebben en onderhouden. +Het aankoop bedrag zal niet naar de eigenaar worden terug gestort. +Indien een overgedragen perceel wordt verkocht, zal het verkoop bedrag gelijkmatig over de groepsleden worden verdeeld. - <notification - - name="HelpWaterFogDensity" - > -Bepaald hoe dicht de water nevel is en hoe ver u kunt zien onder water. - </notification> +Deze [AREA] m² land overdragen aan de groep '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + Voor het overdragen van dit perceel zal de groep voldoen land gebruikscredit moeten hebben en onderhouden. +De overdracht zal een simultane land contributie verlangen van de groep van '[FIRST_NAME] [LAST_NAME]'. +Het aankoop bedrag zal niet naar de eigenaar worden terug gestort. +Indien een overgedragen perceel wordt verkocht, zal het verkoop bedrag gelijkmatig over de groepsleden worden verdeeld. - <notification - - name="HelpUnderWaterFogMod" - > -Past het effect aan van de Nevel Dichtheid Exponent om zo te bepalen hoe ver uw avatar onder water kan zien. - </notification> +Deze [AREA] m² land overdragen aan de groep '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="DisplaySetToSafe"> + Weergave instellingen zijn op veilige waarden ingesteld omdat u de -save optie op heeft gegeven. + </notification> + <notification name="DisplaySetToRecommended"> + Weergave instellingen zijn ingesteld op geadviseerde waarden, gebaseerd op uw systeem configuratie. + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + Uw [TYPE] locatie is momenteel niet beschikbaar. +[HELP] +U bent naar een nabij gelegen regio verplaatst. + </notification> + <notification name="ClothingLoading"> + Uw kleding wordt nog steeds geladen. +U kunt [SECOND_LIFE] normaal gebruiken en anderen zullen u correct zien. + <form name="form"> + <ignore name="ignore" text="Indien kleding een erg lange tijd in beslag neemt om de laden"/> + </form> + </notification> + <notification name="FirstRun"> + [SECOND_LIFE] installatie compleet. - <notification - - name="HelpWaterGlow" - > -Bepaald hoeveel het oppervlak van het water gloeit. - </notification> +Als dit de eerste keer is dat u [SECOND_LIFE] gebruikt, zult u een account aan moeten maken voordat u in kan loggen. +Terugkeren naar www.secondlife.com om een nieuw account aan te maken? + <usetemplate name="okcancelbuttons" notext="Doorgaan" yestext="Nieuw Account..."/> + </notification> + <notification name="LoginPacketNeverReceived"> + Wij hebben problemen verbinding te maken. Er zou een probleem kunnen zijn met uw internet verbinding of met de Second Life servers. - <notification - - name="HelpWaterNormalScale" - > -Bepaald de schaling van de drie wavelets (golf patronen) die samen water vormen. - </notification> +U kunt uw internet verbinding controleren en het over een paar minuten opnieuw proberen, op Help klikken om verbinding te maken met onze support website, of klik op Teleporteren om een poging te doen naar uw thuis locatie te teleporteren. + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="Help"/> + <button name="Teleport" text="Teleport"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + Uw avatar zal over enkele ogenblikken verschijnen. - <notification - - name="HelpWaterFresnelScale" - > -Bepaald hoeveel licht er wordt gereflecteerd onder verschillende hoeken. - </notification> +Gebruik de pijltjestoetsen om te lopen. +Druk op elk gewenst moment op F1 voor Help en om meer te leren over [SECOND_LIFE]. +Kies alstublieft een mannelijk of vrouwelijke avatar. U kunt later nog van gedachten veranderen. + <usetemplate name="okcancelbuttons" notext="Vrouw" yestext="Man"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] L$ [PRICE] U heeft niet genoeg L$ om dit te doen. + </notification> + <notification name="GrantedModifyRights"> + U heeft het recht verkregen om objecten van [FIRST_NAME] [LAST_NAME] te wijzigen. + </notification> + <notification name="RevokedModifyRights"> + Uw recht om objecten van [FIRST_NAME] [LAST_NAME] is ingetrokken. + </notification> + <notification name="FlushMapVisibilityCaches"> + Dit zal de Kaart cache van deze regio opschonen. - <notification - - name="HelpWaterFresnelOffset" - > -Bepaald de hoeveelheid licht intensiteit welke wordt gereflecteerd. - </notification> +Dit is eigenlijk alleen nuttig voor debugging. +(In productie, wacht 5 minuten, dan zal de Kaart van iedereen bijgewerkt worden als ze opnieuw verbinden.) + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + Kan niet meer dan één object tegelijkertijd kopen. Selecteer alstublieft slechts één object en probeer opnieuw. + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + Kan niet de inhoud van meer dan één item per keer kopiëren. +Kies alstublieft slechts één object en probeer het opnieuw. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + Alle Inwoners in deze regio naar de thuis locatie Teleporteren? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + Weet u zeker dat u alle objecten wilt retourneren eigendom van [USER_NAME] ? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + Kon de regio textuur niet plaatsen: +Terrein textuur [TEXTURE_NUM] heeft een ongeldige bit diepte van [TEXTURE_BIT_DEPTH]. - <notification - - name="HelpWaterScaleAbove" - > -Bepaald hoeveel licht er wordt weerkaatst wanneer van bovenop het water oppervlak gezien. - </notification> +Vervang de textuur [TEXTURE_NUM] met een 24-bit 512x512 of een kleinere afbeelding, klik dan op opnieuw op "Toepassen". + </notification> + <notification name="InvalidTerrainSize"> + Kon de regio textuur niet plaatsen: +Terrein textuur [TEXTURE_NUM] is te groot met [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. - <notification - - name="HelpWaterScaleBelow" - > -Bepaald hoeveel licht er wordt weerkaatst wanneer van onder het water oppervlak gezien. - </notification> +Vervang de textuur [TEXTURE_NUM] met een 24-bit 512x512 of een kleinere afbeelding, klik dan op opnieuw op "Toepassen". + </notification> + <notification name="RawUploadStarted"> + Upload gestart. Het kan tot twee minuten duren, afhankelijk van u verbindings snelheid. + </notification> + <notification name="ConfirmBakeTerrain"> + Wilt u werkelijk het huidige terrein 'baken', dit als middelpunt voor de verhoog/verlaag limieten instellen en als standaard instellen voor het 'Herstel' gereedschap? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + U kunt slechts [MAX_AGENTS] Toegestane Inwoners hebben. + </notification> + <notification name="MaxBannedAgentsOnRegion"> + U kunt slechts [MAX_BANNED] Verbannen Inwoners hebben. + </notification> + <notification name="MaxAgentOnRegionBatch"> + Een poging [NUM_ADDED] agents toe te voegen is mislukt: +Overstijgt de [MAX_AGENTS] [LIST_TYPE] limiet met [NUM_EXCESS]. + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + U kunt slechts [MAX_GROUPS] Toegestane Groepen hebben. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Bake"/> + </notification> + <notification name="MaxManagersOnRegion"> + U kunt slechts [MAX_MANAGER] Estate Beheerders hebben. + </notification> + <notification name="OwnerCanNotBeDenied"> + Kan de estate eigenaar niet aan de Verbannen lijst van het estate toe voegen. + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + Kan het Uiterlijk niet veranderen totdat kleding en Postuur geladen zijn. + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + De naam van uw advertentie moet beginnen met een letter van A tot Z of een nummer. +Leestekens zijn niet toegestaan. + </notification> + <notification name="CantSetBuyObject"> + Kan Koop Object niet instellen omdat het object niet te koop is. +Zet het object alstublieft te koop en probeer het opnieuw. + </notification> + <notification name="FinishedRawDownload"> + Download van raw terrein bestand geëindigd naar: +[DOWNLOAD_PATH]. + </notification> + <notification name="DownloadWindowsMandatory"> + Een nieuwe versie van [SECOND_LIFE] is beschikbaar. +[MESSAGE] +U moet deze update downloaden om [SECOND_LIFE] te kunnen gebruiken. + <usetemplate name="okcancelbuttons" notext="Afsluiten" yestext="Download"/> + </notification> + <notification name="DownloadWindows"> + Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. +[MESSAGE] +Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. + <usetemplate name="okcancelbuttons" notext="Doorgaan" yestext="Download"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. +[MESSAGE] +Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. + <usetemplate name="okcancelbuttons" notext="Doorgaan" yestext="Download"/> + </notification> + <notification name="DownloadMacMandatory"> + Een nieuwe versie van [SECOND_LIFE] is beschikbaar. +[MESSAGE] +U moet deze update downloaden om [SECOND_LIFE] te kunnen gebruiken. - <notification - - name="HelpWaterBlurMultiplier" - > -Bepaald hoe golven en reflectie worden ge mixed. - </notification> +Downloaden naar uw Applicatie Data map? + <usetemplate name="okcancelbuttons" notext="Afsluiten" yestext="Download"/> + </notification> + <notification name="DownloadMac"> + Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. +[MESSAGE] +Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. - <notification - - name="HelpWaterNormalMap" - > -Bepaald welke Normaal map gelaagd is over het water om de reflectie/weerkaatsing te bepalen. - </notification> +Downloaden naar uw Applicatie Data map? + <usetemplate name="okcancelbuttons" notext="Doorgaan" yestext="Download"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + Een bijgewerkte versie van [SECOND_LIFE] is beschikbaar. +[MESSAGE] +Deze update is niet vereist, maar wij raden aan dat u het installeert om de prestaties en stabiliteit te verbeteren. - <notification - - name="HelpWaterWave1" - > -Bepaald waar en hoe snel de grote schaal versie van de Normaal map beweegt in X en Y richting. - </notification> +Downloaden naar uw Applicatie Data map? + <usetemplate name="okcancelbuttons" notext="Doorgaan" yestext="Download"/> + </notification> + <notification name="DeedObjectToGroup"> + Dit object overdragen aan de groep zal de groep: +* L$ ontvangen als betaald in het object + <usetemplate ignoretext="Bij objecten die overgedragen worden aan groepen" name="okcancelignore" notext="Annuleren" yestext="Overdragen"/> + </notification> + <notification name="WebLaunchExternalTarget"> + Uw systeem browser openen om deze inhoud te bekijken? + <usetemplate ignoretext="Bij openen van systeem browser om de webpagina te bekijken" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="WebLaunchJoinNow"> + Naar www.secondlife.com gaan om uw account te beheren? + <usetemplate ignoretext="Bij openen van webbrowser om uw account te beheren" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="WebLaunchBugReport101"> + Bezoek de [SECOND_LIFE] Wiki en leer hoe Bugs correct gerapporteerd kunnen worden. + <usetemplate ignoretext="Bij openen webbrowser om de Bug Reporting 101 Wiki te bekijken" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="WebLaunchSecurityIssues"> + Bezoek de [SECOND_LIFE] Wiki voor details over hoe een Veiligheids Probleem (Security Issue) te rapporteren. + <usetemplate ignoretext="Bij openen webbrowser om de Veiligheids Problemen Wiki (Security Issues Wiki) te bekijken" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="WebLaunchQAWiki"> + Bezoek de [SECOND_LIFE] QA Wiki (Kwaliteitsbeheersing Wiki). + <usetemplate ignoretext="Bij openen webbrowser om de QA Wiki (Kwaliteitsbeheersing Wiki) te bekijken" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssue"> + Bezoek de [SECOND_LIFE] Publieke problemenlijst, waar u Bugs en andere Problemen kunt rapporteren. + <usetemplate ignoretext="Bij openen webbrowser om de Publieke problemenlijst te bekijken" name="okcancelignore" notext="Annuleren" yestext="Ga naar pagina"/> + </notification> + <notification name="WebLaunchPublicIssueHelp"> + Bezoek de [SECOND_LIFE] Wiki voor informatie over het gebruik van de Publieke problemenlijst. + <usetemplate ignoretext="Bij openen webbrowser om de Publieke problemenlijst Wiki te bekijken" name="okcancelignore" notext="Annuleren" yestext="Ga naar pagina"/> + </notification> + <notification name="WebLaunchSupportWiki"> + Ga naar de Officiële Linden Blog voor het laatste Nieuws en Informatie. + <usetemplate ignoretext="Bij openen webbrowser om de blog te bekijken" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLGuide"> + Naar de Script Gids gaan voor hulp met scripten? + <usetemplate ignoretext="Bij openen webbrowser om de Script Gids te bekijken" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLWiki"> + Naar de LSL Portaal gaan voor hulp met scripten? + <usetemplate ignoretext="Bij openen webbrowser om de LSL Portal te bekijken" name="okcancelignore" notext="Annuleren" yestext="Ga naar pagina"/> + </notification> + <notification name="ReturnToOwner"> + Weet u zeker dat u de geselecteerde objecten wilt retourneren naar de eigenaren? +Overdraagbare toegekende objecten zullen naar de oorspronkelijke eigenaren worden geretourneerd. - <notification - - name="HelpWaterWave2" - > -Bepaald waar en hoe snel de kleine schaal versie van de Normaal map beweegt in X en Y richting. - </notification> +*WAARSCHUWING* Niet overdraagbare toegekende objecten zullen worden verwijderd! + <usetemplate ignoretext="Bij retourneren objecten naar de eigenaren" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="GroupLeaveConfirmMember"> + U bent momenteel een lid van de groep [GROUP]. +Groep Verlaten? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmKick"> + Weet u HEEL ZEKER dat u alle gebruikers uit het grid wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Verwijder Alle Gebruikers"/> + </notification> + <notification name="MuteLinden"> + Sorry, u kunt geen Linden Negeren + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + U kunt geen veiling starten op een perceel dat al te koop is gezet. Schakel de landverkoop uit wanneer u zeker bent dat u een veiling wil starten. + </notification> + <notification label="Negeren van object mislukt" name="MuteByNameFailed"> + U heeft deze naam al genegeerd. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + Alhoewel toegestaan, verwijderen van de inhoud kan het object beschadigen. Wilt u dit item verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="CantOfferCallingCard"> + Kan op dit moment geen visitekaart aanbieden. Probeer het alstublieft later opnieuw. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + Kan op dit moment geen vriendschap aanbieden. Probeer het alstublieft later opnieuw. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="BusyModeSet"> + Niet Storen modus ingesteld. - <notification - - name="NewSkyPreset" - > -Geef een naam op voor de nieuwe lucht. - <form name="form"> - <input name="message" type="text"> -Nieuwe Voorinstelling - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> +Chat and instant messages zullen verborgen blijven. Instant messages zullen uw Niet Storen melding krijgen. Alle teleport aanbiedingen zullen worden afgewezen. Alle inventaris aanbiedingen zullen in uw Vuilnisbak terecht komen. + <usetemplate ignoretext="Bij instellen Niet Storen modus" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + U ben lid van teveel groepen om lid te worden van een andere. Verlaat op zijn minst één groep alvorens lid te worden van een andere of weiger de lidmaatschap aanbieding. +Om een groep te verlaten, selecteer de 'Groep..' optie via het 'Bewerken' menu. - <notification - - name="ExistsSkyPresetAlert" - > -Voorinstelling bestaat al! - </notification> +[NAME] heeft u uitgenodigd om lid te worden van de groep als algemeen lid. - <notification - - name="NewWaterPreset" - > -Geef een naam voor de nieuwe voorinstelling van water. - <form name="form"> - <input name="message" type="text"> -Nieuwe Voorinstelling - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> +[INVITE] + <usetemplate name="okcancelbuttons" notext="Afslaan" yestext="Lid worden"/> + </notification> + <notification name="KickUser"> + Verwijder deze gebruiker met welk bericht? + <form name="form"> + <input name="message" type="text"> + Een administrator heeft u uitgelogd. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="KickAllUsers"> + Verwijder iedereen momenteel op het grid met welk bericht? + <form name="form"> + <input name="message" type="text"> + Een administrator heeft u uitgelogd. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="FreezeUser"> + Bevries deze gebruiker met welk bericht? + <form name="form"> + <input name="message" type="text"> + U bent bevroren. U kunt zich niet verplaatsen of praten. Een administrator zal contact met u opnemen via instant message (IM). + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="UnFreezeUser"> + Ontdooi deze gebruiker met welk bericht? + <form name="form"> + <input name="message" type="text"> + U bent niet langer bevroren. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="OfferTeleport"> + Een Teleport aanbieden naar uw locatie met welk bericht? + <form name="form"> + <input name="message" type="text"> + Voeg u bij mij in [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + God beveel gebruiker naar uw locatie? + <form name="form"> + <input name="message" type="text"> + Voeg u bij mij in [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + Weet u zeker dat u wilt teleporteren? + <usetemplate ignoretext="Bij teleporteren via een landmarkering in inventaris" name="okcancelignore" notext="Annuleren" yestext="Teleporteren"/> + </notification> + <notification label="Bericht iedereen in uw Estate" name="MessageEstate"> + Type een kort bericht om naar iedereen sturen die momenteel in uw Estate aanwezig is. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification label="Wijzig Linden Estate" name="ChangeLindenEstate"> + U staat op het punt een Linden beheerde Estate te wijzigen mainland, teen grid, orientation, etc.). - <notification - - name="ExistsWaterPresetAlert" - > -Voorinstelling bestaat al! - </notification> +Dit is EXTREEM GEVAARLIJK om het fundamenteel de gebruikers ervaring kan aantasten. +Op het mainland zal het duizenden regionen wijzigen en de spaceserver kan storingen vertonen. - <notification - - name="WaterNoEditDefault" - > -u kunt de standaard voorinstelling niet wijzigen of verwijderen. - </notification> +Doorgaan? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification label="Wijzig Linden Estate Toegang" name="ChangeLindenAccess"> + U staat op het punt de toegangslijst van een Linden Estate eigendom aan te passen (mainland, teen grid, orientation, etc.). - <notification - - name="ChatterBoxSessionStartError" - > -Kan geen nieuwe chat sessie starten met [RECIPIENT]. -[REASON] +Dit is GEVAARLIJK en zou alleen gedaan moeten worden om de hack toe te staan om objecten/L$ over te dragen in/uit het grid. +Het zal het duizenden regionen wijzigen en de spaceserver kan storingen vertonen. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification label="Selecteer Estate" name="EstateAllowedAgentAdd"> + Alleen aan toegangslijst voor dit Estate toevoegen of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Selecteer Estate" name="EstateAllowedAgentRemove"> + Verwijderen van toegangslijst voor alleen dit Estate of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Selecteer Estate" name="EstateAllowedGroupAdd"> + Alleen aan groeps toegangslijst voor dit Estate toevoegen of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Selecteer Estate" name="EstateAllowedGroupRemove"> + Verwijderen van groeps toegangslijst voor alleen dit Estate of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Selecteer Estate" name="EstateBannedAgentAdd"> + Weiger toegang voor alleen dit Estate of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Selecteer Estate" name="EstateBannedAgentRemove"> + Deze Inwoner van de ban lijst voor toegang voor alleen dit Estate verwijderen of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Selecteer Estate" name="EstateManagerAdd"> + Estate beheerder toevoegen voor alleen dit Estate of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Selecteer Estate" name="EstateManagerRemove"> + Estate beheerder verwijderen voor alleen dit Estate of voor [ALL_ESTATES]? + <usetemplate canceltext="Annuleren" name="yesnocancelbuttons" notext="Alle Estates" yestext="Dit Estate"/> + </notification> + <notification label="Bevestig Verwijderen" name="EstateKickUser"> + Verwijder [EVIL_USER] van deze Estate? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="EstateChangeCovenant"> + Weet u zeker dat u de Estate Convenant wilt wijzigen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + U wordt niet in die regio toegelaten vanwege uw inhoudscategorie. Dit kan het gevolg zijn van een gebrek aan informatie die uw leeftijd valideert. + +Verifieer alstublieft dat u de nieuwste viewer heeft geïnstalleerd en ga naar de kennisbank voor details over het betreden van gebieden met deze inhoudscategorie. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + U wordt niet in die regio toegelaten vanwege uw inhoudscategorie. - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] -[REASON] +Ga naar de kennisbank voor meer informatie over inhoudscategorieën? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> <usetemplate - name="okbutton" - yestext="OK"/> - </notification> + name="okcancelignore" + yestext="Ga naar kennisbank" + notext="Sluiten" + ignoretext="Wanneer regiotoegang wordt geblokkeerd vanwege de inhoudscategorie"/> + </notification> + <notification name="RegionEntryAccessBlocked_Notify"> + U wordt niet in die regio toegelaten vanwege uw inhoudscategorie. + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + 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> + <button + name="OK" + text="Wijzig voorkeur"/> + <button + default="true" + name="Cancel" + text="Sluiten"/> + <ignore text="Wanneer regiotoegang wordt geblokkeerd vanwege de inhoudscategorie voorkeur"/> + </form> + </notification> + <notification name="LandClaimAccessBlocked"> + U kunt dit land niet opeisen vanwege uw inhoudscategorie. Dit kan het gevolg zijn van een gebrek aan informatie die uw leeftijd valideert. - <notification - - name="ForceCloseChatterBoxSession" - > -Uw chat sessie met [NAME] zal moeten worden gesloten. -[REASON] +Verifieer alstublieft dat u de nieuwste viewer heeft geïnstalleerd en ga naar de kennisbank voor details over het betreden van gebieden met deze inhoudscategorie. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + U kunt dit land niet opeisen vanwege uw inhoudscategorie. - <notification - - name="Cannot_Purchase_an_Attachment" - > -Items kunnen niet worden gekocht indien ze deel uit maken van een Bevestiging. - </notification> +Ga naar de kennisbank voor meer informatie over inhoudscategorieën? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Ga naar kennisbank" + notext="Sluiten" + ignoretext="Wanneer het opeisen van land wordt geblokkeerd vanwege de inhoudscategorie"/> + </notification> + <notification name="LandClaimAccessBlocked_Notify"> + U kunt dit land niet opeisen vanwege uw inhoudscategorie. + </notification> + <notification name="LandClaimAccessBlocked_Change"> + U kunt dit land niet opeisen vanwege uw inhoudscategorie voorkeur. + +U kunt klikken op 'Wijzig voorkeur' om uw inhoudscategorie voorkeur nu te verhogen en toegang te krijgen om binnen te treden. U zult in staat zijn om [REGIONMATURITY] inhoud vanaf nu te zoeken en benaderen. Wanneer u deze instelling later terug wilt zetten, gaat u naar Bewerken > Voorkeuren... > Algemeen. + <usetemplate + name="okcancelignore" + yestext="Wijzig voorkeur" + notext="Sluiten" + ignoretext="Wanneer het opeisen van land wordt geblokkeerd vanwege de inhoudscategorie voorkeur"/> + </notification> + <notification name="LandBuyAccessBlocked"> + U kunt dit land niet kopen vanwege uw inhoudscategorie. Dit kan het gevolg zijn van een gebrek aan informatie die uw leeftijd valideert. - <notification - - label="Over verzoeken voor debet permissies" - name="DebitPermissionDetails" - > -Toestemming geven aan dit script geeft het object een onbeperkte permissie om Linden dollars (L$) uit uw account te nemen! -Om dit recht in te trekken, moet de object eigenaar het object verwijderen of de scripts in het object opnieuw instellen. +Verifieer alstublieft of u de nieuwste viewer heeft geïnstalleerd en ga naar de kennisbank voor details over het betreden van gebieden met deze inhoudscategorie. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + U kunt dit land niet kopen vanwege uw inhoudscategorie. - <notification - - name="AutoWearNewClothing" - > -Wilt u de kleding items die u maakt automatisch aantrekken? +Ga naar de kennisbank voor meer informatie over inhoudscategorieën? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Ga naar kennisbank" + notext="Sluiten" + ignoretext="Wanneer een landaankoop wordt geblokkeerd vanwege de inhoudscategorie"/> + </notification> + <notification name="LandBuyAccessBlocked_Notify"> + U kunt dit land niet kopen vanwege uw inhoudscategorie. + </notification> + <notification name="LandBuyAccessBlocked_Change"> + U kunt dit land niet kopen vanwege uw inhoudscategorie voorkeur. + +U kunt klikken op 'Wijzig voorkeur' om uw inhoudscategorie voorkeur nu te verhogen en toegang te krijgen om binnen te treden. U zult in staat zijn om [REGIONMATURITY] inhoud vanaf nu te zoeken en benaderen. Wanneer u deze instelling later terug wilt zetten, gaat u naar Bewerken > Voorkeuren... > Algemeen. <usetemplate - ignoretext="Automatisch nieuwe kleding aantrekken" name="okcancelignore" + yestext="Wijzig voorkeur" + notext="Sluiten" + ignoretext="Wanneer een landaankoop wordt geblokkeerd vanwege de inhoudscategorie voorkeur"/> + </notification> + <notification name="TooManyPrimsSelected"> + "Er zijn teveel prims geselecteerd. Selecteer alstublieft [MAX_PRIM_COUNT] of minder prims en probeer opnieuw." + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemImportingEstateCovenant"> + Probleem met importeren Estate Convenant. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + Problemen met het toevoegen van een Estate beheerder. Eén of meer Estates kunnen een volle beheerders lijst hebben. + </notification> + <notification name="ProblemAddingEstateGeneric"> + Problemen met toevoegen aan deze Estate lijst. Eén of meer Estates kunnen een volle lijst hebben. + </notification> + <notification name="UnableToLoadNotecardAsset"> + Kan de asset van de notitiekaart op dit moment niet laden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="NotAllowedToViewNotecard"> + Onvoldoende rechten om de notitiekaart in te zien geassocieerd met het opgevraagde asset ID. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + Asset ID voor de notitiekaart ontbreekt in de database. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + Bedenk: kosten voor advertenties worden niet terugbetaald. + +Advertentie nu Publiceren voor L$[AMOUNT]? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="SetClassifiedMature"> + Bevat deze advertentie Mature inhoud? + <usetemplate + canceltext="Annuleren" + name="yesnocancelbuttons" notext="Nee" yestext="Ja"/> - </notification> - - <notification - - name="NotAgeVerified" - > -U moet leeftijd geverifieerd zijn om toegang te verkrijgen tot dit perceel. -Wilt u de Second Life website bezoeken om uw leeftijd te verifiëren? - -[_URL] - <url option="0" name="url"> - - https://secondlife.com/account/verification.php - </url> + </notification> + <notification name="SetGroupMature"> + Bevat deze groep Mature inhoud? <usetemplate - ignoretext="Waarschuw voor gebrek aan leeftijd verificatie" - name="okcancelignore" + canceltext="Annuleren" + name="yesnocancelbuttons" notext="Nee" yestext="Ja"/> - </notification> + </notification> + <notification label="Bevestig herstart" name="ConfirmRestart"> + Wilt u deze regio echt binnen 2 minuten herstarten? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification label="Bericht iedereen in deze regio" name="MessageRegion"> + Type een kort bericht om naar iedereen sturen die momenteel in regio aanwezig is. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification label="Weiger Land aanpassingen" name="HelpRegionBlockTerraform"> + Indien dit aan gevinkt kunnen landeigenaren geen terrein bewerkingen doen op hun land, ongeacht de per perceel ingestelde waarde voor 'Wijzig Terrein' - <notification - - name="Cannot enter parcel: no payment info on file" - > -Dit perceel verlangd dat u betaal informatie geregistreerd hebt staan alvorens toegang te verkrijgen. -Wilt u de Second Life website bezoeken om dit in te stellen? +Standaard: uitgeschakeld + </notification> + <notification label="Blokkeer Vliegen" name="HelpRegionBlockFly"> + Indien dit is aan gevinkt kunnen personen niet vliegen in deze regio ongeacht de per perceel ingestelde waarde 'Vliegen' -[_URL] - <url option="0" name="url"> +Standaard: uitgeschakeld + </notification> + <notification label="Bulkwijzigen Inhoudpermissies" name="HelpBulkPermission"> + Het Bulkpermissiesgereedschap helpt u om snel de permissies op meerdere items in de inhoud van het geselecteerde object te wijzigen. Let echter op dat u alleen de permissies op de items in de Inhoud van de geselecteerde objecten instelt -- niet de permissies van het containerobject zelf. - https://secondlife.com/account/index.php?lang=nl - </url> - <usetemplate - ignoretext="Waarschuw voor gebrek aan betaal informatie" - name="okcancelignore" - notext="Nee" - yestext="Ja"/> - </notification> +Merk ook op dat de permissies niet worden toegepast op de geneste inhoud van de items in Inhoud. Uw verzoek werkt alleen op items precies één niveau diep. - <notification - - name="MissingString" - > -De tekst [STRING_NAME] ontbreekt in strings.xml - </notification> +U kunt selectief kiezen welke soorten objecten te wijzigen door gebruik te maken van de checklist onder 'Inhoud Types' hier. Foto's worden opgenomen wanneer u Texturen selecteert. - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> +* Dit gereedschap is alleen succesvol in het wijzigen van permissies op objecten die u mag wijzigen. +* U kunt geen 'Volgende Eigenaar' permissies toekennen die u niet al bezit. +* De 'Volgende Eigenaar' permissies zijn slechts verzoeken. Indien een item niet alle nieuwe permissies kan overnemen, zal geen van zijn permissies wijzigen. - <notification - - name="Cancelled" - > -Geannuleerd - </notification> +Wanneer u klaar bent om de permissies in bulk te wijzigen, klik dan 'Toepassen' en wacht tot de resultaten worden weergegeven. - <notification - - name="CancelledSit" - > -Zitten geannuleerd - </notification> +Indien u het Bulkpermissies venster sluit terwijl permissies gewijzigd worden, zal de verwerking gestopt worden. + </notification> + <notification label="Sta Letsel Toe" name="HelpRegionAllowDamage"> + Indien dit is aan gevinkt stelt het Letsel systeem in voor alle percelen, ongeacht de individuele instellingen op de percelen. Indien uitgeschakeld, kunnen perceel eigenaren het Letsel systeem op hun perceel activeren. - <notification - - name="CancelledAttach" - > -Bevestigen geannuleerd - </notification> +Standaard: uitgeschakeld + </notification> + <notification label="Agent Limiet" name="HelpRegionAgentLimit"> + Stelt het maximale aantal toegestane avatars in voor deze regio. +De prestaties kunnen variëren afhankelijk van het aantal aanwezige avatars. - <notification - - name="ReplacedMissingWearable" - > -Missend kleding/lichaamsdeel is vervangen door standaard. - </notification> +Standaard: 40 + </notification> + <notification label="Object Bonus" name="HelpRegionObjectBonus"> + De Object Bonus is een vermeerderaar voor primitieven op een willekeurig perceel. +Het bereik is van 1 tot 10. Ingesteld op '1' kan elk 512m² perceel 117 objecten bevatten. Ingesteld op '2' kan elk 512m² perceel 234 objecten bevatten, enzovoort. Het maximale aantal objecten blijft 15.000, ongeacht wat de Object Bonus is. Denk er aan, dat eenmaal ingesteld, het verlagen van de Object Bonus het retourneren of verwijderen van objecten tot gevolg kan hebben. - <notification - - name="GroupNotice" - > -Onderwerp: [SUBJECT], Bericht: [MESSAGE] - </notification> +Standaard: 1.0 + </notification> + <notification label="Inhoudscategorie:" name="HelpRegionMaturity"> + Stelt de inhoudscategorie van de regio in, zoals getoond in de menubalk bovenaan de viewer van elke inwoner en in tooltips op de wereldkaart wanneer de aanwijzer boven deze regio zweeft. Deze instelling heeft ook invloed op de toegang tot deze regio en zoekresultaten. Andere inwoners kunnen alleen regio's binnengaan of zoekresultaten zien met dezelfde inhoudscategorie als die zij zelf hebben gekozen in hun voorkeuren. + +Het kan enige tijd duren voordat deze wijziging zichtbaar is op de wereldkaart. + </notification> + <notification label="Beperk Duwen" name="HelpRegionRestrictPushObject"> + Deze instelling stelt de hele regio in op beperkte duwen permissies. +Indien aan gevinkt kunnen Inwoners alleen door hun zelf geduwd worden of door de perceel eigenaar. - <notification - - name="FriendOnline" - > -[FIRST] [LAST] is Online - </notification> +(Push (Duwen) verwijst naar de llPushObject() LSL functie) - <notification - - name="FriendOffline" - > -[FIRST] [LAST] is Offline - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Perceel Samenvoegen/Opsplitsen" name="HelpParcelChanges"> + Deze instelling stel in of percelen die niet van de estate eigenaar zijn kunnen worden samengevoegd of opgesplitst. - <notification - - name="AddSelfFriend" - > -U kunt uzelf niet als vriend toevoegen. - </notification> +Indien niet aan gevinkt: + * Alleen Estate eigenaren of beheerders kunnen percelen samenvoegen op opsplitsen. + * Zij kunnen alleen percelen samenvoegen of opsplitsen die eigendom zijn van de eigenaar of van een groep met de juiste bevoegdheden. - <notification - - name="UploadingAuctionSnapshot" - > -In-wereld en website foto's worden geüpload... -(Duurt ongeveer 5 minuten.) - </notification> +Indien aan gevinkt: + * Alle perceel eigenaren kunnen percelen samenvoegen of opsplitsen die zij bezitten. + * Voor percelen in Groep eigendom, kunnen alleen zij met de juiste rechten percelen samenvoegen of opsplitsen. - <notification - - name="UploadPayment" - > -U heeft L$[AMOUNT] betaald om te uploaden. - </notification> +Standaard: Ingeschakeld + </notification> + <notification label="Niet in Zoeken tonen" name="HelpRegionSearch"> + Deze optie aan vinken zal perceel eigenaren blokkeren hun perceel in Zoeken te tonen. - <notification - - name="UploadWebSnapshotDone" - > -Upload van website foto is gereed. - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Regio Volwassenen Gewijzigd" name="RegionMaturityChange"> + De Volwassen instelling voor deze regio is bijgewerkt. +Het kan enige tijd duren voordat de wijziging zichtbaar is op de Kaart. + </notification> + <notification label="Land Herverkoop" name="HelpRegionLandResell"> + Estate eigenaren en beheerders kunnen elk stuk land verkopen in eigendom van de Estate eigenaar. - <notification - - name="UploadSnapshotDone" - > -Upload van in-wereld foto is gereed. - </notification> +Indien deze optie niet is aan gevinkt, kunnen kopers hun land in deze regio niet verkopen. +Indien deze optie is aan gevinkt, kunnen kopers hun land in deze regio verkopen. - <notification - - name="TerrainDownloaded" - > -Terrain.raw gedownload - </notification> +Standaard: Niet toestaan + </notification> + <notification label="Scripts Uitschakelen" name="HelpRegionDisableScripts"> + Indien de sim prestaties slecht zijn, kan een script de oorzaak zijn. Open de Statistieken balk (Ctrl-Shift-1). Kijk naar de Simulator Fysieke FPS. Indien het lager is dan 45, open dan het Tijd paneel onderaan de Statistieken balk. Indien de Script Tijd 25 ms of hoger is, klik dan op de Top Scripts knop. U krijgt dan een naam en lokatie van scripts die mogelijk de slechte prestaties veroorzaken. - <notification - - name="GestureMissing" - > -Gebaar [NAME] mist in de database. - </notification> +Het aan vinken van Scripts Uitschakelen en vervolgens op de Toepassen knop drukken, zal tijdelijk alle scripts in deze regio uitschakelen. U zult dit mogelijk moeten doen om naar de lokatie te gaan van het 'top script'. Eenmaal aangekomen, onderzoek dan of het script het probleem veroorzaakt. U zult mogelijk de eigenaar willen contacteren of het object willen retourneren c.q. verwijderen. +Verwijder het vinkje van Scripts Uitschakelen en klik op Toepassen om scripts weer te reactiveren in de regio. - <notification - - name="UnableToLoadGesture" - > -Kan gebaar [NAME] niet laden. Probeer het a.u.b. opnieuw. - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Botsingen Uitschakelen" name="HelpRegionDisableCollisions"> + Indien de sim prestaties slecht zijn, kunnen fysieke objecten de oorzaak zijn. Open de Statistieken balk (Ctrl-Shift-1). Kijk naar de Simulator Fysieke FPS. Indien het lager is dan 45, open dan het Tijd paneel onderaan de Statistieken balk. Indien de Sim Tijd (Fysiek) 20 ms of hoger is, klik dan op de Toon Top Botsingen knop. U krijgt dan een naam en lokatie van de fysieke objecten die mogelijk de slecht prestaties veroorzaken. - <notification - - name="LandmarkMissing" - > -Landmarkering mist in de database. - </notification> +Het aan vinken van de Botsingen Uitschakelen knop en vervolgens op de Toepassen knop drukken, zal tijdelijk object-object botsingen uitschakelen. U zult dit mogelijk moeten doen om naar de lokatie te gaan van de 'top botsingen'. Eenmaal aangekomen, onderzoek dan het object. Botst het constant met andere objecten? U zult mogelijk de eigenaar willen contacteren of het object willen retourneren c.q. verwijderen. +Verwijder het vinkje van Botsingen Uitschakelen en klik op Toepassen om botsingen weer te reactiveren in de regio. - <notification - - name="UnableToLoadLandmark" - > -Kan landmarkering niet laden. Probeer het a.u.b. opnieuw. - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Fysiek Uitschakelen" name="HelpRegionDisablePhysics"> + Fysiek Uitschakelen is gelijkwaardig aan Botsingen Uitschakelen, alleen alle fysieke simulatie is uitgeschakeld. Dit betekend dat niet alleen alle objecten zullen stoppen met botsen, maar ook dat avatars zich niet meer kunnen bewegen. - <notification - - name="CapsKeyOn" - > -Uw Caps Lock toets staat aan. Aangezien dit effect heeft op het wachtwoord dat u intypt, zult u het wellicht willen uitzetten. - </notification> +Dit zou alleen gebruikt moeten worden als het uitschakelen van Botsingen niet genoeg prestatie winst geeft om een fysiek probleem of top botsingen te onderzoeken. - <notification - - name="NotecardMissing" - > -Notitiekaart mist in de database. - </notification> +Indien u klaar bent, wees er dan zeker van Fysiek weer in te schakelen, anders kunnen avatars zich niet meer bewegen. - <notification - - name="NotecardNoPermissions" - > -Onvoldoende permissies om de notitiekaart te bekijken. - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Top Botsingen" name="HelpRegionTopColliders"> + Toon een lijst van objecten van het grootste aantal potentiële object-object botsingen. +Deze objecten kunnen een trage prestatie veroorzaken. Selecteer Beeld > Statistieken Balk en kijk onder Simulator > Tijd > Sim Tijd (Fysiek) om te zien of meer dan 20 ms wordt gespendeerd aan fysiek. + </notification> + <notification label="Top Scripts" name="HelpRegionTopScripts"> + Toon een lijst van objecten die de meeste tijd besteden aan het uitvoeren van LSL scripts. +Deze objecten kunnen een trage prestatie veroorzaken. Selecteer Beeld > Statistieken Balk en kijk onder Simulator > Tijd > Script Tijd om te zien of meer dan 25 ms wordt gespendeerd aan scripts. + </notification> + <notification label="Herstart Regio" name="HelpRegionRestart"> + Herstart het server proces van de regio na een twee minuten waarschuwing. +Alle Inwoners van de regio zullen de verbinding kwijt raken. De regio zal alle gegevens bewaren en zou binnen 90 seconden weer operabel moeten zijn. - <notification - - name="RezItemNoPermissions" - > -Onvoldoende permissies om het object te rezzen. - </notification> +De regio herstarten zou de meeste prestatie problemen moeten verhelpen en zou normaal gesproken alleen gebruikt moeten worden indien aangegeven. + </notification> + <notification label="Water Hoogte" name="HelpRegionWaterHeight"> + Dit is de hoogte in meters waarop het water verschijnt. +Als deze instelling anders is dan 20 en u heeft water aan de rand van de wereld of u heeft 'ontbrekend' water, zal er een gat zichtbaar zijn. - <notification - - name="UnableToLoadNotecard" - > -Kan notitiekaart niet laden. Probeer het a.u.b. opnieuw. - </notification> +Standaard: 20 + </notification> + <notification label="Terrein Ophogen" name="HelpRegionTerrainRaise"> + Dit is de hoogte in meters dat perceel eigenaren hun terrein kunnen verhogen boven de standaard 'baked' terrein hoogte. - <notification - - name="ScriptMissing" - > -Script mist in de database. - </notification> +Standaard: 4 + </notification> + <notification label="Terrein Verlagen" name="HelpRegionTerrainLower"> + Dit is de hoogte in meters dat perceel eigenaren hun terrein kunnen verlagen onder de standaard 'baked' terrein hoogte. - <notification - - name="ScriptNoPermissions" - > -Onvoldoende permissies om het script te bekijken. - </notification> +Standaard: -4 + </notification> + <notification label="Upload RAW Terrein" name="HelpRegionUploadRaw"> + Deze knop upload een .RAW bestand naar de regio waar u zich bevindt. +Het bestand moet de juiste afmetingen hebben (RGB, 256x256) en 13 kanalen. +De beste manier om een terrein bestand te maken is het downloaden van een bestaand RAW bestand. Een goede eerste stap is om het rode kanaal (land hoogte) aan te passen en dat te uploaden. - <notification - - name="UnableToLoadScript" - > -Kan script niet laden. Probeer het a.u.b. opnieuw. - </notification> +De upload kan tot 45 seconden in beslag nemen. Bedenk dat het uploaden van een terrein bestand de objecten reeds aanwezig op het land *niet* zal verplaatsen, alleen het terrein zelf en de permissies geassocieerd met de percelen. Dit kan resulteren in objecten die ondergronds gaan. - <notification - - name="IncompleteInventory" - > -De complete inhoud die u aanbiedt is nog niet lokaal beschikbaar. Probeer die items over een minuut nogmaals aan te bieden. - </notification> +Voor meer informatie over het wijzigen van de hoogte velden, raadpleeg F1 Help. + </notification> + <notification label="Download RAW Terrein" name="HelpRegionDownloadRaw"> + Deze knop download een bestand welke de hoogte veld gegevens, perceel afmetingen, perceel te koop status en sommige perceel permissies bevat voor deze regio. +Indien u het bestand opent in een programma als Photoshop, moet u de document afmetingen opgeven, welk RGB, 256x256 met 13 kanalen is. Dit terrein bestand kan op geen enkele andere manier worden geopend. - <notification - - name="CannotModifyProtectedCategories" - > -U kunt geen beschermde categorieën wijzigen. - </notification> +Voor meer informatie over het wijzigen van de hoogte velden, raadpleeg F1 Help. + </notification> + <notification label="Gebruik Estate Zon" name="HelpRegionUseEstateSun"> + Dit aan vinken zorgt er voor dat de zon positie overeen komt met de zon positie in de rest van het Estate. - <notification - - name="CannotRemoveProtectedCategories" - > -U kunt geen beschermde categorieën verwijderen. - </notification> +Standaard: Ingeschakeld + </notification> + <notification label="Vaste Zon" name="HelpRegionFixedSun"> + Dit aan vinken stelt de zon in op de positie van de Fase schuif knop en stopt het verder bewegen van de zon. - <notification - - name="OfferedCard" - > -U heeft een visitekaartje aangeboden aan [FIRST] [LAST] - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Bake Terrein" name="HelpRegionBakeTerrain"> + Deze knop slaat de huidige vorm van het terrein op als nieuwe standaard voor de regio. Eenmaal baked, kan het land terugkeren naar de opgeslagen vorm wanneer u of anderen gebruik maken van de Wijzig Terrein 'Terugkeer' optie. Het baked terrein is ook het uitgangspunt voor de terrein verhogings- en verlagingslimieten. + </notification> + <notification label="Estate Beheerders" name="HelpEstateEstateManager"> + Een Estate Beheerder is een Inwoner aan wie u de controle over de regio en estate instellingen heeft uitbesteed. De Estate Beheerder kan de instellingen wijzigen in deze panels, behalve het uploaden, downloaden en terrein bakken. In bijzonder kunnen zij Inwoners toestaan of verbannen van het Estate. - <notification - - name="UnableToBuyWhileDownloading" - > -Niet mogelijk te kopen terwijl objectdata wordt gedownload. Probeer het alstublieft opnieuw. - </notification> +Estate Beheerders kunnen alleen toegevoegd of verwijderd worden door de eigenaar van het Estate, niet door elkaar. Gebruik alstublieft alleen Inwoners die u kunt vertrouwen als Estate Beheerders, omdat uiteindelijk u verantwoordelijk bent voor hun acties. + </notification> + <notification label="Gebruik Globale Tijd" name="HelpEstateUseGlobalTime"> + Dit aan vinken zorgt ervoor dat de zon in uw estate dezelfde positie volgt als in Linden-eigendom 'mainland' Estates. - <notification - - name="UnableToLinkWhileDownloading" - > -Niet mogelijk om te koppelen terwijl objectdata wordt gedownload. Probeer het alstublieft opnieuw. - </notification> +Standaard: aan + </notification> + <notification label="Vaste Zon" name="HelpEstateFixedSun"> + Dit aan vinken stelt de zon in op de positie van de Fase schuif knop en stopt het verder bewegen van de zon. + </notification> + <notification label="Publieke Toegang" name="HelpEstateExternallyVisible"> + Dit aan vinken geeft aan dat Inwoners die in andere Estates zijn, deze Estate kunnen bezoeken zonder op de Toegangs lijst te staan. - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -Kan geen objecten van meerdere eigenaren op hetzelfde moment kopen. Selecteer alstublieft een enkel object. - </notification> +Standaard: Ingeschakeld + </notification> + <notification label="Direct Teleporteren Toestaan" name="HelpEstateAllowDirectTeleport"> + Indien aan gevinkt staat het Inwoners toe om direct te Teleporteren naar elke plek in uw Estate. Indien niet aan gevinkt kunnen Inwoners Teleporteren naar de dichtstbijzijnde telehub. - <notification - - name="ObjectNotForSale" - > -Object lijkt niet te koop. - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Toegang Toestaan" name="HelpEstateAllowResident"> + Toegang tot dit Estate zal gelimiteerd zijn tot Inwoners in deze lijst en onderstaande groepen. Deze instelling is allen beschikbaar indien Publieke Toegang niet is aan gevinkt. + </notification> + <notification label="Groeps Toegang Toestaan" name="HelpEstateAllowGroup"> + Toegang tot dit Estate zal gelimiteerd worden tot groepen in deze lijst en elke Inwoner bovenaan. Deze Instelling is alleen beschikbaar als Publieke Toegang niet is aan gevinkt. + </notification> + <notification label="Misbruik Email Adres" name="HelpEstateAbuseEmailAddress"> + Dit instellen met een geldig email adres zal misbruik rapporten op dit Estate doen versturen naar dat adres. +Indien u het leeg laat, zullen misbruik rapporten alleen verzonden worden naar Linden Lab. + </notification> + <notification label="Toegang Weigeren" name="HelpEstateBanResident"> + Inwoners in deze lijst zijn de toegang geweigerd in uw Estate, ongeacht elke andere instelling. + </notification> + <notification label="Voice Chat Toestaan" name="HelpEstateVoiceChat"> + Percelen in dit Estate kunnen hun eigen Voice kanalen hebben waarin Inwoners die in de buurt van elkaar zijn, elkaar kunnen horen en met elkaar kunnen praten. - <notification - - name="EnteringGodMode" - > -God modus binnengaan, niveau [LEVEL] - </notification> +Standaard: Uitgeschakeld + </notification> + <notification label="Voice Versie Ongelijkheid" name="VoiceVersionMismatch"> + Deze versie van Second Life is niet compatibel met de Voice spraak optie in deze regio. Om Voice Chat goed te laten functioneren, moet u Second Life bijwerken. + </notification> + <notification label="Estate Convenant" name="HelpEstateCovenant"> + Het instellen van een Estate Convenant maakt het u mogelijk om percelen in het Estate te verkopen. Indien de Convenant niet is ingesteld kunt u het niet verkopen. Een notitiekaart voor uw Convenant kan leeg zijn indien u geen regels wilt instellen, advies aan kopers wilt geven of iets anders in relatie tot het land wilt mededelen voor als men het koopt. - <notification - - name="LeavingGodMode" - > -God modus verlaten, niveau [LEVEL] - </notification> +Een Convenant kan gebruikt worden als u regels wilt mededelen, richtlijnen, culturele informatie of simpelweg uw eigen verwachtingen aan prospect kopers. +Dit kan zoneren bevatten, bouw reglementen, betaal opties of elke andere vorm van informatie waarvan u het belangrijk vind dat de nieuwe eigenaar het heeft gezien en mee akkoord is gegaan alvorens het te kopen. - <notification - - name="CopyFailed" - > -Kopiëren mislukt omdat u geen kopieerpermissie bezit. - </notification> +De koper moet instemmen met de Convenant middels het aan vinken van het kadertje alvorens zij de aankoop af kunnen ronden. Estate Overeenkomsten zijn altijd zichtbaar in het Over Land dialoog venster voor elk perceel dat er eentje ingesteld heeft staan. + </notification> + <notification label="Kan Geen Objecten Kopen" name="BuyObjectOneOwner"> + Kan geen objecten van verschillende eigenaren tegelijk kopen. - <notification - - name="InventoryAccepted" - > -[NAME] heeft uw inventarisaanbod geaccepteerd. - </notification> +Kies alstublieft slechts één object en probeer het opnieuw. + </notification> + <notification label="Kan Inhoud Niet Kopen" name="BuyContentsOneOnly"> + Kan geen inhoud kopen van meer dan één object tegelijk. - <notification - - name="InventoryDeclined" - > -[NAME] heeft uw inventarisaanbod afgewezen. - </notification> +Kies alstublieft slechts één object en probeer het opnieuw. + </notification> + <notification label="Kan Inhoud Niet Kopen" name="BuyContentsOneOwner"> + Kan geen inhoud kopen van verschillende eigenaren tegelijk. - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> +Kies alstublieft slechts één object en probeer het opnieuw. + </notification> + <notification name="BuyOriginal"> + Koop originele object van [OWNER] voor L$[PRICE]? +U zult de eigenaar worden van dit object. +U kunt het dan: + Wijzigen: [MODIFYPERM] + Kopiëren: [COPYPERM] + Verkopen of Weggeven: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="BuyOriginalNoOwner"> + Koop originele object voor L$[PRICE]? +U zult de eigenaar worden van dit object. +U kunt het dan: + Wijzigen: [MODIFYPERM] + Kopiëren: [COPYPERM] + Verkopen of Weggeven: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="BuyCopy"> + Koop een kopie van [OWNER] voor L$[PRICE]? +Het object zal gekopieerd worden naar uw inventaris. +U kunt het dan: + Wijzigen: [MODIFYPERM] + Kopiëren: [COPYPERM] + Verkopen of Weggeven: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="BuyCopyNoOwner"> + Koop een kopie voor L$[PRICE]? +Het object zal gekopieerd worden naar uw inventaris. +U kunt het dan: + Wijzigen: [MODIFYPERM] + Kopiëren: [COPYPERM] + Verkopen of Weggeven: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="BuyContents"> + Koop de inhoud van [OWNER] voor L$[PRICE]? +De inhoud zal naar uw inventaris gekopieerd worden. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="BuyContentsNoOwner"> + Koop de inhoud voor L$[PRICE]? +De inhoud zal naar uw inventaris gekopieerd worden. + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmPurchase"> + Deze transactie zal: +[ACTION] - <notification - - name="CallingCardAccepted" - > -Uw visitekaartje is geaccepteerd. - </notification> +Weet u zeker dat u verder wilt gaan met deze aankoop? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + Deze transactie zal: +[ACTION] - <notification - - name="CallingCardDeclined" - > -Uw visite kaart is afgewezen. - </notification> +Weet u zeker dat u verder wilt gaan met deze aankoop? +Voer alstublieft opnieuw uw wachtwoord in en klik op OK. + <form name="form"> + <input name="message" type="password"/> + <button name="ConfirmPurchase" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="SetPickLocation"> + Opmerking: - <notification - - name="TeleportToLandmark" - > -Nu u het mainland bereikt heeft, kunt u teleporteren naar locaties als '[NAME]' door op de Inventaris knop rechtsonder in uw scherm te klikken en dan de Landmarkeringen map te selecteren. Dubbelklik op de landmarkering en klik op Teleport om ernaartoe te reizen. - </notification> +U heeft de locatie van deze Favoriet bijgewerkt, maar andere details blijven ongewijzigd. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + U heeft 'niet kopieerbare' items geselecteerd. +Deze items zullen worden verplaatst naar uw inventaris, niet gekopieerd. - <notification - - name="TeleportToPerson" - > -Nu u het mainland bereikt heeft, kunt u contact opnemen met inwoners als '[NAME]' door op de Inventaris knop rechtsonder in uw scherm te klikken en dan de Visitekaartjes map te selecteren. Dubbelklik op het visitekaartje, klik op Instant Message en type een bericht. - </notification> +Verplaats de inventaris item(s)? + <usetemplate ignoretext="Wanneer niet kopieerbare inventaris uit objecten verplaatst wordt" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromScriptedObject"> + U heeft 'niet kopieerbare' inventaris items geselecteerd. +Deze items zullen verplaatst worden naar uw inventaris, niet gekopieerd. +Omdat deze objecten scripts bevatten, kan het verplaatsen naar uw inventaris er voor zorgen dat het object niet meer werkt. +inventaris item(s) verplaatsen? + <usetemplate ignoretext="Indien verplaatsen 'niet kopieerbare' inventaris van gescripte objecten" name="okcancelignore" notext="Annuleren" yestext="OK"/> + </notification> + <notification name="ClickActionNotPayable"> + Waarschuwing: Het Betaal Object aan klik actie is ingesteld, maar het zal alleen werken als er een script is toegevoegd met een money() event. + <form name="form"> + <ignore name="ignore" text="Indien instellen 'Betaal' op objecten zonder money() events"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + Er zitten geen items in dit object die u kunt kopiëren. + </notification> + <notification name="WebLaunchAccountHistory"> + Naar de Second Life web site gaan om uw account geschiedenis te bekijken? + <usetemplate ignoretext="Bij laden van de account geschiedenis webpagina" name="okcancelignore" notext="Annuleren" yestext="Ga naar pagina"/> + </notification> + <notification name="ClickOpenF1Help"> + De Second Life Support Web site bezoeken? + <usetemplate ignoretext="Bij bezoeken van de Second Life Support Website." name="okcancelignore" notext="Annuleren" yestext="Ga"/> + </notification> + <notification name="ConfirmQuit"> + Weet u zeker dat u wilt afsluiten? + <usetemplate ignoretext="Bij afsluiten Second Life." name="okcancelignore" notext="Doorgaan" yestext="Afsluiten"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + Gebruik dit gereedschap om overtredingen van de Voorwaarden voor Service (Terms of Service) en Gemeenschaps Standaarden (Community Standards)te rapporteren. Zie: - <notification - - name="CantSelectLandFromMultipleRegions" - > -Kan geen land selecteren over servergrenzen. -Probeer een kleiner stuk land te selecteren. - </notification> +http://secondlife.com/corporate/tos.php +http://secondlife.com/corporate/cs.php - <notification - - name="GroupVote" - > -[NAME] heeft voorgesteld om te stemmen over: -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="Stem Nu"/> - <button - - name="Later" - text="Later"/> - </form> - </notification> +Alle gerapporteerde misbruiken van de Voorwaarden voor Service en Gemeenschaps Standaarden zullen worden onderzocht en opgelost. U kunt de incident oplossing in de Incidenten Rapportage zien op: - <notification - - name="SystemMessage" - > -[MESSAGE] - </notification> +http://secondlife.com/support/incidentreport.php + </notification> + <notification name="HelpReportAbuseEmailEO"> + BELANGRIJK: Dit rapport zal naar de eigenaar van deze regio gaan en niet naar Linden Lab! - <notification - - name="EventNotification" - > -Evenement Bericht: +Als een service aan Inwoners en bezoekers heeft de eigenaar van deze regio er voor gekozen om rapporten vanuit deze regio zelf te ontvangen en af te handelen. Linden Lab zal geen onderzoek doen naar rapporten die u indient vanaf deze locatie. -[NAME] -[DATE] - <form name="form"> - <button - - name="Teleport" - text="Teleport"/> - <button - - name="Description" - text="Omschrijving"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> +De regio eigenaar zal de rapporten afhandelen op basis van de regels geldend voor deze regio zoals weergegeven in het Estate Convenant (Bekijk Convenants door naar Wereld te gaan in het menu en te kiezen voor Over Land). - <notification - - name="TransferObjectsHighlighted" - > -Alle objecten op dit perceel die zullen worden overgedragen aan de koper van dit perceel zijn nu opgelicht. +De afhandeling van dit rapport is alleen van toepassing op deze regio. +Toegang van Inwoners tot andere gebieden van Second Life zullen niet beïnvloed worden door de uitkomst van dit rapport. Alleen Linden Lab kan de toegang tot geheel Second Life beperken. + </notification> + <notification name="HelpReportBug"> + Gebruik dit gereedschap *alleen* voor het rapporteren van technische opties die niet functioneren als verwacht. Geef alstublieft zoveel mogelijk technische details als mogelijk. U kunt de automatische-antwoord email gebruiken om op te reageren om aanvullende gegevens toe te voegen aan uw rapport. -* Bomen en grassen die worden overgedragen zijn niet opgelicht. - <form name="form"> - <button - - name="Done" - text="Gereed"/> - </form> - </notification> +Alle bug rapporten worden onderzocht en ingeschat. Er zal geen antwoord per email worden verzonden. - <notification - - name="DeactivatedGesturesTrigger" - > -Deactiveren van gebaren met dezelfde trigger: -[NAMES] - </notification> +Als u technische problemen heeft, neem dan contact op met Support op: +http://secondlife.com/community/support.php - <notification - - name="NoQuickTime" - > -De QuickTime software van Apple schijnt niet op uw systeem geïnstalleerd te zijn. -Indien u streaming media wilt zien op percelen die dit ondersteunen, dient u naar de QuickTime webpagina te gaan (http://www.apple.com/QuickTime) en de QuickTime Player te installeren. - </notification> +Opmerking: Onvolledige rapporten zullen niet worden onderzocht. + </notification> + <notification name="HelpReportAbuseSelectCategory"> + Selecteer alstublieft een categorie voor dit misbruik rapport. + +Het selecteren van een categorie helpt ons met het archiveren en verwerken van misbruik rapporten. + </notification> + <notification name="HelpReportBugSelectCategory"> + Selecteer alstublieft een categorie voor dit bug rapport. + +Het selecteren van een categorie helpt ons met het archiveren en verwerken van bug rapporten. + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + Geef alstublieft een naam op van de misbruiker. + +Een accurate waarde opgeven helpt ons met het archiveren en verwerken van misbruik rapporten. + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + Geef alstublieft een locatie op waar het misbruik plaats vond. + +Een accurate waarde opgeven helpt ons met het archiveren en verwerken van misbruik rapporten. + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + Geef alstublieft een korte samenvatting op van het misbruik dat plaats vond. + +Een accurate waarde opgeven helpt ons met het archiveren en verwerken van misbruik rapporten. + </notification> + <notification name="HelpReportBugSummaryEmpty"> + Geef alstublieft een korte samenvatting van de bug. + +Een accurate samenvatting opgeven helpt ons met het archiveren en verwerken van bug rapporten. + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + Geef alstublieft een gedetailleerde omschrijving van het misbruik dat plaats vond. + +Wees zo specifiek als mogelijk, inclusief namen en details van het incident waarover u rapporteert. + +Het opgeven van een accurate omschrijving helpt ons met het archiveren en verwerken van misbruik rapporten. + </notification> + <notification name="HelpReportBugDetailsEmpty"> + Geef alstublieft een gedetailleerde omschrijving van de bug. + +Wees zo specifiek als mogelijk, inclusief stappen om de bug te reproduceren, indien mogelijk. + +Het opgeven van een accurate omschrijving helpt ons met het archiveren en verwerken van misbruik rapporten. + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + Beste Inwoner, + +Het lijkt er op dat u intellectueel eigendoms misbruik rapporteert. Wees er alstublieft van overtuigd dat u dit correct rapporteert: + +(1) Het Misbruik Proces. U kunt een misbruik rapport indienen als u er van overtuigd bent dat een Inwoner het Second Life permissie systeem uitbuit, bijvoorbeeld door gebruik van CopyBot of soortgelijke gereedschappen, daarmee de intellectuele eigendoms rechten overtredend. Het Abuse Team onderzoekt en zal passende maatregelen uitvaardigen tegen gedrag dat de Second Life Gemeenschaps Standaarden overtreedt. Echter, het Abuse Team zal geen actie ondernemen en niet reageren op verzoeken om inhoud te verwijderen uit de Second Life wereld. + +(2) Het DMCA of Inhoud Verwijder Proces. Voor een verzoek tot verwijdering van inhoud in Second Life, MOET u een geldige berichtgeving van misbruik indienen zoals voorzien in onze DMCA beleid op http://secondlife.com/corporate/dmca.php. + +Indien u nog steeds door wilt gaan met het misbruik proces, sluit dan alstublieft dit venster en maak het indienen van uw rapport af. U zult mogelijk een specifieke catagorie moeten kiezen 'CopyBot of Permissie Uitbuiting'. + +Dank U, +Linden Lab + </notification> + <notification name="FailedRequirementsCheck"> + De volgende vereiste componenten ontbreken van [FLOATER]: +[COMPONENTS] + </notification> + <notification label="Vervang Bestaande Bevestiging" name="ReplaceAttachment"> + Er is al een object bevestigd op dit punt aan uw lichaam. +Wilt u dit vervangen met het geselecteerde object? + <form name="form"> + <ignore name="ignore" save_option="true" text="Bij vervangen van bestaande bevestigingen"/> + <button name="Yes" text="OK"/> + <button name="No" text="Annuleren"/> + </form> + </notification> + <notification label="Niet Storen Modus Waarschuwing" name="BusyModePay"> + U bevind zich in Niet Storen Modus, hetgeen inhoudt dat u geen enkele items kunt ontvangen voor deze betaling. + +Wilt u de Niet Storen Modus verlaten voordat u deze transactie completeert? + <form name="form"> + <ignore name="ignore" save_option="true" text="Bij betalen van een persoon of object in Niet Storen modus"/> + <button name="Yes" text="OK"/> + <button name="No" text="Annuleren"/> + </form> + </notification> + <notification name="ConfirmEmptyTrash"> + Weet u zeker dat u de inhoud van uw vuilnisbak map permanent wilt verwijderen? + <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? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Ja"/> + </notification> + <notification name="ConfirmClearCookies"> + Weet u zeker dat u al uw cookies wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Ja"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + Weet u zeker dat u uw lijst met al de opgeslagen URL's wilt verwijderen? + <usetemplate name="okcancelbuttons" notext="Annuleren" yestext="Ja"/> + </notification> + <notification name="ConfirmEmptyLostAndFound"> + Weet u zeker dat u de inhoud van de Verloren en Gevonden map permanent wilt verwijderen? + <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: +[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"/> + </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: + +Shaders: In of uitschakelen van de verschillende typen pixel shaders. + +Reflectie Detail: 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. - <notification - - name="OwnedObjectsReturned" - > -De objecten die uw eigendom zijn op het geselecteerde perceel zijn geretourneerd naar uw inventaris. - </notification> +Zicht bereik: Beïnvloed tot hoe ver objecten vanaf uw zichtpunt worden weergegeven in de scène. - <notification - - name="OtherObjectsReturned" - > -De objecten op het geselecteerde perceel dat het eigendom is van [FIRST] [LAST], zijn geretourneerd naar zijn of haar inventaris. - </notification> +Maximaal Aantal Particles: Stelt het maximaal aantal particles in die u tegelijk kunt zien op uw scherm. - <notification - - name="OtherObjectsReturned2" - > -De objecten op het geselecteerde perceel dat het eigendom is van inwoner '[NAME]', zijn geretourneerd naar hun eigenaar. - </notification> +Nabewerking Kwaliteit: Stelt de resolutie in waarmee Gloei wordt weergegeven. - <notification - - name="GroupObjectsReturned" - > -De objecten op het geselecteerde perceel dat gedeeld is met de groep [GROUPNAME] zijn geretourneerd naar de inventaris van hun eigenaar. -Overdraagbare objecten die eigendom zijn van de groep zijn geretourneerd naar hun voormalige eigenaren. -Niet-overdraagbare objecten die eigendom zijn van de groep zijn verwijderd. - </notification> +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. - <notification - - name="UnOwnedObjectsReturned" - > -De objecten op het geselecteerde perceel die NIET uw eigendom zijn, zijn geretourneerd naar hun eigenaren. - </notification> +Licht Detail: Bepaald welke typen lichten u wenst weer te geven. - <notification - - name="NotSafe" - > -Op dit land is letsel ingeschakeld ('niet veilig'). -U kunt hier letsel oplopen. Indien u sterft, zult u naar uw thuis locatie worden geteleporteerd. - </notification> +Terrein Detail: Stelt de hoeveelheid detail in die u wilt zien voor het terrein textuur. + </notification> + <notification name="WLSavePresetAlert"> + Wilt u de opgeslagen voor instellingen overschrijven? + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="WLDeletePresetAlert"> + Wilt u [SKY] verwijderen? + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="WLNoEditDefault"> + U kunt de standaard instellingen niet wijzigen of verwijderen. + </notification> + <notification name="WLMissingSky"> + Dit dag cyclus bestand heeft een ontbrekend lucht bestand: [SKY]. + </notification> + <notification name="PPSaveEffectAlert"> + Voorbewerkingeffecten bestaan. Wilt u ze alsnog overschrijven? + <usetemplate name="okcancelbuttons" notext="Nee" yestext="Ja"/> + </notification> + <notification name="HelpEditSky"> + Wijzig de WindLight schuif knoppen en maak en sla een set van luchten op. + </notification> + <notification name="HelpEditDayCycle"> + Bepaald de luchten te gebruiken gedurende de dag. + </notification> + <notification name="EnvSettingsHelpButton"> + Deze instelling bepalen hoe de omgeving er uit ziet op uw computer. Uw grafische kaart zal grafische shaders moeten ondersteunen om toegang te krijgen tot alle instellingen. - <notification - - name="NoFly" - > -Op dit land is vliegen uitgeschakeld ('niet vliegen'). -U kunt hier niet vliegen. - </notification> +Wijzig de "Tijd van de Dag" schuif knop om de fase van de dag lokaal in de viewer aan te passen. - <notification - - name="PushRestricted" - > -Dit land is 'Niet Duwen'. -U kunt geen anderen duwen, tenzij u het land bezit. - </notification> +Wijzig de "Wolken Dichtheid" schuif knop om de hoeveelheid wolken die de lucht bedekken in te stellen. - <notification - - name="NoVoice" - > -Op dit land is voice uitgeschakeld. - </notification> +Kies een kleur in de "Water Kleur" kleuren kiezer om de kleur van het water aan te passen. - <notification - - name="NoBuild" - > -Op dit land is bouwen uitgeschakeld ('niet bouwen'). -U kunt hier geen objecten creëren. - </notification> +Wijzig de "Water Mist" schuif knop om de dichtheid van de mist onder water in te stellen. - <notification - - name="ScriptsStopped" - > -Een beheerder heeft scripts in deze regio tijdelijk gestopt. - </notification> +Klik op "Gebruik Estate Tijd" om de tijd van de dag te herstellen naar de huidige tijd en die te volgen. - <notification - - name="ScriptsNotRunning" - > -In deze regio worden geen scripts uitgevoerd. - </notification> +Klik op "Geavanceerde Lucht" om de editor op te roepen voor geavanceerde instellingen voor de lucht. - <notification - - name="NoOutsideScripts" - > -Op dit land zijn externe scripts uitgeschakeld (geen externe scripts). -Geen scripts zullen worden uitgevoerd, behalve scripts die toebehoren aan de landeigenaar. - </notification> +Klik op "Geavanceerd Water" om de editor op te roepen voor geavanceerde instellingen voor water. + </notification> + <notification name="HelpDayCycle"> + De Dag Cyclus Editor geeft u controle over de lucht gedurende de Second Life's dag/nacht cyclus. Dit is de cyclus die gebruikt wordt in de Basis Omgeving Editor's Tijd van de Dag schuif knop. - <notification - - name="ClaimPublicLand" - > -Kan alleen publiek land claimen in de regio waar u aanwezig bent. - </notification> +De Dag Cyclus Editor werkt beter met het instellen van gemarkeerde frames. Dit zijn nodes (weergegeven als grijze blips in de tijd weergave) die Hemel voorinstelling met zich geassocieerd hebben. Als de Tijd van de Dag voortschrijdt, "animeert" de WindLight Hemel als het interpoleert tussen de gemarkeerde frames. - <notification - - name="ObjectGiveItem" - > -Een object genaamd [OBJECTFROMNAME], eigendom van [FIRST] [LAST], heeft u een [OBJECTTYPE] genaamd [OBJECTNAME] gegeven. - <form name="form"> - <button - - name="Keep" - text="Behouden"/> - <button - - name="Discard" - text="Afwijzen"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> +De gele pijlen boven de tijdlijn representeert uw huidige zicht, gebaseerd op de Tijd van de Dag. Klik en sleep deze om te zien hoe uw dag zal animeren. U kunt gemarkeerde frames toe voegen of verwijderen middels het indrukken van de Frame Toevoegen of Frame Verwijderen knoppen, rechts van de tijdlijn. - <notification - - name="ObjectGiveItemUnknownUser" - > -Een object genaamd [OBJECTFROMNAME], eigendom van (een onbekende gebruiker), heeft u een [OBJECTTYPE] genaamd [OBJECTNAME] gegeven. - <form name="form"> - <button - - name="Keep" - text="Behouden"/> - <button - - name="Discard" - text="Afwijzen"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> +U kunt de tijds positie van een gemarkeerd frame instellen door het te slepen over de tijdlijn of middels het handmatig invullen van de Gemarkeerde Frame Instellingen. Binnen de Gemarkeerde Frame Instellingen krijgt u de mogelijkheid het gemarkeerde frame te associëren met de respectievelijke WindLight voorinstelling. - <notification - - name="UserGiveItem" - > -[NAME] heeft u een [OBJECTTYPE] genaamd '[OBJECTNAME]' gegeven. - <form name="form"> - <button - - name="Keep" - text="Behouden"/> - <button - - name="Discard" - text="Afwijzen"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> +De lengte van de Cyclus bepaald de totale tijdsduur van een "dag". Stelt u dit in op een lage waarde (bijv. twee minuten) betekend dat uw volledig 24 uurs tijdlijn zal animeren in slechts twee minuten! Als u tevreden bent met uw tijdlijn en gemarkeerde frame cyclus, gebruik dan de Start en Stop knoppen om het resultaat voor te beschouwen. Onthoud dat u ook de gele tijd indicator pijl boven de tijdlijn kunt bewegen om de animatie cyclus interactief te bekijken. Het gebruik van de Estate Tijd knop zal de lengte en tijd van uw dag synchroniseren met de Estate's dag cyclus. - <notification - - name="GodMessage" - > -[NAME] -[MESSAGE] - </notification> +Als u tevreden bent met uw Dag Cyclus, kunt het opslaan en laden met de Test Dag Opslaan en Laad Test Dag knoppen. Merk op, dat wij momenteel slechts één Dag Cyclus toestaan. + </notification> + <notification name="HelpBlueHorizon"> + Gebruik de Rood/Groen/Blauw schuif knoppen om de kleur van de hemel aan te passen. U kunt de Intensiteit (I) schuif knop gebruiken om alle drie de schuif knoppen tegelijk te bewegen. + </notification> + <notification name="HelpHazeHorizon"> + Nevel Horizon is één van de meest handige parameters voor de algehele belichting in de scène. Het is effectief om de vele belichting instellingen te simuleren, zoals wit-vlakken van de zon en donkere gesloten iris instellingen. + </notification> + <notification name="HelpBlueDensity"> + Blauw Dichtheid beïnvloed de algehele kleur verzadiging van de hemel en mist. Indien u de Intensiteit (I) schuif knop naar rechts schuift, zullen de kleuren lichter en sprekender worden. Indien u het geheel naar links schuift, worden de kleuren doffer, uiteindelijk vervagend naar zwart en wit. Als u de hemel kleur nauwkeurig wilt uitbalanceren, kunt u de individuele elementen van verzadiging instellen door gebruik van de Rood/Groen/Blauw (RGB) schuif knoppen. + </notification> + <notification name="HelpHazeDensity"> + Nevel Dichtheid bepaald de hoeveelheid dofheid, grijze nevel in de atmosfeer. Het is effectief om scènes met veel rook of zelf gemaakte vervuiling te simuleren. Het is ook effectief voor het simuleren van nevel en mist. + </notification> + <notification name="HelpDensityMult"> + De Dichtheid Vermeerderaar kan gebruikt worden om de algehele dichtheid van de atmosfeer te beïnvloeden. +Bij lagere instelling creëert het een gevoel van "dunne lucht" en met hogere instellingen een dik zwaar smog effect. + </notification> + <notification name="HelpDistanceMult"> + Stelt de WindLight's waargenomen afstand in. Een waarde van nul stopt de invloed van WindLight op terrein en objecten. Waarden groter dan 1 simuleren grotere afstanden voor dikkere atmosferische effecten. + </notification> + <notification name="HelpMaxAltitude"> + Maximale Hoogte bepaald de hoogte calculaties die WindLight uitvoert bij het berekenen van de atmosferische belichting. Later op de dag is het handig om de "diepte" van de zonsondergang weergave in te stellen. + </notification> + <notification name="HelpSunlightColor"> + Stelt de kleur en intensiteit in van direct licht in de scène. + </notification> + <notification name="HelpSunAmbient"> + Stelt de kleur en intensiteit in van het omgevings atmosferische licht in de scène. + </notification> + <notification name="HelpSunGlow"> + De Afmeting schuif knop stelt de afmeting van de zon in. +De Focus schuif knop bepaald de wazigheid van de zon aan de hemel. + </notification> + <notification name="HelpSceneGamma"> + Wijzigt de verdeling van licht op het scherm in licht of donker. + </notification> + <notification name="HelpStarBrightness"> + Wijzigt de helderheid van sterren aan de hemel. + </notification> + <notification name="HelpTimeOfDay"> + Bepaald de locatie van de zon aan de hemel. +Gelijkwaardig aan elevatie. + </notification> + <notification name="HelpEastAngle"> + Bepaald de locatie van de zon aan de hemel. +Gelijkwaardig aan azimut. + </notification> + <notification name="HelpCloudColor"> + Wijzigt de kleur van de wolken. Het is algemeen aanbevolen deze wit-achtig te houden, maar hé, heb plezier als u dit wilt. + </notification> + <notification name="HelpCloudDetail"> + Bepaald het detail plaatje als laag bovenop het basis wolken plaatje. X en Y bepalen de positie. D (Dichtheid) bepaald hoe wollig of verspreid de wolken verschijnen. + </notification> + <notification name="HelpCloudDensity"> + Geeft u de mogelijkheid de positie van wolken met de X en Y schuif knoppen in te stellen en hoe dicht ze zijn met de D schuif knop. + </notification> + <notification name="HelpCloudCoverage"> + Bepaald hoeveel de wolken de hemel bedekken. + </notification> + <notification name="HelpCloudScale"> + Bepaald de schaal van het wolken plaatje op de hemelboog. + </notification> + <notification name="HelpCloudScrollX"> + Bepaald de snelheid van de wolken terwijl zij in X richting bewegen. + </notification> + <notification name="HelpCloudScrollY"> + Bepaald de snelheid van de wolken terwijl zij in Y richting bewegen. + </notification> + <notification name="HelpClassicClouds"> + Vink dit aan voor weergave van Second Life's oudere klassieke wolken als toevoeging op WindLight's wolken. + </notification> + <notification name="HelpWaterFogColor"> + Kiest de kleur van de onder water nevel. + </notification> + <notification name="HelpWaterFogDensity"> + Bepaald hoe dicht de water nevel is en hoe ver u kunt zien onder water. + </notification> + <notification name="HelpUnderWaterFogMod"> + Past het effect aan van de Nevel Dichtheid Exponent om zo te bepalen hoe ver uw avatar onder water kan zien. + </notification> + <notification name="HelpWaterGlow"> + Bepaald hoeveel het oppervlak van het water gloeit. + </notification> + <notification name="HelpWaterNormalScale"> + Bepaald de schaling van de drie wavelets (golf patronen) die samen water vormen. + </notification> + <notification name="HelpWaterFresnelScale"> + Bepaald hoeveel licht er wordt gereflecteerd onder verschillende hoeken. + </notification> + <notification name="HelpWaterFresnelOffset"> + Bepaald de hoeveelheid licht intensiteit welke wordt gereflecteerd. + </notification> + <notification name="HelpWaterScaleAbove"> + Bepaald hoeveel licht er wordt weerkaatst wanneer van bovenop het water oppervlak gezien. + </notification> + <notification name="HelpWaterScaleBelow"> + Bepaald hoeveel licht er wordt weerkaatst wanneer van onder het water oppervlak gezien. + </notification> + <notification name="HelpWaterBlurMultiplier"> + Bepaald hoe golven en reflectie worden ge mixed. + </notification> + <notification name="HelpWaterNormalMap"> + Bepaald welke Normaal map gelaagd is over het water om de reflectie/weerkaatsing te bepalen. + </notification> + <notification name="HelpWaterWave1"> + Bepaald waar en hoe snel de grote schaal versie van de Normaal map beweegt in X en Y richting. + </notification> + <notification name="HelpWaterWave2"> + Bepaald waar en hoe snel de kleine schaal versie van de Normaal map beweegt in X en Y richting. + </notification> + <notification name="NewSkyPreset"> + Geef een naam op voor de nieuwe lucht. + <form name="form"> + <input name="message" type="text"> + Nieuwe Voorinstelling + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + Voorinstelling bestaat al! + </notification> + <notification name="NewWaterPreset"> + Geef een naam voor de nieuwe voorinstelling van water. + <form name="form"> + <input name="message" type="text"> + Nieuwe Voorinstelling + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + Voorinstelling bestaat al! + </notification> + <notification name="WaterNoEditDefault"> + u kunt de standaard voorinstelling niet wijzigen of verwijderen. + </notification> + <notification name="ChatterBoxSessionStartError"> + Kan geen nieuwe chat sessie starten met [RECIPIENT]. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + Uw chat sessie met [NAME] zal moeten worden gesloten. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + Items kunnen niet worden gekocht indien ze deel uit maken van een Bevestiging. + </notification> + <notification label="Over verzoeken voor debet permissies" name="DebitPermissionDetails"> + Toestemming geven aan dit script geeft het object een onbeperkte permissie om Linden dollars (L$) uit uw account te nemen! +Om dit recht in te trekken, moet de object eigenaar het object verwijderen of de scripts in het object opnieuw instellen. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + Wilt u de kleding items die u maakt automatisch aantrekken? + <usetemplate ignoretext="Automatisch nieuwe kleding aantrekken" name="okcancelignore" notext="Nee" yestext="Ja"/> + </notification> + <notification name="NotAgeVerified"> + U moet leeftijd geverifieerd zijn om toegang te verkrijgen tot dit perceel. +Wilt u de Second Life website bezoeken om uw leeftijd te verifiëren? + +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/verification.php + </url> + <usetemplate ignoretext="Waarschuw voor gebrek aan leeftijd verificatie" name="okcancelignore" notext="Nee" yestext="Ja"/> + </notification> + <notification name="Cannot enter parcel: no payment info on file"> + Dit perceel verlangd dat u betaal informatie geregistreerd hebt staan alvorens toegang te verkrijgen. +Wilt u de Second Life website bezoeken om dit in te stellen? - <notification - - name="JoinGroup" - > +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/index.php?lang=nl + </url> + <usetemplate ignoretext="Waarschuw voor gebrek aan betaal informatie" name="okcancelignore" notext="Nee" yestext="Ja"/> + </notification> + <notification name="MissingString"> + De tekst [STRING_NAME] ontbreekt in strings.xml + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + Geannuleerd + </notification> + <notification name="CancelledSit"> + Zitten geannuleerd + </notification> + <notification name="CancelledAttach"> + Bevestigen geannuleerd + </notification> + <notification name="ReplacedMissingWearable"> + Missend kleding/lichaamsdeel is vervangen door standaard. + </notification> + <notification name="GroupNotice"> + Onderwerp: [SUBJECT], Bericht: [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] is Online + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] is Offline + </notification> + <notification name="AddSelfFriend"> + U kunt uzelf niet als vriend toevoegen. + </notification> + <notification name="UploadingAuctionSnapshot"> + In-wereld en website foto's worden geüpload... +(Duurt ongeveer 5 minuten.) + </notification> + <notification name="UploadPayment"> + U heeft L$[AMOUNT] betaald om te uploaden. + </notification> + <notification name="UploadWebSnapshotDone"> + Upload van website foto is gereed. + </notification> + <notification name="UploadSnapshotDone"> + Upload van in-wereld foto is gereed. + </notification> + <notification name="TerrainDownloaded"> + Terrain.raw gedownload + </notification> + <notification name="GestureMissing"> + Gebaar [NAME] mist in de database. + </notification> + <notification name="UnableToLoadGesture"> + Kan gebaar [NAME] niet laden. Probeer het a.u.b. opnieuw. + </notification> + <notification name="LandmarkMissing"> + Landmarkering mist in de database. + </notification> + <notification name="UnableToLoadLandmark"> + Kan landmarkering niet laden. Probeer het a.u.b. opnieuw. + </notification> + <notification name="CapsKeyOn"> + Uw Caps Lock toets staat aan. Aangezien dit effect heeft op het wachtwoord dat u intypt, zult u het wellicht willen uitzetten. + </notification> + <notification name="NotecardMissing"> + Notitiekaart mist in de database. + </notification> + <notification name="NotecardNoPermissions"> + Onvoldoende permissies om de notitiekaart te bekijken. + </notification> + <notification name="RezItemNoPermissions"> + Onvoldoende permissies om het object te rezzen. + </notification> + <notification name="UnableToLoadNotecard"> + Kan op dit moment notitiekaart inhoud niet laden. + </notification> + <notification name="ScriptMissing"> + Script mist in de database. + </notification> + <notification name="ScriptNoPermissions"> + Onvoldoende permissies om het script te bekijken. + </notification> + <notification name="UnableToLoadScript"> + Kan script niet laden. Probeer het a.u.b. opnieuw. + </notification> + <notification name="IncompleteInventory"> + De complete inhoud die u aanbiedt is nog niet lokaal beschikbaar. Probeer die items over een minuut nogmaals aan te bieden. + </notification> + <notification name="CannotModifyProtectedCategories"> + U kunt geen beschermde categorieën wijzigen. + </notification> + <notification name="CannotRemoveProtectedCategories"> + U kunt geen beschermde categorieën verwijderen. + </notification> + <notification name="OfferedCard"> + U heeft een visitekaartje aangeboden aan [FIRST] [LAST] + </notification> + <notification name="UnableToBuyWhileDownloading"> + Niet mogelijk te kopen terwijl objectdata wordt gedownload. Probeer het alstublieft opnieuw. + </notification> + <notification name="UnableToLinkWhileDownloading"> + Niet mogelijk om te koppelen terwijl objectdata wordt gedownload. Probeer het alstublieft opnieuw. + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + Kan geen objecten van meerdere eigenaren op hetzelfde moment kopen. Selecteer alstublieft een enkel object. + </notification> + <notification name="ObjectNotForSale"> + Object lijkt niet te koop. + </notification> + <notification name="EnteringGodMode"> + God modus binnengaan, niveau [LEVEL] + </notification> + <notification name="LeavingGodMode"> + God modus verlaten, niveau [LEVEL] + </notification> + <notification name="CopyFailed"> + Kopiëren mislukt omdat u geen kopieerpermissie bezit. + </notification> + <notification name="InventoryAccepted"> + [NAME] heeft uw inventarisaanbod geaccepteerd. + </notification> + <notification name="InventoryDeclined"> + [NAME] heeft uw inventarisaanbod afgewezen. + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + Uw visitekaartje is geaccepteerd. + </notification> + <notification name="CallingCardDeclined"> + Uw visite kaart is afgewezen. + </notification> + <notification name="TeleportToLandmark"> + Nu u het mainland bereikt heeft, kunt u teleporteren naar locaties als '[NAME]' door op de Inventaris knop rechtsonder in uw scherm te klikken en dan de Landmarkeringen map te selecteren. Dubbelklik op de landmarkering en klik op Teleport om ernaartoe te reizen. + </notification> + <notification name="TeleportToPerson"> + Nu u het mainland bereikt heeft, kunt u contact opnemen met inwoners als '[NAME]' door op de Inventaris knop rechtsonder in uw scherm te klikken en dan de Visitekaartjes map te selecteren. Dubbelklik op het visitekaartje, klik op Instant Message en type een bericht. + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + Kan geen land selecteren over servergrenzen. +Probeer een kleiner stuk land te selecteren. + </notification> + <notification name="SearchWordBanned"> + Sommige termen in uw zoekopdracht werden uitgesloten vanwege inhoudbeperkingen zoals beschreven in de Gemeenschap Standaarden. + </notification> + <notification name="NoContentToSearch"> + Selecteer alstublieft minstens een type inhoud om te zoeken (PG, Mature of Adult). + </notification> + <notification name="GroupVote"> + [NAME] heeft voorgesteld om te stemmen over: [MESSAGE] - <form name="form"> - <button - - name="Join" - text="Deelnemen"/> - <button - - name="Decline" - text="Afwijzen"/> - <button - - name="Info" - text="Info"/> - </form> - </notification> + <form name="form"> + <button name="VoteNow" text="Stem Nu"/> + <button name="Later" text="Later"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + Evenement Bericht: - <notification - - name="TeleportOffered" - > -[NAME] heeft aangeboden u te teleporteren naar zijn of haar locatie: +[NAME] +[DATE] + <form name="form"> + <button name="Teleport" text="Teleport"/> + <button name="Description" text="Omschrijving"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + Alle objecten op dit perceel die zullen worden overgedragen aan de koper van dit perceel zijn nu opgelicht. +* Bomen en grassen die worden overgedragen zijn niet opgelicht. + <form name="form"> + <button name="Done" text="Gereed"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + Deactiveren van gebaren met dezelfde trigger: +[NAMES] + </notification> + <notification name="NoQuickTime"> + De QuickTime software van Apple schijnt niet op uw systeem geïnstalleerd te zijn. +Indien u streaming media wilt zien op percelen die dit ondersteunen, dient u naar de QuickTime webpagina te gaan (http://www.apple.com/QuickTime) en de QuickTime Player te installeren. + </notification> + <notification name="OwnedObjectsReturned"> + De objecten die uw eigendom zijn op het geselecteerde perceel zijn geretourneerd naar uw inventaris. + </notification> + <notification name="OtherObjectsReturned"> + De objecten op het geselecteerde perceel dat het eigendom is van [FIRST] [LAST], zijn geretourneerd naar zijn of haar inventaris. + </notification> + <notification name="OtherObjectsReturned2"> + De objecten op het geselecteerde perceel dat het eigendom is van inwoner '[NAME]', zijn geretourneerd naar hun eigenaar. + </notification> + <notification name="GroupObjectsReturned"> + De objecten op het geselecteerde perceel dat gedeeld is met de groep [GROUPNAME] zijn geretourneerd naar de inventaris van hun eigenaar. +Overdraagbare objecten die eigendom zijn van de groep zijn geretourneerd naar hun voormalige eigenaren. +Niet-overdraagbare objecten die eigendom zijn van de groep zijn verwijderd. + </notification> + <notification name="UnOwnedObjectsReturned"> + De objecten op het geselecteerde perceel die NIET uw eigendom zijn, zijn geretourneerd naar hun eigenaren. + </notification> + <notification name="NotSafe"> + Op dit land is letsel ingeschakeld ('niet veilig'). +U kunt hier letsel oplopen. Indien u sterft, zult u naar uw thuis locatie worden geteleporteerd. + </notification> + <notification name="NoFly"> + Op dit land is vliegen uitgeschakeld ('niet vliegen'). +U kunt hier niet vliegen. + </notification> + <notification name="PushRestricted"> + Dit land is 'Niet Duwen'. +U kunt geen anderen duwen, tenzij u het land bezit. + </notification> + <notification name="NoVoice"> + Op dit land is voice uitgeschakeld. + </notification> + <notification name="NoBuild"> + Op dit land is bouwen uitgeschakeld ('niet bouwen'). +U kunt hier geen objecten creëren. + </notification> + <notification name="ScriptsStopped"> + Een beheerder heeft scripts in deze regio tijdelijk gestopt. + </notification> + <notification name="ScriptsNotRunning"> + In deze regio worden geen scripts uitgevoerd. + </notification> + <notification name="NoOutsideScripts"> + Op dit land zijn externe scripts uitgeschakeld (geen externe scripts). +Geen scripts zullen worden uitgevoerd, behalve scripts die toebehoren aan de landeigenaar. + </notification> + <notification name="ClaimPublicLand"> + Kan alleen publiek land claimen in de regio waar u aanwezig bent. + </notification> + <notification name="RegionTPAccessBlocked"> + U bent niet toegestaan in die regio vanwege uw inhoudscategorie. Wellicht dient u uw leeftijd te valideren en/of de nieuwste viewer te installeren. + +Gaat u alstublieft naar de kennisbank voor details over het betreden van gebieden met deze inhoudscategorie. + </notification> + <notification name="URBannedFromRegion"> + U bent uit deze regio verbannen. + </notification> + <notification name="NoTeenGridAccess"> + Uw account kan geen verbinding maken met deze teen grid regio. + </notification> + <notification name="NoHelpIslandTP"> + U kunt niet terug teleporteren naar Help Island. Ga naar 'Help Island Public' om de handleiding te herhalen. + </notification> + <notification name="ImproperPaymentStatus"> + U heeft niet de juiste betalingstatus om deze regio binnen te gaan. + </notification> + <notification name="MustGetAgeRgion"> + U moet leeftijd geverifieerd zijn om deze regio binnen te gaan. + </notification> + <notification name="MustGetAgeParcel"> + U moet leeftijd geverifieerd zijn om dit perceel binnen te gaan. + </notification> + <notification name="NoDestRegion"> + Geen bestemmingsregio gevonden. + </notification> + <notification name="NotAllowedInDest"> + U wordt niet op de bestemming toegelaten. + </notification> + <notification name="RegionParcelBan"> + Kan niet naar de regio oversteken in een verbannen perceel. Probeer het op een andere manier. + </notification> + <notification name="TelehubRedirect"> + U bent doorverwezen naar een telehub. + </notification> + <notification name="CouldntTPCloser"> + Kan niet dichter bij bestemming teleporteren. + </notification> + <notification name="TPCancelled"> + Teleport geannuleerd. + </notification> + <notification name="FullRegionTryAgain"> + De regio die u probeert binnen te gaan is momenteel vol. +Probeer het alstublieft opnieuw over enkele ogenblikken. + </notification> + <notification name="GeneralFailure"> + Algemene fout. + </notification> + <notification name="RoutedWrongRegion"> + Gerouteerd naar de verkeerde regio. Probeer het alstublieft opnieuw. + </notification> + <notification name="NoValidAgentID"> + Geen geldige agent ID. + </notification> + <notification name="NoValidSession"> + Geen geldige sessie ID. + </notification> + <notification name="NoValidCircuit"> + Geen geldige circuit code. + </notification> + <notification name="NoValidTimestamp"> + Geen geldige tijdstempel. + </notification> + <notification name="NoPendingConnection"> + Kan wachtende verbinding niet maken. + </notification> + <notification name="InternalUsherError"> + Er is een interne fout opgetreden terwijl geprobeerd werd u naar uw teleportbestemming te begeleiden. Second Life heeft op dit moment mogelijk problemen met de dienstverlening. + </notification> + <notification name="NoGoodTPDestination"> + Kan geen goede teleportbestemming vinden in deze regio. + </notification> + <notification name="InternalErrorRegionResolver"> + Er is een interne fout opgetreden terwijl de globale coördinaten voor uw teleportverzoek werden bepaald. Second Life heeft op dit moment mogelijk problemen met de dienstverlening. + </notification> + <notification name="NoValidLanding"> + Er kon geen geldig landingspunt worden gevonden. + </notification> + <notification name="NoValidParcel"> + Geen geldig perceel kon gevonden worden. + </notification> + <notification name="ObjectGiveItem"> + Een object genaamd [OBJECTFROMNAME], eigendom van [FIRST] [LAST], heeft u een [OBJECTTYPE] genaamd [OBJECTNAME] gegeven. + <form name="form"> + <button name="Keep" text="Behouden"/> + <button name="Discard" text="Afwijzen"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + Een object genaamd [OBJECTFROMNAME], eigendom van (een onbekende gebruiker), heeft u een [OBJECTTYPE] genaamd [OBJECTNAME] gegeven. + <form name="form"> + <button name="Keep" text="Behouden"/> + <button name="Discard" text="Afwijzen"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME] heeft u een [OBJECTTYPE] genaamd '[OBJECTNAME]' gegeven. + <form name="form"> + <button name="Keep" text="Behouden"/> + <button name="Discard" text="Afwijzen"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="Teleport"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="Deelnemen"/> + <button name="Decline" text="Afwijzen"/> + <button name="Info" text="Info"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME] heeft aangeboden u te teleporteren naar zijn of haar locatie: - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="Teleport"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="Later"/> - <button - - name="GoNow..." - text="Ga Nu..."/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME] biedt vriendschap aan. + <form name="form"> + <button name="Later" text="Later"/> + <button name="GoNow..." text="Ga Nu..."/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME] biedt vriendschap aan. [MESSAGE] (Standaard zult u in staat zijn om elkaars online status te zien.) - <form name="form"> - <button - - name="Accept" - text="Accepteren"/> - <button - - name="Decline" - text="Afwijzen"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME] biedt vriendschap aan. + <form name="form"> + <button name="Accept" text="Accepteren"/> + <button name="Decline" text="Afwijzen"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME] biedt vriendschap aan. (Standaard zult u in staat zijn om elkaars online status te zien.) - <form name="form"> - <button - - name="Accept" - text="Accepteren"/> - <button - - name="Decline" - text="Afwijzen"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -[NAME] heeft uw vriendschapsaanbod geaccepteerd. - </notification> - - <notification - - name="FriendshipDeclined" - > -[NAME] heeft uw vriendschapsaanbod afgewezen. - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST] biedt zijn/haar visitekaartje aan. + <form name="form"> + <button name="Accept" text="Accepteren"/> + <button name="Decline" text="Afwijzen"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + [NAME] heeft uw vriendschapsaanbod geaccepteerd. + </notification> + <notification name="FriendshipDeclined"> + [NAME] heeft uw vriendschapsaanbod afgewezen. + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST] biedt zijn/haar visitekaartje aan. Dit zal een bladwijzer in uw inventaris toevoegen zodat u deze inwoner snel kunt een IM kunt sturen. - <form name="form"> - <button - - name="Accept" - text="Accepteren"/> - <button - - name="Decline" - text="Afwijzen"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -De regio zal over [MINUTES] minuten herstarten. + <form name="form"> + <button name="Accept" text="Accepteren"/> + <button name="Decline" text="Afwijzen"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + De regio zal over [MINUTES] minuten herstarten. Indien u in deze regio blijft, zult u worden uitgelogd. - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -De regio zal over [SECONDS] seconden herstarten. + </notification> + <notification name="RegionRestartSeconds"> + De regio zal over [SECONDS] seconden herstarten. Indien u in deze regio blijft, zult u worden uitgelogd. - </notification> - - <notification - - name="LoadWebPage" - > -Laad webpagina [URL]? + </notification> + <notification name="LoadWebPage"> + Laad webpagina [URL]? [MESSAGE] Van object: [OBJECTNAME], eigenaar: [NAME]? - <form name="form"> - <button - - name="Gotopage" - text="Ga naar pagina"/> - <button - - name="Cancel" - text="Annuleren"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -Kon [TYPE] niet in de database vinden. - </notification> - - <notification - - name="FailedToFindWearable" - > -Kon [TYPE] genaamd [DESC] niet in de database vinden. - </notification> - - <notification - - name="ScriptQuestion" - > -[OBJECTNAME]', een object van '[NAME]', wil graag: + <form name="form"> + <button name="Gotopage" text="Laden"/> + <button name="Cancel" text="Annuleren"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + Kon [TYPE] niet in de database vinden. + </notification> + <notification name="FailedToFindWearable"> + Kon [TYPE] genaamd [DESC] niet in de database vinden. + </notification> + <notification name="InvalidWearable"> + Het item dat u probeert te dragen gebruikt een kenmerk dat uw viewer niet kan lezen. Upgrade u alstublieft uw versie van Second Life om dit item te dragen. + </notification> + <notification name="ScriptQuestion"> + [OBJECTNAME]', een object van '[NAME]', wil graag: [QUESTIONS] Is dit OK? - <form name="form"> - <button - - name="Yes" - text="Ja"/> - <button - - name="No" - text="Nee"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -[OBJECTNAME]', een object van '[NAME]', wil graag + <form name="form"> + <button name="Yes" text="Ja"/> + <button name="No" text="Nee"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + [OBJECTNAME]', een object van '[NAME]', wil graag [QUESTIONS] Indien u dit object en zijn maker niet vertrouwt, zou u het verzoek moeten weigeren. Klik de Details knop voor additionele informatie. Dit verzoek inwilligen? - <form name="form"> - <button - - name="Grant" - text="Inwilligen"/> - <button - - name="Deny" - text="Weigeren"/> - <button - - name="Details" - text="Details..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -[FIRST] [LAST]'s '[TITLE]' + <form name="form"> + <button name="Grant" text="Inwilligen"/> + <button name="Deny" text="Weigeren"/> + <button name="Details" text="Details..."/> + </form> + </notification> + <notification name="ScriptDialog"> + [FIRST] [LAST]'s '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Negeren"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -[GROUPNAME]'s '[TITLE]' + <form name="form"> + <button name="Ignore" text="Negeren"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + [GROUPNAME]'s '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Negeren"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -U heeft zojuist L$[AMOUNT] ontvangen. + <form name="form"> + <button name="Ignore" text="Negeren"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + U heeft zojuist L$[AMOUNT] ontvangen. Objecten en andere gebruikers kunnen u L$ geven. Uw saldo wordt in de rechterbovenhoek van het scherm getoond. - </notification> - - <notification - - name="FirstBalanceDecrease" - > -U heeft zojuist L$[AMOUNT] betaald. + </notification> + <notification name="FirstBalanceDecrease"> + U heeft zojuist L$[AMOUNT] betaald. Uw saldo wordt in de rechterbovenhoek van het scherm getoond. - </notification> - - <notification - - name="FirstSit" - > -U zit. + </notification> + <notification name="FirstSit"> + U zit. Gebruik de pijltjestoetsen (of AWSD) of uw gezichtsveld te wijzigen. Klik de 'Sta Op' knop om op te staan. - </notification> - - <notification - - name="FirstMap" - > -Klik en sleep om de kaart te verplaatsen. + </notification> + <notification name="FirstMap"> + Klik en sleep om de kaart te verplaatsen. Dubbelklik om te teleporteren. Gebruik de bedieningselementen aan de rechterkant om dingen te vinden en verschillende achtergronden te tonen. - </notification> - - <notification - - name="FirstBuild" - > -U kunt nieuwe objecten bouwen in sommige gebieden van [SECOND_LIFE]. + </notification> + <notification name="FirstBuild"> + U kunt nieuwe objecten bouwen in sommige gebieden van [SECOND_LIFE]. Gebruik de gereedschappen in de linkerbovenhoek om te bouwen en probeer Ctrl en Alt ingedrukt te houden om snel tussen gereedschappen te wisselen. Druk Esc om te stoppen met bouwen. - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -Links-klikken werkt in op speciale objecten. + </notification> + <notification name="FirstLeftClickNoHit"> + Links-klikken werkt in op speciale objecten. Indien de muisaanwijzer verandert in een hand, kunt u interacteren met het object. Rechts-klikken toont altijd een menu van dingen die u kunt doen. - </notification> - - <notification - - name="FirstTeleport" - > -Deze regio staat geen point-to-point teleport toe, dus u bent naar de dichtstbijzijnde telehub getransporteerd. + </notification> + <notification name="FirstTeleport"> + Deze regio staat geen point-to-point teleport toe, dus u bent naar de dichtstbijzijnde telehub getransporteerd. Uw bestemming is gemarkeerd met een groot baken. Volg de rode pijl naar het baken, of klik de pijl om het baken te verwijderen. - </notification> - - <notification - - name="FirstOverrideKeys" - > -Uw bewegingstoetsen worden nu door een object afgehandeld. + </notification> + <notification name="FirstOverrideKeys"> + Uw bewegingstoetsen worden nu door een object afgehandeld. Probeer de pijltjestoetsen of AWSD om te zien wat ze doen. Sommige objecten (zoals geweren) vereisen dat u in mouselook gaat om ze te gebruiken. Druk 'M' om dit te doen. - </notification> - - <notification - - name="FirstAppearance" - > -U bent uw uiterlijk aan het bewerken. + </notification> + <notification name="FirstAppearance"> + U bent uw uiterlijk aan het bewerken. Gebruik de pijltjestoetsen om uw gezichtsveld te draaien en te zoomen. Druk 'Alles Opslaan' om uw uiterlijk op te slaan wanneer u klaar bent. U kunt uw uiterlijk zo vaak als u wil bewerken. - </notification> - - <notification - - name="FirstInventory" - > -Dit is uw inventaris, die objecten, notitiekaarten, kleding en andere eigendommen bevat. + </notification> + <notification name="FirstInventory"> + Dit is uw inventaris, die objecten, notitiekaarten, kleding en andere eigendommen bevat. * Om een object of een kleding-map te dragen, sleep het op uzelf. * Om een object in de wereld te brengen, sleep het op de grond. * Om een notitiekaart te lezen, dubbelklik erop. - </notification> - - <notification - - name="FirstSandbox" - > -Dit is een zandbak regio. + </notification> + <notification name="FirstSandbox"> + Dit is een zandbak regio. Objecten die u hier bouwt, kunnen worden verwijderd nadat u het gebied verlaat. Zandbakken schonen op regelmatige basis, kijk alstublieft naar de informatie aan de bovenkant van het scherm, naast de regionaam. Zandbak regio's zijn ongewoon en gemarkeerd met borden. - </notification> - - <notification - - name="FirstFlexible" - > -Dit object is flexibel. + </notification> + <notification name="FirstFlexible"> + Dit object is flexibel. Flexibele objecten mogen niet fysiek zijn en moeten fantoom zijn tot de 'flexibel' checkbox wordt uitgezet. - </notification> - - <notification - - name="FirstDebugMenus" - > -U heeft het menu Geavanceerd geactiveerd. + </notification> + <notification name="FirstDebugMenus"> + U heeft het menu Geavanceerd geactiveerd. Dit menu bevat opties die handig zijn voor ontwikkelaars tijdens het debuggen van Second Life. Om dit menu in en uit te schakelen drukt u binnen Windows Ctrl-Alt-D. Met een Mac drukt u Cmd-Opt-Shift-D. - </notification> - - <notification - - name="FirstSculptedPrim" - > -U bent een sculpted prim aan het bewerken. + </notification> + <notification name="FirstSculptedPrim"> + U bent een sculpted prim aan het bewerken. Sculpted prims vereisen een speciaal textuur om hun vorm te bepalen. U kunt voorbeelden van sculpt-texturen in de inventaris bibliotheek vinden. - </notification> - - <notification - - name="FirstMedia" - > -U bent begonnen met het afspelen van media. In het Voorkeurenvenster, onder Audio / Video, kan media worden ingesteld om automatisch te beginnen met afspelen. Let op dat dit een beveiligingsrisico kan zijn voor media sites die u niet vertrouwt. - </notification> - - <notification - - name="MaxListSelectMessage" - > -U mag slecht maximaal [MAX_SELECT] items van deze lijst kiezen. - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME] nodigt u uit voor een Voice chat gesprek. + </notification> + <notification name="FirstMedia"> + U bent begonnen met het afspelen van media. In het Voorkeurenvenster, onder Audio / Video, kan media worden ingesteld om automatisch te beginnen met afspelen. Let op dat dit een beveiligingsrisico kan zijn voor media sites die u niet vertrouwt. + </notification> + <notification name="MaxListSelectMessage"> + U mag slecht maximaal [MAX_SELECT] items van deze lijst kiezen. + </notification> + <notification name="VoiceInviteP2P"> + [NAME] nodigt u uit voor een Voice chat gesprek. Klik Accepteren om deel te nemen aan dit gesprek of Afwijzen om de uitnodiging af te wijzen. Klik Negeren om deze persoon te negeren. - <form name="form"> - <button - - name="Accept" - text="Accepteren"/> - <button - - name="Decline" - text="Afwijzen"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -Er is een instant message naar [FIRST] [LAST] gestuurd, waardoor deze automatisch van de negeerlijst is gehaald. - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -Er is geld gegeven aan [FIRST] [LAST], waardoor deze automatisch van de negeerlijst is gehaald. - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -Er is inventaris aangeboden aan [FIRST] [LAST], waardoor deze automatisch van de negeerlijst is gehaald. - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME] doet nu mee met een Voice chat gesprek binnen de groep [GROUP]. + <form name="form"> + <button name="Accept" text="Accepteren"/> + <button name="Decline" text="Afwijzen"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + Er is een instant message naar [FIRST] [LAST] gestuurd, waardoor deze automatisch van de negeerlijst is gehaald. + </notification> + <notification name="AutoUnmuteByMoney"> + Er is geld gegeven aan [FIRST] [LAST], waardoor deze automatisch van de negeerlijst is gehaald. + </notification> + <notification name="AutoUnmuteByInventory"> + Er is inventaris aangeboden aan [FIRST] [LAST], waardoor deze automatisch van de negeerlijst is gehaald. + </notification> + <notification name="VoiceInviteGroup"> + [NAME] doet nu mee met een Voice chat gesprek binnen de groep [GROUP]. Klik Accepteren om deel te nemen aan het gesprek of Afwijzen om de uitnodiging af te wijzen. Klik Negeren om deze persoon te negeren. - <form name="form"> - <button - - name="Accept" - text="Accepteren"/> - <button - - name="Decline" - text="Afwijzen"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME] doet nu mee met een Voice chat gesprek binnen een conferentie chat. + <form name="form"> + <button name="Accept" text="Accepteren"/> + <button name="Decline" text="Afwijzen"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME] doet nu mee met een Voice chat gesprek binnen een conferentie chat. Klik Accepteren om deel te nemen aan het gesprek of Afwijzen om de uitnodiging af te wijzen. Klik Negeren om deze persoon te negeren. - <form name="form"> - <button - - name="Accept" - text="Accepteren"/> - <button - - name="Decline" - text="Afwijzen"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME] nodigt u uit voor een conferentie chat. + <form name="form"> + <button name="Accept" text="Accepteren"/> + <button name="Decline" text="Afwijzen"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME] nodigt u uit voor een conferentie chat. Klik Accepteren om deel te nemen aan de chat of Afwijzen om de uitnodiging af te wijzen. Klik Negeren om deze persoon te negeren. - <form name="form"> - <button - - name="Accept" - text="Accepteren"/> - <button - - name="Decline" - text="Afwijzen"/> - <button - - name="Mute" - text="Negeren"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -Het voice gesprek waaraan u probeert deel te nemen, [VOICE_CHANNEL_NAME], heeft zijn maximale capaciteit bereikt. Probeert u het alstublieft later nog een keer. - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -Onze excuses. Dit gebied heeft zijn maximale capaciteit voor voice conversaties bereikt. Probeert u alstublieft voice te gebruiken in een ander gebied. - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -U bent niet meer verbonden met [VOICE_CHANNEL_NAME]. U zult weer worden verbonden met spatiale voice chat. - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME] heeft het gesprek beëindigd. U zult weer worden verbonden met spatiale voice chat. - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME] heeft uw oproep afgewezen. U zult weer worden verbonden met spatiale voice chat. - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME] is niet beschikbaar om uw oproep aan te nemen. U zult weer worden verbonden met spatiale voice chat. - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -Verbinden met [VOICE_CHANNEL_NAME] is mislukt, probeert u het later alstublieft nog een keer. U zult weer worden verbonden met spatiale voice chat. - </notification> - - <notification - - name="VoiceLoginRetry" - > -We zijn bezig om een voice kanaal voor u te maken. Dit kan tot een minuut duren. - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -Kan het perceel niet betreden, u bent geen lid van de juiste groep. - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -Kan het perceel niet betreden, u bent verbannen. - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -Kan het perceel niet betreden, u staat niet op de toegangslijst. - </notification> - - <notification - - name="VoiceNotAllowed" - > -U heeft geen permissie om met voice chat te verbinden voor [VOICE_CHANNEL_NAME]. - </notification> - - <notification - - name="VoiceCallGenericError" - > -Er is een fout opgetreden tijdens het verbinden met voice chat voor [VOICE_CHANNEL_NAME]. Probeert u het later alstublieft opnieuw. - </notification> - - <notification - - name="ServerVersionChanged" - > -De regio die u bent binnengetreden wordt onder een andere simulatorversie uitgevoerd. Klik dit bericht voor meer details. - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -De URL die u heeft geklikt kan niet binnen deze webbrowser worden geopend. - </notification> - - <global name="UnsupportedCPU"> -- Uw Processor snelheid (CPU) voldoet niet aan de minimale eisen. - </global> - - <global name="UnsupportedGLRequirements"> -U heeft mogelijk niet de vereiste hardware voor Second Life. Second Life verlangd een OpenGL grafische kaart die multi-texture ondersteund. Indien dat het geval is, overtuig u er dan van dat u de laatste stuurprogramma's voor uw grafische kaart, service packs en patches voor uw Operating systeem heeft. + <form name="form"> + <button name="Accept" text="Accepteren"/> + <button name="Decline" text="Afwijzen"/> + <button name="Mute" text="Negeren"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + Het voice gesprek waaraan u probeert deel te nemen, [VOICE_CHANNEL_NAME], heeft zijn maximale capaciteit bereikt. Probeert u het alstublieft later nog een keer. + </notification> + <notification name="ProximalVoiceChannelFull"> + Onze excuses. Dit gebied heeft zijn maximale capaciteit voor voice conversaties bereikt. Probeert u alstublieft voice te gebruiken in een ander gebied. + </notification> + <notification name="VoiceChannelDisconnected"> + U bent niet meer verbonden met [VOICE_CHANNEL_NAME]. U zult weer worden verbonden met spatiale voice chat. + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME] heeft het gesprek beëindigd. U zult weer worden verbonden met spatiale voice chat. + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME] heeft uw oproep afgewezen. U zult weer worden verbonden met spatiale voice chat. + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME] is niet beschikbaar om uw oproep aan te nemen. U zult weer worden verbonden met spatiale voice chat. + </notification> + <notification name="VoiceChannelJoinFailed"> + Verbinden met [VOICE_CHANNEL_NAME] is mislukt, probeert u het later alstublieft nog een keer. U zult weer worden verbonden met spatiale voice chat. + </notification> + <notification name="VoiceLoginRetry"> + We zijn bezig om een voice kanaal voor u te maken. Dit kan tot een minuut duren. + </notification> + <notification name="Cannot enter parcel: not a group member"> + Kan het perceel niet betreden, u bent geen lid van de juiste groep. + </notification> + <notification name="Cannot enter parcel: banned"> + Kan het perceel niet betreden, u bent verbannen. + </notification> + <notification name="Cannot enter parcel: not on access list"> + Kan het perceel niet betreden, u staat niet op de toegangslijst. + </notification> + <notification name="VoiceNotAllowed"> + U heeft geen permissie om met voice chat te verbinden voor [VOICE_CHANNEL_NAME]. + </notification> + <notification name="VoiceCallGenericError"> + Er is een fout opgetreden tijdens het verbinden met voice chat voor [VOICE_CHANNEL_NAME]. Probeert u het later alstublieft opnieuw. + </notification> + <notification name="ServerVersionChanged"> + De regio die u bent binnengetreden wordt onder een andere simulatorversie uitgevoerd. Klik dit bericht voor meer details. + </notification> + <notification name="UnableToOpenCommandURL"> + De URL die u heeft geklikt kan niet binnen deze webbrowser worden geopend. + </notification> + <global name="UnsupportedCPU"> + - Uw Processor snelheid (CPU) voldoet niet aan de minimale eisen. + </global> + <global name="UnsupportedGLRequirements"> + U heeft mogelijk niet de vereiste hardware voor Second Life. Second Life verlangd een OpenGL grafische kaart die multi-texture ondersteund. Indien dat het geval is, overtuig u er dan van dat u de laatste stuurprogramma's voor uw grafische kaart, service packs en patches voor uw Operating systeem heeft. Indien u problemen blijft houden, bezoek dan: http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- Uw grafische kaart voldoet niet aan de minimale eisen. - </global> - - <global name="UnsupportedRAM"> -- Uw systeem geheugen voldoet niet aan de minimale eisen. - </global> - - <global name="PermYes"> -Ja - </global> - - <global name="PermNo"> -Nee - </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - Uw grafische kaart voldoet niet aan de minimale eisen. + </global> + <global name="UnsupportedRAM"> + - Uw systeem geheugen voldoet niet aan de minimale eisen. + </global> + <global name="PermYes"> + Ja + </global> + <global name="PermNo"> + Nee + </global> </notifications> - diff --git a/indra/newview/skins/default/xui/nl/panel_group_general.xml b/indra/newview/skins/default/xui/nl/panel_group_general.xml index 8ab7f9779cb566d6669836c4fdfee2d44a079b4a..9982a527f48e150468ff87b6ca80aa09613e9e0b 100644 --- a/indra/newview/skins/default/xui/nl/panel_group_general.xml +++ b/indra/newview/skins/default/xui/nl/panel_group_general.xml @@ -47,7 +47,17 @@ Laat uw muis boven de opties zweven voor meer help. <check_box label="Vrije toegang" name="open_enrollement" tool_tip="Stelt in of deze groep toestaat dat nieuwe leden lid kunnen worden zonder uitgenodigd te zijn."/> <check_box label="Contributiebijdrage: L$" name="check_enrollment_fee" tool_tip="Stelt in of er een contributiebijdrage vereist is om lid te worden van de groep."/> <spinner name="spin_enrollment_fee" tool_tip="Nieuwe leden moeten deze bijdrage betalen om deel te nemen aan de groep wanneer "Contributie bijdrage" is aangevinkt."/> - + <combo_box name="group_mature_check" tool_tip="Stelt in of uw groepsinformatie als mature beschouwd wordt."> + <combo_item name="select_mature"> + - Selecteer - + </combo_item> + <combo_item name="mature"> + Mature inhoud + </combo_item> + <combo_item name="pg"> + PG inhoud + </combo_item> + </combo_box> <panel name="title_container"> <text name="active_title_label"> Mijn actieve titel diff --git a/indra/newview/skins/default/xui/nl/panel_group_invite.xml b/indra/newview/skins/default/xui/nl/panel_group_invite.xml index 65edfb12a1fb9bc10f3d34334f761062273431f6..004fdc4bee68f5fa1b25fc9fe1cac6d92ac3a031 100644 --- a/indra/newview/skins/default/xui/nl/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/nl/panel_group_invite.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Nodig een lid uit" name="invite_panel"> <text name="help_text"> - U kunt meerdere inwoners uitnodigen voor uw groep. Klik 'Open persoonkiezer' om te starten. + U kunt meerdere inwoners selecteren om voor uw groep uit te nodigen. Klik 'Open inwonerkiezer' om te starten. </text> - <button label="Open persoonkiezer" name="add_button" tool_tip=""/> + <button label="Open inwonerkiezer" name="add_button" tool_tip=""/> <name_list name="invitee_list" tool_tip="Houd de Ctrl-toets vast en klik de namen van de inwoners om meerdere te selecteren."/> <button label="Verwijder geselecteerden van lijst" name="remove_button" tool_tip="Verwijderd hierboven geselecteerde inwoners van de uitnodigingslijst."/> <text name="role_text"> diff --git a/indra/newview/skins/default/xui/nl/panel_group_roles.xml b/indra/newview/skins/default/xui/nl/panel_group_roles.xml index fb9dae95f4b329d349505c72ab9f98485af643f0..50aabb04338ebb5c51038c45099a72eb1a528ec4 100644 --- a/indra/newview/skins/default/xui/nl/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/nl/panel_group_roles.xml @@ -49,7 +49,7 @@ <column label="Gedoneerde Tier" name="donated"/> <column label="Laatste Login" name="online"/> </name_list> - <button label="Uitnodigen Nieuwe Persoon..." name="member_invite"/> + <button label="Nieuw Lid Uitnodigen..." name="member_invite"/> <button label="Uitwerpen uit de Groep" name="member_eject"/> <string name="help_text"> U kunt Rollen aan Leden toewijzen of van Leden afnemen. Selecteer meerdere Leden door de Ctrl toets ingedrukt te houden en op hun namen te klikken. diff --git a/indra/newview/skins/default/xui/nl/panel_region_general.xml b/indra/newview/skins/default/xui/nl/panel_region_general.xml index 97624f40f7fbf91718dbe682d5baa47bff4cfc90..9ed822ac13d1681082f92ace8b1eeaad9f95ab11 100644 --- a/indra/newview/skins/default/xui/nl/panel_region_general.xml +++ b/indra/newview/skins/default/xui/nl/panel_region_general.xml @@ -12,6 +12,12 @@ <text name="version_channel_text"> onbekend </text> + <text name="region_type_lbl"> + Type: + </text> + <text name="region_type"> + onbekend + </text> <check_box label="Blokkeer terreinbewerking" name="block_terraform_check"/> <button label="?" name="terraform_help"/> <check_box label="Blokkeer vliegen" name="block_fly_check"/> @@ -31,12 +37,19 @@ <spinner label="Object bonus" name="object_bonus_spin"/> <button label="?" name="object_bonus_help"/> <text label="Volwassenheid" name="access_text"> - Volwassenheid: + Inhoudscategorie: </text> - - - - + <combo_box label="Mature" name="access_combo"> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Mature"> + Mature + </combo_item> + <combo_item name="PG"> + PG + </combo_item> + </combo_box> <button label="?" name="access_help"/> <button label="Toepassen" name="apply_btn"/> <button label="Teleport één gebruiker naar thuislocatie…" name="kick_btn"/> diff --git a/indra/newview/skins/default/xui/nl/strings.xml b/indra/newview/skins/default/xui/nl/strings.xml index adce37b5bc938f4bcffd7a1ccdc9200e0b97b948..4b64586887a41fb08d80366e8cdffcd60edc9bf4 100644 --- a/indra/newview/skins/default/xui/nl/strings.xml +++ b/indra/newview/skins/default/xui/nl/strings.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. - It is only for those strings which don't belong in a floater. + It is only for those strings which do not belong in a floater. For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> @@ -55,9 +55,6 @@ <string name="LoginDownloadingClothing"> Kleding downloaden... </string> - <string name="LoginFailedNoNetwork"> - Netwerk fout: Kan geen verbinding opzetten, controleer alstublieft uw netwerkverbinding - </string> <string name="AgentLostConnection"> Deze regio kan problemen ondervinden. Controleer alstublieft uw verbinding met het internet. </string> @@ -184,6 +181,9 @@ <string name="AssetErrorCircuitGone"> Circuit verdwenen </string> + <string name="AssetErrorPriceMismatch"> + Viewer en server zijn het niet eens over de prijs. + </string> <string name="AssetErrorUnknownStatus"> Onbekende status </string> @@ -418,4 +418,69 @@ <string name="shout"> schreeuwt: </string> + <string name="SIM_ACCESS_PG"> + PG + </string> + <string name="SIM_ACCESS_MATURE"> + Mature + </string> + <string name="SIM_ACCESS_ADULT"> + Adult + </string> + <string name="SIM_ACCESS_DOWN"> + Offline + </string> + <string name="SIM_ACCESS_MIN"> + Onbekend + </string> + <string name="land_type_unknown"> + (onbekend) + </string> + <string name="covenant_never_modified">Laatst gewijzigd: (nooit)</string> + <string name="covenant_modified">Laatst gewijzigd: </string> + <string name="all_files"> + Alle bestanden + </string> + <string name="sound_files"> + Geluiden + </string> + <string name="animation_files"> + Animaties + </string> + <string name="image_files"> + Afbeeldingen + </string> + <string name="save_file_verb"> + Opslaan + </string> + <string name="load_file_verb"> + Laden + </string> + <string name="targa_image_files"> + Targa afbeeldingen + </string> + <string name="bitmap_image_files"> + Bitmap afbeeldingen + </string> + <string name="avi_movie_file"> + AVI Film bestand + </string> + <string name="xaf_animation_file"> + XAF Anim bestand + </string> + <string name="xml_file"> + XML bestand + </string> + <string name="dot_raw_file"> + RAW bestand + </string> + <string name="compressed_image_files"> + Gecomprimeerde afbeeldingen + </string> + <string name="load_files"> + Laad bestanden + </string> + <string name="choose_the_directory"> + Kies folder + </string> </strings> diff --git a/indra/newview/skins/default/xui/nl/teleport_strings.xml b/indra/newview/skins/default/xui/nl/teleport_strings.xml index 1401190e4fdabe7a0cbdc11d477c57712cc31ab2..ff43e0f32ff159fa24296d38ca3b3f639fc514b7 100644 --- a/indra/newview/skins/default/xui/nl/teleport_strings.xml +++ b/indra/newview/skins/default/xui/nl/teleport_strings.xml @@ -2,10 +2,12 @@ <teleport_messages> <message_set name="errors"> <message name="invalid_tport"> - Er is een probleem opgetreden bij het verwerken van uw verzoek voor een teleport. U dient wellicht opnieuw in te loggen voor uw kunt teleporteren. Wanneer u deze boodschap blijft ontvangen, controleert u dan alstublieft de Tech Support FAQ op: www.secondlife.com/support. + Er is een probleem opgetreden bij het verwerken van uw verzoek voor een teleport. U dient wellicht opnieuw in te loggen voor uw kunt teleporteren. Wanneer u deze boodschap blijft ontvangen, controleert u dan alstublieft de Tech Support FAQ op: +www.secondlife.com/support </message> <message name="invalid_region_handoff"> - Er is een probleem opgetreden bij het oversteken naar een andere regio. U dient wellicht opnieuw in te loggen voor uw kunt oversteken naar andere regio's. Wanneer u deze boodschap blijft ontvangen, controleert u dan alstublieft de Tech Support FAQ op: www.secondlife.com/support. + Er is een probleem opgetreden bij het oversteken naar een andere regio. U dient wellicht opnieuw in te loggen voor uw kunt oversteken naar andere regio's. Wanneer u deze boodschap blijft ontvangen, controleert u dan alstublieft de Tech Support FAQ op: +www.secondlife.com/support </message> <message name="blocked_tport"> Sorry, teleport is momenteel geblokkeerd. Probeer het zo meteen opnieuw. Indien u nog steeds niet kunt teleporteren, log dan alstublieft uit en weer in om het probleem te verhelpen. @@ -35,7 +37,7 @@ Kan teleportbestemming niet vinden. De bestemming is mogelijk tijdelijk niet beschikbaar of bestaat niet meer. Probeer het alstublieft opnieuw over een aantal minuten. </message> <message name="no_inventory_host"> - Het inventarissysteem is momenteel niet beschikbaar + Het inventarissysteem is momenteel niet beschikbaar. </message> </message_set> <message_set name="progress"> diff --git a/indra/newview/skins/default/xui/pl/floater_about_land.xml b/indra/newview/skins/default/xui/pl/floater_about_land.xml index 0592df1108c1cfb9d4bdfb7a8ed4186984731ad4..5f4bf4ece690f8a4c9f052f88d3ce9594d2e83e4 100755 --- a/indra/newview/skins/default/xui/pl/floater_about_land.xml +++ b/indra/newview/skins/default/xui/pl/floater_about_land.xml @@ -8,6 +8,18 @@ <text length="1" name="Description:" type="string"> Opis: </text> + <text name="LandType"> + Typ: + </text> + <text name="LandTypeText"> + Region Główny / Ziemia + </text> + <text name="ContentRating"> + Rodzaj: + </text> + <text name="ContentRatingText"> + 'Adult' + </text> <text length="1" name="Owner:" type="string"> WÅ‚aÅ›ciciel: </text> @@ -16,7 +28,7 @@ </text> <button label="Profile..." label_selected="Profile..." name="Profile..."/> <text length="1" name="Group:" type="string"> - Groupa: + Grupa: </text> <button label="Ustaw..." label_selected="Ustaw..." name="Set..."/> <check_box label="UdostÄ™pnij przypisywanie na grupÄ™" name="check deed" tool_tip="Oficer grupy ma prawo przepisać prawo wÅ‚asnoÅ›ci posiadÅ‚oÅ›ci na grupÄ™. PosiadÅ‚ość wspierana jest przez przydziaÅ‚y pochodzÄ…ce od czÅ‚onków grupy."/> @@ -29,7 +41,7 @@ Nie </text> <text length="1" name="For Sale: Price L$[PRICE]." type="string"> - Cena: [PRICE]L$. + Cena: L$[PRICE] (L$[PRICE_PER_SQM]/m²). </text> <button label="Sprzedaj PosiadÅ‚ość..." label_selected="Sprzedaj PosiadÅ‚ość..." name="Sell Land..."/> <text length="1" name="For sale to" type="string"> @@ -52,7 +64,7 @@ Obszar: </text> <text length="1" name="PriceText" type="string"> - 4048 m + 4048 m² </text> <text length="1" name="Traffic:" type="string"> Ruch: @@ -60,9 +72,9 @@ <text length="1" name="DwellText" type="string"> 0 </text> - <button label="Kup PosiadÅ‚ość..." label_selected="Kup PosiadÅ‚ość..." name="Buy Land..." width="125" left="130"/> + <button label="Kup PosiadÅ‚ość..." label_selected="Kup PosiadÅ‚ość..." left="130" name="Buy Land..." width="125"/> <button label="Kup dla Grupy..." label_selected="Kup dla Grupy..." name="Buy For Group..."/> - <button label="Kup PrzepustkÄ™..." label_selected="Kup PrzeputkÄ™..." name="Buy Pass..." tool_tip="Przepustka udostÄ™pnia tymczasowy wstÄ™p na posiadÅ‚ość." width="125" left="130"/> + <button label="Kup PrzepustkÄ™..." label_selected="Kup PrzeputkÄ™..." left="130" name="Buy Pass..." tool_tip="Przepustka udostÄ™pnia tymczasowy wstÄ™p na posiadÅ‚ość." width="125"/> <button label="Porzuć z PosiadÅ‚oÅ›ci..." label_selected="Porzuć z PosiadÅ‚oÅ›ci..." name="Abandon Land..."/> <button label="Odzyskaj PosiadÅ‚ość..." label_selected="Odzyskaj PosiadÅ‚ość..." name="Reclaim Land..."/> <button label="Sprzedaż przez Lindenów..." label_selected="Sprzedaż przez Lindenów..." name="Linden Sale..." tool_tip="PosiadÅ‚ość musi mieć wÅ‚aÅ›ciciela, zawartość oraz nie może być wystawiona na aukcÄ™."/> @@ -76,7 +88,7 @@ Obszar: </string> <string name="area_size_text"> - [AREA] m + [AREA] m² </string> <string name="auction_id_text"> Numer aukcji: [ID] @@ -108,36 +120,61 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz </string> </panel> <panel label="Umowa" name="land_covenant_panel"> - <text length="1" name="covenant_timestamp_text" type="string"> - Ostatnia Modyfikacja Wed Dec 31 16:00:00 1969 - </text> - <text length="1" name="region_name_lbl" type="string"> - Region: - </text> - <text length="1" name="region_name_text" type="string"> - leyla + <text name="estate_section_lbl"> + MajÄ…tek: </text> <text length="1" name="estate_name_lbl" type="string"> - PosiadÅ‚ość: + Nazwa: </text> - <text length="1" name="estate_name_text" type="string"> + <text length="1" name="estate_name_text" type="string" left="115"> Główne </text> <text length="1" name="estate_owner_lbl" type="string"> WÅ‚aÅ›ciciel: </text> - <text length="1" name="estate_owner_text" type="string"> + <text length="1" name="estate_owner_text" type="string" left="115"> (brak) </text> - <text length="1" name="resellable_clause" type="string"> + <text_editor length="1" name="covenant_editor" type="string" left="115"> + Ta posiadÅ‚ość nie wymaga żadej umowy. + </text_editor> + <text length="1" name="covenant_timestamp_text" type="string" left="115"> + Ostatnia Modyfikacja Wed Dec 31 16:00:00 1969 + </text> + <text name="region_section_lbl"> + Region: + </text> + <text length="1" name="region_name_lbl" type="string"> + Nazwa: + </text> + <text length="1" name="region_name_text" type="string" left="115"> + leyla + </text> + <text name="region_landtype_lbl"> + Typ: + </text> + <text name="region_landtype_text" left="115"> + Region Główny / Ziemia + </text> + <text name="region_maturity_lbl"> + Rodzaj: + </text> + <text name="region_maturity_text" left="115"> + 'Adult' + </text> + <text name="resellable_lbl"> + Odsprzedaj: + </text> + <text length="1" name="resellable_clause" type="string" width="338" left="115"> PosiadÅ‚ość zakupiona w tym regionie nie może być odsprzedana. </text> - <text length="1" name="changeable_clause" type="string"> - PosiadÅ‚ość zakupiona w tym regionie nie może być Å‚Ä…czona/dzielona + <text name="changeable_lbl"> + Podziel: + </text> + <text length="1" name="changeable_clause" type="string" width="338" left="115"> + PosiadÅ‚ość zakupiona w tym regionie nie może być +Å‚Ä…czona/dzielona. </text> - <text_editor length="1" name="covenant_editor" type="string"> - Ta posiadÅ‚ość nie wymaga żadej umowy. - </text_editor> <string name="can_resell"> PosiadÅ‚ość zakupiona w tym regionie może być odsprzedana. </string> @@ -145,10 +182,11 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz PosiadÅ‚ość zakupiona w tym regionie nie może być odsprzedana. </string> <string name="can_change"> - PosiadÅ‚ość zakupiona w tym regionie może być Å‚Ä…czona/dzielona + PosiadÅ‚ość zakupiona w tym regionie może być Å‚Ä…czona/dzielona. </string> <string name="can_not_change"> - PosiadÅ‚ość zakupiona w tym regionie nie może być Å‚Ä…czona/dzielona + PosiadÅ‚ość zakupiona w tym regionie nie może być +Å‚Ä…czona/dzielona. </string> </panel> <panel label="Obiekty" name="land_objects_panel"> @@ -215,13 +253,14 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz <text length="1" name="Object Owners:" type="string" width="108"> WÅ‚aÅ›ciciel Obiektów: </text> - <button label="OdÅ›wież ListÄ™" label_selected="OdÅ›wież ListÄ™" name="Refresh List" left="112"/> - <button label="Zwróć obiekty..." label_selected="Zwróć obiekty..." name="Return objects..." left="224"/> + <button label="OdÅ›wież ListÄ™" label_selected="OdÅ›wież ListÄ™" left="112" name="Refresh List"/> + <button label="Zwróć obiekty..." label_selected="Zwróć obiekty..." left="224" name="Return objects..."/> <name_list name="owner list"> <column label="Typ" name="type"/> <column name="online_status"/> <column label="Nazwa" name="name"/> <column label="Liczba" name="count"/> + <column label="Najbardziej aktualne" name="mostrecent"/> </name_list> </panel> <panel label="Opcje" name="land_options_panel"> @@ -240,7 +279,7 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz Nowe Obiekty: </text> <check_box label="Wszyscy" name="all object entry check"/> - <check_box label="Gropa" name="group object entry check"/> + <check_box label="Grupa" name="group object entry check"/> <text length="1" name="allow_label4" type="string"> Skrypty: </text> @@ -252,6 +291,57 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz <check_box label="Bezpieczna (brak zniszczeÅ„)" name="check safe" tool_tip="Wybrana - posiadÅ‚ość jest bezpieczna - zniszczenia w walce sÄ… zablokowane. Nie wybrana - zniszczenia w walce sÄ… wÅ‚Ä…czone."/> <check_box label="Popychanie niedozwolone" name="PushRestrictCheck" tool_tip="Nie pozwalaj skryptom na popychanie. Wybranie tej opcji może być przydatne do ograniczenia zakłóceÅ„ spokoju w Twojej posiadÅ‚oÅ›ci."/> <check_box label="WyÅ›wietlaj w wyszukiwarce (30L$/tyg.)" name="ShowDirectoryCheck" tool_tip="UdostÄ™pnij ukazywanie siÄ™ nazwy posiadÅ‚oÅ›ci w wyszukiwarce"/> + <string name="search_enabled_tooltip"> + UdostÄ™pnij wyÅ›wietlanie tej posiadÅ‚oÅ›ci w wyszukiwarce + </string> + <string name="search_disabled_small_tooltip"> + Wybrana opcja jest wyÅ‚Ä…czona ze wzglÄ™du iż wielkość posiadÅ‚oÅ›ci wynosi 128 m² bÄ…dź mniej. +Jedynie wiÄ™ksze posiadÅ‚oÅ›ci mogÄ… być umieszczone w bazie wyszukiwarki. + </string> + <string name="search_disabled_permissions_tooltip"> + Wybrana opcja jest wyÅ‚Ä…czona ponieważ nie posiadasz prawa do modyfikacji posiadÅ‚oÅ›ci. + </string> + <combo_box name="land category with adult"> + <combo_item name="AnyCategory"> + Każda Kategoria + </combo_item> + <combo_item name="LindenLocation"> + Linden Lokacja + </combo_item> + <combo_item name="Adult"> + 'Adult' + </combo_item> + <combo_item name="Arts&Culture"> + Sztuka i Kultura + </combo_item> + <combo_item name="Business"> + Biznes + </combo_item> + <combo_item name="Educational"> + Edukacja + </combo_item> + <combo_item name="Gaming"> + Gra + </combo_item> + <combo_item name="Hangout"> + Poznawanie ludzi + </combo_item> + <combo_item name="NewcomerFriendly"> + Przyjazne dla nowych + </combo_item> + <combo_item name="Parks&Nature"> + Park i Natura + </combo_item> + <combo_item name="Residential"> + Mieszkalna + </combo_item> + <combo_item name="Shopping"> + Zakupy + </combo_item> + <combo_item name="Other"> + Inne + </combo_item> + </combo_box> <combo_box name="land category"> <combo_item name="AnyCategory"> Każda @@ -259,7 +349,6 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz <combo_item name="LindenLocation"> Linden Lokacja </combo_item> - <combo_item name="Arts&Culture"> Sztuka i Kultura </combo_item> @@ -292,7 +381,19 @@ Idź do Åšwiat > O PosiadÅ‚oÅ›ci albo wybierz innÄ… posiadÅ‚ość żeby pokaz </combo_item> </combo_box> <button label="?" label_selected="?" name="?"/> - <check_box name="MatureCheck" /> + <check_box label="Treść 'Mature'" name="MatureCheck" tool_tip=""/> + <string name="mature_check_mature"> + Treść 'Mature' + </string> + <string name="mature_check_adult"> + Treść 'Adult' + </string> + <string name="mature_check_mature_tooltip"> + Twoja posiadÅ‚ość bÄ…dź treść jakÄ… zawiera klasyfikowana jest jako 'Mature'. + </string> + <string name="mature_check_adult_tooltip"> + Informacje o Twojej posiadÅ‚oÅ›ci i treÅ›ci jakÄ… zawiera klasyfikowane sÄ… jako 'Adult'. + </string> <text length="1" name="Snapshot:" type="string"> ZdjÄ™cie: </text> @@ -371,21 +472,14 @@ Mediów: <text length="1" name="Sound:" type="string"> DźwiÄ™k: </text> - <check_box label="Ogranicz dźwiÄ™ki przestrzenne w posiadÅ‚oÅ›ci" name="check sound local"/> + <check_box label="Restrykcja obiektów oraz gestur dozwolonych w tej posiadÅ‚oÅ›ci" name="check sound local"/> + <button label="?" label_selected="?" name="?" left="432"/> <text length="1" name="Voice settings:" type="string"> GÅ‚os: </text> - <radio_group name="parcel_voice_channel" width="310"> - <radio_item length="1" name="Estate" type="string"> - Użyj kanaÅ‚u przestrzennego na posiadloÅ›ci - </radio_item> - <radio_item length="1" name="Private" type="string"> - Użyj kanaÅ‚u prywatnego na posiadloÅ›ci - </radio_item> - <radio_item length="1" name="Disabled" type="string"> - Zablokuj kanaÅ‚ przestrzenny na posiadloÅ›ci - </radio_item> - </radio_group> + <check_box label="Rozmowy Dozwolone" name="parcel_enable_voice_channel"/> + <check_box label="Rozmowy Dozwolone (ustawione przez majÄ…tek)" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box label="Ogranicz komunikacjÄ™ gÅ‚osowÄ… w tej posiadÅ‚oÅ›ci." name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="DostÄ™p" name="land_access_panel"> <text length="1" name="Limit access to this parcel to:" type="string"> diff --git a/indra/newview/skins/default/xui/pl/floater_animation_preview.xml b/indra/newview/skins/default/xui/pl/floater_animation_preview.xml index d1300a0e3c611e3ff828a399a366d9a40b9204e9..0524b8ade32db358091f209e4727f517ee86f322 100755 --- a/indra/newview/skins/default/xui/pl/floater_animation_preview.xml +++ b/indra/newview/skins/default/xui/pl/floater_animation_preview.xml @@ -7,11 +7,11 @@ Opis: </text> <spinner label="PierwszeÅ„stwo" name="priority" - tool_tip="Kontroluj,które z animacji,które też używasz mogÄ… zostać zdominowane przez tÄ… animacjÄ™" /> - <check_box label="Loop" name="loop_check" tool_tip="Powtarzaj tÄ™ animacjÄ™" /> - <spinner label="In(%)" name="loop_in_point" + tool_tip="Kontroluj,animacje,które mogÄ… zostać zdominowane przez tÄ… animacjÄ™" /> + <check_box label="Powtarzaj" name="loop_check" tool_tip="Powtarzaj tÄ… animacjÄ™" /> + <spinner label="Od(%)" name="loop_in_point" tool_tip="Wybierz punkt, od którego chcesz zacząć powtarzać animacjÄ™" /> - <spinner label="Out(%)" name="loop_out_point" + <spinner label="Do(%)" name="loop_out_point" tool_tip="Wybierz punkt, od którego chcesz zakoÅ„czyć powtarznie animacji" /> <text name="hand_label"> Pozycja RÄ™ki @@ -62,7 +62,7 @@ Ekspresja </text> <combo_box label="" name="emote_combo" - tool_tip="Kontroluj co wykonuje twarz w czasie animacji"> + tool_tip="Kontroluj mimikÄ™ twarzy w czasie animacji"> <combo_item name="[None]"> [Å»adne] </combo_item> @@ -73,7 +73,7 @@ Obawa </combo_item> <combo_item name="Angry"> - Zlość + ZÅ‚ość </combo_item> <combo_item name="BigSmile"> Duży UÅ›miech @@ -82,7 +82,7 @@ Znudzenie </combo_item> <combo_item name="Cry"> - Placz + PÅ‚acz </combo_item> <combo_item name="Disdain"> Wzgarda @@ -125,21 +125,21 @@ </combo_item> </combo_box> <text name="preview_label"> - PrzeglÄ…daj kiedy + PrzeglÄ…daj kiedy: </text> <combo_box label="" name="preview_base_anim" tool_tip="Przetestuj zachowanie animacji kiedy awatar wykonuje normalne czynnoÅ›ci"> <combo_item name="Standing"> - Stanie + Stoisz </combo_item> <combo_item name="Walking"> - Chodzenie + Chodzisz </combo_item> <combo_item name="Sitting"> - Siedzenie + Siedzisz </combo_item> <combo_item name="Flying"> - Latanie + Latasz </combo_item> </combo_box> <spinner label="ZÅ‚agodzić w (sekund)" name="ease_in_time" @@ -150,12 +150,12 @@ <button label="" name="stop_btn" tool_tip="Stop animation playback" /> <slider label="" name="playback_slider" /> <text name="bad_animation_text"> - Niemożliwość odczytania pliku animacji do wyÅ›wietlenia/ - - Sugerujemy pliki BVH eksportowane z pozycji. + Brak możliwoÅ›ci wczytania pliku animacji. + +Doradzamy eksport plików BVH z Poser 4. </text> <button label="Anuluj" name="cancel_btn" /> - <button label="Upload (L$[AMOUNT])" name="ok_btn" /> + <button label="ZaÅ‚aduj (L$[AMOUNT])" name="ok_btn" /> <string name="failed_to_initialize"> Inicjalizacja ruchu nie powiodÅ‚a siÄ™. </string> diff --git a/indra/newview/skins/default/xui/pl/floater_auction.xml b/indra/newview/skins/default/xui/pl/floater_auction.xml index a81850c2fddb6a55c79e3b27ca9aa95fc70d9ca4..65a1bb85ea696730f9e7b224d204ce107c4e6056 100755 --- a/indra/newview/skins/default/xui/pl/floater_auction.xml +++ b/indra/newview/skins/default/xui/pl/floater_auction.xml @@ -4,6 +4,6 @@ <button label="ZdjÄ™ce" label_selected="ZdjÄ™ce" name="snapshot_btn" /> <button label="OK" label_selected="OK" name="ok_btn" /> <string name="already for sale"> - Nie możesz umiescić posiadÅ‚oÅ›ci na aukcji, jeżeli już zostaÅ‚a wystawiona na sprzedaż. + Nie możesz umieÅ›cić posiadÅ‚oÅ›ci na aukcji, jeżeli już zostaÅ‚a wystawiona na sprzedaż. </string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml b/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml index 9a3355358e795efa6f5cc27692820a07b50d634f..cf4dcb91bf70327b423be70822c4c0109566f2db 100755 --- a/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/pl/floater_avatar_picker.xml @@ -1,15 +1,40 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatarpicker" title="Wybierz Rezydenta"> - <text name="instruct_search_resident_name"> - Wpisz imiÄ™ Rezydenta: - </text> - <button label="Znajdź" label_selected="Znajdź" name="Find" /> - <text name="Or select their calling card:"> - lub wybierz wizytówkÄ™: - </text> - <button label="Zamknij" label_selected="Zamknij" name="Close" /> - <button label="Wybierz" label_selected="Wybierz" name="Select" /> - <string name="NotFound"> - '[TEXT]' nie odnaleziony + <tab_container name="ResidentChooserTabs"> + <panel label="Znajdź" name="SearchPanel"> + <text name="InstructSearchResidentName"> + Wpisz imiÄ™ Rezydenta: + </text> + <button label="Znajdź" label_selected="Znajdź" name="Find"/> + </panel> + <panel label="Wizytówka" name="CallingCardsPanel"> + <text name="InstructSelectCallingCard"> + Wybierz wizytówkÄ™: + </text> + </panel> + <panel label="Obok mnie:" name="NearMePanel"> + <text name="InstructSelectResident"> + Wybierz Rezydenta obok: + </text> + <button label="OdÅ›wież" label_selected="OdÅ›wież" name="Refresh"/> + <slider label="ZasiÄ™g" name="near_me_range"/> + <text name="meters"> + Metry + </text> + </panel> + </tab_container> + <button label="Wybierz" label_selected="Wybierz" name="Select"/> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> + <string name="not_found"> + '[TEXT]' nie zostaÅ‚o odnalezione + </string> + <string name="no_one_near"> + Nikt w pobliżu + </string> + <string name="no_results"> + Brak wyników + </string> + <string name="searching"> + Wyszukiwanie... </string> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml b/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml index f6f36d5b687ea51fb94da070b4e4a22a930021de..b27c90b8f2f14ee4077aed70a6831e2306428e88 100755 --- a/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml +++ b/indra/newview/skins/default/xui/pl/floater_avatar_textures.xml @@ -17,10 +17,10 @@ <texture_picker label="Podkoszulek" name="undershirt" /> <texture_picker label="RÄ™kawiczki" name="gloves" /> <texture_picker label="Koszula" name="shirt" /> - <texture_picker label="Wierznie Górne Ubranie" name="upper_jacket" /> + <texture_picker label="Górna Część Kurtki" name="upper_jacket" /> <texture_picker label="Dolna Część CiaÅ‚a" name="baked_lower_body" /> <texture_picker label="Tatuaż Dolnej Części CiaÅ‚a" name="lower_bodypaint" /> - <texture_picker label="Majtasy" name="underpants" /> + <texture_picker label="Bielizna" name="underpants" /> <texture_picker label="Skarpety" name="socks" /> <texture_picker label="Buty" name="shoes" /> <texture_picker label="Spodnie" name="pants" /> diff --git a/indra/newview/skins/default/xui/pl/floater_beacons.xml b/indra/newview/skins/default/xui/pl/floater_beacons.xml index 9f614470da90b31d15d5eb5515382b102354f3f8..fd12d1359595648ef838bd4ac47a922c61df8f2c 100644 --- a/indra/newview/skins/default/xui/pl/floater_beacons.xml +++ b/indra/newview/skins/default/xui/pl/floater_beacons.xml @@ -9,7 +9,7 @@ <check_box label="PodkreÅ›l Emitery" name="highlights"/> <check_box label="Pokaż Emitery" name="beacons"/> <text name="beacon_width_label"> - Szerokość Emiterów: + ZasiÄ™g Emiterów: </text> </panel> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_build_options.xml b/indra/newview/skins/default/xui/pl/floater_build_options.xml index 71363e39546e179a1193bfa1cd7662d716734e98..7cbc4106144366eabf5892fde0b306eb51c7aa28 100755 --- a/indra/newview/skins/default/xui/pl/floater_build_options.xml +++ b/indra/newview/skins/default/xui/pl/floater_build_options.xml @@ -3,6 +3,6 @@ <spinner label="Jednostka Siatki (metry)" name="GridResolution" /> <spinner label="Rozmiary Siatki (metry)" name="GridDrawSize" /> <check_box label="UdostÄ™pnij Podjednostkowe Dopasowywanie" name="GridSubUnit" /> - <check_box label="Pokaż Sekcje SkroÅ›ne" name="GridCrossSection" /> + <check_box label="Pokaż Sekcje SkoÅ›ne" name="GridCrossSection" /> <slider label="Nieprzezroczystość Siatki" name="GridOpacity" /> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_bulk_perms.xml b/indra/newview/skins/default/xui/pl/floater_bulk_perms.xml new file mode 100644 index 0000000000000000000000000000000000000000..a99acdb23853b55d2d0dfcb6ca2ee3cc7f67047f --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_bulk_perms.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floaterbulkperms" title="Hurtowa zmiana praw zawartoÅ›ci"> + <text name="applyto"> + Rodzaj ZawartoÅ›ci + </text> + <check_box label="Animacje" name="check_animation"/> + <check_box label="Części CiaÅ‚a" name="check_bodypart"/> + <check_box label="Ubranie" name="check_clothing"/> + <check_box label="Gestury" name="check_gesture"/> + <check_box label="ZapamiÄ™tane Miejsca" name="check_landmark"/> + <check_box label="Noty" name="check_notecard"/> + <check_box label="Obiekty" name="check_object"/> + <check_box label="Skrypty" name="check_script"/> + <check_box label="DźwiÄ™ki" name="check_sound"/> + <check_box label="Tekstury" name="check_texture"/> + <button width="115" font="SansSerifSmall" label="Wybierz Wszystkie" label_selected="Wszystkie" name="check_all"/> + <button width="115" font="SansSerifSmall" label="Odznacz Wszystkie" label_selected="Å»adne" name="check_none"/> + <text name="newperms"> + Nowe Prawa + </text> + <check_box label="UdostÄ™pnij Grupie" name="share_with_group"/> + <check_box label="Pozwól kopiować każdemu" name="everyone_copy"/> + <text name="NextOwnerLabel"> + NastÄ™pny WÅ‚aÅ›ciciel: + </text> + <check_box label="Modyfikuje" name="next_owner_modify"/> + <check_box label="Kopiuje" name="next_owner_copy"/> + <check_box label="Oddaje/Sprzedaje" name="next_owner_transfer"/> + <button label="Pomoc" name="help"/> + <button label="Zastosuj" name="apply"/> + <button label="Zamknij" name="close"/> + <string name="nothing_to_modify_text"> + Selekcja zawiera zawartość niemodfyfikowalnÄ… + </string> + <string name="status_text"> + Ustawienie praw na [NAME] + </string> + <string name="start_text"> + RozpoczÄ™cie proÅ›by o zmianÄ™ praw... + </string> + <string name="done_text"> + ZakoÅ„czenie proÅ›by o zmianÄ™ praw. + </string> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_bumps.xml b/indra/newview/skins/default/xui/pl/floater_bumps.xml index 88b1ed4fb3443588289776782ef6bcdada32b41a..365268dbd671c23ce564d6b3f20cbd01f159b429 100755 --- a/indra/newview/skins/default/xui/pl/floater_bumps.xml +++ b/indra/newview/skins/default/xui/pl/floater_bumps.xml @@ -7,7 +7,7 @@ [TIME] [FIRST] [LAST] awatar zderzyÅ‚ siÄ™ z TobÄ… </string> <string name="llpushobject"> - [TIME] [FIRST] [LAST] awatar pochnÄ…Å‚ CiÄ™ swoim skryptem + [TIME] [FIRST] [LAST] awatar popchnÄ…Å‚ CiÄ™ swoim skryptem </string> <string name="selected_object_collide"> [TIME] [FIRST] [LAST] awatar uderzyÅ‚ CiÄ™ swoim obiektem diff --git a/indra/newview/skins/default/xui/pl/floater_buy_currency.xml b/indra/newview/skins/default/xui/pl/floater_buy_currency.xml index dd0b0694671fa861bcbf7e8a18fa89783e8ef785..a5c0a2498ab68c3c555d307a585701518649c5de 100755 --- a/indra/newview/skins/default/xui/pl/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/pl/floater_buy_currency.xml @@ -10,7 +10,7 @@ Potrzebujesz wiecÄ™j L$: </text> <text name="error_message"> - Pojawienie siÄ™ bÅ‚edu. + Pojawienie siÄ™ bÅ‚Ä™du. </text> <button label="Idź do strony internetowej" name="error_web" width="168"/> <text name="contacting"> @@ -23,13 +23,13 @@ [NAME] [PRICE]L$ </text> <text name="currency_action"> - Kup L$ + Kup </text> - <line_editor name="currency_amt"> + <line_editor name="currency_amt" left_delta="32"> 1234 </line_editor> <text name="currency_est"> - za [USD]US$ + L$ za [USD]US$ </text> <text name="getting_data"> Otrzymywanie danych... @@ -52,12 +52,12 @@ <text name="total_amount"> [AMT]L$ </text> - <text name="purchase_warning_repurchase"> - PotwierdzajÄ…c tÄ™ transkacjÄ™ zgadzasz siÄ™ na zakup -TYLKO waluty. ProszÄ™ spróbować wykonać -operacjÄ™ jeszcze raz. + <text name="purchase_warning_repurchase" height="48" bottom_delta="-64" right="-10"> + DokonujÄ…c potwierdzenia na podanÄ… transakcjÄ™, +wyrażasz zgodÄ™ jedynie na zakup waluty. +Sprobuj wykonać operacjÄ™ ponownie. </text> - <text name="purchase_warning_notenough"> + <text name="purchase_warning_notenough" bottom_delta="16"> Nie zakupujesz wystarczajÄ…cej iloÅ›ci waluty. ProszÄ™ zwiÄ™kszyć ilość. </text> diff --git a/indra/newview/skins/default/xui/pl/floater_buy_land.xml b/indra/newview/skins/default/xui/pl/floater_buy_land.xml index 0af12e0c6d416ae0510d60f59999ed52f18feed4..110360656945ed213f3dbaefd05f643980714936 100755 --- a/indra/newview/skins/default/xui/pl/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/pl/floater_buy_land.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="buy land" title="Buy Land"> <text name="region_name_label"> Region: @@ -6,6 +6,12 @@ <text name="region_name_text"> (brak danych) </text> + <text name="region_type_label"> + Typ: + </text> + <text name="region_type_text"> + (nieznany) + </text> <text name="estate_name_label"> MajÄ…tek: </text> @@ -22,10 +28,10 @@ PosiadÅ‚oÅ›ci zakupione w tym Regionie: </text> <text name="resellable_clause"> - PosiadÅ‚osci zakupione w tym Regionie mogÄ… lub nie mogÄ… być odsprzedane. + PosiadÅ‚ość może lub nie może być odsprzedana. </text> <text name="changeable_clause"> - mogÄ… lub nie mogÄ… być Å‚aczone i dzielone. + PosiadÅ‚ość może lub nie może być dzielona i Å‚Ä…czona. </text> <text name="covenant_text"> Musisz zaakceptować UmowÄ™ z MajÄ…tku: @@ -33,32 +39,34 @@ <text_editor name="covenant_editor"> Åadowanie... </text_editor> - <check_box label="Zgadzam siÄ™ na PowyższÄ… UmowÄ™." name="agree_covenant" /> + <check_box label="Zgadzam siÄ™ na PowyższÄ… UmowÄ™." name="agree_covenant"/> <text name="info_parcel_label" width="60"> PosiadÅ‚ość: </text> - <text name="info_parcel" left_delta="62"> + <text left_delta="62" name="info_parcel"> Scotopteryx 138,204 </text> <text name="info_size_label"> Obszar: </text> - <text name="info_size" left_delta="62"> - 1024 m. + <text left_delta="62" name="info_size"> + 1024 m² </text> <text name="info_price_label"> Cena: </text> - <text name="info_price" left_delta="62"> - 1500 L$, obiekty wliczone + <text left_delta="62" name="info_price"> + L$ 1500 +(L$ 1.1/m²) +sprzedaż z obiektami </text> <text name="info_action"> Zakup tej PosiadÅ‚oÅ›ci spowoduje: </text> <text name="error_message"> - CoÅ› siÄ™ nie zgadza. + WystÄ…piÅ‚ bÅ‚Ä…d. </text> - <button label="Idź na stronÄ™ www" name="error_web" /> + <button label="Idź na stronÄ™ www" name="error_web"/> <text name="account_action"> ZmianÄ™ Twojego konta na Premium. </text> @@ -80,14 +88,14 @@ ZwiÄ™ksz opÅ‚atÄ™ za używanie PosiadÅ‚oÅ›ci do 40US$/miesiÄ…c. </text> <text name="land_use_reason"> - Twoje PosiadÅ‚oÅ›ci majÄ… powierzchniÄ™ 1,309 metrów. -Ta PosiadÅ‚ość ma 512 metrów. + JesteÅ› wÅ‚aÅ›cicielem 1309 m² ziemi. +PosiadÅ‚ość ta zawiera 512 m² ziemi. </text> <text name="purchase_action"> - ZapÅ‚ać Rezydentowi Jasiowi 4000L$ za PosiadÅ‚ość + Pay Joe Resident L$ 4000 for the land </text> <text name="currency_reason"> - Masz 2,100L$. + You have L$ 2,100. </text> <text name="currency_action"> Kup wiÄ™cej L$ @@ -101,9 +109,9 @@ Ta PosiadÅ‚ość ma 512 metrów. <text name="currency_balance"> Masz 2,100L$. </text> - <check_box label="Zabierz [AMOUNT] metrów donacji z Grupy." name="remove_contribution" /> - <button label="Zakup" name="buy_btn" /> - <button label="Anuluj" name="cancel_btn" /> + <check_box label="Zabierz [AMOUNT] metrów donacji z Grupy." name="remove_contribution"/> + <button label="Zakup" name="buy_btn"/> + <button label="Anuluj" name="cancel_btn"/> <string name="can_resell"> Może być odsprzedana. </string> @@ -160,7 +168,7 @@ Spróbuj wybrać inny obszar. Zakup tej PosiadÅ‚oÅ›ci spowoduje: </string> <string name="buying_for_group"> - Zakup PosiadÅ‚oÅ›ci dla Grupy: + Zakup ziemi dla grupy: </string> <string name="cannot_buy_now"> Nie możesz teraz kupić: @@ -169,7 +177,7 @@ Spróbuj wybrać inny obszar. Nie jest na sprzedaż: </string> <string name="none_needed"> - wszystko w porzÄ…dku + Poprawność danych. </string> <string name="must_upgrade"> Musisz mieć konto Premium żebyÅ› mógÅ‚ mieć PosiadÅ‚oÅ›ci. @@ -178,30 +186,38 @@ Spróbuj wybrać inny obszar. Twoje konto pozwala Ci mieć PosiadÅ‚oÅ›ci. </string> <string name="land_holdings"> - Twoje PosiadÅ‚oÅ›ci majÄ… [BUYER] metrów. + JesteÅ› wÅ‚aÅ›cicielem [BUYER] m² ziemi. </string> <string name="pay_to_for_land"> ZapÅ‚ać [SELLER] [AMOUNT]L$ za PosiadÅ‚ość </string> <string name="buy_for_US"> - Kup [AMOUNT]L$ za okoÅ‚o [AMOUNT2]US$ , + Kup L$ [AMOUNT] za US$ [AMOUNT2], </string> <string name="parcel_meters"> - Ta PosiadÅ‚ość ma [AMOUNT] metrów. + Podana posiadÅ‚ość to [AMOUNT] m² ziemi. </string> <string name="premium_land"> - To jest wartoÅ›ciowa PosiadÅ‚ość i kosztuje [AMOUNT] za metr. + Podana posiadÅ‚ość jest w cenie premium adekwatnie jak za [AMOUNT] m². </string> <string name="discounted_land"> - To jest przeceniona PosiadÅ‚ość i kosztuje [AMOUNT] za metr. + Wybrana posiadÅ‚ość jest w cenie zniżkowej adekwatnie jak za [AMOUNT] m². </string> <string name="meters_supports_object"> - [AMOUNT] metrów -pozwala na [AMOUNT2] obikty + [AMOUNT] m² +wspiera [AMOUNT2] obiektów </string> <string name="sold_with_objects"> sprzedane z obiektami </string> + <string name="sold_without_objects"> + obiekty nie sÄ… zawarte w sprzedaży + </string> + <string name="info_price_string"> + L$ [PRICE] +(L$ [PRICE_PER_SQM]/m²) +[SOLD_WITH_OBJECTS] + </string> <string name="insufficient_land_credits"> Grupa [GROUP] musi mieć wystarczajÄ…cy kredyt na używanie PosiadÅ‚oÅ›ci żeby sfinalizować ten zakup. diff --git a/indra/newview/skins/default/xui/pl/floater_camera.xml b/indra/newview/skins/default/xui/pl/floater_camera.xml index 985d69a9e1551acd8477a2775d535991abb8110d..24da91c08162f05c48e6ca773b682a581b6ab7a4 100755 --- a/indra/newview/skins/default/xui/pl/floater_camera.xml +++ b/indra/newview/skins/default/xui/pl/floater_camera.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <floater name="move floater" title=""> <string name="rotate_tooltip"> - Odwracaj kamerÄ™ wokół obiektu + Obracaj kamerÄ™ wokół obiektu </string> <string name="zoom_tooltip"> Najedź kamerÄ… w kierunku obiektu diff --git a/indra/newview/skins/default/xui/pl/floater_critical.xml b/indra/newview/skins/default/xui/pl/floater_critical.xml index a6558ae92bc13d0bb293a1c27c3d2014e0d722d1..8221a4e1bdf2442ca8ed7ff008604909e91d60f4 100755 --- a/indra/newview/skins/default/xui/pl/floater_critical.xml +++ b/indra/newview/skins/default/xui/pl/floater_critical.xml @@ -3,7 +3,7 @@ <button label="Kontynuuj" label_selected="Kontynuuj" name="Continue" /> <button label="Anuluj" label_selected="Anuluj" name="Cancel" /> <text name="tos_heading"> - ProszÄ™ przeczytać poniższÄ… wiadomość ostrożnie + ProszÄ™ przeczytać poniższÄ… wiadomość dokÅ‚adnie. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/pl/floater_customize.xml b/indra/newview/skins/default/xui/pl/floater_customize.xml index e026053e749dac092830423668287385415c3ac1..83c7c5c87d4f986c2c715b1156b5d215f4ad3a69 100755 --- a/indra/newview/skins/default/xui/pl/floater_customize.xml +++ b/indra/newview/skins/default/xui/pl/floater_customize.xml @@ -1,456 +1,484 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="floater customize" title="WyglÄ…d"> <tab_container name="customize tab container"> - <panel label="Części CiaÅ‚a" name="body_parts_placeholder" /> + <panel label="Części CiaÅ‚a" name="body_parts_placeholder"/> <panel label="KsztaÅ‚t" name="Shape"> - <button label="Wróć" label_selected="Wróć" name="Revert" /> - <button label="CiaÅ‚o" label_selected="CiaÅ‚o" name="Body" /> - <button label="GÅ‚owa" label_selected="GÅ‚owa" name="Head" /> - <button label="Oczy" label_selected="Oczy" name="Eyes" /> - <button label="Uszy" label_selected="Uszy" name="Ears" /> - <button label="Nos" label_selected="Nos" name="Nose" /> - <button label="Usta" label_selected="Usta" name="Mouth" /> - <button label="Broda " label_selected="Broda" name="Chin" /> - <button label="Tułów" label_selected="Tułów" name="Torso" /> - <button label="Nogi" label_selected="Nogi" name="Legs" /> + <button label="Wróć" label_selected="Wróć" name="Revert"/> + <button label="CiaÅ‚o" label_selected="CiaÅ‚o" name="Body"/> + <button label="GÅ‚owa" label_selected="GÅ‚owa" name="Head"/> + <button label="Oczy" label_selected="Oczy" name="Eyes"/> + <button label="Uszy" label_selected="Uszy" name="Ears"/> + <button label="Nos" label_selected="Nos" name="Nose"/> + <button label="Usta" label_selected="Usta" name="Mouth"/> + <button label="Broda " label_selected="Broda" name="Chin"/> + <button label="Tułów" label_selected="Tułów" name="Torso"/> + <button label="Nogi" label_selected="Nogi" name="Legs"/> <radio_group name="sex radio"> - <radio_item type="string" length="1" name="radio"> + <radio_item length="1" name="radio" type="string"> Kobieta </radio_item> - <radio_item type="string" length="1" name="radio2"> + <radio_item length="1" name="radio2" type="string"> Mężczyzna </radio_item> </radio_group> - <button label="Losowe" label_selected="Losowe" name="Randomize" /> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: zabroniona modyfikacja </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowy ksztaÅ‚t poprzez przeciÄ…gniÄ™cie go ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asny ksztaÅ‚t -z plików roboczych. --> (Kliknij na Nowy KsztaÅ‚t) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tego ksztaÅ‚tu. </text> - <button label="Nowy KsztaÅ‚t" label_selected="Nowy KsztaÅ‚t" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> + <text name="Item Action Label"> + KsztaÅ‚t: + </text> + <button label="Nowy KsztaÅ‚t" label_selected="Nowy KsztaÅ‚t" name="Create New"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> </panel> <panel label="Skórka" name="Skin"> - <button label="Kolor Skórki" label_selected="Kolor Skórki" name="Skin Color" /> - <button label="Detale Twarzy" label_selected="Detale Twarzy" name="Face Detail" /> - <button label="Makijaż" label_selected="Makijaż" name="Makeup" /> - <button label="Detale CiaÅ‚a" label_selected="Detale CiaÅ‚a" name="Body Detail" /> - <text type="string" length="1" name="title"> + <button label="Kolor Skórki" label_selected="Kolor Skórki" name="Skin Color"/> + <button label="Detale Twarzy" label_selected="Detale Twarzy" name="Face Detail"/> + <button label="Makijaż" label_selected="Makijaż" name="Makeup"/> + <button label="Detale CiaÅ‚a" label_selected="Detale CiaÅ‚a" name="Body Detail"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowÄ… skórkÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… skórkÄ™ -z plików roboczych. --> (Kliknij na Nowa Skórka) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tej skórki. </text> - <texture_picker label="Tatuaże GÅ‚owy" name="Head Tattoos" - tool_tip="Kliknij by wybrać teksturÄ™" /> - <texture_picker label="Tatuaże Górne" name="Upper Tattoos" - tool_tip="Kliknij by wybrać teksturÄ™" /> - <texture_picker label="Tatuaże Dolne" name="Lower Tattoos" - tool_tip="Kliknij by wybrać teksturÄ™" /> - <button label="Losowe" label_selected="Losowe" name="Randomize" /> - <button label="Nowa Skórka" label_selected="Nowa Skórka" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + Skórka: + </text> + <texture_picker label="Tatuaże GÅ‚owy" name="Head Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> + <texture_picker label="Tatuaże Górne" name="Upper Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> + <texture_picker label="Tatuaże Dolne" name="Lower Tattoos" tool_tip="Kliknij by wybrać teksturÄ™"/> + <button label="Nowa Skórka" label_selected="Nowa Skórka" name="Create New"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="WÅ‚osy" name="Hair"> - <button label="Kolor" label_selected="Kolor" name="Color" /> - <button label="Styl" label_selected="Styl" name="Style" /> - <button label="Brwi" label_selected="Brwi" name="Eyebrows" /> - <button label="Twarzy" label_selected="Twarzy" name="Facial" /> - <text type="string" length="1" name="title"> + <button label="Kolor" label_selected="Kolor" name="Color"/> + <button label="Styl" label_selected="Styl" name="Style"/> + <button label="Brwi" label_selected="Brwi" name="Eyebrows"/> + <button label="Twarzy" label_selected="Twarzy" name="Facial"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowe wÅ‚osy poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne wÅ‚osy -z plików roboczych. --> (Kliknij na Nowe WÅ‚osy) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tych wÅ‚osów. </text> - <texture_picker label="Tekstura" name="Texture" tool_tip="Kliknij by wybrać teksturÄ™" /> - <button label="Losowe" label_selected="Losowe" name="Randomize" /> - <button label="Nowe WÅ‚osy" label_selected="Nowe WÅ‚osy" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + WÅ‚osy: + </text> + <texture_picker label="Tekstura" name="Texture" tool_tip="Kliknij by wybrać teksturÄ™"/> + <button label="Nowe WÅ‚osy" label_selected="Nowe WÅ‚osy" name="Create New"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Oczy" name="Eyes"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowe oczy poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne oczy -z plików roboczych. --> (Kliknij na Nowe Oczy) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tych oczów. </text> - <texture_picker label="TÄ™czówka" name="Iris" tool_tip="Kliknij by wybrać teksturÄ™" /> - <button label="Losowe" label_selected="Losowe" name="Randomize" /> - <button label="Nowe Oczy" label_selected="Nowe Oczy" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + Oczy: + </text> + <texture_picker label="TÄ™czówka" name="Iris" tool_tip="Kliknij by wybrać teksturÄ™"/> + <button label="Nowe Oczy" label_selected="Nowe Oczy" name="Create New"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> - <panel label="Ubrania" name="clothes_placeholder" /> + <panel label="Ubrania" name="clothes_placeholder"/> <panel label="Koszula" name="Shirt"> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowa Koszula" label_selected="Nowa Koszula" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> - <text type="string" length="1" name="title"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowa Koszula" label_selected="Nowa Koszula" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikowanie zabronione </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowÄ… koszulÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… koszulÄ™ -z plików roboczych. --> (Kliknij na Nowa Koszula) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tej koszuli. </text> + <text name="Item Action Label"> + Koszulka: + </text> </panel> <panel label="Spodnie" name="Pants"> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij tutaj by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowe Spodnie" label_selected="Nowe Spodnie" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> - <text type="string" length="1" name="title"> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij tutaj by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowe Spodnie" label_selected="Nowe Spodnie" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikcja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowe spodnie poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne spodnie -z plików roboczych. --> (Kliknij na Nowe Spodnie) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tych spodni. </text> + <text name="Item Action Label"> + Spodnie: + </text> </panel> <panel label="Buty" name="Shoes"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adwanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowe buty poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne buty -z plików roboczych. --> (Kliknij na Nowe Buty) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tych butów. </text> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowe Buty" label_selected="Nowe Buty" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + Buty: + </text> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowe Buty" label_selected="Nowe Buty" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Skarpety" name="Socks"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowe skarpety poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne skarpety -z plików roboczych. --> (Kliknij na Nowe Skarpety) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tych skarpet. </text> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowe Skarpety" label_selected="Nowe Skarpety" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + Skarpetki: + </text> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowe Skarpety" label_selected="Nowe Skarpety" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Kurtka" name="Jacket"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowÄ… kurtkÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… kurtkÄ™ -z plików roboczych. --> (Kliknij na Nowa Kurtka) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tej kurtki. </text> + <text name="Item Action Label"> + Kurtka: + </text> <texture_picker label="Górny MateriaÅ‚" name="Upper Fabric" tool_tip="Kliknij by wybrać teksturÄ™" width="76"/> <texture_picker label="Dolny MateriaÅ‚" name="Lower Fabric" tool_tip="Kliknij by wybrać kolor" width="76"/> <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" width="76"/> - <button label="Nowa Kurtka" label_selected="Nowa Kurtka" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <button label="Nowa Kurtka" label_selected="Nowa Kurtka" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="RÄ™kawiczki" name="Gloves"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowe rÄ™kawiczki poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asne rÄ™kawiczki -z plików roboczych. --> (Kliknij na Nowe RÄ™kawiczki) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tych rÄ™kawiczek </text> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowe RÄ™kawiczki" label_selected="Nowe RÄ™kawiczki" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + RÄ™kawiczki: + </text> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowe RÄ™kawiczki" label_selected="Nowe RÄ™kawiczki" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Podkoszulek" name="Undershirt"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowy podkoszulek poprzez przeciÄ…gniÄ™cie ich ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asny podkoszulek -z plików roboczych. --> (Kliknij na Nowy Podkoszulek) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tego podkoszulka. </text> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowy Podkoszulek" label_selected="Nowy Podkoszulek" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + Podkoszulka: + </text> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowy Podkoszulek" label_selected="Nowy Podkoszulek" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Bielizna" name="Underpants"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowÄ… bieliznÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… bieliznÄ™ -z plików roboczych. --> (Kliknij na Nowa Bielizna) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tej bielizny. </text> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowa Bielizna" label_selected="Nowa Bielizna" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + Bielizna: + </text> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowa Bielizna" label_selected="Nowa Bielizna" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> <panel label="Spódnica" name="Skirt"> - <text type="string" length="1" name="title"> + <text length="1" name="title" type="string"> [DESC] </text> - <text type="string" length="1" name="title_no_modify"> + <text length="1" name="title_no_modify" type="string"> [DESC]: modyfikacja zabroniona </text> - <text type="string" length="1" name="title_loading"> + <text length="1" name="title_loading" type="string"> [DESC]: Å‚adowanie... </text> - <text type="string" length="1" name="title_not_worn"> + <text length="1" name="title_not_worn" type="string"> [DESC]: niezaÅ‚ożone </text> - <text type="string" length="1" name="path"> + <text length="1" name="path" type="string"> Zapisane w [PATH] </text> - <text type="string" length="1" name="not worn instructions"> + <text length="1" name="not worn instructions" type="string"> Załóż nowÄ… spódnicÄ™ poprzez przeciÄ…gniÄ™cie jej ze swojej szafy na awatara. Alternatywnie, możesz także stworzyć wÅ‚asnÄ… spódnicÄ™ -z plików roboczych. --> (Kliknij na Nowa Spódnica) +z plików roboczych. </text> - <text type="string" length="1" name="no modify instructions"> + <text length="1" name="no modify instructions" type="string"> Nie posiadasz prawa do modyfikowania tej spódnicy. </text> - <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™" /> - <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor" /> - <button label="Nowa Spódnica" label_selected="Nowa Spódnica" name="Create New" /> - <button label="Zdejmij" label_selected="Zdejmij" name="Take Off" /> - <button label="Zapisz" label_selected="Zapisz" name="Save" /> - <button label="Zapisz Jako" label_selected="Zapisz Jako" name="Save As" /> - <button label="Wróć" label_selected="Wróć" name="Revert" /> + <text name="Item Action Label"> + Spódnica: + </text> + <texture_picker label="MateriaÅ‚" name="Fabric" tool_tip="Kliknij by wybrać teksturÄ™"/> + <color_swatch label="Kolor/Barwa" name="Color/Tint" tool_tip="Kliknij by wybrać kolor"/> + <button label="Nowa Spódnica" label_selected="Nowa Spódnica" name="Create New"/> + <button label="Zdejmij" label_selected="Zdejmij" name="Take Off"/> + <button label="Zapisz" label_selected="Zapisz" name="Save"/> + <button label="Zapisz Jako..." label_selected="Zapisz Jako..." name="Save As"/> + <button label="Wróć" label_selected="Wróć" name="Revert"/> </panel> </tab_container> - <button label="Zamknij" label_selected="Zamknij" name="Close" /> - <button label="Zapisz WyglÄ…d" label_selected="Zapisz WyglÄ…d" name="Save All" /> - <button label="Stwórz Ubranie" label_selected="Stwórz Ubranie" name="Make Outfit" /> + <button label="Anuluj" label_selected="Anuluj" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="Stwórz Ubranie..." label_selected="Stwórz Ubranie..." name="Make Outfit" width="115"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_font_test.xml b/indra/newview/skins/default/xui/pl/floater_font_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..586d2690b3c7388904323fee552b76df157d8521 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_font_test.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="Czcionka Tekstu"> + <text name="linea"> + OverrideTest, powinno wyÅ›wietlać siÄ™ jako Times. (From default/xui/en-us) + </text> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_god_tools.xml b/indra/newview/skins/default/xui/pl/floater_god_tools.xml index 92de69eb5ed73778169175fa8e879eedef3794bb..f46cbaa862c8df1cc0f93018060b21b48cb2f307 100755 --- a/indra/newview/skins/default/xui/pl/floater_god_tools.xml +++ b/indra/newview/skins/default/xui/pl/floater_god_tools.xml @@ -2,25 +2,26 @@ <floater name="godtools floater" title="Boskie NarzÄ™dzia"> <tab_container name="GodTools Tabs"> <panel label="Grid" name="grid"> - <button label="UsuÅ„ wszystkich użytkowników" label_selected="UsuÅ„ wszystkich użytkowników" name="Kick all users"/> - <button label="Wyrównaj ten region's Widoczność Buforu Mapy" label_selected="Wyrównaj ten region's Widoczność Buforu Mapy" name="Flush This Region's Map Visibility Caches"/> + <button width="205" label="UsuÅ„ wszystkich użytkowników" label_selected="UsuÅ„ wszystkich użytkowników" name="Kick all users"/> + <button width="285" label="Wyrównaj Widoczność Buforu Mapy Regionu" label_selected="Wyrównaj Widoczność Buforu Mapy Regionu" name="Flush This Region's Map Visibility Caches"/> </panel> <panel label="Region" name="region"> - <text name="Sim Name:"> + <text name="Sim Name:" width="100"> Nazwa Symulatora: </text> + <line_editor left="115" name="region name" width="178" /> <line_editor name="region name"/> <check_box label="WstÄ™p" name="check prelude" /> <check_box label="Korekta SÅ‚oÅ„ca" name="check fixed sun" tool_tip="Skorektuj ustawienia pozycji sÅ‚oÅ„ca."/> - <check_box label="Zresetuj PozycjÄ™ Miejsca Startwego" name="check reset home" /> - <check_box label="Widoczny" name="check visible" tool_tip="Wybierz tÄ™ opcjÄ™ by ustawić region widocznym dla wszystkich."/> + <check_box height="32" label="Zresetuj PozycjÄ™ Miejsca Startowego" name="check reset home" /> + <check_box bottom_delta="-32" label="Widoczny" name="check visible" tool_tip="Wybierz tÄ™ opcjÄ™ by ustawić region widocznym dla wszystkich."/> <check_box label="Zniszczenia" name="check damage" tool_tip="Wybierz tÄ™ opcjÄ™ by uruchomić opcjÄ™ zniszczeÅ„ w regionie."/> <check_box label="Zablokuj Monitorowanie Trafficu" name="block dwell" tool_tip="Wybierz tÄ™ opcjÄ™ by zablokować monitorowanie trafficu w regionie."/> <check_box label="Zablokuj Terraformowanie" name="block terraform" tool_tip="Wybierz tÄ™ opcjÄ™ by zablokować terraforming w regionie"/> <check_box label="Piaskownica" name="is sandbox" /> - <button label="Bake Teren" label_selected="Bake Teren" name="Bake Terrain" tool_tip="Zachowaj obecne ustawienia jako domyÅ›lne"/> - <button label="CofniÄ™cie Modyfikacji" label_selected="CofniÄ™cie Modyfikacji" name="Revert Terrain" tool_tip="Przywróć Ustawienia DomyÅ›lne Regionu."/> - <button label="ZamieÅ„ Teren" label_selected="ZamieÅ„ Teren" name="Swap Terrain" /> + <button width="138" label="Ustal Teren" label_selected="Ustal Teren" name="Bake Terrain" tool_tip="ZapamiÄ™taj obecny teren jako poczÄ…tkowy dla cofniÄ™cia modyfikacji terenu."/> + <button width="138" label="CofniÄ™cie Modyfikacji" label_selected="CofniÄ™cie Modyfikacji" name="Revert Terrain" tool_tip="Przywróć Ustawienia DomyÅ›lne Regionu."/> + <button width="138" label="ZamieÅ„ Teren" label_selected="ZamieÅ„ Teren" name="Swap Terrain" /> <text name="estate id"> ID Regionu: </text> @@ -32,13 +33,13 @@ <text name="Grid Pos: "> Pozycje Gridu: </text> - <line_editor name="gridposx" tool_tip="Pozycja x gridu dla regionu"/> - <line_editor name="gridposy" tool_tip="Pozycja y gridu dla regionu"/> + <line_editor name="gridposx" tool_tip="Pozycja x gridu dla regionu" left_delta="110" width="35" /> + <line_editor name="gridposy" tool_tip="Pozycja y gridu dla regionu" left_delta="45" width="35" /> <text name="Redirect to Grid: "> PrzeÅ‚Ä…cz do gridu: </text> - <line_editor name="redirectx"/> - <line_editor name="redirecty"/> + <line_editor left_delta="110" name="redirectx" width="35" /> + <line_editor left_delta="45" name="redirecty" width="35" /> <spinner name="billable factor"/> <text name="billable factor text"> Czynnik PÅ‚atnośći: @@ -48,15 +49,15 @@ L$/m: </text> <button label="OdÅ›wież" label_selected="OdÅ›wież" name="Refresh" /> - <button label="Apply" label_selected="Apply" name="Apply" /> - <button label="Wybierz Region" label_selected="Wybierz Region" name="Select Region" tool_tip="Wybierz caÅ‚y region za pomocÄ… narzÄ™dzi edycji terenu"/> - <button label="Automatyczne Zapisanie" label_selected="Automatyczne Zapisanie" name="Autosave now" /> + <button label="Zastosuj" label_selected="Zastosuj" name="Apply" /> + <button width="150" left="156" label="Wybierz Region" label_selected="Wybierz Region" name="Select Region" tool_tip="Wybierz caÅ‚y region za pomocÄ… narzÄ™dzi edycji terenu"/> + <button width="150" left="156" label="Automatyczne Zapisanie" label_selected="Automatyczne Zapisanie" name="Autosave now" /> </panel> <panel label="Obiekty" name="objects"> - <text name="Sim Name:"> + <text name="Sim Name:" width="105"> Nazwa Symulatora: </text> - <text name="region name"> + <text name="region name" left_delta="110"> Welsh </text> <check_box label="WyÅ‚Ä…cz Skrypty" name="disable scripts" /> @@ -74,7 +75,7 @@ <button label="Główne Skrypty" label_selected="Główne Skrypty" name="Get Top Scripts" /> <button label="Treść skryptów" label_selected="Treść skryptów" name="Scripts digest" tool_tip="WyÅ›wietla listÄ™ wszystkich skryptów i liczbÄ™ ich zastosowaÅ„."/> </panel> - <panel label="ZarzÄ…daj" name="request"> + <panel label="Zażądaj" name="request"> <text name="Destination:"> Cel: </text> @@ -87,7 +88,7 @@ </combo_item> </combo_box> <text name="Request:"> - RzÄ…danie: + Żądanie: </text> <combo_box name="request"> <combo_item name="colliders<steps>"> @@ -107,7 +108,7 @@ Parameter: </text> <line_editor name="parameter"/> - <button label="ZarzÄ…daj" label_selected="ZarzÄ…daj" name="Make Request"/> + <button label="Zażądaj" label_selected="Zażądaj" name="Make Request"/> </panel> </tab_container> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_im.xml b/indra/newview/skins/default/xui/pl/floater_im.xml index 00a91bdf6c2cf2a55be2f7e52ab59fbb9bd7ee31..67c9d134964088b51d9618cc0fbdaa197d369bb0 100755 --- a/indra/newview/skins/default/xui/pl/floater_im.xml +++ b/indra/newview/skins/default/xui/pl/floater_im.xml @@ -10,7 +10,7 @@ Kliknij na [BUTTON NAME] przycisk by zaakceptować/doÅ‚Ä…czyć do tej rozmowy. </string> <string name="muted_message"> - Ten rezydent jest przez Ciebie wyciszony. WysyÅ‚anie wiadomośći automatycznie wyÅ‚Ä…czy tryb wyciszenia. + Ten Rezydent jest przez Ciebie wyciszony. WysyÅ‚anie wiadomoÅ›ci automatycznie wyÅ‚Ä…czy tryb wyciszenia. </string> <string name="generic_request_error"> BÅ‚Ä…d. Spróbuj ponownie za kilka minut. diff --git a/indra/newview/skins/default/xui/pl/floater_land_holdings.xml b/indra/newview/skins/default/xui/pl/floater_land_holdings.xml index 21e6b5ae2200026560079663f995da59b45516b3..29268f0e97644b0b533ffc58f226b6640b239bdf 100755 --- a/indra/newview/skins/default/xui/pl/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/pl/floater_land_holdings.xml @@ -1,21 +1,20 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="land holdings floater" title="My Land"> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="land holdings floater" title="Moja posiadÅ‚ość"> <scroll_list name="parcel list"> - <column label="Nazwa" name="name" /> - <column label="PoÅ‚ożenie" name="location" /> - <column label="Obszar" name="area" /> - <column label="" name="hidden" /> + <column label="Nazwa posiadÅ‚oÅ›ci" name="name"/> + <column label="Region" name="location"/> + <column label="Typ" name="type"/> + <column label="Obszar" name="area"/> + <column label="" name="hidden"/> </scroll_list> - <button label="Teleportuj" label_selected="Teleport" name="Teleport" - tool_tip="Teleportuj siÄ™ do centrum tej PosiadÅ‚oÅ›ci." /> - <button label="Pokaż na Mapie" label_selected="Show on Map" name="Show on Map" - tool_tip="Pokaż to miejsce na mapie Å›wiata." /> + <button label="Teleportuj" label_selected="Teleport" name="Teleport" tool_tip="Teleportuj siÄ™ do centrum tej PosiadÅ‚oÅ›ci."/> + <button label="Pokaż na Mapie" label_selected="Pokaż na mapie" name="Show on Map" tool_tip="Pokaż to miejsce na mapie Å›wiata."/> <text name="contrib_label"> Kontrybucje do Twoich Grup: </text> <scroll_list name="grant list"> - <column label="Grupa" name="group" /> - <column label="Obszar" name="area" /> + <column label="Grupa" name="group"/> + <column label="Obszar" name="area"/> </scroll_list> <text name="allowed_label"> Dozwolone udziaÅ‚y przy obecnym planie pÅ‚atnoÅ›ci: diff --git a/indra/newview/skins/default/xui/pl/floater_mute_object.xml b/indra/newview/skins/default/xui/pl/floater_mute_object.xml index a09c6baac23553aa90994c263034d013f5d03acf..310810db76af97d3171ee282787129b2ba3d760e 100755 --- a/indra/newview/skins/default/xui/pl/floater_mute_object.xml +++ b/indra/newview/skins/default/xui/pl/floater_mute_object.xml @@ -1,10 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="mute by name" title="Wycisz Obiekt WedÅ‚ug Nazwy"> +<floater name="mute by name" title="Wycisz Obiekt WedÅ‚ug Nazwy" height="160" min_height="160" > <text name="message"> - Wyciszenie obiektu jest skuteczne jedynie na czacie oraz w wiadomoÅ›ciach IM. Nie obejmuje natomiast dźwiÄ™ków. + Wyciszenie obiektu jest skuteczne jedynie na czacie oraz w +wiadomoÅ›ciach IM. Nie obejmuje natomiast dźwiÄ™ków. By wyciszyć obiekt musisz wpisać dokÅ‚adnie jego nazwÄ™. </text> - <line_editor name="object_name"> + <line_editor name="object_name" bottom_delta="-60"> Nazwa Obiektu </line_editor> <button label="Ok" name="OK" /> diff --git a/indra/newview/skins/default/xui/pl/floater_perm_prefs.xml b/indra/newview/skins/default/xui/pl/floater_perm_prefs.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd7cbe1f79932269ad4916e26bd0dafdbe7ee1aa --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_perm_prefs.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="perm prefs" title="Prawa DomyÅ›lne"> + <panel label="Prawa" name="permissions"> + <button label="?" label_selected="?" name="help"/> + <check_box label="UdostÄ™pnij grupie" name="share_with_group"/> + <check_box label="Pozwól kopiować każdemu" name="everyone_copy"/> + <text name="NextOwnerLabel"> + NastÄ™pny wÅ‚aÅ›ciciel: + </text> + <check_box label="Modyfikuje" name="next_owner_modify"/> + <check_box label="Kopiuje" name="next_owner_copy"/> + <check_box label="Oddaje/Sprzedaje" name="next_owner_transfer"/> + </panel> + <button label="OK" label_selected="OK" name="ok"/> + <button label="Anuluj" label_selected="Anuluj" name="cancel"/> +</floater> diff --git a/indra/newview/skins/default/xui/pl/floater_post_process.xml b/indra/newview/skins/default/xui/pl/floater_post_process.xml index 21c92764f68947f9f4adf43ad387b3128482d3eb..a86e1bcfa5a7796207c5c4695cbd14e8ab8eab60 100755 --- a/indra/newview/skins/default/xui/pl/floater_post_process.xml +++ b/indra/newview/skins/default/xui/pl/floater_post_process.xml @@ -2,7 +2,7 @@ <floater name="Post-Process Floater" title="Ustawienia Przetwarzania KoÅ„cowego"> <tab_container name="Post-Process Tabs"> <panel label="Kolor Filtru" name="wmiColorFilterPanel"> - <check_box label="Enable" name="wmiColorFilterToggle" /> + <check_box label="UdostÄ™pnij" name="wmiColorFilterToggle" /> <text type="string" length="1" name="wmiColorFilterBrightnessText"> Jasność </text> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml b/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml index 013780ebf90af702d47b6ab48a3315e88a80f121..02c6e1ef8a4400114a7413235817b3c4d73b4417 100755 --- a/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_gesture.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="gesture_preview"> <string name="stop_txt"> Stop @@ -15,27 +15,31 @@ <text name="trigger_label"> WÅ‚Ä…czanie: </text> - <text name="replace_text" - tool_tip="ZmieÅ„ wÅ‚Ä…czajÄ…cÄ… frazÄ™ na innÄ…. Na przykÅ‚ad zmiana 'witam' na 'cześć' zmieni czat 'ChciaÅ‚em powiedzieć witam' na 'ChciaÅ‚em powiedzieć cześć' i pokaże animacjÄ™!"> + <text name="replace_text" tool_tip="ZmieÅ„ wÅ‚Ä…czajÄ…cÄ… frazÄ™ na innÄ…. Na przykÅ‚ad zmiana 'witam' na 'cześć' zmieni czat 'ChciaÅ‚em powiedzieć witam' na 'ChciaÅ‚em powiedzieć cześć' i pokaże animacjÄ™!"> ZamieÅ„ na: </text> - <line_editor name="replace_editor" - tool_tip="ZmieÅ„ wÅ‚Ä…czajÄ…cÄ… frazÄ™ na innÄ…. Na przykÅ‚ad zmiana 'witam' na 'cześć' zmieni czat 'ChciaÅ‚em powiedzieć witam' na 'ChciaÅ‚em powiedzieć cześć' i pokaże animacjÄ™!" /> + <line_editor name="replace_editor" tool_tip="ZmieÅ„ wÅ‚Ä…czajÄ…cÄ… frazÄ™ na innÄ…. Na przykÅ‚ad zmiana 'witam' na 'cześć' zmieni czat 'ChciaÅ‚em powiedzieć witam' na 'ChciaÅ‚em powiedzieć cześć' i pokaże animacjÄ™!"/> <text name="key_label"> Skrót: </text> - <combo_box label="Brak" name="modifier_combo" /> - <combo_box label="Brak" name="key_combo" /> + <combo_box label="Brak" name="modifier_combo"/> + <combo_box label="Brak" name="key_combo"/> <text name="library_label"> Zbiór: </text> <text name="steps_label"> Etapy: </text> - <button label="Dodaj >>" name="add_btn" /> - <button label="W GórÄ™" name="up_btn" /> - <button label="W Dół" name="down_btn" /> - <button label="UsuÅ„" name="delete_btn" /> + <scroll_list name="library_list"> + Animacja +DźwiÄ™k +Czat +Wstrzymaj + </scroll_list> + <button label="Dodaj >>" name="add_btn"/> + <button label="W GórÄ™" name="up_btn"/> + <button label="W Dół" name="down_btn"/> + <button label="UsuÅ„" name="delete_btn"/> <text name="help_label"> Wszystkie etapy nastÄ…piÄ… razem, chyba, że dodasz pauzy. @@ -48,10 +52,9 @@ chyba, że dodasz pauzy. Stop </radio_item> </radio_group> - <check_box label="do koÅ„ca animacji" name="wait_anim_check" /> - <check_box label="czas w sekundach" name="wait_time_check" /> - <check_box label="Aktywny" name="active_check" - tool_tip="Aktywne gesty można wÅ‚Ä…czać używajÄ…c przypisanej frazy w czacie albo używajÄ…c przypisanego klawisza skrótowego. W przypaku konfliktu przypisaÅ„ gesty zazwyczaj nie bÄ™dÄ… dziaÅ‚ać." /> - <button label="Pokaż" name="preview_btn" /> - <button label="Zapisz" name="save_btn" /> + <check_box label="do koÅ„ca animacji" name="wait_anim_check"/> + <check_box label="czas w sekundach" name="wait_time_check"/> + <check_box label="Aktywny" name="active_check" tool_tip="Aktywne gesty można wÅ‚Ä…czać używajÄ…c przypisanej frazy w czacie albo używajÄ…c przypisanego klawisza skrótowego. W przypaku konfliktu przypisaÅ„ gesty zazwyczaj nie bÄ™dÄ… dziaÅ‚ać."/> + <button label="Pokaż" name="preview_btn"/> + <button label="Zapisz" name="save_btn"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml b/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml index 88a95adb94777888897b9b476692afd23665bdee..c67d9a9206136bdbe15a846a62d5074258db716e 100755 --- a/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml +++ b/indra/newview/skins/default/xui/pl/floater_preview_notecard.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="preview notecard" title="Note:"> +<floater name="preview notecard" title="Nota:"> <button label="Zapisz" label_selected="Zapisz" name="Save" /> <text type="string" length="1" name="desc txt"> Opis: diff --git a/indra/newview/skins/default/xui/pl/floater_report_abuse.xml b/indra/newview/skins/default/xui/pl/floater_report_abuse.xml index 5da5ce0dc02a50f97b2630d00859a5754305e22d..d4ad72a3e1f4ae94014c3709935950edfd67115b 100755 --- a/indra/newview/skins/default/xui/pl/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/pl/floater_report_abuse.xml @@ -21,7 +21,7 @@ {128.1, 128.1, 15.4} </text> <text name="select_object_label"> - Kliknij na przycisk, a pózniej na obiekt: + Kliknij na przycisk, a później na obiekt: </text> <button label="" label_selected="" name="pick_btn" tool_tip="Wybór obiektu - wybierz obiekt, którego dotyczy raport"/> <text name="object_name_label"> @@ -46,9 +46,9 @@ <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> Wiek > DorosÅ‚y Rezydent w Teen Second Life </combo_item> - - - + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + Wiek > Nieletni Rezydent poza Teen Second Life + </combo_item> <combo_item name="Assault__Combat_sandbox___unsafe_area"> Napaść > Strefa Militarna / Niebezpieczny Obszar </combo_item> @@ -118,15 +118,15 @@ <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> Nieprzyzwoitość > Obraźliwa Treść lub PostÄ™powanie </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> Nieprzyzwoitość > Niestosowne ImiÄ™ Awatara </combo_item> - - - + <combo_item name="Indecency__Mature_content_in_PG_region"> + Nieprzyzwoitość > Obraźliwa treść i postÄ™powanie w regionie 'PG' + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + Nieprzyzwoitość > Obraźliwa treść i postÄ™powanie w regionie 'Mature' + </combo_item> <combo_item name="Intellectual_property_infringement_Content_Removal"> Naruszenie WÅ‚asnoÅ›ci Intelektualnej > UsuniÄ™cie TreÅ›ci </combo_item> diff --git a/indra/newview/skins/default/xui/pl/floater_script_search.xml b/indra/newview/skins/default/xui/pl/floater_script_search.xml index ce5e980f54bafc71d545ca223e8ef1a758a9333c..d00f1c267a5551a10554f9d471748381b6687fc2 100755 --- a/indra/newview/skins/default/xui/pl/floater_script_search.xml +++ b/indra/newview/skins/default/xui/pl/floater_script_search.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="script search" title="Wyszukaj Skryptu"> - <check_box label="Neutralne na wielkość" name="case_text" /> - <button label="Wyszukaj" label_selected="Wyszukaj" name="search_btn" /> +<floater name="script search" title="Szukaj Skryptu"> + <check_box label="CapsLoock Nieaktywny" name="case_text" /> + <button label="Szukaj" label_selected="Szukaj" name="search_btn" /> <button label="ZamieÅ„" label_selected="ZamieÅ„" name="replace_btn" /> <button label="ZamieÅ„ Wszystko" label_selected="ZamieÅ„ Wszystko" name="replace_all_btn" /> diff --git a/indra/newview/skins/default/xui/pl/floater_sound_preview.xml b/indra/newview/skins/default/xui/pl/floater_sound_preview.xml index afd1f9842d708408a52bad31c948152624769665..2461aebbcf1ca1e05fc3f6cc60c0caa8179e0a8f 100755 --- a/indra/newview/skins/default/xui/pl/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/pl/floater_sound_preview.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="Name/Description" title="dźwiÄ™k.wav"> +<floater name="Sound Preview" title="dźwiÄ™k.wav"> <text name="name_label"> Opis: </text> diff --git a/indra/newview/skins/default/xui/pl/floater_statistics.xml b/indra/newview/skins/default/xui/pl/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..933801bbda23f4406a0aaa253769f4e6cce6dbfb --- /dev/null +++ b/indra/newview/skins/default/xui/pl/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="Statystyki"/> diff --git a/indra/newview/skins/default/xui/pl/floater_telehub.xml b/indra/newview/skins/default/xui/pl/floater_telehub.xml index 33d353a9378f925aaf1be3f5fe8ed5dbf593eb9a..b4cf0988786b9f04f126ceeee064e0bdff1f4f13 100755 --- a/indra/newview/skins/default/xui/pl/floater_telehub.xml +++ b/indra/newview/skins/default/xui/pl/floater_telehub.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> -<floater name="telehub" title="ObsÅ‚uga Teleportera"> - <text name="status_text_connected"> +<floater name="telehub" title="ObsÅ‚uga Teleportera" min_height="300" height="300" > + <text name="status_text_connected" width="250"> Teleporter poÅ‚Ä…czony z obiektem [OBJECT] </text> - <text name="status_text_not_connected"> + <text name="status_text_not_connected" width="250"> Brak poÅ‚Ä…czenia z teleporterem </text> <text name="help_text_connected"> @@ -12,17 +12,20 @@ <text name="help_text_not_connected"> Wybierz obiekt i kliknij PoÅ‚Ä…cz z teleporterem </text> - <button label="Connect Telehub" name="connect_btn" /> - <button label="RozÅ‚Ä…cz" name="disconnect_btn" /> - <text name="spawn_points_text"> + <button label="PoÅ‚Ä…cz z teleporterem" name="connect_btn" width="122" /> + <button label="RozÅ‚Ä…cz" name="disconnect_btn" left="142" width="98"/> + <text name="spawn_points_text" width="250"> Punkty SkÅ‚adowe (pozycje - nie obiekty!): </text> - <button label="Add Spawn" name="add_spawn_point_btn" /> - <button label="Remove Spawn" name="remove_spawn_point_btn" /> + <button label="Dodaj Punkt" name="add_spawn_point_btn" /> + <button label="UsuÅ„ Punkt" name="remove_spawn_point_btn" /> <text name="spawn_point_help"> - Wybierz obiekt i wybierz Dodaj by sprecyzować pozycjÄ™. -Wówczas możesz przesunąć lub usunąć obiekt. -Pozycje sÄ… relatywne do części centralnej teleportera. -Wybierz obiekt z listy by zobaczyć jego pozycjÄ™ w Å›wiecie. + Wybierz obiekt i wybierz Dodaj by sprecyzować +pozycjÄ™. Wówczas możesz przesunąć lub +usunąć obiekt. Pozycje sÄ… relatywne do części +centralnej teleportera. + +Wybierz obiekt z listy by zobaczyć jego pozycjÄ™ +w Å›wiecie. </text> </floater> diff --git a/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml b/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml index f6802416cbe306a503f317a5f6edaec2876678c8..702422f1ba2b39b6e6ec4320adb81b46be1926b0 100755 --- a/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml +++ b/indra/newview/skins/default/xui/pl/floater_texture_ctrl.xml @@ -12,7 +12,7 @@ <button label="DomyÅ›lna" label_selected="DomyÅ›lna" name="Default"/> <button label="Å»adna" label_selected="Å»adna" name="None"/> <button label="Pusta" label_selected="Pusta" name="Blank"/> - <check_box label="Show Folders" name="show_folders_check"/> + <check_box label="Pokaż Foldery" name="show_folders_check"/> <search_editor label="Wpisz nazwÄ™ tutaj by wyszukać" name="inventory search editor"/> <check_box label="Zastosuj od razu" name="apply_immediate_check"/> <button label="" label_selected="" name="Pipette"/> diff --git a/indra/newview/skins/default/xui/pl/floater_tools.xml b/indra/newview/skins/default/xui/pl/floater_tools.xml index a677a2558af6d62f2e21071b8d68f0a2f857b043..380943f4ad62874c0db0b7dae2cbe81bf19a4b8c 100755 --- a/indra/newview/skins/default/xui/pl/floater_tools.xml +++ b/indra/newview/skins/default/xui/pl/floater_tools.xml @@ -1,21 +1,17 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="toolbox floater" title=""> - <!-- Main floater tabs --> <button label="" label_selected="" name="button focus" tool_tip="Zbliżenie"/> <button label="" label_selected="" name="button move" tool_tip="PrzesuniÄ™cie"/> <button label="" label_selected="" name="button edit" tool_tip="Edycja"/> <button label="" label_selected="" name="button create" tool_tip="Stwórz"/> <button label="" label_selected="" name="button land" tool_tip="Teren"/> - <!-- Focus panel --> <check_box label="Zbliżenie" name="radio zoom"/> <volume_slider name="slider zoom"/> <check_box label="Obracanie (Ctrl)" name="radio orbit"/> <check_box label="PrzesuniÄ™cie (Ctrl-Shift)" name="radio pan"/> - <!-- Move panel --> <check_box label="PrzesuÅ„" name="radio move"/> <check_box label="PodnieÅ› (Ctrl)" name="radio lift"/> <check_box label="Obróć (Ctrl-Shift)" name="radio spin"/> - <!-- Edit panel --> <check_box label="Pozycja" name="radio position"/> <check_box label="Obróć (Ctrl)" name="radio rotate"/> <check_box label="RozciÄ…gnij (Ctrl-Shift)" name="radio stretch"/> @@ -39,11 +35,9 @@ <check_box label="RozciÄ…gnij TeksturÄ™" name="checkbox stretch textures"/> <check_box label="Użyj Siatki" name="checkbox snap to grid"/> <button label="Opcje..." label_selected="Opcje..." name="Options..."/> - <!-- Help text --> <text name="text status"> PrzeciÄ…gnij żeby przenieść, shift-przeciÄ…gnij żeby skopiować </text> - <!-- Create panel --> <button label="" label_selected="" name="ToolCube" tool_tip="SzeÅ›cian"/> <button label="" label_selected="" name="ToolPrism" tool_tip="GraniastosÅ‚up"/> <button label="" label_selected="" name="ToolPyramid" tool_tip="OstrosÅ‚up"/> @@ -59,38 +53,34 @@ <button label="" label_selected="" name="ToolRing" tool_tip="PierÅ›cieÅ„"/> <button label="" label_selected="" name="ToolTree" tool_tip="Drzewo"/> <button label="" label_selected="" name="ToolGrass" tool_tip="Trawa"/> - <check_box label="PamiÄ™taj Wybrane NarzÄ™dzia" name="checkbox sticky"/> - <check_box label="Kopiuj SelekcjÄ™" name="checkbox copy selection"/> - <check_box label="Kopia Åšrodka" name="checkbox copy centers"/> - <check_box label="Kopia Obrotu" name="checkbox copy rotates"/> - <!-- Land panel --> + <check_box label="Trzymaj zaznaczone" name="checkbox sticky"/> + <check_box label="Kopiuj zaznaczone" name="checkbox copy selection"/> + <check_box label="Åšrodek" name="checkbox copy centers"/> + <check_box label="Obróć" name="checkbox copy rotates"/> <check_box label="Zaznaczanie" name="radio select land"/> - <check_box label="Niwelowanie" name="radio flatten"/> + <check_box label="Prostowanie" name="radio flatten"/> <check_box label="Podnoszenie" name="radio raise"/> <check_box label="Obniżanie" name="radio lower"/> <check_box label="WygÅ‚adzanie" name="radio smooth"/> - <check_box label="FaÅ‚dowanie terenu" name="radio noise"/> - <check_box label="CofniÄ™cie modyfikacji" name="radio revert"/> - <combo_box name="combobox brush size"> - <combo_item name="Small"> - MaÅ‚e - </combo_item> - <combo_item name="Medium"> - Åšrednie - </combo_item> - <combo_item name="Large"> - Duże - </combo_item> - </combo_box> - <volume_slider name="slider force"/> + <check_box label="FaÅ‚dowanie" name="radio noise"/> + <check_box label="Cofnij modyfikacjÄ™" name="radio revert"/> + <button label="Zastosuj" label_selected="Zastosuj" name="button apply to selection" tool_tip="Modyfikuj zaznaczony teren"/> + <text name="Bulldozer:"> + Burzenie: + </text> + <text name="Dozer Size:"> + Rozmiar + </text> <text length="1" name="Strength:" type="string"> - SiÅ‚a: + SiÅ‚a + </text> + <volume_slider name="slider force"/> + <text name="obj_count"> + Wybrane obiekty: [COUNT] + </text> + <text name="prim_count"> + primy: [COUNT] </text> - <button label="Zastosuj do selekcji" label_selected="Zastosuj do selekcji" name="button apply to selection" tool_tip="Modyfikuj zaznaczony teren"/> - <check_box label="Pokaż WÅ‚aÅ›cicieli" name="checkbox show owners"/> - <button label="WiÄ™cej >>" name="button more" tool_tip="Zaawansowane Opcje"/> - <button label="<< Mniej" name="button less" tool_tip="Zaawansowane Opcje"/> - <!-- Sub-tabs --> <tab_container name="Object Info Tabs"> <panel label="Ogólne" name="General"> <text name="Name:"> @@ -122,9 +112,6 @@ The Lindens </text> <button label="Ustaw..." label_selected="Ustaw..." name="button set group"/> - <text name="prim info"> - 1 obiekt, 1 element - </text> <text name="Permissions:"> Prawa: </text> @@ -239,7 +226,6 @@ Sprzedaż Mieszana </string> </panel> - <!-- Object sub-tab --> <panel label="Obiekt" name="Object"> <text name="select_single"> Wybierz tylko jeden element by edytować jego parametry @@ -378,6 +364,9 @@ <text name="advanced_dimple"> PrzesuniÄ™cie Promienia </text> + <text name="advanced_slice"> + Przetnij poczÄ…tek i koniec + </text> <spinner label="B" name="Path Limit Begin"/> <spinner label="E" name="Path Limit End"/> <text name="text taper2"> @@ -417,7 +406,6 @@ </combo_item> </combo_box> </panel> - <!-- Features sub-tab --> <panel label="Atrybuty" name="Features"> <text name="select_single"> Wybierz tylko jeden element by edytować jego cechÄ™. @@ -443,7 +431,6 @@ <spinner label="PromieÅ„" name="Light Radius"/> <spinner label="Spadek" name="Light Falloff"/> </panel> - <!-- Texture sub-tab --> <panel label="Tekstura" name="Texture"> <texture_picker label="Tekstura" name="texture control" tool_tip="Kliknij by wybrać obraz"/> <color_swatch label="Kolor" name="colorswatch" tool_tip="Kliknij by wybrać kolor"/> @@ -528,7 +515,7 @@ Skamieliny </combo_item> <combo_item name="siding"> - Sidingu + Brzegu </combo_item> <combo_item name="stonetile"> PÅ‚ytki Kamiennej @@ -577,22 +564,33 @@ <button label="Dopasuj" label_selected="Dopasuj" name="button align"/> </panel> <panel label="Treść" name="Contents"> - <button label="Nowy Skrypt..." label_selected="Nowy Skrypt..." name="button new script"/> + <button label="Nowy Skrypt" label_selected="Nowy Skrypt..." name="button new script"/> + <button label="Prawa..." name="button permissions"/> </panel> </tab_container> - <!-- Land Info sub-tab --> <panel name="land info panel"> + <text name="label_parcel_info"> + Informacje o PosiadÅ‚oÅ›ci + </text> <text name="label_area_price"> Cena: L$[PRICE] za [AREA] m </text> <text name="label_area"> Obszar: [AREA] m </text> - <button label="Kup..." label_selected="Kup..." name="button buy land"/> - <button label="Anuluj..." label_selected="Anuluj..." name="button abandon land"/> + <button label="O PosiadÅ‚oÅ›ci..." label_selected="O PosiadÅ‚oÅ›ci..." name="button about land"/> + <check_box label="Pokaż WÅ‚aÅ›cicieli" name="checkbox show owners" tool_tip="Pokoloruj posiadÅ‚oÅ›ci zgodnie z przynależnoÅ›ciÄ… do wÅ‚aÅ›ciciela"/> + <button label="?" label_selected="?" name="button show owners help" left_delta="120"/> + <text name="label_parcel_modify"> + Modyfikuj PosiadÅ‚ość + </text> <button label="Podziel..." label_selected="Podziel..." name="button subdivide land"/> <button label="ZÅ‚Ä…cz..." label_selected="ZÅ‚Ä…cz..." name="button join land"/> - <button label="O PosiadÅ‚oÅ›ci..." label_selected="O PosiadÅ‚oÅ›ci..." name="button about land"/> + <text name="label_parcel_trans"> + Transakcje na posiadÅ‚oÅ›ci + </text> + <button label="Kup..." label_selected="Kup..." name="button buy land"/> + <button label="Anuluj..." label_selected="Anuluj..." name="button abandon land"/> </panel> <string name="status_rotate"> PrzeciÄ…gaj kolorowe pierÅ›cienie żeby obracać obiekt @@ -610,10 +608,10 @@ Kliknij i przeciÄ…gnij żeby zmienić widok </string> <string name="status_grab"> - Opcje: + PrzeciÄ…gnij by przesunąć, wybierz Ctrl by podnieść, wybierz Ctrl-Shift by obrócić </string> <string name="status_place"> - Rodzaje obiektów: + Kliknij in-world by zacząć budować </string> <string name="status_selectland"> Edytowanie Terenu: diff --git a/indra/newview/skins/default/xui/pl/floater_top_objects.xml b/indra/newview/skins/default/xui/pl/floater_top_objects.xml index dafe4202817ac3a37206810662c47f72bcef107f..44d838035d145d4f1883a0882b65905459264bd4 100755 --- a/indra/newview/skins/default/xui/pl/floater_top_objects.xml +++ b/indra/newview/skins/default/xui/pl/floater_top_objects.xml @@ -1,32 +1,33 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="top_objects" title="Åadowanie..."> <text name="title_text"> Åadowanie... </text> <scroll_list name="objects_list"> - <column label="Wynik" name="score" /> - <column label="Nazwa" name="name" /> - <column label="WÅ‚aÅ›ciciel" name="owner" /> - <column label="Miejsce" name="location" /> - <column label="Czas" name="time" /> + <column label="Wynik" name="score"/> + <column label="Nazwa" name="name"/> + <column label="WÅ‚aÅ›ciciel" name="owner"/> + <column label="Miejsce" name="location"/> + <column label="Czas" name="time"/> + <column label="Mono Time" name="mono_time"/> </scroll_list> <text name="id_text"> ID Obiektu: </text> - <button label="Pokaż Emitery" name="show_beacon_btn" /> + <button label="Pokaż Emitery" name="show_beacon_btn"/> <text name="obj_name_text"> Nazwa Obiektu: </text> - <button label="Filtr" name="filter_object_btn" /> + <button label="Filtr" name="filter_object_btn"/> <text name="owner_name_text"> Owner Name: </text> - <button label="Filter" name="filter_owner_btn" /> - <button label="Zwróć Wybrane" name="return_selected_btn" /> - <button label="Zwróć Wszystko" name="return_all_btn" /> - <button label="Deaktywuj Wybrane" name="disable_selected_btn" /> - <button label="Deaktywuj Wszystko" name="disable_all_btn" /> - <button label="OdÅ›wież" name="refresh_btn" /> + <button label="Filter" name="filter_owner_btn"/> + <button label="Zwróć Wybrane" name="return_selected_btn"/> + <button label="Zwróć Wszystko" name="return_all_btn"/> + <button label="Deaktywuj Wybrane" name="disable_selected_btn"/> + <button label="Deaktywuj Wszystko" name="disable_all_btn"/> + <button label="OdÅ›wież" name="refresh_btn"/> <string name="top_scripts_title"> Główne Skrypty </string> @@ -36,6 +37,9 @@ <string name="scripts_score_label"> Czas </string> + <string name="scripts_mono_time_label"> + Mono Time + </string> <string name="top_colliders_title"> Główne Kolizje </string> diff --git a/indra/newview/skins/default/xui/pl/floater_tos.xml b/indra/newview/skins/default/xui/pl/floater_tos.xml index 32b25481c3feb6d20f16473b86a23014fa30d7f3..d05a3c246a6f11fea7c8cf4c224c141f851911e3 100755 --- a/indra/newview/skins/default/xui/pl/floater_tos.xml +++ b/indra/newview/skins/default/xui/pl/floater_tos.xml @@ -4,8 +4,8 @@ <button label="Anuluj" label_selected="Anuluj" name="Cancel" /> <check_box label="Zgadzam siÄ™ na Warunki Serwisu (Terms of Service)" name="agree_chk" /> <text name="tos_heading"> - ProszÄ™ dokÅ‚adnie przeczytać nastÄ™pujÄ…ce Warunki Serwisu (Terms of Service). Musisz zaakceptować -umowÄ… żeby kontynuować logowanie do Second Life. + ProszÄ™ dokÅ‚adnie przeczytać nastÄ™pujÄ…ce Warunki Serwisu (Terms of Service). Musisz +zaakceptować umowÄ… żeby kontynuować logowanie do Second Life. </text> <text_editor name="tos_text"> TOS_TEXT diff --git a/indra/newview/skins/default/xui/pl/floater_windlight_options.xml b/indra/newview/skins/default/xui/pl/floater_windlight_options.xml index d2becee69c5dc9c3c84bb8e2f32c0cdf18827f01..2a9d1dff2430dfea4cac283a24360d2dd89f7ca2 100755 --- a/indra/newview/skins/default/xui/pl/floater_windlight_options.xml +++ b/indra/newview/skins/default/xui/pl/floater_windlight_options.xml @@ -6,7 +6,7 @@ <button label="Nowe" label_selected="Nowe" name="WLNewPreset" /> <button label="Zapisz" label_selected="Zapisz" name="WLSavePreset" /> <button label="UsuÅ„" label_selected="UsuÅ„" name="WLDeletePreset" /> - <button label="Edytor Cyklu Dnia" label_selected="Day Cycle Editor" + <button label="Edytor Cyklu Dnia" label_selected="Edytor Cyklu Dnia" name="WLDayCycleMenuButton" /> <tab_container name="WindLight Tabs"> <panel label="Atmosfera" name="Atmosphere"> 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 31f3477aebfa14c77d1c9b3c45f885bd5ff36a25..46e6091b33e8b8b1446409aea7d39de8123eb073 100755 --- a/indra/newview/skins/default/xui/pl/floater_world_map.xml +++ b/indra/newview/skins/default/xui/pl/floater_world_map.xml @@ -1,81 +1,63 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="worldmap" title="Mapa Åšwiata"> <tab_container name="maptab"> - <panel label="Obiekty" name="objects_mapview" /> - <panel label="Teren" name="terrain_mapview" /> + <panel label="Obiekty" name="objects_mapview"/> + <panel label="Teren" name="terrain_mapview"/> </tab_container> - <text name="land_for_sale_label"> - Na Sprzedaż - </text> - <text name="auction_label"> - Aukcja - </text> <text name="you_label"> Ty </text> + <icon left="1058" name="home"/> <text name="home_label"> Start </text> - <button label="Start" label_selected="Start" name="Go Home" - tool_tip="Teleportuj siÄ™ do miejsca startowego" /> - <text name="person_label"> - Osoba - </text> - <check_box label=" " name="people_chk" /> - <text name="infohub_label"> - Informacja - </text> - <check_box label="" name="infohub_chk" /> - <text name="telehub_label"> - Teleporter + <text name="auction_label"> + Aukcja </text> - <check_box label="" name="telehubchk" /> - <text name="land_for_sale_label2"> + <text name="land_for_sale_label"> Na Sprzedaż </text> - <check_box label="" name="land_for_sale_chk" /> + <button width="122" left="1116" label="Teleportuj do Start" label_selected="Teleportuj do Start" name="Go Home" tool_tip="Teleportuj siÄ™ do miejsca startowego"/> + <check_box label="Rezydent" name="people_chk"/> + <check_box label="Infohub" name="infohub_chk"/> + <check_box label="Telehub" name="telehubchk"/> + <check_box label="PosiadÅ‚ość na sprzedaż" name="land_for_sale_chk"/> <text name="events_label"> - Impreza + Wydarzenia: </text> - <check_box label="" name="event_chk" /> - - <check_box label="" name="event_mature_chk" /> + <check_box label="'PG'" name="event_chk"/> + <check_box label="'Mature'" name="event_mature_chk"/> + <check_box label="'Adult'" name="event_adult_chk"/> + <icon bottom="-196" name="avatar_icon"/> <combo_box label="DostÄ™pni Znajomi" name="friend combo" tool_tip="Znajomi na mapie"> <combo_item name="none_selected"> DostÄ™pni Znajomi </combo_item> </combo_box> - <combo_box label="Zapisane Miejsca" name="landmark combo" - tool_tip="Zapisane miejsca na mapie"> + <combo_box label="Zapisane Miejsca" name="landmark combo" tool_tip="Zapisane miejsca na mapie"> <combo_item name="none_selected"> Zapisane Miejsca </combo_item> </combo_box> - <line_editor label="Szukaj po nazwie regionu" name="location" - tool_tip="Wpisz nazwÄ™ regionu" /> - <button label="Szukaj" name="DoSearch" tool_tip="Wyszukiwaie regionu" /> + <line_editor label="Szukaj po nazwie regionu" name="location" tool_tip="Wpisz nazwÄ™ regionu"/> + <button label="Szukaj" name="DoSearch" tool_tip="Wyszukiwaie regionu"/> <text name="search_label"> Wyniki wyszukiwania: </text> - <scroll_list name="search_results"> - <column label="" name="icon" /> - <column label="" name="sim_name" /> + <scroll_list name="search_results" bottom_delta="-310" height="304" > + <column label="" name="icon"/> + <column label="" name="sim_name"/> </scroll_list> <text name="location_label"> PoÅ‚ożenie: </text> - <spinner name="spin x" tool_tip="współrzÄ™dne X na mapie" /> - <spinner name="spin y" tool_tip="współrzÄ™dne Y na mapie" /> - <spinner name="spin z" tool_tip="współrzÄ™dne Z na mapie" /> - <button label="Teleportuj" label_selected="Teleportuj" name="Teleport" - tool_tip="Teleportuj do wybranego miejsca" /> - <button label="Pokaż Cel" label_selected="Pokaż Cel" name="Show Destination" - tool_tip="Wycentruj miejsce celu na mapie" /> - <button label="Wyczyść" label_selected="Wyczyść" name="Clear" - tool_tip="Stop tracking" /> - <button label="Pokaż moje miejsce" label_selected="Pokaż moje miejsce" - name="Show My Location" tool_tip="Wycentruj pozcjÄ™ awatara na mapie" /> - <button label="Kopiuj SLURL do schowka" name="copy_slurl" - tool_tip="Kopie SLURL obecnego miejsca bÄ™dÄ™ mogÅ‚y zostać użyte na stronie internetowej." /> - <slider label="Skala" name="zoom slider" /> + <spinner name="spin x" tool_tip="współrzÄ™dne X na mapie"/> + <spinner name="spin y" tool_tip="współrzÄ™dne Y na mapie"/> + <spinner name="spin z" tool_tip="współrzÄ™dne Z na mapie"/> + <button label="Teleportuj" label_selected="Teleportuj" name="Teleport" tool_tip="Teleportuj do wybranego miejsca"/> + <button label="Pokaż Cel" label_selected="Pokaż Cel" name="Show Destination" tool_tip="Wycentruj miejsce celu na mapie"/> + <button label="Wyczyść" label_selected="Wyczyść" name="Clear" tool_tip="Stop tracking"/> + <button label="Pokaż moje miejsce" label_selected="Pokaż moje miejsce" name="Show My Location" tool_tip="Wycentruj pozcjÄ™ awatara na mapie"/> + <button label="Kopiuj SLURL do schowka" name="copy_slurl" tool_tip="Kopie SLURL obecnego miejsca bÄ™dÄ™ mogÅ‚y zostać użyte na stronie internetowej."/> + <slider label="Skala" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/pl/menu_inventory.xml b/indra/newview/skins/default/xui/pl/menu_inventory.xml index 383f4a4fa40a8b3eb77f47a6ef6b766e56edaaea..7f89f783248a2dc5a2f2c75de84d226f8e5c3655 100755 --- a/indra/newview/skins/default/xui/pl/menu_inventory.xml +++ b/indra/newview/skins/default/xui/pl/menu_inventory.xml @@ -1,65 +1,66 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu name="Popup"> - <menu_item_call label="Kupuj" name="Task Buy" /> - <menu_item_call label="Otwórz" name="Task Open" /> - <menu_item_call label="Odtwarzaj" name="Task Play" /> - <menu_item_call label="WÅ‚aÅ›ciwoÅ›ci" name="Task Properties" /> - <menu_item_call label="ZmieÅ„ NazwÄ™" name="Task Rename" /> - <menu_item_call label="UsuÅ„" name="Task Remove" /> - <menu_item_call label="Opróżnij Kosz" name="Empty Trash" /> - <menu_item_call label="Opróżnij Folder Zgubione i Odnalezione" name="Empty Lost And Found" /> - <menu_item_call label="Nowy Folder" name="New Folder" /> - <menu_item_call label="Nowy Skrypt" name="New Script" /> - <menu_item_call label="Nowa Nota" name="New Note" /> - <menu_item_call label="Nowy Gest" name="New Gesture" /> + <menu_item_call label="Kupuj" name="Task Buy"/> + <menu_item_call label="Otwórz" name="Task Open"/> + <menu_item_call label="Odtwarzaj" name="Task Play"/> + <menu_item_call label="WÅ‚aÅ›ciwoÅ›ci" name="Task Properties"/> + <menu_item_call label="ZmieÅ„ NazwÄ™" name="Task Rename"/> + <menu_item_call label="UsuÅ„" name="Task Remove"/> + <menu_item_call label="Opróżnij Kosz" name="Empty Trash"/> + <menu_item_call label="Opróżnij Folder Zgubione i Odnalezione" name="Empty Lost And Found"/> + <menu_item_call label="Nowy Folder" name="New Folder"/> + <menu_item_call label="Nowy Skrypt" name="New Script"/> + <menu_item_call label="Nowa Nota" name="New Note"/> + <menu_item_call label="Nowy Gest" name="New Gesture"/> <menu name="New Clothes"> - <menu_item_call label="Nowa Koszulka" name="New Shirt" /> - <menu_item_call label="Nowe Spodnie" name="New Pants" /> - <menu_item_call label="Nowe Buty" name="New Shoes" /> - <menu_item_call label="Nowe Skarpety" name="New Socks" /> - <menu_item_call label="Nowa Kurtka" name="New Jacket" /> - <menu_item_call label="Nowa Spódnica" name="New Skirt" /> - <menu_item_call label="Nowe RÄ™kawiczki" name="New Gloves" /> - <menu_item_call label="Nowy Podkoszulek" name="New Undershirt" /> - <menu_item_call label="Nowa Bielizna" name="New Underpants" /> + <menu_item_call label="Nowa Koszulka" name="New Shirt"/> + <menu_item_call label="Nowe Spodnie" name="New Pants"/> + <menu_item_call label="Nowe Buty" name="New Shoes"/> + <menu_item_call label="Nowe Skarpety" name="New Socks"/> + <menu_item_call label="Nowa Kurtka" name="New Jacket"/> + <menu_item_call label="Nowa Spódnica" name="New Skirt"/> + <menu_item_call label="Nowe RÄ™kawiczki" name="New Gloves"/> + <menu_item_call label="Nowy Podkoszulek" name="New Undershirt"/> + <menu_item_call label="Nowa Bielizna" name="New Underpants"/> </menu> <menu name="New Body Parts"> - <menu_item_call label="Nowy KsztaÅ‚t" name="New Shape" /> - <menu_item_call label="Nowa Skórka" name="New Skin" /> - <menu_item_call label="Nowe WÅ‚osy" name="New Hair" /> - <menu_item_call label="Nowe Oczy" name="New Eyes" /> + <menu_item_call label="Nowy KsztaÅ‚t" name="New Shape"/> + <menu_item_call label="Nowa Skórka" name="New Skin"/> + <menu_item_call label="Nowe WÅ‚osy" name="New Hair"/> + <menu_item_call label="Nowe Oczy" name="New Eyes"/> </menu> - <menu_item_call label="Teleportuj" name="Landmark Open" /> - <menu_item_call label="Otwórz" name="Animation Open" /> - <menu_item_call label="Otwórz" name="Sound Open" /> - <menu_item_call label="UsuÅ„ Obiekt" name="Purge Item" /> - <menu_item_call label="Przywróć Obiekt" name="Restore Item" /> - <menu_item_call label="Otwórz" name="Open" /> - <menu_item_call label="WÅ‚aÅ›ciwoÅ›ci" name="Properties" /> - <menu_item_call label="ZmieÅ„ NazwÄ™" name="Rename" /> - <menu_item_call label="Kopiuj Dane UUID" name="Copy Asset UUID" /> - <menu_item_call label="Kopiuj" name="Copy" /> - <menu_item_call label="Wklej" name="Paste" /> - <menu_item_call label="UsuÅ„" name="Delete" /> - <menu_item_call label="Zdejmij Obiekt" name="Take Off Items" /> - <menu_item_call label="Dodaj do Stroju" name="Add To Outfit" /> - <menu_item_call label="ZmieÅ„ Strój" name="Replace Outfit" /> - <menu_item_call label="Rozpocznij KonferencjÄ™ CzatowÄ…" name="Conference Chat Folder" /> - <menu_item_call label="Odtwarzaj" name="Sound Play" /> - <menu_item_call label="O Miejscu" name="Teleport To Landmark" /> - <menu_item_call label="Odtwarzaj w Åšwiecie" name="Animation Play" /> - <menu_item_call label="Odtwarzaj Lokalnie" name="Animation Audition" /> - <menu_item_call label="WyÅ›lij IM" name="Send Instant Message" /> - <menu_item_call label="Zaoferuj TeleportacjÄ™..." name="Offer Teleport..." /> - <menu_item_call label="Rozpocznij KonferencjÄ™ CzatowÄ…" name="Conference Chat" /> - <menu_item_call label="Aktywuj" name="Activate" /> - <menu_item_call label="Deaktywuj" name="Deactivate" /> - <menu_item_call label="OdÅ‚Ä…cz od Siebie" name="Detach From Yourself" /> - <menu_item_call label="Ubierz" name="Object Wear" /> - <menu label="DoÅ‚Ä…cz do" name="Attach To" /> - <menu label="DoÅ‚Ä…cz do ZaÅ‚Ä…czników HUD" name="Attach To HUD" /> - <menu_item_call label="Edytuj" name="Wearable Edit" /> - <menu_item_call label="Ubierz" name="Wearable Wear" /> - <menu_item_call label="Zdejmij" name="Take Off" /> - <menu_item_call label="--brak opcji--" name="--no options--" /> + <menu_item_call label="Teleportuj" name="Landmark Open"/> + <menu_item_call label="Otwórz" name="Animation Open"/> + <menu_item_call label="Otwórz" name="Sound Open"/> + <menu_item_call label="UsuÅ„ Obiekt" name="Purge Item"/> + <menu_item_call label="Przywróć Obiekt" name="Restore Item"/> + <menu_item_call label="Otwórz" name="Open"/> + <menu_item_call label="WÅ‚aÅ›ciwoÅ›ci" name="Properties"/> + <menu_item_call label="ZmieÅ„ NazwÄ™" name="Rename"/> + <menu_item_call label="Kopiuj Dane UUID" name="Copy Asset UUID"/> + <menu_item_call label="Kopiuj" name="Copy"/> + <menu_item_call label="Wklej" name="Paste"/> + <menu_item_call label="UsuÅ„" name="Delete"/> + <menu_item_call label="Zdejmij Obiekt" name="Take Off Items"/> + <menu_item_call label="Dodaj do Stroju" name="Add To Outfit"/> + <menu_item_call label="ZmieÅ„ Strój" name="Replace Outfit"/> + <menu_item_call label="Rozpocznij KonferencjÄ™ CzatowÄ…" name="Conference Chat Folder"/> + <menu_item_call label="Odtwarzaj" name="Sound Play"/> + <menu_item_call label="O Miejscu" name="Teleport To Landmark"/> + <menu_item_call label="Odtwarzaj w Åšwiecie" name="Animation Play"/> + <menu_item_call label="Odtwarzaj Lokalnie" name="Animation Audition"/> + <menu_item_call label="WyÅ›lij IM" name="Send Instant Message"/> + <menu_item_call label="Zaoferuj TeleportacjÄ™..." name="Offer Teleport..."/> + <menu_item_call label="Rozpocznij KonferencjÄ™ CzatowÄ…" name="Conference Chat"/> + <menu_item_call label="Aktywuj" name="Activate"/> + <menu_item_call label="Deaktywuj" name="Deactivate"/> + <menu_item_call label="OdÅ‚Ä…cz od Siebie" name="Detach From Yourself"/> + <menu_item_call label="Przywróć ostatniÄ… pozycjÄ™" name="Restore to Last Position"/> + <menu_item_call label="Ubierz" name="Object Wear"/> + <menu label="DoÅ‚Ä…cz do" name="Attach To"/> + <menu label="DoÅ‚Ä…cz do ZaÅ‚Ä…czników HUD" name="Attach To HUD"/> + <menu_item_call label="Edytuj" name="Wearable Edit"/> + <menu_item_call label="Ubierz" name="Wearable Wear"/> + <menu_item_call label="Zdejmij" name="Take Off"/> + <menu_item_call label="--brak opcji--" name="--no options--"/> </menu> diff --git a/indra/newview/skins/default/xui/pl/menu_mini_map.xml b/indra/newview/skins/default/xui/pl/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..da2eba07a0b8af8e56a635bf0ed10b9babdeff62 --- /dev/null +++ b/indra/newview/skins/default/xui/pl/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="Zoom Blisko" name="Zoom Close"/> + <menu_item_call label="Zoom Åšrednio" name="Zoom Medium"/> + <menu_item_call label="Zoom Daleko" name="Zoom Far"/> + <menu_item_call label="Zatrzymaj" name="Stop Tracking"/> + <menu_item_call label="Profil..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/pl/menu_viewer.xml b/indra/newview/skins/default/xui/pl/menu_viewer.xml index 51522b1ba96b4de4757ebbec1dab133120f3d445..8a86086e54f25f4ba52de421cb16935f192005b7 100755 --- a/indra/newview/skins/default/xui/pl/menu_viewer.xml +++ b/indra/newview/skins/default/xui/pl/menu_viewer.xml @@ -1,203 +1,205 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <menu_bar name="Main Menu"> - <menu label="Plik" name="File"> - <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> - <menu label="ZaÅ‚aduj" name="upload"> - <menu_item_call label="Obraz (L$[COST])..." name="Upload Image" /> - <menu_item_call label="DźwiÄ™k (L$[COST])..." name="Upload Sound" /> - <menu_item_call label="AnimacjÄ™ (L$[COST])..." name="Upload Animation" /> - <menu_item_call label="Zbiór Plików (L$[COST] za plik)..." name="Bulk Upload" /> - </menu> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_call label="Zamknij Bieżące Okno" name="Close Window" /> - <menu_item_call label="Zamknij Wszystkie Okna" name="Close All Windows" /> - <menu_item_separator label="-----------" name="separator2" /> - <menu_item_call label="Zapisz Obraz Jako..." name="Save Texture As..." /> - <menu_item_separator label="-----------" name="separator3" /> - <menu_item_call label="Zrób ZdjÄ™cie" name="Take Snapshot" /> - <menu_item_call label="Zapisz ZdjÄ™cie na Dysk" name="Snapshot to Disk" /> - <menu_item_separator label="-----------" name="separator4" /> - <menu_item_call label="WyÅ‚Ä…cz Program" name="Quit" /> - </menu> - <menu label="Edycja" name="Edit"> - <menu_item_call label="Cofnij" name="Undo" /> - <menu_item_call label="Powtórz" name="Redo" /> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_call label="Wytnij" name="Cut" /> - <menu_item_call label="Kopiuj" name="Copy" /> - <menu_item_call label="Wklej" name="Paste" /> - <menu_item_call label="UsuÅ„" name="Delete" /> - <menu_item_separator label="-----------" name="separator2" /> - <menu_item_call label="Szukaj..." name="Search..." /> - <menu_item_separator label="-----------" name="separator3" /> - <menu_item_call label="Zaznacz Wszystko" name="Select All" /> - <menu_item_call label="Cofnij Zaznaczenie" name="Deselect" /> - <menu_item_separator label="-----------" name="separator4" /> - <menu_item_call label="Duplikat" name="Duplicate" /> - <menu_item_separator label="-----------" name="separator5" /> - <menu label="DoÅ‚Ä…cz Obiekt" name="Attach Object" /> - <menu label="OdÅ‚Ä…cz Obiekt" name="Detach Object" /> - <menu label="Zdejmij Ubranie" name="Take Off Clothing"> - <menu_item_call label="KoszulÄ™" name="Shirt" /> - <menu_item_call label="Spodnie" name="Pants" /> - <menu_item_call label="Buty" name="Shoes" /> - <menu_item_call label="Skarpety" name="Socks" /> - <menu_item_call label="KurtkÄ™" name="Jacket" /> - <menu_item_call label="RÄ™kawiczki" name="Gloves" /> - <menu_item_call label="Podkoszulek" name="Menu Undershirt" /> - <menu_item_call label="BieliznÄ™" name="Menu Underpants" /> - <menu_item_call label="SpódnicÄ™" name="Skirt" /> - <menu_item_call label="CaÅ‚e Ubranie" name="All Clothes" /> - </menu> - <menu_item_separator label="-----------" name="separator6" /> - <menu_item_call label="Gesty..." name="Gestures..." /> - <menu_item_call label="Profil..." name="Profile..." /> - <menu_item_call label="WyglÄ…d..." name="Appearance..." /> - <menu_item_separator label="-----------" name="separator7" /> - <menu_item_check label="Znajomi..." name="Friends..." /> - <menu_item_call label="Grupy..." name="Groups..." /> - <menu_item_separator label="-----------" name="separator8" /> - <menu_item_call label="Ustawienia..." name="Preferences..." /> - </menu> - <menu label="Widok" name="View"> - <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~" /> - <menu_item_call label="Widok Panoramiczny" name="Mouselook" /> - <menu_item_check label="Budowanie" name="Build" /> - <menu_item_check label="Wolna Kamera" name="Joystick Flycam" /> - <menu_item_call label="Normalny Widok" name="Reset View" /> - <menu_item_call label="Historia Rozmów" name="Look at Last Chatter" /> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_check label="NarzÄ™dzia" name="Toolbar" /> - <menu_item_check label="Rozmowa Lokalna" name="Chat History" /> - <menu_item_check label="Rozmowa Prywatna (IM)" name="Instant Message" /> - <menu_item_call label="Moja Szafa" name="Inventory" /> - <menu_item_check label="RozmawiajÄ…ce Osoby" name="Active Speakers" /> - <menu_item_check label="Wyciszone Osoby" name="Mute List" /> - <menu_item_separator label="-----------" name="separator2" /> - <menu_item_check label="Ustawienia Kamery" name="Camera Controls" /> - <menu_item_check label="Ustawienia Ruchu" name="Movement Controls" /> - <menu_item_check label="Mapa Åšwiata" name="World Map" /> - <menu_item_check label="Mini-Mapa" name="Mini-Map" /> - <menu_item_separator label="-----------" name="separator3" /> - <menu_item_check label="Statystyki" name="Statistics Bar" /> - <menu_item_check label="Granice PosiadÅ‚oÅ›ci" name="Property Lines" /> - <menu_item_check label="WÅ‚aÅ›ciciele PosiadÅ‚oÅ›ci" name="Land Owners" /> - <menu_item_separator label="-----------" name="separator4" /> - <menu label="Podpowiedzi" name="Hover Tips"> - <menu_item_check label="Pokaż Podpowiedzi" name="Show Tips" /> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_check label="PosiadÅ‚ość: wskazówki" name="Land Tips" /> - <menu_item_check label="Obiekty: wskazówki" name="Tips On All Objects" /> - </menu> - <menu_item_check label="Pokaż Przezroczyste Obiekty" name="Highlight Transparent" /> - <menu_item_check label="Emitery" name="beacons" /> - <menu_item_check label="Ukryj CzÄ…steczki" name="Hide Particles" /> - <menu_item_check label="Pokaż ZaÅ‚Ä…czniki HUD" name="Show HUD Attachments" /> - <menu_item_separator label="-----------" name="separator5" /> - <menu_item_call label="Zbliżenie" name="Zoom In" /> - <menu_item_call label="DomyÅ›lny Tryb Widoku" name="Zoom Default" /> - <menu_item_call label="Oddalenie" name="Zoom Out" /> - <menu_item_separator label="-----------" name="separator6" /> - <menu_item_call label="Tryb Widoku PeÅ‚noekranowego" name="Toggle Fullscreen" /> - <menu_item_call label="Ustaw DomyÅ›lny Rozmiar Interfejsu Użytkownika" name="Set UI Size to Default" /> - </menu> - <menu label="Åšwiat" name="World"> - <menu_item_call label="Rozmowa/Czat" name="Chat" /> - <menu_item_check label="Biegnij" name="Always Run" /> - <menu_item_check label="Leć" name="Fly" /> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_call label="ZapamiÄ™taj Miejsce (LM)" name="Create Landmark Here" /> - <menu_item_call label="Ustaw Miejsce Startu" name="Set Home to Here" /> - <menu_item_separator label="-----------" name="separator2" /> - <menu_item_call label="Teleportuj do Miejsca Startu" name="Teleport Home" /> - <menu_item_separator label="-----------" name="separator3" /> - <menu_item_call label="Åšpij" name="Set Away" /> - <menu_item_call label="Pracuj" name="Set Busy" /> - <menu_item_call label="Zatrzymaj Wszystkie Animacje" name="Stop All Animations" /> - <menu_item_call label="Zwolnij Klawisze" name="Release Keys" /> - <menu_item_separator label="-----------" name="separator4" /> - <menu_item_call label="Historia Konta..." name="Account History..." /> - <menu_item_call label="ZarzÄ…dzaj Kontem..." name="Manage My Account..." /> - <menu_item_call label="Kup L$..." name="Buy and Sell L$..." /> - <menu_item_separator label="-----------" name="separator5" /> - <menu_item_call label="Moje PosiadÅ‚oÅ›ci..." name="My Land..." /> - <menu_item_call label="O PosiadÅ‚oÅ›ci..." name="About Land..." /> - <menu_item_call label="Kup PosiadÅ‚ość..." name="Buy Land..." /> - <menu_item_call label="Region/MajÄ…tek..." name="Region/Estate..." /> - <menu_item_separator label="-----------" name="separator6" /> - <menu label="Ustawienia Åšrodowiska" name="Environment Settings"> - <menu_item_call label="Wschód SÅ‚oÅ„ca" name="Sunrise" /> - <menu_item_call label="PoÅ‚udnie" name="Noon" /> - <menu_item_call label="Zachód SÅ‚oÅ„ca" name="Sunset" /> - <menu_item_call label="Północ" name="Midnight" /> - <menu_item_call label="Przywróć DomyÅ›lne Ustawienia Regionu" name="Revert to Region Default" /> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_call label="Edytor Åšrodowiska" name="Environment Editor" /> - </menu> - </menu> - <menu label="NarzÄ™dzia" name="Tools"> - <menu label="Wybierz NarzÄ™dzie " name="Select Tool"> - <menu_item_call label="Przybliżenie" name="Focus" /> - <menu_item_call label="PrzesuÅ„" name="Move" /> - <menu_item_call label="Edytuj" name="Edit" /> - <menu_item_call label="Stwórz" name="Create" /> - <menu_item_call label="PosiadÅ‚ość" name="Land" /> - </menu> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_check label="Wybierz Tylko Moje Obiekty" name="Select Only My Objects" /> - <menu_item_check label="Wybierz Tylko Obiekty Przesuwalne" name="Select Only Movable Objects" /> - <menu_item_check label="Wybierz Przez Zaznaczenie" name="Select By Surrounding" /> - <menu_item_check label="Pokaż UkrytÄ… SelekcjÄ™" name="Show Hidden Selection" /> - <menu_item_check label="Pokaż ZasiÄ™g ÅšwiatÅ‚a dla Selekcji" name="Show Light Radius for Selection" /> - <menu_item_check label="Pokaż ŹródÅ‚o Selekcji" name="Show Selection Beam" /> - <menu_item_separator label="-----------" name="separator2" /> - <menu_item_check label="PrzeciÄ…gnij Obiekt" name="Snap to Grid" /> - <menu_item_call label="PrzeciÄ…gnij Obiekt Do Siatki" name="Snap Object XY to Grid" /> - <menu_item_call label="Zastosuj Zaznaczenie Dla Siatki" name="Use Selection for Grid" /> - <menu_item_call label="Opcje Siatki..." name="Grid Options..." /> - <menu_item_separator label="-----------" name="separator3" /> - <menu_item_check label="Edytuj Zgrupowane Obiekty" name="Edit Linked Parts" /> - <menu_item_call label="Grupuj" name="Link" /> - <menu_item_call label="Rozgrupuj" name="Unlink" /> - <menu_item_separator label="-----------" name="separator4" /> - <menu_item_call label="OglÄ…daj SelekcjÄ™" name="Focus on Selection" /> - <menu_item_call label="Przybliż do Selekcji" name="Zoom to Selection" /> - <menu_item_call label="Kup Obiekt" name="Menu Object Take" /> - <menu_item_call label="Weź KopiÄ™" name="Take Copy" /> - <menu_item_call label="Zapisz Obiekt w Szafie" name="Save Object Back to My Inventory" /> - <menu_item_call label="Zapisz Obiekt z Poprawkami" name="Save Object Back to Object Contents" /> - <menu_item_separator label="-----------" name="separator6" /> - <menu_item_call label="Pokaż Okno Ostrzeżenia/BÅ‚Ä™du Skryptu" name="Show Script Warning/Error Window" /> - <menu label="Zrekompiluj Skrypt w Selekcji" name="Recompile Scripts in Selection"> - <menu_item_call label="Mono" name="Mono" /> - <menu_item_call label="LSL" name="LSL" /> - </menu> - <menu_item_call label="Zresetuj Skrypt w Selekcji" name="Reset Scripts in Selection" /> - <menu_item_call label="Uruchom DziaÅ‚anie Skryptów w Selekcji" name="Set Scripts to Running in Selection" /> - <menu_item_call label="Wstrzymaj DziaÅ‚anie Skryptów w Selekcji" name="Set Scripts to Not Running in Selection" /> - </menu> - <menu label="Pomoc" name="Help"> - <menu_item_call label="Second Life: Pomoc" name="Second Life Help" /> - <menu_item_call label="Samouczek" name="Tutorial" /> - <menu_item_separator label="-----------" name="separator" /> - <menu_item_call label="Oficjalny Blog Second Life..." name="Official Linden Blog..." /> - <menu_item_separator label="-----------" name="separator2" /> - <menu_item_call label="Portal dla Skrypterów..." name="Scripting Portal..." /> - <menu_item_separator label="-----------" name="separator3" /> - <menu_item_call label="Złóż Raport o Nadużyciu..." name="Report Abuse..." /> - <menu_item_call label="Zderzenia, PopchniÄ™cia, Uderzenia..." name="Bumps, Pushes &amp; Hits..." /> - <menu_item_call label="Pomiar Lagów" name="Lag Meter" /> - <menu_item_separator label="-----------" name="separator7" /> - <menu label="ZgÅ‚oÅ› BÅ‚Ä™dy Klienta" name="Bug Reporting"> - <menu_item_call label="Publiczna Baza BÅ‚Ä™dów (JIRA)..." name="Public Issue Tracker..." /> - <menu_item_call label="Co to jest JIRA?..." name="Publc Issue Tracker Help..." /> - <menu_item_separator label="-----------" name="separator7" /> - <menu_item_call label="Instrukcje: Jak ZgÅ‚osić BÅ‚Ä…d?..." name="Bug Reporing 101..." /> - <menu_item_call label="Zabezpieczenia..." name="Security Issues..." /> - <menu_item_call label="Pytania i Odpowiedzi: Wikipedia..." name="QA Wiki..." /> - <menu_item_separator label="-----------" name="separator9" /> - <menu_item_call label="WyÅ›lij Raport BÅ‚Ä™du..." name="Report Bug..." /> - </menu> - <menu_item_call label="O Second Life..." name="About Second Life..." /> - </menu> + <menu label="Plik" name="File"> + <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> + <menu label="ZaÅ‚aduj" name="upload"> + <menu_item_call label="Obraz (L$[COST])..." name="Upload Image"/> + <menu_item_call label="DźwiÄ™k (L$[COST])..." name="Upload Sound"/> + <menu_item_call label="Animacja (L$[COST])..." name="Upload Animation"/> + <menu_item_call label="Zbiór plików (L$[COST] za plik)..." name="Bulk Upload"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Wybierz ustawienia domyÅ›lne..." name="perm prefs"/> + </menu> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Zamknij Bieżące Okno" name="Close Window"/> + <menu_item_call label="Zamknij Wszystkie Okna" name="Close All Windows"/> + <menu_item_separator label="-----------" name="separator2"/> + <menu_item_call label="Zapisz Obraz Jako..." name="Save Texture As..."/> + <menu_item_separator label="-----------" name="separator3"/> + <menu_item_call label="Zrób ZdjÄ™cie" name="Take Snapshot"/> + <menu_item_call label="Zapisz ZdjÄ™cie na Dysk" name="Snapshot to Disk"/> + <menu_item_separator label="-----------" name="separator4"/> + <menu_item_call label="WyÅ‚Ä…cz Program" name="Quit"/> + </menu> + <menu label="Edycja" name="Edit"> + <menu_item_call label="Cofnij" name="Undo"/> + <menu_item_call label="Powtórz" name="Redo"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Wytnij" name="Cut"/> + <menu_item_call label="Kopiuj" name="Copy"/> + <menu_item_call label="Wklej" name="Paste"/> + <menu_item_call label="UsuÅ„" name="Delete"/> + <menu_item_separator label="-----------" name="separator2"/> + <menu_item_call label="Szukaj..." name="Search..."/> + <menu_item_separator label="-----------" name="separator3"/> + <menu_item_call label="Zaznacz Wszystko" name="Select All"/> + <menu_item_call label="Cofnij Zaznaczenie" name="Deselect"/> + <menu_item_separator label="-----------" name="separator4"/> + <menu_item_call label="Duplikat" name="Duplicate"/> + <menu_item_separator label="-----------" name="separator5"/> + <menu label="DoÅ‚Ä…cz Obiekt" name="Attach Object"/> + <menu label="OdÅ‚Ä…cz Obiekt" name="Detach Object"/> + <menu label="Zdejmij Ubranie" name="Take Off Clothing"> + <menu_item_call label="KoszulÄ™" name="Shirt"/> + <menu_item_call label="Spodnie" name="Pants"/> + <menu_item_call label="Buty" name="Shoes"/> + <menu_item_call label="Skarpety" name="Socks"/> + <menu_item_call label="KurtkÄ™" name="Jacket"/> + <menu_item_call label="RÄ™kawiczki" name="Gloves"/> + <menu_item_call label="Podkoszulek" name="Menu Undershirt"/> + <menu_item_call label="BieliznÄ™" name="Menu Underpants"/> + <menu_item_call label="SpódnicÄ™" name="Skirt"/> + <menu_item_call label="CaÅ‚e Ubranie" name="All Clothes"/> + </menu> + <menu_item_separator label="-----------" name="separator6"/> + <menu_item_call label="Gesty..." name="Gestures..."/> + <menu_item_call label="Profil..." name="Profile..."/> + <menu_item_call label="WyglÄ…d..." name="Appearance..."/> + <menu_item_separator label="-----------" name="separator7"/> + <menu_item_check label="Znajomi..." name="Friends..."/> + <menu_item_call label="Grupy..." name="Groups..."/> + <menu_item_separator label="-----------" name="separator8"/> + <menu_item_call label="Ustawienia..." name="Preferences..."/> + </menu> + <menu label="Widok" name="View"> + <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> + <menu_item_call label="Widok Panoramiczny" name="Mouselook"/> + <menu_item_check label="Budowanie" name="Build"/> + <menu_item_check label="Wolna Kamera" name="Joystick Flycam"/> + <menu_item_call label="Normalny Widok" name="Reset View"/> + <menu_item_call label="Historia Rozmów" name="Look at Last Chatter"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_check label="NarzÄ™dzia" name="Toolbar"/> + <menu_item_check label="Rozmowa Lokalna" name="Chat History"/> + <menu_item_check label="Rozmowa Prywatna (IM)" name="Instant Message"/> + <menu_item_check label="Moja Szafa" name="Inventory"/> + <menu_item_check label="RozmawiajÄ…ce Osoby" name="Active Speakers"/> + <menu_item_check label="Wyciszone Osoby" name="Mute List"/> + <menu_item_separator label="-----------" name="separator2"/> + <menu_item_check label="Ustawienia Kamery" name="Camera Controls"/> + <menu_item_check label="Ustawienia Ruchu" name="Movement Controls"/> + <menu_item_check label="Mapa Åšwiata" name="World Map"/> + <menu_item_check label="Mini-Mapa" name="Mini-Map"/> + <menu_item_separator label="-----------" name="separator3"/> + <menu_item_check label="Statystyki" name="Statistics Bar"/> + <menu_item_check label="Granice PosiadÅ‚oÅ›ci" name="Property Lines"/> + <menu_item_check label="Linie banu" name="Banlines"/> + <menu_item_check label="WÅ‚aÅ›ciciele PosiadÅ‚oÅ›ci" name="Land Owners"/> + <menu_item_separator label="-----------" name="separator4"/> + <menu label="Podpowiedzi" name="Hover Tips"> + <menu_item_check label="Pokaż Podpowiedzi" name="Show Tips"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_check label="PosiadÅ‚ość: wskazówki" name="Land Tips"/> + <menu_item_check label="Obiekty: wskazówki" name="Tips On All Objects"/> + </menu> + <menu_item_check label="Pokaż Przezroczyste Obiekty" name="Highlight Transparent"/> + <menu_item_check label="Emitery" name="beacons"/> + <menu_item_check label="Ukryj CzÄ…steczki" name="Hide Particles"/> + <menu_item_check label="Pokaż ZaÅ‚Ä…czniki HUD" name="Show HUD Attachments"/> + <menu_item_separator label="-----------" name="separator5"/> + <menu_item_call label="Zbliżenie" name="Zoom In"/> + <menu_item_call label="DomyÅ›lny Tryb Widoku" name="Zoom Default"/> + <menu_item_call label="Oddalenie" name="Zoom Out"/> + <menu_item_separator label="-----------" name="separator6"/> + <menu_item_call label="Tryb Widoku PeÅ‚noekranowego" name="Toggle Fullscreen"/> + <menu_item_call label="Ustaw DomyÅ›lny Rozmiar Interfejsu Użytkownika" name="Set UI Size to Default"/> + </menu> + <menu label="Åšwiat" name="World"> + <menu_item_call label="Rozmowa/Czat" name="Chat"/> + <menu_item_check label="Biegnij" name="Always Run"/> + <menu_item_check label="Leć" name="Fly"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="ZapamiÄ™taj Miejsce (LM)" name="Create Landmark Here"/> + <menu_item_call label="Ustaw Miejsce Startu" name="Set Home to Here"/> + <menu_item_separator label="-----------" name="separator2"/> + <menu_item_call label="Teleportuj do Miejsca Startu" name="Teleport Home"/> + <menu_item_separator label="-----------" name="separator3"/> + <menu_item_call label="Åšpij" name="Set Away"/> + <menu_item_call label="Pracuj" name="Set Busy"/> + <menu_item_call label="Zatrzymaj Wszystkie Animacje" name="Stop Animating My Avatar"/> + <menu_item_call label="Zwolnij Klawisze" name="Release Keys"/> + <menu_item_separator label="-----------" name="separator4"/> + <menu_item_call label="Historia Konta..." name="Account History..."/> + <menu_item_call label="ZarzÄ…dzaj Kontem..." name="Manage My Account..."/> + <menu_item_call label="Kup L$..." name="Buy and Sell L$..."/> + <menu_item_separator label="-----------" name="separator5"/> + <menu_item_call label="Moje PosiadÅ‚oÅ›ci..." name="My Land..."/> + <menu_item_call label="O PosiadÅ‚oÅ›ci..." name="About Land..."/> + <menu_item_call label="Kup PosiadÅ‚ość..." name="Buy Land..."/> + <menu_item_call label="Region/MajÄ…tek..." name="Region/Estate..."/> + <menu_item_separator label="-----------" name="separator6"/> + <menu label="Ustawienia Åšrodowiska" name="Environment Settings"> + <menu_item_call label="Wschód SÅ‚oÅ„ca" name="Sunrise"/> + <menu_item_call label="PoÅ‚udnie" name="Noon"/> + <menu_item_call label="Zachód SÅ‚oÅ„ca" name="Sunset"/> + <menu_item_call label="Północ" name="Midnight"/> + <menu_item_call label="Przywróć DomyÅ›lne Ustawienia Regionu" name="Revert to Region Default"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Edytor Åšrodowiska" name="Environment Editor"/> + </menu> + </menu> + <menu label="NarzÄ™dzia" name="Tools"> + <menu label="Wybierz NarzÄ™dzie " name="Select Tool"> + <menu_item_call label="Przybliżenie" name="Focus"/> + <menu_item_call label="PrzesuÅ„" name="Move"/> + <menu_item_call label="Edytuj" name="Edit"/> + <menu_item_call label="Stwórz" name="Create"/> + <menu_item_call label="PosiadÅ‚ość" name="Land"/> + </menu> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_check label="Wybierz Tylko Moje Obiekty" name="Select Only My Objects"/> + <menu_item_check label="Wybierz Tylko Obiekty Przesuwalne" name="Select Only Movable Objects"/> + <menu_item_check label="Wybierz Przez Zaznaczenie" name="Select By Surrounding"/> + <menu_item_check label="Pokaż UkrytÄ… SelekcjÄ™" name="Show Hidden Selection"/> + <menu_item_check label="Pokaż ZasiÄ™g ÅšwiatÅ‚a dla Selekcji" name="Show Light Radius for Selection"/> + <menu_item_check label="Pokaż ŹródÅ‚o Selekcji" name="Show Selection Beam"/> + <menu_item_separator label="-----------" name="separator2"/> + <menu_item_check label="PrzeciÄ…gnij Obiekt" name="Snap to Grid"/> + <menu_item_call label="PrzeciÄ…gnij Obiekt Do Siatki" name="Snap Object XY to Grid"/> + <menu_item_call label="Zastosuj Zaznaczenie Dla Siatki" name="Use Selection for Grid"/> + <menu_item_call label="Opcje Siatki..." name="Grid Options..."/> + <menu_item_separator label="-----------" name="separator3"/> + <menu_item_check label="Edytuj Zgrupowane Obiekty" name="Edit Linked Parts"/> + <menu_item_call label="Grupuj" name="Link"/> + <menu_item_call label="Rozgrupuj" name="Unlink"/> + <menu_item_separator label="-----------" name="separator4"/> + <menu_item_call label="OglÄ…daj SelekcjÄ™" name="Focus on Selection"/> + <menu_item_call label="Przybliż do Selekcji" name="Zoom to Selection"/> + <menu_item_call label="Kup Obiekt" name="Menu Object Take"/> + <menu_item_call label="Weź KopiÄ™" name="Take Copy"/> + <menu_item_call label="Zapisz Obiekt z Poprawkami" name="Save Object Back to Object Contents"/> + <menu_item_separator label="-----------" name="separator6"/> + <menu_item_call label="Pokaż Okno Ostrzeżenia/BÅ‚Ä™du Skryptu" name="Show Script Warning/Error Window"/> + <menu label="Zrekompiluj Skrypt w Selekcji" name="Recompile Scripts in Selection"> + <menu_item_call label="Mono" name="Mono"/> + <menu_item_call label="LSL" name="LSL"/> + </menu> + <menu_item_call label="Zresetuj Skrypt w Selekcji" name="Reset Scripts in Selection"/> + <menu_item_call label="Uruchom DziaÅ‚anie Skryptów w Selekcji" name="Set Scripts to Running in Selection"/> + <menu_item_call label="Wstrzymaj DziaÅ‚anie Skryptów w Selekcji" name="Set Scripts to Not Running in Selection"/> + </menu> + <menu label="Pomoc" name="Help"> + <menu_item_call label="Second Life: Pomoc" name="Second Life Help"/> + <menu_item_call label="Samouczek" name="Tutorial"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Oficjalny Blog Second Life..." name="Official Linden Blog..."/> + <menu_item_separator label="-----------" name="separator2"/> + <menu_item_call label="Portal dla Skrypterów..." name="Scripting Portal..."/> + <menu_item_separator label="-----------" name="separator3"/> + <menu_item_call label="Złóż Raport o Nadużyciu..." name="Report Abuse..."/> + <menu_item_call label="Zderzenia, PopchniÄ™cia, Uderzenia..." name="Bumps, Pushes &amp; Hits..."/> + <menu_item_call label="Pomiar Lagów" name="Lag Meter"/> + <menu_item_separator label="-----------" name="separator7"/> + <menu label="ZgÅ‚oÅ› BÅ‚Ä™dy Klienta" name="Bug Reporting"> + <menu_item_call label="Publiczna Baza BÅ‚Ä™dów (JIRA)..." name="Public Issue Tracker..."/> + <menu_item_call label="Co to jest JIRA?..." name="Publc Issue Tracker Help..."/> + <menu_item_separator label="-----------" name="separator7"/> + <menu_item_call label="Instrukcje: Jak ZgÅ‚osić BÅ‚Ä…d?..." name="Bug Reporing 101..."/> + <menu_item_call label="Zabezpieczenia..." name="Security Issues..."/> + <menu_item_call label="Pytania i Odpowiedzi: Wikipedia..." name="QA Wiki..."/> + <menu_item_separator label="-----------" name="separator9"/> + <menu_item_call label="WyÅ›lij Raport BÅ‚Ä™du..." name="Report Bug..."/> + </menu> + <menu_item_call label="O Second Life..." name="About Second Life..."/> + </menu> </menu_bar> diff --git a/indra/newview/skins/default/xui/pl/notifications.xml b/indra/newview/skins/default/xui/pl/notifications.xml index 1d5dc8ae8deb53dde67bb40f70bc12a7542ed3a2..e2b26bf0d1bffbb5c1b53b1c2ca10c9680c4b039 100644 --- a/indra/newview/skins/default/xui/pl/notifications.xml +++ b/indra/newview/skins/default/xui/pl/notifications.xml @@ -1,15 +1,11 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> Nie pokazuj tej opcji nastÄ™pnym razem - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> Pozwalaj na wybór tej opcji - </global> - + </global> <template name="okbutton"> <form> <button @@ -74,5645 +70,2968 @@ text="$canceltext"/> </form> </template> + <notification functor="GenericAcknowledge" label="Nieznany rodzaj komunikatu" name="MissingAlert"> + Twoja wersja klienta Second Life nie może wyÅ›wietlić odebranej wiadomoÅ›ci. - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -'[_NAME]' brakuje w pliku notifications.xml. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -BÅ‚Ä…d: nie można znaleźć nastÄ™pujÄ…cych elementów: +Szczegóły bÅ‚Ä™du: BÅ‚Ä…d o nazwie '[_NAME]' nie zostaÅ‚ odnaleziony w pliku notifications.xml. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + BÅ‚Ä…d: nie można znaleźć nastÄ™pujÄ…cych elementów: [CONTROLS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + Brak samouczka na ten temat + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Tak"/> + </notification> + <notification name="BadInstallation"> + Podczas aktualizacji klienta Second Life wystÄ…piÅ‚ bÅ‚Ä…d. ProszÄ™ odwiedzić stronÄ™ secondlife.com by Å›ciÄ…gnąć najnowszÄ… wersje klienta. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -Brak samouczka na ten temat + </notification> + <notification name="LoginFailedNoNetwork"> + BÅ‚Ä…d sieci: Brak poÅ‚Ä…czenia. +'[DIAGNOSTIC]' +Sprawdź stan swojego poÅ‚Ä…czenia sieciowego. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Tak"/> - </notification> - - <notification - - name="WearableSave" - > -Zapisać zmiany dotyczÄ…ce ubrania/części ciaÅ‚a? + </notification> + <notification name="MessageTemplateNotFound"> + Wzór komunikatu dla [PATH] nie odnaleziony. <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Nie Zapisuj" - yestext="Zapisz"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -W trakcie Å‚adwania tekstu dla skryptu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj ponownie za kilka minut. - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -W trakcie Å‚adwania skompilowanego skryptu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj ponownie za kilka minut. - </notification> - - <notification - - name="WriteAnimationFail" - > -Problem w zapisywaniu danych animacji. Spróbuj ponownie za kilka minut. - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -W trakcie Å‚adwania obrazu aukcji pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -Nie można przeglÄ…dać zawartoÅ›ci wiÄ™cej niż jednego obiektu naraz. + name="okbutton" + yestext="OK"/> + </notification> + <notification name="WearableSave"> + Zapisać zmiany dotyczÄ…ce ubrania/części ciaÅ‚a? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie Zapisuj" yestext="Zapisz"/> + </notification> + <notification name="CompileQueueSaveText"> + W trakcie Å‚adwania tekstu dla skryptu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj ponownie za kilka minut. + </notification> + <notification name="CompileQueueSaveBytecode"> + W trakcie Å‚adwania skompilowanego skryptu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj ponownie za kilka minut. + </notification> + <notification name="WriteAnimationFail"> + Problem w zapisywaniu danych animacji. Spróbuj ponownie za kilka minut. + </notification> + <notification name="UploadAuctionSnapshotFail"> + W trakcie Å‚adwania obrazu aukcji pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON]. + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + Nie można przeglÄ…dać zawartoÅ›ci wiÄ™cej niż jednego obiektu naraz. Wybierz pojedynczy obiekt i spróbuj jeszcze raz. - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -Zapisać wszystkie zmiany dotyczÄ…ce ubrania/czeÅ›ci ciaÅ‚a? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Nie Zapisuj" - yestext="Zapisz"/> - </notification> - - <notification - - name="GrantModifyRights" - > -Udzielenie praw modyfikacji innemu Rezydentowi umożliwia modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. + </notification> + <notification name="SaveClothingBodyChanges"> + Zapisać wszystkie zmiany dotyczÄ…ce ubrania/czeÅ›ci ciaÅ‚a? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie Zapisuj" yestext="Zapisz"/> + </notification> + <notification name="GrantModifyRights"> + Udzielenie praw modyfikacji innemu Rezydentowi umożliwia modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. Używaj tej opcji z rozwagÄ…! Czy chcesz dać prawa modyfikacji osobie [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -Udzielenie praw modyfikacji innym Rezydentom umożliwia im modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + Udzielenie praw modyfikacji innym Rezydentom umożliwia im modyfikacjÄ™, usuwanie lub wziÄ™cie JAKIEGOKOLWIEK z Twoich obiektów. Używaj tej opcji z rozwagÄ…! Czy chcesz dać prawa modyfikacji wybranym osobom? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -Czy chcesz odebrać prawa modyfikacji Rezydentowi [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -Czy chcesz odebrać prawa modyfikacji wybranym Rezydentom? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -ZaÅ‚ożenie grupy niemożliwe. + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="RevokeModifyRights"> + Czy chcesz odebrać prawa modyfikacji Rezydentowi [FIRST_NAME] [LAST_NAME]? + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + Czy chcesz odebrać prawa modyfikacji wybranym Rezydentom? + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="UnableToCreateGroup"> + ZaÅ‚ożenie grupy niemożliwe. [MESSAGE] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Ignoruj Zmiany" - yestext="Zastosuj Zmiany"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -Aby wysÅ‚ać ogÅ‚oszenie do grupy musisz nadać mu tytuÅ‚. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -Dodajesz czÅ‚onków do funkcji [ROLE_NAME]. + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Ignoruj Zmiany" yestext="Zastosuj Zmiany"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + Aby wysÅ‚ać ogÅ‚oszenie do grupy musisz nadać mu tytuÅ‚. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + Dodajesz czÅ‚onków do funkcji [ROLE_NAME]. Ta funkcja nie może być odebrana. CzÅ‚onkowie muszÄ… sami zrezygnować z peÅ‚nienia tej funkcji. Chcesz kontynuować? - <usetemplate - ignoretext="Podczas dodawania czÅ‚onków grupy do funkcji wÅ‚aÅ›ciciela" - name="okcancelignore" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -Dodajesz przywilej [ACTION_NAME] do fukcji [ROLE_NAME]. + <usetemplate ignoretext="Podczas dodawania czÅ‚onków grupy do funkcji wÅ‚aÅ›ciciela" name="okcancelignore" notext="Nie" yestext="Tak"/> + </notification> + <notification name="AssignDangerousActionWarning"> + Dodajesz przywilej [ACTION_NAME] do fukcji [ROLE_NAME]. *UWAGA* CzÅ‚onek w funkcji z tym przywilejem może przypisać siebie i innych czÅ‚onków nie bÄ™dÄ…cych wÅ‚aÅ›cicielami do funkcji dajÄ…cych wiÄ™cej przywilejów niż posiadane obecnie potencjalnie dajÄ…ce możliwoÅ›ci zbliżone do możliwoÅ›ci wÅ‚aÅ›ciciela. Udzielaj tego przywileju z rozwagÄ…." Dodać ten przywilej do funkcji [ROLE_NAME]? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -Dodajesz przywilej [ACTION_NAME] do fukcji [ROLE_NAME] + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + Dodajesz przywilej [ACTION_NAME] do fukcji [ROLE_NAME] *UWAGA* CzÅ‚onek w funkcji z tym przywilejem może przypisać sobie i innychm czÅ‚onkom nie bÄ™dÄ…cym wÅ‚aÅ›cicielami wszystkie przywileje potencjalnie dajÄ…ce możliwoÅ›ci zbliżone do możliwoÅ›ci wÅ‚aÅ›ciciela. Udzielaj tego przywileju z rozwagÄ…. Dodać ten przywilej do funkcji [ROLE_NAME]? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -Wybranie opcji Publikuj w Wyszukiwarce Wybranie tej opcji umożliwi pokazywanie: + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="ClickPublishHelpLand"> + Wybranie opcji Publikuj w Wyszukiwarce Wybranie tej opcji umożliwi pokazywanie: - tej posiadÅ‚oÅ›ci w wynikach wyszukiwarki - publicznych obiektów na tej posiadÅ‚oÅ›ci - tej posiadÅ‚oÅ›ci w przeglÄ…darce internetowej - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -Ta posiadÅ‚ość nie może być pokazywana w wynikach wyszukiwania ponieważ region w którym siÄ™ znajduje zabrania tego. - </notification> - - <notification - - name="ClickPublishHelpAvatar" - > -Wybranie opcji Publikuj w Wyszukiwarce umożliwi pokazywanie: + </notification> + <notification name="ClickSoundHelpLand"> + Media oraz muzyka sÄ… aktywne wedÅ‚ug ustawieÅ„ posiadÅ‚oÅ›ci dla mediów. DźwiÄ™k oraz komunikacja gÅ‚osowa mogÄ… być ograniczone w danej posiadÅ‚oÅ›ci, w zależnoÅ›ci od ustawieÅ„ rodzaju treÅ›ci jakÄ… zawiera. Skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Second Life:Pomoc" + notext="Zamknij" /> + </notification> + <notification name="ClickSearchHelpAll"> + Wyniki wyszukiwania wyÅ›wietlajÄ… siÄ™ na podstawie rodzaju zakÅ‚adki wyszukiwarki, z której korzystasz, rodzaju statusu Twojego wieku, wybranej kategorii, oraz innych czynników. By uzyskać wiecej szczegółów skorzystaj z Second Life: Pomoc. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Second Life:Pomoc" + notext="Zamknij" /> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + Ta posiadÅ‚ość nie może być pokazywana w wynikach wyszukiwania ponieważ region w którym siÄ™ znajduje zabrania tego. + </notification> + <notification name="ClickPublishHelpAvatar"> + Wybranie opcji Publikuj w Wyszukiwarce umożliwi pokazywanie: - Twojego profilu w wynikach wyszukiwarki - linku do Twojego profilu na publicznych stronach - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -Możesz zaproponować zwiÄ…zek innemu Rezydentowi lub rozwiÄ…zać istniejÄ…cy zwiÄ…zek na stronie internetowej [SECOND_LIFE]. + </notification> + <notification name="ClickPartnerHelpAvatar"> + Możesz zaproponować zwiÄ…zek innemu Rezydentowi lub rozwiÄ…zać istniejÄ…cy zwiÄ…zek na stronie internetowej [SECOND_LIFE]. Chcesz dowiedzieć siÄ™ wiÄ™cej na temat zwiÄ…zków w Second Life? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Idź na stronÄ™"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -Jeżeli ten Rezydent posiada link URL w profilu możesz: + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Idź na stronÄ™"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + Twoje domyÅ›lne ustawienia praw dla Twoich obiektów mogÄ… nie dziaÅ‚ać poprawnie w starszych regionach. + </notification> + <notification name="ClickWebProfileHelpAvatar"> + Jeżeli ten Rezydent posiada link URL w profilu możesz: * Kliknąć 'ZaÅ‚aduj' żeby zobaczyć stronÄ™ w tej zakÅ‚adce WWW. * Kliknąć 'ZaÅ‚aduj' > 'Użyj zewnÄ™trznej przeglÄ…darki' żeby zobaczyć stronÄ™ używajÄ…c domyÅ›lnej zewnÄ™trznej przeglÄ…darki. * Kliknąć 'ZaÅ‚aduj' > 'Otwórz URL strony profilu' żeby wrócić do strony tego Rezydenta po jej opuszczeniu. OglÄ…dajÄ…c swój profil możesz wpisać dowolny link URL i kliknąć OK żeby go zapisać. Rezydenci mogÄ… odwiedzać podany adres, kiedy przeglÄ…dajÄ… Twój profil. - </notification> - - <notification - - name="JoinGroupCanAfford" - > -DoÅ‚Ä…czenie do tej grupy kosztuje [COST]L$. + </notification> + <notification name="JoinGroupCanAfford"> + DoÅ‚Ä…czenie do tej grupy kosztuje [COST]L$. Chcesz kontynuować? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="DoÅ‚Ä…cz"/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -CzÅ‚onkostwo w tej grupie kosztuje [COST]L$ + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="DoÅ‚Ä…cz"/> + </notification> + <notification name="JoinGroupCannotAfford"> + CzÅ‚onkostwo w tej grupie kosztuje [COST]L$ Masz za maÅ‚o L$ żeby zostać czÅ‚onkiem. - </notification> - - <notification - - name="LandBuyPass" - > -Za [COST]L$ możesz odwiedzić tÄ… posiadÅ‚ość ('[PARCEL_NAME]') na [TIME] godzin. Chcesz kupić przepustkÄ™? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -Cena sprzedaży musi być wyższa niż 0L$ jeżeli sprzedajesz komukolwiek. + </notification> + <notification name="LandBuyPass"> + Za [COST]L$ możesz odwiedzić tÄ… posiadÅ‚ość ('[PARCEL_NAME]') na [TIME] godzin. Chcesz kupić przepustkÄ™? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + Cena sprzedaży musi być wyższa niż 0L$ jeżeli sprzedajesz komukolwiek. Musisz wybrać kupca jeżeli chcesz sprzedać za 0L$. - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -PosiadÅ‚ość o powierzchni [LAND_SIZE] m zostaje wystawiona na sprzedaż. + </notification> + <notification name="ConfirmLandSaleChange"> + PosiadÅ‚ość o powierzchni [LAND_SIZE] m zostaje wystawiona na sprzedaż. Cena wynosi [SALE_PRICE]L$ i sprzedaż bÄ™dzie autoryzowana dla [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -UWAGA: WybierajÄ…c Sprzedaż dla Kogokolwiek umożliwiasz zakup posiadÅ‚oÅ›ci wszystkim Rezydentom Second Life. + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + UWAGA: WybierajÄ…c Sprzedaż dla Kogokolwiek umożliwiasz zakup posiadÅ‚oÅ›ci wszystkim Rezydentom Second Life. PosiadÅ‚ość o powierzchni [LAND_SIZE] m zostaje wystawiona na sprzedaż. Cena wynosi [SALE_PRICE]L$ i sprzedaż bÄ™dzie autoryzowana dla [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -Czy na pewno chcesz zwrócić wszystkie obiekty udostÄ™pnione grupie [NAME] na tej posiadÅ‚oÅ›ci do szafy ich poprzednich wÅ‚aÅ›cicieli? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + Czy na pewno chcesz zwrócić wszystkie obiekty udostÄ™pnione grupie [NAME] na tej posiadÅ‚oÅ›ci do szafy ich poprzednich wÅ‚aÅ›cicieli? *UWAGA* Wybrana opcja spowoduje usuniÄ™cie wszystkich obiektów udostÄ™pnionych grupie, które nie majÄ… praw transferu! Obiekty: [N] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + Czy na pewno chcesz zwrócić wszystkie obiekty należące do Rezydenta [NAME] znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szafy wÅ‚aÅ›ciciela? - <notification - - name="ReturnObjectsOwnedByUser" - > -Czy na pewno chcesz zwrócić wszystkie obiekty należące do Rezydenta [NAME] znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szafy wÅ‚aÅ›ciciela? +Obiekty: [N] + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + Czy na pewno chcesz zwrócić wszystkie Twoje obiekty znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do swojej szafy? Obiekty: [N] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + Czy na pewno chcesz zwrócić wszystkie obiekty, których nie jesteÅ› wÅ‚aÅ›cicielem znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szaf wÅ‚aÅ›cicieli? Wszystkie obiekty udostÄ™pnione grupie z prawem transferu, zostanÄ… zwrócone poprzednim wÅ‚aÅ›cicielom. - <notification - - name="ReturnObjectsOwnedBySelf" - > -Czy na pewno chcesz zwrócić wszystkie Twoje obiekty znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do swojej szafy? +*UWAGA* Wybrana opcja spowoduje usuniÄ™cie wszystkich obiektów udostÄ™pnionych grupie, które nie majÄ… praw transferu! Obiekty: [N] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -Czy na pewno chcesz zwrócić wszystkie obiekty, których nie jesteÅ› wÅ‚aÅ›cicielem znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szaf wÅ‚aÅ›cicieli? Wszystkie obiekty udostÄ™pnione grupie z prawem transferu, zostanÄ… zwrócone poprzednim wÅ‚aÅ›cicielom. + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + Czy na pewno chcesz zwrócić wszystkie obiekty, które nie należą do [NAME] znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szaf wÅ‚aÅ›cicieli? Wszystkie obiekty udostÄ™pnione grupie z prawem transferu, zostanÄ… zwrócone poprzednim wÅ‚aÅ›cicielom. *UWAGA* Wybrana opcja spowoduje usuniÄ™cie wszystkich obiektów udostÄ™pnionych grupie, które nie majÄ… praw transferu! Obiekty: [N] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnAllTopObjects"> + Czy na pewno chcesz zwrócić wszystkie wymienione obiekty znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szaf ich wÅ‚aÅ›cicieli? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="DisableAllTopObjects"> + Czy na pewno chcesz deaktywować wszystkie obiekty w tym regionie? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + Zwrócić obiekty z tej posiadÅ‚oÅ›ci, które nie sÄ… udosÄ™pnione grupie [NAME] do ich wÅ‚aÅ›cicieli? - <notification - - name="ReturnObjectsNotOwnedByUser" - > -Czy na pewno chcesz zwrócić wszystkie obiekty, które nie należą do [NAME] znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szaf wÅ‚aÅ›cicieli? Wszystkie obiekty udostÄ™pnione grupie z prawem transferu, zostanÄ… zwrócone poprzednim wÅ‚aÅ›cicielom. +Obiekty: [N] + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + Nie można deaktywować skryptów. +Ten region pozwala na uszkodzenia. +Skrypty muszÄ… pozostać aktywne dla prawidÅ‚owego dziaÅ‚ania broni. + </notification> + <notification name="MustBeInParcel"> + Musisz znajdować siÄ™ wewnÄ…trz posiadÅ‚oÅ›ci żeby wybrać punkt lÄ…dowania. + </notification> + <notification name="PromptRecipientEmail"> + ProszÄ™ wpisać adres emailowy odbiorcy. + </notification> + <notification name="PromptSelfEmail"> + ProszÄ™ wpisać swój adres emailowy. + </notification> + <notification name="PromptMissingSubjMsg"> + WysÅ‚ać widokówkÄ™ z domyÅ›lnym tematem i wiadomoÅ›ciÄ…? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + BÅ‚Ä…d w trakcie przetwarzania danych zdjÄ™cia. + </notification> + <notification name="ErrorEncodingSnapshot"> + BÅ‚Ä…d w kodowaniu zdjÄ™cia. + </notification> + <notification name="ErrorUploadingPostcard"> + W trakcie Å‚adowania zdjÄ™cia pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + W trakcie Å‚adowania zdjÄ™cia ekranu do raportu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + Musisz zaakceptować Warunki Umowy (Terms of Service) by kontynuować logowanie siÄ™ do [SECOND_LIFE]. + </notification> + <notification name="CouldNotPutOnOutfit"> + ZaÅ‚ożenie stroju nie powiodÅ‚o siÄ™. +Folder stroju nie zawiera żadnego ubrania, części ciaÅ‚a ani zaÅ‚Ä…czników. + </notification> + <notification name="CannotWearTrash"> + Nie możesz zaÅ‚ożyć ubrania, które znajduje siÄ™ w koszu. + </notification> + <notification name="CannotWearInfoNotComplete"> + Nie możesz zaÅ‚ożyć tego artkuÅ‚u ponieważ nie zaÅ‚adowaÅ‚ siÄ™ poprawnie. Spróbuj ponownie za kilka minut. + </notification> + <notification name="MustHaveAccountToLogIn"> + Musisz mieć konto by móc zalogować siÄ™ do [SECOND_LIFE]. +Czy chcesz przejść na stronÄ™ www.secondlife.com by zaÅ‚ożyć konto? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="AddClassified"> + OgÅ‚oszenia reklamowe ukazujÄ… siÄ™ w zakÅ‚adce Reklama w wyszukiwarce (Szukaj) oraz na stronie internetowej www.secondlife.com przez tydzieÅ„. +Napisz treść swojej reklamy, kliknij Zamieść by dodać katalogu ogÅ‚oszeÅ„. +Po zamieszczeniu reklamy zostaniesz poproszony o sprecyzowanie opÅ‚aty za reklamÄ™. +Im wyższa opÅ‚ata tym wyżej Twoja reklama wyÅ›wietla siÄ™ w katalogu i wyszukiwarce po wpisaniu słów kluczowych. + <usetemplate ignoretext="W momencie dodawania nowej reklamy" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="DeleteClassified"> + Usunąć reklamÄ™ '[NAME]'? +PamiÄ™taj! Nie ma rekompensaty za poniesione koszta. + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ClassifiedSave"> + Zapisać zmiany w reklamie [NAME]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie Zapisuj" yestext="Zapisz"/> + </notification> + <notification name="DeleteAvatarPick"> + Usunąć wybór [PICK] z kategorii LubiÄ™? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="PromptGoToEventsPage"> + Odwiedzić internetowÄ… stronÄ™ imprez [SECOND_LIFE]? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="SelectProposalToView"> + Wybierz propozycjÄ™, którÄ… chcesz zobaczyć. + </notification> + <notification name="SelectHistoryItemToView"> + Wybierz obiekt z historii, który chcesz zobaczyć. + </notification> + <notification name="ResetShowNextTimeDialogs"> + Zresetować 'Pokaż nastÄ™pnym razem' opcjÄ™ we wszystkich dialogach? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + WyÅ‚Ä…czyć 'Pokaż nastÄ™pnym razem' opcjÄ™ we wszystkich dialogach? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + Bufor danych na dysku zostanie zresetowany po relogu do [SECOND_LIFE]. + </notification> + <notification name="CacheWillBeMoved"> + Bufor danych na dysku zostanie przemieszczony po relogu do [SECOND_LIFE]. +Bufor bÄ™dzie również wyczyszczony. + </notification> + <notification name="ChangeConnectionPort"> + Ustawienia portu zostanÄ… wprowadzone po relogu do [SECOND_LIFE]. + </notification> + <notification name="ChangeSkin"> + Nowa skórka zostanie wprowadzona po relogu do [SECOND_LIFE]. + </notification> + <notification name="GoToAuctionPage"> + Odwiedzić stronÄ™ internetowÄ… [SECOND_LIFE] żeby zobaczyć szczgóły aukcji lub zrobić ofertÄ™? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="SaveChanges"> + Zapisać Zmiany? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Nie Zapisuj" yestext="Zapisz"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + Nie można zapisać gestu. +Ten gest ma zbyt wiele etapów. +UsuÅ„ kilka etapów i zapisz jeszcze raz. + </notification> + <notification name="GestureSaveFailedTryAgain"> + Zapis gestu nie powiódÅ‚ siÄ™. Spróbuj jeszcze raz za kilka minut. + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + Nie można zapisać gestu ponieważ obiekt lub szafa powiÄ…zanego obiektu nie zostaÅ‚ znaleziony. +Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. + </notification> + <notification name="GestureSaveFailedReason"> + Nie można zapisać gestu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + Nie można zapisać notki ponieważ obiekt lub szafa powiÄ…zanego obiektu nie zostaÅ‚ znaleziony. +Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. + </notification> + <notification name="SaveNotecardFailReason"> + Nie można zapisać notki z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. + </notification> + <notification name="ScriptCannotUndo"> + Nie można cofnąć wszystkich zmian w Twojej wersji skryptu. +Czy chcesz zaÅ‚adować ostatniÄ… wersjÄ™ zapisanÄ… na serwerze? +(*UWAGA* Ta operacja jest nieodwracalna.) + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="SaveScriptFailReason"> + Nie można zapisać skryptu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. + </notification> + <notification name="SaveScriptFailObjectNotFound"> + Nie można zapisać skryptu ponieważ obiekt w którym siÄ™ zawiera nie zostaÅ‚ znaleziony. +Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. + </notification> + <notification name="SaveBytecodeFailReason"> + Nie można zapisać skompilowanego skryptu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. + </notification> + <notification name="CouldNotStartStopScript"> + Nie można uruchomić lub zatrzymać skryptu ponieważ obiekt w którym siÄ™ zawiera nie zostaÅ‚ znaleziony. +Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. + </notification> + <notification name="CannotDownloadFile"> + Nie można zaÅ‚adować pliku + </notification> + <notification name="CannotWriteFile"> + Nie można zapisać pliku [[FILE]] + </notification> + <notification name="UnsupportedHardware"> + Uwaga: Twój system nie speÅ‚nia minimalnych wymagaÅ„ sprzÄ™towych Second Life. Jakość i prÄ™dkość Second Life mogÄ… być pogorszone. Niestety, nie bÄ™dziemy w stanie udzielić Ci technicznej pomocy, ponieważ konfiguracja Twojego systemu nie speÅ‚nia wymagaÅ„ sprzÄ™towych. -*UWAGA* Wybrana opcja spowoduje usuniÄ™cie wszystkich obiektów udostÄ™pnionych grupie, które nie majÄ… praw transferu! +MINSPECS +Czy chcesz odwiedzić stronÄ™ [_URL] po dodatkowe informacje? + <url name="url" option="0"> + http://www.secondlife.com/corporate/sysreqs.php + </url> + <usetemplate ignoretext="Zignoruj ostrzeżenie" name="okcancelignore" notext="Nie" yestext="Tak"/> + </notification> + <notification name="UnknownGPU"> + Twój system jest wyposażony w kartÄ™ graficznÄ… której jeszcze nie znamy. +To siÄ™ czÄ™sto zdarza z nowym sprzÄ™tem, którego jeszcze nie testowaliÅ›my. +Second Life najprawdopodobniej bÄ™dzie dziaÅ‚aÅ‚o poprawnie. Możliwe, że bÄ™dziesz musiaÅ‚ wyregulować ustawienia grafiki. +(Edycja > Ustawienia > Grafika). + <form name="form"> + <ignore name="ignore" text="Zignoruj ostrzeżenie"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] zawiesiÅ‚ siÄ™ podczas inicjalizacji sterowników graficznych. Jakość grafiki zostaÅ‚a zmniejszona - może pomoże. Pewne funkcje graficzne zostaÅ‚y wyÅ‚Ä…czone. Zalecamy aktualizcje strerowników grapicznych. +Możesz podnieść jakość grafiki pod Ustawienia > Grafika. + </notification> + <notification name="RegionNoTerraforming"> + Region [REGION] nie pozwala na formowanie powierzchni ziemi. + </notification> + <notification name="CannotCopyWarning"> + Nie masz praw do kopiowania tego obiektu. Ten obiek zniknie z Twojej szafy jeżeli go dasz innej osobie. +Na pewno chcesz podarować ten obiekt? + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="CannotGiveItem"> + Podarowanie obiektu nie powiodÅ‚o siÄ™. + </notification> + <notification name="TransactionCancelled"> + Transakcja anulowana + </notification> + <notification name="TooManyItems"> + Jednorazowo możesz podarować maksymalnie 42 obiekty z szafy. + </notification> + <notification name="NoItems"> + Nie masz praw do transferu wybranych obiektów. + </notification> + <notification name="CannotCopyCountItems"> + Nie masz praw do skopiowania [COUNT] wybranych obiektów. Obiekty zniknÄ… z Twojej szafy. +Na pewno chcesz oddać te obiekty? + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="CannotGiveCategory"> + Nie masz praw do transferu wybranego foldera. + </notification> + <notification name="FreezeAvatar"> + Unieruchomić tego awatara? +Awatar tymczasowo nie bÄ™dzie mógÅ‚ siÄ™ poruszać, nie bÄ™dzie mógÅ‚ używać czatu (IM) i nie bÄ™dzie w stanie odziaÅ‚ywać na Å›wiat. + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Odblokuj" yestext="Unieruchom"/> + </notification> + <notification name="FreezeAvatarFullname"> + Unieruchowmić [AVATAR_NAME]? +Ta osoba tymczasowo nie bÄ™dzie mógÅ‚a siÄ™ poruszać, nie bÄ™dzie mógÅ‚ używać czatu (IM) i nie bÄ™dzie w stanie odziaÅ‚ywać na Å›wiat. + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Odblokuj" yestext="Unieruchom"/> + </notification> + <notification name="EjectAvatarFullname"> + Wyrzucić [AVATAR_NAME] z Twojej posiadÅ‚oÅ›ci? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wyrzuć i zabroÅ„ wstÄ™pu (ban)" yestext="Wyrzuć"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + BÅÄ„D OTRZYMYWANIA: Zbyt wiele wybranych obiektów. + </notification> + <notification name="AcquireErrorObjectSpan"> + BÅÄ„D OTRZYMYWANIA: Obiekty przekraczajÄ… granicÄ™ regionów. Przemieść wszystkie otrzymywane obiekty do jednego regionu. + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] -Obiekty: [N] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> +Iść na stronÄ™ [URL] po informacje dotyczÄ…ce zakupu gotówki? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="UnableToLinkObjects"> + Nie można poÅ‚Ä…czyć [COUNT] obiektów. +Maksimalnie można poÅ‚Ä…czyć [MAX] obiektów. + </notification> + <notification name="CannotLinkIncompleteSet"> + Możesz Å‚Ä…czyć tylko kompletne zbiory obiektów i musisz wybrać wiÄ™cej niż jeden obiekt. + </notification> + <notification name="CannotLinkModify"> + Nie możesz poÅ‚Ä…czyć obiektów ponieważ nie masz praw modyfikacji dla wszystkich obiektów. - <notification - - name="ReturnAllTopObjects" - > -Czy na pewno chcesz zwrócić wszystkie wymienione obiekty znajdujÄ…ce siÄ™ na tej posiadÅ‚oÅ›ci do szaf ich wÅ‚aÅ›cicieli? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> +Upewnij siÄ™, że żaden z obiktów nie jest zablokowany i że wszystkie obiekty należą do Ciebie. + </notification> + <notification name="CannotLinkDifferentOwners"> + Nie możesz poÅ‚Ä…czyć obiektów ponieważ należą one do różnych osób. - <notification - - name="DisableAllTopObjects" - > -Czy na pewno chcesz deaktywować wszystkie obiekty w tym regionie? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> +Upewnij sie, że wszystkie wybrane obiekty należą do Ciebie. + </notification> + <notification name="NoFileExtension"> + Niepoprawna koÅ„cówka nazwy pliku: '[FILE]' - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -Zwrócić obiekty z tej posiadÅ‚oÅ›ci, które nie sÄ… udosÄ™pnione grupie [NAME] do ich wÅ‚aÅ›cicieli? +Upewnij siÄ™, że nazwa pliku ma poprawanÄ… koÅ„cówkÄ™. + </notification> + <notification name="InvalidFileExtension"> + Niepoprawna koÅ„cówka nazwy pliku - [EXTENSION] +Oczekiwana - [VALIDS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + Nie można otworzyć zaÅ‚adowanego pliku dźwiÄ™kowego: +[FILE] + </notification> + <notification name="SoundFileNotRIFF"> + Plik nie jest w formacie RIFF WAVE: +[FILE] + </notification> + <notification name="SoundFileNotPCM"> + Plik nie jest w formacie PCM WAVE: +[FILE] + </notification> + <notification name="SoundFileInvalidChannelCount"> + Plik zawiera niewÅ‚aÅ›ciwÄ… liczbÄ™ kanałów (musi być mono albo stereo): +[FILE] + </notification> + <notification name="SoundFileInvalidSampleRate"> + Plik zawiera niewÅ‚aÅ›ciÄ… czÄ™stotliwość (musi być 44.1k): +[FILE] + </notification> + <notification name="SoundFileInvalidWordSize"> + Plik zawiera niewÅ‚aÅ›ciwÄ… szerokość danych (musi być 8 albo 16 bitów): +[FILE] + </notification> + <notification name="SoundFileInvalidHeader"> + Brak bloku 'data' w nagłówku pliku WAV: +[FILE] + </notification> + <notification name="SoundFileInvalidTooLong"> + Plik audio jest zbyt dÅ‚ugi (10 sekund maksimum): +[FILE] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + Nie można otworzyć tymczasowego skompresowango pliku dźwiÄ™kowego w celu zapisu: [FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + Nieznany bÅ‚Ä…d kodowania Vorbis w: [FILE] + </notification> + <notification name="CannotEncodeFile"> + Kodowanie pliku: [FILE] nie powidÅ‚o siÄ™. + </notification> + <notification name="CorruptResourceFile"> + Skorumpowany plik zasobów: [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + Nieznana wersja pliku zasobów Linden w pliku: [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + Nie można utworzyć pliku wyjÅ›ciowego: [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + Åadowanie zbiorów plików animacji nie jest jeszcze dostÄ™pne. + </notification> + <notification name="CannotUploadReason"> + Åadowanie pliku [FILE] nie powiodÅ‚o siÄ™ z powodu: [REASON] +Spróbuj jeszcze raz póżniej. + </notification> + <notification name="CannotCreateLandmarkNotOwner"> + Nie możesz zapamiÄ™tać tego miejsca (LM) ponieważ wÅ‚aÅ›ciciel posiadÅ‚oÅ›ci nie pozwala na to. + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + 'Rekompilacja' nie powiodÅ‚a siÄ™. -Obiekty: [N] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> +Wybierz obiekty zawierajÄ…ce skrypty. + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + 'Rekompilacja' nie powiodÅ‚a siÄ™. - <notification - - name="UnableToDisableOutsideScripts" - > -Nie można deaktywować skryptów. -Ten region pozwala na uszkodzenia. -Skrypty muszÄ… pozostać aktywne dla prawidÅ‚owego dziaÅ‚ania broni. - </notification> +Wybierz skryptowane obiekty do których masz prawa modyfikacji. + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + 'Resetowanie' nie powiodÅ‚o siÄ™. - <notification - - name="MustBeInParcel" - > -Musisz znajdować siÄ™ wewnÄ…trz posiadÅ‚oÅ›ci żeby wybrać punkt lÄ…dowania. - </notification> +Wybierz obiekty zawierajÄ…ce skrypty. + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + 'Resetowanie' nie powiodÅ‚o siÄ™. - <notification - - name="PromptRecipientEmail" - > -ProszÄ™ wpisać adres emailowy odbiorcy. - </notification> +Wybierz skryptowane obiekty do których masz prawa modyfikacji. + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + 'Uruchomienie' skryptów nie powiodÅ‚o siÄ™. - <notification - - name="PromptSelfEmail" - > -ProszÄ™ wpisać swój adres emailowy. - </notification> +Wybierz obiekty zawierajÄ…ce skrypty. + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + 'Zatrzymanie' skryptów nie powiodÅ‚o siÄ™. - <notification - - name="PromptMissingSubjMsg" - > -WysÅ‚ać widokówkÄ™ z domyÅ›lnym tematem i wiadomoÅ›ciÄ…? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> +Wybierz obiekty zawierajÄ…ce skrypty. + </notification> + <notification name="NoFrontmostFloater"> + Brak górnego okna do zapisu. + </notification> + <notification name="SeachFilteredOnShortWords"> + Twoje zapytanie wyszukiwania zostÅ‚o zmienione - zbyt krótkie sÅ‚owa zostaÅ‚y usuniÄ™te. - <notification - - name="ErrorProcessingSnapshot" - > -BÅ‚Ä…d w trakcie przetwarzania danych zdjÄ™cia. - </notification> +Nowe zapytanie: [FINALQUERY] + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + Użyte terminy wyszukiwania byÅ‚y zbyt krótkie - wyszukiwanie zostaÅ‚o anulowane. + </notification> + <notification name="CouldNotTeleportReason"> + Teleportacja nie powiodÅ‚a siÄ™. +[REASON] + </notification> - <notification - - name="ErrorEncodingSnapshot" - > -BÅ‚Ä…d w kodowaniu zdjÄ™cia. + <notification name="invalid_tport"> +WystÄ…piÅ‚ problem z teleportacjÄ…. Wyloguj siÄ™ i zaloguj ponownie. +JeÅ›li nadal otrzymujesz ten komunikat sprawdź Pomoc TechnicznÄ… na stronie: +www.secondlife.com/support. </notification> - - <notification - - name="ErrorUploadingPostcard" - > -W trakcie Å‚adowania zdjÄ™cia pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON] + <notification name="invalid_region_handoff"> +WystÄ…piÅ‚ problem ze zmianÄ… regionu. Wyloguj siÄ™ i zaloguj ponownie. +JeÅ›li nadal otrzymujesz ten komunikat sprawdź Pomoc TechnicznÄ… na stronie: +www.secondlife.com/support. </notification> - - <notification - - name="ErrorUploadingReportScreenshot" - > -W trakcie Å‚adowania zdjÄ™cia ekranu do raportu pojawiÅ‚ siÄ™ problem z nastÄ™pujÄ…cego powodu: [REASON] + <notification name="blocked_tport"> +Przepraszamy, teleportacja jest chwilowo niedostÄ™pna. Spróbuj jeszcze raz. +JeÅ›li nadal nie możesz siÄ™ teleportować wyloguj siÄ™ i ponownie zaloguj. </notification> - - <notification - - name="MustAgreeToLogIn" - > -Musisz zaakceptować Warunki Umowy (Terms of Service) by kontynuować logowanie siÄ™ do [SECOND_LIFE]. + <notification name="nolandmark_tport"> +Przepraszamy, ale nie możemy znaleźć miejsca docelowego. </notification> - - <notification - - name="CouldNotPutOnOutfit" - > -ZaÅ‚ożenie stroju nie powiodÅ‚o siÄ™. -Folder stroju nie zawiera żadnego ubrania, części ciaÅ‚a ani zaÅ‚Ä…czników. + <notification name="timeout_tport"> +Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić teleportacji. Spróbuj jeszcze raz. </notification> - - <notification - - name="CannotWearTrash" - > -Nie możesz zaÅ‚ożyć ubrania, które znajduje siÄ™ w koszu. + <notification name="noaccess_tport"> +Przepraszamy, ale nie masz dostÄ™pu do miejsca docelowego. </notification> - - <notification - - name="CannotWearInfoNotComplete" - > -Nie możesz zaÅ‚ożyć tego artkuÅ‚u ponieważ nie zaÅ‚adowaÅ‚ siÄ™ poprawnie. Spróbuj ponownie za kilka minut. + <notification name="missing_attach_tport"> +Czekamy na Twoje akcesoria. Możesz poczekać kilka minut lub zrobić relog przed nastÄ™pnÄ… próbÄ… teleportacji. </notification> - - <notification - - name="MustHaveAccountToLogIn" - > -Musisz mieć konto by móc zalogować siÄ™ do [SECOND_LIFE]. -Czy chcesz przejść na stronÄ™ www.secondlife.com by zaÅ‚ożyć konto? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> + <notification name="too_many_uploads_tport"> +Obecnie ten region ma problemy z Å‚adowaniem obiektów w zwiÄ…zku z czym teleportacja bardzo sie opóznia. +Spróbuj jeszcze raz za kilka minut albo teleportuj siÄ™ do mniej zatÅ‚oczonego miejsca. + </notification> + <notification name="expired_tport"> +Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić teleportacji wystarczajÄ…co szybko. Spróbuj jeszcze raz za kilka minut. + </notification> + <notification name="expired_region_handoff"> +Przepraszamy, ale nie udaÅ‚o siÄ™ przeprowadzić zmiany regionu wystarczajÄ…co szybko. Spróbuj jeszcze raz za kilka minut. + </notification> + <notification name="no_host"> +Nie możemy znaleść miejsca docelowego. To miejsce może być chwilowo nieosiÄ…galne albo przestaÅ‚o istnieć. +Spróbuj jeszcze raz za kilka minut. + </notification> + <notification name="no_inventory_host"> +Szafa chwilowo nie dziaÅ‚a. </notification> - <notification - - name="AddClassified" - > -OgÅ‚oszenia reklamowe ukazujÄ… siÄ™ w zakÅ‚adce Reklama w wyszukiwarce (Szukaj) oraz na stronie internetowej www.secondlife.com przez tydzieÅ„. -Napisz treść swojej reklamy, kliknij Zamieść by dodać katalogu ogÅ‚oszeÅ„. -Po zamieszczeniu reklamy zostaniesz poproszony o sprecyzowanie opÅ‚aty za reklamÄ™. -Im wyższa opÅ‚ata tym wyżej Twoja reklama wyÅ›wietla siÄ™ w katalogu i wyszukiwarce po wpisaniu słów kluczowych. - <usetemplate - ignoretext="W momencie dodawania nowej reklamy" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="DeleteClassified" - > -Usunąć reklamÄ™ '[NAME]'? -PamiÄ™taj! Nie ma rekompensaty za poniesione koszta. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ClassifiedSave" - > -Zapisać zmiany w reklamie [NAME]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Nie Zapisuj" - yestext="Zapisz"/> - </notification> - - <notification - - name="DeleteAvatarPick" - > -Usunąć wybór [PICK] z kategorii LubiÄ™? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="PromptGoToEventsPage" - > -Odwiedzić internetowÄ… stronÄ™ imprez [SECOND_LIFE]? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="SelectProposalToView" - > -Wybierz propozycjÄ™, którÄ… chcesz zobaczyć. - </notification> - - <notification - - name="SelectHistoryItemToView" - > -Wybierz obiekt z historii, który chcesz zobaczyć. - </notification> - - <notification - - name="ResetShowNextTimeDialogs" - > -Zresetować 'Pokaż nastÄ™pnym razem' opcjÄ™ we wszystkich dialogach? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -WyÅ‚Ä…czyć 'Pokaż nastÄ™pnym razem' opcjÄ™ we wszystkich dialogach? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="CacheWillClear" - > -Bufor danych na dysku zostanie zresetowany po relogu do [SECOND_LIFE]. - </notification> - - <notification - - name="CacheWillBeMoved" - > -Bufor danych na dysku zostanie przemieszczony po relogu do [SECOND_LIFE]. -Bufor bÄ™dzie również wyczyszczony. - </notification> - - <notification - - name="ChangeConnectionPort" - > -Ustawienia portu zostanÄ… wprowadzone po relogu do [SECOND_LIFE]. - </notification> - - <notification - - name="ChangeSkin" - > -Nowa skórka zostanie wprowadzona po relogu do [SECOND_LIFE]. - </notification> - - <notification - - name="GoToAuctionPage" - > -Odwiedzić stronÄ™ internetowÄ… [SECOND_LIFE] żeby zobaczyć szczgóły aukcji lub zrobić ofertÄ™? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="SaveChanges" - > -Zapisać Zmiany? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Nie Zapisuj" - yestext="Zapisz"/> - </notification> - - <notification - - name="GestureSaveFailedTooManySteps" - > -Nie można zapisać gestu. -Ten gest ma zbyt wiele etapów. -UsuÅ„ kilka etapów i zapisz jeszcze raz. - </notification> - - <notification - - name="GestureSaveFailedTryAgain" - > -Zapis gestu nie powiódÅ‚ siÄ™. Spróbuj jeszcze raz za kilka minut. - </notification> - - <notification - - name="GestureSaveFailedObjectNotFound" - > -Nie można zapisać gestu ponieważ obiekt lub szafa powiÄ…zanego obiektu nie zostaÅ‚ znaleziony. -Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. - </notification> - - <notification - - name="GestureSaveFailedReason" - > -Nie można zapisać gestu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. - </notification> - - <notification - - name="SaveNotecardFailObjectNotFound" - > -Nie można zapisać notki ponieważ obiekt lub szafa powiÄ…zanego obiektu nie zostaÅ‚ znaleziony. -Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. - </notification> - - <notification - - name="SaveNotecardFailReason" - > -Nie można zapisać notki z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. - </notification> - - <notification - - name="ScriptCannotUndo" - > -Nie można cofnąć wszystkich zmian w Twojej wersji skryptu. -Czy chcesz zaÅ‚adować ostatniÄ… wersjÄ™ zapisanÄ… na serwerze? -(*UWAGA* Ta operacja jest nieodwracalna.) - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="SaveScriptFailReason" - > -Nie można zapisać skryptu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. - </notification> - - <notification - - name="SaveScriptFailObjectNotFound" - > -Nie można zapisać skryptu ponieważ obiekt w którym siÄ™ zawiera nie zostaÅ‚ znaleziony. -Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. - </notification> - - <notification - - name="SaveBytecodeFailReason" - > -Nie można zapisać skompilowanego skryptu z nastÄ™pujÄ…cego powodu: [REASON]. Spróbuj zapisać jeszcze raz póżniej. - </notification> - - <notification - - name="CouldNotStartStopScript" - > -Nie można uruchomić lub zatrzymać skryptu ponieważ obiekt w którym siÄ™ zawiera nie zostaÅ‚ znaleziony. -Obiekt może znajdować siÄ™ zbyt daleko albo zostaÅ‚ usuniety. - </notification> - - <notification - - name="CannotDownloadFile" - > -Nie można zaÅ‚adować pliku - </notification> - - <notification - - name="CannotWriteFile" - > -Nie można zapisać pliku [[FILE]] - </notification> - - <notification - - name="UnsupportedHardware" - > -Uwaga: Twój system nie speÅ‚nia minimalnych wymagaÅ„ sprzÄ™towych Second Life. Jakość i prÄ™dkość Second Life mogÄ… być pogorszone. Niestety, nie bÄ™dziemy w stanie udzielić Ci technicznej pomocy, ponieważ konfiguracja Twojego systemu nie speÅ‚nia wymagaÅ„ sprzÄ™towych. - -MINSPECS -Czy chcesz odwiedzić stronÄ™ [_URL] po dodatkowe informacje? - <url option="0" name="url"> - - http://www.secondlife.com/corporate/sysreqs.php - </url> - <usetemplate - ignoretext="Zignoruj ostrzeżenie" - name="okcancelignore" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="UnknownGPU" - > -Twój system jest wyposażony w kartÄ™ graficznÄ… której jeszcze nie znamy. -To siÄ™ czÄ™sto zdarza z nowym sprzÄ™tem, którego jeszcze nie testowaliÅ›my. -Second Life najprawdopodobniej bÄ™dzie dziaÅ‚aÅ‚o poprawnie. Możliwe, że bÄ™dziesz musiaÅ‚ wyregulować ustawienia grafiki. -(Edycja > Ustawienia > Grafika). - <form name="form"> - <ignore name="ignore" text="Zignoruj ostrzeżenie"/> - </form> - </notification> - - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] zawiesiÅ‚ siÄ™ podczas inicjalizacji sterowników graficznych. Jakość grafiki zostaÅ‚a zmniejszona - może pomoże. Pewne funkcje graficzne zostaÅ‚y wyÅ‚Ä…czone. Zalecamy aktualizcje strerowników grapicznych. -Możesz podnieść jakość grafiki pod Ustawienia > Grafika. - </notification> - - <notification - - name="RegionNoTerraforming" - > -Region [REGION] nie pozwala na formowanie powierzchni ziemi. - </notification> - - <notification - - name="CannotCopyWarning" - > -Nie masz praw do kopiowania tego obiektu. Ten obiek zniknie z Twojej szafy jeżeli go dasz innej osobie. -Na pewno chcesz podarować ten obiekt? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="CannotGiveItem" - > -Podarowanie obiektu nie powiodÅ‚o siÄ™. - </notification> - - <notification - - name="TransactionCancelled" - > -Tranzakcja anulowana. - </notification> - - <notification - - name="TooManyItems" - > -Jednorazowo możesz podarować maksymalnie 42 obiekty z szafy. - </notification> - - <notification - - name="NoItems" - > -Nie masz praw do transferu wybranych obiektów. - </notification> - - <notification - - name="CannotCopyCountItems" - > -Nie masz praw do skopiowania [COUNT] wybranych obiektów. Obiekty zniknÄ… z Twojej szafy. -Na pewno chcesz oddać te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="CannotGiveCategory" - > -Nie masz praw do transferu wybranego foldera. - </notification> - - <notification - - name="FreezeAvatar" - > -Unieruchomić tego awatara? -Awatar tymczasowo nie bÄ™dzie mógÅ‚ siÄ™ poruszać, nie bÄ™dzie mógÅ‚ używać czatu (IM) i nie bÄ™dzie w stanie odziaÅ‚ywać na Å›wiat. - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Odblokuj" - yestext="Unieruchom"/> - </notification> - - <notification - - name="FreezeAvatarFullname" - > -Unieruchowmić [AVATAR_NAME]? -Ta osoba tymczasowo nie bÄ™dzie mógÅ‚a siÄ™ poruszać, nie bÄ™dzie mógÅ‚ używać czatu (IM) i nie bÄ™dzie w stanie odziaÅ‚ywać na Å›wiat. - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Odblokuj" - yestext="Unieruchom"/> - </notification> - - <notification - - name="EjectAvatarFullname" - > -Wyrzucić [AVATAR_NAME] z Twojej posiadÅ‚oÅ›ci? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wyrzuć i zabroÅ„ wstÄ™pu (ban)" - yestext="Wyrzuć"/> - </notification> - - <notification - - name="AcquireErrorTooManyObjects" - > -BÅÄ„D OTRZYMYWANIA: Zbyt wiele wybranych obiektów. - </notification> - - <notification - - name="AcquireErrorObjectSpan" - > -BÅÄ„D OTRZYMYWANIA: Obiekty przekraczajÄ… granicÄ™ regionów. Przemieść wszystkie otrzymywane obiekty do jednego regionu. - </notification> - - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] - -Iść na stronÄ™ [URL] po informacje dotyczÄ…ce zakupu gotówki? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="UnableToLinkObjects" - > -Nie można poÅ‚Ä…czyć [COUNT] obiektów. -Maksimalnie można poÅ‚Ä…czyć [MAX] obiektów. - </notification> - - <notification - - name="CannotLinkIncompleteSet" - > -Możesz Å‚Ä…czyć tylko kompletne zbiory obiektów i musisz wybrać wiÄ™cej niż jeden obiekt. - </notification> - - <notification - - name="CannotLinkModify" - > -Nie możesz poÅ‚Ä…czyć obiektów ponieważ nie masz praw modyfikacji dla wszystkich obiektów. - -Upewnij siÄ™, że żaden z obiktów nie jest zablokowany i że wszystkie obiekty należą do Ciebie. - </notification> - - <notification - - name="CannotLinkDifferentOwners" - > -Nie możesz poÅ‚Ä…czyć obiektów ponieważ należą one do różnych osób. - -Upewnij sie, że wszystkie wybrane obiekty należą do Ciebie. - </notification> - - <notification - - name="NoFileExtension" - > -Niepoprawna koÅ„cówka nazwy pliku: '[FILE]' - -Upewnij siÄ™, że nazwa pliku ma poprawanÄ… koÅ„cówkÄ™. - </notification> - - <notification - - name="InvalidFileExtension" - > -Niepoprawna koÅ„cówka nazwy pliku - [EXTENSION] -Oczekiwana - [VALIDS] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -Nie można otworzyć zaÅ‚adowanego pliku dźwiÄ™kowego: -[FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -Plik nie jest w formacie RIFF WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -Plik nie jest w formacie PCM WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -Plik zawiera niewÅ‚aÅ›ciwÄ… liczbÄ™ kanałów (musi być mono albo stereo): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -Plik zawiera niewÅ‚aÅ›ciÄ… czÄ™stotliwość (musi być 44.1k): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -Plik zawiera niewÅ‚aÅ›ciwÄ… szerokość danych (musi być 8 albo 16 bitów): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -Brak bloku 'data' w nagłówku pliku WAV: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -Plik audio jest zbyt dÅ‚ugi (10 sekund maksimum): -[FILE] - </notification> - - - - <notification - - name="CannotOpenTemporarySoundFile" - > -Nie można otworzyć tymczasowego skompresowango pliku dźwiÄ™kowego w celu zapisu: [FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -Nieznany bÅ‚Ä…d kodowania Vorbis w: [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -Skorumpowany plik zasobów: [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -Nieznana wersja pliku zasobów Linden w pliku: [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -Nie można utworzyć pliku wyjÅ›ciowego: [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -Åadowanie zbiorów plików animacji nie jest jeszcze dostÄ™pne. - </notification> - - <notification - - name="CannotUploadReason" - > -Åadowanie pliku [FILE] nie powiodÅ‚o siÄ™ z powodu: [REASON] -Spróbuj jeszcze raz póżniej. - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -Nie możesz zapamiÄ™tać tego miejsca (LM) ponieważ wÅ‚aÅ›ciciel posiadÅ‚oÅ›ci nie pozwala na to. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -'Rekompilacja' nie powiodÅ‚a siÄ™. - -Wybierz obiekty zawierajÄ…ce skrypty. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -'Rekompilacja' nie powiodÅ‚a siÄ™. - -Wybierz skryptowane obiekty do których masz prawa modyfikacji. - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -'Resetowanie' nie powiodÅ‚o siÄ™. - -Wybierz obiekty zawierajÄ…ce skrypty. - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -'Resetowanie' nie powiodÅ‚o siÄ™. - -Wybierz skryptowane obiekty do których masz prawa modyfikacji. - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -'Uruchomienie' skryptów nie powiodÅ‚o siÄ™. - -Wybierz obiekty zawierajÄ…ce skrypty. - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -'Zatrzymanie' skryptów nie powiodÅ‚o siÄ™. - -Wybierz obiekty zawierajÄ…ce skrypty. - </notification> - - <notification - - name="NoFrontmostFloater" - > -Brak górnego okna do zapisu. - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -Twoje zapytanie wyszukiwania zostÅ‚o zmienione - zbyt krótkie sÅ‚owa zostaÅ‚y usuniÄ™te. - -Nowe zapytanie: [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -Użyte terminy wyszukiwania byÅ‚y zbyt krótkie - wyszukiwanie zostaÅ‚o anulowane. - </notification> - - <notification - - name="CouldNotTeleportReason" - > -Teleportacja nie powiodÅ‚a siÄ™. -[REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -Nie można wybrać wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. -PosiadÅ‚ość nie zostaÅ‚a wybrana. - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -Nie można wybrać wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci ponieważ wybrany obszar przekracza granicÄ™ regionów. Wybierz mniejszy obszar i spróbuj jeszcze raz. - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -Ta posiadÅ‚ość jest wystawiona na aukcjÄ™. Wymuszenie wÅ‚asnoÅ›ci anulue aukcjÄ™ i potencjalnie może zdenerwować zainteresowanych Rezydentów, jeżeli licytacja już siÄ™ rozpoczęła. Wymusić wÅ‚asność? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -Nie można sfinalizować: -PosiadÅ‚ość nie zostaÅ‚a wybrana. - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -Nie można sfinalizować: -Region nie znaleziony. - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -Nie można porzucić posiadÅ‚oÅ›ci: -PosiadÅ‚ość nie zostaÅ‚a wybrana. - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -Nie można porzucić posiadÅ‚oÅ›ci: -Region nie znaleziony. - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -Nie można kupić posiadÅ‚oÅ›ci: -PosiadÅ‚ość nie zostaÅ‚a wybrana. - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -Nie można kupić posiadÅ‚oÅ›ci: -Region nie znaleziony. - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -Dialog Kup PosiadÅ‚ość nie może zostać zamkniÄ™ty dopóki Second Life nie oszacuje ceny tej tranzakcji. - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -Nie można przekazać posiadÅ‚oÅ›ci: -PosiadÅ‚ość nie zostaÅ‚a wybrana. - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -Nie można przekazać posiadÅ‚oÅ›ci: -Grupa nie zostaÅ‚a wybrana. - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -Nie można przekazać posiadÅ‚oÅ›ci: -Region nie znaleziony. - -ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -Nie można przekazać posiadÅ‚oÅ›ci: -Wiele posiadÅ‚oÅ›ci jest wybranych. - -Spróbuj wybrać pojedynczÄ… posiadÅ‚ość. - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -To miejsce może odtwarzać strumienie mediów. -Odtwarzanie strumieni wymaga szybkiego poÅ‚Ä…czenia do Internetu. - -Odtwarzać dostÄ™pne strumienie mediów? -(Selekcja może zostać zmieniona póżniej pod Ustawienia > Audio i Video.) - <usetemplate - name="okcancelbuttons" - notext="WyÅ‚Ä…cz" - yestext="Odtwarzaj"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -Nie można przekazać posiadÅ‚oÅ›ci: -Serwer aktualizuje dane wÅ‚asnoÅ›ci. - -Spróbuj jeszcze raz póżniej. - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -Nie możesz przekazać posiadÅ‚oÅ›ci: -Region [REGION] nie pozwala na transfer posiadÅ‚oÅ›ci. - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -Nie można porzucić posiadÅ‚oÅ›ci: -Serwer aktualizuje dane posiadÅ‚oÅ›ci. - -Spróbuj jeszcze raz póżniej. - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -Nie możesz porzucić posiadÅ‚oÅ›ci: -Nie jesteÅ› wÅ‚aÅ›cicielem wszystkich wybranych posiadÅ‚oÅ›ci. - -Wybierz pojedynczÄ… posiadÅ‚ość. - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -Nie możesz porzucić posiadÅ‚oÅ›ci: -Nie masz praw do porzucenia tej posiadÅ‚oÅ›ci. - -Twoje posiadÅ‚oÅ›ci sÄ… podkreÅ›lone na zielono. - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -Nie można porzucić posiadÅ‚oÅ›ci: -Region nie znaleziony. - -ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -Nie możesz porzucić posiadÅ‚oÅ›ci: -Region [REGION] nie pozwala na transfer posiadÅ‚oÅ›ci. - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -Nie można porzucić posiadÅ‚oÅ›ci: -Musisz wybrać caÅ‚Ä… posiadÅ‚ość by jÄ… porzucić. -Wybierz caÅ‚Ä… posiadÅ‚ość albo najpierw jÄ… podziel. - </notification> - - <notification - - name="ReleaseLandWarning" - > -Porzucasz posiadÅ‚ość o powierzchni [AREA] m². -Porzucenie tej posiadÅ‚oÅ›ci usunie jÄ… z Twoich wÅ‚asnoÅ›ci. -Nie otrzymasz za to żadnej opÅ‚aty. - -Porzucić posiadÅ‚ość? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -Nie można podzielić posiadÅ‚oÅ›ci: - -PosiadÅ‚ość nie zostaÅ‚a wybrana. - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -Nie można podzielić posiadÅ‚oÅ›ci: - -PosiadÅ‚ość zostaÅ‚a wybrana w caÅ‚oÅ›ci. -Spróbuj wybrać część posiadÅ‚oÅ›ci. - </notification> - - <notification - - name="LandDivideWarning" - > -PodziaÅ‚ tej posiadÅ‚oÅ›ci stworzy dwie posiadÅ‚oÅ›ci z których każda bÄ™dzie mogÅ‚a mieć indywidualne ustawienia. -Niektóre ustawienia zostanÄ… zmienione na domyÅ›lne po tej operacji. - -Podzielić posiadÅ‚ość? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -Nie można podzielić posiadÅ‚oÅ›ci: -Region nie znaleziony. - -ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: -Region nie znaleziony. - -ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: -PosiadÅ‚oÅ›ci nie zostaÅ‚y wybrane. - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: -Tylko jedna posiadÅ‚ość zostaÅ‚a wybrana. - -Wybierz obaszar usytuowany na obu posiadÅ‚oÅ›ciach. - </notification> - - <notification - - name="CannotJoinLandSelection" - > -Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: -Musisz wybrać wiÄ™cej niż jednÄ… posiadÅ‚ość. - -Wybierz obaszar usytuowany na obu posiadÅ‚oÅ›ciach. - </notification> - - <notification - - name="JoinLandWarning" - > -PoÅ‚Ä…czenie tego obszaru utworzy jednÄ… wiÄ™kszÄ… posiadÅ‚ość ze wszystkich posiadÅ‚oÅ›ci przecinajÄ…cych wybrany prostokÄ…t. Nazwa i opcje posiadÅ‚oÅ›ci bedÄ… musiaÅ‚y zostać skonfigurowane. - -PoÅ‚Ä…czyć posiadÅ‚oÅ›ci? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -Ta notka musi być zapisana żeby mogÅ‚a być skopiowana lub zobaczona. Zapisać notkÄ™? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -Skopiować ten obiekt do Twojej szafy? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Skopiuj"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -Zmiana rozdzielczoÅ›ci do [RESX] x [RESY] nie powidÅ‚a siÄ™ - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -BÅ‚Ä…d: Niezdefiniowane trawy: [SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -BÅ‚ad: Niezdefiniowane drzewa: [SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -Nie można zapisać '[NAME]' do pliku stroju. Musisz zwolnić trochÄ™ miejsca na Twoim komputerze i zapisać strój jeszcze raz. - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -Nie można zapisać [NAME] w centralnym zbiorze danych. Zazwyczaj jest to tymczasowy problem. Możesz kontynuować modyfikacje i zapisać strój ponownie za kilka minut. - -Jeżeli wciąż masz ten problem, wybierz Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta i podaj szczegóły dotyczÄ…ce konfiguracji sieci. - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -Twoja sesja [SECOND_LIFE] zostaÅ‚a zakoÅ„czona: -[MESSAGE] - -Kliknij Kontynuuj żeby zobaczyć IMy i czat. -Å»adne inne operacje nie bÄ™dÄ… dozwolone. Kliknij WyÅ‚Ä…cz w celu natychmiastowego opuszczenia [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="WyÅ‚Ä…cz" - yestext="Kontynuuj"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -Nie możesz kupić posiadÅ‚oÅ›ci dla grupy. -Nie masz praw kupowania posiadÅ‚oÅ›ci dla Twojej aktywnej grupy. - </notification> - - <notification - - label="Dodaj Znajomość" - name="AddFriend" - > -Znajomi mogÄ… pozwalać na odnajdywanie siÄ™ wzajemnie na mapie i na otrzymywanie notyfikacji o logowaniu do [SECOND_LIFE]. - -Zaproponować znajomość [NAME]? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - label="Add Friend" - name="AddFriendWithMessage" - > -Znajomi mogÄ… pozwalać na odnajdywanie siÄ™ wzajemnie na mapie i na otrzymywanie notyfikacji o logowaniu do [SECOND_LIFE]. - -Zaproponować znajomość [NAME]? - <form name="form"> - <input name="message" type="text"> -Chcesz zawrzeć znajomość? - </input> - <button - - - name="Offer" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -Chcesz usunąć [FIRST_NAME] [LAST_NAME] z listy Twoich znajomych? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -Chcesz usunąć grupÄ™ osób z listy Twoich znajomych? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -Na pewno chcesz usunąć wszystkie skryptowane obiekty należące do -** [AVATAR_NAME] ** -z posiadÅ‚oÅ›ci innych w tym symulatorze? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -Na pewno chcesz usunąć wszystkie skryptowane obiekty należące do -** [AVATAR_NAME] ** -ze wszystkich posiadÅ‚oÅ›ci w tym symulatorze? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -Na pewno chcesz usunąć wszystkie obiekty (skryptowane i nie) należące do -** [AVATAR_NAME] ** -ze wszystkich posiadÅ‚oÅ›ci w tym symulatorze? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -Musisz nadać tytuÅ‚ Twojej reklamie. - </notification> - - <notification - - name="MinClassifiedPrice" - > -Minimalna cena za publikacjÄ™ wynosi [MIN_PRICE]L$. - -Wybierz wyższÄ… cenÄ™. - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -Przynajmnie jeden z wybranych obiektów jest zablokowany. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -Przynajmniej jeden z wybranych obiektów jest niekopiwalny. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -Przynajmnie jeden z wybranych obiektów jest zablokowany. -Przynajmniej jeden z wybranych obiektów jest niekopiwalny. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -Przynajmnie jeden z wybranych obiektów jest zablokowany. -Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -Przynajmniej jeden z wybranych obiektów jest niekopiwalny. -Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -Przynajmnie jeden z wybranych obiektów jest zablokowany. -Przynajmniej jeden z wybranych obiektów jest niekopiwalny. -Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -Przynajmnie jeden obiekt jest zablokowany. - -Na pewno chcesz usunąć te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -Przynajmniej jeden obiekt nie należy do Ciebie. -Jeżeli bÄ™dziesz kontynuować prawa nastÄ™pnego wÅ‚aÅ›ciciela zostanÄ… przypisane co, potencjalnie, może ograniczyć Twoje prawa do modyfikacji lub kopiowania obiektów. - -Na pewno chcesz wziąść te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -Przynajmnie jeden obiekt jest zablokowany. -Przynajmniej jeden obiekt nie należy do Ciebie. -Jeżeli bÄ™dziesz kontynuować prawa nastÄ™pnego wÅ‚aÅ›ciciela zostanÄ… przypisane co, potencjalnie, może ograniczyć Twoje prawa do modyfikacji lub kopiowania obiektów. - -Na pewno chcesz wziąść te obiekty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -Nie możesz kupić posiadÅ‚oÅ›ci ponieważ wybrany obszar przekracza granicÄ™ regionów. - -Wybierz mniejszy obszar i spróbuj jeszcze raz. - </notification> - - <notification - - name="DeedLandToGroup" - > -Po przekazaniu tej posiadÅ‚oÅ›ci grupa bÄ™dzia musiaÅ‚a mieć i utrzymywać wystarczajÄ…cy kredyt na używanie posiadÅ‚oÅ›ci. Cena zakupu posiadÅ‚oÅ›ci nie jest zwracana wÅ‚aÅ›cicielowi. Jeżeli przekazana posiadÅ‚ość zostanie sprzedana, cana sprzedaży zostanie podzielona pomiÄ™dzy czÅ‚onków grupy. - -Przekazać tÄ… posiadÅ‚ość o powierzchni [AREA] m² grupie '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -Po przekazaniu tej posiadÅ‚oÅ›ci grupa bÄ™dzia musiaÅ‚a mieć i utrzymywać wystarczajÄ…cy kredyt na używanie posiadÅ‚oÅ›ci. Przekazanie bÄ™dzie zawierać równoczesne przypisanie posiadÅ‚oÅ›ci do grupy od '[FIRST_NAME] [LAST_NAME]'. -Cena zakupu posiadÅ‚oÅ›ci nie jest zwracana wÅ‚aÅ›cicielowi. Jeżeli przekazana posiadÅ‚ość zostanie sprzedana, cana sprzedaży zostanie podzielona pomiÄ™dzy czÅ‚onków grupy. - -Przekazać tÄ… posiadÅ‚ość o powierzchni [AREA] m² grupie '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > -Ustawienia grafiki zostaÅ‚y zmienione do bezpiecznego poziomu ponieważ opcja -safe zostaÅ‚a wybrana. - </notification> - - <notification - - name="DisplaySetToRecommended" - > -Ustawienia grafiki zostaÅ‚y zmienione do zalecanego poziomu na podstawie konfiguracji Twojego systemu. - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -Twoje miejsce [TYPE] jest obecnie niedostÄ™pne. [HELP] -Przeniesiono CiÄ™ do pobliskiego regionu. - </notification> - - <notification - - name="ClothingLoading" - > -Twoje ubranie wciąż siÄ™ Å‚aduje. -Możesz normalnie używać [SECOND_LIFE], inni użytkownicy bÄ™dÄ… CiÄ™ widzieli poprawnie. - <form name="form"> - <ignore name="ignore" - text="Åadowanie ubrania zajmuje dużo czasu"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -Instalacja [SECOND_LIFE] zakoÅ„czona. - -Jeżeli używasz [SECOND_LIFE] po raz pierwszy to musisz stworzyć konto żeby móc siÄ™ zalogować. -Przejść na stronÄ™ www.secondlife.com żeby stworzyć nowe konto? - <usetemplate - name="okcancelbuttons" - notext="Kontynuuj" - yestext="Nowe Konto..."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -Problemy z poÅ‚Ä…czeniem. Problem może być spowodowany Twoim poÅ‚Ä…czeniem z Internetem albo może istnieć po stronie serwerów Second Life. - -Możesz sprawdzić swoje poÅ‚Ä…czenie z Internetem i spróbować ponownie za kilka minut albo kliknij Pomoc żeby poÅ‚Ä…czyć siÄ™ ze stronÄ… pomocy technicznej albo wybierz Teleportuj żeby spróbować teleportacji do Twojego miejsca startu. - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="Pomoc"/> - <button - - name="Teleport" - text="Teleportuj"/> - </form> - </notification> - - <notification - - name="WelcomeChooseSex" - > -Twoja postać pojawi siÄ™ za moment. - -Używaj strzaÅ‚ek żeby sie poruszać. -NaciÅ›nij F1 w dowolnej chwili po pomoc albo żeby dowiedzieć siÄ™ wiÄ™cej o [SECOND_LIFE]. -Wybierz awatara wÅ‚aÅ›ciwej pÅ‚ci. -Ten wybór bÄ™dzie można później zmienić. - <usetemplate - name="okcancelbuttons" - notext="Kobieta" - yestext="Mężczyzna"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] [PRICE]L$ Masz za maÅ‚o L$. - </notification> - - <notification - - name="GrantedModifyRights" - > -Masz teraz prawa modyfikacji obiektów należących do [FIRST_NAME] [LAST_NAME]. - </notification> - - <notification - - name="RevokedModifyRights" - > -Prawa modyfikacji obiektów należących do [FIRST_NAME] [LAST_NAME] zostaÅ‚y Ci odebrane. - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -To spowoduje wyczyszczenie buforów map regionu. -Jest to użyteczne wyÅ‚Ä…cznie podczas szukania bÅ‚Ä™dów. -(Podczas produkcji poczekaj 5 minut i mapy wszystkich zostanÄ… uaktualnione po relogu.) - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -Nie można kopiować zawartoÅ›ci wiÄ™cej niż jednego obiektu naraz. -Wybierz pojedynczy obiekt i spróbuj jeszcze raz. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -Teleportować wszystkich Rezydentów z tego regionu to ich miejsca startu? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -Na pewno chcesz odesÅ‚ać wszystkie obiekty należące do -[USER_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -Nie można ustawić tekstur regionu: -Tekstura terenu [TEXTURE_NUM] ma niewÅ‚aÅ›ciwÄ… gÅ‚Ä™biÄ™ koloru - [TEXTURE_BIT_DEPTH]. -ZamieÅ„ teksturÄ™ [TEXTURE_NUM] na 24-o bitowÄ… teksturÄ™ o wymiarze 512x512 lub mniejszÄ… i ponownie kliknij Zastosuj. - </notification> - - <notification - - name="InvalidTerrainSize" - > -Nie można ustawić tekstur regionu: -Tekstura terenu [TEXTURE_NUM] jest za duża - [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. -ZamieÅ„ teksturÄ™ [TEXTURE_NUM] na 24-o bitowÄ… teksturÄ™ o wymiarze 512x512 lub mniejszÄ… i ponownie kliknij Zastosuj. - </notification> - - <notification - - name="RawUploadStarted" - > -Åadowanie rozpoczÄ™te. Może potrwać do dwóch minut zależnie od prÄ™dkoÅ›ci Twojego poÅ‚Ä…czenia. - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -Na pewno chcesz zapisać obecne uksztaÅ‚towanie terenu jako punkt odniesienia dla górnego i dolnego limitu terenu i jako domyÅ›lÄ… wartość dla opcji Odtwórz? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -Maksimalna liczba goÅ›ci wynosi [MAX_AGENTS]. - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -Maksimalna liczba nieporzÄ…danych Rezydentów (banów) wynosi [MAX_BANNED]. - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -Próba dodania [NUM_ADDED] osób nie powidÅ‚a siÄ™: -[MAX_AGENTS] [LIST_TYPE] limit przekroczony o [NUM_EXCESS]. - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -Możesz mieć maksymalnie [MAX_GROUPS] Dozwolonych Grup. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Ustal"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -Możesz mieć maksymalnie [MAX_MANAGER] ZarzÄ…dców MajÄ…tku. - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -Nie możesz dodać wÅ‚aÅ›ciciela majÄ…tku do listy 'NieporzÄ…danych Rezydentów (banów)' majÄ…tku. - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -Nie możesz zmienić wyglÄ…du podczas Å‚adowania ubraÅ„ i ksztaÅ‚tów. - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -TytuÅ‚ Twojej reklamy musi zaczynać siÄ™ od litery (A-Z) albo cyfry. Znaki przestankowe sÄ… niedozwolone. - </notification> - - <notification - - name="CantSetBuyObject" - > -Nie możesz wybrać Kup Obiekt ponieważ obiekt nie jest na sprzedaż. -Wybierz obiekt na sprzedaż i spróbuj jeszcze raz. - </notification> - - <notification - - name="FinishedRawDownload" - > -Plik surowego terenu zaÅ‚adowany pod: -[DOWNLOAD_PATH]. - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -Nowa wersja [SECOND_LIFE] zostaÅ‚a opublikowana. -[MESSAGE] -Musisz zainstalować nowÄ… wersjÄ™ żeby używać [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="WyÅ‚Ä…cz program" - yestext="ZaÅ‚aduj"/> - </notification> - - <notification - - name="DownloadWindows" - > -Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. -[MESSAGE] -Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. - <usetemplate - name="okcancelbuttons" - notext="Kontynuuj" - yestext="ZaÅ‚aduj"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. -[MESSAGE] -Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. - <usetemplate - name="okcancelbuttons" - notext="Kontynuuj" - yestext="ZaÅ‚aduj"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -Nowa wersja [SECOND_LIFE] zostaÅ‚a opublikowana. -[MESSAGE] -Musisz zainstalować nowÄ… wersjÄ™ żeby używać [SECOND_LIFE]. - -ZaÅ‚adować do foldera Aplikacji? - <usetemplate - name="okcancelbuttons" - notext="WyÅ‚Ä…cz program" - yestext="ZaÅ‚aduj"/> - </notification> - - <notification - - name="DownloadMac" - > -Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. -[MESSAGE] -Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. - -ZaÅ‚adować do foldera Aplikacji? - <usetemplate - name="okcancelbuttons" - notext="Kontynuuj" - yestext="ZaÅ‚aduj"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. -[MESSAGE] -Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. - -ZaÅ‚adować do foldera Aplikacji? - <usetemplate - name="okcancelbuttons" - notext="Kontynuuj" - yestext="ZaÅ‚aduj"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -Przekazanie tego obiektu spowoduje, że grupa: -* Otrzyma L$ zapÅ‚acone temu obiektowi - <usetemplate - ignoretext="PrzekazujÄ…c obiekty grupom" - name="okcancelignore" - notext="Anuluj" - yestext="Przekaż"/> - </notification> - - <notification - - name="WebLaunchExternalTarget" - > -Otworzyć systemowÄ… przegÅ‚Ä…darke żeby zobaczyć tÄ… zawartość? - <usetemplate - ignoretext="OtwierajÄ…c systemowÄ… przeglÄ…darkÄ™ żeby zobaczyć stronÄ™" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchJoinNow" - > -Otworzyć stronÄ™ www.secondlife.com żeby zarzÄ…dzać Twoim kontem? - <usetemplate - ignoretext="OtwierajÄ…c systemowÄ… przeglÄ…darkÄ™ żeby zarzÄ…dzać Twoim kontem" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchBugReport101" - > -Odwiedź [SECOND_LIFE] Wiki i zobacz jak zgÅ‚aszać bÅ‚Ä™dy. - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki zgÅ‚aszania bÅ‚Ä™dów" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSecurityIssues" - > -Odwiedź [SECOND_LIFE] Wiki i zobacz jak zgÅ‚aszać problemy z bezpieczeÅ„stwem danych. - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki kwestii bezpieczeÅ„stwa danych" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchQAWiki" - > -Odwiedź [SECOND_LIFE] Wiki pytaÅ„ i odpowiedzi. - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki pytaÅ„ i odpowiedzi" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssue" - > -Odwiedź [SECOND_LIFE] katalog publicznych problemów, gdzie możesz zgÅ‚aszać bÅ‚Ä™dy i inne problemy. - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć katalog publicznych problemów" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssueHelp" - > -Odwiedź [SECOND_LIFE] Wiki i sprawdź jak używać katalogu publicznych problemów. - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki katalogu publicznych problemów" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSupportWiki" - > -Otwórz oficjalny blog Lindenów żeby zobaczyć nowe widaomoÅ›ci i informacje. - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć blog" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLGuide" - > -Otworzyć przewodnik skryptowania po pomoc ze skryptami? - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć przewodnik skryptowania" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchLSLWiki" - > -Otworzyć portal LSL po pomoc ze skryptami? - <usetemplate - ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć portal LSL" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ReturnToOwner" - > -Czy na pewno chcesz zwrócić wybrane obiekty do ich wÅ‚aÅ›cicieli? Wszystkie udostÄ™pnione obiekty z prawem transferu zostanÄ… zwrócone poprzednim wÅ‚aÅ›cicielom. - -*UWAGA* Wszystkie udostÄ™pnione obiekty bez prawa transferu zostanÄ… usuniÄ™te! - <usetemplate - ignoretext="ZwracajÄ…c obiekty ich wÅ‚aÅ›cicielom" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -JesteÅ› czÅ‚onkiem grupy [GROUP]. -Chcesz opuÅ›cić grupÄ™? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmKick" - > -NA PEWNO chcesz wyrzucić wszystkich użytkowników z sieci? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Wyrzuć Wszystkich Użytkowników"/> - </notification> - - <notification - - name="MuteLinden" - > -Przepraszamy, ale nie możesz wyciszyć Lindena. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="BÅ‚Ä…d Wyciszenia Obiektu Przez NazwÄ™" - name="MuteByNameFailed" - > -Ta osoba zostaÅ‚a już wyciszona przez Ciebie. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -Pomimo, że jest to dozwolone, usuniÄ™cie zawartoÅ›ci może zniszczyć obiekt. Chcesz usunąć? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -Nie możesz dać wizytówki w tym momencie. Spróbuj jeszcze raz za chwilÄ™. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -Nie możesz zaoferować znajomoÅ›ci w tym momencie. Spróbuj jeszcze raz za chwilÄ™. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -Tryb Pracy jest wÅ‚Ä…czony. -Czat i IMy bedÄ… ukryte. WysÅ‚ane IMy bÄ™dÄ… otrzymywaÅ‚y TwojÄ… odpowiedź Trybu Pracy. Propozycje teleportacji bÄ™dÄ… odrzucone. -Podarowane obiekty trafiÄ… do Twojego Å›mietnika. - <usetemplate - ignoretext="WÅ‚Ä…czajÄ…c Tryb Pracy" - name="okignore" - yestext="OK"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -Należysz już do maksymalnej iloÅ›ci grup. -Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej grupie, albo musisz odmówić. W celu opuszczenia grupy wybierz opcjÄ™ 'Grupy...' z menu 'Edycja'. -[NAME] oferuje Ci czÅ‚onkostwo w grupie. -[INVITE] - <usetemplate - name="okcancelbuttons" - notext="Odmów" - yestext="Przyjmij"/> - </notification> - - <notification - - name="KickUser" - > -Z jakim komunikatem wyrzucić tego użytkownia? - <form name="form"> - <input name="message" type="text"> -Administrator wylogowaÅ‚ CiÄ™. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -Z jakim komunikatem wyrzucić wszystkich użytkowników z sieci? - <form name="form"> - <input name="message" type="text"> -Administrator wylogowaÅ‚ CiÄ™. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -Z jakim komunikatem unieruchomić tego użytkownia? - <form name="form"> - <input name="message" type="text"> -Unieruchomiono CiÄ™. Nie możesz siÄ™ ruszać ani rozmawiać. Administrator skontaktuje siÄ™ z TobÄ… poprzez IM. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -Z jakim komunikatem odblokować tego użytkownia? - <form name="form"> - <input name="message" type="text"> -Odblokowano CiÄ™. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -Zaproponować teleportacjÄ™ do miejsca Twojego pobytu z tÄ… wiadomoÅ›ciÄ…? - <form name="form"> - <input name="message" type="text"> -Zapraszam do siebie. Region: [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -Wymusić przeniesienie użytkownika do miejsca Twojego pobytu? - <form name="form"> - <input name="message" type="text"> -Zapraszam do siebie. Region: [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -Na pewno chcesz siÄ™ teleportować? - <usetemplate - ignoretext="TeleportujÄ…c z miejsca (LM) z Twojej szafy" - name="okcancelignore" - notext="Anuluj" - yestext="Teleportuj"/> - </notification> - - <notification - - label="Wiadomość do Wszystkich w Twoim MajÄ…tku" - name="MessageEstate" - > -Wpisz krótkÄ… wiadomość która zostanie wysÅ‚ana do wszystkich osób w Twoim majÄ…tku. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - label="Zmiana MajÄ…tku Lindenów" - name="ChangeLindenEstate" - > -Zmieniasz majÄ…tek należący do Lindenów (główny obszar, sieć nastolatków, przedszkole, itd). - -Jest to BARDZO NIEBEZPIECZNE ponieważ może drastycznie zmienić percepcjÄ™ użytkowników. W głównym obszarze tysiÄ…ce regionów zostanie zmienione i spowoduje chwilowe problemy serwera przestrzeni. - -Kontynuować? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - label="Zmiana DostÄ™pu do MajÄ…tku Lindenów" - name="ChangeLindenAccess" - > -Zmieniasz listÄ™ dostÄ™pu do majÄ…tku należącego do Lindenów (główny obszar, sieć nastolatków, przedszkole, itd). - -Jest to NIEBEZPIECZNE i powinno być używane wyÅ‚Ä…cznie w celu uruchomienia opcji pozwalajÄ…cej na przeniesienie obiektów/L$ do/z sieci. -TysiÄ…ce regionów zostanie zmienione i spowoduje chwilowe problemy serwera przestrzeni. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateAllowedAgentAdd" - > -Dodać do listy dostÄ™pu do tego majÄ…tku czy do [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateAllowedAgentRemove" - > -Usunąć z listy dostÄ™pu do tego majÄ…tku czy do [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateAllowedGroupAdd" - > -Dodać do listy dostÄ™pu grup do tego majÄ…tku czy do [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateAllowedGroupRemove" - > -Usunąć z listy dostÄ™pu grup do tego majÄ…tku czy do [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateBannedAgentAdd" - > -Zablokować dostÄ™p do tego majÄ…tku czy do [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateBannedAgentRemove" - > -Zdjąć tego Rezydenta z listy niepożądanych (bany) dla tego majÄ…tku czy dla [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateManagerAdd" - > -Dodać zarzÄ…dce majÄ…tku do tego majÄ…tku czy do [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Wybierz MajÄ…tek" - name="EstateManagerRemove" - > -Usunąć zarzÄ…dce majÄ…tku z tego majÄ…tku czy z [ALL_ESTATES]? - <usetemplate - canceltext="Anuluj" - name="yesnocancelbuttons" - notext="Wszystkie majÄ…tki" - yestext="Ten majÄ…tek"/> - </notification> - - <notification - - label="Potwierdź Wyrzucenie" - name="EstateKickUser" - > -Wyrzucić [EVIL_USER] z tego majÄ…tku? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="EstateChangeCovenant" - > -Na pewno chcesz zminić treść umowy dla tego majÄ…tku? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ProblemImportingEstateCovenant" - > -Problem z importem umowy majÄ…tku. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -Problemy z dodawaniem nowego zarzÄ…dcy majÄ…tku. Jeden lub wiÄ™caj majÄ…tk może mieć wypeÅ‚nionÄ… listÄ™ zarzÄ…dców. - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -Problemy z dodawaniem do listy majÄ…tku. Jeden lub wiÄ™caj majÄ…tk może mieć wypeÅ‚nionÄ… listÄ™. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Nie można zaÅ‚adować danych notki w tym momencie. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -NiewystarczajÄ…ce prawa do zobaczenia notki przypisanej do wybranego ID. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MissingNotecardAssetID" - > -ID notki nie znalezione w bazie danych. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PublishClassified" - > -PamiÄ™taj: OpÅ‚aty za reklamÄ™ sÄ… bezzwrotne. - -ZamieÅ›cić tÄ… reklamÄ™ za [AMOUNT]L$? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - - - - - <notification - - label="Potwierdź Restart" - name="ConfirmRestart" - > -Na pewno chcesz zrobić restart tego regionu za 2 minuty? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - label="Wiadomość do Wszystkich w tym Regionie" - name="MessageRegion" - > -Wpisz krótkÄ… wiadomość która zostanie wysÅ‚ana do wszystkich osób w tym regionie. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - label="Blokowanie KsztaÅ‚towania Terenu" - name="HelpRegionBlockTerraform" - > -Jeżeli ta opcja jest wybrana wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci nie bÄ™dÄ… mogli ksztaÅ‚tować terenu niezależnie od ustawienia opcji 'Edycja Terenu' dla posiadÅ‚oÅ›ci. - -DomyÅ›lnie: nie wybrana - </notification> - - <notification - - label="Blokowanie Latania" - name="HelpRegionBlockFly" - > -Jeżeli ta opcja jest wybrana ludzie nie bÄ™dÄ… mogli latać w tym regionie niezależnie od ustawienia opcji 'Latanie' dla posiadÅ‚oÅ›ci. - -DomyÅ›lnie: nie wybrana - </notification> - - <notification - - label="Zezwalanie na Uszkodzenia" - name="HelpRegionAllowDamage" - > -Jeżeli ta opcja jest wybrana system zdrowia bÄ™dzie aktywny we wszystkich posiadÅ‚oÅ›ciach niezależnie od ustawieÅ„ dla indywidualnych posiadÅ‚oÅ›ci. Jeżeli ta opcja nie jest wybrana wÅ‚aÅ›ciciele indywidualych posiadÅ‚oÅ›ci bÄ™dÄ… mogli kontrolować system zdrowia w swoich posiadÅ‚oÅ›ciach. - -DomyÅ›lnie: nie wybrana - </notification> - - <notification - - label="Limit Liczby Awatarów" - name="HelpRegionAgentLimit" - > -Wybierz maksymalnÄ… liczbÄ™ awatarów dozwolonÄ… w tym regionie. -Wydajność systemu może siÄ™ zmieniać w zależnoÅ›ci od liczby obecnych awatarów. - -DomyÅ›lnie: 40 - </notification> - - <notification - - label="Ekstra Obiekty" - name="HelpRegionObjectBonus" - > -Ekstra Obiekty jest to mnożnik dla dozwolonych elementów (obiektów prostych). Dozwolony zakres to 1 do 10. Ustawienie '1' pozwala na 117 elementów na każdej posiadÅ‚oÅ›ci o powierzchni 512m. Ustawienie '2' pozwala na 234 elementy, czyli dwa razy tyle, itd. -Maksymalna liczba elementów w regionie to 15000 niezależnie od ustawienia Ekstra Obiektów. PamiÄ™taj - zmniejszenie Ekstra Obiektów po fakcie może spowodować odsyÅ‚anie lub usuwanie istniejÄ…cych obiektów. - -DomyÅ›lnie: 1,0 - </notification> - - - - <notification - - label="Blokowanie Popychania" - name="HelpRegionRestrictPushObject" - > -Ta opcja powoduje, że popychanie bÄ™dzie ograniczone w caÅ‚ym regionie. Jeżeli ta opcja jest wybrana Rezydenci mogÄ… być popchniÄ™ci tylko przez samych siebie lub przez wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. -(Popychanie odnosi sie do funkcji llPushObject() w LSL.) - -DomyÅ›lnie: nie wybrana - </notification> - - <notification - - label="Dzielenie / ÅÄ…czenie PosiadÅ‚oÅ›ci" - name="HelpParcelChanges" - > -Ta opcja kontroluje czy posiadÅ‚oÅ›ci nie należące do wÅ‚aÅ›ciciela tego majÄ…tku mogÄ… być Å‚Ä…czone / dzielone. -Jeżeli opcja nie jest wybrana: -* Tylko wÅ‚aÅ›ciciele majÄ…tku i zarzÄ…dcy mogÄ… Å‚Ä…czyć / dzielić posiadÅ‚oÅ›ci. -* Tylko posiadÅ‚oÅ›ci należące do wÅ‚aÅ›ciciela albo do grupy mogÄ… być - Å‚Ä…czone / dzielone przez czÅ‚onków z wystarczajÄ…cymi prawami. -Jeżeli ta opcja jest wybrana: -* Wszyscy wÅ‚aÅ›ciciele mogÄ… Å‚Ä…czyć / dzielić swoje posiadÅ‚oÅ›ci. -* PosiadÅ‚oÅ›ci należące do grupy mogÄ… być Å‚Ä…czone / dzielone - przez czÅ‚onków z wystarczajÄ…cymi prawami. - -DomyÅ›lnie: wybrana - </notification> - - <notification - - label="Nie Pokazuj w Wyszukiwaniu" - name="HelpRegionSearch" - > -Wybranie tej opcji uniemożliwi wÅ‚aÅ›cicielom posiadÅ‚ość wyÅ›wietlanie ich posiadÅ‚oÅ›ci w wyszukiwaniu -DomyÅ›linie: nie wybrana - </notification> - - <notification - - label="Zmienione Restrykcje Wieku dla Regionu" - name="RegionMaturityChange" - > -Ustawienie restrykcji wieku dla regionu zostaÅ‚o zmienione. -Zazwyczaj musi upÅ‚ynąć nieco czasu zanim ta zmiana zostanie odzwierciedlona na mapie. - </notification> - - <notification - - label="Odsprzedaż PosiadÅ‚oÅ›ci" - name="HelpRegionLandResell" - > -WÅ‚aÅ›ciciele majÄ…tku i zarzÄ…dcy mogÄ… sprzedawać posiadÅ‚oÅ›ci należące do wÅ‚aÅ›ciciela majÄ…tku. -Jeżeli ta opcja nie jest wybrana kupujÄ…cy nie bÄ™dÄ… mogli odsprzedać posiadÅ‚oÅ›ci w tym regionie. -Jeżeli ta opcja jest wybrana kupujÄ…cy bÄ™dÄ… mogli odsprzedać posiadÅ‚oÅ›ci w tym regionie. - -DomyÅ›linie: nie pozwalaj - </notification> - - <notification - - label="WyÅ‚Ä…cz Skrypty" - name="HelpRegionDisableScripts" - > -SÅ‚aba wydajność / prÄ™dkość symulatora może być spowodowana przez skrypt. Otwórz panel Statystyki (Ctrl-Shift-1). Sprawdź ilość klatek na sekundÄ™ (FPS) w Fizyce Symulatora. Jeżeli jest mniej niż 45 wybierz panel Czas znajdujÄ…cy siÄ™ na dole panelu Statystyki. Jeżeli Czas Skryptów wynosi 25 ms lub wiÄ™cej kliknij na Główne Skrypty. Zobaczysz listÄ™ nazw i lokacji skryptów które mogÄ… być odpowiedzialne za pogorszenie wydajnoÅ›ci. - -Wybranie opcji WyÅ‚Ä…cz Skrypty i naciÅ›niÄ™cie Zastosuj tymczasowo wyÅ‚Ä…czy wszystkie skrypty w tym regionie. Wybranie tej opcji może być niezbÄ™dne w celu umożliwienia podróży do lokacji wymienionego Głównego Skryptu. -Po przebyciu na miejsce zobacz skrypt i sprawdź czy jest on źródÅ‚em problemu. W razie potrzeby skontaktuj siÄ™ z wÅ‚aÅ›cicielem skryptu albo usuÅ„ lub zwróć obiekt. -WyÅ‚Ä…czenie opcji WyÅ‚Ä…cz Skrypty i naciÅ›niÄ™cie Zastosuj ponownie wÅ‚Ä…czy skrypty w tym regionie. - -DomyÅ›lnie: nie wybrana - </notification> - - <notification - - label="WyÅ‚Ä…cz Kolizje" - name="HelpRegionDisableCollisions" - > -SÅ‚aba wydajność / prÄ™dkość symulatora może być spowodowana przez fizyczne obiekty. Otwórz panel Statystyki (Ctrl-Shift-1). Sprawdź ilość klatek na sekundÄ™ (FPS) w Fizyce Symulatora. Jeżeli jest mniej niż 45 wybierz panel Czas znajdujÄ…cy siÄ™ na dole panelu Statystyki. Jeżeli Czas Symulatora (Fizyka) wynosi 20 ms lub wiÄ™cej kliknij na Główne Kolizje. Zobaczysz listÄ™ nazw i lokacji fizycznych obiektów które mogÄ… być odpowiedzialne za pogorszenie wydajnoÅ›ci. - -Wybranie opcji WyÅ‚Ä…cz Kolizje i naciÅ›niÄ™cie Zastosuj tymczasowo wyÅ‚Ä…czy kolizje obiektów. Wybranie tej opcji może być niezbÄ™dne w celu umożliwienia podróży do lokacji wymienionych Główneych Kolizji. -Po przebyciu na miejsce zobacz obiekt i sprawdź czy jest on źródÅ‚em kolizji z innymi obiektami. W razie potrzeby skontaktuj siÄ™ z wÅ‚aÅ›cicielem obiektu albo usuÅ„ lub zwróć obiekt. -WyÅ‚Ä…czenie opcji WyÅ‚Ä…cz Kolizje i naciÅ›niÄ™cie Zastosuj ponownie wÅ‚Ä…czy kolizje w tym regionie. - -DomyÅ›lnie: nie wybrana - </notification> - - <notification - - label="WyÅ‚Ä…cz FizykÄ™" - name="HelpRegionDisablePhysics" - > -Opcja WyÅ‚Ä…cz FizykÄ™ jest podobna do opcji WyÅ‚Ä…cz Kolizje i spowoduje wyÅ‚Ä…czenie symulacji fizyki. Oznacza to, że nie tylko obiekty przestanÄ… siÄ™ zderzać, ale również awatary nie bÄ™dÄ… siÄ™ mogÅ‚y poruszać. - -Ta opcja powinna być używana wyÅ‚Ä…cznie w przypadku kiedy użycie opcji WyÅ‚Ä…cz Kolizje nie zwiÄ™ksza wystarczajÄ…co wydajnoÅ›ci symulatora w celu sprawdzenia problemów zwiÄ…zanych z fizykÄ… i z kolizjami. - -Po zakoÅ„czeniu badaÅ„ musisz ponownie wÅ‚Ä…czyć fizykÄ™ żeby awatary mogÅ‚y siÄ™ poruszać. - -DomyÅ›lnie: nie wybrana - </notification> - - <notification - - label="Główne Kolizje" - name="HelpRegionTopColliders" - > -Pokaż listÄ™ obiektów potencjalnie doÅ›wiadczajÄ…cych najwiÄ™kszej iloÅ›ci kolizji miÄ™dzy obiektami. Te obiekty mogÄ… być odpowiedzialne za zmniejszenie wydajnoÅ›ci. Wybierz Widok > Statystyki i zobacz Symulator > Czas > Czas Symulatora (Fizyka) i sprawdź czy wiÄ™cej niż 20 ms jest spÄ™dzane w fizyce. - </notification> - - <notification - - label="Główne Skrypty" - name="HelpRegionTopScripts" - > -Pokaż listÄ™ obiektów spÄ™dzajÄ…cych najwÄ™cej czasu wykonujÄ…c skrypty LSL. Te obiekty mogÄ… być odpowiedzialne za zmniejszenie wydajnoÅ›ci. Wybierz Widok > Statystyki i zobacz Symulator > Czas > Czas Skryptów i sprawdź czy wiÄ™cej niż 25 ms jest spÄ™dzane w skryptach. - </notification> - - <notification - - label="Restart Regionu" - name="HelpRegionRestart" - > -Restart procesu na serwerze obsÅ‚ugujÄ…cym ten region za dwie minuty. Wszyscy Rezydenci w tym regionie zostanÄ… wylogowani. Region zapisze swoje dane i powinien wystartować w przeciÄ…gu 90 sekund. - -Restart regionu nie naprawi wiÄ™kszoÅ›ci problemów zwiÄ…zanych z wydajnoÅ›ciÄ… / prÄ™dkoÅ›ciÄ… i generalnie powinnien być używany na polecenie. - </notification> - - <notification - - label="Poziom Wody" - name="HelpRegionWaterHeight" - > -Jest to poziom w metrach gdzie pojawia siÄ™ woda. Jeżeli jest wybrana inna wartość niż 20 i Twoja woda sÄ…siaduje z krawÄ™dziÄ… Å›wiata lub pustym miejscem to bÄ™dzie widoczny uskok. - -DomyÅ›lnie: 20 - </notification> - - <notification - - label="Wznoszenie Terenu" - name="HelpRegionTerrainRaise" - > -Jest to dystans w metrach o który wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci mogÄ… podnieść teren powyżej ustalonego poziomu odniesienia. - -DomyÅ›lnie: 4 - </notification> - - <notification - - label="Obniżanie Terenu" - name="HelpRegionTerrainLower" - > -Jest to dystans w metrach o który wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci mogÄ… obniżyć teren poniżej ustalonego poziomu odniesienia. - -DomyÅ›lnie: -4 - </notification> - - <notification - - label="Åadowanie RAW Terenu" - name="HelpRegionUploadRaw" - > -Ten przycisk Å‚aduje plik .RAW dla tego regionu. -Plik musi mieć poprawne wymiary (RGB, 256x256) i 13 kanałów. -Najprostszy sposób na stworzenie pliku terenu to zapisanie istniejÄ…cego pliku RAW. Zalecany pierwszy krok to modyfikacje kanaÅ‚u czerwieni (wysokość terenu) i Å‚adowanie nowego pliku. - -Åadowanie pliku może zająć 45 sekund. ZaÅ‚adowanie terenu nie przemieÅ›ci obiektów znajdujÄ…cych siÄ™ na tym terenie, tylko teren i prawa przypisane do posiadÅ‚oÅ›ci ulegnÄ… zmianie. Może to spowodować, że niektóre obiekty zniknÄ… pod ziemiÄ…. - -Aby uzyskać wiÄ™cej informacji o edycji map wysokoÅ›ci sprawdź F1 Pomoc. - </notification> - - <notification - - label="Zapisywanie RAW Terenu" - name="HelpRegionDownloadRaw" - > -Ten przycisk zapisuje plik zawierajÄ…cy mapÄ™ wysokoÅ›ci, wymiary posiadÅ‚oÅ›ci, dane o posiadÅ‚oÅ›ciach na sprzedaż i niektóre prawa przypisane do posiadÅ‚oÅ›ci w tym regionie. Jeżeli otwierasz ten plik w programie takim jak Photoshop musisz zdefniować wymiary dokumentu jako: RGB, 256x256, 13 kanałów. Ten plik terenu nie może zostać otwarty w żaden inny sposób. - -Aby uzyskać wiÄ™cej informacji o edycji map wysokoÅ›ci sprawdź F1 Pomoc. - </notification> - - <notification - - label="Używaj SÅ‚oÅ„ca MajÄ…tku" - name="HelpRegionUseEstateSun" - > -Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca w tym regionie żeby byÅ‚a taka sama jak pozycja sÅ‚oÅ„ca w reszcie majÄ…tku. - -DomyÅ›lnie: wÅ‚Ä…czona - </notification> - - <notification - - label="StaÅ‚e SÅ‚oÅ„ce" - name="HelpRegionFixedSun" - > -Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca do pozycji w suwaku faz i unieruchamia sÅ‚oÅ„ce w wybranej pozycji. - -DomyÅ›lnie: nie wÅ‚Ä…czona - </notification> - - <notification - - label="Ustalanie Terenu" - name="HelpRegionBakeTerrain" - > -Ten przycisk zapisuje obecne uksztaÅ‚towanie terenu jako nowy punkt odniesienia dla regionu. Po ustaleniu punktu odniesienia teren może zostać odtworzony do zapisanego ksztaÅ‚tu wybierajÄ…c opcjÄ™ Odtwórz w Edycji Terenu. Zapisany, ustalony teren jest również punktem odniesienia dla górnego i dolnego limitu zmian wysokoÅ›ci. - </notification> - - <notification - - label="ZarzÄ…dcy MajÄ…tku" - name="HelpEstateEstateManager" - > -ZarzÄ…dca majÄ…tku jest Rezydentem oddelegowanym przez Ciebie do kontroli ustawieÅ„ regionu i majÄ…tku. ZarzÄ…dca majÄ…tku może zmieniać wszystkie ustawienia dostÄ™pne na tym panelu, za wyjÄ…tkiem Å‚adowania, zapisywania i ustalania terenu. W szczgólnoÅ›ci może kontrolować dostÄ™p innych Rezydentów (bany) do Twojego majÄ…tku. - -ZarzÄ…dcy majÄ…tku mogÄ… być dodawani i usuwani wyÅ‚Ä…cznie przez wÅ‚aÅ›ciciela majÄ…tku. Wybieraj na zarzÄ…dców tylko tych Rezydentów którym ufasz ponieważ ponosisz odpowiedzialność za ich dziaÅ‚ania. - </notification> - - <notification - - label="Używaj Globalnego Czasu" - name="HelpEstateUseGlobalTime" - > -Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca w Twoim majÄ…tku żeby byÅ‚a taka sama jak pozycja sÅ‚oÅ„ca w regionach głównych należących do Lindenów. - </notification> - - <notification - - label="StaÅ‚e SÅ‚oÅ„ce" - name="HelpEstateFixedSun" - > -Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca do pozycji w suwaku faz i unieruchamia sÅ‚oÅ„ce w wybranej pozycji. - </notification> - - <notification - - label="DostÄ™p Publiczny" - name="HelpEstateExternallyVisible" - > -Ta opcja kontroluje czy Rezydenci znajdujÄ…cy siÄ™ w innych majÄ…tkach mogÄ… przenosić siÄ™ do tego majÄ…tku jeżeli nie sÄ… umieszczeni na liÅ›cie dostÄ™pu. - -DomyÅ›lnie: wÅ‚Ä…czona - </notification> - - <notification - - label="Pozwalaj na BezpoÅ›redniÄ… TeleportacjÄ™" - name="HelpEstateAllowDirectTeleport" - > -WÅ‚Ä…czenie tej opcji pozwala Rezydentom na bezpoÅ›redniÄ… teleportacjÄ™ do dowolnego miejsca a Twoim majÄ…tku. Jeżeli ta opcja nie jest wyÅ‚Ä…czona Rezydenci mogÄ… siÄ™ teleportować do najbliższego teleportera. - -DomyÅ›lnie: nie wÅ‚Ä…czona - </notification> - - <notification - - label="DostÄ™p do MajÄ…tku" - name="HelpEstateAllowResident" - > -DostÄ™p do tego majÄ…tku bÄ™dzie ograniczony do wymienionych Rezydentów i poniższych grup. Ta opcja jest dostÄ™pna tylko wtedy kiedy opcja DostÄ™pu Publicznego jest wyÅ‚Ä…czona. - </notification> - - <notification - - label="DostÄ™p Grup do MajÄ…tku" - name="HelpEstateAllowGroup" - > -DostÄ™p do tego majÄ…tku bÄ™dzie ograniczony do wymienionych grup i powyższych Rezydentów. Ta opcja jest dostÄ™pna tylko wtedy kiedy opcja DostÄ™pu Publicznego jest wyÅ‚Ä…czona. - </notification> - - <notification - - label="Email o Nadużyciach" - name="HelpEstateAbuseEmailAddress" - > -Wpisanie ważnego email adresu spowoduje, że raporty o nadużyciach w obrÄ™bie tego majÄ…tku bÄ™dÄ… wysyÅ‚ane na ten adres. Zostawienie pustego miejsca spowoduje, że raporty o nadużyciach bÄ™dÄ… wysyÅ‚ane wyÅ‚Ä…cznie do Linden Lab. - </notification> - - <notification - - label="WstÄ™p Wzbroniony (bany)" - name="HelpEstateBanResident" - > -Rezydenci umieszczeni na tej liÅ›cie nie majÄ… dostÄ™pu do Twojego majÄ…tku, niezależnie od jakichkolwiek innych ustawieÅ„. - </notification> - - <notification - - label="Pozwalaj na Rozmowy" - name="HelpEstateVoiceChat" - > -PosiadÅ‚oÅ›ci w tym majÄ…tku mogÄ… mieć wÅ‚asne kanaÅ‚y gÅ‚osu pozwalajÄ…ce Rezydentom na rozmowy z osobami w pobliżu. - -DomyÅ›lnie: nie wÅ‚Ä…czone - </notification> - - <notification - - label="Wersja Niezgodna z Systemem Rozmów" - name="VoiceVersionMismatch" - > -Ta wersja Second Life nie jest kompatybilna z systemem Rozmów w tym regionie. Musisz zainstalować aktualnÄ… wersjÄ™ Second Life żeby Rozmowy dziaÅ‚aÅ‚y porawnie. - </notification> - - <notification - - label="Umowa MajÄ…tku" - name="HelpEstateCovenant" - > -WÅ‚Ä…czenie opcji umowy majÄ…tku jest wymagane w celu umożliwienia sprzedaży posiadÅ‚oÅ›ci w obrÄ™bie majÄ…tku. -Jeżeli opcja umowy nie jest wybrana sprzedaż posiadÅ‚oÅ›ci nie jest dozwolona. Notka okreÅ›lajÄ…ca TwojÄ… umowÄ™ może być pusta jeżeli nie chcesz ustalić zasad specyficznych dla Twojego majÄ…tku i jeżeli nie chcesz uprzedzać nabywców o faktach odnoszÄ…cych siÄ™ do posiadÅ‚oÅ›ci przed zakupem. - -Umowa może być używana w celu okreÅ›lenia zasad, zaleceÅ„, przekazywania informacji o kulturze lub, po prostu, Twoich wÅ‚asnych oczekiwaÅ„ w odniesieniu do potencjalnego nabywacy. -Możesz zdefiniować zasady podziaÅ‚u posidÅ‚oÅ›ci, prawa budowlane, zasady opÅ‚at i wszystkie dodatkowe informacje z którymi nowy wÅ‚aÅ›ciciel powinien zapoznać siÄ™ i zaakceptować przed zakupem. - -Nabywca musi wybrać opcjÄ™ akceptacji umowy żeby trasakcja mogÅ‚a zostać sfinalizowana. Umowa majÄ…tku jest zawsze dostÄ™pna w dialogu O PosiadÅ‚oÅ›ci dla każedej posiadÅ‚oÅ›ci ze zdefinowanÄ… umowÄ…. - </notification> - - <notification - - label="Nie Można Kupić Obiektów" - name="BuyObjectOneOwner" - > -Jednorazowo możesz kupować tylko od jednego wÅ‚aÅ›ciciela. -Wybierz pojedynczy obiekt i spróbuj jeszcze raz. - </notification> - - <notification - - label="Nie Można Kupić ZawartoÅ›ci" - name="BuyContentsOneOnly" - > -Jednorazowo możesz kupić zawartość tylko jednego obiektu. -Wybierz pojedynczy obiekt i spróbuj jeszcze raz. - </notification> - - <notification - - label="Nie Można Kupić ZawartoÅ›ci" - name="BuyContentsOneOwner" - > -Jednorazowo możesz kupować tylko od jednego wÅ‚aÅ›ciciela. -Wybierz pojedynczy obiekt i spróbuj jeszcze raz. - </notification> - - <notification - - name="BuyOriginal" - > -Kupić oryginalny obiekt od [OWNER] za [PRICE]L$? -Zostaniesz wÅ‚aÅ›cicielem tego obiektu z nastÄ™pujÄ…cymi prawami: - Modyfikacje: [MODIFYPERM] - Kopiowanie: [COPYPERM] - Odsprzedawanie i Oddawanie: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -Kupić oryginalny obiekt za [PRICE]L$? -Zostaniesz wÅ‚aÅ›cicielem tego obiektu z nastÄ™pujÄ…cymi prawami: - Modyfikacje: [MODIFYPERM] - Kopiowanie: [COPYPERM] - Odsprzedawanie i Oddawanie: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopy" - > -Kupić kopiÄ™ obiektu od [OWNER] za [PRICE]L$? -Obiekt zostanie skopiowany do Twojej szafy z nastÄ™pujÄ…cymi prawami: - Modyfikacje: [MODIFYPERM] - Kopiowanie: [COPYPERM] - Odsprzedawanie i Oddawanie: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -Kupić kopiÄ™ obiektu za [PRICE]L$? -Obiekt zostanie skopiowany do Twojej szafy z nastÄ™pujÄ…cymi prawami: - Modyfikacje: [MODIFYPERM] - Kopiowanie: [COPYPERM] - Odsprzedawanie i Oddawanie: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="BuyContents" - > -Kupić zawartość od [OWNER] za [PRICE]L$? -Zawartość zostanie skopiowana do Twojej szafy. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -Kupić zawartość za [PRICE]L$? -Zawartość zostanie skopiowana do Twojej szafy. - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -Ta transakcja spowoduje: -[ACTION] - -Na pewno chcesz dokonać tego zakupu? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -Ta transakcja spowoduje: -[ACTION] - -Na pewno chcesz dokonać tego zakupu? -Wpisz hasÅ‚o ponownie i kliknij OK. - <form name="form"> - <input - name="message" - type="password"/> - <button - - - name="ConfirmPurchase" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -Uwaga: -Lokacja tego wyboru zostaÅ‚a zaktualizowana ale pozostaÅ‚e szczegóły zachowajÄ… oryginalne wartoÅ›ci. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -Wybrane obiekty szafy nie majÄ… praw kopiowania. -Obiekty zostanÄ… przeniesione do Twojej szafy, nie zostanÄ… skopiowane. - -Przenieść obiekty szafy? - <usetemplate - ignoretext="PrzenoszÄ…c szafÄ™ bez praw kopiowania z obiektów" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -Wybrane obiekty szafy nie majÄ… praw kopiowania. -Obiekty zostanÄ… przeniesione do Twojej Szafy, nie zostanÄ… skopiowane. -Ponieważ obiekty zawierajÄ… skrypty, przeniesienie obiektów do Twojej szafy może spowodować niepoprawne dziaÅ‚anie skryptów. - -Przenieść obiekty szafy? - <usetemplate - ignoretext="PrzenoszÄ…c szafÄ™ bez praw kopiowania ze skryptowanych obiektów" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ClickActionNotPayable" - > -Uwaga: Opcja ZapÅ‚ać Obiektowi zostaÅ‚a wybrana, ale żeby ta opcja dziaÅ‚aÅ‚a musi być dodany skrypt z funkcjÄ… money(). - <form name="form"> - <ignore name="ignore" - text="WybierajÄ…c opcjÄ™ ZapÅ‚ać Obiektowi dla obiektów bez funkcji money()"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -W tym obiekcie nie ma elementów które możesz skopiować. - </notification> - - <notification - - name="WebLaunchAccountHistory" - > -Przejść na stronÄ™ Second Life żeby zobaczyć historiÄ™ konta? - <usetemplate - ignoretext="ÅadujÄ…c stronÄ™ historii konta." - name="okcancelignore" - notext="Anuluj" - yestext="Idź na stronÄ™"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -Przejść na stronÄ™ Second Life? - <usetemplate - ignoretext="OdwiedzajÄ…c stronÄ™ Second Life." - name="okcancelignore" - notext="Anuluj" - yestext="Idź"/> - </notification> - - <notification - - name="ConfirmQuit" - > -Na pewno chcesz skoÅ„czyć? - <usetemplate - ignoretext="WyÅ‚Ä…czajÄ…c Second Life." - name="okcancelignore" - notext="Kontynuuj" - yestext="WyÅ‚Ä…cz"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -Używaj tej opcji do zgÅ‚aszania nadużyć Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards). Zobacz: - -http://secondlife.com/corporate/tos.php -http://secondlife.com/corporate/cs.php - -Wszystkie zgÅ‚oszone nadużycia Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards) sÄ… badane i rozwiÄ…zywane. Możesz zobaczyć konkluzjÄ™ zgÅ‚oszenia w Raporcie ZgÅ‚oszeÅ„ pod: - -http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -UWAGA: Ten raport zostanie wysÅ‚any do wÅ‚aÅ›ciciela regionu w którym siÄ™ znajdujesz i nie bÄ™dzie wysÅ‚any do Linden Lab. - -W ramach serwisu dla Rezydentów i goÅ›ci wÅ‚aÅ›ciciel tego regionu postanowiÅ‚ odbierać i rozwiÄ…zywać wszystkie reporty wysÅ‚ane z tego regionu. Linden Lab nie bÄ™dzie analizowaÅ‚ żadnych reportów zgÅ‚oszonych z tego miejsca. - -WÅ‚aÅ›ciciel regionu bÄ™dzie rozpatrywaÅ‚ raporty w oparciu o lokalne prawa tego regionu zdefiniowane w umowie majÄ…tku. (Możesz zobaczyć umowÄ™ wybierajÄ…c opcjÄ™ O PosiadÅ‚oÅ›ci z menu Åšwiat.) - -RozwiÄ…zanie tego raportu odnosi siÄ™ wyÅ‚Ä…cznie do tego regionu; konkluzja tego raportu nie bÄ™dzie miaÅ‚a wpÅ‚ywu na dostÄ™p Rezydentów do innych regionów w Second Life. WyÅ‚Ä…cznie Linden Lab może caÅ‚kowicie odebrać dostÄ™p do Second Life. - </notification> - - <notification - - name="HelpReportBug" - > -Używaj tej opcji *wyÅ‚Ä…cznie* w celu zgÅ‚aszania technicznych problemów, doÅ‚Ä…czajÄ…c szczegółowy opis problemu. Możesz odpowiedzieć na automatycznÄ… email z odpowiedziÄ… żeby dodać wiÄ™cej szczegółów do Twojego raportu. - -Wszystkie raporty bÅ‚Ä™dów sÄ… analizowane i oceniane. Kontakt przez email nie bÄ™dzie nawiÄ…zany. - -Jeżeli masz techniczne problemy, skontaktuj siÄ™ z pomocÄ… technicznÄ… pod: - -http://secondlife.com/community/support.php - -Uwaga: Niekompletne raporty nie bÄ™dÄ… analizowane. - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -Wybierz kategoriÄ™ dla tego raportu o nadużyciu. -OkreÅ›lenie kategorii pomoże nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -Wybierz kategoriÄ™ dla tego bÅ‚Ä™du. -OkreÅ›lenie kategorii pomoże nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -Wprowadź imiÄ™ i nazwisko osoby popeÅ‚niajÄ…cej nadużycie. -DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -Wprowadź nazwÄ™ miejsca gdzie popeÅ‚niono nadużycie. -DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -Wprowadź opis popeÅ‚nionego nadużycia. -DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -Wprowadź opis bÅ‚Ä™du. -DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -Wprowadź szczgółowy opis popeÅ‚nionego nadużycia. -Podaj maksymalnÄ… ilość szczgółów oraz imiona i nazwiska osób zwiÄ…zanych z nadużyciem które zgÅ‚aszasz. -DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -Wprowadź szczgółowy opis bÅ‚Ä™du. Podaj maksymalnÄ… ilość szczgółów oraz, jeżeli to możliwe, kroki niezbÄ™dne do odtworzenia problemu. -DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Szanowny Rezydencie, - -Jeżeli skÅ‚adasz raport dotyczÄ…cy naruszenia praw autorskich proszÄ™ siÄ™ upewnić, że robisz to poprawnie: - -(1) Przypadek Nadużycia. Możesz zÅ‚ożyć raport jeżeli sÄ…dzisz, że Rezydent narusza system przywilejów Second Life, na przykÅ‚ad używajÄ…c CopyBot lub podobnych narzÄ™dzi robiÄ…cych kopie, naruszajÄ…c prawa autorskie. Komisja Nadużyć bada wykrocznia i stosuje akcje dyscyplinarne za zachowania sprzeczne z zasadami Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards) Second Life. Komisja Nadużyć nie zajmuje siÄ™ i nie odpowiada na żądania usuniÄ™cia treÅ›ci ze Å›rodowiska Second Life. - -(2) Przypadek DMCA lub Usuwanie TreÅ›ci. Aby wystÄ…pić z żądaniem o usuniÄ™cie treÅ›ci ze Å›rodowiska Second Life MUSISZ przedÅ‚ożyć ważne zawiadomienie o nadużyciu zgodne z naszÄ… polisÄ… DMCA pod http://secondlife.com/corporate/dmca.php. - -Jeżeli chcesz kontynuować dalej zamknij to okno i dokoÅ„cz wysyÅ‚anie raportu. Może być potrzebny wybór kategorii 'CopyBot albo Nadużycie Przywilejów'. - -DziÄ™kujemy, - -Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -Brak nastÄ™pujÄ…cych wymaganych komponentów w [FLOATER]: -[COMPONENTS] - </notification> - - <notification - - label="ZamieÅ„ IstniejÄ…cy Dodatek" - name="ReplaceAttachment" - > -Obecnie masz już doÅ‚Ä…czony obiekt do tej części Twojego ciaÅ‚a. -Chcesz go zamienić na wybrany obiekt? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="ZamieniajÄ…c istniejÄ…ce dodatki"/> - <button - - ignore="ZamieÅ„ Automatycznie" - - name="Yes" - text="OK"/> - <button - ignore="Nie Zamieniaj" - - name="No" - text="Anuluj"/> - </form> - </notification> - - <notification - - label="Ostrzeżenie Trybu Pracy" - name="BusyModePay" - > -JesteÅ› w Trybie Pracy co oznacza, że nie dostaniesz żadnych obiektów w zamian za tÄ… opÅ‚atÄ™. - -Chcesz wyÅ‚Ä…czyć Tryb Pracy przed zakoÅ„czeniem tej tranzakcji? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="PÅ‚acÄ…c osobie lub obiektowi bÄ™dÄ…c w Trybie Pracy"/> - <button - - ignore="Zawsz wyÅ‚Ä…czaj Tryb Pracy" - - name="Yes" - text="OK"/> - <button - ignore="Nie wyÅ‚Ä…czaj Trybu Pracy" - - name="No" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="ConfirmEmptyTrash" - > -Na pewno chcesz permanentnie usunąć zawartość Åšmietnika? - <usetemplate - ignoretext="UsuwajÄ…c zawartość Åšmietnika" - name="okcancelignore" - notext="Anuluj" - yestext="OK"/> - </notification> - - <notification - - name="ConfirmClearBrowserCache" - > -Na pewno chcesz wyczyÅ›cić bufor przeglÄ…darki? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Tak"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -Na pewno chcesz wyczyÅ›cić ciasteczka? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Tak"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -Na pewno chcesz wyczyÅ›cić listÄ™ zapisanych linków? - <usetemplate - name="okcancelbuttons" - notext="Anuluj" - yestext="Tak"/> - </notification> - - <notification - - name="ConfirmEmptyLostAndFound" - > -Na pewno chcesz permanentnie usunąć zawartość Twojego foldera Zgubione i Znalezione? - <usetemplate - ignoretext="UsuwajÄ…c szafÄ™ z Twojego foldera Zgubione i Znalezione" - name="okcancelignore" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="CopySLURL" - > -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"/> - </form> - </notification> - - <notification - - name="GraphicsPreferencesHelp" - > -Ten panel kontroluje wymiary i rozdzielczość okna oraz jakość grafiki klienta. Panel Ustawienia > Grafika pozwala na wybór jednego z czterech poziomów jakoÅ›ci grafiki: Niska, Åšrednia, Wysoka i Super. Możesz również dostosować grafikÄ™ do wÅ‚asnych potrzeb wybierajÄ…c opcjÄ™ Zaawansowane i zmieniajÄ…c nastÄ™pujÄ…ce ustawienia: - -Shadery: WÅ‚Ä…cza i wyÅ‚Ä…cza różne rodzaje shaderów piksli. - -Ustawienia Odbić: OkreÅ›la rodzaje obiektów które mogÄ… odbijać siÄ™ w wodzie. - -Prezentacja Awatarów: OkreÅ›la opcje majÄ…ce wpÅ‚yw na rysowanie awatarów przez klienta. - -GÅ‚Ä™bia Rysowania: OkreÅ›la od jakiej odlegÅ‚oÅ›ci od pozycji kamery obiekty bÄ™dÄ… rysowane w tle. - -Liczba CzÄ…steczek: OkreÅ›la maksymalnÄ… liczbÄ™ czÄ…steczek widocznych jednoczeÅ›nie na ekranie. - -Jakość Post-Procesu: OkreÅ›la rozdzielczość z jakÄ… jest wyÅ›wietlana poÅ›wiata. - -Szczegóły Meszu: OkreÅ›la ilość szczegółów albo liczbÄ™ trójkÄ…tów używanÄ… przy rysowaniu pewnych obiektów. WiÄ™ksza wartość zwalnia prÄ™dkość rysowania ale powoduje, że obiekty wyglÄ…dajÄ… bardziej szczgółowo. - -Ustawienia ÅšwiatÅ‚a: OkreÅ›la jaki rodzaj Å›wiatÅ‚a jest używany do rysowania. - -Szczegóły Terenu: OkreÅ›la ilość szczgółów widocznÄ… w teksturach terenu. - </notification> - - <notification - - name="WLSavePresetAlert" - > -Chcesz zmienić zapisane ustawienia? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="WLDeletePresetAlert" - > -Chcesz usunąć [SKY]? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="WLNoEditDefault" - > -Nie możesz edytować lub usunąć domyÅ›lnych ustawieÅ„. - </notification> - - <notification - - name="WLMissingSky" - > -Ten plik cyklu dziennego używa brakujÄ…cego pliku nieba: [SKY]. - </notification> - - <notification - - name="PPSaveEffectAlert" - > -Efekt Post-Procesu już istnieje. Chcesz zapisać nowy na jego miejsce? - <usetemplate - name="okcancelbuttons" - notext="Nie" - yestext="Tak"/> - </notification> - - <notification - - name="HelpEditSky" - > -Ustaw suwaki żeby stworzyć i zapisać zbiór nieb. - </notification> - <notification - - name="HelpEditDayCycle" - > -Wybierz których nieb używać w przeciÄ…gu dnia. - </notification> - - <notification - - name="EnvSettingsHelpButton" - > -Te ustawienia zmieniajÄ… wyglÄ…d Å›rodowiska na Twoim komputerze. Twoja karta graficzna musi posiadać opcjÄ™ shaderów atmosfery aby umożliwić dostÄ™p do wszystkich ustawieÅ„. - -Ustaw suwak "Pora Dnia" żeby zmienić lokalnÄ… porÄ™ dnia w kliencie. - -Ustaw suwak "Chmury" żeby zmienić ilość chmur widocznÄ… na niebie. - -Wybierz kolor w selekcji "Kolor Wody" żeby zmienić kolor wody. - -Ustaw suwak "Zamglenie" żeby zmienić gÄ™stość zamglenia pod wodÄ…. + <notification name="CannotSetLandOwnerNothingSelected"> + Nie można wybrać wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. +PosiadÅ‚ość nie zostaÅ‚a wybrana. + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + Nie można wybrać wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci ponieważ wybrany obszar przekracza granicÄ™ regionów. Wybierz mniejszy obszar i spróbuj jeszcze raz. + </notification> + <notification name="ForceOwnerAuctionWarning"> + Ta posiadÅ‚ość jest wystawiona na aukcjÄ™. Wymuszenie wÅ‚asnoÅ›ci anulue aukcjÄ™ i potencjalnie może zdenerwować zainteresowanych Rezydentów, jeżeli licytacja już siÄ™ rozpoczęła. Wymusić wÅ‚asność? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + Nie można sfinalizować: +PosiadÅ‚ość nie zostaÅ‚a wybrana. + </notification> + <notification name="CannotContentifyNoRegion"> + Nie można sfinalizować: +Region nie znaleziony. + </notification> + <notification name="CannotReleaseLandNothingSelected"> + Nie można porzucić posiadÅ‚oÅ›ci: +PosiadÅ‚ość nie zostaÅ‚a wybrana. + </notification> + <notification name="CannotReleaseLandNoRegion"> + Nie można porzucić posiadÅ‚oÅ›ci: +Region nie znaleziony. + </notification> + <notification name="CannotBuyLandNothingSelected"> + Nie można kupić posiadÅ‚oÅ›ci: +PosiadÅ‚ość nie zostaÅ‚a wybrana. + </notification> + <notification name="CannotBuyLandNoRegion"> + Nie można kupić posiadÅ‚oÅ›ci: +Region nie znaleziony. + </notification> + <notification name="CannotCloseFloaterBuyLand"> + Dialog Kup PosiadÅ‚ość nie może zostać zamkniÄ™ty dopóki Second Life nie oszacuje ceny tej tranzakcji. + </notification> + <notification name="CannotDeedLandNothingSelected"> + Nie można przekazać posiadÅ‚oÅ›ci: +PosiadÅ‚ość nie zostaÅ‚a wybrana. + </notification> + <notification name="CannotDeedLandNoGroup"> + Nie można przekazać posiadÅ‚oÅ›ci: +Grupa nie zostaÅ‚a wybrana. + </notification> + <notification name="CannotDeedLandNoRegion"> + Nie można przekazać posiadÅ‚oÅ›ci: +Region nie znaleziony. -Kliknij "Używaj Czasu Regionu" żeby dostosowywać porÄ™ dnia do pory dnia w regionie. +ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta + </notification> + <notification name="CannotDeedLandMultipleSelected"> + Nie można przekazać posiadÅ‚oÅ›ci: +Wiele posiadÅ‚oÅ›ci jest wybranych. -Kliknij "Zaawansowane Niebo" żeby wybrać bardziej szczegółowy edytor ustawieÅ„ nieba. +Spróbuj wybrać pojedynczÄ… posiadÅ‚ość. + </notification> + <notification name="ParcelCanPlayMedia"> + To miejsce może odtwarzać strumienie mediów. +Odtwarzanie strumieni wymaga szybkiego poÅ‚Ä…czenia do Internetu. -Kliknij "Zaawansowana Woda" żeby wybrać bardziej szczegółowy edytor ustawieÅ„ wody. - </notification> +Odtwarzać dostÄ™pne strumienie mediów? +(Selekcja może zostać zmieniona póżniej pod Ustawienia > Audio i Video.) + <usetemplate name="okcancelbuttons" notext="WyÅ‚Ä…cz" yestext="Odtwarzaj"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + Nie można przekazać posiadÅ‚oÅ›ci: +Serwer aktualizuje dane wÅ‚asnoÅ›ci. - <notification - - name="HelpDayCycle" - > -Edytor Cyklu Dnia pozwala na kontrolÄ™ nieba podczas cyklu dnia/nocy w Second Life. Ten cykl jest używany przez suwak Pora Dnia w podstawowym Edytorze Åšrodowiska. +Spróbuj jeszcze raz póżniej. + </notification> + <notification name="CannotDeedLandNoTransfer"> + Nie możesz przekazać posiadÅ‚oÅ›ci: +Region [REGION] nie pozwala na transfer posiadÅ‚oÅ›ci. + </notification> + <notification name="CannotReleaseLandWatingForServer"> + Nie można porzucić posiadÅ‚oÅ›ci: +Serwer aktualizuje dane posiadÅ‚oÅ›ci. -Edytor Cyklu Dnia ustala klatki odniesienia. SÄ… to punkty (widoczne jako szare plamki na wykresie czasu) które majÄ… przypisane Ustawienia Nieba. W miarÄ™ upÅ‚ywu czasu niebo jest animowane używajÄ…c Å›rednich pomiÄ™dzy klatkami odniesienia. +Spróbuj jeszcze raz póżniej. + </notification> + <notification name="CannotReleaseLandSelected"> + Nie możesz porzucić posiadÅ‚oÅ›ci: +Nie jesteÅ› wÅ‚aÅ›cicielem wszystkich wybranych posiadÅ‚oÅ›ci. -Żółta strzaÅ‚ka powyżej linii czasu odpowiada biżącemu widokowi opartemu na Porze Dnia. Kliknij i przeciÄ…gnij strzaÅ‚kÄ™ żeby zobaczyć animacjÄ™ w przeciÄ…gu dnia. Możesz dodawać i usuwać klatki odniesienia używająć przycisków Dodaj i UsuÅ„ po prawej stronie linii czasu. +Wybierz pojedynczÄ… posiadÅ‚ość. + </notification> + <notification name="CannotReleaseLandDontOwn"> + Nie możesz porzucić posiadÅ‚oÅ›ci: +Nie masz praw do porzucenia tej posiadÅ‚oÅ›ci. -DÅ‚ugość Cyklu dyktuje caÅ‚kowitÄ… dÅ‚ugość "dnia". Wybranie maÅ‚ej wartoÅ›ci (na przykÅ‚ad 2 min) oznacza, że Twoja 24-o godzinna linia czasu bÄ™dzie animowana w caÅ‚oÅ›ci w przeciÄ…gu dwóch minut czasu rzeczywistego! Po wybraniu odpowiednich ustawieÅ„ linii czasu i klatek odniesienia użyj przycisków Start i Stop żeby zobaczyć rezultaty. PamiÄ™taj - zawsze możesz używać żółtej strzaÅ‚ki wskażnika czasu powyżej linii czasu żeby zmieniać animacjÄ™ dynamicznie. Użycie przycisku Używaj Czasu Regionu zsynchronizuje TwojÄ… dÅ‚ugość dnia i czas z cyklem Regionu. +Twoje posiadÅ‚oÅ›ci sÄ… podkreÅ›lone na zielono. + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + Nie można porzucić posiadÅ‚oÅ›ci: +Region nie znaleziony. -Po zdefiniowaniu Cyklu Dnia możesz zapisać i zaÅ‚adować ustawienia używajÄ…c przycisków Zapisz Test Dnia i ZaÅ‚aduj Test Dnia. Uwaga, obecnie tylko jeden Cykl Dnia jest dozwolony. - </notification> +ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta + </notification> + <notification name="CannotReleaseLandNoTransfer"> + Nie możesz porzucić posiadÅ‚oÅ›ci: +Region [REGION] nie pozwala na transfer posiadÅ‚oÅ›ci. + </notification> + <notification name="CannotReleaseLandPartialSelection"> + Nie można porzucić posiadÅ‚oÅ›ci: +Musisz wybrać caÅ‚Ä… posiadÅ‚ość by jÄ… porzucić. +Wybierz caÅ‚Ä… posiadÅ‚ość albo najpierw jÄ… podziel. + </notification> + <notification name="ReleaseLandWarning"> + Porzucasz posiadÅ‚ość o powierzchni [AREA] m². +Porzucenie tej posiadÅ‚oÅ›ci usunie jÄ… z Twoich wÅ‚asnoÅ›ci. +Nie otrzymasz za to żadnej opÅ‚aty. - <notification - - name="HelpBlueHorizon" - > -Ustaw suwaki Czerwony/Zielony/Niebieski (RGB) żeby zmienić kolor nieba. Możesz używać suwaka Intensywność (I) żeby zmieniać ustawienia suwaków wszystkich kolorów (RGB) jednoczeÅ›nie. - </notification> +Porzucić posiadÅ‚ość? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + Nie można podzielić posiadÅ‚oÅ›ci: - <notification - - name="HelpHazeHorizon" - > -Horyzont Zamglenia jest jednym z ważniejszych parametrów kontrolujÄ…cych oÅ›wietlenie sceny. Jest efektywnym do symulacji wielu ustawieÅ„ oÅ›wietlenia takich jak rozbyski sÅ‚oÅ„ca i ciemniejsze ustawienia zamkniÄ™tej przesÅ‚ony. - </notification> +PosiadÅ‚ość nie zostaÅ‚a wybrana. + </notification> + <notification name="CannotDivideLandPartialSelection"> + Nie można podzielić posiadÅ‚oÅ›ci: - <notification - - name="HelpBlueDensity" - > -GÄ™stość BÅ‚Ä™kitu ma wpÅ‚yw na nasycenie koloru nieba i mgÅ‚y. Jeżeli przesuniesz suwak IntensywnoÅ›ci (I) w prawo kolory bÄ™dÄ… jaÅ›niejsze i żywsze. Jeżeli przesuniesz caÅ‚kowicie w lewo kolory bÄ™dÄ… rozmywać siÄ™ aż do przejÅ›cia w biel i czerÅ„. Jeżeli chcesz precyzyjnie kontrolować balans koloru nieba możesz używać suwaków kolorów Czerwony/Zielony/Niebieski (RGB) w celu zmiany nasycenia indywidualnych skÅ‚adników. - </notification> +PosiadÅ‚ość zostaÅ‚a wybrana w caÅ‚oÅ›ci. +Spróbuj wybrać część posiadÅ‚oÅ›ci. + </notification> + <notification name="LandDivideWarning"> + PodziaÅ‚ tej posiadÅ‚oÅ›ci stworzy dwie posiadÅ‚oÅ›ci z których każda bÄ™dzie mogÅ‚a mieć indywidualne ustawienia. +Niektóre ustawienia zostanÄ… zmienione na domyÅ›lne po tej operacji. - <notification - - name="HelpHazeDensity" - > -GÄ™stość Zamglenia kontroluje zawartość mÄ™tnego, szarego zamglenia w atmosferze. Jest to przydatne do symulacji scen z dużą iloÅ›ciÄ… dymu i zanieczyszczeÅ„. -Oraz do symulacji mgÅ‚y i zamgleÅ„. - </notification> +Podzielić posiadÅ‚ość? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + Nie można podzielić posiadÅ‚oÅ›ci: +Region nie znaleziony. - <notification - - name="HelpDensityMult" - > -Mnożnik GÄ™stoÅ›ci wpÅ‚ywa na gÄ™stość atmosfery w caÅ‚oÅ›ci. Niskie ustawienie sprawia wrażenie lekkiego powietrza, wyższe ustawienia tworzÄ… bardzo ciężki, zamglony efekt. - </notification> +ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta + </notification> + <notification name="CannotJoinLandNoRegion"> + Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: +Region nie znaleziony. - <notification - - name="HelpDistanceMult" - > -Mnożnik Dystansu wpÅ‚ywa na postrzeganie dystansu. Wartość zero niweluje wpÅ‚yw dystansu na wyglÄ…d terenu i obiektów. -WartoÅ›ci wiÄ™ksze od 1 symulujÄ… wiÄ™kszy dystans tworzÄ…c silniejszy efekt atmosferyczny. - </notification> +ZgÅ‚oÅ› ten problem pod Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta + </notification> + <notification name="CannotJoinLandNothingSelected"> + Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: +PosiadÅ‚oÅ›ci nie zostaÅ‚y wybrane. + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: +Tylko jedna posiadÅ‚ość zostaÅ‚a wybrana. - <notification - - name="HelpMaxAltitude" - > -Max Wysokość wpÅ‚ywa na obliczanie Å›wiatÅ‚a atmosferycznego. -O póżniejszych porach dnia ta wartość jest przydatna do regulacji percepcji dystansu zachodÄ…cego sÅ‚oÅ„ca. - </notification> +Wybierz obaszar usytuowany na obu posiadÅ‚oÅ›ciach. + </notification> + <notification name="CannotJoinLandSelection"> + Nie można poÅ‚Ä…czyć posiadÅ‚oÅ›ci: +Musisz wybrać wiÄ™cej niż jednÄ… posiadÅ‚ość. - <notification - - name="HelpSunlightColor" - > -Reguluje kolor i intensywność bezpoÅ›redniego Å›wiatÅ‚a w scenie. - </notification> +Wybierz obaszar usytuowany na obu posiadÅ‚oÅ›ciach. + </notification> + <notification name="JoinLandWarning"> + PoÅ‚Ä…czenie tego obszaru utworzy jednÄ… wiÄ™kszÄ… posiadÅ‚ość ze wszystkich posiadÅ‚oÅ›ci przecinajÄ…cych wybrany prostokÄ…t. Nazwa i opcje posiadÅ‚oÅ›ci bedÄ… musiaÅ‚y zostać skonfigurowane. - <notification - - name="HelpSunAmbient" - > -Reguluje kolor i intensywność rozproszonego Å›wiatÅ‚a atmosferycznego w scenie. - </notification> +PoÅ‚Ä…czyć posiadÅ‚oÅ›ci? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ShowOwnersHelp"> + Pokaż wÅ‚aÅ›cicieli: +Pokoloruj posiadÅ‚oÅ›ci zgodnie z przynależnoÅ›ciÄ… do wÅ‚aÅ›ciciela + +Zielony = Twoja PosiadÅ‚ość +Morski = PosiadÅ‚ość Twojej Grupy +Czerwony = PosiadÅ‚oÅ›ci Innych +Żółty = Na Sprzedaż +Fioletowy = Na AukcjÄ™ +Szary = Publiczna + </notification> + <notification name="ConfirmNotecardSave"> + Ta notka musi być zapisana żeby mogÅ‚a być skopiowana lub zobaczona. Zapisać notkÄ™? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmItemCopy"> + Skopiować ten obiekt do Twojej szafy? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Skopiuj"/> + </notification> + <notification name="ResolutionSwitchFail"> + Zmiana rozdzielczoÅ›ci do [RESX] x [RESY] nie powidÅ‚a siÄ™ + </notification> + <notification name="ErrorUndefinedGrasses"> + BÅ‚Ä…d: Niezdefiniowane trawy: [SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + BÅ‚ad: Niezdefiniowane drzewa: [SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + Nie można zapisać '[NAME]' do pliku stroju. Musisz zwolnić trochÄ™ miejsca na Twoim komputerze i zapisać strój jeszcze raz. + </notification> + <notification name="CannotSaveToAssetStore"> + Nie można zapisać [NAME] w centralnym zbiorze danych. Zazwyczaj jest to tymczasowy problem. Możesz kontynuować modyfikacje i zapisać strój ponownie za kilka minut. - <notification - - name="HelpSunGlow" - > -Suwak Rozmiar kontroluje wielkość sÅ‚oÅ„ca. -Suwak Ostrość kontroluje ostrość sÅ‚oÅ„ca na niebie. - </notification> +Jeżeli wciąż masz ten problem, wybierz Pomoc > ZgÅ‚oÅ› BÅ‚Ä™dy Klienta i podaj szczegóły dotyczÄ…ce konfiguracji sieci. + </notification> + <notification name="YouHaveBeenLoggedOut"> + Twoja sesja [SECOND_LIFE] zostaÅ‚a zakoÅ„czona: +[MESSAGE] - <notification - - name="HelpSceneGamma" - > -Reguluje dystrybucjÄ™ Å›wiatÅ‚a i cienia na ekranie. - </notification> +Kliknij Kontynuuj żeby zobaczyć IMy i czat. +Å»adne inne operacje nie bÄ™dÄ… dozwolone. Kliknij WyÅ‚Ä…cz w celu natychmiastowego opuszczenia [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="WyÅ‚Ä…cz" yestext="Kontynuuj"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + Nie możesz kupić posiadÅ‚oÅ›ci dla grupy. +Nie masz praw kupowania posiadÅ‚oÅ›ci dla Twojej aktywnej grupy. + </notification> + <notification label="Dodaj Znajomość" name="AddFriend"> + Znajomi mogÄ… pozwalać na odnajdywanie siÄ™ wzajemnie na mapie i na otrzymywanie notyfikacji o logowaniu do [SECOND_LIFE]. - <notification - - name="HelpStarBrightness" - > -Reguluje blask gwiazd na niebie. - </notification> +Zaproponować znajomość [NAME]? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification label="Add Friend" name="AddFriendWithMessage"> + Znajomi mogÄ… pozwalać na odnajdywanie siÄ™ wzajemnie na mapie i na otrzymywanie notyfikacji o logowaniu do [SECOND_LIFE]. - <notification - - name="HelpTimeOfDay" - > -Kontroluje pozycjÄ™ sÅ‚oÅ„ca na niebie. -Zbliżone do wysokoÅ›ci. - </notification> +Zaproponować znajomość [NAME]? + <form name="form"> + <input name="message" type="text"> + Chcesz zawrzeć znajomość? + </input> + <button name="Offer" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + Chcesz usunąć [FIRST_NAME] [LAST_NAME] z listy Twoich znajomych? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + Chcesz usunąć grupÄ™ osób z listy Twoich znajomych? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + Na pewno chcesz usunąć wszystkie skryptowane obiekty należące do +** [AVATAR_NAME] ** +z posiadÅ‚oÅ›ci innych w tym symulatorze? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + Na pewno chcesz usunąć wszystkie skryptowane obiekty należące do +** [AVATAR_NAME] ** +ze wszystkich posiadÅ‚oÅ›ci w tym symulatorze? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + Na pewno chcesz usunąć wszystkie obiekty (skryptowane i nie) należące do +** [AVATAR_NAME] ** +ze wszystkich posiadÅ‚oÅ›ci w tym symulatorze? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BlankClassifiedName"> + Musisz nadać tytuÅ‚ Twojej reklamie. + </notification> + <notification name="MinClassifiedPrice"> + Minimalna cena za publikacjÄ™ wynosi [MIN_PRICE]L$. - <notification - - name="HelpEastAngle" - > -Kontroluje pozycjÄ™ sÅ‚oÅ„ca na niebie. -Zbliżone do azymutu. - </notification> +Wybierz wyższÄ… cenÄ™. + </notification> + <notification name="ConfirmObjectDeleteLock"> + Przynajmnie jeden z wybranych obiektów jest zablokowany. - <notification - - name="HelpCloudColor" - > -Kontroluje kolor chmur. Generalnie powinny być biaÅ‚awe, ale hej, pobaw siÄ™ jeżeli masz ochotÄ™. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + Przynajmniej jeden z wybranych obiektów jest niekopiowalny. - <notification - - name="HelpCloudDetail" - > -Kontroluje szczegółowy obraz naÅ‚ożony na górÄ™ głównego obrazu chmur. X i Y kontrolujÄ… jego pozycjÄ™. G (GÄ™stość) kontroluje jak puchate lub postrzÄ™pione sÄ… chmury. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - <notification - - name="HelpCloudDensity" - > -Suwaki X i Y kontrolujÄ… pozycjÄ™ chmur. -Suwak G (GÄ™stość) kontroluje gÄ™stość chmur. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + Przynajmnie jeden z wybranych obiektów jest zablokowany. +Przynajmniej jeden z wybranych obiektów jest niekopiwalny. - <notification - - name="HelpCloudCoverage" - > -Kontroluje ilość chmur pokrywajÄ…cych niebo. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + Przynajmnie jeden z wybranych obiektów jest zablokowany. +Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - <notification - - name="HelpCloudScale" - > -Kontroluje skalÄ™ obrazu chmur na kopule nieba. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + Przynajmniej jeden z wybranych obiektów jest niekopiowalny. +Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - <notification - - name="HelpCloudScrollX" - > -Kontroluje prÄ™dkość przemieszczania chmur wzdÅ‚uż osi X. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + Przynajmnie jeden z wybranych obiektów jest zablokowany. +Przynajmniej jeden z wybranych obiektów jest niekopiwalny. +Przynajmniej jeden z wybranych obiektów nie należy do Ciebie. - <notification - - name="HelpCloudScrollY" - > -Kontroluje prÄ™dkość przemieszczania chmur wzdÅ‚uż osi Y. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + Przynajmnie jeden obiekt jest zablokowany. - <notification - - name="HelpClassicClouds" - > -Wybierz tÄ… opcjÄ™ w celu używania dodatkowo starszej, klasycznej wersji chmur Second Life. - </notification> +Na pewno chcesz usunąć te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + Przynajmniej jeden obiekt nie należy do Ciebie. +Jeżeli bÄ™dziesz kontynuować prawa nastÄ™pnego wÅ‚aÅ›ciciela zostanÄ… przypisane co, potencjalnie, może ograniczyć Twoje prawa do modyfikacji lub kopiowania obiektów. - <notification - - name="HelpWaterFogColor" - > -Kontroluje kolor podwodnej mgÅ‚y. - </notification> +Na pewno chcesz wziąść te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + Przynajmnie jeden obiekt jest zablokowany. +Przynajmniej jeden obiekt nie należy do Ciebie. +Jeżeli bÄ™dziesz kontynuować prawa nastÄ™pnego wÅ‚aÅ›ciciela zostanÄ… przypisane co, potencjalnie, może ograniczyć Twoje prawa do modyfikacji lub kopiowania obiektów. - <notification - - name="HelpWaterFogDensity" - > -Kontroluje gÄ™stość mgÅ‚y i gÅ‚Ä™bie wizji pod wodÄ…. - </notification> +Na pewno chcesz wziąść te obiekty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + Nie możesz kupić posiadÅ‚oÅ›ci ponieważ wybrany obszar przekracza granicÄ™ regionów. - <notification - - name="HelpUnderWaterFogMod" - > -Modyfikuje wpÅ‚yw wykÅ‚adnika gÄ™stoÅ›ci mgÅ‚y na gÅ‚Ä™bie wizji awatara pod wodÄ…. - </notification> +Wybierz mniejszy obszar i spróbuj jeszcze raz. + </notification> + <notification name="DeedLandToGroup"> + Po przekazaniu tej posiadÅ‚oÅ›ci grupa bÄ™dzia musiaÅ‚a mieć i utrzymywać wystarczajÄ…cy kredyt na używanie posiadÅ‚oÅ›ci. Cena zakupu posiadÅ‚oÅ›ci nie jest zwracana wÅ‚aÅ›cicielowi. Jeżeli przekazana posiadÅ‚ość zostanie sprzedana, cana sprzedaży zostanie podzielona pomiÄ™dzy czÅ‚onków grupy. - <notification - - name="HelpWaterGlow" - > -Kontroluje emisjÄ™ Å›wiatÅ‚a z powierzchni wody. - </notification> +Przekazać tÄ… posiadÅ‚ość o powierzchni [AREA] m² grupie '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + Po przekazaniu tej posiadÅ‚oÅ›ci grupa bÄ™dzia musiaÅ‚a mieć i utrzymywać wystarczajÄ…cy kredyt na używanie posiadÅ‚oÅ›ci. Przekazanie bÄ™dzie zawierać równoczesne przypisanie posiadÅ‚oÅ›ci do grupy od '[FIRST_NAME] [LAST_NAME]'. +Cena zakupu posiadÅ‚oÅ›ci nie jest zwracana wÅ‚aÅ›cicielowi. Jeżeli przekazana posiadÅ‚ość zostanie sprzedana, cana sprzedaży zostanie podzielona pomiÄ™dzy czÅ‚onków grupy. - <notification - - name="HelpWaterNormalScale" - > -Kontroluje skalÄ™ trzech zmarszczeÅ„ które tworzÄ… wodÄ™. - </notification> +Przekazać tÄ… posiadÅ‚ość o powierzchni [AREA] m² grupie '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="DisplaySetToSafe"> + Ustawienia grafiki zostaÅ‚y zmienione do bezpiecznego poziomu ponieważ opcja -safe zostaÅ‚a wybrana. + </notification> + <notification name="DisplaySetToRecommended"> + Ustawienia grafiki zostaÅ‚y zmienione do zalecanego poziomu na podstawie konfiguracji Twojego systemu. + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + Twoje miejsce [TYPE] jest obecnie niedostÄ™pne. [HELP] +Przeniesiono CiÄ™ do pobliskiego regionu. + </notification> + <notification name="ClothingLoading"> + Twoje ubranie wciąż siÄ™ Å‚aduje. +Możesz normalnie używać [SECOND_LIFE], inni użytkownicy bÄ™dÄ… CiÄ™ widzieli poprawnie. + <form name="form"> + <ignore name="ignore" text="Åadowanie ubrania zajmuje dużo czasu"/> + </form> + </notification> + <notification name="FirstRun"> + Instalacja [SECOND_LIFE] zakoÅ„czona. - <notification - - name="HelpWaterFresnelScale" - > -Kontroluje jak dużo Å›wiatÅ‚a jest odbijane pod różnymi kÄ…tami. - </notification> +Jeżeli używasz [SECOND_LIFE] po raz pierwszy to musisz stworzyć konto żeby móc siÄ™ zalogować. +Przejść na stronÄ™ www.secondlife.com żeby stworzyć nowe konto? + <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="Nowe Konto..."/> + </notification> + <notification name="LoginPacketNeverReceived"> + Problemy z poÅ‚Ä…czeniem. Problem może być spowodowany Twoim poÅ‚Ä…czeniem z Internetem albo może istnieć po stronie serwerów Second Life. - <notification - - name="HelpWaterFresnelOffset" - > -Kontroluje jak dużo intensywnoÅ›ci Å›wiatÅ‚a jest odbijane. - </notification> +Możesz sprawdzić swoje poÅ‚Ä…czenie z Internetem i spróbować ponownie za kilka minut albo kliknij Pomoc żeby poÅ‚Ä…czyć siÄ™ ze stronÄ… pomocy technicznej albo wybierz Teleportuj żeby spróbować teleportacji do Twojego miejsca startu. + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="Pomoc"/> + <button name="Teleport" text="Teleportuj"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + Twoja postać pojawi siÄ™ za moment. - <notification - - name="HelpWaterScaleAbove" - > -Kontroluje jak dużo Å›wiatÅ‚a odbija siÄ™ od górnej powierzchni wody. - </notification> +Używaj strzaÅ‚ek żeby sie poruszać. +NaciÅ›nij F1 w dowolnej chwili po pomoc albo żeby dowiedzieć siÄ™ wiÄ™cej o [SECOND_LIFE]. +Wybierz awatara wÅ‚aÅ›ciwej pÅ‚ci. +Ten wybór bÄ™dzie można później zmienić. + <usetemplate name="okcancelbuttons" notext="Kobieta" yestext="Mężczyzna"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] [PRICE]L$ Masz za maÅ‚o L$. + </notification> + <notification name="GrantedModifyRights"> + Masz teraz prawa modyfikacji obiektów należących do [FIRST_NAME] [LAST_NAME]. + </notification> + <notification name="RevokedModifyRights"> + Prawa modyfikacji obiektów należących do [FIRST_NAME] [LAST_NAME] zostaÅ‚y Ci odebrane. + </notification> + <notification name="FlushMapVisibilityCaches"> + To spowoduje wyczyszczenie buforów map regionu. +Jest to użyteczne wyÅ‚Ä…cznie podczas szukania bÅ‚Ä™dów. +(Podczas produkcji poczekaj 5 minut i mapy wszystkich zostanÄ… uaktualnione po relogu.) + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + Nie możesz zakupić wiÄ™cej niż jednego obiektu w tym samym czasie. ProszÄ™ wybrać tylko jeden obiekt i spróbować ponowanie. + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + Nie można kopiować zawartoÅ›ci wiÄ™cej niż jednego obiektu naraz. +Wybierz pojedynczy obiekt i spróbuj jeszcze raz. + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + Teleportować wszystkich Rezydentów z tego regionu to ich miejsca startu? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + Na pewno chcesz odesÅ‚ać wszystkie obiekty należące do +[USER_NAME] ? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + Nie można ustawić tekstur regionu: +Tekstura terenu [TEXTURE_NUM] ma niewÅ‚aÅ›ciwÄ… gÅ‚Ä™biÄ™ koloru - [TEXTURE_BIT_DEPTH]. +ZamieÅ„ teksturÄ™ [TEXTURE_NUM] na 24-o bitowÄ… teksturÄ™ o wymiarze 512x512 lub mniejszÄ… i ponownie kliknij Zastosuj. + </notification> + <notification name="InvalidTerrainSize"> + Nie można ustawić tekstur regionu: +Tekstura terenu [TEXTURE_NUM] jest za duża - [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. +ZamieÅ„ teksturÄ™ [TEXTURE_NUM] na 24-o bitowÄ… teksturÄ™ o wymiarze 512x512 lub mniejszÄ… i ponownie kliknij Zastosuj. + </notification> + <notification name="RawUploadStarted"> + Åadowanie rozpoczÄ™te. Może potrwać do dwóch minut zależnie od prÄ™dkoÅ›ci Twojego poÅ‚Ä…czenia. + </notification> + <notification name="ConfirmBakeTerrain"> + Na pewno chcesz zapisać obecne uksztaÅ‚towanie terenu jako punkt odniesienia dla górnego i dolnego limitu terenu i jako domyÅ›lÄ… wartość dla opcji Odtwórz? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + Maksymalna liczba goÅ›ci wynosi [MAX_AGENTS]. + </notification> + <notification name="MaxBannedAgentsOnRegion"> + Maksymalna liczba nieporzÄ…danych Rezydentów (banów) wynosi [MAX_BANNED]. + </notification> + <notification name="MaxAgentOnRegionBatch"> + Próba dodania [NUM_ADDED] osób nie powidÅ‚a siÄ™: +[MAX_AGENTS] [LIST_TYPE] limit przekroczony o [NUM_EXCESS]. + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + Możesz mieć maksymalnie [MAX_GROUPS] Dozwolonych Grup. + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Ustal"/> + </notification> + <notification name="MaxManagersOnRegion"> + Możesz mieć maksymalnie [MAX_MANAGER] ZarzÄ…dców MajÄ…tku. + </notification> + <notification name="OwnerCanNotBeDenied"> + Nie możesz dodać wÅ‚aÅ›ciciela majÄ…tku do listy 'NieporzÄ…danych Rezydentów (banów)' majÄ…tku. + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + Nie możesz zmienić wyglÄ…du podczas Å‚adowania ubraÅ„ i ksztaÅ‚tów. + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + TytuÅ‚ Twojej reklamy musi zaczynać siÄ™ od litery (A-Z) albo cyfry. Znaki przestankowe sÄ… niedozwolone. + </notification> + <notification name="CantSetBuyObject"> + Nie możesz wybrać Kup Obiekt ponieważ obiekt nie jest na sprzedaż. +Wybierz obiekt na sprzedaż i spróbuj jeszcze raz. + </notification> + <notification name="FinishedRawDownload"> + Plik surowego terenu zaÅ‚adowany pod: +[DOWNLOAD_PATH]. + </notification> + <notification name="DownloadWindowsMandatory"> + Nowa wersja [SECOND_LIFE] zostaÅ‚a opublikowana. +[MESSAGE] +Musisz zainstalować nowÄ… wersjÄ™ żeby używać [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="WyÅ‚Ä…cz program" yestext="ZaÅ‚aduj"/> + </notification> + <notification name="DownloadWindows"> + Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. +[MESSAGE] +Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. + <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="ZaÅ‚aduj"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. +[MESSAGE] +Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. + <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="ZaÅ‚aduj"/> + </notification> + <notification name="DownloadMacMandatory"> + Nowa wersja [SECOND_LIFE] zostaÅ‚a opublikowana. +[MESSAGE] +Musisz zainstalować nowÄ… wersjÄ™ żeby używać [SECOND_LIFE]. - <notification - - name="HelpWaterScaleBelow" - > -Kontroluje jak dużo Å›wiatÅ‚a odbija siÄ™ od dolnej powierzchni wody. - </notification> +ZaÅ‚adować do foldera Aplikacji? + <usetemplate name="okcancelbuttons" notext="WyÅ‚Ä…cz program" yestext="ZaÅ‚aduj"/> + </notification> + <notification name="DownloadMac"> + Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. +[MESSAGE] +Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. - <notification - - name="HelpWaterBlurMultiplier" - > -Kontroluje jak fale i odbicia sÄ… mieszane. - </notification> +ZaÅ‚adować do foldera Aplikacji? + <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="ZaÅ‚aduj"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + Uaktualniona wersja [SECOND_LIFE] zostaÅ‚a opublikowana. +[MESSAGE] +Aktualizacja nie jest wymagana ale jest zalecana w celu poprawy prÄ™dkoÅ›ci i stabilnoÅ›ci. - <notification - - name="HelpWaterNormalMap" - > -Kontroluje która mapa normalnych jest używana w wodzie do okreÅ›lania odbić/zaÅ‚amaÅ„. - </notification> +ZaÅ‚adować do foldera Aplikacji? + <usetemplate name="okcancelbuttons" notext="Kontynuuj" yestext="ZaÅ‚aduj"/> + </notification> + <notification name="DeedObjectToGroup"> + Przekazanie tego obiektu spowoduje, że grupa: +* Otrzyma L$ zapÅ‚acone temu obiektowi + <usetemplate ignoretext="PrzekazujÄ…c obiekty grupom" name="okcancelignore" notext="Anuluj" yestext="Przekaż"/> + </notification> + <notification name="WebLaunchExternalTarget"> + Otworzyć systemowÄ… przegÅ‚Ä…darke żeby zobaczyć tÄ… zawartość? + <usetemplate ignoretext="OtwierajÄ…c systemowÄ… przeglÄ…darkÄ™ żeby zobaczyć stronÄ™" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchJoinNow"> + Otworzyć stronÄ™ www.secondlife.com żeby zarzÄ…dzać Twoim kontem? + <usetemplate ignoretext="OtwierajÄ…c systemowÄ… przeglÄ…darkÄ™ żeby zarzÄ…dzać Twoim kontem" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchBugReport101"> + Odwiedź [SECOND_LIFE] Wiki i zobacz jak zgÅ‚aszać bÅ‚Ä™dy. + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki zgÅ‚aszania bÅ‚Ä™dów" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchSecurityIssues"> + Odwiedź [SECOND_LIFE] Wiki i zobacz jak zgÅ‚aszać problemy z bezpieczeÅ„stwem danych. + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki kwestii bezpieczeÅ„stwa danych" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchQAWiki"> + Odwiedź [SECOND_LIFE] Wiki pytaÅ„ i odpowiedzi. + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki pytaÅ„ i odpowiedzi" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssue"> + Odwiedź [SECOND_LIFE] katalog publicznych problemów, gdzie możesz zgÅ‚aszać bÅ‚Ä™dy i inne problemy. + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć katalog publicznych problemów" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssueHelp"> + Odwiedź [SECOND_LIFE] Wiki i sprawdź jak używać katalogu publicznych problemów. + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć Wiki katalogu publicznych problemów" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchSupportWiki"> + Otwórz oficjalny blog Lindenów żeby zobaczyć nowe wiadomoÅ›ci i informacje. + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć blog" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLGuide"> + Otworzyć przewodnik skryptowania po pomoc ze skryptami? + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć przewodnik skryptowania" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="WebLaunchLSLWiki"> + Otworzyć portal LSL po pomoc ze skryptami? + <usetemplate ignoretext="OtwierajÄ…c przeglÄ…darkÄ™ żeby zobaczyć portal LSL" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ReturnToOwner"> + Czy na pewno chcesz zwrócić wybrane obiekty do ich wÅ‚aÅ›cicieli? Wszystkie udostÄ™pnione obiekty z prawem transferu zostanÄ… zwrócone poprzednim wÅ‚aÅ›cicielom. - <notification - - name="HelpWaterWave1" - > -Kontroluje gdzie i jak szybko duża wersja mapy normalnych przemieszcza siÄ™ wzdÅ‚uż osi X i Y. - </notification> +*UWAGA* Wszystkie udostÄ™pnione obiekty bez prawa transferu zostanÄ… usuniÄ™te! + <usetemplate ignoretext="ZwracajÄ…c obiekty ich wÅ‚aÅ›cicielom" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="GroupLeaveConfirmMember"> + JesteÅ› czÅ‚onkiem grupy [GROUP]. +Chcesz opuÅ›cić grupÄ™? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmKick"> + NA PEWNO chcesz wyrzucić wszystkich użytkowników z sieci? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Wyrzuć Wszystkich Użytkowników"/> + </notification> + <notification name="MuteLinden"> + Przepraszamy, ale nie możesz wyciszyć Lindena. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + Aukcja nie może zostać rozpoczÄ™ta w posiadÅ‚oÅ›ci, która zostaÅ‚a już wczeÅ›niej wystawiona na aukcjÄ™. Deaktywuj opcjÄ™ sprzedaży posiadÅ‚oÅ›ci jeżeli chcesz rozpocząć aukcjÄ™. + </notification> + <notification label="BÅ‚Ä…d Wyciszenia Obiektu Przez NazwÄ™" name="MuteByNameFailed"> + Ta osoba zostaÅ‚a już wyciszona przez Ciebie. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + Pomimo, że jest to dozwolone, usuniÄ™cie zawartoÅ›ci może zniszczyć obiekt. Chcesz usunąć? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="CantOfferCallingCard"> + Nie możesz dać wizytówki w tym momencie. Spróbuj jeszcze raz za chwilÄ™. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + Nie możesz zaoferować znajomoÅ›ci w tym momencie. Spróbuj jeszcze raz za chwilÄ™. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="BusyModeSet"> + Tryb Pracy jest wÅ‚Ä…czony. +Czat i IMy bedÄ… ukryte. WysÅ‚ane IMy bÄ™dÄ… otrzymywaÅ‚y TwojÄ… odpowiedź Trybu Pracy. Propozycje teleportacji bÄ™dÄ… odrzucone. +Dodatkowo, wszystkie podarowane dla Ciebie obiekty bÄ™dÄ… automatycznie zapisywane w folderze "Kosz" w Twojej szafie. + <usetemplate ignoretext="WÅ‚Ä…czajÄ…c Tryb Pracy" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + Należysz już do maksymalnej iloÅ›ci grup. +Musisz opuÅ›cić przynajmniej jednÄ… grupÄ™ żeby przyjąć czÅ‚onkostwo w tej grupie, albo musisz odmówić. W celu opuszczenia grupy wybierz opcjÄ™ 'Grupy...' z menu 'Edycja'. +[NAME] oferuje Ci czÅ‚onkostwo w grupie. +[INVITE] + <usetemplate name="okcancelbuttons" notext="Odmów" yestext="Przyjmij"/> + </notification> + <notification name="KickUser"> + Z jakim komunikatem wyrzucić tego użytkownia? + <form name="form"> + <input name="message" type="text"> + Administrator wylogowaÅ‚ CiÄ™. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="KickAllUsers"> + Z jakim komunikatem wyrzucić wszystkich użytkowników z regionu? + <form name="form"> + <input name="message" type="text"> + Administrator wylogowaÅ‚ CiÄ™. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="FreezeUser"> + Z jakim komunikatem unieruchomić tego użytkownia? + <form name="form"> + <input name="message" type="text"> + Unieruchomiono CiÄ™. Nie możesz siÄ™ ruszać ani rozmawiać. Administrator skontaktuje siÄ™ z TobÄ… poprzez IM. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="UnFreezeUser"> + Z jakim komunikatem odblokować tego użytkownia? + <form name="form"> + <input name="message" type="text"> + Odblokowano CiÄ™. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="OfferTeleport"> + Zaproponować teleportacjÄ™ do miejsca Twojego pobytu z tÄ… wiadomoÅ›ciÄ…? + <form name="form"> + <input name="message" type="text"> + Zapraszam do siebie. Region: [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + Wymusić przeniesienie użytkownika do miejsca Twojego pobytu? + <form name="form"> + <input name="message" type="text"> + Zapraszam do siebie. Region: [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + Na pewno chcesz siÄ™ teleportować? + <usetemplate ignoretext="TeleportujÄ…c z miejsca (LM) z Twojej szafy" name="okcancelignore" notext="Anuluj" yestext="Teleportuj"/> + </notification> + <notification label="Wiadomość do Wszystkich w Twoim MajÄ…tku" name="MessageEstate"> + Wpisz krótkÄ… wiadomość która zostanie wysÅ‚ana do wszystkich osób w Twoim majÄ…tku. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification label="Zmiana MajÄ…tku Lindenów" name="ChangeLindenEstate"> + Dokonujesz zmiany w Regionie Głównym należącym do Lindenów (Regiony Główne, Teen Grid, Orientacja). + +Żądana operacja jest wyjÄ…tkowo niebezpieczna dla wszystkich Rezydentów przebywajÄ…cych w regionie. Dodatkowo, zmiany dokonane w Regionie Głównym mogÄ… spowodować problemy przestrzeni serwerowej innych regionów. - <notification - - name="HelpWaterWave2" - > -Kontroluje gdzie i jak szybko maÅ‚a wersja mapy normalnych przemieszcza siÄ™ wzdÅ‚uż osi X i Y. - </notification> +Kontynuować? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification label="Zmiana DostÄ™pu do MajÄ…tku Lindenów" name="ChangeLindenAccess"> + Dokonujesz zmiany w liÅ›cie dostÄ™pu Regionu Głównego należącego do Lindenów (Regiony Główne, Teen Grid, Orientacja). - <notification - - name="NewSkyPreset" - > -Nazwij nowe niebo. - <form name="form"> - <input name="message" type="text"> -Nowe Ustawienie - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> +Żądana operacja jest wyjÄ…tkowo niebezpieczna dla wszystkich Rezydentów przebywajÄ…cych w regionie i powinna być używana wyÅ‚Ä…cznie w celu zablokowania opcji pozwalajÄ…cej na przeniesienie obiektów/L$ do/z sieci. +Dodatkowo, zmiany dokonane w Regionie Głównym mogÄ… spowodować problemy przestrzeni serwerowej innych regionów. - <notification - - name="ExistsSkyPresetAlert" - > -Ustawienie już istnieje! - </notification> +Kontynuować? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateAllowedAgentAdd"> + Dodać do listy dostÄ™pu do tego majÄ…tku czy do [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateAllowedAgentRemove"> + Usunąć z listy dostÄ™pu do tego majÄ…tku czy do [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateAllowedGroupAdd"> + Dodać do listy dostÄ™pu grup do tego majÄ…tku czy do [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateAllowedGroupRemove"> + Usunąć z listy dostÄ™pu grup do tego majÄ…tku czy do [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateBannedAgentAdd"> + Zablokować dostÄ™p do tego majÄ…tku czy do [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateBannedAgentRemove"> + Zdjąć tego Rezydenta z listy niepożądanych (bany) dla tego majÄ…tku czy dla [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateManagerAdd"> + Dodać zarzÄ…dce majÄ…tku do tego majÄ…tku czy do [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Wybierz MajÄ…tek" name="EstateManagerRemove"> + Usunąć zarzÄ…dce majÄ…tku z tego majÄ…tku czy z [ALL_ESTATES]? + <usetemplate canceltext="Anuluj" name="yesnocancelbuttons" notext="Wszystkie majÄ…tki" yestext="Ten majÄ…tek"/> + </notification> + <notification label="Potwierdź Wyrzucenie" name="EstateKickUser"> + Wyrzucić [EVIL_USER] z tego majÄ…tku? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="EstateChangeCovenant"> + Na pewno chcesz zminić treść umowy dla tego majÄ…tku? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. Może być to wynikiem braku informacji na temat weryfikacji Twojego wieku. + +Upewnij siÄ™, że masz zainstalowanÄ… najnowszÄ… wersjÄ™ klienta i skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. + <usetemplate + name="okbutton" + yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. - <notification - - name="NewWaterPreset" - > -Nazwij nowe ustawienie wody. - <form name="form"> - <input name="message" type="text"> -Nowe Ustawienie - </input> +Skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Second Life:Pomoc" + notext="Zamknij" + ignoretext="DostÄ™p do posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na rodzaj treÅ›ci jakÄ… zawiera"/> + </notification> + <notification name="RegionEntryAccessBlocked_Notify"> + Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie jesteÅ› uprawniony do przebywania w tym regionie. + +Możeszy wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do regionu. Wówczas bÄ™dziesz w stanie znaleźć oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Edycja > Ustawienia... > Główne. + <form name="form"> <button - - name="OK" - text="OK"/> + text="ZmieÅ„ Ustawienia"/> <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="ExistsWaterPresetAlert" - > -Ustawienie już istnieje! - </notification> - - <notification - - name="WaterNoEditDefault" - > -DomyÅ›le ustawienie nie może być zmienione ani usuniÄ™te. - </notification> + default="true" + name="Cancel" + text="Zamknij"/> + <ignore name="ignore" text="DostÄ™p do posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na ustawienia rodzaju treÅ›ci jakÄ… zawiera"/> + </form> + </notification> + <notification name="LandClaimAccessBlocked"> + W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz odzyskać tej posiadÅ‚oÅ›ci. Możesz potrzebować weryfikacji wieku bÄ…dź instalacji najnowszej wersji klienta. - <notification - - name="ChatterBoxSessionStartError" - > -BÅ‚Ä…d podczas rozpoczynania czatu/IM z [RECIPIENT]. -[REASON] +Upewnij siÄ™, że masz zainstalowanÄ… najnowszÄ… wersjÄ™ klienta i skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + Ze wzglÄ™du na Twój wiek, nie możesz odzyskać tej posiadÅ‚oÅ›ci. - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] -[REASON] +Skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> <usetemplate - name="okbutton" - yestext="OK"/> - </notification> + name="okcancelignore" + yestext="Second Life:Pomoc" + notext="Zamknij" + ignoretext="Odzyskanie posiadÅ‚oÅ›ci jest zablokowane ze wzglÄ™du na rodzaj treÅ›ci jakÄ… zwiera"/> + </notification> + <notification name="LandClaimAccessBlocked_Notify"> + Ze wzglÄ™du na Twój wiek, nie możesz odzyskać tej posiadÅ‚oÅ›ci. + </notification> + <notification name="LandClaimAccessBlocked_Change"> + W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz odzyskać tej posiadÅ‚oÅ›ci. + +Możeszy wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do posiadÅ‚oÅ›ci. Wówczas bÄ™dziesz w stanie znaleźć, oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Edycja > Ustawienia... > Główne. + <usetemplate + name="okcancelignore" + yestext="ZmieÅ„ Ustawienia" + notext="Zamknij" + ignoretext="Odzyskanie posiadÅ‚oÅ›ci jest zablokowane ze wzglÄ™du na ustawienia rodzaju treÅ›ci jakÄ… zawiera"/> + </notification> + <notification name="LandBuyAccessBlocked"> + Ze wzglÄ™du na Twój wiek, nie możesz kupić tej posiadÅ‚oÅ›ci. Może być to wynikiem braku informacji na temat weryfikacji Twojego wieku. - <notification - - name="ForceCloseChatterBoxSession" - > -Twój czat/IM z [NAME] zostanie zamkniÄ™ty. -[REASON] +Upewnij siÄ™, że masz zainstalowanÄ… najnowszÄ… wersjÄ™ klienta i skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="Cannot_Purchase_an_Attachment" - > -Rzeczy nie mogÄ… być kupione jeżeli - sÄ… częściÄ… zaÅ‚Ä…cznika. - </notification> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + Ze wzglÄ™du na Twój wiek, nie możesz kupić tej posiadÅ‚oÅ›ci. - <notification - - label="ProÅ›ba o ZgodÄ™ na Pobieranie L$" - name="DebitPermissionDetails" - > -AkceptujÄ…c tÄ… proÅ›bÄ™ wyrażasz zgodÄ™ na ciÄ…gÅ‚e pobieranie Lindenów (L$) z Twojego konta. Å»eby cofnąć to pozwolenie wÅ‚aÅ›ciciel obiektu bÄ™dzie musiaÅ‚ usunąć ten obiekt albo zresetowć skrypty obieku. +Skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Second Life:Pomoc" + notext="Zamknij" + ignoretext="Zakup posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na rodzaj treÅ›ci jakÄ… zawiera"/> + </notification> + <notification name="LandBuyAccessBlocked_Notify"> + Ze wzglÄ™du na Twój wiek, nie możesz kupić tej posiadÅ‚oÅ›ci. + </notification> + <notification name="LandBuyAccessBlocked_Change"> + W zwiÄ…zku ze statusem ustawieÅ„ Twojego wieku, nie możesz kupić tej posiadÅ‚oÅ›ci. + +Możesz wybrać 'ZmieÅ„ Ustawienia' by dokonać zmian w ustawieniach Twojego wieku by uzyskać dostÄ™p do posiadÅ‚oÅ›ci. Wówczas bÄ™dziesz w stanie znaleźć oraz mieć dostÄ™p do [REGIONMATURITY] treÅ›ci. Jeżeli zdecydujesz siÄ™ na powrót do poprzednich ustawieÅ„, wybierz Edycja > Ustawienia... > Główne. + <usetemplate + name="okcancelignore" + yestext="ZmieÅ„ Ustawienia" + notext="Zamknij" + ignoretext="Zakup posiadÅ‚oÅ›ci jest zablokowany ze wzglÄ™du na ustawienia rodzaju treÅ›ci jakÄ… zawiera"/> + </notification> + <notification name="ProblemImportingEstateCovenant"> + Problem z importem umowy majÄ…tku. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + Problemy z dodawaniem nowego zarzÄ…dcy majÄ…tku. Jeden lub wiÄ™caj majÄ…tk może mieć wypeÅ‚nionÄ… listÄ™ zarzÄ…dców. + </notification> + <notification name="ProblemAddingEstateGeneric"> + Problemy z dodawaniem do listy majÄ…tku. Jeden lub wiÄ™caj majÄ…tk może mieć wypeÅ‚nionÄ… listÄ™. + </notification> + <notification name="UnableToLoadNotecardAsset"> + Brak możliwoÅ›ci zaÅ‚adowania noty w tej chwili. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="NotAllowedToViewNotecard"> + NiewystarczajÄ…ce prawa do zobaczenia notki przypisanej do wybranego ID. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + ID notki nie znalezione w bazie danych. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + PamiÄ™taj: OpÅ‚aty za reklamÄ™ sÄ… bezzwrotne. - <notification - - name="AutoWearNewClothing" - > -Czy chcesz automatycznie nosić ubranie które tworzysz? +ZamieÅ›cić tÄ… reklamÄ™ za [AMOUNT]L$? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="SetClassifiedMature"> + Czy ta reklama zawiera treść 'Mature'? <usetemplate - ignoretext="Automatycznie noÅ› nowe ubranie" - name="okcancelignore" + canceltext="Anuluj" + name="yesnocancelbuttons" notext="Nie" yestext="Tak"/> - </notification> - - <notification - - name="NotAgeVerified" - > -Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak weryfikacji Twojego wieku. -Czy chcesz odwiedzić stronÄ™ Second Life żeby to zmienić? - -[_URL] - <url option="0" name="url"> - - https://secondlife.com/account/verification.php - </url> + </notification> + <notification name="SetGroupMature"> + Czy ta grupa zawiera treść 'Mature'? <usetemplate - ignoretext="Ostrzegaj o braku weryfikacji wieku" - name="okcancelignore" + canceltext="Anuluj" + name="yesnocancelbuttons" notext="Nie" yestext="Tak"/> - </notification> - - <notification - - name="Cannot enter parcel: no payment info on file" - > -Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak danych o Twoim koncie. -Czy chcesz odwiedzić stronÄ™ Second Life żeby to zmienić? - -[_URL] - <url option="0" name="url"> + </notification> + <notification label="Potwierdź Restart" name="ConfirmRestart"> + Na pewno chcesz zrobić restart tego regionu za 2 minuty? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification label="Wiadomość do Wszystkich w tym Regionie" name="MessageRegion"> + Wpisz krótkÄ… wiadomość która zostanie wysÅ‚ana do wszystkich osób w tym regionie. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification label="Blokowanie KsztaÅ‚towania Terenu" name="HelpRegionBlockTerraform"> + Jeżeli ta opcja jest wybrana wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci nie bÄ™dÄ… mogli ksztaÅ‚tować terenu niezależnie od ustawienia opcji 'Edycja Terenu' dla posiadÅ‚oÅ›ci. - https://secondlife.com/account/ - </url> - <usetemplate - ignoretext="Ostrzegaj o braku danych konta" - name="okcancelignore" - notext="Nie" - yestext="Tak"/> - </notification> +DomyÅ›lnie: nie wybrana + </notification> + <notification label="Blokowanie Latania" name="HelpRegionBlockFly"> + Jeżeli ta opcja jest wybrana ludzie nie bÄ™dÄ… mogli latać w tym regionie niezależnie od ustawienia opcji 'Latanie' dla posiadÅ‚oÅ›ci. - <notification - - name="MissingString" - > -Zdanie [STRING_NAME] nie znalezione w strings.xml - </notification> +DomyÅ›lnie: nie wybrana + </notification> + <notification label="Zezwalanie na Uszkodzenia" name="HelpRegionAllowDamage"> + Jeżeli ta opcja jest wybrana system zdrowia bÄ™dzie aktywny we wszystkich posiadÅ‚oÅ›ciach niezależnie od ustawieÅ„ dla indywidualnych posiadÅ‚oÅ›ci. Jeżeli ta opcja nie jest wybrana wÅ‚aÅ›ciciele indywidualych posiadÅ‚oÅ›ci bÄ™dÄ… mogli kontrolować system zdrowia w swoich posiadÅ‚oÅ›ciach. - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> +DomyÅ›lnie: nie wybrana + </notification> + <notification label="Limit Liczby Awatarów" name="HelpRegionAgentLimit"> + Wybierz maksymalnÄ… liczbÄ™ awatarów dozwolonÄ… w tym regionie. +Wydajność systemu może siÄ™ zmieniać w zależnoÅ›ci od liczby obecnych awatarów. - <notification - - name="Cancelled" - > -Anulowane - </notification> +DomyÅ›lnie: 40 + </notification> + <notification label="Ekstra Obiekty" name="HelpRegionObjectBonus"> + Ekstra Obiekty jest to mnożnik dla dozwolonych elementów (obiektów prostych). Dozwolony zakres to 1 do 10. Ustawienie '1' pozwala na 117 elementów na każdej posiadÅ‚oÅ›ci o powierzchni 512m. Ustawienie '2' pozwala na 234 elementy, czyli dwa razy tyle, itd. +Maksymalna liczba elementów w regionie to 15000 niezależnie od ustawienia Ekstra Obiektów. PamiÄ™taj - zmniejszenie Ekstra Obiektów po fakcie może spowodować odsyÅ‚anie lub usuwanie istniejÄ…cych obiektów. - <notification - - name="CancelledSit" - > -Siadanie Anulowane - </notification> +DomyÅ›lnie: 1,0 + </notification> + <notification label="Treść" name="HelpRegionMaturity"> + Aktywuj opcjÄ™ klasyfikacji regionu ze wzglÄ™du na treść jakÄ… zawiera, która zostaje wyÅ›wietlana w górnym pasku widoku w nazwie regionu oraz w podpowiedziach Mapy Åšwiata. Dodatkowo, opcja ta wpÅ‚ywa na dostÄ™p do wyników w czasie wyszukiwania danego regionu. By móc odwiedzić dany region lub mieć dostÄ™p do jego wyników w czasie wyszukiwania, Rezydent musi mieć takie same ustawienia dla treÅ›ci jak dany region. + +By dokonana zmiana zostaÅ‚a zsynchronizowana z MapÄ… Åšwiata, poczekaj kilka minut. + </notification> + <notification label="Blokowanie Popychania" name="HelpRegionRestrictPushObject"> + Ta opcja powoduje, że popychanie bÄ™dzie ograniczone w caÅ‚ym regionie. Jeżeli ta opcja jest wybrana Rezydenci mogÄ… być popchniÄ™ci tylko przez samych siebie lub przez wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. +(Popychanie odnosi sie do funkcji llPushObject() w LSL.) - <notification - - name="CancelledAttach" - > -DoÅ‚Ä…czenie Anulowane - </notification> +DomyÅ›lnie: nie wybrana + </notification> + <notification label="Dzielenie / ÅÄ…czenie PosiadÅ‚oÅ›ci" name="HelpParcelChanges"> + Ta opcja kontroluje czy posiadÅ‚oÅ›ci nie należące do wÅ‚aÅ›ciciela tego majÄ…tku mogÄ… być Å‚Ä…czone / dzielone. +Jeżeli opcja nie jest wybrana: +* Tylko wÅ‚aÅ›ciciele majÄ…tku i zarzÄ…dcy mogÄ… Å‚Ä…czyć / dzielić posiadÅ‚oÅ›ci. +* Tylko posiadÅ‚oÅ›ci należące do wÅ‚aÅ›ciciela albo do grupy mogÄ… być + Å‚Ä…czone / dzielone przez czÅ‚onków z wystarczajÄ…cymi prawami. +Jeżeli ta opcja jest wybrana: +* Wszyscy wÅ‚aÅ›ciciele mogÄ… Å‚Ä…czyć / dzielić swoje posiadÅ‚oÅ›ci. +* PosiadÅ‚oÅ›ci należące do grupy mogÄ… być Å‚Ä…czone / dzielone + przez czÅ‚onków z wystarczajÄ…cymi prawami. - <notification - - name="ReplacedMissingWearable" - > -BarkujÄ…ce ubranie/części ciaÅ‚a zastÄ…piono domyÅ›lnymi obiektami. - </notification> +DomyÅ›lnie: wybrana + </notification> + <notification label="Nie Pokazuj w Wyszukiwaniu" name="HelpRegionSearch"> + Wybranie tej opcji uniemożliwi wÅ‚aÅ›cicielom posiadÅ‚ość wyÅ›wietlanie ich posiadÅ‚oÅ›ci w wyszukiwaniu +DomyÅ›linie: nie wybrana + </notification> + <notification label="Zmienione Restrykcje Wieku dla Regionu" name="RegionMaturityChange"> + Ustawienie restrykcji wieku dla regionu zostaÅ‚o zmienione. +Zazwyczaj musi upÅ‚ynąć nieco czasu zanim ta zmiana zostanie odzwierciedlona na mapie. + </notification> + <notification label="Odsprzedaż PosiadÅ‚oÅ›ci" name="HelpRegionLandResell"> + WÅ‚aÅ›ciciele majÄ…tku i zarzÄ…dcy mogÄ… sprzedawać posiadÅ‚oÅ›ci należące do wÅ‚aÅ›ciciela majÄ…tku. +Jeżeli ta opcja nie jest wybrana kupujÄ…cy nie bÄ™dÄ… mogli odsprzedać posiadÅ‚oÅ›ci w tym regionie. +Jeżeli ta opcja jest wybrana kupujÄ…cy bÄ™dÄ… mogli odsprzedać posiadÅ‚oÅ›ci w tym regionie. - <notification - - name="GroupNotice" - > -Temat: [SUBJECT], Treść: [MESSAGE] - </notification> +DomyÅ›linie: nie pozwalaj + </notification> + <notification label="WyÅ‚Ä…cz Skrypty" name="HelpRegionDisableScripts"> + SÅ‚aba wydajność / prÄ™dkość symulatora może być spowodowana przez skrypt. Otwórz panel Statystyki (Ctrl-Shift-1). Sprawdź ilość klatek na sekundÄ™ (FPS) w Fizyce Symulatora. Jeżeli jest mniej niż 45 wybierz panel Czas znajdujÄ…cy siÄ™ na dole panelu Statystyki. Jeżeli Czas Skryptów wynosi 25 ms lub wiÄ™cej kliknij na Główne Skrypty. Zobaczysz listÄ™ nazw i lokacji skryptów które mogÄ… być odpowiedzialne za pogorszenie wydajnoÅ›ci. - <notification - - name="FriendOnline" - > -[FIRST] [LAST] jest w Second Life - </notification> +Wybranie opcji WyÅ‚Ä…cz Skrypty i naciÅ›niÄ™cie Zastosuj tymczasowo wyÅ‚Ä…czy wszystkie skrypty w tym regionie. Wybranie tej opcji może być niezbÄ™dne w celu umożliwienia podróży do lokacji wymienionego Głównego Skryptu. +Po przebyciu na miejsce zobacz skrypt i sprawdź czy jest on źródÅ‚em problemu. W razie potrzeby skontaktuj siÄ™ z wÅ‚aÅ›cicielem skryptu albo usuÅ„ lub zwróć obiekt. +WyÅ‚Ä…czenie opcji WyÅ‚Ä…cz Skrypty i naciÅ›niÄ™cie Zastosuj ponownie wÅ‚Ä…czy skrypty w tym regionie. - <notification - - name="FriendOffline" - > -[FIRST] [LAST] opuszcza Second Life - </notification> +DomyÅ›lnie: nie wybrana + </notification> + <notification label="WyÅ‚Ä…cz Kolizje" name="HelpRegionDisableCollisions"> + SÅ‚aba wydajność / prÄ™dkość symulatora może być spowodowana przez fizyczne obiekty. Otwórz panel Statystyki (Ctrl-Shift-1). Sprawdź ilość klatek na sekundÄ™ (FPS) w Fizyce Symulatora. Jeżeli jest mniej niż 45 wybierz panel Czas znajdujÄ…cy siÄ™ na dole panelu Statystyki. Jeżeli Czas Symulatora (Fizyka) wynosi 20 ms lub wiÄ™cej kliknij na Główne Kolizje. Zobaczysz listÄ™ nazw i lokacji fizycznych obiektów które mogÄ… być odpowiedzialne za pogorszenie wydajnoÅ›ci. - <notification - - name="AddSelfFriend" - > -Nie możesz dodać siebie do listy znajomych. - </notification> +Wybranie opcji WyÅ‚Ä…cz Kolizje i naciÅ›niÄ™cie Zastosuj tymczasowo wyÅ‚Ä…czy kolizje obiektów. Wybranie tej opcji może być niezbÄ™dne w celu umożliwienia podróży do lokacji wymienionych Główneych Kolizji. +Po przebyciu na miejsce zobacz obiekt i sprawdź czy jest on źródÅ‚em kolizji z innymi obiektami. W razie potrzeby skontaktuj siÄ™ z wÅ‚aÅ›cicielem obiektu albo usuÅ„ lub zwróć obiekt. +WyÅ‚Ä…czenie opcji WyÅ‚Ä…cz Kolizje i naciÅ›niÄ™cie Zastosuj ponownie wÅ‚Ä…czy kolizje w tym regionie. - <notification - - name="UploadingAuctionSnapshot" - > -Åadowanie obrazu z Internetu... -(Zajmuje okoÅ‚o 5 minut.) - </notification> +DomyÅ›lnie: nie wybrana + </notification> + <notification label="WyÅ‚Ä…cz FizykÄ™" name="HelpRegionDisablePhysics"> + Opcja WyÅ‚Ä…cz FizykÄ™ jest podobna do opcji WyÅ‚Ä…cz Kolizje i spowoduje wyÅ‚Ä…czenie symulacji fizyki. Oznacza to, że nie tylko obiekty przestanÄ… siÄ™ zderzać, ale również awatary nie bÄ™dÄ… siÄ™ mogÅ‚y poruszać. - <notification - - name="UploadPayment" - > -Åadowanie kosztowaÅ‚o [AMOUNT]L$. - </notification> +Ta opcja powinna być używana wyÅ‚Ä…cznie w przypadku kiedy użycie opcji WyÅ‚Ä…cz Kolizje nie zwiÄ™ksza wystarczajÄ…co wydajnoÅ›ci symulatora w celu sprawdzenia problemów zwiÄ…zanych z fizykÄ… i z kolizjami. - <notification - - name="UploadWebSnapshotDone" - > -Åadowanie obrazu z Internetu zakoÅ„czne pomyÅ›lnie. - </notification> +Po zakoÅ„czeniu badaÅ„ musisz ponownie wÅ‚Ä…czyć fizykÄ™ żeby awatary mogÅ‚y siÄ™ poruszać. - <notification - - name="UploadSnapshotDone" - > -Åadowanie zdjÄ™cia zakoÅ„czone pomyÅ›lnie. - </notification> +DomyÅ›lnie: nie wybrana + </notification> + <notification label="Główne Kolizje" name="HelpRegionTopColliders"> + Pokaż listÄ™ obiektów potencjalnie doÅ›wiadczajÄ…cych najwiÄ™kszej iloÅ›ci kolizji miÄ™dzy obiektami. Te obiekty mogÄ… być odpowiedzialne za zmniejszenie wydajnoÅ›ci. Wybierz Widok > Statystyki i zobacz Symulator > Czas > Czas Symulatora (Fizyka) i sprawdź czy wiÄ™cej niż 20 ms jest spÄ™dzane w fizyce. + </notification> + <notification label="Główne Skrypty" name="HelpRegionTopScripts"> + Pokaż listÄ™ obiektów spÄ™dzajÄ…cych najwÄ™cej czasu wykonujÄ…c skrypty LSL. Te obiekty mogÄ… być odpowiedzialne za zmniejszenie wydajnoÅ›ci. Wybierz Widok > Statystyki i zobacz Symulator > Czas > Czas Skryptów i sprawdź czy wiÄ™cej niż 25 ms jest spÄ™dzane w skryptach. + </notification> + <notification label="Restart Regionu" name="HelpRegionRestart"> + Restart procesu na serwerze obsÅ‚ugujÄ…cym ten region za dwie minuty. Wszyscy Rezydenci w tym regionie zostanÄ… wylogowani. Region zapisze swoje dane i powinien wystartować w przeciÄ…gu 90 sekund. - <notification - - name="TerrainDownloaded" - > -Plik terrain.raw Å›ciÄ…gniety. - </notification> +Restart regionu nie naprawi wiÄ™kszoÅ›ci problemów zwiÄ…zanych z wydajnoÅ›ciÄ… / prÄ™dkoÅ›ciÄ… i generalnie powinnien być używany na polecenie. + </notification> + <notification label="Poziom Wody" name="HelpRegionWaterHeight"> + Jest to poziom w metrach gdzie pojawia siÄ™ woda. Jeżeli jest wybrana inna wartość niż 20 i Twoja woda sÄ…siaduje z krawÄ™dziÄ… Å›wiata lub pustym miejscem to bÄ™dzie widoczny uskok. - <notification - - name="GestureMissing" - > -Gest [NAME] nie znaleziony w bazie danych. - </notification> +DomyÅ›lnie: 20 + </notification> + <notification label="Wznoszenie Terenu" name="HelpRegionTerrainRaise"> + Jest to dystans w metrach o który wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci mogÄ… podnieść teren powyżej ustalonego poziomu odniesienia. - <notification - - name="UnableToLoadGesture" - > -Åadowanie gestu [NAME] nie powiodÅ‚o siÄ™. -Spróbuj jeszcze raz. - </notification> +DomyÅ›lnie: 4 + </notification> + <notification label="Obniżanie Terenu" name="HelpRegionTerrainLower"> + Jest to dystans w metrach o który wÅ‚aÅ›ciciele posiadÅ‚oÅ›ci mogÄ… obniżyć teren poniżej ustalonego poziomu odniesienia. - <notification - - name="LandmarkMissing" - > -Miejsce (LM) nie znalezione w bazie danych. - </notification> +DomyÅ›lnie: -4 + </notification> + <notification label="Åadowanie RAW Terenu" name="HelpRegionUploadRaw"> + Ten przycisk Å‚aduje plik .RAW dla tego regionu. +Plik musi mieć poprawne wymiary (RGB, 256x256) i 13 kanałów. +Najprostszy sposób na stworzenie pliku terenu to zapisanie istniejÄ…cego pliku RAW. Zalecany pierwszy krok to modyfikacje kanaÅ‚u czerwieni (wysokość terenu) i Å‚adowanie nowego pliku. - <notification - - name="UnableToLoadLandmark" - > -Åadowanie miejsca (LM) nie powiodÅ‚o siÄ™. -Spróbuj jeszcze raz. - </notification> +Åadowanie pliku może zająć 45 sekund. ZaÅ‚adowanie terenu nie przemieÅ›ci obiektów znajdujÄ…cych siÄ™ na tym terenie, tylko teren i prawa przypisane do posiadÅ‚oÅ›ci ulegnÄ… zmianie. Może to spowodować, że niektóre obiekty zniknÄ… pod ziemiÄ…. - <notification - - name="CapsKeyOn" - > -Twój Caps Lock jest wÅ‚Ä…czony. -Ponieważ to ma wpÅ‚yw na wpisywane hasÅ‚o, możesz chcieć go wyÅ‚Ä…czyć. - </notification> +Aby uzyskać wiÄ™cej informacji o edycji map wysokoÅ›ci sprawdź F1 Pomoc. + </notification> + <notification label="Zapisywanie RAW Terenu" name="HelpRegionDownloadRaw"> + Ten przycisk zapisuje plik zawierajÄ…cy mapÄ™ wysokoÅ›ci, wymiary posiadÅ‚oÅ›ci, dane o posiadÅ‚oÅ›ciach na sprzedaż i niektóre prawa przypisane do posiadÅ‚oÅ›ci w tym regionie. Jeżeli otwierasz ten plik w programie takim jak Photoshop musisz zdefniować wymiary dokumentu jako: RGB, 256x256, 13 kanałów. Ten plik terenu nie może zostać otwarty w żaden inny sposób. - <notification - - name="NotecardMissing" - > -Notka nie znaleziona w bazie danych. - </notification> +Aby uzyskać wiÄ™cej informacji o edycji map wysokoÅ›ci sprawdź F1 Pomoc. + </notification> + <notification label="Używaj SÅ‚oÅ„ca MajÄ…tku" name="HelpRegionUseEstateSun"> + Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca w tym regionie żeby byÅ‚a taka sama jak pozycja sÅ‚oÅ„ca w reszcie majÄ…tku. - <notification - - name="NotecardNoPermissions" - > -Nie masz pozwolenia na zobaczenie notki. - </notification> +DomyÅ›lnie: wÅ‚Ä…czona + </notification> + <notification label="StaÅ‚e SÅ‚oÅ„ce" name="HelpRegionFixedSun"> + Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca do pozycji w suwaku faz i unieruchamia sÅ‚oÅ„ce w wybranej pozycji. - <notification - - name="RezItemNoPermissions" - > -Nie masz pozwolenia na stworzenie obiektu. - </notification> +DomyÅ›lnie: nie wÅ‚Ä…czona + </notification> + <notification label="Ustalanie Terenu" name="HelpRegionBakeTerrain"> + Ten przycisk zapisuje obecne uksztaÅ‚towanie terenu jako nowy punkt odniesienia dla regionu. Po ustaleniu punktu odniesienia teren może zostać odtworzony do zapisanego ksztaÅ‚tu wybierajÄ…c opcjÄ™ Odtwórz w Edycji Terenu. Zapisany, ustalony teren jest również punktem odniesienia dla górnego i dolnego limitu zmian wysokoÅ›ci. + </notification> + <notification label="ZarzÄ…dcy MajÄ…tku" name="HelpEstateEstateManager"> + ZarzÄ…dca majÄ…tku jest Rezydentem oddelegowanym przez Ciebie do kontroli ustawieÅ„ regionu i majÄ…tku. ZarzÄ…dca majÄ…tku może zmieniać wszystkie ustawienia dostÄ™pne na tym panelu, za wyjÄ…tkiem Å‚adowania, zapisywania i ustalania terenu. W szczgólnoÅ›ci może kontrolować dostÄ™p innych Rezydentów (bany) do Twojego majÄ…tku. - <notification - - name="UnableToLoadNotecard" - > -Åadowanie notki nie powiodÅ‚o siÄ™. -Spróbuj jeszcze raz. - </notification> +ZarzÄ…dcy majÄ…tku mogÄ… być dodawani i usuwani wyÅ‚Ä…cznie przez wÅ‚aÅ›ciciela majÄ…tku. Wybieraj na zarzÄ…dców tylko tych Rezydentów którym ufasz ponieważ ponosisz odpowiedzialność za ich dziaÅ‚ania. + </notification> + <notification label="Używaj Globalnego Czasu" name="HelpEstateUseGlobalTime"> + Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca w Twoim majÄ…tku żeby byÅ‚a taka sama jak pozycja sÅ‚oÅ„ca w regionach głównych należących do Lindenów. + </notification> + <notification label="StaÅ‚e SÅ‚oÅ„ce" name="HelpEstateFixedSun"> + Ta opcja ustala pozycjÄ™ sÅ‚oÅ„ca do pozycji w suwaku faz i unieruchamia sÅ‚oÅ„ce w wybranej pozycji. + </notification> + <notification label="DostÄ™p Publiczny" name="HelpEstateExternallyVisible"> + Ta opcja kontroluje czy Rezydenci znajdujÄ…cy siÄ™ w innych majÄ…tkach mogÄ… przenosić siÄ™ do tego majÄ…tku jeżeli nie sÄ… umieszczeni na liÅ›cie dostÄ™pu. - <notification - - name="ScriptMissing" - > -Skrypt nie znaleziony w bazie danych. - </notification> +DomyÅ›lnie: wÅ‚Ä…czona + </notification> + <notification label="Pozwalaj na BezpoÅ›redniÄ… TeleportacjÄ™" name="HelpEstateAllowDirectTeleport"> + WÅ‚Ä…czenie tej opcji pozwala Rezydentom na bezpoÅ›redniÄ… teleportacjÄ™ do dowolnego miejsca a Twoim majÄ…tku. Jeżeli ta opcja nie jest wyÅ‚Ä…czona Rezydenci mogÄ… siÄ™ teleportować do najbliższego teleportera. - <notification - - name="ScriptNoPermissions" - > -Nie masz pozwolenia na zobaczenie skryptu. - </notification> +DomyÅ›lnie: nie wÅ‚Ä…czona + </notification> + <notification label="DostÄ™p do MajÄ…tku" name="HelpEstateAllowResident"> + DostÄ™p do tego majÄ…tku bÄ™dzie ograniczony do wymienionych Rezydentów i poniższych grup. Ta opcja jest dostÄ™pna tylko wtedy kiedy opcja DostÄ™pu Publicznego jest wyÅ‚Ä…czona. + </notification> + <notification label="DostÄ™p Grup do MajÄ…tku" name="HelpEstateAllowGroup"> + DostÄ™p do tego majÄ…tku bÄ™dzie ograniczony do wymienionych grup i powyższych Rezydentów. Ta opcja jest dostÄ™pna tylko wtedy kiedy opcja DostÄ™pu Publicznego jest wyÅ‚Ä…czona. + </notification> + <notification label="Email o Nadużyciach" name="HelpEstateAbuseEmailAddress"> + Wpisanie ważnego email adresu spowoduje, że raporty o nadużyciach w obrÄ™bie tego majÄ…tku bÄ™dÄ… wysyÅ‚ane na ten adres. Zostawienie pustego miejsca spowoduje, że raporty o nadużyciach bÄ™dÄ… wysyÅ‚ane wyÅ‚Ä…cznie do Linden Lab. + </notification> + <notification label="WstÄ™p Wzbroniony (bany)" name="HelpEstateBanResident"> + Rezydenci umieszczeni na tej liÅ›cie nie majÄ… dostÄ™pu do Twojego majÄ…tku, niezależnie od jakichkolwiek innych ustawieÅ„. + </notification> + <notification label="Pozwalaj na Rozmowy" name="HelpEstateVoiceChat"> + PosiadÅ‚oÅ›ci w tym majÄ…tku mogÄ… mieć wÅ‚asne kanaÅ‚y gÅ‚osu pozwalajÄ…ce Rezydentom na rozmowy z osobami w pobliżu. - <notification - - name="UnableToLoadScript" - > -Åadowanie skryptu nie powiodÅ‚o siÄ™. -Spróbuj jeszcze raz. - </notification> +DomyÅ›lnie: nie wÅ‚Ä…czone + </notification> + <notification label="Wersja Niezgodna z Systemem Rozmów" name="VoiceVersionMismatch"> + Ta wersja Second Life nie jest kompatybilna z systemem Rozmów w tym regionie. Musisz zainstalować aktualnÄ… wersjÄ™ Second Life żeby Rozmowy dziaÅ‚aÅ‚y porawnie. + </notification> + <notification label="Umowa MajÄ…tku" name="HelpEstateCovenant"> + WÅ‚Ä…czenie opcji umowy majÄ…tku jest wymagane w celu umożliwienia sprzedaży posiadÅ‚oÅ›ci w obrÄ™bie majÄ…tku. +Jeżeli opcja umowy nie jest wybrana sprzedaż posiadÅ‚oÅ›ci nie jest dozwolona. Notka okreÅ›lajÄ…ca TwojÄ… umowÄ™ może być pusta jeżeli nie chcesz ustalić zasad specyficznych dla Twojego majÄ…tku i jeżeli nie chcesz uprzedzać nabywców o faktach odnoszÄ…cych siÄ™ do posiadÅ‚oÅ›ci przed zakupem. - <notification - - name="IncompleteInventory" - > -Zawartość obiektów którÄ… chcesz podarować nie jest dostÄ™pna lokalnie. Spróbuj podarować te obiekty jeszcze raz za jakiÅ› czas. - </notification> +Umowa może być używana w celu okreÅ›lenia zasad, zaleceÅ„, przekazywania informacji o kulturze lub, po prostu, Twoich wÅ‚asnych oczekiwaÅ„ w odniesieniu do potencjalnego nabywacy. +Możesz zdefiniować zasady podziaÅ‚u posidÅ‚oÅ›ci, prawa budowlane, zasady opÅ‚at i wszystkie dodatkowe informacje z którymi nowy wÅ‚aÅ›ciciel powinien zapoznać siÄ™ i zaakceptować przed zakupem. - <notification - - name="CannotModifyProtectedCategories" - > -Nie możesz zmienić chronionych kategorii. - </notification> +Nabywca musi wybrać opcjÄ™ akceptacji umowy żeby trasakcja mogÅ‚a zostać sfinalizowana. Umowa majÄ…tku jest zawsze dostÄ™pna w dialogu O PosiadÅ‚oÅ›ci dla każedej posiadÅ‚oÅ›ci ze zdefinowanÄ… umowÄ…. + </notification> + <notification label="Nie Można Kupić Obiektów" name="BuyObjectOneOwner"> + Jednorazowo możesz kupować tylko od jednego wÅ‚aÅ›ciciela. +Wybierz pojedynczy obiekt i spróbuj jeszcze raz. + </notification> + <notification label="Nie Można Kupić ZawartoÅ›ci" name="BuyContentsOneOnly"> + Jednorazowo możesz kupić zawartość tylko jednego obiektu. +Wybierz pojedynczy obiekt i spróbuj jeszcze raz. + </notification> + <notification label="Nie Można Kupić ZawartoÅ›ci" name="BuyContentsOneOwner"> + Jednorazowo możesz kupować tylko od jednego wÅ‚aÅ›ciciela. +Wybierz pojedynczy obiekt i spróbuj jeszcze raz. + </notification> + <notification name="BuyOriginal"> + Kupić oryginalny obiekt od [OWNER] za [PRICE]L$? +Zostaniesz wÅ‚aÅ›cicielem tego obiektu z nastÄ™pujÄ…cymi prawami: + Modyfikacje: [MODIFYPERM] + Kopiowanie: [COPYPERM] + Odsprzedawanie i Oddawanie: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BuyOriginalNoOwner"> + Kupić oryginalny obiekt za [PRICE]L$? +Zostaniesz wÅ‚aÅ›cicielem tego obiektu z nastÄ™pujÄ…cymi prawami: + Modyfikacje: [MODIFYPERM] + Kopiowanie: [COPYPERM] + Odsprzedawanie i Oddawanie: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BuyCopy"> + Kupić kopiÄ™ obiektu od [OWNER] za [PRICE]L$? +Obiekt zostanie skopiowany do Twojej szafy z nastÄ™pujÄ…cymi prawami: + Modyfikacje: [MODIFYPERM] + Kopiowanie: [COPYPERM] + Odsprzedawanie i Oddawanie: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BuyCopyNoOwner"> + Kupić kopiÄ™ obiektu za [PRICE]L$? +Obiekt zostanie skopiowany do Twojej szafy z nastÄ™pujÄ…cymi prawami: + Modyfikacje: [MODIFYPERM] + Kopiowanie: [COPYPERM] + Odsprzedawanie i Oddawanie: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BuyContents"> + Kupić zawartość od [OWNER] za [PRICE]L$? +Zawartość zostanie skopiowana do Twojej szafy. + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="BuyContentsNoOwner"> + Kupić zawartość za [PRICE]L$? +Zawartość zostanie skopiowana do Twojej szafy. + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmPurchase"> + Ta transakcja spowoduje: +[ACTION] - <notification - - name="CannotRemoveProtectedCategories" - > -Nie możesz usunąć chronionych kategorii. - </notification> +Na pewno chcesz dokonać tego zakupu? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + Ta transakcja spowoduje: +[ACTION] - <notification - - name="OfferedCard" - > -[FIRST] [LAST] daje Ci swojÄ… wizytówkÄ™ - </notification> +Na pewno chcesz dokonać tego zakupu? +Wpisz hasÅ‚o ponownie i kliknij OK. + <form name="form"> + <input name="message" type="password"/> + <button name="ConfirmPurchase" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="SetPickLocation"> + Uwaga: +Lokacja tego wyboru zostaÅ‚a zaktualizowana ale pozostaÅ‚e szczegóły zachowajÄ… oryginalne wartoÅ›ci. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + Wybrane obiekty szafy nie majÄ… praw kopiowania. +Obiekty zostanÄ… przeniesione do Twojej szafy, nie zostanÄ… skopiowane. - <notification - - name="UnableToBuyWhileDownloading" - > -Nie można kupować w trakcie Å‚adowania danych obiektu. -Spróbuj jeszcze raz. - </notification> +Przenieść obiekty szafy? + <usetemplate ignoretext="PrzenoszÄ…c szafÄ™ bez praw kopiowania z obiektów" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromScriptedObject"> + Wybrane obiekty szafy nie majÄ… praw kopiowania. +Obiekty zostanÄ… przeniesione do Twojej Szafy, nie zostanÄ… skopiowane. +Ponieważ obiekty zawierajÄ… skrypty, przeniesienie obiektów do Twojej szafy może spowodować niepoprawne dziaÅ‚anie skryptów. - <notification - - name="UnableToLinkWhileDownloading" - > -Nie można Å‚Ä…czyć w trakcie Å‚adowania danych obiektu. -Spróbuj jeszcze raz. - </notification> +Przenieść obiekty szafy? + <usetemplate ignoretext="PrzenoszÄ…c szafÄ™ bez praw kopiowania ze skryptowanych obiektów" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ClickActionNotPayable"> + Uwaga: Opcja ZapÅ‚ać Obiektowi zostaÅ‚a wybrana, ale żeby ta opcja dziaÅ‚aÅ‚a musi być dodany skrypt z funkcjÄ… money(). + <form name="form"> + <ignore name="ignore" text="WybierajÄ…c opcjÄ™ ZapÅ‚ać Obiektowi dla obiektów bez funkcji money()"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + W tym obiekcie nie ma elementów które możesz skopiować. + </notification> + <notification name="WebLaunchAccountHistory"> + Przejść na stronÄ™ Second Life żeby zobaczyć historiÄ™ konta? + <usetemplate ignoretext="ÅadujÄ…c stronÄ™ historii konta." name="okcancelignore" notext="Anuluj" yestext="Idź na stronÄ™"/> + </notification> + <notification name="ClickOpenF1Help"> + Przejść na stronÄ™ Second Life? + <usetemplate ignoretext="OdwiedzajÄ…c stronÄ™ Second Life." name="okcancelignore" notext="Anuluj" yestext="Idź"/> + </notification> + <notification name="ConfirmQuit"> + Na pewno chcesz skoÅ„czyć? + <usetemplate ignoretext="WyÅ‚Ä…czajÄ…c Second Life." name="okcancelignore" notext="Kontynuuj" yestext="WyÅ‚Ä…cz"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + Używaj tej opcji do zgÅ‚aszania nadużyć Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards). Zobacz: - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -Nie możesz jednoczeÅ›nie kupować obiektów od różnych osób. -Wybierz jeden obiekt. - </notification> +http://secondlife.com/corporate/tos.php +http://secondlife.com/corporate/cs.php - <notification - - name="ObjectNotForSale" - > -Obiekt nie jest na sprzedaż. - </notification> +Wszystkie zgÅ‚oszone nadużycia Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards) sÄ… badane i rozwiÄ…zywane. Możesz zobaczyć konkluzjÄ™ zgÅ‚oszenia w Raporcie ZgÅ‚oszeÅ„ pod: - <notification - - name="EnteringGodMode" - > -WÅ‚Ä…cznie trybu boskiego, poziom [LEVEL] - </notification> +http://secondlife.com/support/incidentreport.php + </notification> + <notification name="HelpReportAbuseEmailEO"> + UWAGA: Ten raport zostanie wysÅ‚any do wÅ‚aÅ›ciciela regionu w którym siÄ™ znajdujesz i nie bÄ™dzie wysÅ‚any do Linden Lab. - <notification - - name="LeavingGodMode" - > -WyÅ‚Ä…czanie trybu boskiego, poziom [LEVEL] - </notification> +W ramach serwisu dla Rezydentów i goÅ›ci wÅ‚aÅ›ciciel tego regionu postanowiÅ‚ odbierać i rozwiÄ…zywać wszystkie reporty wysÅ‚ane z tego regionu. Linden Lab nie bÄ™dzie analizowaÅ‚ żadnych reportów zgÅ‚oszonych z tego miejsca. - <notification - - name="CopyFailed" - > -Kopiowanie siÄ™ nie powiodÅ‚o - nie masz pozwolenia - </notification> +WÅ‚aÅ›ciciel regionu bÄ™dzie rozpatrywaÅ‚ raporty w oparciu o lokalne prawa tego regionu zdefiniowane w umowie majÄ…tku. (Możesz zobaczyć umowÄ™ wybierajÄ…c opcjÄ™ O PosiadÅ‚oÅ›ci z menu Åšwiat.) - <notification - - name="InventoryAccepted" - > -Podarunek od Ciebie zostaÅ‚ przyjÄ™ty przez [NAME]. - </notification> +RozwiÄ…zanie tego raportu odnosi siÄ™ wyÅ‚Ä…cznie do tego regionu; konkluzja tego raportu nie bÄ™dzie miaÅ‚a wpÅ‚ywu na dostÄ™p Rezydentów do innych regionów w Second Life. WyÅ‚Ä…cznie Linden Lab może caÅ‚kowicie odebrać dostÄ™p do Second Life. + </notification> + <notification name="HelpReportBug"> + Używaj tej opcji *wyÅ‚Ä…cznie* w celu zgÅ‚aszania technicznych problemów, doÅ‚Ä…czajÄ…c szczegółowy opis problemu. Możesz odpowiedzieć na automatycznÄ… email z odpowiedziÄ… żeby dodać wiÄ™cej szczegółów do Twojego raportu. - <notification - - name="InventoryDeclined" - > -Podarunek od Ciebie zostaÅ‚ odrzucony przez [NAME]. - </notification> +Wszystkie raporty bÅ‚Ä™dów sÄ… analizowane i oceniane. Kontakt przez email nie bÄ™dzie nawiÄ…zany. - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> +Jeżeli masz techniczne problemy, skontaktuj siÄ™ z pomocÄ… technicznÄ… pod: - <notification - - name="CallingCardAccepted" - > -Twoja wizytówka zostaÅ‚a przyjÄ™ta. - </notification> +http://secondlife.com/community/support.php - <notification - - name="CallingCardDeclined" - > -Twoja wizytówka zostaÅ‚a odrzucona. - </notification> +Uwaga: Niekompletne raporty nie bÄ™dÄ… analizowane. + </notification> + <notification name="HelpReportAbuseSelectCategory"> + Wybierz kategoriÄ™ dla tego raportu o nadużyciu. +OkreÅ›lenie kategorii pomoże nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportBugSelectCategory"> + Wybierz kategoriÄ™ dla tego bÅ‚Ä™du. +OkreÅ›lenie kategorii pomoże nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + Wprowadź imiÄ™ i nazwisko osoby popeÅ‚niajÄ…cej nadużycie. +DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + Wprowadź nazwÄ™ miejsca gdzie popeÅ‚niono nadużycie. +DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + Wprowadź opis popeÅ‚nionego nadużycia. +DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportBugSummaryEmpty"> + Wprowadź opis bÅ‚Ä™du. +DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + Wprowadź szczgółowy opis popeÅ‚nionego nadużycia. +Podaj maksymalnÄ… ilość szczgółów oraz imiona i nazwiska osób zwiÄ…zanych z nadużyciem które zgÅ‚aszasz. +DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportBugDetailsEmpty"> + Wprowadź szczgółowy opis bÅ‚Ä™du. Podaj maksymalnÄ… ilość szczgółów oraz, jeżeli to możliwe, kroki niezbÄ™dne do odtworzenia problemu. +DokÅ‚adne dane pomogÄ… nam w klasyfikacji i prztwarzaniu raportu. + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + Szanowny Rezydencie, - <notification - - name="TeleportToLandmark" - > -JesteÅ› w Głównym Regionie i możesz siÄ™ stÄ…d teleportować do innych miejsc jak '[NAME]' wybierajÄ…c Moja Szafa w prawym dolnym rogu ekranu i wybierajÄ…c folder Miejsca (LM). -Kliknij dwa razy na miejsce (LM) i wybierz Teleportuj żeby tam siÄ™ przenieść. - </notification> +Jeżeli skÅ‚adasz raport dotyczÄ…cy naruszenia praw autorskich proszÄ™ siÄ™ upewnić, że robisz to poprawnie: - <notification - - name="TeleportToPerson" - > -JesteÅ› w Głównym Regionie i możesz komunikować siÄ™ z innymi Rezydentami jak '[NAME]' wybierajÄ…c Moja Szafa w prawym dolnym rogu ekranu i wybierajÄ…c folder Wizytówki. -Kliknij dwa razy na wizytówce, wybierz WyÅ›lij IM i napisz wiadomość. - </notification> +(1) Przypadek Nadużycia. Możesz zÅ‚ożyć raport jeżeli sÄ…dzisz, że Rezydent narusza system przywilejów Second Life, na przykÅ‚ad używajÄ…c CopyBot lub podobnych narzÄ™dzi robiÄ…cych kopie, naruszajÄ…c prawa autorskie. Komisja Nadużyć bada wykrocznia i stosuje akcje dyscyplinarne za zachowania sprzeczne z zasadami Warunków Umowy (Terms of Service) i Standardów SpoÅ‚eczeÅ„stwa (Community Standards) Second Life. Komisja Nadużyć nie zajmuje siÄ™ i nie odpowiada na żądania usuniÄ™cia treÅ›ci ze Å›rodowiska Second Life. - <notification - - name="CantSelectLandFromMultipleRegions" - > -Nie możesz przekraczać granic serwera wybierajÄ…c obszar. -Spróbuj wybrać mniejszy obszar. - </notification> +(2) Przypadek DMCA lub Usuwanie TreÅ›ci. Aby wystÄ…pić z żądaniem o usuniÄ™cie treÅ›ci ze Å›rodowiska Second Life MUSISZ przedÅ‚ożyć ważne zawiadomienie o nadużyciu zgodne z naszÄ… polisÄ… DMCA pod http://secondlife.com/corporate/dmca.php. - <notification - - name="GroupVote" - > -[NAME] zaprasza do gÅ‚osowania nad propozycjÄ…: -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="GÅ‚osuj Teraz"/> - <button - - name="Later" - text="Później"/> - </form> - </notification> +Jeżeli chcesz kontynuować dalej zamknij to okno i dokoÅ„cz wysyÅ‚anie raportu. Może być potrzebny wybór kategorii 'CopyBot albo Nadużycie Przywilejów'. - <notification - - name="SystemMessage" - > -[MESSAGE] - </notification> +DziÄ™kujemy, - <notification - - name="EventNotification" - > -Zawiadomienie o Imprezie: +Linden Lab + </notification> + <notification name="FailedRequirementsCheck"> + Brak nastÄ™pujÄ…cych wymaganych komponentów w [FLOATER]: +[COMPONENTS] + </notification> + <notification label="ZamieÅ„ IstniejÄ…cy Dodatek" name="ReplaceAttachment"> + Obecnie masz już doÅ‚Ä…czony obiekt do tej części Twojego ciaÅ‚a. +Chcesz go zamienić na wybrany obiekt? + <form name="form"> + <ignore name="ignore" save_option="true" text="ZamieniajÄ…c istniejÄ…ce dodatki"/> + <button ignore="ZamieÅ„ Automatycznie" name="Yes" text="OK"/> + <button ignore="Nie Zamieniaj" name="No" text="Anuluj"/> + </form> + </notification> + <notification label="Ostrzeżenie Trybu Pracy" name="BusyModePay"> + JesteÅ› w Trybie Pracy co oznacza, że nie dostaniesz żadnych obiektów w zamian za tÄ… opÅ‚atÄ™. -[NAME] -[DATE] - <form name="form"> - <button - - name="Teleport" - text="Teleportuj"/> - <button - - name="Description" - text="Opis"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> +Chcesz wyÅ‚Ä…czyć Tryb Pracy przed zakoÅ„czeniem tej tranzakcji? + <form name="form"> + <ignore name="ignore" save_option="true" text="PÅ‚acÄ…c osobie lub obiektowi bÄ™dÄ…c w Trybie Pracy"/> + <button ignore="Zawsz wyÅ‚Ä…czaj Tryb Pracy" name="Yes" text="OK"/> + <button ignore="Nie wyÅ‚Ä…czaj Trybu Pracy" name="No" text="Anuluj"/> + </form> + </notification> + <notification name="ConfirmEmptyTrash"> + Na pewno chcesz permanentnie usunąć zawartość Åšmietnika? + <usetemplate ignoretext="UsuwajÄ…c zawartość Åšmietnika" name="okcancelignore" notext="Anuluj" yestext="OK"/> + </notification> + <notification name="ConfirmClearBrowserCache"> + Na pewno chcesz wyczyÅ›cić bufor przeglÄ…darki? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Tak"/> + </notification> + <notification name="ConfirmClearCookies"> + Na pewno chcesz wyczyÅ›cić ciasteczka? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Tak"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + Na pewno chcesz wyczyÅ›cić listÄ™ zapisanych linków? + <usetemplate name="okcancelbuttons" notext="Anuluj" yestext="Tak"/> + </notification> + <notification name="ConfirmEmptyLostAndFound"> + Na pewno chcesz permanentnie usunąć zawartość Twojego foldera Zgubione i Znalezione? + <usetemplate ignoretext="UsuwajÄ…c szafÄ™ z Twojego foldera Zgubione i Znalezione" name="okcancelignore" notext="Nie" yestext="Tak"/> + </notification> + <notification name="CopySLURL"> + NastÄ™pujÄ…cy link SLURL zostaÅ‚ skopiowany do pamiÄ™ci podrÄ™cznej: + [SLURL] - <notification - - name="TransferObjectsHighlighted" - > -Obiekty na tej posiadÅ‚oÅ›ci które zostanÄ… przekazane kupcowi tej posiadÅ‚oÅ›ci sÄ… teraz rozjaÅ›nione. +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"/> + </form> + </notification> + <notification name="GraphicsPreferencesHelp"> + Ten panel kontroluje wymiary i rozdzielczość okna oraz jakość grafiki klienta. Panel Ustawienia > Grafika pozwala na wybór jednego z czterech poziomów jakoÅ›ci grafiki: Niska, Åšrednia, Wysoka i Super. Możesz również dostosować grafikÄ™ do wÅ‚asnych potrzeb wybierajÄ…c opcjÄ™ Zaawansowane i zmieniajÄ…c nastÄ™pujÄ…ce ustawienia: -* Drzewa i trawy które zostanÄ… przekazne nie sÄ… rozjaÅ›nione. - <form name="form"> - <button - - name="Done" - text="Zastosuj"/> - </form> - </notification> +Shadery: Opcja ta pozwala wÅ‚Ä…czyć i wyÅ‚Ä…czyć różne rodzaje shaderów pikseli. - <notification - - name="DeactivatedGesturesTrigger" - > -Zablokowane gesty z jednakowym aktywowaniem: -[NAMES] - </notification> +Ustawienia Odbić: OkreÅ›la rodzaje obiektów które mogÄ… odbijać siÄ™ w wodzie. - <notification - - name="NoQuickTime" - > -WyglÄ…da na to, że QuickTime z Apple nie jest zainstalowany na Twoim komputerze. -Jeżeli chcesz odtwarzać media na tej posiadÅ‚oÅ›ci które używajÄ… QuickTime idź do http://www.apple.com/quicktime i zainstaluj odtwarzacz. - </notification> +Prezentacja Awatarów: OkreÅ›la opcje majÄ…ce wpÅ‚yw na rysowanie awatarów przez klienta. - <notification - - name="OwnedObjectsReturned" - > -Twoje obiekty z wybranej posiadÅ‚oÅ›ci zostaÅ‚y zwrócone do Twojej Szafy. - </notification> +GÅ‚Ä™bia Rysowania: OkreÅ›la od jakiej odlegÅ‚oÅ›ci od pozycji kamery obiekty bÄ™dÄ… rysowane w tle. - <notification - - name="OtherObjectsReturned" - > -Obiekty należące do [FIRST] [LAST] na wybranej posiadÅ‚oÅ›ci zostaÅ‚y zwrócone do szafy tej osoby. - </notification> +Liczba CzÄ…steczek: OkreÅ›la maksymalnÄ… liczbÄ™ czÄ…steczek widocznych jednoczeÅ›nie na ekranie. - <notification - - name="OtherObjectsReturned2" - > -Obiekty z wybranej posiadÅ‚oÅ›ci należącej do Rezydenta '[NAME]' zostaÅ‚y zwrócone do ich wÅ‚aÅ›ciciela. - </notification> +Jakość Post-Procesu: OkreÅ›la rozdzielczość z jakÄ… jest wyÅ›wietlana poÅ›wiata. - <notification - - name="GroupObjectsReturned" - > -Obiekty z wybranej posiadÅ‚oÅ›ci przypisane do grupy [GROUPNAME] zostaÅ‚y zwrócone do szafy ich wÅ‚aÅ›cicieli. -Przekazywalne obiekty przekazne grupie zostaÅ‚y zwrócone do ich poprzednich wÅ‚aÅ›cicieli. -Nieprzekazywalne obiekty przekazane grupie zostaÅ‚y usuniÄ™te. - </notification> +Szczegóły Meszu: OkreÅ›la ilość szczegółów albo liczbÄ™ trójkÄ…tów używanÄ… przy rysowaniu pewnych obiektów. WiÄ™ksza wartość zwalnia prÄ™dkość rysowania ale powoduje, że obiekty wyglÄ…dajÄ… bardziej szczgółowo. - <notification - - name="UnOwnedObjectsReturned" - > -Obiekty z wybranej posiadÅ‚oÅ›ci które nie należą do Ciebie zostaÅ‚y zwrócone do ich wÅ‚aÅ›cicieli. - </notification> +Ustawienia ÅšwiatÅ‚a: OkreÅ›la jaki rodzaj Å›wiatÅ‚a jest używany do rysowania. - <notification - - name="NotSafe" - > -Ta posiadÅ‚ość pozwala na uszkodzenia. -Możesz doznać tutaj urazu. Jeżeli zginiesz nastÄ…pi teleportacja do Twojego miejsca startu. - </notification> +Szczegóły Terenu: OkreÅ›la ilość szczgółów widocznÄ… w teksturach terenu. + </notification> + <notification name="WLSavePresetAlert"> + Chcesz zmienić zapisane ustawienia? + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="WLDeletePresetAlert"> + Chcesz usunąć [SKY]? + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="WLNoEditDefault"> + Nie możesz edytować lub usunąć domyÅ›lnych ustawieÅ„. + </notification> + <notification name="WLMissingSky"> + Ten plik cyklu dziennego używa brakujÄ…cego pliku nieba: [SKY]. + </notification> + <notification name="PPSaveEffectAlert"> + Efekt Post-Procesu już istnieje. Chcesz zapisać nowy na jego miejsce? + <usetemplate name="okcancelbuttons" notext="Nie" yestext="Tak"/> + </notification> + <notification name="HelpEditSky"> + Ustaw suwaki żeby stworzyć i zapisać zbiór nieb. + </notification> + <notification name="HelpEditDayCycle"> + Wybierz których nieb używać w przeciÄ…gu dnia. + </notification> + <notification name="EnvSettingsHelpButton"> + Te ustawienia zmieniajÄ… wyglÄ…d Å›rodowiska na Twoim komputerze. Twoja karta graficzna musi posiadać opcjÄ™ shaderów atmosfery aby umożliwić dostÄ™p do wszystkich ustawieÅ„. - <notification - - name="NoFly" - > -Ta posiadÅ‚ość nie pozwala na latanie. -Nie możesz tutaj latać. - </notification> +Ustaw suwak "Pora Dnia" żeby zmienić lokalnÄ… porÄ™ dnia w kliencie. - <notification - - name="PushRestricted" - > -Popychanie niedozwolone. -Nie możesz tutaj popychać innych, chyba, że jesteÅ› wÅ‚aÅ›cicielem tej posiadÅ‚oÅ›ci. - </notification> +Ustaw suwak "Chmury" żeby zmienić ilość chmur widocznÄ… na niebie. - <notification - - name="NoVoice" - > -Ta posiadÅ‚ość nie pozwala na rozmowy. - </notification> +Wybierz kolor w selekcji "Kolor Wody" żeby zmienić kolor wody. - <notification - - name="NoBuild" - > -Ta posiadÅ‚ość nie pozwala na budowanie. -Nie możesz tworzyć tutaj obiektów. - </notification> +Ustaw suwak "Zamglenie" żeby zmienić gÄ™stość zamglenia pod wodÄ…. - <notification - - name="ScriptsStopped" - > -Administrator czasowo zatrzymaÅ‚ skrypty w tym regionie. - </notification> +Kliknij "Używaj Czasu Regionu" żeby dostosowywać porÄ™ dnia do pory dnia w regionie. - <notification - - name="ScriptsNotRunning" - > -Å»adne skrypty nie dziaÅ‚ajÄ… w tym regionie. - </notification> +Kliknij "Zaawansowane Niebo" żeby wybrać bardziej szczegółowy edytor ustawieÅ„ nieba. - <notification - - name="NoOutsideScripts" - > -Ta posiadÅ‚ość nie pozwala na zewnÄ™trzne skrypty. -Å»adne skrypty nie bÄ™dÄ… tutaj dziaÅ‚ać za wyjÄ…tkiem skryptów zleżących do wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. - </notification> +Kliknij "Zaawansowana Woda" żeby wybrać bardziej szczegółowy edytor ustawieÅ„ wody. + </notification> + <notification name="HelpDayCycle"> + Edytor Cyklu Dnia pozwala na kontrolÄ™ nieba podczas cyklu dnia/nocy w Second Life. Ten cykl jest używany przez suwak Pora Dnia w podstawowym Edytorze Åšrodowiska. - <notification - - name="ClaimPublicLand" - > -Tylko publiczne posiadÅ‚oÅ›ci w tym regionie mogÄ… być przejÄ™te. - </notification> +Edytor Cyklu Dnia ustala klatki odniesienia. SÄ… to punkty (widoczne jako szare plamki na wykresie czasu) które majÄ… przypisane Ustawienia Nieba. W miarÄ™ upÅ‚ywu czasu niebo jest animowane używajÄ…c Å›rednich pomiÄ™dzy klatkami odniesienia. - <notification - - name="ObjectGiveItem" - > -Obiekt [OBJECTFROMNAME] należący do [FIRST] [LAST] daÅ‚ Ci [OBJECTTYPE] [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Zachowaj"/> - <button - - name="Discard" - text="Wyrzuć"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> +Żółta strzaÅ‚ka powyżej linii czasu odpowiada biżącemu widokowi opartemu na Porze Dnia. Kliknij i przeciÄ…gnij strzaÅ‚kÄ™ żeby zobaczyć animacjÄ™ w przeciÄ…gu dnia. Możesz dodawać i usuwać klatki odniesienia używająć przycisków Dodaj i UsuÅ„ po prawej stronie linii czasu. - <notification - - name="ObjectGiveItemUnknownUser" - > -Obiekt [OBJECTFROMNAME] należący do (wÅ‚aÅ›ciciel nieznany) daÅ‚ Ci [OBJECTTYPE] [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Zachowaj"/> - <button - - name="Discard" - text="Wyrzuć"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> +DÅ‚ugość Cyklu dyktuje caÅ‚kowitÄ… dÅ‚ugość "dnia". Wybranie maÅ‚ej wartoÅ›ci (na przykÅ‚ad 2 min) oznacza, że Twoja 24-o godzinna linia czasu bÄ™dzie animowana w caÅ‚oÅ›ci w przeciÄ…gu dwóch minut czasu rzeczywistego! Po wybraniu odpowiednich ustawieÅ„ linii czasu i klatek odniesienia użyj przycisków Start i Stop żeby zobaczyć rezultaty. PamiÄ™taj - zawsze możesz używać żółtej strzaÅ‚ki wskażnika czasu powyżej linii czasu żeby zmieniać animacjÄ™ dynamicznie. Użycie przycisku Używaj Czasu Regionu zsynchronizuje TwojÄ… dÅ‚ugość dnia i czas z cyklem Regionu. - <notification - - name="UserGiveItem" - > -[NAME] daÅ‚ Ci [OBJECTTYPE] '[OBJECTNAME]'. - <form name="form"> - <button - - name="Keep" - text="Zachowaj"/> - <button - - name="Discard" - text="Wyrzuć"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> +Po zdefiniowaniu Cyklu Dnia możesz zapisać i zaÅ‚adować ustawienia używajÄ…c przycisków Zapisz Test Dnia i ZaÅ‚aduj Test Dnia. Uwaga, obecnie tylko jeden Cykl Dnia jest dozwolony. + </notification> + <notification name="HelpBlueHorizon"> + Ustaw suwaki Czerwony/Zielony/Niebieski (RGB) żeby zmienić kolor nieba. Możesz używać suwaka Intensywność (I) żeby zmieniać ustawienia suwaków wszystkich kolorów (RGB) jednoczeÅ›nie. + </notification> + <notification name="HelpHazeHorizon"> + Horyzont Zamglenia jest jednym z ważniejszych parametrów kontrolujÄ…cych oÅ›wietlenie sceny. Jest efektywnym do symulacji wielu ustawieÅ„ oÅ›wietlenia takich jak rozbyski sÅ‚oÅ„ca i ciemniejsze ustawienia zamkniÄ™tej przesÅ‚ony. + </notification> + <notification name="HelpBlueDensity"> + GÄ™stość BÅ‚Ä™kitu ma wpÅ‚yw na nasycenie koloru nieba i mgÅ‚y. Jeżeli przesuniesz suwak IntensywnoÅ›ci (I) w prawo kolory bÄ™dÄ… jaÅ›niejsze i żywsze. Jeżeli przesuniesz caÅ‚kowicie w lewo kolory bÄ™dÄ… rozmywać siÄ™ aż do przejÅ›cia w biel i czerÅ„. Jeżeli chcesz precyzyjnie kontrolować balans koloru nieba możesz używać suwaków kolorów Czerwony/Zielony/Niebieski (RGB) w celu zmiany nasycenia indywidualnych skÅ‚adników. + </notification> + <notification name="HelpHazeDensity"> + GÄ™stość Zamglenia kontroluje zawartość mÄ™tnego, szarego zamglenia w atmosferze. Jest to przydatne do symulacji scen z dużą iloÅ›ciÄ… dymu i zanieczyszczeÅ„. +Oraz do symulacji mgÅ‚y i zamgleÅ„. + </notification> + <notification name="HelpDensityMult"> + Mnożnik GÄ™stoÅ›ci wpÅ‚ywa na gÄ™stość atmosfery w caÅ‚oÅ›ci. Niskie ustawienie sprawia wrażenie lekkiego powietrza, wyższe ustawienia tworzÄ… bardzo ciężki, zamglony efekt. + </notification> + <notification name="HelpDistanceMult"> + Mnożnik Dystansu wpÅ‚ywa na postrzeganie dystansu. Wartość zero niweluje wpÅ‚yw dystansu na wyglÄ…d terenu i obiektów. +WartoÅ›ci wiÄ™ksze od 1 symulujÄ… wiÄ™kszy dystans tworzÄ…c silniejszy efekt atmosferyczny. + </notification> + <notification name="HelpMaxAltitude"> + Max Wysokość wpÅ‚ywa na obliczanie Å›wiatÅ‚a atmosferycznego. +O póżniejszych porach dnia ta wartość jest przydatna do regulacji percepcji dystansu zachodÄ…cego sÅ‚oÅ„ca. + </notification> + <notification name="HelpSunlightColor"> + Reguluje kolor i intensywność bezpoÅ›redniego Å›wiatÅ‚a w scenie. + </notification> + <notification name="HelpSunAmbient"> + Reguluje kolor i intensywność rozproszonego Å›wiatÅ‚a atmosferycznego w scenie. + </notification> + <notification name="HelpSunGlow"> + Suwak Rozmiar kontroluje wielkość sÅ‚oÅ„ca. +Suwak Ostrość kontroluje ostrość sÅ‚oÅ„ca na niebie. + </notification> + <notification name="HelpSceneGamma"> + Reguluje dystrybucjÄ™ Å›wiatÅ‚a i cienia na ekranie. + </notification> + <notification name="HelpStarBrightness"> + Reguluje blask gwiazd na niebie. + </notification> + <notification name="HelpTimeOfDay"> + Kontroluje pozycjÄ™ sÅ‚oÅ„ca na niebie. +Zbliżone do wysokoÅ›ci. + </notification> + <notification name="HelpEastAngle"> + Kontroluje pozycjÄ™ sÅ‚oÅ„ca na niebie. +Zbliżone do azymutu. + </notification> + <notification name="HelpCloudColor"> + Kontroluje kolor chmur. Generalnie powinny być biaÅ‚awe, ale hej, pobaw siÄ™ jeżeli masz ochotÄ™. + </notification> + <notification name="HelpCloudDetail"> + Kontroluje szczegółowy obraz naÅ‚ożony na górÄ™ głównego obrazu chmur. X i Y kontrolujÄ… jego pozycjÄ™. G (GÄ™stość) kontroluje jak puchate lub postrzÄ™pione sÄ… chmury. + </notification> + <notification name="HelpCloudDensity"> + Suwaki X i Y kontrolujÄ… pozycjÄ™ chmur. +Suwak G (GÄ™stość) kontroluje gÄ™stość chmur. + </notification> + <notification name="HelpCloudCoverage"> + Kontroluje ilość chmur pokrywajÄ…cych niebo. + </notification> + <notification name="HelpCloudScale"> + Kontroluje skalÄ™ obrazu chmur na kopule nieba. + </notification> + <notification name="HelpCloudScrollX"> + Kontroluje prÄ™dkość przemieszczania chmur wzdÅ‚uż osi X. + </notification> + <notification name="HelpCloudScrollY"> + Kontroluje prÄ™dkość przemieszczania chmur wzdÅ‚uż osi Y. + </notification> + <notification name="HelpClassicClouds"> + Wybierz tÄ… opcjÄ™ w celu używania dodatkowo starszej, klasycznej wersji chmur Second Life. + </notification> + <notification name="HelpWaterFogColor"> + Kontroluje kolor podwodnej mgÅ‚y. + </notification> + <notification name="HelpWaterFogDensity"> + Kontroluje gÄ™stość mgÅ‚y i gÅ‚Ä™bie wizji pod wodÄ…. + </notification> + <notification name="HelpUnderWaterFogMod"> + Modyfikuje wpÅ‚yw wykÅ‚adnika gÄ™stoÅ›ci mgÅ‚y na gÅ‚Ä™bie wizji awatara pod wodÄ…. + </notification> + <notification name="HelpWaterGlow"> + Kontroluje emisjÄ™ Å›wiatÅ‚a z powierzchni wody. + </notification> + <notification name="HelpWaterNormalScale"> + Kontroluje skalÄ™ trzech zmarszczeÅ„ które tworzÄ… wodÄ™. + </notification> + <notification name="HelpWaterFresnelScale"> + Kontroluje jak dużo Å›wiatÅ‚a jest odbijane pod różnymi kÄ…tami. + </notification> + <notification name="HelpWaterFresnelOffset"> + Kontroluje jak dużo intensywnoÅ›ci Å›wiatÅ‚a jest odbijane. + </notification> + <notification name="HelpWaterScaleAbove"> + Kontroluje jak dużo Å›wiatÅ‚a odbija siÄ™ od górnej powierzchni wody. + </notification> + <notification name="HelpWaterScaleBelow"> + Kontroluje jak dużo Å›wiatÅ‚a odbija siÄ™ od dolnej powierzchni wody. + </notification> + <notification name="HelpWaterBlurMultiplier"> + Kontroluje jak fale i odbicia sÄ… mieszane. + </notification> + <notification name="HelpWaterNormalMap"> + Kontroluje która mapa normalnych jest używana w wodzie do okreÅ›lania odbić/zaÅ‚amaÅ„. + </notification> + <notification name="HelpWaterWave1"> + Kontroluje gdzie i jak szybko duża wersja mapy normalnych przemieszcza siÄ™ wzdÅ‚uż osi X i Y. + </notification> + <notification name="HelpWaterWave2"> + Kontroluje gdzie i jak szybko maÅ‚a wersja mapy normalnych przemieszcza siÄ™ wzdÅ‚uż osi X i Y. + </notification> + <notification name="NewSkyPreset"> + Nazwij nowe niebo. + <form name="form"> + <input name="message" type="text"> + Nowe Ustawienie + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + Ustawienie już istnieje! + </notification> + <notification name="NewWaterPreset"> + Nazwij nowe ustawienie wody. + <form name="form"> + <input name="message" type="text"> + Nowe Ustawienie + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + Ustawienie już istnieje! + </notification> + <notification name="WaterNoEditDefault"> + DomyÅ›le ustawienie nie może być zmienione ani usuniÄ™te. + </notification> + <notification name="ChatterBoxSessionStartError"> + BÅ‚Ä…d podczas rozpoczynania czatu/IM z [RECIPIENT]. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + Twój czat/IM z [NAME] zostanie zamkniÄ™ty. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + Rzeczy nie mogÄ… być kupione jeżeli + sÄ… częściÄ… zaÅ‚Ä…cznika. + </notification> + <notification label="ProÅ›ba o ZgodÄ™ na Pobieranie L$" name="DebitPermissionDetails"> + AkceptujÄ…c tÄ… proÅ›bÄ™ wyrażasz zgodÄ™ na ciÄ…gÅ‚e pobieranie Lindenów (L$) z Twojego konta. Å»eby cofnąć to pozwolenie wÅ‚aÅ›ciciel obiektu bÄ™dzie musiaÅ‚ usunąć ten obiekt albo zresetowć skrypty obieku. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + Czy chcesz automatycznie nosić ubranie które tworzysz? + <usetemplate ignoretext="Automatycznie noÅ› nowe ubranie" name="okcancelignore" notext="Nie" yestext="Tak"/> + </notification> + <notification name="NotAgeVerified"> + Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak weryfikacji Twojego wieku. +Czy chcesz odwiedzić stronÄ™ Second Life żeby to zmienić? - <notification - - name="GodMessage" - > -[NAME] -[MESSAGE] - </notification> +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/verification.php + </url> + <usetemplate ignoretext="Ostrzegaj o braku weryfikacji wieku" name="okcancelignore" notext="Nie" yestext="Tak"/> + </notification> + <notification name="Cannot enter parcel: no payment info on file"> + Nie masz dostÄ™pu do tej posiadÅ‚oÅ›ci ze wzglÄ™du na brak danych o Twoim koncie. +Czy chcesz odwiedzić stronÄ™ Second Life żeby to zmienić? - <notification - - name="JoinGroup" - > +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/ + </url> + <usetemplate ignoretext="Ostrzegaj o braku danych konta" name="okcancelignore" notext="Nie" yestext="Tak"/> + </notification> + <notification name="MissingString"> + Zdanie [STRING_NAME] nie znalezione w strings.xml + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + Anulowane + </notification> + <notification name="CancelledSit"> + Siadanie Anulowane + </notification> + <notification name="CancelledAttach"> + DoÅ‚Ä…czenie Anulowane + </notification> + <notification name="ReplacedMissingWearable"> + BarkujÄ…ce ubranie/części ciaÅ‚a zastÄ…piono domyÅ›lnymi obiektami. + </notification> + <notification name="GroupNotice"> + Temat: [SUBJECT], Treść: [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] jest w Second Life + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] opuszcza Second Life + </notification> + <notification name="AddSelfFriend"> + Nie możesz dodać siebie do listy znajomych. + </notification> + <notification name="UploadingAuctionSnapshot"> + Åadowanie obrazu z Internetu... +(Zajmuje okoÅ‚o 5 minut.) + </notification> + <notification name="UploadPayment"> + Åadowanie kosztowaÅ‚o [AMOUNT]L$. + </notification> + <notification name="UploadWebSnapshotDone"> + Åadowanie obrazu z Internetu zakoÅ„czne pomyÅ›lnie. + </notification> + <notification name="UploadSnapshotDone"> + Åadowanie zdjÄ™cia zakoÅ„czone pomyÅ›lnie. + </notification> + <notification name="TerrainDownloaded"> + Plik terrain.raw Å›ciÄ…gniety. + </notification> + <notification name="GestureMissing"> + Gest [NAME] nie znaleziony w bazie danych. + </notification> + <notification name="UnableToLoadGesture"> + Åadowanie gestu [NAME] nie powiodÅ‚o siÄ™. +Spróbuj jeszcze raz. + </notification> + <notification name="LandmarkMissing"> + Miejsce (LM) nie znalezione w bazie danych. + </notification> + <notification name="UnableToLoadLandmark"> + Åadowanie miejsca (LM) nie powiodÅ‚o siÄ™. +Spróbuj jeszcze raz. + </notification> + <notification name="CapsKeyOn"> + Twój Caps Lock jest wÅ‚Ä…czony. +Ponieważ to ma wpÅ‚yw na wpisywane hasÅ‚o, możesz chcieć go wyÅ‚Ä…czyć. + </notification> + <notification name="NotecardMissing"> + Notka nie znaleziona w bazie danych. + </notification> + <notification name="NotecardNoPermissions"> + Nie masz pozwolenia na zobaczenie notki. + </notification> + <notification name="RezItemNoPermissions"> + Nie masz pozwolenia na stworzenie obiektu. + </notification> + <notification name="UnableToLoadNotecard"> + Nie można zaÅ‚adować danych notki w tym momencie. + </notification> + <notification name="ScriptMissing"> + Skrypt nie znaleziony w bazie danych. + </notification> + <notification name="ScriptNoPermissions"> + Nie masz pozwolenia na zobaczenie skryptu. + </notification> + <notification name="UnableToLoadScript"> + Åadowanie skryptu nie powiodÅ‚o siÄ™. +Spróbuj jeszcze raz. + </notification> + <notification name="IncompleteInventory"> + Zawartość obiektów którÄ… chcesz podarować nie jest dostÄ™pna lokalnie. Spróbuj podarować te obiekty jeszcze raz za jakiÅ› czas. + </notification> + <notification name="CannotModifyProtectedCategories"> + Nie możesz zmienić chronionych kategorii. + </notification> + <notification name="CannotRemoveProtectedCategories"> + Nie możesz usunąć chronionych kategorii. + </notification> + <notification name="OfferedCard"> + [FIRST] [LAST] daje Ci swojÄ… wizytówkÄ™ + </notification> + <notification name="UnableToBuyWhileDownloading"> + Nie można kupować w trakcie Å‚adowania danych obiektu. +Spróbuj jeszcze raz. + </notification> + <notification name="UnableToLinkWhileDownloading"> + Nie można Å‚Ä…czyć w trakcie Å‚adowania danych obiektu. +Spróbuj jeszcze raz. + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + Nie możesz jednoczeÅ›nie kupować obiektów od różnych osób. +Wybierz jeden obiekt. + </notification> + <notification name="ObjectNotForSale"> + Obiekt nie jest na sprzedaż. + </notification> + <notification name="EnteringGodMode"> + WÅ‚Ä…cznie trybu boskiego, poziom [LEVEL] + </notification> + <notification name="LeavingGodMode"> + WyÅ‚Ä…czanie trybu boskiego, poziom [LEVEL] + </notification> + <notification name="CopyFailed"> + Kopiowanie siÄ™ nie powiodÅ‚o - nie masz pozwolenia + </notification> + <notification name="InventoryAccepted"> + Podarunek od Ciebie zostaÅ‚ przyjÄ™ty przez [NAME]. + </notification> + <notification name="InventoryDeclined"> + Podarunek od Ciebie zostaÅ‚ odrzucony przez [NAME]. + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + Twoja wizytówka zostaÅ‚a przyjÄ™ta. + </notification> + <notification name="CallingCardDeclined"> + Twoja wizytówka zostaÅ‚a odrzucona. + </notification> + <notification name="TeleportToLandmark"> + JesteÅ› w Głównym Regionie i możesz siÄ™ stÄ…d teleportować do innych miejsc jak '[NAME]' wybierajÄ…c Moja Szafa w prawym dolnym rogu ekranu i wybierajÄ…c folder Miejsca (LM). +Kliknij dwa razy na miejsce (LM) i wybierz Teleportuj żeby tam siÄ™ przenieść. + </notification> + <notification name="TeleportToPerson"> + JesteÅ› w Głównym Regionie i możesz komunikować siÄ™ z innymi Rezydentami jak '[NAME]' wybierajÄ…c Moja Szafa w prawym dolnym rogu ekranu i wybierajÄ…c folder Wizytówki. +Kliknij dwa razy na wizytówce, wybierz WyÅ›lij IM i napisz wiadomość. + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + Nie możesz przekraczać granic serwera wybierajÄ…c obszar. +Spróbuj wybrać mniejszy obszar. + </notification> + <notification name="SearchWordBanned"> + Pewne frazy podczas wyszukiwania zostaÅ‚y usuniÄ™te w zwiÄ…zku z restrykcjami zawartymi w Standardach SpoÅ‚ecznoÅ›ciowych (Community Standards). + </notification> + <notification name="NoContentToSearch"> + ProszÄ™ wybrać przynajmiej jeden z podanych rodzajów treÅ›ci jakÄ… zawiera region podczas wyszukiwania ('PG', 'Mature', lub 'Adult'). + </notification> + <notification name="GroupVote"> + [NAME] zaprasza do gÅ‚osowania nad propozycjÄ…: [MESSAGE] - <form name="form"> - <button - - name="Join" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - <button - - name="Info" - text="Info"/> - </form> - </notification> + <form name="form"> + <button name="VoteNow" text="GÅ‚osuj Teraz"/> + <button name="Later" text="Później"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + Zawiadomienie o Imprezie: - <notification - - name="TeleportOffered" - > -[NAME] proponuje Ci teleportcjÄ™ do siebie: +[NAME] +[DATE] + <form name="form"> + <button name="Teleport" text="Teleportuj"/> + <button name="Description" text="Opis"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + Obiekty na tej posiadÅ‚oÅ›ci które zostanÄ… przekazane kupcowi tej posiadÅ‚oÅ›ci sÄ… teraz rozjaÅ›nione. +* Drzewa i trawy które zostanÄ… przekazne nie sÄ… rozjaÅ›nione. + <form name="form"> + <button name="Done" text="Zastosuj"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + Zablokowane gesty z jednakowym aktywowaniem: +[NAMES] + </notification> + <notification name="NoQuickTime"> + WyglÄ…da na to, że QuickTime z Apple nie jest zainstalowany na Twoim komputerze. +Jeżeli chcesz odtwarzać media na tej posiadÅ‚oÅ›ci które używajÄ… QuickTime idź do http://www.apple.com/quicktime i zainstaluj odtwarzacz. + </notification> + <notification name="OwnedObjectsReturned"> + Twoje obiekty z wybranej posiadÅ‚oÅ›ci zostaÅ‚y zwrócone do Twojej Szafy. + </notification> + <notification name="OtherObjectsReturned"> + Obiekty należące do [FIRST] [LAST] na wybranej posiadÅ‚oÅ›ci zostaÅ‚y zwrócone do szafy tej osoby. + </notification> + <notification name="OtherObjectsReturned2"> + Obiekty z wybranej posiadÅ‚oÅ›ci należącej do Rezydenta '[NAME]' zostaÅ‚y zwrócone do ich wÅ‚aÅ›ciciela. + </notification> + <notification name="GroupObjectsReturned"> + Obiekty z wybranej posiadÅ‚oÅ›ci przypisane do grupy [GROUPNAME] zostaÅ‚y zwrócone do szafy ich wÅ‚aÅ›cicieli. +Przekazywalne obiekty przekazne grupie zostaÅ‚y zwrócone do ich poprzednich wÅ‚aÅ›cicieli. +Nieprzekazywalne obiekty przekazane grupie zostaÅ‚y usuniÄ™te. + </notification> + <notification name="UnOwnedObjectsReturned"> + Obiekty z wybranej posiadÅ‚oÅ›ci które nie należą do Ciebie zostaÅ‚y zwrócone do ich wÅ‚aÅ›cicieli. + </notification> + <notification name="NotSafe"> + Ta posiadÅ‚ość pozwala na uszkodzenia. +Możesz doznać tutaj urazu. Jeżeli zginiesz nastÄ…pi teleportacja do Twojego miejsca startu. + </notification> + <notification name="NoFly"> + Ta posiadÅ‚ość nie pozwala na latanie. +Nie możesz tutaj latać. + </notification> + <notification name="PushRestricted"> + Popychanie niedozwolone. +Nie możesz tutaj popychać innych, chyba, że jesteÅ› wÅ‚aÅ›cicielem tej posiadÅ‚oÅ›ci. + </notification> + <notification name="NoVoice"> + Ta posiadÅ‚ość nie pozwala na rozmowy. + </notification> + <notification name="NoBuild"> + Ta posiadÅ‚ość nie pozwala na budowanie. +Nie możesz tworzyć tutaj obiektów. + </notification> + <notification name="ScriptsStopped"> + Administrator czasowo zatrzymaÅ‚ skrypty w tym regionie. + </notification> + <notification name="ScriptsNotRunning"> + Å»adne skrypty nie dziaÅ‚ajÄ… w tym regionie. + </notification> + <notification name="NoOutsideScripts"> + Ta posiadÅ‚ość nie pozwala na zewnÄ™trzne skrypty. +Å»adne skrypty nie bÄ™dÄ… tutaj dziaÅ‚ać za wyjÄ…tkiem skryptów zleżących do wÅ‚aÅ›ciciela posiadÅ‚oÅ›ci. + </notification> + <notification name="ClaimPublicLand"> + Tylko publiczne posiadÅ‚oÅ›ci w tym regionie mogÄ… być przejÄ™te. + </notification> + <notification name="RegionTPAccessBlocked"> + Ze wzglÄ™du na Twój wiek, nie jesteÅ› uprawniony do przebywania w tym regionie. Możesz potrzebować weryfikacji wieku bÄ…dź instalacji najnowszej wersji klienta. + +Skorzystaj z Second Life:Pomoc by uzyskać wiÄ™cej informacji na temat dostÄ™pu do regionów z podanym rodzajem treÅ›ci jakÄ… zawiera. + </notification> + <notification name="URBannedFromRegion"> + ZostaÅ‚eÅ› zbanowany w regionie. + </notification> + <notification name="NoTeenGridAccess"> + Twoje konto nie może zostać poÅ‚Ä…czone z podanym regionem Teen Grid. + </notification> + <notification name="NoHelpIslandTP"> + Brak możliwoÅ›ci ponownej teleportacji do Help Island. +Odwiedź 'Help Island Public' by powtórzyć szkolenie. + </notification> + <notification name="ImproperPaymentStatus"> + Nie posiadasz odpowiedniego statusu pÅ‚atniczego by uzyskać dostÄ™p do regionu. + </notification> + <notification name="MustGetAgeRgion"> + By odwiedzić ten region, Twoje konto musi zostać poddane weryfikacji wieku. + </notification> + <notification name="MustGetAgeParcel"> + By móc przebywać na tej posiadÅ‚oÅ›ci wymagana jest weryfikacja Twojego wieku. + </notification> + <notification name="NoDestRegion"> + Żądana lokalizacja regionu nie zostaÅ‚a odnaleziona. + </notification> + <notification name="NotAllowedInDest"> + Brak dostÄ™pu do podanej lokalizacji. + </notification> + <notification name="RegionParcelBan"> + Nie możesz przejść przez zamkniÄ™tÄ… posiadÅ‚ość. Spróbuj skorzystać z innej drogi. + </notification> + <notification name="TelehubRedirect"> + ZostaÅ‚eÅ› przeniesiony do teleportera. + </notification> + <notification name="CouldntTPCloser"> + Brak możliwoÅ›ci teleportacji do bliższej lokacji. + </notification> + <notification name="TPCancelled"> + Teleportacja anulowana. + </notification> + <notification name="FullRegionTryAgain"> + Region, który chcesz odwiedzić jest w tej chwili peÅ‚ny. +Spróbuj ponowanie za kilka minut. + </notification> + <notification name="GeneralFailure"> + Nieudana próba. + </notification> + <notification name="RoutedWrongRegion"> + WysÅ‚ano niewÅ‚aÅ›ciwe poÅ‚Ä…czenie do regionu. ProszÄ™ spróbować ponownie. + </notification> + <notification name="NoValidAgentID"> + Nieważny identyfikator agenta. + </notification> + <notification name="NoValidSession"> + Nieważny identyfikator sesji. + </notification> + <notification name="NoValidCircuit"> + Nieważny obwód kodowania. + </notification> + <notification name="NoValidTimestamp"> + NiewÅ‚aÅ›ciwy czas zapisu. + </notification> + <notification name="NoPendingConnection"> + Brak możliwoÅ›ci wykonania poÅ‚Ä…czenia. + </notification> + <notification name="InternalUsherError"> + Podczas teleportacji nastÄ…piÅ‚ bÅ‚Ä…d wewnÄ™trzny, który może być wynikiem problemów serwera. + </notification> + <notification name="NoGoodTPDestination"> + Brak lokalizacji punktu do teleportacji w podanym regionie. + </notification> + <notification name="InternalErrorRegionResolver"> + Podczas próby odnalezienia globalnych współrzÄ™dych dla żądanej teleportacji pojawiÅ‚ siÄ™ wewnÄ™trzny bÅ‚Ä…d. Może być to wynikiem problemów serwera. + </notification> + <notification name="NoValidLanding"> + Nieważny punkt lÄ…dowania. + </notification> + <notification name="NoValidParcel"> + Nieważana posiadÅ‚ość. + </notification> + <notification name="ObjectGiveItem"> + Obiekt [OBJECTFROMNAME] należący do [FIRST] [LAST] daÅ‚ Ci [OBJECTTYPE] [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Zachowaj"/> + <button name="Discard" text="Wyrzuć"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + Obiekt [OBJECTFROMNAME] należący do (wÅ‚aÅ›ciciel nieznany) daÅ‚ Ci [OBJECTTYPE] [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Zachowaj"/> + <button name="Discard" text="Wyrzuć"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME] daÅ‚ Ci [OBJECTTYPE] '[OBJECTNAME]'. + <form name="form"> + <button name="Keep" text="Zachowaj"/> + <button name="Discard" text="Wyrzuć"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="Teleportuj"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + <button name="Info" text="Info"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME] proponuje Ci teleportcjÄ™ do siebie: - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="Teleportuj"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="Póżniej"/> - <button - - name="GoNow..." - text="Teraz..."/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME] proponuje Ci znajomość. + <form name="form"> + <button name="Later" text="Póżniej"/> + <button name="GoNow..." text="Teraz..."/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME] proponuje Ci znajomość. [MESSAGE] (Z zalożenia bÄ™dzie widzić swój status online.) - <form name="form"> - <button - - name="Accept" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME] proponuje Ci znajomość. + <form name="form"> + <button name="Accept" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME] proponuje Ci znajomość. (Z zalożenia bÄ™dzie widzić swój status online.) - <form name="form"> - <button - - name="Accept" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -Twoja propozycja znajomoÅ›ci zostaÅ‚a przyjÄ™ta przez [NAME]. - </notification> - - <notification - - name="FriendshipDeclined" - > -Twoja propozycja znajomoÅ›ci zostaÅ‚a odrzucona przez [NAME]. - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST] daje Ci swojÄ… wizytówkÄ™. + <form name="form"> + <button name="Accept" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + Twoja propozycja znajomoÅ›ci zostaÅ‚a przyjÄ™ta przez [NAME]. + </notification> + <notification name="FriendshipDeclined"> + Twoja propozycja znajomoÅ›ci zostaÅ‚a odrzucona przez [NAME]. + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST] daje Ci swojÄ… wizytówkÄ™. Wizytówka w Twojej Szafie może być używana do komunikowania siÄ™ (IM) z tym Rezydentem. - <form name="form"> - <button - - name="Accept" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -Restart regionu za [MINUTES] min. + <form name="form"> + <button name="Accept" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + Restart regionu za [MINUTES] min. NastÄ…pi wylogowanie jeżeli zostaniesz w tym regionie. - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -Restart regionu za [MINUTES] sek. + </notification> + <notification name="RegionRestartSeconds"> + Restart regionu za [MINUTES] sek. NastÄ…pi wylogowanie jeżeli zostaniesz w tym regionie. - </notification> - - <notification - - name="LoadWebPage" - > -ZaÅ‚adować stronÄ™ [URL]? + </notification> + <notification name="LoadWebPage"> + ZaÅ‚adować stronÄ™ [URL]? [MESSAGE] Obiekt: [OBJECTNAME], wÅ‚aÅ›ciciel: [NAME]? - <form name="form"> - <button - - name="Gotopage" - text="Idź na stronÄ™"/> - <button - - name="Cancel" - text="Anuluj"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -[TYPE] - nie znaleziono w bazie danych. - </notification> - - <notification - - name="FailedToFindWearable" - > -[TYPE] [DESC] - nie znaleziono w bazie danych. - </notification> - - <notification - - name="ScriptQuestion" - > -'[OBJECTNAME]', wÅ‚aÅ›ciciel: '[NAME]', chciaÅ‚ by: + <form name="form"> + <button name="Gotopage" text="ZaÅ‚aduj"/> + <button name="Cancel" text="Anuluj"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + [TYPE] - nie znaleziono w bazie danych. + </notification> + <notification name="FailedToFindWearable"> + [TYPE] [DESC] - nie znaleziono w bazie danych. + </notification> + <notification name="InvalidWearable"> + Obiekt, który chcesz zaÅ‚ożyć używa narzÄ™dzia nieobecnego w wersji klienta, którÄ… używasz. By go zaÅ‚ożyć Å›ciÄ…gnij najnowszÄ… wersjÄ™ klienta Second Life. + </notification> + <notification name="ScriptQuestion"> + '[OBJECTNAME]', wÅ‚aÅ›ciciel: '[NAME]', chciaÅ‚ by: [QUESTIONS] Zgadzasz siÄ™? - <form name="form"> - <button - - name="Yes" - text="Tak"/> - <button - - name="No" - text="Nie"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -'[OBJECTNAME]', wÅ‚aÅ›ciciel: '[NAME]', chciaÅ‚ by: + <form name="form"> + <button name="Yes" text="Tak"/> + <button name="No" text="Nie"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + '[OBJECTNAME]', wÅ‚aÅ›ciciel: '[NAME]', chciaÅ‚ by: [QUESTIONS] Jeżeli nie ufasz temu obiektowi lub jego twórcy - odmów. Wybierz Szczegóły żeby otrzymać wiÄ™cej informacji. Zgadzasz siÄ™? - <form name="form"> - <button - - name="Grant" - text="Zaakceptuj"/> - <button - - name="Deny" - text="Odmów"/> - <button - - name="Details" - text="Szczegóły..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -[FIRST] [LAST]'s '[TITLE]' + <form name="form"> + <button name="Grant" text="Zaakceptuj"/> + <button name="Deny" text="Odmów"/> + <button name="Details" text="Szczegóły..."/> + </form> + </notification> + <notification name="ScriptDialog"> + [FIRST] [LAST]'s '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Zignoruj"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -[GROUPNAME]'s '[TITLE]' + <form name="form"> + <button name="Ignore" text="Zignoruj"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + [GROUPNAME]'s '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Zignoruj"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -Przekazano Ci [AMOUNT]L$. + <form name="form"> + <button name="Ignore" text="Zignoruj"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + Przekazano Ci [AMOUNT]L$. Obiekty i inni użytkownicy mogÄ… Ci dawać L$. Twój balans jest wyÅ›wietlony w prawym górnym rogu ekranu. - </notification> - - <notification - - name="FirstBalanceDecrease" - > -Pobrano od Ciebie [AMOUNT]L$. + </notification> + <notification name="FirstBalanceDecrease"> + Pobrano od Ciebie [AMOUNT]L$. Twój balans jest wyÅ›wietlony w prawym górnym rogu ekranu. - </notification> - - <notification - - name="FirstSit" - > -Siedzisz. + </notification> + <notification name="FirstSit"> + Siedzisz. Używaj strzaÅ‚ek (albo AWSD) żeby zmieniać widok. NaciÅ›nij przycisk WstaÅ„ żeby sie podnieść. - </notification> - - <notification - - name="FirstMap" - > -Kliknij i przeciÄ…gnij by przsuwać mapÄ™. + </notification> + <notification name="FirstMap"> + Kliknij i przeciÄ…gnij by przsuwać mapÄ™. Kliknij dwa razy żeby siÄ™ teleportować. Używaj narzÄ™dzi po prawej stronie żeby znajdować i wyÅ›wietlać różne obiekty. - </notification> - - <notification - - name="FirstBuild" - > -Możesz budować nowe obiekty w niektórych miejscach. + </notification> + <notification name="FirstBuild"> + Możesz budować nowe obiekty w niektórych miejscach. Używaj narzÄ™dzi w lewym górnym rogu żeby budować, przyciskaj Ctrl lub Alt żeby szybko zmieniać narzÄ™dzia. NaciÅ›nij Esc żeby skoÅ„czyć budować. - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -Lewy klik żeby używać specjalnych obiektów. + </notification> + <notification name="FirstLeftClickNoHit"> + Lewy klik żeby używać specjalnych obiektów. Jeżeli strzaÅ‚ka zmieni siÄ™ na rÄ…czkÄ™ możesz używać tego obiektu. Prawy klik zawsze pokazuje menu dostÄ™pnych operacji. - </notification> - - <notification - - name="FirstTeleport" - > -NastÄ…piÅ‚a teleportacja. + </notification> + <notification name="FirstTeleport"> + NastÄ…piÅ‚a teleportacja. JesteÅ› przy Infohub najbliższej Twojego celu. Twój cel jest zaznaczony wysokim czerwonym wskaźnikiem. - </notification> - - <notification - - name="FirstOverrideKeys" - > -Twoje sterujÄ…ce klawisze zostaÅ‚y przejÄ™te przez obiekt. + </notification> + <notification name="FirstOverrideKeys"> + Twoje sterujÄ…ce klawisze zostaÅ‚y przejÄ™te przez obiekt. Użyj strzaÅ‚ek lub AWSD żeby sprawdzić ich dziaÅ‚anie. Niektóre obiekty (np broÅ„) wymagajÄ… trybu panoramicznego. Nacisnij 'M' żeby go wybrać. - </notification> - - <notification - - name="FirstAppearance" - > -Edytujesz swój wyglÄ…d. + </notification> + <notification name="FirstAppearance"> + Edytujesz swój wyglÄ…d. Używaj strzaÅ‚ek do obracania i zbliżenia. Po skoÅ„czeniu wybierz 'Zapisz Zmiany' żeby zapisać Twój wyglÄ…d i wyjść. Możesz edytować wyglÄ…d jak czÄ™sto chcesz. - </notification> - - <notification - - name="FirstInventory" - > -To jest Twoja Szafa, który zawiera obikty, notki, ubrania i inne Twoje rzeczy. + </notification> + <notification name="FirstInventory"> + To jest Twoja Szafa, który zawiera obikty, notki, ubrania i inne Twoje rzeczy. * Å»eby zaÅ‚ożyć obiekt lub strój (folder) przeciÄ…gnij go na siebie. * Å»eby przenieść obiekt do Å›wiata przeciÄ…gnij go na grunt. * Å»eby przeczytać notkÄ™ kliknij na niej dwa razy. - </notification> - - <notification - - name="FirstSandbox" - > -Ten region to piaskownica. + </notification> + <notification name="FirstSandbox"> + Ten region to piaskownica. Obiekty które tu zbudujesz mogÄ… zostać usuniÄ™te jak opuÅ›cisz ten obszar - piaskownice sÄ… regularnie czyszczone, sprawdź informacje na górze ekranu obok nazwy regionu. Piaskownice spotyka siÄ™ rzadko i sÄ… zawsze oznakowane. - </notification> - - <notification - - name="FirstFlexible" - > -To jest elastyczny obiekt. + </notification> + <notification name="FirstFlexible"> + To jest elastyczny obiekt. Obiekty elastyczne nie mogÄ… być fizyczne i muszÄ… być typu fantom. - </notification> - - <notification - - name="FirstDebugMenus" - > -Zaawansowane menu zostaÅ‚o wÅ‚Ä…czone. + </notification> + <notification name="FirstDebugMenus"> + Zaawansowane menu zostaÅ‚o wÅ‚Ä…czone. To menu zawiera funkcje użyteczne dla programistów analizujÄ…cych Secon Life. To menu jest wÅ‚Ä…czne przez Ctrl-Alt-D pod Windows. Mac używa Cmd-Opt-Shift-D. - </notification> - - <notification - - name="FirstSculptedPrim" - > -Edytujesz sculpt. + </notification> + <notification name="FirstSculptedPrim"> + Edytujesz sculpt. Skulpty wymagajÄ… specjalnych tekstur które definiujÄ… ich ksztaÅ‚t. PrzykÅ‚ady tekstur znajdujÄ… siÄ™ w bibliotece szafy. - </notification> - - <notification - - name="FirstMedia" - > -Odtwarzasz media. Możesz wybrać automatyczne odtwarzanie w Ustawieniach pod Audio i Video. Odtwarzanie mediów w miejscach którym nie ufasz może być niebezpieczne. - </notification> - - <notification - - name="MaxListSelectMessage" - > -Maksymalnie możesz wybrać [MAX_SELECT] rzeczy + </notification> + <notification name="FirstMedia"> + Odtwarzasz media. Możesz wybrać automatyczne odtwarzanie w Ustawieniach pod Audio i Video. Odtwarzanie mediów w miejscach którym nie ufasz może być niebezpieczne. + </notification> + <notification name="MaxListSelectMessage"> + Maksymalnie możesz wybrać [MAX_SELECT] rzeczy z tej listy. - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME] zaprasza CiÄ™ do rozmowy gÅ‚osem. + </notification> + <notification name="VoiceInviteP2P"> + [NAME] zaprasza CiÄ™ do rozmowy gÅ‚osem. Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. Wybierz Wycisz żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. - <form name="form"> - <button - - name="Accept" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -Wiadomość (IM) zostaÅ‚a wysÅ‚ana do [FIRST] [LAST] i wyciszenie zostaÅ‚o automatycznie usuniÄ™te. - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -PieniÄ…dze zostaÅ‚y przekazane do [FIRST] [LAST] i wyciszenie zostaÅ‚o automatycznie usuniÄ™te. - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -Oferta z szafy dla [FIRST] [LAST] automatycznie usunęła wyciszenie. - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME] zaczyna rozmowÄ™ z grupÄ… [GROUP]. + <form name="form"> + <button name="Accept" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + Wiadomość (IM) zostaÅ‚a wysÅ‚ana do [FIRST] [LAST] i wyciszenie zostaÅ‚o automatycznie usuniÄ™te. + </notification> + <notification name="AutoUnmuteByMoney"> + PieniÄ…dze zostaÅ‚y przekazane do [FIRST] [LAST] i wyciszenie zostaÅ‚o automatycznie usuniÄ™te. + </notification> + <notification name="AutoUnmuteByInventory"> + Oferta z szafy dla [FIRST] [LAST] automatycznie usunęła wyciszenie. + </notification> + <notification name="VoiceInviteGroup"> + [NAME] zaczyna rozmowÄ™ z grupÄ… [GROUP]. Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. Wybierz Wycisz żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. - <form name="form"> - <button - - name="Accept" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME] zaczyna konferencjÄ™ gÅ‚osem. + <form name="form"> + <button name="Accept" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME] zaczyna konferencjÄ™ gÅ‚osem. Wybierz Zaakceptuj żeby rozmawiać albo Odmów żeby nie przyjąć zaproszenia. Wybierz Wycisz żeby wyciszyć dzwoniÄ…cÄ… osobÄ™. - <form name="form"> - <button - - name="Accept" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME] zaprasza CiÄ™ do konferencji poprzez Czat/IM. + <form name="form"> + <button name="Accept" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME] zaprasza CiÄ™ do konferencji poprzez Czat/IM. Wybierz Zaakceptuj żeby zacząć czat albo Odmów żeby nie przyjąć zaproszenia. Wybierz Wycisz żeby wyciszyć tÄ… osobÄ™. - <form name="form"> - <button - - name="Accept" - text="Zaakceptuj"/> - <button - - name="Decline" - text="Odmów"/> - <button - - name="Mute" - text="Wycisz"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -Rozmowa w której chcesz uczestniczyć, [VOICE_CHANNEL_NAME], nie akceptuje wiÄ™cej rozmówców. Spróbuj póżniej. - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -Przepraszamy. Limit rozmów zostaÅ‚ przekroczony w tym obszarze. Spróbuj w innym miejscu. - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -[VOICE_CHANNEL_NAME] odÅ‚Ä…czyÅ‚ siÄ™. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME] skoÅ„czyÅ‚ rozmowÄ™. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME] odmówiÅ‚ poÅ‚Ä…czenia. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME] nie odpowiada. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -Brak poÅ‚Ä…czenia z [VOICE_CHANNEL_NAME], spróbuj póżniej. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. - </notification> - - <notification - - name="VoiceLoginRetry" - > -Tworzymy kanaÅ‚ gÅ‚osu dla Ciebie. Moze potrwać minutÄ™. - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -Nie masz dostÄ™pu do posiadÅ‚oÅ›ci, nie należysz do wÅ‚aÅ›ciwej grupy. - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -Masz wzbroniny dostÄ™p to tej posiadÅ‚oÅ›ci (ban). - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -Nie masz dostÄ™pu do posiadÅ‚oÅ›ci, nie jesteÅ› na liÅ›cie dostÄ™pu. - </notification> - - <notification - - name="VoiceNotAllowed" - > -Nie masz pozwolenia na poÅ‚Ä…czenie z rozmowÄ… [VOICE_CHANNEL_NAME]. - </notification> - - <notification - - name="VoiceCallGenericError" - > -BÅ‚Ä…d podczas Å‚Ä…czenia z rozmowÄ… [VOICE_CHANNEL_NAME]. Spróbuj póżniej. - </notification> - - <notification - - name="ServerVersionChanged" - > -Ten region używa innej wersji symulatora. Kliknij na tÄ… wiadomość żeby uzyskać wiÄ™cej informacji. - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -Wybrany link nie daje siÄ™ otworzyć z tej przeglÄ…darki. - </notification> - - <global name="UnsupportedCPU"> -- PrÄ™dkość Twojego CPU nie speÅ‚nia minimalnych wymagaÅ„. - </global> - - <global name="UnsupportedGLRequirements"> -WyglÄ…da na to, że Twój system nie speÅ‚nia wymagaÅ„ sprzÄ™towych Second Life. Second Life wymaga karty graficznej kompatybilnej z OpenGL z multiteksturami. Jeżeli masz takÄ… kartÄ™ zainstaluj najnowsze sterowniki do niej i uaktualnienia systemu operacyjnego. + <form name="form"> + <button name="Accept" text="Zaakceptuj"/> + <button name="Decline" text="Odmów"/> + <button name="Mute" text="Wycisz"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + Rozmowa w której chcesz uczestniczyć, [VOICE_CHANNEL_NAME], nie akceptuje wiÄ™cej rozmówców. Spróbuj póżniej. + </notification> + <notification name="ProximalVoiceChannelFull"> + Przepraszamy. Limit rozmów zostaÅ‚ przekroczony w tym obszarze. Spróbuj w innym miejscu. + </notification> + <notification name="VoiceChannelDisconnected"> + [VOICE_CHANNEL_NAME] odÅ‚Ä…czyÅ‚ siÄ™. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME] skoÅ„czyÅ‚ rozmowÄ™. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME] odmówiÅ‚ poÅ‚Ä…czenia. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME] nie odpowiada. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. + </notification> + <notification name="VoiceChannelJoinFailed"> + Brak poÅ‚Ä…czenia z [VOICE_CHANNEL_NAME], spróbuj póżniej. PrzeÅ‚Ä…czanie do rozmowy przestrzennej. + </notification> + <notification name="VoiceLoginRetry"> + Tworzymy kanaÅ‚ gÅ‚osu dla Ciebie. Moze potrwać minutÄ™. + </notification> + <notification name="Cannot enter parcel: not a group member"> + Nie masz dostÄ™pu do posiadÅ‚oÅ›ci, nie należysz do wÅ‚aÅ›ciwej grupy. + </notification> + <notification name="Cannot enter parcel: banned"> + Masz wzbroniny dostÄ™p to tej posiadÅ‚oÅ›ci (ban). + </notification> + <notification name="Cannot enter parcel: not on access list"> + Nie masz dostÄ™pu do posiadÅ‚oÅ›ci, nie jesteÅ› na liÅ›cie dostÄ™pu. + </notification> + <notification name="VoiceNotAllowed"> + Nie masz pozwolenia na poÅ‚Ä…czenie z rozmowÄ… [VOICE_CHANNEL_NAME]. + </notification> + <notification name="VoiceCallGenericError"> + BÅ‚Ä…d podczas Å‚Ä…czenia z rozmowÄ… [VOICE_CHANNEL_NAME]. Spróbuj póżniej. + </notification> + <notification name="ServerVersionChanged"> + Ten region używa innej wersji symulatora. Kliknij na tÄ… wiadomość żeby uzyskać wiÄ™cej informacji. + </notification> + <notification name="UnableToOpenCommandURL"> + Wybrany link nie daje siÄ™ otworzyć z tej przeglÄ…darki. + </notification> + <global name="UnsupportedCPU"> + - PrÄ™dkość Twojego CPU nie speÅ‚nia minimalnych wymagaÅ„. + </global> + <global name="UnsupportedGLRequirements"> + WyglÄ…da na to, że Twój system nie speÅ‚nia wymagaÅ„ sprzÄ™towych Second Life. Second Life wymaga karty graficznej kompatybilnej z OpenGL z multiteksturami. Jeżeli masz takÄ… kartÄ™ zainstaluj najnowsze sterowniki do niej i uaktualnienia systemu operacyjnego. Jeżeli wciąż masz problemy sprawdź: http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- Twoja karta graficzna nie speÅ‚nia minimalnych wymagaÅ„. - </global> - - <global name="UnsupportedRAM"> -- Pamięć Twojego systemu nie speÅ‚nia minimalnych wymagaÅ„. - </global> - - <global name="PermYes"> -Tak - </global> - - <global name="PermNo"> -Nie - </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - Twoja karta graficzna nie speÅ‚nia minimalnych wymagaÅ„. + </global> + <global name="UnsupportedRAM"> + - Pamięć Twojego systemu nie speÅ‚nia minimalnych wymagaÅ„. + </global> + <global name="PermYes"> + Tak + </global> + <global name="PermNo"> + Nie + </global> </notifications> - diff --git a/indra/newview/skins/default/xui/pl/panel_audio_device.xml b/indra/newview/skins/default/xui/pl/panel_audio_device.xml index a2383404fc082ade73b091d268ac3141828c2b00..ad30dfbacb473f623766979cb145988d083f56d1 100755 --- a/indra/newview/skins/default/xui/pl/panel_audio_device.xml +++ b/indra/newview/skins/default/xui/pl/panel_audio_device.xml @@ -13,7 +13,7 @@ Poziom WejÅ›cia </text> <text_editor type="string" length="1" name="voice_intro_text1"> - Użyj suwaka by dostosować jak gÅ‚osno CiÄ™ sÅ‚ychać dla innych Rezydentów. By przetestować poziom wejÅ›cia, zacznij mówić do mikrofonu. + Użyj suwaka by dostosować jak gÅ‚oÅ›no CiÄ™ sÅ‚ychać dla innych Rezydentów. By przetestować poziom wejÅ›cia, zacznij mówić do mikrofonu. </text_editor> <volume_slider name="mic_volume_slider" tool_tip="By zmienić poziom gÅ‚oÅ›noÅ›ci użyj suwaka" /> diff --git a/indra/newview/skins/default/xui/pl/panel_friends.xml b/indra/newview/skins/default/xui/pl/panel_friends.xml index d58aa897db1780e8789a91cd5a7f54193af6774b..b6df36f19952fc71aec5e779949ecc2dbe41d98b 100755 --- a/indra/newview/skins/default/xui/pl/panel_friends.xml +++ b/indra/newview/skins/default/xui/pl/panel_friends.xml @@ -12,7 +12,7 @@ <column name="icon_visible_map" tool_tip="Ta osoba może zlokalizować CiÄ™ na mapie" /> <column name="icon_edit_mine" - tool_tip="Ta osoba może edytować, usunąć lub wziąść Twoje obiekty" /> + tool_tip="Ta osoba może edytować, usunąć lub wziąć Twoje obiekty" /> <column name="icon_edit_theirs" tool_tip="Możesz edytować obiekty tej osoby" /> </scroll_list> <button label="Czat/IM" name="im_btn" tool_tip="Rozpocznij sesjÄ™ czatu/IM" /> diff --git a/indra/newview/skins/default/xui/pl/panel_group_general.xml b/indra/newview/skins/default/xui/pl/panel_group_general.xml index 34c02e07149e5d84e6519486123a5a0b846631fb..6f6d524cd969ddc154039df70606553f5abf76d3 100755 --- a/indra/newview/skins/default/xui/pl/panel_group_general.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_general.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Ogólne" name="general_tab"> <string name="help_text"> ZakÅ‚adka Ogólne zawiera informacje na temat tej grupy, @@ -8,8 +8,8 @@ ustawienia grupy oraz opcje czÅ‚onkostwa. <string name="group_info_unchanged"> Ogólne informacje na temat grupy ulegÅ‚y zmianie. </string> - <button label="?" label_selected="?" name="help_button" /> - <line_editor label="Wpisz nazwÄ™ grupy tutaj" name="group_name_editor" /> + <button label="?" label_selected="?" name="help_button"/> + <line_editor label="Wpisz nazwÄ™ grupy tutaj" name="group_name_editor"/> <text name="group_name"> Wpisz nazwÄ™ grupy tutaj </text> @@ -22,12 +22,12 @@ ustawienia grupy oraz opcje czÅ‚onkostwa. <text name="group_charter_label"> Status Grupy </text> - <texture_picker label="Insygnia Grupy" name="insignia" tool_tip="Kliknij by wybrać zdjÄ™cie" /> + <texture_picker label="Insygnia Grupy" name="insignia" tool_tip="Kliknij by wybrać zdjÄ™cie"/> <text_editor name="charter"> Status Grupy </text_editor> - <button label="Dośącz (L$0)" label_selected="DoÅ‚Ä…cz (L$0)" name="join_button" /> - <button label="Szczegóły" label_selected="Szczegóły" name="info_button" /> + <button label="DoÅ‚Ä…cz (L$0)" label_selected="DoÅ‚Ä…cz (L$0)" name="join_button"/> + <button label="Szczegóły" label_selected="Szczegóły" name="info_button"/> <text name="text_owners_and_visible_members"> WÅ‚aÅ›ciciele i widoczni czÅ‚onkowie </text> @@ -35,34 +35,37 @@ ustawienia grupy oraz opcje czÅ‚onkostwa. (WÅ‚aÅ›ciciele wyÅ›wietlajÄ… siÄ™ pogrubionÄ… czcionkÄ…) </text> <name_list name="visible_members"> - <column label="ImiÄ™" name="name" /> - <column label="TytuÅ‚" name="title" /> - <column label="Ostatnio w SL" name="online" /> + <column label="ImiÄ™" name="name"/> + <column label="TytuÅ‚" name="title"/> + <column label="Ostatnio w SL" name="online"/> </name_list> <text name="text_group_preferences"> Ustawienia Grupy </text> <panel name="preferences_container"> - <check_box label="WyÅ›wietlaj w wyszukiwarce" name="show_in_group_list" - tool_tip="UdostÄ™pnij info o grupie w wyszukiwarce" /> - <check_box label="Wolny WstÄ™p" name="open_enrollement" - tool_tip="Sprawdź czy grupa oferuje wolny wstÄ™p i nie wymaga zaproszenia." /> - <check_box label="OpÅ‚ata WstÄ™pu: L$" name="check_enrollment_fee" - tool_tip="Ustaw opÅ‚atÄ™ za przyÅ‚Ä…czenie siÄ™ do grupy." /> - <spinner name="spin_enrollment_fee" - tool_tip="Nowi czÅ‚onkowie grupy muszÄ… zapÅ‚acić wymaganÄ… opÅ‚atÄ™ by doÅ‚Ä…czyć do grupy." /> - + <check_box label="WyÅ›wietlaj w wyszukiwarce" name="show_in_group_list" tool_tip="UdostÄ™pnij info o grupie w wyszukiwarce"/> + <check_box label="Wolny WstÄ™p" name="open_enrollement" tool_tip="Sprawdź czy grupa oferuje wolny wstÄ™p i nie wymaga zaproszenia."/> + <check_box label="OpÅ‚ata WstÄ™pu: L$" name="check_enrollment_fee" tool_tip="Ustaw opÅ‚atÄ™ za przyÅ‚Ä…czenie siÄ™ do grupy."/> + <spinner name="spin_enrollment_fee" tool_tip="Nowi czÅ‚onkowie grupy muszÄ… zapÅ‚acić wymaganÄ… opÅ‚atÄ™ by doÅ‚Ä…czyć do grupy."/> + <combo_box name="group_mature_check" tool_tip="Wybierz jeżeli uważasz, iż Twoja grupa klasyfikowana jest jako 'Mature'."> + <combo_item name="select_mature"> + - Wybierz Treść - + </combo_item> + <combo_item name="mature"> + Treść 'Mature' + </combo_item> + <combo_item name="pg"> + Treść 'PG' + </combo_item> + </combo_box> <panel name="title_container"> <text name="active_title_label"> Mój Aktywny TytuÅ‚ </text> - <combo_box length="150" name="active_title" - tool_tip="Ustaw tytuÅ‚ który wyÅ›wietla siÄ™ kiedy grupa jest aktywna." /> + <combo_box length="150" name="active_title" tool_tip="Ustaw tytuÅ‚ który wyÅ›wietla siÄ™ kiedy grupa jest aktywna."/> </panel> - <check_box label="Otrzymuj grupowe ogÅ‚oszenia" name="receive_notices" - tool_tip="Zaznacz jeżeli chcesz otrzymywać ogÅ‚oszenia z tej grupy. Anuluj z zaznaczenia, jeżeli nie chcesz otrzymywać żadnych ogÅ‚oszeÅ„ z tej grupy." /> - <check_box label="WyÅ›wietl grupÄ™ w profilu" name="list_groups_in_profile" - tool_tip="Zaznacz jeżeli chcesz by grupa wyÅ›wietlaÅ‚a siÄ™ w Twoim profilu" /> + <check_box label="Otrzymuj grupowe ogÅ‚oszenia" name="receive_notices" tool_tip="Zaznacz jeżeli chcesz otrzymywać ogÅ‚oszenia z tej grupy. Anuluj z zaznaczenia, jeżeli nie chcesz otrzymywać żadnych ogÅ‚oszeÅ„ z tej grupy."/> + <check_box label="WyÅ›wietl grupÄ™ w profilu" name="list_groups_in_profile" tool_tip="Zaznacz jeżeli chcesz by grupa wyÅ›wietlaÅ‚a siÄ™ w Twoim profilu"/> </panel> <string name="incomplete_member_data_str"> Wyszukiwanie informacji o czÅ‚onku @@ -70,6 +73,6 @@ ustawienia grupy oraz opcje czÅ‚onkostwa. <string name="confirm_group_create_str"> Koszt utworzenia tej grupy wynosi L$100. Czy napewno jesteÅ› PEWNY,że chcesz zapÅ‚acić L$100 by utworzyć grupÄ™? -PamiÄ™taj, jeżeli w ciÄ…gu 48h od utworzenia grupy nikt do niej nie doÅ‚Ä…czy, informacje o grupie zostanÄ… usuniÄ™te z bazy, a nazwa grupy zablokowana do użycia w przyszÅ›oÅ›ci. +PamiÄ™taj, jeżeli w ciÄ…gu 48h od utworzenia grupy nikt do niej nie doÅ‚Ä…czy, informacje o grupie zostanÄ… usuniÄ™te z bazy, a nazwa grupy zablokowana do użycia w przyszÅ‚oÅ›ci. </string> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_invite.xml b/indra/newview/skins/default/xui/pl/panel_group_invite.xml index ef5628d8d38e4834f163c9ef8be53e65fa2365a0..12d48279ada05a1a6e6dd287ff6aa4087d1846ca 100755 --- a/indra/newview/skins/default/xui/pl/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_invite.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel label="Zaproszenie do Grupy" name="invite_panel"> <text name="help_text"> - ZaproÅ› Rezydentów do Grupy + Możesz zaprosić kilku Rezydentów +do swojej grupy. Wybierz 'Otwórz +Katalog Osobisty' by rozpocząć. </text> - <button label="Otwórz Osobisty Katalog" name="add_button" tool_tip="" /> + <button label="Otwórz Katalog Osobisty" name="add_button" tool_tip=""/> <name_list name="invitee_list" tool_tip="" /> <button label="UsuÅ„ z Listy" name="remove_button" tool_tip="" /> <text name="role_text"> @@ -13,7 +15,7 @@ <button label="WyÅ›lij Zaproszenia" name="ok_button" /> <button label="Anuluj" name="cancel_button" /> <string name="confirm_invite_owner_str"> - JesteÅ› pewny, że chcesz wybrać nowych wÅ‚aÅ›ccieli grupy? Ta decyzja jest ostateczna! + JesteÅ› pewny, że chcesz wybrać nowych wÅ‚aÅ›cieli grupy? Ta decyzja jest ostateczna! </string> <string name="loading"> (loading...) diff --git a/indra/newview/skins/default/xui/pl/panel_group_land_money.xml b/indra/newview/skins/default/xui/pl/panel_group_land_money.xml index 98660b3f6e11853f67cccb59636046db25a4fd21..5080b0963a237f4ce8e2b7e187602ee93373e2bc 100755 --- a/indra/newview/skins/default/xui/pl/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_land_money.xml @@ -1,13 +1,9 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="PosiadÅ‚oÅ›ci i L$" name="land_money_tab"> <string name="help_text"> - PosiadÅ‚oÅ›ci należące go Grupy sÄ… wymienione z danymi -o kontrybucjach. Ostrzeżenie pojawia siÄ™ w momencie -kiedy używa siÄ™ mniej PosiadÅ‚oÅ›ci od Kontrybucji. -ZakÅ‚adki Szczegóły i Sprzedaż zawierajÄ… -informacje o finansach Grupy. + PosiadÅ‚oÅ›ci, które sÄ… wÅ‚asnoÅ›ciÄ… grupy zawierajÄ… dane poszczególnych kontrybucji ich czÅ‚onków. W przypadku kiedy caÅ‚kowita ilość metrów przypisanej danej posiadÅ‚oÅ›ci przez grupÄ™ jest mniejsza lub równa caÅ‚kowitej liczbie kontrybucji dla przypisanej iloÅ›ci metrów pojawia siÄ™ ostrzeżenie. ZakÅ‚adki: Planowanie, Szczegóły oraz Sprzedaże udostÄ™pniajÄ… informacje na temat statusu finansowego grupy. </string> - <button label="?" name="help_button" /> + <button label="?" name="help_button"/> <string name="cant_view_group_land_text"> Nie masz pozwolenia na oglÄ…danie PosiadÅ‚oÅ›ci Grupy. </string> @@ -21,12 +17,13 @@ informacje o finansach Grupy. PosiadÅ‚oÅ›ci Grupy </text> <scroll_list name="group_parcel_list"> - <column label="Nazwa PosiadÅ‚oÅ›ci" name="name" /> - <column label="Region" name="location" /> - <column label="Obszar" name="area" /> - <column label="" name="hidden" /> + <column label="PosiadÅ‚oÅ›ci" name="name"/> + <column label="Region" name="location"/> + <column label="Typ" name="type"/> + <column label="Obszar" name="area"/> + <column label="" name="hidden"/> </scroll_list> - <button label="Pokaż na Mapie" label_selected="Pokaż na Mapie" name="map_button" /> + <button label="Pokaż na Mapie" label_selected="Pokaż na Mapie" name="map_button"/> <text name="total_contributed_land_label"> Kontrybucje: </text> @@ -70,19 +67,15 @@ informacje o finansach Grupy. <text_editor name="group_money_details_text"> Obliczanie... </text_editor> - <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" - name="earlier_details_button" tool_tip="Do tyÅ‚u w czasie" /> - <button label="Później >" label_selected="Później >" - name="later_details_button" tool_tip="Do przodu w czasie" /> + <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" name="earlier_details_button" tool_tip="Do tyÅ‚u w czasie"/> + <button label="Później >" label_selected="Później >" name="later_details_button" tool_tip="Do przodu w czasie"/> </panel> <panel label="Sprzedaż" name="group_money_sales_tab"> <text_editor name="group_money_sales_text"> Obliczanie... </text_editor> - <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" - name="earlier_sales_button" tool_tip="Do tyÅ‚u w czasie" /> - <button label="Później >" label_selected="Później >" - name="later_sales_button" tool_tip="Do przodu w czasie" /> + <button label="< WczeÅ›niej" label_selected="< WczeÅ›niej" name="earlier_sales_button" tool_tip="Do tyÅ‚u w czasie"/> + <button label="Później >" label_selected="Później >" name="later_sales_button" tool_tip="Do przodu w czasie"/> </panel> </tab_container> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_group_roles.xml b/indra/newview/skins/default/xui/pl/panel_group_roles.xml index 9c2a23b8ea05d43e7d8a42129ceb90c3ceb0274f..ccef8870d23b99183160a44066c774f3427df24b 100755 --- a/indra/newview/skins/default/xui/pl/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/pl/panel_group_roles.xml @@ -51,7 +51,7 @@ Przywilejem. <column label="Kontrybucje" name="donated" /> <column label="Ostatnio w SL" name="online" /> </name_list> - <button label="ZaproÅ› NowÄ… OsobÄ™..." name="member_invite" /> + <button label="ZaproÅ› NowÄ… OsobÄ™..." name="member_invite"/> <button label="UsuÅ„ z Grupy" name="member_eject" /> <string name="help_text"> Możesz dodawać i usuwać Funkcje przypisane do CzÅ‚onków. @@ -79,7 +79,7 @@ Możesz wybrać wielu CzÅ‚onków naciskajÄ…c Ctrl i klikajÄ…c na ich imionach. <panel label="Przywileje" name="actions_sub_tab"> <button label="Szukaj" name="search_button" /> <button label="Wszystko" name="show_all_button" /> - <scroll_list name="action_list" tool_tip="Select an Ability to view more details."> + <scroll_list name="action_list" tool_tip="Zaznacz aby zobaczyć wiÄ™cej informacji."> <column label="" name="icon" /> <column label="" name="action" /> </scroll_list> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml b/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml index 7bad6dd281bc7a800c0b69842d1f8253eef6a2b4..5e397c2b06eb8b44a731314e19c885980b19155a 100755 --- a/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_chat.xml @@ -23,7 +23,7 @@ <color_swatch label="System" name="system" /> <color_swatch label="BÅ‚Ä™dy" name="script_error" /> <color_swatch label="Obiekty" name="objects" /> - <color_swatch label="Szef" name="owner" /> + <color_swatch label="WÅ‚aÅ›ciciel" name="owner" /> <color_swatch label="Chmurka" name="background" /> <color_swatch label="Linki" name="links" /> <text type="string" length="1" name="text_box8"> @@ -40,7 +40,7 @@ <text type="string" length="1" name="text_box5"> (linii) </text> - <slider label="Przezroczystość" name="console_opacity" /> + <slider label="Przeźroczystość" name="console_opacity" /> <check_box label="Używaj peÅ‚nej szerokość ekranu (restart wymagany)" name="chat_full_width_check" /> <text type="string" length="1" name="text_box6"> Ustawienia Czatu: @@ -53,5 +53,5 @@ Czat z Chmurkami: </text> <check_box label="Pokazuj chmurki w czacie" name="bubble_text_chat" /> - <slider label="Przezroczystość" name="bubble_chat_opacity" /> + <slider label="Przeźroczystość" name="bubble_chat_opacity" /> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_general.xml b/indra/newview/skins/default/xui/pl/panel_preferences_general.xml index 34b77c8e31b7776e2f223773a43625b25f5b5b05..1199f0622f37fff38509b8c9aef22d00ce138656 100755 --- a/indra/newview/skins/default/xui/pl/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_general.xml @@ -8,7 +8,7 @@ Ostatnie Miejsce </radio_item> </radio_group> - <check_box label="Pokaż Miejsce Startu na Ekranie Logowania" name="show_location_checkbox"/> + <check_box label="Pokaż Miejsce Startu podczas Logowania" name="show_location_checkbox"/> <combo_box name="fade_out_combobox"> <combo_item name="Never"> Nigdy @@ -34,10 +34,28 @@ <slider name="ui_scale_slider"/> <check_box label="Używaj Skali Nizależnej od RozdzielczoÅ›ci" name="ui_auto_scale"/> <spinner label="Zasypiaj w:" name="afk_timeout_spinner"/> - <check_box label="Obracaj Mini-MapÄ™" name="rotate_mini_map_checkbox"/> <check_box label="Powiadamiaj o Wydatkach i Zarobkach (L$)" name="notify_money_change_checkbox"/> - <check_box label="Używaj DomyÅ›lnej Selekcji Koloru" name="use_system_color_picker_checkbox" tool_tip="Używaj domyÅ›lnej / systemowej selekcji koloru"/> - <check_box label="Pokaż WyszukiwarkÄ™" name="show_search_panel" tool_tip="Pokaż wbudowanÄ… wyszukiwarkÄ™"/> + <text name="maturity_desired_label" bottom="-312"> + Treść: + </text> + <text name="maturity_desired_prompt" bottom="-312"> + ChcÄ™ uzyskać dostÄ™p do +miejsc zakwalifikowanych jako: + </text> + <combo_box name="maturity_desired_combobox" bottom="-330" left="322" width="162" > + <combo_item name="Desired_Adult"> + 'PG', 'Mature' oraz 'Adult' + </combo_item> + <combo_item name="Desired_Mature"> + 'PG' i 'Mature' + </combo_item> + <combo_item name="Desired_PG"> + tylko 'PG' + </combo_item> + </combo_box> + <text name="maturity_desired_textbox" bottom="-324" left="322"> + tylko 'PG' + </text> <text length="1" name="start_location_textbox" type="string"> Miejsce Startu: </text> @@ -80,20 +98,26 @@ <combo_item length="1" name="English" type="string"> English (Angielski) </combo_item> - <combo_item length="1" name="Chinese" type="string"> - ä¸æ–‡ (简体) (ChiÅ„ski) - Beta + <combo_item name="Danish"> + Dansk (DuÅ„ski) - Beta </combo_item> <combo_item length="1" name="Deutsch(German)" type="string"> Deutsch (Niemiecki) - Beta </combo_item> + <combo_item length="1" name="Spanish" type="string"> + Español (HiszpaÅ„ski) - Beta + </combo_item> <combo_item length="1" name="French" type="string"> Français (Francuski) - Beta </combo_item> - <combo_item length="1" name="(Japanese)" type="string"> - 日本語 (JapoÅ„ski) - Beta + <combo_item name="Italian"> + Italiano (WÅ‚oski) - Beta </combo_item> - <combo_item length="1" name="(Korean)" type="string"> - í•œêµì–´ (KoreaÅ„ski) - Beta + <combo_item name="Hungarian"> + Magyar (WÄ™gierski) - Beta + </combo_item> + <combo_item name="Dutch"> + Nederlands (Niderlandzki) - Beta </combo_item> <combo_item length="1" name="Polish" type="string"> Polski - Beta @@ -101,8 +125,23 @@ <combo_item length="1" name="Portugese" type="string"> Portugués (Portugalski) - Beta </combo_item> - <combo_item length="1" name="Spanish" type="string"> - Español (HiszpaÅ„ski) - Beta + <combo_item name="Russian"> + РуÑÑкий (Rosyjski) - Beta + </combo_item> + <combo_item name="Turkish"> + Türkçe (Turecki) - Beta + </combo_item> + <combo_item name="Ukrainian"> + УкраїнÑька (UkraiÅ„ski) - Beta + </combo_item> + <combo_item length="1" name="Chinese" type="string"> + ä¸æ–‡ (简体) (ChiÅ„ski) - Beta + </combo_item> + <combo_item length="1" name="(Japanese)" type="string"> + 日本語 (JapoÅ„ski) - Beta + </combo_item> + <combo_item length="1" name="(Korean)" type="string"> + í•œêµì–´ (KoreaÅ„ski) - Beta </combo_item> </combo_box> <check_box label="JÄ™zyk znany publicznie" name="language_is_public" tool_tip="Pozwala obiektom w Å›wiecie poznać Twój wybór jÄ™zyk."/> diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml index 406fede4a96b6d5265e56089a51b8bb43d1b9f0a..302501ef33239498be79a7733e755dbd0eb73099 100755 --- a/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml +++ b/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml @@ -103,7 +103,7 @@ <text type="string" length="1" name="AvatarRenderingText"> Prezentacja Awatarów: </text> - <check_box label="FaÅ‚szywe Awatary" name="AvatarImpostors" /> + <check_box label="Impostoryzacja Awatarowa" name="AvatarImpostors" /> <check_box label="Skinning" name="AvatarVertexProgram" /> <check_box label="Ubranie Awatarów" name="AvatarCloth" /> <text type="string" length="1" name="DrawDistanceMeterText1"> diff --git a/indra/newview/skins/default/xui/pl/panel_region_covenant.xml b/indra/newview/skins/default/xui/pl/panel_region_covenant.xml index 21611ed6c0c177ea4bc33beedadd09ba9406ca2c..f20387dd25db8558652cd2fb4b2fb0d4de4a2d3c 100755 --- a/indra/newview/skins/default/xui/pl/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_covenant.xml @@ -1,39 +1,72 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Umowa" name="Covenant"> - <text name="covenant_help_text"> - Zmiany w Umowie odnoszÄ… siÄ™ do wszystkich PosiadÅ‚oÅ›ci w MajÄ…tku. - </text> - <text name="region_name_lbl"> - Region: - </text> - <text name="region_name_text"> - (bark danych) + <text name="estate_section_lbl"> + MajÄ…tek: </text> <text name="estate_name_lbl"> - MajÄ…tek: + Nazwa: </text> <text name="estate_name_text"> - (brak danych) + mainland </text> <text name="estate_owner_lbl"> - WÅ‚aÅ›ciciel MajÄ…tku: + WÅ‚aÅ›ciciel: </text> <text name="estate_owner_text"> - (brak danych) + (żaden) </text> - <text name="resellable_clause"> - PosiadÅ‚oÅ›ci kupione w tym Regionie mogÄ… lub nie być odsprzedawane. + <text name="estate_cov_lbl"> + Umowa: </text> - <text name="changeable_clause"> - PosiadÅ‚oÅ›ci kupione w tym Regionie mogÄ… lub nie być Å‚Ä…czone lub dzielone. - </text> - <text name="covenent_instructions"> - PrzeciÄ…gnij i upuść notkÄ™ żeby zmienić UmowÄ™ dla tego MajÄ…tku. + <text name="covenant_timestamp_text"> + Ostatnia Modyfikacja Wed Dec 31 16:00:00 1969 </text> + <button label="?" name="covenant_help"/> <text_editor name="covenant_editor"> - Åadowanie... + Brak umowy dla tego majÄ…tku. </text_editor> - <button label="Wyresetuj" name="reset_covenant" /> + <button label="Wyresetuj" name="reset_covenant"/> + <text name="covenant_help_text" bottom_delta="-6"> + Zmiany w umowie zostanÄ… wyÅ›wietlone we +wszystkich posiadÅ‚oÅ›ciach majÄ…tku. + </text> + <text name="covenant_instructions" bottom_delta="-36"> + PrzeciÄ…gnij oraz wrzuć notÄ™ by zmienić umowÄ™ dla tego majÄ…tku. + </text> + <text name="region_section_lbl"> + Region: + </text> + <text name="region_name_lbl"> + Nazwa: + </text> + <text name="region_name_text" left="115"> + leyla + </text> + <text name="region_landtype_lbl"> + Typ: + </text> + <text name="region_landtype_text" left="115"> + Region Główny / Ziemia + </text> + <text name="region_maturity_lbl"> + Rodzaj: + </text> + <text name="region_maturity_text" left="115"> + 'Adult' + </text> + <text name="resellable_lbl"> + Odsprzedaj: + </text> + <text name="resellable_clause" left="115" width="350"> + PosiadÅ‚ość zakupiona w tym regionie nie może być odsprzedana. + </text> + <text name="changeable_lbl"> + Podziel: + </text> + <text name="changeable_clause" left="115" width="350"> + PosiadÅ‚ość zakupiona w tym regionie nie może być +Å‚Ä…czona/dzielona. + </text> <string name="can_resell"> PosiadÅ‚oÅ›ci kupione w tym Regionie mogÄ… być odsprzedane. </string> @@ -44,7 +77,7 @@ PosiadÅ‚oÅ›ci kupione w tym Regionie mogÄ… być Å‚Ä…czone i dzielone. </string> <string name="can_not_change"> - PosiadÅ‚oÅ›ci kupione w tym Regionie nie mogÄ… być Å‚Ä…czone i dzielone. + PosiadÅ‚oÅ›ci kupione w tym Regionie nie mogÄ… być Å‚Ä…czone i +dzielone. </string> - <button label="?" name="covenant_help" /> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_region_general.xml b/indra/newview/skins/default/xui/pl/panel_region_general.xml index 009d1aa645cc4104a63cc3517edb2efb7abaac22..36cff9c2d00547e54c368d5d4a6923f156d0e10d 100755 --- a/indra/newview/skins/default/xui/pl/panel_region_general.xml +++ b/indra/newview/skins/default/xui/pl/panel_region_general.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Region" name="General"> <text name="region_text_lbl"> Region: @@ -12,35 +12,48 @@ <text name="version_channel_text"> brak danych </text> - <check_box label="Zablokuj Zmiany Terenu" name="block_terraform_check" /> - <button label="?" name="terraform_help" /> - <check_box label="Zablokuj Latanie" name="block_fly_check" /> - <button label="?" name="fly_help" /> - <check_box label="Uszkodzenia Dozwolone" name="allow_damage_check" /> - <button label="?" name="damage_help" /> - <check_box label="Zablokuj Popychanie" name="restrict_pushobject" /> - <button label="?" name="restrict_pushobject_help" /> - <check_box label="Odsprzedaż Dozwolona" name="allow_land_resell_check" /> - <button label="?" name="land_resell_help" /> - <check_box label="ÅÄ…czenie/Dzielenie Dozwolone" name="allow_parcel_changes_check" /> - <button label="?" name="parcel_changes_help" /> - <check_box label="Zablokuj Wyszukiwanie" name="block_parcel_search_check" - tool_tip="Pozwól na wyÅ›wietlanie nazwy regionu i posiadÅ‚oÅ›ci w wynikach wyszukiwania" /> - <button label="?" name="parcel_search_help" /> - <spinner label="Limit GoÅ›ci" name="agent_limit_spin" /> - <button label="?" name="agent_limit_help" /> - <spinner label="Ekstra Obiekty" name="object_bonus_spin" /> - <button label="?" name="object_bonus_help" /> + <text name="region_type_lbl"> + Typ: + </text> + <text name="region_type"> + nieznany + </text> + <check_box label="Zablokuj Zmiany Terenu" name="block_terraform_check"/> + <button label="?" name="terraform_help"/> + <check_box label="Zablokuj Latanie" name="block_fly_check"/> + <button label="?" name="fly_help"/> + <check_box label="Uszkodzenia Dozwolone" name="allow_damage_check"/> + <button label="?" name="damage_help"/> + <check_box label="Zablokuj Popychanie" name="restrict_pushobject"/> + <button label="?" name="restrict_pushobject_help"/> + <check_box label="Odsprzedaż Dozwolona" name="allow_land_resell_check"/> + <button label="?" name="land_resell_help"/> + <check_box label="ÅÄ…czenie/Dzielenie Dozwolone" name="allow_parcel_changes_check"/> + <button label="?" name="parcel_changes_help"/> + <check_box label="Zablokuj Wyszukiwanie" name="block_parcel_search_check" tool_tip="Pozwól na wyÅ›wietlanie nazwy regionu i posiadÅ‚oÅ›ci w wynikach wyszukiwania"/> + <button label="?" name="parcel_search_help"/> + <spinner label="Limit GoÅ›ci" name="agent_limit_spin"/> + <button label="?" name="agent_limit_help"/> + <spinner label="Ekstra Obiekty" name="object_bonus_spin"/> + <button label="?" name="object_bonus_help"/> <text label="Ograniczenia Wieku" name="access_text"> - Dozwolony: + Rodzaj: </text> - - - - <button label="?" name="access_help" /> - <button label="Zastosuj" name="apply_btn" /> - <button label="Wyrzuć Awatara..." name="kick_btn" /> - <button label="Wyrzuć Wszystkich..." name="kick_all_btn" /> - <button label="WyÅ›lij Wiadomość do Regionu..." name="im_btn" /> - <button label="ObsÅ‚uga Teleportera..." name="manage_telehub_btn" /> + <combo_box label="'Mature'" name="access_combo"> + <combo_item name="Adult"> + 'Adult' + </combo_item> + <combo_item name="Mature"> + 'Mature' + </combo_item> + <combo_item name="PG"> + 'PG' + </combo_item> + </combo_box> + <button label="?" name="access_help"/> + <button label="Zastosuj" name="apply_btn"/> + <button label="Wyrzuć Awatara..." name="kick_btn"/> + <button label="Wyrzuć Wszystkich..." name="kick_all_btn"/> + <button label="WyÅ›lij Wiadomość do Regionu..." name="im_btn"/> + <button label="ObsÅ‚uga Teleportera..." name="manage_telehub_btn"/> </panel> diff --git a/indra/newview/skins/default/xui/pl/panel_status_bar.xml b/indra/newview/skins/default/xui/pl/panel_status_bar.xml index 7c6c7ab90fc3a295f003461e9c4df71661621bd6..bdf22fa66d7386b6f6749508739996a2082b6da1 100755 --- a/indra/newview/skins/default/xui/pl/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/pl/panel_status_bar.xml @@ -1,8 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <panel name="status"> - <text type="string" length="1" name="ParcelNameText" - tool_tip="Nazwa posiadÅ‚oÅ›ci w której siÄ™ znajdujesz. Po wiÄ™cej informacji kliknij O PosiadÅ‚oÅ›ci."> - nazwa posiadÅ‚oÅ›ci + <text type="string" length="1" name="ParcelNameText" tool_tip="Nazwa posiadÅ‚oÅ›ci w której siÄ™ znajdujesz. Po wiÄ™cej informacji kliknij O PosiadÅ‚oÅ›ci."> + Nazwa PosiadÅ‚oÅ›ci </text> <text type="string" length="1" name="BalanceText" tool_tip="Stan Konta"> Åadowanie... @@ -15,25 +14,22 @@ Niedziela:PoniedziaÅ‚ek:Wtorek:Åšroda:Czwartek:PiÄ…tek:Sobota </string> <string name="StatBarMonthsOfYear"> - StyczeÅ„:Luty:Marzec:KwiecieÅ„:Maj:Czerwiec:Lipiec:SerpieÅ„:WrzesieÅ„:Październik:Listopad:GrudzieÅ„ + StyczeÅ„:Luty:Marzec:KwiecieÅ„:Maj:Czerwiec:Lipiec:StyczeÅ„:WrzesieÅ„:Październik:Listopad:GrudzieÅ„ </string> - <button label="" label_selected="" name="scriptout" - tool_tip="Ostrzeżenia i BÅ‚Ä™dy Skryptów" /> - <button label="" label_selected="" name="health" tool_tip="Zdrowie" /> - <text type="string" length="1" name="HealthText" tool_tip="Health"> + <button label="" label_selected="" name="scriptout" tool_tip="BÅ‚Ä™dy i Ostrzeżenia Skryptów" /> + <button label="" label_selected="" name="health" tool_tip="Stan" /> + <text type="string" length="1" name="HealthText" tool_tip="Stan"> 100% </text> - <button label="" label_selected="" name="no_fly" tool_tip="Latanie niedozwolone" /> - <button label="" label_selected="" name="no_build" tool_tip="Budowanie niedozwolone" /> - <button label="" label_selected="" name="no_scripts" tool_tip="Scripts not allowed" /> - <button label="" label_selected="" name="restrictpush" - tool_tip="Popychanie niedozwolone" /> - <button label="" label_selected="" name="status_no_voice" - tool_tip="Rozmowy niedowolone" /> + <button label="" label_selected="" name="no_fly" tool_tip="Latanie jest niedozwolone" /> + <button label="" label_selected="" name="no_build" tool_tip="Budowanie/rezzowanie jest niedozwolone" /> + <button label="" label_selected="" name="no_scripts" tool_tip="Używanie skryptów jest niedozwolone" /> + <button label="" label_selected="" name="restrictpush" tool_tip="PochniÄ™cia sÄ… niedozwolone" /> + <button label="" label_selected="" name="status_no_voice" tool_tip="Używanie komunikacji gÅ‚osowej jest niedozwolone" /> <button label="" label_selected="" name="buyland" tool_tip="Kup tÄ… posiadÅ‚ość" /> <button label="" name="menubar_search_bevel_bg" /> - <line_editor label="Szukaj" name="search_editor" tool_tip="Przeszukaj Second Life" /> - <button label="" label_selected="" name="search_btn" tool_tip="Przeszukaj Second Life" /> + <line_editor label="Szukaj" name="search_editor" tool_tip="Szukaj w Second Life" /> + <button label="" label_selected="" name="search_btn" tool_tip="Szukaj w Second Life" /> <string name="packet_loss_tooltip"> Utracone Pakiety </string> diff --git a/indra/newview/skins/default/xui/pl/role_actions.xml b/indra/newview/skins/default/xui/pl/role_actions.xml index 37df2d4c3827f6ea8de9763fecab1fec24143ebf..5711eacf2f286baa1b7623fda21c9d43862a1d1a 100755 --- a/indra/newview/skins/default/xui/pl/role_actions.xml +++ b/indra/newview/skins/default/xui/pl/role_actions.xml @@ -53,11 +53,11 @@ <action description="Przypisywanie i kupowanie PosiadÅ‚oÅ›ci dla Grupy" longdescription="Przypisywanie i kupowanie PosiadÅ‚oÅ›ci dla Grupy. DostÄ™p poprzez O PosiadloÅ›ci > ustawienia Ogólne." name="land deed" /> - <action description="Oddawanie PosiadÅ‚oÅ›ci do Linden Labs" - longdescription="Oddawanie PosiadÅ‚oÅ›ci do Linden Labs. *UWAGA* CzÅ‚onek w Funcji z tym Przywilejem może porzucać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne oddajÄ…c PosiadÅ‚oÅ›ci za darmo do Linden Labs! Udzielaj tego Przywileju z rozwagÄ…." + <action description="Oddawanie PosiadÅ‚oÅ›ci do Linden Lab" + longdescription="Oddawanie PosiadÅ‚oÅ›ci do Linden Lab. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może porzucać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne oddajÄ…c PosiadÅ‚oÅ›ci za darmo do Linden Labs! Udzielaj tego Przywileju z rozwagÄ…." name="land release" /> <action description="Sprzedaż PosiadÅ‚oÅ›ci" - longdescription="Sprzedaż PosiadÅ‚oÅ›ci. *UWAGA* CzÅ‚onek w Funcji z tym Przywilejem może sprzedawać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne! Udzielaj tego Przywileju z rozwagÄ…." + longdescription="Sprzedaż PosiadÅ‚oÅ›ci. *UWAGA* CzÅ‚onek w Funkcji z tym Przywilejem może sprzedawać PosiadloÅ›ci Grupy poprzez O PosiadloÅ›ci > ustawienia Ogólne! Udzielaj tego Przywileju z rozwagÄ…." name="land set sale info" /> <action description="PodziaÅ‚ i ÅÄ…czenie PosiadÅ‚oÅ›ci" longdescription="PodziaÅ‚ i ÅÄ…czenie PosiadÅ‚oÅ›ci. DostÄ™p poprzez wybranie gruntu prawym klawiszem myszki, 'Edycja Terenu', i przesuwanie myszkÄ… po gruncie wybierajÄ…c obszar. Aby podzielić wybierz obszar i naciÅ›nij 'Podziel...'. Aby poÅ‚Ä…czyć wybierz dwie albo wiÄ™cej sÄ…siadujÄ…ce PosiadÅ‚oÅ›ci i naciÅ›nij 'PoÅ‚Ä…cz...'." @@ -75,7 +75,7 @@ longdescription="Zmiany nazwy PosiadÅ‚oÅ›ci, opisu i selekcja 'Widoczność w Wyszukiwarce'. DostÄ™p poprzez O PosiadÅ‚oÅ›ci > Opcje." name="land change identity" /> <action description="Wybór miejsca lÄ…dowania i ustawienia teleportacji (TP)" - longdescription="Na PosiadÅ‚oÅ›ci Grupy CzÅ‚onek w Funcji z tym Przywilejem może wybrać miejsce gdzie teleportujÄ…ce siÄ™ osoby bÄ™dÄ… ladować oraz może ustalić dodatkowe parametry teleportacji (TP). DostÄ™p poprzez O PosiadÅ‚oÅ›ci > Opcje." + longdescription="Na PosiadÅ‚oÅ›ci Grupy CzÅ‚onek w Funkcji z tym Przywilejem może wybrać miejsce gdzie teleportujÄ…ce siÄ™ osoby bÄ™dÄ… ladować oraz może ustalić dodatkowe parametry teleportacji (TP). DostÄ™p poprzez O PosiadÅ‚oÅ›ci > Opcje." name="land set landing point" /> </action_set> <action_set @@ -95,19 +95,19 @@ description="Przywileje pozwalajÄ…ce CzÅ‚onkom na omijanie ograniczeÅ„ na PosiadÅ‚oÅ›ciach Grupy." name="Parcel Powers"> <action description="Pozwól na EdycjÄ™ Terenu" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… zawsze edytować teren na PosiadÅ‚oÅ›ciach Grupy." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze edytować teren na PosiadÅ‚oÅ›ciach Grupy." name="land allow edit land" /> <action description="Pozwól na Latanie" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… zawsze latać na PosiadÅ‚oÅ›ciach Grupy." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze latać na PosiadÅ‚oÅ›ciach Grupy." name="land allow fly" /> <action description="Pozwól na Tworzenie Obiektów" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… zawsze tworzyć obiekty na PosiadÅ‚oÅ›ciach Grupy." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze tworzyć obiekty na PosiadÅ‚oÅ›ciach Grupy." name="land allow create" /> <action description="Pozwól na ZapamiÄ™tywanie Miejsc (LM)" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… zawsze zapamiÄ™tywać miejsca (LM) na PosiadÅ‚oÅ›ciach Grupy." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze zapamiÄ™tywać miejsca (LM) na PosiadÅ‚oÅ›ciach Grupy." name="land allow landmark" /> - <action description="Pozwól na wybór Mijsca Startu na PosiadÅ‚oÅ›ciach Grupy" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… zawsze wybrać Miejsce Startu na PosiadÅ‚oÅ›ciach Grupy.." + <action description="Pozwól na wybór Miejsca Startu na PosiadÅ‚oÅ›ciach Grupy" + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zawsze wybrać Miejsce Startu na PosiadÅ‚oÅ›ciach Grupy." name="land allow set home" /> </action_set> <action_set @@ -123,11 +123,11 @@ longdescription="Selekcja opcji 'WstÄ™p PÅ‚atny...' pod O PosiadÅ‚oÅ›ci > DostÄ™p." name="land manage passes" /> <action description="Wyrzucanie i unieruchamianie Rezydentów na PosiadÅ‚oÅ›ciach" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… wpÅ‚ywać na niepożadanych na PosiadÅ‚oÅ›ciach Grupy Rezydentów wybierajÄ…c ich prawym klawiszem myszki i wybierajÄ…c WiÄ™cej > 'Wyrzuć...' albo 'Unieruchom...'." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… wpÅ‚ywać na niepożądanych na PosiadÅ‚oÅ›ciach Grupy Rezydentów wybierajÄ…c ich prawym klawiszem myszki i wybierajÄ…c WiÄ™cej > 'Wyrzuć...' albo 'Unieruchom...'." name="land admin" /> </action_set> <action_set - description="Przywileje pozwalajÄ…ce na odsyÅ‚anie obiektów i przemiszczanie roÅ›lin z Linden Labs. Użyteczne przy porzÄ…dkowaniu i przemieszczaniu roÅ›linnoÅ›ci. *UWAGA* OdsyÅ‚anie obiektów jest nieodwracalne." + description="Przywileje pozwalajÄ…ce na odsyÅ‚anie obiektów i przemieszczanie roÅ›lin z Linden Lab. Użyteczne przy porzÄ…dkowaniu i przemieszczaniu roÅ›linnoÅ›ci. *UWAGA* OdsyÅ‚anie obiektów jest nieodwracalne." name="Parcel Content"> <action description="OdsyÅ‚anie obiektów należących do Grupy" longdescription="OdsyÅ‚anie obiektów należących do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." @@ -138,8 +138,8 @@ <action description="OdsyÅ‚anie obiektów nie przypisanych do Grupy" longdescription="OdsyÅ‚anie obiektów nie przypisanych do Grupy pod O PosiadÅ‚oÅ›ci > Obiekty." name="land return non group" /> - <action description="Ogrodnictwo używajÄ…c roÅ›lin z Linden Labs" - longdescription="Ogrodnictwo pozwala na umiszczanie i przemiszczanie drzew, roÅ›lin i trawy z Linden Labs. Te obiekty znajdujÄ… siÄ™ w Twojej Szafie pod Zbiór > Obiekty, mogÄ… też być stworzone używajÄ…c przycisku Buduj." + <action description="Ogrodnictwo używajÄ…c roÅ›lin z Linden Lab" + longdescription="Ogrodnictwo pozwala na umieszczanie i przemieszczanie drzew, roÅ›lin i trawy z Linden Lab. Te obiekty znajdujÄ… siÄ™ w Twojej Szafie pod Zbiór > Obiekty, mogÄ… też być stworzone używajÄ…c przycisku Buduj." name="land gardening" /> </action_set> <action_set @@ -160,38 +160,38 @@ description="Przywileje pozwalajÄ…ce na wybór opÅ‚at grupowych, otrzymywanie dochodu i ograniczanie dostÄ™pu do historii konta grupy." name="Accounting"> <action description="OpÅ‚aty grupowe i dochód grupowy" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem bÄ™dÄ… automatycznie wnosić opÅ‚aty grupowe i bÄ™dÄ… otrzymywać dochód grupowy. Tzn. bÄ™dÄ… codziennie otrzymywać część dochodu ze sprzedaży PosiadÅ‚oÅ›ci Grupy oraz bÄ™dÄ… partycypować w kosztach ogÅ‚oszeÅ„ itp." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem bÄ™dÄ… automatycznie wnosić opÅ‚aty grupowe i bÄ™dÄ… otrzymywać dochód grupowy. Tzn. bÄ™dÄ… codziennie otrzymywać część dochodu ze sprzedaży PosiadÅ‚oÅ›ci Grupy oraz bÄ™dÄ… partycypować w kosztach ogÅ‚oszeÅ„ itp." name="accounting accountable" /> </action_set> <action_set description="Przywileje pozwalajÄ…ce na wysyÅ‚anie, odbieranie i czytanie Notek Grupy." name="Notices"> <action description="WysyÅ‚anie Notek" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… wysyÅ‚ać Notki pod O Grupie > Notki." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… wysyÅ‚ać Notki wybierajÄ…c O Grupie > Notek." name="notices send" /> <action description="Odbieranie Notek i dostÄ™p do dawniejszych Notek" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… odbierać nowe i czytać dawniejsze Notki pod O Grupie > Notki." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… odbierać nowe i czytać dawniejsze Notki wybierajÄ…c O Grupie > Notki." name="notices receive" /> </action_set> <action_set description="Przywileje pozwalajÄ…ce na zgÅ‚aszanie Propozycji, gÅ‚osowanie nad Propozycjami i Å›ledzenie historii gÅ‚osowania." name="Proposals"> <action description="ZgÅ‚aszanie Propozycji" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… zgÅ‚aszać Propozycje pod gÅ‚osowanie pod O Grupie > Propozycje." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… zgÅ‚aszać Propozycje do gÅ‚osowania wybierajÄ…c O Grupie > Propozycje." name="proposal start" /> <action description="GÅ‚osowanie nad Propozycjami" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… gÅ‚osować nad Propozycjami pod O Grupie > Propozycje." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… gÅ‚osować nad Propozycjami zgÅ‚oszonymi do gÅ‚osowania wybierajÄ…c O Grupie > Propozycje." name="proposal vote" /> </action_set> <action_set description="Przywileje kontrolujÄ…ce czat i rozmowy grupowe." name="Chat"> <action description="DostÄ™p do Czatu Grupowego" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… uczestniczyć w czcie i rozmowach grupowych." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… uczestniczyć w czacie i rozmowach grupowych." name="join group chat" /> <action description="DostÄ™p do Rozmów Grupowych" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… uczestniczyć w rozmowach grupowych. UWAGA: DostÄ™p do Czatu Grupowego jest wymagany dla rozmów grupowych." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… uczestniczyć w rozmowach grupowych. UWAGA: DostÄ™p do Czatu Grupowego jest wymagany dla rozmów grupowych." name="join voice chat" /> <action description="Moderator Czatu Grupowego" - longdescription="CzÅ‚onkowie w Funcji z tym Przywilejem mogÄ… kontrolować dostÄ™p do czatu i rozmów grupowych." + longdescription="CzÅ‚onkowie w Funkcji z tym Przywilejem mogÄ… kontrolować dostÄ™p do czatu i rozmów grupowych." name="moderate group chat" /> </action_set> </role_actions> diff --git a/indra/newview/skins/default/xui/pl/strings.xml b/indra/newview/skins/default/xui/pl/strings.xml index df76f19462c7297e51f4424b60b595654f714c42..5067f044e0f088229f1bf484f80b672a44e60d61 100755 --- a/indra/newview/skins/default/xui/pl/strings.xml +++ b/indra/newview/skins/default/xui/pl/strings.xml @@ -1,6 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> +<!-- This file contains strings that used to be hardcoded in the source. + It is only for those strings which do not belong in a floater. + For example, the strings used in avatar chat bubbles, and strings + that are returned from one component and may appear in many places--> <strings> - <!-- Login --> <string name="LoginInProgress"> Trwa logowanie. [APP_NAME] ProszÄ™ czekać. </string> @@ -38,7 +41,7 @@ Inicjalizacja QuickTime... </string> <string name="LoginQuicktimeNotFound"> - QuickTime nie znaleźony - inicjalizacja przerwana. + QuickTime nie zostaÅ‚ znaleziony - inicjalizacja przerwana. </string> <string name="LoginQuicktimeOK"> QuickTime zainicjalizowany. @@ -52,34 +55,24 @@ <string name="LoginDownloadingClothing"> Åadowanie ubrania... </string> - <string name="LoginFailedNoNetwork"> - BÅ‚Ä…d sieci: Problemy z poÅ‚Ä…czeniem, sprawdź podÅ‚Ä…czenie do sieci. - </string> - <!-- Disconnection --> <string name="AgentLostConnection"> Ten region może mieć problemy. Sprawdź podÅ‚Ä…czenie do Internetu. </string> - <!-- Tooltip, llhoverview.cpp --> <string name="TooltipPerson"> Osoba </string> - <!-- Object under mouse pointer is an avatar --> <string name="TooltipNoName"> (brak nazwy) </string> - <!-- No name on an object --> <string name="TooltipOwner"> WÅ‚aÅ›ciciel: </string> - <!-- Owner name follows --> <string name="TooltipPublic"> Publiczny </string> - <!-- Public permissions on an object --> <string name="TooltipIsGroup"> (Grupa) </string> - <!-- The name before this text is that of a group --> <string name="TooltipFlagScript"> Skrypt </string> @@ -110,11 +103,9 @@ <string name="TooltipForSaleL$"> Na Sprzedaż: L$[AMOUNT] </string> - <!-- L$ version --> <string name="TooltipForSaleMsg"> Na Sprzedaż: [MESSAGE] </string> - <!-- Message (RetrievingData) --> <string name="TooltipFlagGroupBuild"> Budowanie Grupowe </string> @@ -127,7 +118,6 @@ <string name="TooltipFlagNotSafe"> Niebezpieczny Obszar </string> - <!-- damage area --> <string name="TooltipFlagNoFly"> Latanie Zabronione </string> @@ -143,35 +133,27 @@ <string name="TooltipMustSingleDrop"> Tylko pojedynczy obiekt może być tutaj przeciÄ…gniÄ™ty </string> - <!-- Indicates that an avatar's name or other similar datum is being retrieved. General usage. --> <string name="RetrievingData"> Odzyskiwanie danych... </string> <string name="ReleaseNotes"> O Tej Wersji </string> - <!-- Indicates something is being loaded. Maybe should be merged with RetrievingData --> <string name="LoadingData"> Åadowanie danych... </string> - <!-- namecache --> - <!-- Avatar name: text shown for LLUUID::null --> <string name="AvatarNameNobody"> (brak danych) </string> - <!-- Avatar name: text shown while fetching name --> <string name="AvatarNameWaiting"> (Å‚adowanie) </string> - <!-- Avatar name: text shown as an alternative to AvatarNameFetching, easter egg. --> <string name="AvatarNameHippos"> - (Twój avatar ulegnie samozniszczeniu za 5 sec. Pożegnaj siÄ™ z SL!) + (hippos) </string> - <!-- Group name: text shown for LLUUID::null --> <string name="GroupNameNone"> (brak danych) </string> - <!-- Asset errors. Used in llassetstorage.cpp, translation from error code to error message. --> <string name="AssetErrorNone"> OK </string> @@ -199,10 +181,12 @@ <string name="AssetErrorCircuitGone"> PoÅ‚Ä…czenie przerwane </string> + <string name="AssetErrorPriceMismatch"> + Brak zgodnoÅ›ci pomiÄ™dzy serwerem i klientem na realizacjÄ™ podanej ceny. + </string> <string name="AssetErrorUnknownStatus"> Status nieznany </string> - <!-- llvoavatar. Displayed in the avatar's chat bubble --> <string name="AvatarEditingApparance"> (Edycja WyglÄ…du) </string> @@ -215,7 +199,6 @@ <string name="AvatarMuted"> Wyciszony </string> - <!-- animations --> <string name="anim_express_afraid"> Strach </string> @@ -429,11 +412,75 @@ <string name="worldmap_offline"> NiedostÄ™pna </string> - <!-- Chat --> <string name="whisper"> szepcze: </string> <string name="shout"> krzyczy: </string> + <string name="SIM_ACCESS_PG"> + 'PG' + </string> + <string name="SIM_ACCESS_MATURE"> + 'Mature' + </string> + <string name="SIM_ACCESS_ADULT"> + 'Adult' + </string> + <string name="SIM_ACCESS_DOWN"> + NiedostÄ™pny + </string> + <string name="SIM_ACCESS_MIN"> + Nieznany + </string> + <string name="land_type_unknown"> + (nieznane) + </string> + <string name="covenant_never_modified">Ostatnia Modyfikacja: (nigdy)</string> + <string name="covenant_modified">Ostatnia Modyfikacja: </string> + <string name="all_files"> + Wszystkie Pliki + </string> + <string name="sound_files"> + DźwiÄ™ki + </string> + <string name="animation_files"> + Animacje + </string> + <string name="image_files"> + Obrazy + </string> + <string name="save_file_verb"> + Zapisz + </string> + <string name="load_file_verb"> + ZaÅ‚aduj + </string> + <string name="targa_image_files"> + Obrazy Targa + </string> + <string name="bitmap_image_files"> + Obrazy Bitmap + </string> + <string name="avi_movie_file"> + Pliki filmowe AVI + </string> + <string name="xaf_animation_file"> + Plik Animacji XAF + </string> + <string name="xml_file"> + Plik XML + </string> + <string name="dot_raw_file"> + Plik RAW + </string> + <string name="compressed_image_files"> + Obrazy Skomprensowane + </string> + <string name="load_files"> + ZaÅ‚aduj pliki + </string> + <string name="choose_the_directory"> + Wybierz Katalog + </string> </strings> diff --git a/indra/newview/skins/default/xui/pl/teleport_strings.xml b/indra/newview/skins/default/xui/pl/teleport_strings.xml index 0b24f2221ef91ad2613851a6afd56178402456d8..3384ae30b77b7d8970078cf7a387fd30a3849c16 100755 --- a/indra/newview/skins/default/xui/pl/teleport_strings.xml +++ b/indra/newview/skins/default/xui/pl/teleport_strings.xml @@ -2,18 +2,18 @@ <teleport_messages> <message_set name="errors"> <message name="invalid_tport"> - Huston / LL - Mamy problem z teleportacjÄ…. Może relog by pomógl? -Jeżeli caÅ‚y czas nie możesz siÄ™ telportować sprawdź Pomoc TechnicznÄ… na: -www.secondlife.com/support + WystÄ…piÅ‚ problem z teleportacjÄ…. Wyloguj siÄ™ i zaloguj ponownie. +JeÅ›li nadal otrzymujesz ten komunikat sprawdź Pomoc TechnicznÄ… na stronie: +www.secondlife.com/support. </message> <message name="invalid_region_handoff"> - Huston / LL - Mamy problem ze zmianÄ… regionu. Może relog by pomógl? -Jeżeli caÅ‚y czas nie możesz zmienić regionu sprawdź Pomoc TechnicznÄ… na: -www.secondlife.com/support + WystÄ…piÅ‚ problem ze zmianÄ… regionu. Wyloguj siÄ™ i zaloguj ponownie. +JeÅ›li nadal otrzymujesz ten komunikat sprawdź Pomoc TechnicznÄ… na stronie: +www.secondlife.com/support. </message> <message name="blocked_tport"> - Przepraszamy, ale teleportacja jest chwilowo niedostÄ™pna - problemy z nowÄ… technologiÄ…. -Spróbuj jeszcze raz. Hmm - caÅ‚y czas nie dziaÅ‚a - może relog by pomógl? + Przepraszamy, teleportacja jest chwilowo niedostÄ™pna. Spróbuj jeszcze raz. +JeÅ›li nadal nie możesz siÄ™ teleportować wyloguj siÄ™ i ponownie zaloguj. </message> <message name="nolandmark_tport"> Przepraszamy, ale nie możemy znaleźć miejsca docelowego. diff --git a/indra/newview/skins/default/xui/pt/floater_about.xml b/indra/newview/skins/default/xui/pt/floater_about.xml index fe0e03a9adc54fb8b6c5b9183697e707020a333e..4186e5e2076e24e9cabd72d2bdbd0ab465c268fd 100644 --- a/indra/newview/skins/default/xui/pt/floater_about.xml +++ b/indra/newview/skins/default/xui/pt/floater_about.xml @@ -28,7 +28,7 @@ Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) - Eu tive uma pequena ajuda de meus amigos. --Richard Starkey + Para ter sucesso nos negócios, seja ousado, seja o primeiro, seja diferente. --Henry Marchant </text_editor> <string name="you_are_at"> Você está em [POSITION] diff --git a/indra/newview/skins/default/xui/pt/floater_about_land.xml b/indra/newview/skins/default/xui/pt/floater_about_land.xml index 3a715aa01f62901270764c5f939cdb77e4b593a6..4426378075014df2dd411714badb307fb1dd8560 100644 --- a/indra/newview/skins/default/xui/pt/floater_about_land.xml +++ b/indra/newview/skins/default/xui/pt/floater_about_land.xml @@ -8,6 +8,18 @@ <text length="1" name="Description:" type="string"> Descrição: </text> + <text name="LandType"> + Tipo: + </text> + <text name="LandTypeText"> + Continente / Terra + </text> + <text name="ContentRating"> + Classificação: + </text> + <text name="ContentRatingText"> + Adult + </text> <text length="1" name="Owner:" type="string"> Proprietário: </text> @@ -29,7 +41,7 @@ Não está à Venda. </text> <text length="1" name="For Sale: Price L$[PRICE]." type="string"> - Preço: L$[PRICE]. + Preço: L$[PRICE] (L$[PRICE_PER_SQM]/m²). </text> <button label="Vender Terra..." label_selected="Vender Terra..." name="Sell Land..."/> <text length="1" name="For sale to" type="string"> @@ -39,7 +51,7 @@ À venda (Objetos incluÃdos). </text> <text length="1" name="Selling with no objects in parcel." type="string"> - À venda (Objetos não IncluÃdos). + À venda (Objetos não incluÃdos). </text> <button label="Cancelar venda do terreno" label_selected="Cancelar venda do terreno" left="275" name="Cancel Land Sale" width="165"/> <text length="1" name="Claimed:" type="string"> @@ -52,7 +64,7 @@ Ãrea: </text> <text length="1" name="PriceText" type="string"> - 4048 m². + 4048 m² </text> <text length="1" name="Traffic:" type="string"> Tráfego: @@ -76,7 +88,7 @@ Ãrea </string> <string name="area_size_text"> - [AREA] m². + [AREA] m² </string> <string name="auction_id_text"> ID do Leilão: [ID] @@ -108,36 +120,60 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se </string> </panel> <panel label="Corretor" name="land_covenant_panel"> + <text name="estate_section_lbl"> + Propriedade: + </text> + <text length="1" name="estate_name_lbl" type="string"> + Nome: + </text> + <text length="1" name="estate_name_text" type="string"> + mainland + </text> + <text length="1" name="estate_owner_lbl" type="string"> + Dono: + </text> + <text length="1" name="estate_owner_text" type="string"> + (nenhum) + </text> + <text_editor length="1" name="covenant_editor" type="string"> + Não há corretor para esta Propriedade. + </text_editor> <text length="1" name="covenant_timestamp_text" type="string"> Última Alteração: Qua, Dez 31 16:00:00 1969 </text> - <text length="1" name="region_name_lbl" type="string"> + <text name="region_section_lbl"> Região: </text> + <text length="1" name="region_name_lbl" type="string"> + Nome: + </text> <text length="1" name="region_name_text" type="string"> leyla </text> - <text length="1" name="estate_name_lbl" type="string"> - Propriedade: + <text name="region_landtype_lbl"> + Tipo: </text> - <text length="1" name="estate_name_text" type="string"> - mainland + <text name="region_landtype_text"> + Continente / Terra </text> - <text length="1" name="estate_owner_lbl" type="string"> - Dono da Propriedade: + <text name="region_maturity_lbl"> + Classificação: </text> - <text length="1" name="estate_owner_text" type="string"> - (nenhum) + <text name="region_maturity_text"> + Adult + </text> + <text name="resellable_lbl"> + Revender: </text> <text length="1" name="resellable_clause" type="string"> - Terra comprada nesta região não pode ser revendida. + Terra nesta região não pode ser revendida. + </text> + <text name="changeable_lbl"> + Subdividir: </text> <text length="1" name="changeable_clause" type="string"> - Terra comrpada nesta região não poderá ser compartilhada ou sub-dividida. + Terra nesta região não pode ser unida/sub-dividida. </text> - <text_editor length="1" name="covenant_editor" type="string"> - Não há corretor para esta Propriedade. - </text_editor> <string name="can_resell"> Terra comprada nesta região pode ser revendida. </string> @@ -145,10 +181,12 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se Terra comprada nesta região não pode ser revendida. </string> <string name="can_change"> - Terra comprada nesta região pode ser compartilhada ou sub-dividida. + Terra comprada nesta região pode ser compartilhada +ou sub-dividida. </string> <string name="can_not_change"> - Terra comprada nesta região não pode ser compartilhada ou sub-dividida. + Terra comprada nesta região não pode ser compartilhada +ou sub-dividida. </string> </panel> <panel label="Objetos" name="land_objects_panel"> @@ -210,14 +248,14 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se [COUNT] </text> <text left="4" length="1" name="Autoreturn" type="string" width="412"> - Auto-retornar objetos dos outros residentes (minutos,0 para desligado): + Auto-retornar objetos dos outros residentes (minutos, 0 para desligado): </text> - <line_editor name="clean other time" right="-6" width="36"/> + <line_editor name="clean other time" right="-10"/> <text length="1" name="Object Owners:" type="string"> Donos dos Objetos: </text> - <button label="Atualizar Lista" label_selected="Atualizar Lista" name="Refresh List"/> - <button label="Retornar objetos..." label_selected="Retornar objetos..." name="Return objects..."/> + <button label="Atualizar Lista" label_selected="Atualizar Lista" name="Refresh List" left="118"/> + <button label="Retornar objetos..." label_selected="Retornar objetos..." name="Return objects..." left="230"/> <name_list name="owner list"> <column label="Tipo" name="type"/> <column label="Nome" name="name"/> @@ -232,17 +270,17 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se <check_box label="Editar Terreno" name="edit land check" tool_tip="Se ativado, qualquer um pode modificar a forma da sua terra. É melhor deixar esta opção desativada, uma vez que você sempre pode editar seu próprio terreno."/> <check_box label="Criar Landmarks" name="check landmark"/> <check_box label="Voar" name="check fly" tool_tip="Se ativado, os Residentes podem voar na sua terra. Se desativado, eles podem voar apenas para dentro e por cima de sua terra."/> - <text length="1" name="allow_label2" type="string"> + <text length="1" name="allow_label2" type="string" left="172"> Criar Objetos: </text> <check_box label="Residentes" name="edit objects check"/> <check_box label="Grupo" name="edit group objects check"/> - <text length="1" name="allow_label3" type="string"> + <text length="1" name="allow_label3" type="string" left="172"> Entrada do Objeto: </text> <check_box label="Residentes" name="all object entry check"/> <check_box label="Grupo" name="group object entry check"/> - <text length="1" name="allow_label4" type="string"> + <text length="1" name="allow_label4" type="string" left="172"> Executar Scripts: </text> <check_box label="Residentes" name="check other scripts"/> @@ -253,6 +291,57 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se <check_box label="Salvo (sem dano)" name="check safe" tool_tip="Se ativado, ajusta o terreno para Seguro, desabilitando combate com danos. Se não ativado, o combate com danos é habilitado."/> <check_box label="Sem Empurrar" name="PushRestrictCheck" tool_tip="Evita scripts que empurram. A ativação dessa opção pode ser útil para prevenir comportamentos desordeiros na sua terra."/> <check_box label="Mostra o Lugar na Busca (L$30/semana) sob" name="ShowDirectoryCheck" tool_tip="Permitir que as pessoas vejam este terreno nos resultados de busca"/> + <string name="search_enabled_tooltip"> + Permitir que as pessoas vejam este lote nos resultados de busca + </string> + <string name="search_disabled_small_tooltip"> + Esta opção está desabilitada porque a área deste lote tem 128 m² ou menos. +Apenas lotes maiores podem ser listados na busca. + </string> + <string name="search_disabled_permissions_tooltip"> + Esta opção está desabilitada porque você não pode modificar as opções deste lote. + </string> + <combo_box name="land category with adult"> + <combo_item name="AnyCategory"> + Qualquer Categoria + </combo_item> + <combo_item name="LindenLocation"> + Local da Linden + </combo_item> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Arts&Culture"> + Artes & Cultura + </combo_item> + <combo_item name="Business"> + Negócios + </combo_item> + <combo_item name="Educational"> + Educacional + </combo_item> + <combo_item name="Gaming"> + Jogos + </combo_item> + <combo_item name="Hangout"> + Moradia + </combo_item> + <combo_item name="NewcomerFriendly"> + Amigável a Novos Usuários + </combo_item> + <combo_item name="Parks&Nature"> + Parques & Natureza + </combo_item> + <combo_item name="Residential"> + Residencial + </combo_item> + <combo_item name="Shopping"> + Shopping + </combo_item> + <combo_item name="Other"> + Outros + </combo_item> + </combo_box> <combo_box left="276" name="land category" width="146"> <combo_item name="AnyCategory"> Qualquer Categoria @@ -260,7 +349,6 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se <combo_item name="LindenLocation"> Locação Linden </combo_item> - <combo_item name="Arts&Culture"> Artes e Cultura </combo_item> @@ -293,7 +381,19 @@ Vá para o menu Mundo > Sobre a Terra ou selecione outro lote para mostrar se </combo_item> </combo_box> <button label="?" label_selected="?" left="426" name="?"/> - <check_box name="MatureCheck" /> + <check_box label="Conteúdo Mature" name="MatureCheck" tool_tip=""/> + <string name="mature_check_mature"> + Conteúdo Mature + </string> + <string name="mature_check_adult"> + Conteúdo Adult + </string> + <string name="mature_check_mature_tooltip"> + A informação do seu lote ou seu conteúdo são considerados mature. + </string> + <string name="mature_check_adult_tooltip"> + A informação do seu lote ou seu conteúdo são considerados adult. + </string> <text length="1" name="Snapshot:" type="string"> Foto: </text> @@ -374,21 +474,14 @@ MÃdia: <text name="Sound:"> Som: </text> - <check_box label="Restringir som espacial a este lote" left="97" name="check sound local"/> + <check_box label="Restringir gestos e sons de objetos a este lote" left="97" name="check sound local"/> + <button label="?" label_selected="?" name="?"/> <text name="Voice settings:"> Voz: </text> - <radio_group left="97" name="parcel_voice_channel" width="310"> - <radio_item name="Estate"> - Usar o canal espacial da Propriedade - </radio_item> - <radio_item name="Private"> - Usar um canal especial privado - </radio_item> - <radio_item name="Disabled"> - Desabilitar áudio espacial neste lote - </radio_item> - </radio_group> + <check_box left="97" label="Habilitar Voz" name="parcel_enable_voice_channel"/> + <check_box left="97" label="Habilitar Voz (definida pela Propriedade)" name="parcel_enable_voice_channel_is_estate_disabled"/> + <check_box left="117" label="Restringir Voz a este lote" name="parcel_enable_voice_channel_parcel"/> </panel> <panel label="Acesso" name="land_access_panel"> <text length="1" name="Limit access to this parcel to:" type="string"> diff --git a/indra/newview/skins/default/xui/pt/floater_avatar_picker.xml b/indra/newview/skins/default/xui/pt/floater_avatar_picker.xml index 23b0b86675f2fff70dc20ba4c451423879dfc9b3..8f433a635db3f3d3edcd6f9cfab421a61713f7ea 100644 --- a/indra/newview/skins/default/xui/pt/floater_avatar_picker.xml +++ b/indra/newview/skins/default/xui/pt/floater_avatar_picker.xml @@ -1,15 +1,40 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="avatarpicker" title="Escolha o Residente"> - <text name="instruct_search_resident_name"> - Digite parte do nome do residente: - </text> - <button label="Encontrar" label_selected="Encontrar" name="Find"/> - <text name="Or select their calling card:"> - Ou selecione um cartão de visita: - </text> - <button label="Fechar" label_selected="Fechar" name="Close"/> + <tab_container name="ResidentChooserTabs"> + <panel label="Buscar" name="SearchPanel"> + <text name="InstructSearchResidentName"> + Digite parte do nome do Residente: + </text> + <button label="Encontrar" label_selected="Encontrar" name="Find"/> + </panel> + <panel label="Cartões de Visita" name="CallingCardsPanel"> + <text name="InstructSelectCallingCard"> + Selecione um cartão de visita: + </text> + </panel> + <panel label="Próximo a Mim" name="NearMePanel"> + <text name="InstructSelectResident"> + Selecione residente próximo: + </text> + <button label="Atualizar Lista" label_selected="Atualizar Lista" name="Refresh"/> + <slider label="Faixa" name="near_me_range"/> + <text name="meters"> + Metros + </text> + </panel> + </tab_container> <button label="Selecionar" label_selected="Selecionar" name="Select"/> - <string name="NotFound"> + <button label="Cancelar" label_selected="Cancelar" name="Cancel"/> + <string name="not_found"> '[TEXT]' não encontrado </string> + <string name="no_one_near"> + Ninguém proximo + </string> + <string name="no_results"> + Nenhum resultado + </string> + <string name="searching"> + Buscando... + </string> </floater> diff --git a/indra/newview/skins/default/xui/pt/floater_bulk_perms.xml b/indra/newview/skins/default/xui/pt/floater_bulk_perms.xml new file mode 100644 index 0000000000000000000000000000000000000000..c064d24f9627d01b92a06a860d35e60644c2d6e9 --- /dev/null +++ b/indra/newview/skins/default/xui/pt/floater_bulk_perms.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="floaterbulkperms" title="Mudança conjunta das permissões de conteúdo"> + <text name="applyto"> + Tipos de Conteúdo + </text> + <check_box label="Animação" name="check_animation"/> + <check_box label="Partes do Corpo" name="check_bodypart"/> + <check_box label="Roupas" name="check_clothing"/> + <check_box label="Gestos" name="check_gesture"/> + <check_box label="Landmarks" name="check_landmark"/> + <check_box label="Notecards" name="check_notecard"/> + <check_box label="Objetos" name="check_object"/> + <check_box label="Scripts" name="check_script"/> + <check_box label="Sons" name="check_sound"/> + <check_box label="Texturas" name="check_texture"/> + <button label="Marcar Todas" label_selected="Todas" name="check_all"/> + <button label="Desmarcar Todas" label_selected="Nenhuma" name="check_none"/> + <text name="newperms"> + Novas Permissões + </text> + <check_box label="Compartilhar com o grupo" name="share_with_group"/> + <check_box label="Permitir que qualquer um copie" name="everyone_copy"/> + <text name="NextOwnerLabel"> + O próximo dono pode: + </text> + <check_box label="Modificar" name="next_owner_modify"/> + <check_box label="Copiar" name="next_owner_copy"/> + <check_box label="Revender/Dar" name="next_owner_transfer"/> + <button label="Ajuda" name="help"/> + <button label="Aplicar" name="apply"/> + <button label="Fechar" name="close"/> + <string name="nothing_to_modify_text"> + A seleção não contém nenhum conteúdo editável. + </string> + <string name="status_text"> + Definindo permissões em [NAME] + </string> + <string name="start_text"> + Iniciando solicitação de mudança de permissão... + </string> + <string name="done_text"> + Solicitação de mudança de permissão concluÃda. + </string> +</floater> diff --git a/indra/newview/skins/default/xui/pt/floater_buy_currency.xml b/indra/newview/skins/default/xui/pt/floater_buy_currency.xml index ce2fe93705d6b670b1da98e7355434fd4f4adc73..42ba2054757a1c3411098ccd761412aafd4b5542 100644 --- a/indra/newview/skins/default/xui/pt/floater_buy_currency.xml +++ b/indra/newview/skins/default/xui/pt/floater_buy_currency.xml @@ -22,13 +22,13 @@ <text name="buy_action"> [NAME] L$ [PRICE] </text> - <text name="currency_action"> + <text name="currency_action" width="60"> Comprar L$ </text> - <line_editor name="currency_amt"> + <line_editor name="currency_amt" left_delta="65" width="70"> 1234 </line_editor> - <text name="currency_est"> + <text name="currency_est" left_delta="72"> por aproxim. US$ [USD] </text> <text name="getting_data"> diff --git a/indra/newview/skins/default/xui/pt/floater_buy_land.xml b/indra/newview/skins/default/xui/pt/floater_buy_land.xml index 9c4ed2a70b48083bf9fb9f686e4db4df90ef3bb6..25716d025732b4c6164e179fe483745f3d8432f3 100644 --- a/indra/newview/skins/default/xui/pt/floater_buy_land.xml +++ b/indra/newview/skins/default/xui/pt/floater_buy_land.xml @@ -6,6 +6,12 @@ <text name="region_name_text"> (desconhecido) </text> + <text name="region_type_label"> + Tipo: + </text> + <text name="region_type_text"> + (desconhecido) + </text> <text name="estate_name_label"> Propriedade: </text> @@ -22,10 +28,10 @@ Adquiriu um terreno nesta região: </text> <text name="resellable_clause"> - Terra adquirida nesta região pode, ou não, ser revendida. + Pode ou não ser revendida. </text> <text name="changeable_clause"> - pode, ou não, ser unido ou subdividido. + Pode ou não ser unida ou sub-dividida. </text> <text name="covenant_text"> Você deve concordar com o Corretor da Propriedade: @@ -50,7 +56,9 @@ Preço: </text> <text name="info_price"> - L$ 1500, objetos inclusos + L$ 1500 +(L$ 1.1/m²) +vendido com os objetos </text> <text name="info_action"> Comprar este lote irá: @@ -80,8 +88,8 @@ Aumente sua taxa de locação de terra para US$ 40/mês. </text> <text name="land_use_reason"> - Você possui 1.309 metros quadrados de terra. -Este lote tem 512 metros quadrados de terra. + Você possui 1309 m² de terra. +Este lote tem 512 m² de terra. </text> <text name="purchase_action"> Pagar ao Residente Joe L$4000 pela terra @@ -158,7 +166,7 @@ Este lote tem 512 metros quadrados de terra. Comprar esta terra irá: </string> <string name="buying_for_group"> - Comprar terra para o grupo: + Ao comprar terra para o grupo: </string> <string name="cannot_buy_now"> Não foi possÃvel comprar agora: @@ -182,24 +190,32 @@ Este lote tem 512 metros quadrados de terra. Pagar L$ [AMOUNT] para [SELLER] por esta terra </string> <string name="buy_for_US"> - Comprar L$ [AMOUNT] por aproximadamente US$ [AMOUNT2] , + Comprar L$ [AMOUNT] por aprox. US$ [AMOUNT2], </string> <string name="parcel_meters"> Este lote tem [AMOUNT] m². </string> <string name="premium_land"> - Esta terra é Premium, e irá cobrar como [AMOUNT] m². + Esta terra é premium e será taxada como [AMOUNT] m². </string> <string name="discounted_land"> - Este lote é promocional, e irá cobrar como [AMOUNT] m². + Esta terra tem desconto e será taxada como [AMOUNT] m². </string> <string name="meters_supports_object"> [AMOUNT] m² -suporta [AMOUNT2] objetos +aceita [AMOUNT2] objetos </string> <string name="sold_with_objects"> vendido com objetos </string> + <string name="sold_without_objects"> + objetos não incluÃdos + </string> + <string name="info_price_string"> + L$ [PRICE] +(L$ [PRICE_PER_SQM]/m²) +[SOLD_WITH_OBJECTS] + </string> <string name="insufficient_land_credits"> O grupo [GROUP] precisará de fundos suficientes de terras contribuÃdas para cobrir este lote antes da aquisição se completar. diff --git a/indra/newview/skins/default/xui/pt/floater_customize.xml b/indra/newview/skins/default/xui/pt/floater_customize.xml index 267612bb9da5375415b13d1cc4fc8c220d933902..31f3f3d59c2f7b57b1b1bdf4502bb1fa20d0241b 100644 --- a/indra/newview/skins/default/xui/pt/floater_customize.xml +++ b/indra/newview/skins/default/xui/pt/floater_customize.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="floater customize" title="Aparência" width="513"> - <tab_container name="customize tab container" tab_min_width="115" width="511"> +<floater name="floater customize" title="Aparência" width="546"> + <tab_container name="customize tab container" tab_min_width="115" width="544"> <panel label="Partes de corpo" name="body_parts_placeholder"/> <panel label="Forma" name="Shape"> <button label="Reverter" label_selected="Reverter" name="Revert"/> @@ -21,7 +21,6 @@ Masculino </radio_item> </radio_group> - <button label="Aleatório" label_selected="Aleatório" name="Randomize"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -38,22 +37,24 @@ Localizado em [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Coloque uma nova forma arrastando uma do seu inventário -para seu avatar. Alternativamente, você pode criar uma nova de um esboço e usá-la. + Coloque uma nova forma arrastando uma do seu inventário para seu avatar. +Alternativamente, você pode criar uma nova de um esboço e usá-la. </text> <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar esta vestimenta. </text> + <text name="Item Action Label"> + Forma: + </text> <button label="Criar Nova Forma" label_selected="Criar Nova Forma" name="Create New"/> - <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> </panel> <panel label="Pele" name="Skin"> - <button label="Cor de Pele" label_selected="Cor de Pele" name="Skin Color"/> - <button label="Detalhes Faciais" label_selected="Detalhes Faciais" name="Face Detail"/> - <button label="Maquiagem" label_selected="Maquiagem" name="Makeup"/> - <button label="Detalhes do Corpo" label_selected="Detalhes do Corpo" name="Body Detail"/> + <button width="115" label="Cor de Pele" label_selected="Cor de Pele" name="Skin Color"/> + <button width="115" label="Detalhes Faciais" label_selected="Detalhes Faciais" name="Face Detail"/> + <button width="115" label="Maquiagem" label_selected="Maquiagem" name="Makeup"/> + <button width="115" label="Detalhes do Corpo" label_selected="Detalhes do Corpo" name="Body Detail"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -71,26 +72,28 @@ para seu avatar. Alternativamente, você pode criar uma nova de um esboço e us </text> <text length="1" name="not worn instructions" type="string"> Coloque uma nova pele arrastando uma de seu inventário para seu avatar. -Alternativamente, você pode criar uma nova forma a partir de um esboço e usá-la. +Alternativamente, você pode criar uma nova forma a partir de um esboço +e usá-la. </text> <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar esta vestimenta. </text> - <texture_picker label="Tatuagens para a cabeça" name="Head Tattoos" tool_tip="Clique para escolher um desenho"/> - <texture_picker label="Tattoos Superiores" name="Upper Tattoos" tool_tip="Clique para escolher um desenho"/> - <texture_picker label="Tattoos Inferiores" name="Lower Tattoos" tool_tip="Clique para escolher um desenho"/> - <button label="Aleatório" label_selected="Aleatório" name="Randomize"/> + <text name="Item Action Label"> + Pele: + </text> + <texture_picker width="86" label="Tattoo: cabeça" name="Head Tattoos" tool_tip="Clique para escolher um desenho"/> + <texture_picker width="86" label="Tattoo: superior" name="Upper Tattoos" tool_tip="Clique para escolher um desenho"/> + <texture_picker width="86" label="Tattoo: inferior" name="Lower Tattoos" tool_tip="Clique para escolher um desenho"/> <button label="Criar Nova Pele" label_selected="Criar Nova Pele" name="Create New"/> - <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Cabelo" name="Hair"> - <button label="Cor" label_selected="Cor" name="Color"/> - <button label="Estilo" label_selected="Estilo" name="Style"/> - <button label="Sombrancelhas" label_selected="Sombrancelhas" name="Eyebrows"/> - <button label="Rosto" label_selected="Rosto" name="Facial"/> + <button width="115" label="Cor" label_selected="Cor" name="Color"/> + <button width="115" label="Estilo" label_selected="Estilo" name="Style"/> + <button width="115" label="Sombrancelhas" label_selected="Sombrancelhas" name="Eyebrows"/> + <button width="115" label="Rosto" label_selected="Rosto" name="Facial"/> <text length="1" name="title" type="string"> [DESC] </text> @@ -108,18 +111,19 @@ Alternativamente, você pode criar uma nova forma a partir de um esboço e usá- </text> <text length="1" name="not worn instructions" type="string"> Ponha um novo cabelo em seu avatar arrastando um do seu inventário. -Alternativamente, você pode criar um novo modelo a partir de um esboço e -usá-lo. +Alternativamente, você pode criar um novo modelo a partir de um esboço +e usá-lo. </text> <text length="1" name="no modify instructions" type="string"> Você não ter permissão para modificar essa vestimenta. </text> + <text name="Item Action Label"> + Cabelo: + </text> <texture_picker label="Texture" name="Texture" tool_tip="Clique para escolher uma imagem"/> - <button label="Aleatório" label_selected="Aleatório" name="Randomize"/> <button label="Criar Novo Cabelo" label_selected="Criar Novo Cabelo" name="Create New"/> - <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Olhos" name="Eyes"> @@ -140,18 +144,18 @@ usá-lo. </text> <text length="1" name="not worn instructions" type="string"> Para colocar novos olhos, arraste um do seu inventário para seu avatar. -Alternativamente, você pode criar um novo modelo de um esboço e -usá-lo. +Alternativamente, você pode criar um novo modelo de um esboço e usá-lo. </text> <text length="1" name="no modify instructions" type="string"> Você não tem permissão para alterar esta vestimenta. </text> + <text name="Item Action Label"> + Olhos: + </text> <texture_picker label="Ãris" name="Iris" tool_tip="Clique para escolher uma imagem"/> - <button label="Aleatório" label_selected="Aleatório" name="Randomize"/> <button label="Criar Novos Olhos" label_selected="Criar Novos Olhos" name="Create New"/> - <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Roupas" name="clothes_placeholder"/> @@ -161,7 +165,7 @@ usá-lo. <button label="Criar Nova Camisa" label_selected="Criar Nova Camisa" name="Create New"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> <text length="1" name="title" type="string"> [DESC] @@ -179,13 +183,16 @@ usá-lo. Localizado em [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Para por uma nova camisa em seu avatar, arraste uma do seu -inventário para seu avatar. Alternativamente, você pode criar um -novo modelo a partir de um esboço e usá-lo. + Para por uma nova camisa em seu avatar, arraste uma do seu inventário para +seu avatar. Alternativamente, você pode criar um novo modelo a partir de +um esboço e usá-lo. </text> <text length="1" name="no modify instructions" type="string"> Você não ter permissão para modificar esta vestimenta. </text> + <text name="Item Action Label"> + Camisa: + </text> </panel> <panel label="Calças" name="Pants"> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> @@ -193,7 +200,7 @@ novo modelo a partir de um esboço e usá-lo. <button label="Criar Novas Calças" label_selected="Criar Novas Calças" name="Create New"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> <text length="1" name="title" type="string"> [DESC] @@ -218,6 +225,9 @@ de um esboço e usá-lo. <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar esta vestimenta. </text> + <text name="Item Action Label"> + Calças: + </text> </panel> <panel label="Sapatos" name="Shoes"> <text length="1" name="title" type="string"> @@ -243,12 +253,15 @@ de um esboço e usá-lo. <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar esta vestimenta. </text> + <text name="Item Action Label"> + Sapatos: + </text> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas"/> <button label="Criar Novos Sapatos" label_selected="Criar Novos Sapatos" name="Create New" width="166"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Meias" name="Socks"> @@ -269,17 +282,21 @@ de um esboço e usá-lo. </text> <text length="1" name="not worn instructions" type="string"> Para por novas meias em seu avatar, basta arrastar uma nova do seu -inventário. Alternativamente, você pode criar novas meias a partir de um esboço e usá-las. +inventário. Alternativamente, você pode criar novas meias a partir de +um esboço e usá-las. </text> <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar essa vestimenta. </text> + <text name="Item Action Label"> + Meias: + </text> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas"/> <button label="Criar Novas Meias" label_selected="Criar Novas Meias" name="Create New"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Jaqueta" name="Jacket"> @@ -306,13 +323,16 @@ partir de um esboço e usá-lo. <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar esta vestimenta. </text> + <text name="Item Action Label"> + Jaqueta: + </text> <texture_picker label="Tecido Superior" name="Upper Fabric" tool_tip="Clique para escolher uma imagem." width="84"/> <texture_picker label="Tecido Inferior" name="Lower Fabric" tool_tip="Clique para escolher uma imagem." width="84"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas"/> <button label="Criar Nova Jaqueta" label_selected="Criar Nova Jaqueta" name="Create New"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Luvas" name="Gloves"> @@ -339,12 +359,15 @@ partir de um esboço e usá-lo. <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar essa vestimenta. </text> + <text name="Item Action Label"> + Luvas: + </text> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Clique para abrir o conta-gotas"/> <button label="Criar Novas Luvas" label_selected="Criar Novas Luvas" name="Create New"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Camiseta" name="Undershirt"> @@ -364,19 +387,22 @@ partir de um esboço e usá-lo. Localizado em [PATH] </text> <text length="1" name="not worn instructions" type="string"> - Para por uma nova Camiseta em seu avatar, basta arrastar um novo -modelo de seu inventário. Alternativamente, você pode criar um -novo modelo a partir de um esboço e usá-lo. + Para por uma nova Camiseta em seu avatar, basta arrastar um novo modelo +de seu inventário. Alternativamente, você pode criar um novo modelo a +partir de um esboço e usá-lo. </text> <text length="1" name="no modify instructions" type="string"> Você não ter permissão para modificar essa vestimenta. </text> + <text name="Item Action Label"> + Camiseta: + </text> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Clique para abrir o conta-gotas"/> - <button label="Criar Nova Camiseta" label_selected="Criar Nova Roupa de Baixo" name="Create New"/> + <button label="Criar Nova Camiseta" label_selected="Criar Nova Camiseta" name="Create New"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Roupas de Baixo" name="Underpants"> @@ -403,12 +429,15 @@ modelo a partir de um esboço e usá-lo. <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar essa vestimenta. </text> + <text name="Item Action Label"> + Roupas de Baixo: + </text> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas"/> - <button label="Criar Novas Roupas de Baixo" label_selected="Criar Novas Roupas de Baixo" name="Create New" width="176"/> + <button label="Criar Novas Roupas de Baixo" label_selected="Criar Novas Roupas de Baixo" name="Create New" width="180"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> <panel label="Saia" name="Skirt"> @@ -435,17 +464,20 @@ partir de um esboço e usá-lo. <text length="1" name="no modify instructions" type="string"> Você não tem permissão para modificar esta vestimenta. </text> + <text name="Item Action Label"> + Saia: + </text> <texture_picker label="Tecido" name="Fabric" tool_tip="Clique para escolher uma imagem"/> <color_swatch label="Cor/Tint" name="Color/Tint" tool_tip="Click to open Color Picker"/> <button label="Criar Nova Saia" label_selected="Criar Nova Saia" name="Create New"/> <button label="Remover" label_selected="Remover" name="Take Off"/> <button label="Salvar" label_selected="Salvar" name="Save"/> - <button label="Salvar Como" label_selected="Salvar Como" name="Save As"/> + <button label="Salvar como..." label_selected="Salvar como..." name="Save As"/> <button label="Reverter" label_selected="Reverter" name="Revert"/> </panel> </tab_container> - <scroll_container left="216" name="panel_container"/> - <button label="Fechar" label_selected="Fechar" name="Close"/> - <button label="Salvar Tudo" label_selected="Salvar Tudo" name="Save All"/> - <button label="Criar Visual" label_selected="Criar Visual" name="Make Outfit"/> + <scroll_container left="249" name="panel_container"/> + <button label="Cancelar" label_selected="Cancelar" name="Cancel"/> + <button label="OK" label_selected="OK" name="Ok"/> + <button label="Criar Vestimenta..." label_selected="Criar Vestimenta..." name="Make Outfit" left="117" width="125" /> </floater> diff --git a/indra/newview/skins/default/xui/pt/floater_font_test.xml b/indra/newview/skins/default/xui/pt/floater_font_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..eb52d3341d90851598c19b86d6baadce3f686da2 --- /dev/null +++ b/indra/newview/skins/default/xui/pt/floater_font_test.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="contents" title="Teste de Fonte"> + <text name="linea"> + OverrideTest, deveria aparecer aqui como Times. (De default/xui/en-us) + </text> +</floater> diff --git a/indra/newview/skins/default/xui/pt/floater_joystick.xml b/indra/newview/skins/default/xui/pt/floater_joystick.xml index 90faa6bd057729315d087072aac8f1690cfb28ae..6c2e4a51444a9d09150a0b30def212dfb9f01ac0 100644 --- a/indra/newview/skins/default/xui/pt/floater_joystick.xml +++ b/indra/newview/skins/default/xui/pt/floater_joystick.xml @@ -71,6 +71,8 @@ Zona Morta de Zoom </text> <button label="Padrões do Navegador Espacial" name="SpaceNavigatorDefaults"/> + <button label="OK" label_selected="OK" name="ok_btn"/> + <button label="Cancelar" label_selected="Cancelar" name="cancel_btn"/> <string name="JoystickMonitor"> Monitor do Joystick </string> diff --git a/indra/newview/skins/default/xui/pt/floater_land_holdings.xml b/indra/newview/skins/default/xui/pt/floater_land_holdings.xml index 848ab2ed2adc3fb2576aca06af8cd697b3d2f1da..1a640c9793df4a1abf8e07681da6bd10abcd0f20 100644 --- a/indra/newview/skins/default/xui/pt/floater_land_holdings.xml +++ b/indra/newview/skins/default/xui/pt/floater_land_holdings.xml @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <floater name="land holdings floater" title="Meu terreno"> <scroll_list name="parcel list"> - <column label="Nome" name="name"/> - <column label="Localização" name="location"/> + <column label="Nome do Lote" name="name"/> + <column label="Região" name="location"/> + <column label="Tipo" name="type"/> <column label="Ãrea" name="area"/> </scroll_list> <button label="Teletransporte" label_selected="Teletransporte" name="Teleport" tool_tip="Teletransportar para o centro do terreno."/> diff --git a/indra/newview/skins/default/xui/pt/floater_mute_object.xml b/indra/newview/skins/default/xui/pt/floater_mute_object.xml index 32dd62c96bde323cc2833fcd821eb84fd3832604..d967f527aed0ecda20ef6702401dcfad4dc8be1b 100644 --- a/indra/newview/skins/default/xui/pt/floater_mute_object.xml +++ b/indra/newview/skins/default/xui/pt/floater_mute_object.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="mute by name" title="Emudecer objeto pelo nome"> +<floater name="mute by name" title="Silenciar objeto pelo nome"> <text name="message"> - Emudecer pelo nome afeta apenas conversa de objeto e MI, não sons. Você deve digitar o nome exato do objeto. + Silenciar pelo nome afeta apenas conversa de objeto e MI, não sons. Você deve digitar o nome exato do objeto. </text> <line_editor name="object_name"> Nome do objeto diff --git a/indra/newview/skins/default/xui/pt/floater_perm_prefs.xml b/indra/newview/skins/default/xui/pt/floater_perm_prefs.xml new file mode 100644 index 0000000000000000000000000000000000000000..9bb7f04256f9ccc703aac9e5a2a560973a788530 --- /dev/null +++ b/indra/newview/skins/default/xui/pt/floater_perm_prefs.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="perm prefs" title="Permissões Padrão de Upload"> + <panel label="Permissões" name="permissions"> + <button label="?" label_selected="?" name="help"/> + <check_box label="Compartilhar com o grupo" name="share_with_group"/> + <check_box label="Permitir que qualquer um copie" name="everyone_copy"/> + <text name="NextOwnerLabel"> + O próximo dono pode: + </text> + <check_box label="Modificar" name="next_owner_modify"/> + <check_box label="Copiar" name="next_owner_copy"/> + <check_box label="Revender/Dar" name="next_owner_transfer"/> + </panel> + <button label="OK" label_selected="OK" name="ok"/> + <button label="Cancelar" label_selected="Cancelar" name="cancel"/> +</floater> diff --git a/indra/newview/skins/default/xui/pt/floater_report_abuse.xml b/indra/newview/skins/default/xui/pt/floater_report_abuse.xml index 9fc694fb6a58700e87c0cb7311c5a8e5dd0f8e15..9091386681d575715100a7ebd8c70a0c2d3f4a61 100644 --- a/indra/newview/skins/default/xui/pt/floater_report_abuse.xml +++ b/indra/newview/skins/default/xui/pt/floater_report_abuse.xml @@ -45,9 +45,9 @@ <combo_item name="Age__Adult_resident_on_Teen_Second_Life"> Idade > Residente adulto no Second Life Jovem </combo_item> - - - + <combo_item name="Age__Underage_resident_outside_of_Teen_Second_Life"> + Idade > Residente menor de idade fora do Second Life Teen + </combo_item> <combo_item name="Assault__Combat_sandbox___unsafe_area"> Assalto > Sandbox de combate / área não segura </combo_item> @@ -117,15 +117,15 @@ <combo_item name="Indecency__Broadly_offensive_content_or_conduct"> Indecência > Conteúdo ou conduta amplamente ofensivos </combo_item> - - - <combo_item name="Indecency__Inappropriate_avatar_name"> Indecência > Nome de avatar inapropriado </combo_item> - - - + <combo_item name="Indecency__Mature_content_in_PG_region"> + Indecência > Conduta ou conteúdo inapropriados numa região PG + </combo_item> + <combo_item name="Indecency__Inappropriate_content_in_Mature_region"> + Indecência > Conduta ou conteúdo inapropriados numa região Mature + </combo_item> <combo_item name="Intellectual_property_infringement_Content_Removal"> Violação de propriedade intelectual > Remoção de Conteúdo </combo_item> diff --git a/indra/newview/skins/default/xui/pt/floater_sell_land.xml b/indra/newview/skins/default/xui/pt/floater_sell_land.xml index 87cf44ab8c6b06816fa7c3f8290071bb8bbc34f2..4236d2a4658b2b0574e02baee125914eb21ea6e5 100644 --- a/indra/newview/skins/default/xui/pt/floater_sell_land.xml +++ b/indra/newview/skins/default/xui/pt/floater_sell_land.xml @@ -10,11 +10,12 @@ Tamanho: </text> <text name="info_size"> - [AREA] m². + [AREA] m² </text> - <text name="info_action"> + <text name="info_action" bottom_delta="-67"> Para vender este lote: </text> + <icon bottom_delta="-66" name="step_price" /> <text name="price_label"> Defina um preço: </text> @@ -31,9 +32,10 @@ Vender esta terra para: </text> <text name="sell_to_text"> - Escolha se venderá para qualquer um ou para um comprador em particular. + Escolha se venderá para qualquer um ou para um comprador em +particular. </text> - <combo_box name="sell_to"> + <combo_box name="sell_to" bottom_delta="-32"> <combo_item name="--selectone--"> -- Selecione um -- </combo_item> @@ -49,9 +51,10 @@ Vender os objetos com a terra? </text> <text name="sell_objects_text"> - Os objetos tranferÃveis do proprietário do terreno que estão neste lote irão mudar de propriedade. + Os objetos tranferÃveis do proprietário do terreno que estão neste +lote irão mudar de propriedade. </text> - <radio_group name="sell_objects"> + <radio_group name="sell_objects" bottom_delta="-58"> <radio_item name="no"> Não, manter a propriedade sobre os objetos </radio_item> diff --git a/indra/newview/skins/default/xui/pt/floater_sound_preview.xml b/indra/newview/skins/default/xui/pt/floater_sound_preview.xml index 34a8b6e9ef2c2a7d6edfac9ee126aa4b83be7a36..df76499f42bf40a793ed9f5460f896d5d9adae8f 100644 --- a/indra/newview/skins/default/xui/pt/floater_sound_preview.xml +++ b/indra/newview/skins/default/xui/pt/floater_sound_preview.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<floater name="Name/Description" title="sound.wav"> +<floater name="Sound Preview" title="sound.wav"> <text name="name_label"> Nome: </text> diff --git a/indra/newview/skins/default/xui/pt/floater_statistics.xml b/indra/newview/skins/default/xui/pt/floater_statistics.xml new file mode 100644 index 0000000000000000000000000000000000000000..d26c7081cc903d49b29adaacff7198af1ef39970 --- /dev/null +++ b/indra/newview/skins/default/xui/pt/floater_statistics.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<floater name="stats floater" title="StatÃstica"/> diff --git a/indra/newview/skins/default/xui/pt/floater_tools.xml b/indra/newview/skins/default/xui/pt/floater_tools.xml index 838c7965eac349bac92144908515eee04113cce3..9a3d14c0ea816acb12f5647549cf4f9fa262e927 100644 --- a/indra/newview/skins/default/xui/pt/floater_tools.xml +++ b/indra/newview/skins/default/xui/pt/floater_tools.xml @@ -17,7 +17,7 @@ <check_box label="Selecionar Textura" name="radio select face"/> <check_box label="Editar partes unidas" name="checkbox edit linked parts"/> <text name="text ruler mode"> - Modo da régua: + Régua: </text> <combo_box name="combobox grid mode"> <combo_item name="World"> @@ -52,35 +52,33 @@ <button label="" label_selected="" name="ToolRing" tool_tip="Anel"/> <button label="" label_selected="" name="ToolTree" tool_tip="Ãrvore"/> <button label="" label_selected="" name="ToolGrass" tool_tip="Grama"/> - <check_box label="Manter ferramenta selecionada" name="checkbox sticky"/> - <check_box label="Copiar Seleção" name="checkbox copy selection"/> - <check_box label="Copiar Centro" name="checkbox copy centers"/> - <check_box label="Rotacionar Cópia" name="checkbox copy rotates"/> + <check_box label="Manter selecionado" name="checkbox sticky"/> + <check_box label="Copiar selecionado" name="checkbox copy selection"/> + <check_box label="Centro" name="checkbox copy centers"/> + <check_box label="Rotacionar" name="checkbox copy rotates"/> <check_box label="Selecionar Terra" name="radio select land"/> - <check_box label="Aplainar Terra" name="radio flatten"/> - <check_box label="Elevar Terra" name="radio raise"/> - <check_box label="Baixar Terra" name="radio lower"/> - <check_box label="Suavizar Terra" name="radio smooth"/> - <check_box label="Terreno RÃgido" name="radio noise"/> - <check_box label="Reverter Terra" name="radio revert"/> - <combo_box name="combobox brush size"> - <combo_item name="Small"> - Pequeno - </combo_item> - <combo_item name="Medium"> - Médio - </combo_item> - <combo_item name="Large"> - Grande - </combo_item> - </combo_box> + <check_box label="Aplainar" name="radio flatten"/> + <check_box label="Subir" name="radio raise"/> + <check_box label="Abaixar" name="radio lower"/> + <check_box label="Suavizar" name="radio smooth"/> + <check_box label="Endurecer" name="radio noise"/> + <check_box label="Reverter" name="radio revert"/> + <button label="Aplicar" label_selected="Aplicar" name="button apply to selection" tool_tip="Modificar Terra Selecionada"/> + <text name="Bulldozer:"> + Escavadeira: + </text> + <text name="Dozer Size:"> + Tamanho + </text> <text name="Strength:"> - Força: + Força + </text> + <text name="obj_count"> + Objetos selecionados: [COUNT] + </text> + <text name="prim_count"> + primitivas: [COUNT] </text> - <button label="Aplicar no selecionado" label_selected="Aplicar no selecionado" name="button apply to selection" tool_tip="Modificar Terra Selecionada"/> - <check_box label="Mostrar Proprietários" name="checkbox show owners"/> - <button label="Mais >>" name="button more" tool_tip="Opções Avançadas"/> - <button label="<< Menos" name="button less" tool_tip="Opções Avançadas"/> <tab_container name="Object Info Tabs"> <panel label="Comum" name="General"> <text name="Name:"> @@ -110,16 +108,13 @@ Os Lindens </text> <button label="Definir..." label_selected="Definir..." name="button set group"/> - <text name="prim info"> - 1 Objeto, 1 Primitiva - </text> <text name="Permissions:"> Permissões: </text> <text name="perm_modify"> Você pode modificar este objeto. </text> - <check_box label="Compartilhar com o Grupo" name="checkbox share with group" tool_tip="Permitir que o membros do grupo movam, modifiquem, copiem e apaguem"/> + <check_box label="Compartilhar com o Grupo" name="checkbox share with group" tool_tip="Permite que todos os membros do grupo definido compartilhem e usem suas permissões para este objeto. Você precisa Doar ao Grupo para habilitar as restrições de função."/> <string name="text deed continued"> Doar... </string> @@ -362,6 +357,9 @@ <text name="advanced_dimple"> Cova InÃcio e Final </text> + <text name="advanced_slice"> + Pedaço InÃcio (B) e Fim (E) + </text> <spinner label="B" name="Path Limit Begin"/> <spinner label="E" name="Path Limit End"/> <text name="text taper2"> @@ -552,21 +550,33 @@ <button label="Alinhar" label_selected="Alinhar" name="button align"/> </panel> <panel label="Conteúdo" name="Contents"> - <button label="Novo Script..." label_selected="Novo Script..." name="button new script"/> + <button label="Novo Script" label_selected="Novo Script..." name="button new script"/> + <button label="Permissões..." name="button permissions"/> </panel> </tab_container> <panel name="land info panel"> + <text name="label_parcel_info"> + Informações do Lote + </text> <text name="label_area_price"> Preço: L$[PRICE] por [AREA] m². </text> <text name="label_area"> Ãrea: [AREA] m². </text> - <button label="Comprar Terra..." label_selected="Comprar Terra.." name="button buy land"/> - <button label="Abandonar Terra..." label_selected="Abandonar Terra..." name="button abandon land"/> + <button label="Sobre a Terra..." label_selected="Sobre a Terra..." name="button about land"/> + <check_box label="Mostrar donos" name="checkbox show owners" tool_tip="Colorir lotes de acordo com seus donos"/> + <button label="?" label_selected="?" name="button show owners help"/> + <text name="label_parcel_modify"> + Modificar Lote + </text> <button label="Sub-Dividir..." label_selected="Sub-Dividir..." name="button subdivide land"/> <button label="Unir..." label_selected="Unir..." name="button join land"/> - <button label="Sobre a Terra..." label_selected="Sobre a Terra..." name="button about land"/> + <text name="label_parcel_trans"> + Transações com a Terra + </text> + <button label="Comprar Terra..." label_selected="Comprar Terra.." name="button buy land"/> + <button label="Abandonar Terra..." label_selected="Abandonar Terra..." name="button abandon land"/> </panel> <string name="status_rotate"> Arrastar as bandas coloridas para girar o objeto @@ -584,10 +594,10 @@ Clicar e arrastar para mudar a vista </string> <string name="status_grab"> - Arrastar para mover objetos, Ctrl para levantar, Ctrl-Shift para girar + Arrastar para mover, Ctrl para levantar, Ctrl-Shift para rotacionar </string> <string name="status_place"> - Clicar no mundo para criar, shift-clicar para selecionar + Clique no mundo para construir </string> <string name="status_selectland"> Clicar e arrastar para selecionar a terra 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 40d537d71d835e27340e9ad9189a437f9062dada..66279e82d35809257544f6a223cfcded32b8eeec 100644 --- a/indra/newview/skins/default/xui/pt/floater_world_map.xml +++ b/indra/newview/skins/default/xui/pt/floater_world_map.xml @@ -4,35 +4,29 @@ <panel label="Objetos" name="objects_mapview"/> <panel label="Terreno" name="terrain_mapview"/> </tab_container> - <text name="land_for_sale_label"> - Terra à venda - </text> - <text name="auction_label"> - Leilão - </text> <text name="you_label"> Você </text> <text name="home_label"> Casa </text> - <button label="Ir para Casa" label_selected="Ir para casa" name="Go Home" tool_tip="Teletransportar para sua Casa"/> - <text name="person_label"> - Pessoa - </text> - <text name="infohub_label"> - Infohub - </text> - <text name="telehub_label"> - Telehub + <text name="auction_label"> + Leilão </text> - <text name="land_for_sale_label2"> - Terra à Venda + <text name="land_for_sale_label"> + Terra à venda </text> + <button label="Ir para Casa" label_selected="Ir para casa" name="Go Home" tool_tip="Teletransportar para sua Casa"/> + <check_box label="Residente" name="people_chk"/> + <check_box label="Infohub" name="infohub_chk"/> + <check_box label="Telehub" name="telehubchk"/> + <check_box label="Terra à Venda" name="land_for_sale_chk"/> <text name="events_label"> - Eventos + Eventos: </text> - + <check_box label="PG" name="event_chk"/> + <check_box label="Mature" name="event_mature_chk"/> + <check_box label="Adult" name="event_adult_chk"/> <combo_box label="Amigos Conectados" name="friend combo" tool_tip="Amigos para mostrar no Mapa"> <combo_item name="none_selected"> Amigos Conectados @@ -54,10 +48,10 @@ <spinner name="spin x" tool_tip="Coordenada X da posição mostrada no mapa"/> <spinner name="spin y" tool_tip="Coordenada Y da posição mostrada no mapa"/> <spinner name="spin z" tool_tip="Coordenada Z da posição mostrada no Mapa"/> - <button label="Teletransporte" label_selected="Teletransporte" name="Teleport" tool_tip="Teletransportar para a posição selecionada"/> - <button label="Mostrar Destino" label_selected="Mostrar Destino" name="Show Destination" tool_tip="Centralizar mapa na posição selecionada"/> - <button label="Limpar" label_selected="Limpar" name="Clear" tool_tip="Parar de percorrer"/> - <button 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 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="Teletransporte" label_selected="Teletransporte" name="Teleport" tool_tip="Teletransportar para a posição selecionada"/> + <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"/> <slider label="Zoom" name="zoom slider"/> </floater> diff --git a/indra/newview/skins/default/xui/pt/menu_inventory.xml b/indra/newview/skins/default/xui/pt/menu_inventory.xml index 4fdafac015253395cbd1c9184121044f87d33573..486588158e5ae21ec1c95ad5ab5dfcfef4cf3882 100644 --- a/indra/newview/skins/default/xui/pt/menu_inventory.xml +++ b/indra/newview/skins/default/xui/pt/menu_inventory.xml @@ -41,9 +41,9 @@ <menu_item_call label="Copiar" name="Copy"/> <menu_item_call label="Colar" name="Paste"/> <menu_item_call label="Apagar" name="Delete"/> + <menu_item_call label="Remover os itens" name="Take Off Items"/> <menu_item_call label="Adicionar ao equipamento" name="Add To Outfit"/> <menu_item_call label="Substituir equipamento" name="Replace Outfit"/> - <menu_item_call label="Remover os itens" name="Take Off Items"/> <menu_item_call label="Iniciar conversa em conferência" name="Conference Chat Folder"/> <menu_item_call label="Executar" name="Sound Play"/> <menu_item_call label="Sobre as Landmarks" name="Teleport To Landmark"/> @@ -55,11 +55,12 @@ <menu_item_call label="Ativar" name="Activate"/> <menu_item_call label="Desativar" name="Deactivate"/> <menu_item_call label="Retirar de você" name="Detach From Yourself"/> + <menu_item_call label="Recuperar Última Posição" name="Restore to Last Position"/> <menu_item_call label="Vestir" name="Object Wear"/> <menu label="Anexar a" name="Attach To"/> <menu label="Anexar ao HUD" name="Attach To HUD"/> - <menu_item_call label="Vestir" name="Wearable Wear"/> <menu_item_call label="Editar" name="Wearable Edit"/> + <menu_item_call label="Vestir" name="Wearable Wear"/> <menu_item_call label="Retirar" name="Take Off"/> <menu_item_call label="--Sem opções--" name="--no options--"/> </menu> diff --git a/indra/newview/skins/default/xui/pt/menu_mini_map.xml b/indra/newview/skins/default/xui/pt/menu_mini_map.xml new file mode 100644 index 0000000000000000000000000000000000000000..1293f4e17ffa541f3b0bca482ec9b34f8006c58e --- /dev/null +++ b/indra/newview/skins/default/xui/pt/menu_mini_map.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<menu name="popup"> + <menu_item_call label="Zoom Perto" name="Zoom Close"/> + <menu_item_call label="Zoom Médio" name="Zoom Medium"/> + <menu_item_call label="Zoom Longe" name="Zoom Far"/> + <menu_item_call label="Parar Acompanhamento" name="Stop Tracking"/> + <menu_item_call label="Perfil..." name="Profile"/> +</menu> diff --git a/indra/newview/skins/default/xui/pt/menu_viewer.xml b/indra/newview/skins/default/xui/pt/menu_viewer.xml index bc4508ecc6ff014e951c07b6ec67d81c9bf14dfe..08ccdc043fa7652ceee26418f4f5ac493e234687 100644 --- a/indra/newview/skins/default/xui/pt/menu_viewer.xml +++ b/indra/newview/skins/default/xui/pt/menu_viewer.xml @@ -3,10 +3,12 @@ <menu label="Arquivo" name="File"> <tearoff_menu label="~~~~~~~~~~~" name="~~~~~~~~~~~"/> <menu label="Upload" name="upload"> - <menu_item_call label="Upload de imagem (L$[COST])..." name="Upload Image"/> - <menu_item_call label="Upload de som(L$[COST])..." name="Upload Sound"/> - <menu_item_call label="Upload de animação (L$[COST])..." name="Upload Animation"/> - <menu_item_call label="Upload de Arquivo (L$[COST] por arquivo)..." name="Bulk Upload"/> + <menu_item_call label="Imagem (L$[COST])..." name="Upload Image"/> + <menu_item_call label="Som (L$[COST])..." name="Upload Sound"/> + <menu_item_call label="Animação (L$[COST])..." name="Upload Animation"/> + <menu_item_call label="Bulk (L$[COST] por arquivo)..." name="Bulk Upload"/> + <menu_item_separator label="-----------" name="separator"/> + <menu_item_call label="Definir Permissões Padrão..." name="perm prefs"/> </menu> <menu_item_separator label="-----------" name="separator"/> <menu_item_call label="Fechar janela" name="Close Window"/> @@ -72,7 +74,7 @@ <menu_item_check label="Comunicar" name="Instant Message"/> <menu_item_check label="Inventário" name="Inventory"/> <menu_item_check label="Falantes Ativos" name="Active Speakers"/> - <menu_item_check label="Lista de pessoas que não podem falar com você" name="Mute List"/> + <menu_item_check label="Lista de residentes e objetos silenciados" name="Mute List"/> <menu_item_separator label="-----------" name="separator2"/> <menu_item_check label="Controles de câmera" name="Camera Controls"/> <menu_item_check label="Controles de movimento" name="Movement Controls"/> @@ -81,6 +83,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_check label="Barra de estatÃsticas" name="Statistics Bar"/> <menu_item_check label="Linhas de propriedades" name="Property Lines"/> + <menu_item_check label="Linhas de banimento" name="Banlines"/> <menu_item_check label="Donos de terrenos" name="Land Owners"/> <menu_item_separator label="-----------" name="separator4"/> <menu label="Dicas" name="Hover Tips"> @@ -113,7 +116,7 @@ <menu_item_separator label="-----------" name="separator3"/> <menu_item_call label="Deixar ausente" name="Set Away"/> <menu_item_call label="Deixar Ocupado" name="Set Busy"/> - <menu_item_call label="Parar todas as animações" name="Stop All Animations"/> + <menu_item_call label="Parar Animação do Meu Avatar" name="Stop Animating My Avatar"/> <menu_item_call label="Liberar teclas" name="Release Keys"/> <menu_item_separator label="-----------" name="separator4"/> <menu_item_call label="Histórico de conta..." name="Account History..."/> @@ -164,7 +167,6 @@ <menu_item_call label="Zoom na Seleção" name="Zoom to Selection"/> <menu_item_call label="Comprar objetos" name="Menu Object Take"/> <menu_item_call label="Pegar cópia" name="Take Copy"/> - <menu_item_call label="Salvar objeto de volta ao meu inventário" name="Save Object Back to My Inventory"/> <menu_item_call label="Salvar objeto de volta aos conteúdos do objeto" name="Save Object Back to Object Contents"/> <menu_item_separator label="-----------" name="separator6"/> <menu_item_call label="Mostrar scripts defeituosos/Erros de janela" name="Show Script Warning/Error Window"/> diff --git a/indra/newview/skins/default/xui/pt/notifications.xml b/indra/newview/skins/default/xui/pt/notifications.xml index 2b91f18b65afde2a8a1d90890d8d166368fb111c..a88ab65c7af0649863adbf47fd24112d25ab2890 100644 --- a/indra/newview/skins/default/xui/pt/notifications.xml +++ b/indra/newview/skins/default/xui/pt/notifications.xml @@ -1,20 +1,14 @@ -<?xml version="1.0" ?><notifications> - - <global name="skipnexttime"> - +<?xml version="1.0" encoding="utf-8"?> +<notifications> + <global name="skipnexttime"> Não exibir isto novamente - </global> - - <global name="alwayschoose"> - + </global> + <global name="alwayschoose"> Sempre escolher esta opção - </global> - + </global> <template name="okbutton"> <form> <button - - name="OK" text="$yestext"/> </form> @@ -23,8 +17,6 @@ <template name="okignore"> <form> <button - - name="OK" text="$yestext"/> <ignore text="$ignoretext"/> @@ -34,12 +26,9 @@ <template name="okcancelbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> </form> @@ -48,12 +37,9 @@ <template name="okcancelignore"> <form> <button - - name="OK" text="$yestext"/> <button - name="Cancel" text="$notext"/> <ignore text="$ignoretext"/> @@ -63,12 +49,9 @@ <template name="okhelpbuttons"> <form> <button - - name="OK" text="$yestext"/> <button - name="Help" text="$helptext"/> </form> @@ -77,5672 +60,2983 @@ <template name="yesnocancelbuttons"> <form> <button - - name="Yes" text="$yestext"/> <button - name="No" text="$notext"/> <button - name="Cancel" text="$canceltext"/> </form> </template> - - <notification - functor="GenericAcknowledge" - - name="MissingAlert" - > -'[_NAME]' não encontrado no notifications.xml. + <notification functor="GenericAcknowledge" label="Mensagem de Alerta Desconhecida" name="MissingAlert"> + Sua versão do Second Life não sabe como mostrar a mensagem de alerta que acabou de receber. + +Detalhes do erro: O alerta chamado '[_NAME]' não foi encontrado em notifications.xml. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="FloaterNotFound"> + Floater error: Não foram encontrados os seguintes controles: + [CONTROLS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="TutorialNotFound"> + Nenhum tutorial está disponÃvel no momento. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="GenericAlert"> + [MESSAGE] + </notification> + <notification name="GenericAlertYesCancel"> + [MESSAGE] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Sim"/> + </notification> + <notification name="BadInstallation"> + Ocorreu um erro atualizando o Second Life. Por favor, faça o download da última versão em secondlife.com. <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="FloaterNotFound" - > -Floater error: Não foram encontrados os seguintes controles: - [CONTROLS] - <usetemplate + </notification> + <notification name="LoginFailedNoNetwork"> + Erro de Rede: Não conseguiu estabelecer uma conexão. +'[DIAGNOSTIC]' +Por favor, verifique sua conexão de rede. + <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="TutorialNotFound" - > -Nenhum tutorial está disponÃvel no momento. - <usetemplate + </notification> + <notification name="MessageTemplateNotFound"> + Modelo de Mensagem [PATH] não encontrado. + <usetemplate name="okbutton" yestext="OK"/> - </notification> - - <notification - - name="GenericAlert" - > -[MESSAGE] - </notification> - - <notification - - name="GenericAlertYesCancel" - > -[MESSAGE] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Sim"/> - </notification> - - <notification - - name="WearableSave" - > -Salvar modificações? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Não salvar" - yestext="Salvar"/> - </notification> - - <notification - - name="CompileQueueSaveText" - > -Houve um problema com o carregamento do texto para um script devido à seguinte razão: [REASON]. Por favor, tente novamente mais tarde. - </notification> - - <notification - - name="CompileQueueSaveBytecode" - > -Houve um problema durante o carregamento do script compilado devido à seguinte razão: [REASON]. Por favor, tente novamente mais tarde. - </notification> - - <notification - - name="WriteAnimationFail" - > -Falha nos dados de inscrição de animação. Por favor, tente mais tarde. - </notification> - - <notification - - name="UploadAuctionSnapshotFail" - > -Houve um problema com o carregamento da foto do leilão devido à seguinte razão: [REASON] - </notification> - - <notification - - name="UnableToViewContentsMoreThanOne" - > -Não é possÃvel visualizar os conteúdos de mais de um item ao mesmo tempo. + </notification> + <notification name="WearableSave"> + Salvar modificações? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Não salvar" yestext="Salvar"/> + </notification> + <notification name="CompileQueueSaveText"> + Houve um problema com o carregamento do texto para um script devido à seguinte razão: [REASON]. Por favor, tente novamente mais tarde. + </notification> + <notification name="CompileQueueSaveBytecode"> + Houve um problema durante o carregamento do script compilado devido à seguinte razão: [REASON]. Por favor, tente novamente mais tarde. + </notification> + <notification name="WriteAnimationFail"> + Falha nos dados de inscrição de animação. Por favor, tente mais tarde. + </notification> + <notification name="UploadAuctionSnapshotFail"> + Houve um problema com o carregamento da foto do leilão devido à seguinte razão: [REASON] + </notification> + <notification name="UnableToViewContentsMoreThanOne"> + Não é possÃvel visualizar os conteúdos de mais de um item ao mesmo tempo. Por favor, selecione apenas um objeto e tente novamente. - </notification> - - <notification - - name="SaveClothingBodyChanges" - > -Salvar todas as mudanças de roupas/ partes do corpo? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Não Salvar" - yestext="Salvar tudo"/> - </notification> - - <notification - - name="GrantModifyRights" - > -Conceder direitos de modificar a outros residentes lhes permite trocar, deletar ou pegar QUAISQUER objetos que você possa ter no mundo. + </notification> + <notification name="SaveClothingBodyChanges"> + Salvar todas as mudanças de roupas/ partes do corpo? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Não Salvar" yestext="Salvar tudo"/> + </notification> + <notification name="GrantModifyRights"> + Conceder direitos de modificar a outros residentes lhes permite trocar, deletar ou pegar QUAISQUER objetos que você possa ter no mundo. Seja MUITO cuidadoso(a) quando passar esta permissão. Você deseja conceder direitos de modificar para [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="GrantModifyRightsMultiple" - > -Conceder direitos para modificar seus objetos a outro residente permite ele mudar QUAISQUER objetos que você possa ter no mundo. Tenha muito cuidado quando conceder essa permissão. + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="GrantModifyRightsMultiple"> + Conceder direitos para modificar seus objetos a outro residente permite ele mudar QUAISQUER objetos que você possa ter no mundo. Tenha muito cuidado quando conceder essa permissão. Você deseja permitir que os residentes selecionados tenham direito de edição? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="RevokeModifyRights" - > -Você deseja cancelar os direitos de edição de [FIRST_NAME] [LAST_NAME]? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="RevokeModifyRightsMultiple" - > -Você quer revogar os direitos de edição para os residentes selecionados? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="UnableToCreateGroup" - > -Não foi possÃvel criar um grupo. + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="RevokeModifyRights"> + Você deseja cancelar os direitos de edição de [FIRST_NAME] [LAST_NAME]? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="RevokeModifyRightsMultiple"> + Você quer revogar os direitos de edição para os residentes selecionados? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="UnableToCreateGroup"> + Não foi possÃvel criar um grupo. [MESSAGE] - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PanelGroupApply" - > -[NEEDS_APPLY_MESSAGE] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PanelGroupApply"> + [NEEDS_APPLY_MESSAGE] [WANT_APPLY_MESSAGE] - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Ignorar Alterações" - yestext="Aplicar Alterações"/> - </notification> - - <notification - - name="MustSpecifyGroupNoticeSubject" - > -Você deve especificar um assunto para enviar uma notÃcia para o grupo. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="AddGroupOwnerWarning" - > -Você está para adicionar membros do grupo na função de [ROLE_NAME]. + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Ignorar Alterações" yestext="Aplicar Alterações"/> + </notification> + <notification name="MustSpecifyGroupNoticeSubject"> + Você deve especificar um assunto para enviar uma notÃcia para o grupo. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AddGroupOwnerWarning"> + Você está para adicionar membros do grupo na função de [ROLE_NAME]. 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"/> - </notification> - - <notification - - name="AssignDangerousActionWarning" - > -Você está prestes a adicionar a habilidade '[ACTION_NAME]' para a função '[ROLE_NAME]' + <usetemplate ignoretext="Quando adcionar 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]' *AVISO* Qualquer membro com esta Habilidade pode atribuir a si mesmo -- e a outro membro -- funções que têm mais poderes que os que possuem atualmente, potencialmente elevando-os aos nÃveis próximos ao Proprietário. Certifique-se sobre esta decisão antes de atribuir esta habilidade. Adicionar esta habilidade ao '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="AssignDangerousAbilityWarning" - > -Você está prestes a adicionar a habilidade '[ACTION_NAME]' à função '[ROLE_NAME]'. + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="AssignDangerousAbilityWarning"> + Você está prestes a adicionar a habilidade '[ACTION_NAME]' à função '[ROLE_NAME]'. *AVISO* Qualquer membro numa função com esta habilidade, pode atribuir a sà mesmo -- e a qualquer outro -- todas as habilidades, elevando seus nÃveis próximos ao poder do Proprietário. Adicionar esta habilidade a '[ROLE_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ClickPublishHelpLand" - > -Selecionando "Publicar na Busca" + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ClickPublishHelpLand"> + Selecionando "Publicar na Busca" Clicando neste Box, será mostrado: - este lote nos resultados de busca - os objetos públicos deste lote - este lote na busca da web - </notification> - - <notification - - name="ClickPublishHelpLandDisabled" - > -Você não pode fazer este lote visÃvel na busca porque ele está localizado numa região que proÃbe isso. - </notification> - - <notification - - name="ClickPublishHelpAvatar" - > -Selecionando "Mostrar na Busca" será mostrado: + </notification> + <notification name="ClickSoundHelpLand"> + MÃdia e Música podem apenas ser utilizadas dentro deste lote. As opções de Som e Voz podem ser restritas ao lote ou serão ouvidas por residentes fora do lote, dependendo de suas Classificações de maturidade. Ir para o Banco de Conhecimento para saber mais sobre como definir essas opções? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Ir para o Banco de Conhecimento" + notext="Fechar" /> + </notification> + <notification name="ClickSearchHelpAll"> + Os resultados de busca são organizados com base na aba em que você se encontra, sua Classificação de maturidade, a categoria escolhida e outros fatores. Para mais detalhes, por favor veja o Banco de Conhecimento. + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 + </url> + <usetemplate + name="okcancelbuttons" + yestext="Ir para o Banco de Conhecimento" + notext="Fechar" /> + </notification> + <notification name="ClickPublishHelpLandDisabled"> + Você não pode fazer este lote visÃvel na busca porque ele está localizado numa região que proÃbe isso. + </notification> + <notification name="ClickPublishHelpAvatar"> + Selecionando "Mostrar na Busca" será mostrado: - meu perfil nos resultados de busca - um link para meu perfil nas páginas de grupos públicos - </notification> - - <notification - - name="ClickPartnerHelpAvatar" - > -Você pode propor a outro Residente ou dissolver uma parceria existente através do website [SECOND_LIFE]. + </notification> + <notification name="ClickPartnerHelpAvatar"> + Você pode propor a outro Residente ou dissolver uma parceria existente através do website [SECOND_LIFE]. Ir para o site do Second Life para mais informações sobre parceria? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Ir para a Página"/> - </notification> - - <notification - - name="ClickWebProfileHelpAvatar" - > -Se este Residente definiu uma URL de perfil na web, então você pode: + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Ir para a Página"/> + </notification> + <notification name="ClickUploadHelpPermissions"> + Suas permissões padrão podem não funcionar em regiões antigas. + </notification> + <notification name="ClickWebProfileHelpAvatar"> + Se este Residente definiu uma URL de perfil na web, então você pode: * Clicar em 'Carregar' para ver a página na aba Web. * Clicar Carregar > 'Em navegador externo' para ver a página no seu navegador de web padrão. * Clicar Carregar > 'URL de Casa' para voltar ao perfil do Residente na web se você navegou adiante. Quando você está vendo seu próprio perfil, você pode entrar com qualquer URL como sendo seu perfil na web e clicar OK para definÃ-la. Outros residentes podem visitar a URL que você definiu, quando eles olharem seu perfil. - </notification> - - <notification - - name="JoinGroupCanAfford" - > -Unir-se a esse grupo custa L$[COST]. + </notification> + <notification name="JoinGroupCanAfford"> + Unir-se a esse grupo custa L$[COST]. Deseja prosseguir? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Unir-se"/> - </notification> - - <notification - - name="JoinGroupCannotAfford" - > -Associar-se a este grupo custa L$[COST]. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Unir-se"/> + </notification> + <notification name="JoinGroupCannotAfford"> + Associar-se a este grupo custa L$[COST]. Você não tem L$ suficientes para associar-se a este grupo. - </notification> - - <notification - - name="LandBuyPass" - > -Por L$[COST] você pode ingressar no terreno ('[PARCEL_NAME]') por [TIME] horas. Comprar um passe de acesso? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="SalePriceRestriction" - > -O preço de venda deve ser ajustado para mais que 0 L$, se desejar vender para qualquer um. + </notification> + <notification name="LandBuyPass"> + Por L$[COST] você pode ingressar no terreno ('[PARCEL_NAME]') por [TIME] horas. Comprar um passe de acesso? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SalePriceRestriction"> + O preço de venda deve ser ajustado para mais que 0 L$, se desejar vender para qualquer um. Por favor, selecione um indivÃduo para realizar a venda se o valor for 0 L$. - </notification> - - <notification - - name="ConfirmLandSaleChange" - - > -[LAND_SIZE] m² selecionados de terra estão sendo configurados para venda. + </notification> + <notification name="ConfirmLandSaleChange"> + [LAND_SIZE] m² selecionados de terra estão sendo configurados para venda. Seu preço de venda será L$[SALE_PRICE] e está autorizado para venda para [NAME]. Gostaria de continuar a fazer essa alteração? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Continuar"/> - </notification> - - <notification - - name="ConfirmLandSaleToAnyoneChange" - > -ATENÇÃO: Ao clicar em 'vender para qualquer um' torna a sua terra disponÃvel para toda a comunidade Second Life, mesmo aqueles que não estão nesta região. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Continuar"/> + </notification> + <notification name="ConfirmLandSaleToAnyoneChange"> + ATENÇÃO: Ao clicar em 'vender para qualquer um' torna a sua terra disponÃvel para toda a comunidade Second Life, mesmo aqueles que não estão nesta região. A área de [LAND_SIZE] m² de terra selecionada está posta para venda. Seu preço de venda será L$ [SALE_PRICE] e está autorizado para [NAME]. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="ReturnObjectsDeededToGroup" - > -Você tem certeza de que quer retornar todos os objetos compartilhados com o grupo '[NAME]' neste lote de terra, para o inventário do seu antigo Proprietário? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ReturnObjectsDeededToGroup"> + Você tem certeza de que quer retornar todos os objetos compartilhados com o grupo '[NAME]' neste lote de terra, para o inventário do seu antigo Proprietário? *AVISO* Isso irá deletar os objetos não transferÃveis doados ao grupo! Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="ReturnObjectsOwnedByUser" - > -Você tem certeza de que deseja retornar todos os objetos do residente '[NAME]' neste lote para o inventário dele? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="ReturnObjectsOwnedByUser"> + Você tem certeza de que deseja retornar todos os objetos do residente '[NAME]' neste lote para o inventário dele? Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="ReturnObjectsOwnedBySelf" - > -Você tem certeza de que deseja retornar todos os objetos de sua propriedade neste lote para seu inventário? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="ReturnObjectsOwnedBySelf"> + Você tem certeza de que deseja retornar todos os objetos de sua propriedade neste lote para seu inventário? Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedBySelf" - > -Você tem certeza de que deseja retornar todos os objetos que NÃO são seus para o inventário de seus proprietários? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="ReturnObjectsNotOwnedBySelf"> + Você tem certeza de que deseja retornar todos os objetos que NÃO são seus para o inventário de seus proprietários? Objetos transferÃveis doados ao grupo retornarão para seu proprietários. *AVISO* Isso fará com que os objetos não-transferÃveis sejam deletados! Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByUser" - > -Você tem certeza de que deseja retornar todos os objetos deste lote NÃO pertencentes a [NAME] para o inventário do proprietário? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="ReturnObjectsNotOwnedByUser"> + Você tem certeza de que deseja retornar todos os objetos deste lote NÃO pertencentes a [NAME] para o inventário do proprietário? *AVISO* Esta ação irá apagar os objetos não transferÃveis doados ao grupo! Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="ReturnAllTopObjects" - > -Você tem certeza de que deseja enviar todos os objetos listados de volta aos inventários de seus proprietários? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="DisableAllTopObjects" - > -Você tem certeza que deseja desativar todos os objetos desta região? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Desativar"/> - </notification> - - <notification - - name="ReturnObjectsNotOwnedByGroup" - > -Retornar os objetos deste lote que NÃO são compartilhados com o grupo [NAME] de volta para seus proprietários? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="ReturnAllTopObjects"> + Você tem certeza de que deseja enviar todos os objetos listados de volta aos inventários de seus proprietários? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="DisableAllTopObjects"> + Você tem certeza que deseja desativar todos os objetos desta região? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Desativar"/> + </notification> + <notification name="ReturnObjectsNotOwnedByGroup"> + Retornar os objetos deste lote que NÃO são compartilhados com o grupo [NAME] de volta para seus proprietários? Objetos: [N] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="UnableToDisableOutsideScripts" - > -Não é possÃvel desabilitar scripts externos. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="UnableToDisableOutsideScripts"> + Não é possÃvel desabilitar scripts externos. Toda esta região possui dano habilitado. Scripts devem ser permitidos para fazer as armas funcionarem. - </notification> + </notification> + <notification name="MustBeInParcel"> + Você deve permanecer dentro do lote para definir o ponto de aterrissagem. + </notification> + <notification name="PromptRecipientEmail"> + Por favor, digite um endereço de email válido para o(s) destinatário(s). + </notification> + <notification name="PromptSelfEmail"> + Por favor, insira seu endereço de e-mail. + </notification> + <notification name="PromptMissingSubjMsg"> + Enviar por email uma foto com o assunto ou mensagem padrão? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="ErrorProcessingSnapshot"> + Erro processando dados da foto. + </notification> + <notification name="ErrorEncodingSnapshot"> + Erro ao codificar a foto. + </notification> + <notification name="ErrorUploadingPostcard"> + Houve um problema ao enviar a foto devido à seguinte razão: [REASON] + </notification> + <notification name="ErrorUploadingReportScreenshot"> + Houve um problema ao carregar a foto da reportagem devido à seguinte razão: [REASON] + </notification> + <notification name="MustAgreeToLogIn"> + Você deve concordar com os Termos de Serviço para continuar a entrar no [SECOND_LIFE]. + </notification> + <notification name="CouldNotPutOnOutfit"> + Não foi possÃvel vestir o conjunto. A pasta do conjunto não contém roupas, partes do corpo ou acessórios. + </notification> + <notification name="CannotWearTrash"> + Não é possÃvel usar roupas ou partes do corpo que estão no lixo. + </notification> + <notification name="CannotWearInfoNotComplete"> + Você não pode vestir este item porque ele ainda não carregou. Por favor, tente novamente em um minuto. + </notification> + <notification name="MustHaveAccountToLogIn"> + Oops! Alguma coisa foi deixada em branco. +Você precisa entrar com ambos os Nome e Sobrenome do seu avatar. - <notification - - name="MustBeInParcel" - > -Você deve permanecer dentro do lote para definir o ponto de aterrissagem. - </notification> +Você precisa de uma conta para entrar no [SECOND_LIFE]. Você gostaria de criar uma conta agora? + <usetemplate name="okcancelbuttons" notext="Tentar novamente" yestext="Criar uma nova conta"/> + </notification> + <notification name="AddClassified"> + Anúncios classificados aparecem na seção 'Classificados' do diretório de Busca e no www.secondlife.com por uma semana. +Preencha seu anúncio e então clique 'Publicar...' para adicioná-lo ao diretório. +Será solicitado a você um preço a ser pago, quando você clicar Publicar. +Pagando mais, faz com que seu anúncio apareça em posição mais alta na lista e também em posição mais alta, quando as pessoas buscarem por palavras-chave. + <usetemplate ignoretext="Quando adicionando um Classificado novo" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="DeleteClassified"> + Apagar classificado'[NAME]'? +Não há reembolso por taxas já pagas. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Apagar"/> + </notification> + <notification name="ClassifiedSave"> + Salvar as mudanças no classificado [NAME]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Não Salvar" yestext="Salvar"/> + </notification> + <notification name="DeleteAvatarPick"> + Apagar pegar [PICK]? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Delete"/> + </notification> + <notification name="PromptGoToEventsPage"> + Ir até a página web de enventos [SECOND_LIFE] ? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Ir à página"/> + </notification> + <notification name="SelectProposalToView"> + Por favor, selecione uma proposta para visualizar. + </notification> + <notification name="SelectHistoryItemToView"> + Por favor, selecione um item do histórico para exibÃ-lo. + </notification> + <notification name="ResetShowNextTimeDialogs"> + Você gostaria de reabilitar todas estas pop ups que você indicou previamente como 'Não me mostrar novamente'? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="SkipShowNextTimeDialogs"> + Você gostaria de desabilitar todas as popups que podem ser puladas? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="CacheWillClear"> + O cache será limpo quando você reiniciar [SECOND_LIFE]. + </notification> + <notification name="CacheWillBeMoved"> + O Cache será removido após reiniciar [SECOND_LIFE]. +Nota: Isto limpará o cache. + </notification> + <notification name="ChangeConnectionPort"> + Configuração de porta terá efeito após reiniciar [SECOND_LIFE]. + </notification> + <notification name="ChangeSkin"> + A nova pele será exibida após reiniciar [SECOND_LIFE]. + </notification> + <notification name="GoToAuctionPage"> + Ir para a página do [SECOND_LIFE] para ver os detalhes do leilão ou fazer um lance? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Ir para a página"/> + </notification> + <notification name="SaveChanges"> + Salvar alterações? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Não Salvar" yestext="Salvar"/> + </notification> + <notification name="GestureSaveFailedTooManySteps"> + Falha ao salvar Gesto. +Este gesto possui muitos passos. +Tente remover alguns passos e salve-o novamente. + </notification> + <notification name="GestureSaveFailedTryAgain"> + Falha ao salvar Gesto. Por favor, tente em uma minuto. + </notification> + <notification name="GestureSaveFailedObjectNotFound"> + Não foi possÃvel salvar o gesto pois o objeto ou o inventário associado ao objeto não foi encontrado. +O objeto pode estar fora de alcance ou foi deletado. + </notification> + <notification name="GestureSaveFailedReason"> + Houve um problema em salvar um gesto devido à seguinte razão: [REASON]. Por favor, tente salvar o Gesto depois. + </notification> + <notification name="SaveNotecardFailObjectNotFound"> + Não foi possÃvel salvar uma nota pois o objeto ou o inventário associado ao objeto não foi encontrado. +O objeto pode estar fora de alcance ou foi deletado. + </notification> + <notification name="SaveNotecardFailReason"> + Houve um problema em salvar uma nota devido a seguinte razão: [REASON]. Por favor, tente salvar a nota novamente mais tarde. + </notification> + <notification name="ScriptCannotUndo"> + Não foi possÃvel desfazer todas as mudanças na sua versão de script. +Gostaria de carregar a última versão salva? +(**Aviso** Esta operação não pode ser desfeita). + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="SaveScriptFailReason"> + Houve um problema em salvar um script devido à seguinte razão: [REASON]. Por favor, tente salvar novamente o script mais tarde. + </notification> + <notification name="SaveScriptFailObjectNotFound"> + Não foi possÃvel salvar o script pois o objeto em que ele está não pôde ser encontrado. +O objeto pode estar fora de alcance ou ter sido deletado. + </notification> + <notification name="SaveBytecodeFailReason"> + Houve um problema em salvar uma compilação de script devido a seguinte razão: [REASON]. Por favor, tente salvar novamente o script mais tarde. + </notification> + <notification name="CouldNotStartStopScript"> + Não foi possÃvel iniciar ou parar o script pois o objeto em que ele está não pôde ser encontrado. +O objeto pode estar fora de alcance ou ter sido deletado. + </notification> + <notification name="CannotDownloadFile"> + Não foi possÃvel baixar o arquivo. + </notification> + <notification name="CannotWriteFile"> + Não foi possÃvel escrever o arquivo [[FILE]] + </notification> + <notification name="UnsupportedHardware"> + Aviso: Seu sistema não é compatÃvel com os requisitos mÃnimos exigidos pelo Second Life. Se você continuar usando o Second Life pode experimentar uma performance ruim. Infelizmente não podemos oferecer suporte técnico para configurações de sistema não suportado. - <notification - - name="PromptRecipientEmail" - > -Por favor, digite um endereço de email válido para o(s) destinatário(s). - </notification> +MINSPECS +Você deseja visitar [_URL] para maiores informações? + <url name="url" option="0"> + http://www.secondlife.com/corporate/sysreqs.php + </url> + <usetemplate ignoretext="Ao detectar hardware não suportado" name="okcancelignore" notext="Não" yestext="Sim"/> + </notification> + <notification name="UnknownGPU"> + Seu sistema possui uma placa gráfica que nos é desconhecido neste momento. +Este é normalmente o caso de um novo hardware que nós não tivemos a chance de testar. Second Life vai muito provavelmente executar corretamente, mas talvez seja necessário ajustar suas configurações de gráficos para algo mais apropriado. +(Menu Editar > Preferências > Gráficos). + <form name="form"> + <ignore name="ignore" text="Ao detectar uma placa de vÃdeo desconhecida"/> + </form> + </notification> + <notification name="DisplaySettingsNoShaders"> + [SECOND_LIFE] travou quando inicializava os drivers gráficos. +A Qualidade Gráfica será ajustada para baixa, para evitar alguns erros comuns de drivers. +Isto irá desabilitar alguns atributos gráficos. +Nós recomendamos a atualização dos drivers de sua placa gráfica. +A Qualidade Gráfica pode ser aumentada no Preferências > Gráficos. + </notification> + <notification name="RegionNoTerraforming"> + A região [REGION] não permite ser aplainada. + </notification> + <notification name="CannotCopyWarning"> + Você não tem permissão para copiar este item e irá perdê-lo do seu inventário se entregá-lo a alguém. Quer realmente oferecer este item? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="CannotGiveItem"> + Não foi possÃvel entregar o item de inventário. + </notification> + <notification name="TransactionCancelled"> + Transação cancelada. + </notification> + <notification name="TooManyItems"> + Não é possÃvel passar mais que 42 itens em uma única transferência de inventário. + </notification> + <notification name="NoItems"> + Você não tem permissão para transferir os itens selecionados. + </notification> + <notification name="CannotCopyCountItems"> + Você não tem permissão para copiar [COUNT] dos itens selecionados. Você irá perdê-los do seu inventário. +Deseja realmente entregar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="CannotGiveCategory"> + Você não tem permissão para transferir a pasta selecionada. + </notification> + <notification name="FreezeAvatar"> + Congelar esse avatar? +Ele ou ela estará temporáriamente incapacitado de mover-se, conversar ou interagir com mundo. + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Descongelar" yestext="Congelar"/> + </notification> + <notification name="FreezeAvatarFullname"> + Congelar [AVATAR_NAME]? +Ele ou ela vai ficar temporariamente incapaz de se mover, usar o bate-papo ou interagir com o mundo. + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Descongelar" yestext="Congelar"/> + </notification> + <notification name="EjectAvatarFullname"> + Ejetar [AVATAR_NAME] da sua terra? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Ejetar e Banir" yestext="Ejetar"/> + </notification> + <notification name="EjectAvatarNoBan"> + Ejetar este avatar da sua terra? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Ejetar"/> + </notification> + <notification name="EjectAvatarFullnameNoBan"> + Ejetar [AVATAR_NAME] da sua terra? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Ejetar"/> + </notification> + <notification name="AcquireErrorTooManyObjects"> + Erro de aquisição: Muitos objetos selecionados. + </notification> + <notification name="AcquireErrorObjectSpan"> + Erro de aquisição: Objetos criados em mais de uma região. +Por favor, mova todos os objetos a serem adquiridos para uma mesma região. + </notification> + <notification name="PromptGoToCurrencyPage"> + [EXTRA] - <notification - - name="PromptSelfEmail" - > -Por favor, insira seu endereço de e-mail. - </notification> +Vá para [URL] para informação sobre compra de dinheiro. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Ir até a página"/> + </notification> + <notification name="UnableToLinkObjects"> + Não é possÃvel unir estes [COUNT] objetos. +Você pode unir um máximo de [MAX] objetos. + </notification> + <notification name="CannotLinkIncompleteSet"> + Você pode unir apenas conjuntos completos de objetos e deve selecionar mais que um objeto. + </notification> + <notification name="CannotLinkModify"> + Impossibilitado de unir, porque você não tem permissão para modificar todos os objetos. - <notification - - name="PromptMissingSubjMsg" - > -Enviar por email uma foto com o assunto ou mensagem padrão? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> +Por favor, certifique-se de que nenhum deles está travado e que você é dono de todos eles. + </notification> + <notification name="CannotLinkDifferentOwners"> + Impossibilitado de unir porque nem todos os objetos são do mesmo dono. - <notification - - name="ErrorProcessingSnapshot" - > -Erro processando dados da foto. - </notification> +Por favor, certifique-se de que você é o dono de todos os objetos selecionados. + </notification> + <notification name="NoFileExtension"> + Nenhuma extensão para o arquivo: '[FILE]' - <notification - - name="ErrorEncodingSnapshot" - > -Erro ao codificar a foto. - </notification> +Por favor, certifique-se de que o arquivo tem uma extensão de arquivo correta. + </notification> + <notification name="InvalidFileExtension"> + Extensão de arquivo inválida: [EXTENSION]. +Esperada [VALIDS] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotUploadSoundFile"> + Não é possÃvel abrir para leitura o arquivo de som carregado: +[FILE] + </notification> + <notification name="SoundFileNotRIFF"> + O arquivo não aparenta ser um arquivo do tipo RIFF WAVE: +[FILE] + </notification> + <notification name="SoundFileNotPCM"> + O arquivo não aparenta ser um arquivo de áudio PCM WAVE: +[FILE] + </notification> + <notification name="SoundFileInvalidChannelCount"> + O arquivo possui um número de canais inválido (deve ser mono ou estéreo): +[FILE] + </notification> + <notification name="SoundFileInvalidSampleRate"> + O arquivo não aparenta ter uma taxa de amostragem suportada (deve ser 44.1k): +[FILE] + </notification> + <notification name="SoundFileInvalidWordSize"> + O arquivo não aparenta ter um tamanho de palavra suportada (deve ser 8 ou 16 bit): +[FILE] + </notification> + <notification name="SoundFileInvalidHeader"> + Não pode ser encontrado bloco de dados no cabeçalho WAV: +[FILE] + </notification> + <notification name="SoundFileInvalidTooLong"> + Arquivo de áudio é muito longo (no máximo 10 segundos): +[FILE] + </notification> + <notification name="ProblemWithFile"> + Problemas com o arquivo [FILE]: - <notification - - name="ErrorUploadingPostcard" - > -Houve um problema ao enviar a foto devido à seguinte razão: [REASON] - </notification> +[ERROR] + </notification> + <notification name="CannotOpenTemporarySoundFile"> + Não pode abrir o arquivo temporário de som comprimido, para leitura: [FILE] + </notification> + <notification name="UnknownVorbisEncodeFailure"> + Falha desconhecida de codificação vorbis em: [FILE] + </notification> + <notification name="CannotEncodeFile"> + ImpossÃvel codificar o arquivo: [FILE] + </notification> + <notification name="CorruptResourceFile"> + Fonte do arquivo corrompida: [FILE] + </notification> + <notification name="UnknownResourceFileVersion"> + Versão desconhecida de arquivo de recursos da Linden no arquivo: [FILE] + </notification> + <notification name="UnableToCreateOutputFile"> + Incapaz de criar arquivo de saÃda: [FILE] + </notification> + <notification name="DoNotSupportBulkAnimationUpload"> + Atualmente, não suportamos o envio de arquivos de animação em massa. + </notification> + <notification name="CannotUploadReason"> + Incapaz de carregar [FILE] devido ao seguinte motivo: [REASON] +Por favor tente novamente mais tarde. + </notification> + <notification name="CannotCreateLandmarkNotOwner"> + Você não pode criar um ponto de referência porque o proprietário do terreno não permite. Tente novamente a alguns metros de distância. + </notification> + <notification name="CannotRecompileSelectObjectsNoScripts"> + Não é possÃvel realizar uma recompilação. +Selecione um objeto com um script. + </notification> + <notification name="CannotRecompileSelectObjectsNoPermission"> + Impossibilitado de executar uma 'recompilação'. - <notification - - name="ErrorUploadingReportScreenshot" - > -Houve um problema ao carregar a foto da reportagem devido à seguinte razão: [REASON] - </notification> +Selecione objetos com scripts que você tem permissão para modificar. + </notification> + <notification name="CannotResetSelectObjectsNoScripts"> + Impossibilitado de executar 'redefinir'. - <notification - - name="MustAgreeToLogIn" - > -Você deve concordar com os Termos de Serviço para continuar a entrar no [SECOND_LIFE]. - </notification> +Selecione objetos com scripts. + </notification> + <notification name="CannotResetSelectObjectsNoPermission"> + Impossibilitado de executar 'redefinir'. - <notification - - name="CouldNotPutOnOutfit" - > -Não foi possÃvel vestir o conjunto. A pasta do conjunto não contém roupas, partes do corpo ou acessórios. - </notification> +Selecione objetos com scripts que você tem permissão para modificar. + </notification> + <notification name="CannotSetRunningSelectObjectsNoScripts"> + Impossibilitado de definir quaisquer scripts para 'rodando'. - <notification - - name="CannotWearTrash" - > -Não é possÃvel usar roupas ou partes do corpo que estão no lixo. - </notification> +Selecione objetos com scripts. + </notification> + <notification name="CannotSetRunningNotSelectObjectsNoScripts"> + Impossibilitado de definir quaisquer scripts para 'não rodando'. - <notification - - name="CannotWearInfoNotComplete" - > -Você não pode vestir este item porque ele ainda não carregou. Por favor, tente novamente em um minuto. - </notification> +Selecione objetos com scripts. + </notification> + <notification name="NoFrontmostFloater"> + Nenhuma janela flutuante mais à frente para salvar. + </notification> + <notification name="SeachFilteredOnShortWords"> + Sua consulta de pesquisa foi alterada e as palavras que eram demasiado curtas foram removidas. - <notification - - name="MustHaveAccountToLogIn" - > -Oops! Alguma coisa foi deixada em branco. -Você precisa entrar com ambos os Nome e Sobrenome do seu avatar. +Pesquisava por: [FINALQUERY] + </notification> + <notification name="SeachFilteredOnShortWordsEmpty"> + Os termos de sua pesquisa eram muito curtos então nenhuma pesquisa foi feita. + </notification> + <notification name="CouldNotTeleportReason"> + Não é possÃvel teletransportar-se. +[REASON] + </notification> -Você precisa de uma conta para entrar no [SECOND_LIFE]. Você gostaria de criar uma conta agora? - <usetemplate - name="okcancelbuttons" - notext="Tentar novamente" - yestext="Criar uma nova conta"/> + <notification name="invalid_tport"> +Problema encontrado ao processar seu pedido de Teletransporte. Você pode tentar reiniciar antes de tentar teletransportar-se. Se você continuar a receber esta mensagem, por favor verifique a FAQ do Suporte Técnico em: +www.secondlife.com/support </notification> - - <notification - - name="AddClassified" - > -Anúncios classificados aparecem na seção 'Classificados' do diretório de Busca e no www.secondlife.com por uma semana. -Preencha seu anúncio e então clique 'Publicar...' para adicioná-lo ao diretório. -Será solicitado a você um preço a ser pago, quando você clicar Publicar. -Pagando mais, faz com que seu anúncio apareça em posição mais alta na lista e também em posição mais alta, quando as pessoas buscarem por palavras-chave. - <usetemplate - ignoretext="Quando adicionando um Classificado novo" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> + <notification name="invalid_region_handoff"> +Problema encontrado ao processar a passagem de regiões. Você pode tentar reiniciar antes de tentar atravessar regiões novamente. Se você continuar a receber esta mensagem, por favor verifique a FAQ do Suporte Técnico em: +www.secondlife.com/support </notification> - - <notification - - name="DeleteClassified" - > -Apagar classificado'[NAME]'? -Não há reembolso por taxas já pagas. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Apagar"/> + <notification name="blocked_tport"> +Desculpe, teletransportes estão atualmente bloqueados. Tente novamente dentro de alguns instantes. Se você continuar com problemas de teletransporte, por favor tente deslogar e relogar para resolver o problema. </notification> - - <notification - - name="ClassifiedSave" - > -Salvar as mudanças no classificado [NAME]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Não Salvar" - yestext="Salvar"/> + <notification name="nolandmark_tport"> +Desculpe, mas o sistema não conseguiu localizar a landmark de destino. </notification> - - <notification - - name="DeleteAvatarPick" - > -Apagar pegar [PICK]? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Delete"/> - </notification> - - <notification - - name="PromptGoToEventsPage" - > -Ir até a página web de enventos [SECOND_LIFE] ? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Ir à página"/> + <notification name="timeout_tport"> +Desculpe, não foi possÃvel para o sistema executar o teletransporte. Tente novamente dentro de alguns instantes. </notification> - - <notification - - name="SelectProposalToView" - > -Por favor, selecione uma proposta para visualizar. + <notification name="noaccess_tport"> +Desculpe, você não tem acesso ao destino deste teletransporte. </notification> - - <notification - - name="SelectHistoryItemToView" - > -Por favor, selecione um item do histórico para exibÃ-lo. + <notification name="missing_attach_tport"> +Seu anexos ainda não chegaram. Tente esperar por alguns momentos ou deslogar e logar antes de tentar teleransportar-se novamente. </notification> - - <notification - - name="ResetShowNextTimeDialogs" - > -Você gostaria de reabilitar todas estas pop ups que você indicou previamente como 'Não me mostrar novamente'? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> + <notification name="too_many_uploads_tport"> +Afluxo nesta região é atualmente tão alto que seu pedido de teletransporte não será possÃvel em tempo oportuno. Por favor, tente novamente em alguns minutos ou vá a uma área menos ocupada. </notification> - - <notification - - name="SkipShowNextTimeDialogs" - > -Você gostaria de desabilitar todas as popups que podem ser puladas? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> + <notification name="expired_tport"> +Desculpe, mas o sistema não conseguiu concluir o seu pedido de teletransporte em tempo hábil. Por favor, tente novamente em alguns minutos. </notification> - - <notification - - name="CacheWillClear" - > -O cache será limpo quando você reiniciar [SECOND_LIFE]. + <notification name="expired_region_handoff"> +Desculpe, mas o sistema não pôde concluir a sua travessia de região em tempo hábil. Por favor, tente novamente em alguns minutos. </notification> - - <notification - - name="CacheWillBeMoved" - > -O Cache será removido após reiniciar [SECOND_LIFE]. -Nota: Isto limpará o cache. + <notification name="no_host"> +Não foi possÃvel encontrar o destino do teletransporte. O destino pode estar temporariamente indisponÃvel ou não existir mais. Por favor, tente novamente em poucos minutos. </notification> - - <notification - - name="ChangeConnectionPort" - > -Configuração de porta terá efeito após reiniciar [SECOND_LIFE]. + <notification name="no_inventory_host"> +O sistema de inventário está indisponÃvel no momento. </notification> - <notification - - name="ChangeSkin" - > -A nova pele será exibida após reiniciar [SECOND_LIFE]. - </notification> + <notification name="CannotSetLandOwnerNothingSelected"> + Incapaz de estabelecer o proprietário do terreno: +Nenhum lote selecionado. + </notification> + <notification name="CannotSetLandOwnerMultipleRegions"> + Não é possÃvel exigir a posse do terreno porque a seleção alcançou múltiplas regiões. Por favor, selecione uma área menor e tente novamente. + </notification> + <notification name="ForceOwnerAuctionWarning"> + Este lote está oferecido em leilão. Exigir a posse do terreno irá cancelar o leilão e possivelmente deixará alguns residentes infelizes, se os lances já começaram. Exigir posse? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Retomar"/> + </notification> + <notification name="CannotContentifyNothingSelected"> + Conteúdo não encontrado: +Nenhum lote selecionado. + </notification> + <notification name="CannotContentifyNoRegion"> + Conteúdo não encontrado: +Nenhuma região selecionada. + </notification> + <notification name="CannotReleaseLandNothingSelected"> + Não é possÃvel abandonar terreno: +Nenhum lote selecionado. + </notification> + <notification name="CannotReleaseLandNoRegion"> + Não é possÃvel abandonar terreno: +Não é possÃvel encontrar a região. + </notification> + <notification name="CannotBuyLandNothingSelected"> + Não é possÃvel comprar terreno: +Nenhum lote selecionado. + </notification> + <notification name="CannotBuyLandNoRegion"> + Não é possÃvel comprar terreno: +Não é possÃvel achar a região em que este terreno se encontra. + </notification> + <notification name="CannotCloseFloaterBuyLand"> + Você não pode fechar a janela de Compra de Terreno até que o Second Life calcule o preço desta transação. + </notification> + <notification name="CannotDeedLandNothingSelected"> + Não é possÃvel transferir posse do terreno: +Nenhum lote selecionado. + </notification> + <notification name="CannotDeedLandNoGroup"> + Não é possÃvel transferir posse do terreno: +Nenhum grupo selecionado. + </notification> + <notification name="CannotDeedLandNoRegion"> + Não é possÃvel transferir posse do terreno: +Não é possÃvel se achar a região em que este terreno se encontra. +Por favor, use Ferramentas > Reporte de Bug para reportar isto. + </notification> + <notification name="CannotDeedLandMultipleSelected"> + Impossibilitado de passar a propriedade da terra: +Selecionados vários lotes. - <notification - - name="GoToAuctionPage" - > -Ir para a página do [SECOND_LIFE] para ver os detalhes do leilão ou fazer um lance? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Ir para a página"/> - </notification> +Tente selecionar um único lote. + </notification> + <notification name="ParcelCanPlayMedia"> + Esta localidade pode executar fluxo de mÃdia. +Fluxo de mÃdia necessita de uma conexão de Internet rápida. - <notification - - name="SaveChanges" - > -Salvar alterações? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Não Salvar" - yestext="Salvar"/> - </notification> +Executar fluxo de mÃdia quando disponÃvel? +(Você pode mudar esta opção mais tarde no Preferências > Ãudio & VÃdeo.) + <usetemplate name="okcancelbuttons" notext="Desabilitar" yestext="Exibir MÃdia"/> + </notification> + <notification name="CannotDeedLandWaitingForServer"> + Impossibilitado de passar a propriedade da terra: +Esperando pelo servidor informar de quem é a propriedade. - <notification - - name="GestureSaveFailedTooManySteps" - > -Falha ao salvar Gesto. -Este gesto possui muitos passos. -Tente remover alguns passos e salve-o novamente. - </notification> +Por favor, tente novamente. + </notification> + <notification name="CannotDeedLandNoTransfer"> + Não é possÃvel transferir posse do terreno: +A região [REGION] não permite transferência do terreno. + </notification> + <notification name="CannotReleaseLandWatingForServer"> + Impossibilitado de abandonar a terra: +Esperando o servidor atualizar as informações do lote. - <notification - - name="GestureSaveFailedTryAgain" - > -Falha ao salvar Gesto. Por favor, tente em uma minuto. - </notification> +Tente novamente em alguns segundos. + </notification> + <notification name="CannotReleaseLandSelected"> + Impossibilitado de abandonar a terra: +Você não é dono de todos os lotes selecionados. - <notification - - name="GestureSaveFailedObjectNotFound" - > -Não foi possÃvel salvar o gesto pois o objeto ou o inventário associado ao objeto não foi encontrado. -O objeto pode estar fora de alcance ou foi deletado. - </notification> +Por favor, selecione um único lote. + </notification> + <notification name="CannotReleaseLandDontOwn"> + Não é possÃvel abandonar terreno: +Você não tem permissão de liberar este lote. +Os lotes que você possui estão em verde. + </notification> + <notification name="CannotReleaseLandRegionNotFound"> + Impossibilitado de abandonar a terra: +Não consegue achar a região em que esta terra se encontra. - <notification - - name="GestureSaveFailedReason" - > -Houve um problema em salvar um gesto devido à seguinte razão: [REASON]. Por favor, tente salvar o Gesto depois. - </notification> +Por favor, usar Ferramentas > Reportar Bug, para reportar este erro. + </notification> + <notification name="CannotReleaseLandNoTransfer"> + Não é possÃvel abandonar terreno: +A região [REGION] não permite transferência de terreno. + </notification> + <notification name="CannotReleaseLandPartialSelection"> + Impossibilitado de abandonar a terra: +Você deve selecionar um lote inteiro para liberá-lo. - <notification - - name="SaveNotecardFailObjectNotFound" - > -Não foi possÃvel salvar uma nota pois o objeto ou o inventário associado ao objeto não foi encontrado. -O objeto pode estar fora de alcance ou foi deletado. - </notification> +Selecione um lote inteiro ou primeiro divida seu lote. + </notification> + <notification name="ReleaseLandWarning"> + Você está para liberar [AREA] m² de terra. +Liberando este terreno, o liberará de suas posses, mas não lhe concederá quaisquer L$. - <notification - - name="SaveNotecardFailReason" - > -Houve um problema em salvar uma nota devido a seguinte razão: [REASON]. Por favor, tente salvar a nota novamente mais tarde. - </notification> +Liberar esta terra? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Renunciar"/> + </notification> + <notification name="CannotDivideLandNothingSelected"> + Impossibilitado de dividir a terra: - <notification - - name="ScriptCannotUndo" - > -Não foi possÃvel desfazer todas as mudanças na sua versão de script. -Gostaria de carregar a última versão salva? -(**Aviso** Esta operação não pode ser desfeita). - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> +Nenhum lote selecionado. + </notification> + <notification name="CannotDivideLandPartialSelection"> + Impossibilitado de dividir a terra: - <notification - - name="SaveScriptFailReason" - > -Houve um problema em salvar um script devido à seguinte razão: [REASON]. Por favor, tente salvar novamente o script mais tarde. - </notification> +Você selecionou um lote inteiro. +Tente selecionar uma parte do lote. + </notification> + <notification name="LandDivideWarning"> + Dividir este terreno irá dividir este lote em dois e cada lote pode ter suas próprias configurações. Algumas configurações serão colocadas no padrão depois dessa operação. - <notification - - name="SaveScriptFailObjectNotFound" - > -Não foi possÃvel salvar o script pois o objeto em que ele está não pôde ser encontrado. -O objeto pode estar fora de alcance ou ter sido deletado. - </notification> +Quer dividir o terreno? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Dividir"/> + </notification> + <notification name="CannotDivideLandNoRegion"> + Impossibilitado de dividir a terra: +Não consegue achar a região em que esta terra se encontra. - <notification - - name="SaveBytecodeFailReason" - > -Houve um problema em salvar uma compilação de script devido a seguinte razão: [REASON]. Por favor, tente salvar novamente o script mais tarde. - </notification> +Por favor, usar Ferramentas > Reportar Bug, para reportar este erro. + </notification> + <notification name="CannotJoinLandNoRegion"> + Impossibilitado de unir a terra: +Não consegue achar a região em que esta terra se encontra. - <notification - - name="CouldNotStartStopScript" - > -Não foi possÃvel iniciar ou parar o script pois o objeto em que ele está não pôde ser encontrado. -O objeto pode estar fora de alcance ou ter sido deletado. - </notification> +Por favor, usar Ferramentas > Reportar Bug, para reportar este erro. + </notification> + <notification name="CannotJoinLandNothingSelected"> + Não é possÃvel unir terreno: +Nenhum lote selecionado. + </notification> + <notification name="CannotJoinLandEntireParcelSelected"> + Impossibilitado de unir a terra: +Você selecionou apenas um lote. - <notification - - name="CannotDownloadFile" - > -Não foi possÃvel baixar o arquivo. - </notification> +Selecione a terra através de ambos os lotes. + </notification> + <notification name="CannotJoinLandSelection"> + Impossibilitado de unir a terra: +Você deve selecionar mais de um lote. - <notification - - name="CannotWriteFile" - > -Não foi possÃvel escrever o arquivo [[FILE]] - </notification> +Selecione a terra através de ambos os lotes. + </notification> + <notification name="JoinLandWarning"> + Unir esta terra vai criar um grande lote que envolve todos os lotes que intersectam o retângulo selecionado. +Você vai ter que redefinir nome e as opções do novo lote. - <notification - - name="UnsupportedHardware" - > -Aviso: Seu sistema não é compatÃvel com os requisitos mÃnimos exigidos pelo Second Life. Se você continuar usando o Second Life pode experimentar uma performance ruim. Infelizmente não podemos oferecer suporte técnico para configurações de sistema não suportado. +Unir a terra? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Unir"/> + </notification> + <notification name="ShowOwnersHelp"> + Mostrar donos: +Colorir os lotes para mostrar o tipo de dono. + +Green = Sua terra +Aqua = Terra do seu Grupo +Red = PossuÃda por outros +Yellow = À venda +Purple = A leilão +Grey = Pública + </notification> + <notification name="ConfirmNotecardSave"> + Esta nota precisa ser salva antes do item ser copiado ou visualizado. Salvar nota? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Salvar"/> + </notification> + <notification name="ConfirmItemCopy"> + Copiar este item para o seu inventário? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Copiar"/> + </notification> + <notification name="ResolutionSwitchFail"> + Falha ao trocar a resolução para [RESX] por [RESY] + </notification> + <notification name="ErrorUndefinedGrasses"> + Erro: Gramado indefinido; [SPECIES] + </notification> + <notification name="ErrorUndefinedTrees"> + Erro: Ãrvores indefinidas: [SPECIES] + </notification> + <notification name="CannotSaveWearableOutOfSpace"> + Não é possÃvel salvar '[NAME]' para um arquivo de vestimenta. Você precisa liberar algum espaço no seu computador e salvar o arquivo novamente. + </notification> + <notification name="CannotSaveToAssetStore"> + Impossibilitado de salvar [NAME] no armazenamento central de ativos. +Isso é geralmente uma falha temporária. Por favor personalize e salve novamente a vestimenta em poucos minutos. -MINSPECS -Você deseja visitar [_URL] para maiores informações? - <url option="0" name="url"> +Se o problema persistir, por favor clicar sobre 'Ferramentas > Bug Report' no menu superior e forneça detalhes sobre a configuração de sua rede. + </notification> + <notification name="YouHaveBeenLoggedOut"> + 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"/> + </notification> + <notification name="OnlyOfficerCanBuyLand"> + Não é possÃvel comprar o terreno para o grupo: +Você não tem permissão para comprar o terreno para o seu grupo ativado. + </notification> + <notification label="Adicionar amigo" name="AddFriend"> + Amigos podem dar permissões de rastrear um ao outro pelo mapa e receber atualizações de status online. - http://www.secondlife.com/corporate/sysreqs.php - </url> - <usetemplate - ignoretext="Ao detectar hardware não suportado" - name="okcancelignore" - notext="Não" - yestext="Sim"/> - </notification> +Oferecer amizade para [NAME]? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Oferecer"/> + </notification> + <notification label="Adicionar amigo" name="AddFriendWithMessage"> + Amigos podem dar permissões de rastrear um ao outro pelo mapa e receber atualizações de status online. - <notification - - name="UnknownGPU" - > -Seu sistema possui uma placa gráfica que nos é desconhecido neste momento. -Este é normalmente o caso de um novo hardware que nós não tivemos a chance de testar. Second Life vai muito provavelmente executar corretamente, mas talvez seja necessário ajustar suas configurações de gráficos para algo mais apropriado. -(Menu Editar > Preferências > Gráficos). - <form name="form"> - <ignore name="ignore" - text="Ao detectar uma placa de vÃdeo desconhecida"/> - </form> - </notification> +Oferecer amizade para [NAME]? + <form name="form"> + <input name="message" type="text"> + Quer ser meu amigo? + </input> + <button name="Offer" text="Oferecer"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="RemoveFromFriends"> + Você quer remover [FIRST_NAME] [LAST_NAME] da sua lista de amigos? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Remover"/> + </notification> + <notification name="RemoveMultipleFromFriends"> + Você quer remover vários amigos da sua lista? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Remover"/> + </notification> + <notification name="GodDeleteAllScriptedPublicObjectsByUser"> + Você tem certeza que deseja excluir todos os objetos programados de propriedade de +** [AVATAR_NAME] ** +em todos os outros terrenos deste sim? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="APAGAR!!"/> + </notification> + <notification name="GodDeleteAllScriptedObjectsByUser"> + Você tem certeza que deseja excluir todos os objetos programados de propriedade de +** [AVATAR_NAME] ** +em TODOS OS TERRENOS deste sim? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="!!APAGAR TUDO!!"/> + </notification> + <notification name="GodDeleteAllObjectsByUser"> + Você tem certeza que deseja excluir TODOS os objetos (programados ou não) de propriedade de +** [AVATAR_NAME] ** +em TODOS OS TERRENOS deste sim? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="!!APAGAR TUDO!!"/> + </notification> + <notification name="BlankClassifiedName"> + Você deve especificar um nome para seu classificado. + </notification> + <notification name="MinClassifiedPrice"> + Preço mÃnimo a pagar para incluir na listagem é de L$[MIN_PRICE]. - <notification - - name="DisplaySettingsNoShaders" - > -[SECOND_LIFE] travou quando inicializava os drivers gráficos. -A Qualidade Gráfica será ajustada para baixa, para evitar alguns erros comuns de drivers. -Isto irá desabilitar alguns atributos gráficos. -Nós recomendamos a atualização dos drivers de sua placa gráfica. -A Qualidade Gráfica pode ser aumentada no Preferências > Gráficos. - </notification> +Por favor, insira um valor maior. + </notification> + <notification name="ConfirmObjectDeleteLock"> + Pelo menos um dos itens que você selecionou está trancado. - <notification - - name="RegionNoTerraforming" - > -A região [REGION] não permite ser aplainada. - </notification> +Tem certeza de que deseja apagar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopy"> + Pelo menos um dos itens que você selecionou não é copiável. - <notification - - name="CannotCopyWarning" - > -Você não tem permissão para copiar este item e irá perdê-lo do seu inventário se entregá-lo a alguém. Quer realmente oferecer este item? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> +Tem certeza de que deseja apagar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectDeleteNoOwn"> + Você não é proprietário de pelo menos um dos itens selecionados. - <notification - - name="CannotGiveItem" - > -Não foi possÃvel entregar o item de inventário. - </notification> +Tem certeza de que deseja apagar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopy"> + Pelo menos um dos objetos está trancado ou não é copiável. - <notification - - name="TransactionCancelled" - > -Transação cancelada. - </notification> +Tem certeza de que deseja apagar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoOwn"> + Pelo menos um dos objetos está trancado ou não é de sua posse. - <notification - - name="TooManyItems" - > -Não é possÃvel passar mais que 42 itens em uma única transferência de inventário. - </notification> +Tem certeza de que deseja apagar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectDeleteNoCopyNoOwn"> + Pelo menos um dos objetos não é copiável ou não é de sua posse. - <notification - - name="NoItems" - > -Você não tem permissão para transferir os itens selecionados. - </notification> +Tem certeza de que deseja apagar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectDeleteLockNoCopyNoOwn"> + Pelo menos um dos objetos está trancado, não é copiável ou você não o possui. - <notification - - name="CannotCopyCountItems" - > -Você não tem permissão para copiar [COUNT] dos itens selecionados. Você irá perdê-los do seu inventário. -Deseja realmente entregar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> +Tem certeza de que deseja apagar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectTakeLock"> + Pelo menos um dos objetos está trancado. - <notification - - name="CannotGiveCategory" - > -Você não tem permissão para transferir a pasta selecionada. - </notification> +Tem certeza de que deseja pegar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectTakeNoOwn"> + Você não possui todos os objetos que está pegando. +Caso continue, as permissões do próximo proprietário serão aplicadas aos objetos e possivelmente restringirão sua habilidade em modificá-los ou copiá-los. - <notification - - name="FreezeAvatar" - > -Congelar esse avatar? -Ele ou ela estará temporáriamente incapacitado de mover-se, conversar ou interagir com mundo. - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Descongelar" - yestext="Congelar"/> - </notification> +Você tem certeza de que quer pegar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmObjectTakeLockNoOwn"> + Pelo menos um objeto está bloqueado. +Você não possui todos os objetos que você está pegando. +Se continuar, as permissões para o próximo proprietário serão aplicadas e possivelmente restringirão sua capacidade de modificar ou copiá-los. +No entanto, você pode pegar a seleção atual. - <notification - - name="FreezeAvatarFullname" - > -Congelar [AVATAR_NAME]? -Ele ou ela vai ficar temporariamente incapaz de se mover, usar o bate-papo ou interagir com o mundo. - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Descongelar" - yestext="Congelar"/> - </notification> +Tem certeza de que deseja pegar estes itens? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="CantBuyLandAcrossMultipleRegions"> + Não foi possÃvel comprar terreno, pois a seleção abrange várias regiões. - <notification - - name="EjectAvatarFullname" - > -Ejetar [AVATAR_NAME] da sua terra? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Ejetar e Banir" - yestext="Ejetar"/> - </notification> +Por favor, selecione uma área menor e tente novamente. + </notification> + <notification name="DeedLandToGroup"> + Na transferência de propriedade deste lote, o grupo deverá ter e manter créditos suficientes de uso da terra. +O preço de aquisição dos terrenos não é restituÃdo ao o proprietário. Se uma parcela transferida é vendida, o preço de venda é dividido igualmente entre os membros do grupo. - <notification - - name="EjectAvatarNoBan" - > -Ejetar este avatar da sua terra? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Ejetar"/> - </notification> +Transferir propriedade de [AREA] m² de terra ao grupo '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Acionar"/> + </notification> + <notification name="DeedLandToGroupWithContribution"> + Na transferência de propriedade deste lote, o grupo deverá ter e manter créditos suficientes de uso da terra. +A Transferência incluirá uma contribuição de terra simultanea para o grupo de '[FIRST_NAME] [LAST_NAME]'. +O preço da compra não será restituÃdo ao proprietário. Se um lote for vendido, o preço da venda será dividido igualmente entre os membros do grupo. - <notification - - name="EjectAvatarFullnameNoBan" - > -Ejetar [AVATAR_NAME] da sua terra? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Ejetar"/> - </notification> +Transferir propriedade destes [AREA] m² de terreno para o grupo '[GROUP_NAME]'? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Acionar"/> + </notification> + <notification name="DisplaySetToSafe"> + 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. + </notification> + <notification name="ErrorMessage"> + [ERROR_MESSAGE] + </notification> + <notification name="AvatarMoved"> + Sua [TYPE] localização não está disponÃvel no momento. + [HELP] +Você foi movido para uma região vizinha. + </notification> + <notification name="ClothingLoading"> + Sua vestimenta ainda está baixando. +Você pode usar o [SECOND_LIFE] normalmente e os outros o visualizarão corretamente. + <form name="form"> + <ignore name="ignore" text="Quando o vestuário está levando muito tempo para fazer download"/> + </form> + </notification> + <notification name="FirstRun"> + A instalação do [SECOND_LIFE] está completa. - <notification - - name="AcquireErrorTooManyObjects" - > -Erro de aquisição: Muitos objetos selecionados. - </notification> +Se esta é a primeira vez usando o[SECOND_LIFE], será necessário que você crie uma conta antes de poder se logar. +Retornar a www.secondlife.com para criar uma nova conta? + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Nova conta.."/> + </notification> + <notification name="LoginPacketNeverReceived"> + Estamos com problemas de conexão. Pode ser problema com a conexão de sua internet ou com os servidores do Second Life. - <notification - - name="AcquireErrorObjectSpan" - > -Erro de aquisição: Objetos criados em mais de uma região. -Por favor, mova todos os objetos a serem adquiridos para uma mesma região. - </notification> +Voce tanto pode checar a conexão de sua internet e tentar novamente em alguns minutos, ou clicar em Teletransporte para tentar teletransportar-se para sua casa. + <form name="form"> + <button name="OK" text="OK"/> + <button name="Help" text="Ajuda"/> + <button name="Teleport" text="Teletransportar"/> + </form> + </notification> + <notification name="WelcomeChooseSex"> + Seu personagem irá aparecer num momento. - <notification - - name="PromptGoToCurrencyPage" - > -[EXTRA] +Use as teclas de seta para andar. +Pressione a tecla F1 para ajuda ou aprender mais sobre [SECOND_LIFE]. +Por favor, escolha se o seu avatar é feminino ou masculino. Você pode mudar de idéia depois. + <usetemplate name="okcancelbuttons" notext="Feminino" yestext="Masculino"/> + </notification> + <notification name="NotEnoughCurrency"> + [NAME] L$ [PRICE] Você não possui suficientes L$ para fazer isso. + </notification> + <notification name="GrantedModifyRights"> + Foi garantido à você o privilégio de alterar o(s) objeto(s) de [FIRST_NAME] [LAST_NAME]' + </notification> + <notification name="RevokedModifyRights"> + Seu privilégio para alterar o(s) objeto(s) de [FIRST_NAME] [LAST_NAME]'s foi removido. + </notification> + <notification name="FlushMapVisibilityCaches"> + Isto irá descarregar os caches de mapa relativos a esta região. +Isso é realmente útil apenas para depuração. +(Na produção, aguarde 5 minutos e, então, o mapa de todos será atualizado depois que relogar.) + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="BuyOneObjectOnly"> + ImpossÃvel comprar mais de um objeto ao mesmo tempo. Por favor, selecione apenas um objeto e tente novamente. + </notification> + <notification name="OnlyCopyContentsOfSingleItem"> + Incapaz de copiar os conteúdos de mais de um item por vez. Por favor, selecione somente um objeto e tente novamente. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="KickUsersFromRegion"> + Teletransportar para casa todos os residentes nesta região? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="EstateObjectReturn"> + Você tem certeza que deseja retornar os objetos pertencentes a [USER_NAME] ? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="InvalidTerrainBitDepth"> + Não foi possÃvel definir texturas da região: +Textura do Terreno [TEXTURE_NUM] tem uma profundidade de bits inválidos [TEXTURE_BIT_DEPTH]. -Vá para [URL] para informação sobre compra de dinheiro. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Ir até a página"/> - </notification> +Substitua textura [TEXTURE_NUM], com uma imagem de 24-bit 512x512 ou menor e em seguida, clique em 'Aplicar' novamente. + </notification> + <notification name="InvalidTerrainSize"> + Não foi possÃvel definir texturas da região: +Textura do Terreno [TEXTURE_NUM] é muito grande em [TEXTURE_SIZE_X] x [TEXTURE_SIZE_Y]. - <notification - - name="UnableToLinkObjects" - > -Não é possÃvel unir estes [COUNT] objetos. -Você pode unir um máximo de [MAX] objetos. - </notification> +Substituir textura [TEXTURE_NUM], com uma imagem de 24-bit 512x512 ou menor e em seguida, clique em 'Aplicar' novamente. + </notification> + <notification name="RawUploadStarted"> + Upload iniciado. Pode levar uns 2 minutos, dependendo da sua velocidade de conexão. + </notification> + <notification name="ConfirmBakeTerrain"> + Você realmente deseja nivelar o terreno selecionado a partir do centro elevando/reduzindo os limites e o padrão para a ferramenta ´Reverter´? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Executar"/> + </notification> + <notification name="MaxAllowedAgentOnRegion"> + Você pode ter somente [MAX_AGENTS] residentes permitidos. + </notification> + <notification name="MaxBannedAgentsOnRegion"> + Você pode ter apenas [MAX_BANNED] residentes banidos. + </notification> + <notification name="MaxAgentOnRegionBatch"> + Falha ao adicionar [NUM_ADDED] agentes: +Ultrapassa o limite de [MAX_AGENTS] [LIST_TYPE] de [NUM_EXCESS]. + </notification> + <notification name="MaxAllowedGroupsOnRegion"> + Você pode ter somente [MAX_GROUPS] grupos permitidos. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Executar"/> + </notification> + <notification name="MaxManagersOnRegion"> + Você pode ter apenas [MAX_MANAGER] gerentes da Propriedade. + </notification> + <notification name="OwnerCanNotBeDenied"> + Não é possÃvel adicionar o dono da propriedade na lista de residentes banidos. + </notification> + <notification name="CanNotChangeAppearanceUntilLoaded"> + Não é possÃvel alterar a aparência até que as roupas e formas estejam carregadas. + </notification> + <notification name="ClassifiedMustBeAlphanumeric"> + O tÃtulo do seu Anúncio deve começar com uma letra entre A e Z ou número. Nenhuma pontuação é permitida. + </notification> + <notification name="CantSetBuyObject"> + Não é possÃvel configurar Comprar Objeto, porque o objeto não está à venda. +Por favor, ponha o objeto à venda e tente novamente. + </notification> + <notification name="FinishedRawDownload"> + Download do arquivo de terreno RAW concluÃdo em: +[DOWNLOAD_PATH] + </notification> + <notification name="DownloadWindowsMandatory"> + Uma nova versão do [SECOND_LIFE] está disponÃvel. +[MESSAGE] +Você deve baixar essa atualização para utilizar o [SECOND_LIFE]. + <usetemplate name="okcancelbuttons" notext="Sair" yestext="Atualizar"/> + </notification> + <notification name="DownloadWindows"> + Uma versão atualizada do [SECOND_LIFE] está disponÃvel. +[MESSAGE] +Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Atualizar"/> + </notification> + <notification name="DownloadWindowsReleaseForDownload"> + Uma versão atualizada do [SECOND_LIFE] está disponÃvel. +[MESSAGE] +Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Atualizar"/> + </notification> + <notification name="DownloadMacMandatory"> + Uma nova versão do [SECOND_LIFE] está disponÃvel. +[MESSAGE] +Você deve baixar esta atualização para utilizar o [SECOND_LIFE]. - <notification - - name="CannotLinkIncompleteSet" - > -Você pode unir apenas conjuntos completos de objetos e deve selecionar mais que um objeto. - </notification> +Baixar para sua pasta de Aplicativos? + <usetemplate name="okcancelbuttons" notext="Sair" yestext="Atualizar"/> + </notification> + <notification name="DownloadMac"> + Uma nova versão do [SECOND_LIFE] está disponÃvel. +[MESSAGE] +Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. - <notification - - name="CannotLinkModify" - > -Impossibilitado de unir, porque você não tem permissão para modificar todos os objetos. +Baixar para a sua pasta de Aplicativos? + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Atualizar"/> + </notification> + <notification name="DownloadMacReleaseForDownload"> + Uma nova versão do [SECOND_LIFE] está disponÃvel. -Por favor, certifique-se de que nenhum deles está travado e que você é dono de todos eles. - </notification> +[MESSAGE] +Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. - <notification - - name="CannotLinkDifferentOwners" - > -Impossibilitado de unir porque nem todos os objetos são do mesmo dono. +Baixar para sua pasta de Aplicativos? + <usetemplate name="okcancelbuttons" notext="Continuar" yestext="Atualizar"/> + </notification> + <notification name="DeedObjectToGroup"> + Delegar este objeto causará ao grupo: +* Receber os L$ pagos ao objeto + <usetemplate ignoretext="Ao transferir objetos aos grupos" name="okcancelignore" notext="Cancelar" yestext="Acionar"/> + </notification> + <notification name="WebLaunchExternalTarget"> + Abrir o navegador do seu sistema para ver este conteúdo? + <usetemplate ignoretext="Ao abrir o navegador web do seu sistema para visualizar uma página Web" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchJoinNow"> + Ir ao www.secondlife.com para gerenciar sua conta? + <usetemplate ignoretext="Ao abrir o navegador web para gerenciar sua conta" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchBugReport101"> + Visite a Wiki [SECOND_LIFE] para aprender como reportar bugs corretamente. + <usetemplate ignoretext="Ao abrir o web browser para visualizar o report de Bug 101 na Wiki" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchSecurityIssues"> + Visite a Wiki do [SECOND_LIFE] para detalhes de como Reportar um Problema de Segurança. + <usetemplate ignoretext="Ao abrir o navegador da web para visualizar a Wiki de Problemas de Segurança" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchQAWiki"> + Visite o Wiki de QA do [SECOND_LIFE]. + <usetemplate ignoretext="Ao abrir o navegador web para visualizar a Wiki de QA" name="okcancelignore" notext="Cancelar" yestext="OK"/> + </notification> + <notification name="WebLaunchPublicIssue"> + Visite o Rastreador Público de Problemas do [SECOND_LIFE], onde você poderá reportar Bugs e outros Problemas. + <usetemplate ignoretext="Ao abrir o navegador web para visualizar o Rastreador Público de Problemas" name="okcancelignore" notext="Cancelar" yestext="Ir para a Página"/> + </notification> + <notification name="WebLaunchPublicIssueHelp"> + Visite a Wiki [SECOND_LIFE] para informações sobre como utilizar o Rastrador de Público de Problemas. + <usetemplate ignoretext="Ao abrir o navegador web para visualizar a wiki do Rastreador Público de Problemas" name="okcancelignore" notext="Cancelar" yestext="Ir para a página"/> + </notification> + <notification name="WebLaunchSupportWiki"> + Ir até o Blog Oficial da Linden buscar pelas últimas notÃcias e informações. + <usetemplate ignoretext="Ao abrir o navegador da web para visualizar o blog" name="okcancelignore" notext="Cancelar" yestext="Ir até a página"/> + </notification> + <notification name="WebLaunchLSLGuide"> + Ir para a página guia do LSL para ajuda com script? + <usetemplate ignoretext="Ao abrir o navegador web para visualizar o Guia de Scripts." name="okcancelignore" notext="Cancelar" yestext="Ir para a página"/> + </notification> + <notification name="WebLaunchLSLWiki"> + Ir para o portal LSL para ajuda com script? + <usetemplate ignoretext="Ao abrir o navegador da web para visualizar o Portal de LSL" name="okcancelignore" notext="Cancelar" yestext="Ir para a página"/> + </notification> + <notification name="ReturnToOwner"> + Você tem certeza que deseja retornar os objetos selecionados para seus proprietários? Objetos transferÃveis doados irão retornar aos proprietários anteriores. -Por favor, certifique-se de que você é o dono de todos os objetos selecionados. - </notification> +*AVISO* Objetos doados não – transferÃveis serão deletados! + <usetemplate ignoretext="Ao retornar objetos a seus proprietários" name="okcancelignore" notext="Cancelar" yestext="Retornar"/> + </notification> + <notification name="GroupLeaveConfirmMember"> + Você é atualmente um membro do grupo [GROUP]. +Deixar este grupo? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Deixar"/> + </notification> + <notification name="ConfirmKick"> + Você quer REALMENTE expulsar todos os usuários deste grid? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar todos os usuários"/> + </notification> + <notification name="MuteLinden"> + Desculpe, você não pode silenciar um Linden. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CannotStartAuctionAlreadyForSale"> + Você não pode começar um leilão com um lote que já foi colocado à venda. Desabilite a venda da terra se você tem certeza que deseja iniciar um leilão. + </notification> + <notification label="Silenciar objeto pelo nome falhou" name="MuteByNameFailed"> + Você já silenciou este nome. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="RemoveItemWarn"> + Embora seja permitido, deletar conteúdo pode danificar o objeto. Você quer excluir este item? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="CantOfferCallingCard"> + Não é possÃvel oferecer um cartão de visitas neste momento. Por favor, tente novamente em breve. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="CantOfferFriendship"> + Não é possÃvel oferecer amizade neste momento. Por favor, tente novamente em breve. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="BusyModeSet"> + Definido o Modo Ocupado. +Bate-papo e mensagens instantâneas serão escondidas. Mensagens instantâneas irão receber a sua resposta de modo ocupado. Todas as ofertas de teletransporte serão recusadas. Todas as ofertas de inventário irão para a sua Lixeira. + <usetemplate ignoretext="Ao definir o Modo Ocupado" name="okignore" yestext="OK"/> + </notification> + <notification name="JoinedTooManyGroupsMember"> + Você já pertence a muitos grupos para entrar em outro. Por favor, deixe pelo menos um grupo antes de entrar neste. Para sair de um grupo, selecione o Menu Editar e a opção Meus 'Grupos...' +[NAME] convidou você para entrar num grupo como membro. +[INVITE] + <usetemplate name="okcancelbuttons" notext="Recusar" yestext="Entrar"/> + </notification> + <notification name="KickUser"> + Expulsar este usuário com qual mensagem? + <form name="form"> + <input name="message" type="text"> + Um administrador desligou você. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="KickAllUsers"> + Expulsar todo mundo atualmente do grid com qual mensagem? + <form name="form"> + <input name="message" type="text"> + Um administrador deslogou você. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="FreezeUser"> + Paralise este usuário com qual mensagem? + <form name="form"> + <input name="message" type="text"> + Você foi congelado. Você não pode se mover ou conversar. Um administrador irá contatá-lo via mensagem instantânea (MI). + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="UnFreezeUser"> + Liberar este usuário com qual mensagem? + <form name="form"> + <input name="message" type="text"> + Você não está mais congelado. + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="OfferTeleport"> + Oferecer um teletransporte para sua localização com qual mensagem? + <form name="form"> + <input name="message" type="text"> + Junte-se a mim em [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="OfferTeleportFromGod"> + God user convocou para a sua localização? + <form name="form"> + <input name="message" type="text"> + Junte-se a mim em [REGION] + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="TeleportFromLandmark"> + Você tem certeza que quer se teletransportar? + <usetemplate ignoretext="Ao se teletransportar a partir de uma Landmark no inventário" name="okcancelignore" notext="Cancelar" yestext="Teletransportar"/> + </notification> + <notification label="Mensagem para todos na sua Propriedade" name="MessageEstate"> + Digite um breve anúncio que será enviado para todos que estejam atualmente na sua propriedade. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification label="Mudar propriedade Linden" name="ChangeLindenEstate"> + Você está prestes a mudar uma propriedade pertencente a Linden (continente, teen grid, orientação, etc.) - <notification - - name="NoFileExtension" - > -Nenhuma extensão para o arquivo: '[FILE]' +Isto é EXTREMAMENTE PERIGOSO porque pode fundamentalmente afetar a experiência do usuário. No continente, vai mudar milhares de regiões e fazer o spaceserver soluçar. -Por favor, certifique-se de que o arquivo tem uma extensão de arquivo correta. - </notification> +Proceder? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Mudar Propriedade"/> + </notification> + <notification label="Mudar o acesso à propriedade Linden" name="ChangeLindenAccess"> + Você está prestes a mudar a lista de acessos de uma propriedade pertencente a Linden (continente, teen grid, orientação, etc.). - <notification - - name="InvalidFileExtension" - > -Extensão de arquivo inválida: [EXTENSION]. -Esperada [VALIDS] +Isto é PERIGOSO e deveria ser feito apenas para utilizar uma brecha que permita que objetos/L$ sejam transferidos para dentro/fora da grade. +Isto mudará milhares de regiões e fará o spaceserver soluçar. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="OK"/> + </notification> + <notification label="Selecione a propriedade" name="EstateAllowedAgentAdd"> + Adicionar à lista de permitidos somente para esta propriedade ou para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Selecione a propriedade" name="EstateAllowedAgentRemove"> + Remover da lista de permissão somente para esta propriedade ou para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Seleção de propriedade" name="EstateAllowedGroupAdd"> + Adicionar à lista de grupos permitidos somente para esta Região ou para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Selecione a propriedade" name="EstateAllowedGroupRemove"> + Remover da lista de grupos permitidos somente para esta propriedade ou de [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Selecione a propriedade" name="EstateBannedAgentAdd"> + Negar acesso a esta propriedade somente ou para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Selecione a propriedade" name="EstateBannedAgentRemove"> + Remover este residente da lista de banidos para acesso a esta propriedade apenas ou para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Selecione a propriedade" name="EstateManagerAdd"> + Adicionar gerente da propriedade para esta propriedade somente ou para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Selecione a propriedade" name="EstateManagerRemove"> + Remover o gerente da propriedade desta propriedade apenas ou para [ALL_ESTATES]? + <usetemplate canceltext="Cancelar" name="yesnocancelbuttons" notext="Todas as Propriedades" yestext="Esta Propriedade"/> + </notification> + <notification label="Confirmar expulsão" name="EstateKickUser"> + Expulsar [EVIL_USER] desta propriedade? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Expulsar"/> + </notification> + <notification name="EstateChangeCovenant"> + Tem certeza de que deseja mudar o Corretor da Propriedade? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Mudar"/> + </notification> + <notification name="RegionEntryAccessBlocked"> + Você não é permitido na Região devido à sua Classificação de maturidade. Isto pode ser o resultado da falta de informação de validação de sua idade. + +Por favor, verifique se você está com o último Visualizador instalado e vá ao Banco de Conhecimento para detalhes em como acessar áreas com esta classificação de maturidade. <usetemplate name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CannotUploadSoundFile" - > -Não é possÃvel abrir para leitura o arquivo de som carregado: -[FILE] - </notification> - - <notification - - name="SoundFileNotRIFF" - > -O arquivo não aparenta ser um arquivo do tipo RIFF WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileNotPCM" - > -O arquivo não aparenta ser um arquivo de áudio PCM WAVE: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidChannelCount" - > -O arquivo possui um número de canais inválido (deve ser mono ou estéreo): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidSampleRate" - > -O arquivo não aparenta ter uma taxa de amostragem suportada (deve ser 44.1k): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidWordSize" - > -O arquivo não aparenta ter um tamanho de palavra suportada (deve ser 8 ou 16 bit): -[FILE] - </notification> - - <notification - - name="SoundFileInvalidHeader" - > -Não pode ser encontrado bloco de dados no cabeçalho WAV: -[FILE] - </notification> - - <notification - - name="SoundFileInvalidTooLong" - > -Arquivo de áudio é muito longo (no máximo 10 segundos): -[FILE] - </notification> - - <notification - - name="ProblemWithFile" - > -Problemas com o arquivo [FILE]: - -[ERROR] - </notification> - - <notification - - name="CannotOpenTemporarySoundFile" - > -Não pode abrir o arquivo temporário de som comprimido, para leitura: [FILE] - </notification> - - <notification - - name="UnknownVorbisEncodeFailure" - > -Falha desconhecida de codificação vorbis em: [FILE] - </notification> - - <notification - - name="CorruptResourceFile" - > -Fonte do arquivo corrompida: [FILE] - </notification> - - <notification - - name="UnknownResourceFileVersion" - > -Versão desconhecida de arquivo de recursos da Linden no arquivo: [FILE] - </notification> - - <notification - - name="UnableToCreateOutputFile" - > -Incapaz de criar arquivo de saÃda: [FILE] - </notification> - - <notification - - name="DoNotSupportBulkAnimationUpload" - > -Atualmente, não suportamos o envio de arquivos de animação em massa. - </notification> - - <notification - - name="CannotUploadReason" - > -Incapaz de carregar [FILE] devido ao seguinte motivo: [REASON] -Por favor tente novamente mais tarde. - </notification> - - <notification - - name="CannotCreateLandmarkNotOwner" - > -Você não pode criar um ponto de referência porque o proprietário do terreno não permite. Tente novamente a alguns metros de distância. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoScripts" - > -Não é possÃvel realizar uma recompilação. -Selecione um objeto com um script. - </notification> - - <notification - - name="CannotRecompileSelectObjectsNoPermission" - > -Impossibilitado de executar uma 'recompilação'. - -Selecione objetos com scripts que você tem permissão para modificar. - </notification> - - <notification - - name="CannotResetSelectObjectsNoScripts" - > -Impossibilitado de executar 'redefinir'. - -Selecione objetos com scripts. - </notification> - - <notification - - name="CannotResetSelectObjectsNoPermission" - > -Impossibilitado de executar 'redefinir'. - -Selecione objetos com scripts que você tem permissão para modificar. - </notification> - - <notification - - name="CannotSetRunningSelectObjectsNoScripts" - > -Impossibilitado de definir quaisquer scripts para 'rodando'. - -Selecione objetos com scripts. - </notification> - - <notification - - name="CannotSetRunningNotSelectObjectsNoScripts" - > -Impossibilitado de definir quaisquer scripts para 'não rodando'. - -Selecione objetos com scripts. - </notification> - - <notification - - name="NoFrontmostFloater" - > -Nenhuma janela flutuante mais à frente para salvar. - </notification> - - <notification - - name="SeachFilteredOnShortWords" - > -Sua consulta de pesquisa foi alterada e as palavras que eram demasiado curtas foram removidas. - -Pesquisava por: [FINALQUERY] - </notification> - - <notification - - name="SeachFilteredOnShortWordsEmpty" - > -Os termos de sua pesquisa eram muito curtos então nenhuma pesquisa foi feita. - </notification> - - <notification - - name="CouldNotTeleportReason" - > -Não é possÃvel teletransportar-se. -[REASON] - </notification> - - <notification - - name="CannotSetLandOwnerNothingSelected" - > -Incapaz de estabelecer o proprietário do terreno: -Nenhum lote selecionado. - </notification> - - <notification - - name="CannotSetLandOwnerMultipleRegions" - > -Não é possÃvel exigir a posse do terreno porque a seleção alcançou múltiplas regiões. Por favor, selecione uma área menor e tente novamente. - </notification> - - <notification - - name="ForceOwnerAuctionWarning" - > -Este lote está oferecido em leilão. Exigir a posse do terreno irá cancelar o leilão e possivelmente deixará alguns residentes infelizes, se os lances já começaram. Exigir posse? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Retomar"/> - </notification> - - <notification - - name="CannotContentifyNothingSelected" - > -Conteúdo não encontrado: -Nenhum lote selecionado. - </notification> - - <notification - - name="CannotContentifyNoRegion" - > -Conteúdo não encontrado: -Nenhuma região selecionada. - </notification> - - <notification - - name="CannotReleaseLandNothingSelected" - > -Não é possÃvel abandonar terreno: -Nenhum lote selecionado. - </notification> - - <notification - - name="CannotReleaseLandNoRegion" - > -Não é possÃvel abandonar terreno: -Não é possÃvel encontrar a região. - </notification> - - <notification - - name="CannotBuyLandNothingSelected" - > -Não é possÃvel comprar terreno: -Nenhum lote selecionado. - </notification> - - <notification - - name="CannotBuyLandNoRegion" - > -Não é possÃvel comprar terreno: -Não é possÃvel achar a região em que este terreno se encontra. - </notification> - - <notification - - name="CannotCloseFloaterBuyLand" - > -Você não pode fechar a janela de Compra de Terreno até que o Second Life calcule o preço desta transação. - </notification> - - <notification - - name="CannotDeedLandNothingSelected" - > -Não é possÃvel transferir posse do terreno: -Nenhum lote selecionado. - </notification> - - <notification - - name="CannotDeedLandNoGroup" - > -Não é possÃvel transferir posse do terreno: -Nenhum grupo selecionado. - </notification> - - <notification - - name="CannotDeedLandNoRegion" - > -Não é possÃvel transferir posse do terreno: -Não é possÃvel se achar a região em que este terreno se encontra. -Por favor, use Ferramentas > Reporte de Bug para reportar isto. - </notification> - - <notification - - name="CannotDeedLandMultipleSelected" - > -Impossibilitado de passar a propriedade da terra: -Selecionados vários lotes. - -Tente selecionar um único lote. - </notification> - - <notification - - name="ParcelCanPlayMedia" - > -Esta localidade pode executar fluxo de mÃdia. -Fluxo de mÃdia necessita de uma conexão de Internet rápida. - -Executar fluxo de mÃdia quando disponÃvel? -(Você pode mudar esta opção mais tarde no Preferências > Ãudio & VÃdeo.) - <usetemplate - name="okcancelbuttons" - notext="Desabilitar" - yestext="Exibir MÃdia"/> - </notification> - - <notification - - name="CannotDeedLandWaitingForServer" - > -Impossibilitado de passar a propriedade da terra: -Esperando pelo servidor informar de quem é a propriedade. - -Por favor, tente novamente. - </notification> - - <notification - - name="CannotDeedLandNoTransfer" - > -Não é possÃvel transferir posse do terreno: -A região [REGION] não permite transferência do terreno. - </notification> - - <notification - - name="CannotReleaseLandWatingForServer" - > -Impossibilitado de abandonar a terra: -Esperando o servidor atualizar as informações do lote. - -Tente novamente em alguns segundos. - </notification> - - <notification - - name="CannotReleaseLandSelected" - > -Impossibilitado de abandonar a terra: -Você não é dono de todos os lotes selecionados. - -Por favor, selecione um único lote. - </notification> - - <notification - - name="CannotReleaseLandDontOwn" - > -Não é possÃvel abandonar terreno: -Você não tem permissão de liberar este lote. -Os lotes que você possui estão em verde. - </notification> - - <notification - - name="CannotReleaseLandRegionNotFound" - > -Impossibilitado de abandonar a terra: -Não consegue achar a região em que esta terra se encontra. - -Por favor, usar Ferramentas > Reportar Bug, para reportar este erro. - </notification> - - <notification - - name="CannotReleaseLandNoTransfer" - > -Não é possÃvel abandonar terreno: -A região [REGION] não permite transferência de terreno. - </notification> - - <notification - - name="CannotReleaseLandPartialSelection" - > -Impossibilitado de abandonar a terra: -Você deve selecionar um lote inteiro para liberá-lo. - -Selecione um lote inteiro ou primeiro divida seu lote. - </notification> - - <notification - - name="ReleaseLandWarning" - > -Você está para liberar [AREA] m² de terra. -Liberando este terreno, o liberará de suas posses, mas não lhe concederá quaisquer L$. - -Liberar esta terra? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Renunciar"/> - </notification> - - <notification - - name="CannotDivideLandNothingSelected" - > -Impossibilitado de dividir a terra: - -Nenhum lote selecionado. - </notification> - - <notification - - name="CannotDivideLandPartialSelection" - > -Impossibilitado de dividir a terra: - -Você selecionou um lote inteiro. -Tente selecionar uma parte do lote. - </notification> - - <notification - - name="LandDivideWarning" - > -Dividir este terreno irá dividir este lote em dois e cada lote pode ter suas próprias configurações. Algumas configurações serão colocadas no padrão depois dessa operação. - -Quer dividir o terreno? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Dividir"/> - </notification> - - <notification - - name="CannotDivideLandNoRegion" - > -Impossibilitado de dividir a terra: -Não consegue achar a região em que esta terra se encontra. - -Por favor, usar Ferramentas > Reportar Bug, para reportar este erro. - </notification> - - <notification - - name="CannotJoinLandNoRegion" - > -Impossibilitado de unir a terra: -Não consegue achar a região em que esta terra se encontra. - -Por favor, usar Ferramentas > Reportar Bug, para reportar este erro. - </notification> - - <notification - - name="CannotJoinLandNothingSelected" - > -Não é possÃvel unir terreno: -Nenhum lote selecionado. - </notification> - - <notification - - name="CannotJoinLandEntireParcelSelected" - > -Impossibilitado de unir a terra: -Você selecionou apenas um lote. - -Selecione a terra através de ambos os lotes. - </notification> - - <notification - - name="CannotJoinLandSelection" - > -Impossibilitado de unir a terra: -Você deve selecionar mais de um lote. - -Selecione a terra através de ambos os lotes. - </notification> - - <notification - - name="JoinLandWarning" - > -Unir esta terra vai criar um grande lote que envolve todos os lotes que intersectam o retângulo selecionado. -Você vai ter que redefinir nome e as opções do novo lote. - -Unir a terra? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Unir"/> - </notification> - - <notification - - name="ConfirmNotecardSave" - > -Esta nota precisa ser salva antes do item ser copiado ou visualizado. Salvar nota? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Salvar"/> - </notification> - - <notification - - name="ConfirmItemCopy" - > -Copiar este item para o seu inventário? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Copiar"/> - </notification> - - <notification - - name="ResolutionSwitchFail" - > -Falha ao trocar a resolução para [RESX] por [RESY] - </notification> - - <notification - - name="ErrorUndefinedGrasses" - > -Erro: Gramado indefinido; [SPECIES] - </notification> - - <notification - - name="ErrorUndefinedTrees" - > -Erro: Ãrvores indefinidas: [SPECIES] - </notification> - - <notification - - name="CannotSaveWearableOutOfSpace" - > -Não é possÃvel salvar '[NAME]' para um arquivo de vestimenta. Você precisa liberar algum espaço no seu computador e salvar o arquivo novamente. - </notification> - - <notification - - name="CannotSaveToAssetStore" - > -Impossibilitado de salvar [NAME] no armazenamento central de ativos. -Isso é geralmente uma falha temporária. Por favor personalize e salve novamente a vestimenta em poucos minutos. - -Se o problema persistir, por favor clicar sobre 'Ferramentas > Bug Report' no menu superior e forneça detalhes sobre a configuração de sua rede. - </notification> - - <notification - - name="YouHaveBeenLoggedOut" - > -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"/> - </notification> - - <notification - - name="OnlyOfficerCanBuyLand" - > -Não é possÃvel comprar o terreno para o grupo: -Você não tem permissão para comprar o terreno para o seu grupo ativado. - </notification> - - <notification - - label="Adicionar amigo" - name="AddFriend" - > -Amigos podem dar permissões de rastrear um ao outro pelo mapa e receber atualizações de status online. - -Oferecer amizade para [NAME]? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Oferecer"/> - </notification> - - <notification - - label="Adicionar amigo" - name="AddFriendWithMessage" - > -Amigos podem dar permissões de rastrear um ao outro pelo mapa e receber atualizações de status online. - -Oferecer amizade para [NAME]? - <form name="form"> - <input name="message" type="text"> -Quer ser meu amigo? - </input> - <button - - - name="Offer" - text="Oferecer"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="RemoveFromFriends" - > -Você quer remover [FIRST_NAME] [LAST_NAME] da sua lista de amigos? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Remover"/> - </notification> - - <notification - - name="RemoveMultipleFromFriends" - > -Você quer remover vários amigos da sua lista? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Remover"/> - </notification> - - <notification - - name="GodDeleteAllScriptedPublicObjectsByUser" - > -Você tem certeza que deseja excluir todos os objetos programados de propriedade de -** [AVATAR_NAME] ** -em todos os outros terrenos deste sim? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="APAGAR!!"/> - </notification> - - <notification - - name="GodDeleteAllScriptedObjectsByUser" - > -Você tem certeza que deseja excluir todos os objetos programados de propriedade de -** [AVATAR_NAME] ** -em TODOS OS TERRENOS deste sim? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="!!APAGAR TUDO!!"/> - </notification> - - <notification - - name="GodDeleteAllObjectsByUser" - > -Você tem certeza que deseja excluir TODOS os objetos (programados ou não) de propriedade de -** [AVATAR_NAME] ** -em TODOS OS TERRENOS deste sim? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="!!APAGAR TUDO!!"/> - </notification> - - <notification - - name="BlankClassifiedName" - > -Você deve especificar um nome para seu classificado. - </notification> - - <notification - - name="MinClassifiedPrice" - > -Preço mÃnimo a pagar para incluir na listagem é de L$[MIN_PRICE]. - -Por favor, insira um valor maior. - </notification> - - <notification - - name="ConfirmObjectDeleteLock" - > -Pelo menos um dos itens que você selecionou está trancado. - -Tem certeza de que deseja apagar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopy" - > -Pelo menos um dos itens que você selecionou não é copiável. - -Tem certeza de que deseja apagar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoOwn" - > -Você não é proprietário de pelo menos um dos itens selecionados. - -Tem certeza de que deseja apagar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopy" - > -Pelo menos um dos objetos está trancado ou não é copiável. - -Tem certeza de que deseja apagar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoOwn" - > -Pelo menos um dos objetos está trancado ou não é de sua posse. - -Tem certeza de que deseja apagar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectDeleteNoCopyNoOwn" - > -Pelo menos um dos objetos não é copiável ou não é de sua posse. - -Tem certeza de que deseja apagar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectDeleteLockNoCopyNoOwn" - > -Pelo menos um dos objetos está trancado, não é copiável ou você não o possui. - -Tem certeza de que deseja apagar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectTakeLock" - > -Pelo menos um dos objetos está trancado. - -Tem certeza de que deseja pegar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectTakeNoOwn" - > -Você não possui todos os objetos que está pegando. -Caso continue, as permissões do próximo proprietário serão aplicadas aos objetos e possivelmente restringirão sua habilidade em modificá-los ou copiá-los. - -Você tem certeza de que quer pegar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmObjectTakeLockNoOwn" - > -Pelo menos um objeto está bloqueado. -Você não possui todos os objetos que você está pegando. -Se continuar, as permissões para o próximo proprietário serão aplicadas e possivelmente restringirão sua capacidade de modificar ou copiá-los. -No entanto, você pode pegar a seleção atual. - -Tem certeza de que deseja pegar estes itens? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="CantBuyLandAcrossMultipleRegions" - > -Não foi possÃvel comprar terreno, pois a seleção abrange várias regiões. - -Por favor, selecione uma área menor e tente novamente. - </notification> - - <notification - - name="DeedLandToGroup" - > -Na transferência de propriedade deste lote, o grupo deverá ter e manter créditos suficientes de uso da terra. -O preço de aquisição dos terrenos não é restituÃdo ao o proprietário. Se uma parcela transferida é vendida, o preço de venda é dividido igualmente entre os membros do grupo. - -Transferir propriedade de [AREA] m² de terra ao grupo '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Acionar"/> - </notification> - - <notification - - name="DeedLandToGroupWithContribution" - > -Na transferência de propriedade deste lote, o grupo deverá ter e manter créditos suficientes de uso da terra. -A Transferência incluirá uma contribuição de terra simultanea para o grupo de '[FIRST_NAME] [LAST_NAME]'. -O preço da compra não será restituÃdo ao proprietário. Se um lote for vendido, o preço da venda será dividido igualmente entre os membros do grupo. - -Transferir propriedade destes [AREA] m² de terreno para o grupo '[GROUP_NAME]'? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Acionar"/> - </notification> - - <notification - - name="DisplaySetToSafe" - > -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. - </notification> - - <notification - - name="ErrorMessage" - > -[ERROR_MESSAGE] - </notification> - - <notification - - name="AvatarMoved" - > -Sua [TYPE] localização não está disponÃvel no momento. - [HELP] -Você foi movido para uma região vizinha. - </notification> - - <notification - - name="ClothingLoading" - > -Sua vestimenta ainda está baixando. -Você pode usar o [SECOND_LIFE] normalmente e os outros o visualizarão corretamente. - <form name="form"> - <ignore name="ignore" - text="Quando o vestuário está levando muito tempo para fazer download"/> - </form> - </notification> - - <notification - - name="FirstRun" - > -A instalação do [SECOND_LIFE] está completa. - -Se esta é a primeira vez usando o[SECOND_LIFE], será necessário que você crie uma conta antes de poder se logar. -Retornar a www.secondlife.com para criar uma nova conta? - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Nova conta.."/> - </notification> - - <notification - - name="LoginPacketNeverReceived" - > -Estamos com problemas de conexão. Pode ser problema com a conexão de sua internet ou com os servidores do Second Life. - -Voce tanto pode checar a conexão de sua internet e tentar novamente em alguns minutos, ou clicar em Teletransporte para tentar teletransportar-se para sua casa. - <form name="form"> - <button - - - name="OK" - text="OK"/> - <button - - name="Help" - text="Ajuda"/> - <button - - name="Teleport" - text="Teletransportar"/> - </form> - </notification> - - <notification - - name="WelcomeChooseSex" - > -Seu personagem irá aparecer num momento. - -Use as teclas de seta para andar. -Pressione a tecla F1 para ajuda ou aprender mais sobre [SECOND_LIFE]. -Por favor, escolha se o seu avatar é feminino ou masculino. Você pode mudar de idéia depois. - <usetemplate - name="okcancelbuttons" - notext="Feminino" - yestext="Masculino"/> - </notification> - - <notification - - name="NotEnoughCurrency" - > -[NAME] L$ [PRICE] Você não possui suficientes L$ para fazer isso. - </notification> - - <notification - - name="GrantedModifyRights" - > -Foi garantido à você o privilégio de alterar o(s) objeto(s) de [FIRST_NAME] [LAST_NAME]' - </notification> - - <notification - - name="RevokedModifyRights" - > -Seu privilégio para alterar o(s) objeto(s) de [FIRST_NAME] [LAST_NAME]'s foi removido. - </notification> - - <notification - - name="FlushMapVisibilityCaches" - > -Isto irá descarregar os caches de mapa relativos a esta região. -Isso é realmente útil apenas para depuração. -(Na produção, aguarde 5 minutos e, então, o mapa de todos será atualizado depois que relogar.) - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="OnlyCopyContentsOfSingleItem" - > -Incapaz de copiar os conteúdos de mais de um item por vez. Por favor, selecione somente um objeto e tente novamente. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="KickUsersFromRegion" - > -Teletransportar para casa todos os residentes nesta região? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="EstateObjectReturn" - > -Você tem certeza que deseja retornar os objetos pertencentes a [USER_NAME] ? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="InvalidTerrainBitDepth" - > -Não foi possÃvel definir texturas da região: -Textura do Terreno [TEXTURE_NUM] tem uma profundidade de bits inválidos [TEXTURE_BIT_DEPTH]. - -Substitua textura [TEXTURE_NUM], com uma imagem de 24-bit 512x512 ou menor e em seguida, clique em 'Aplicar' novamente. - </notification> - - <notification - - name="InvalidTerrainSize" - > -Não foi possÃvel definir texturas da região: -Textura do Terreno [TEXTURE_NUM] é muito grande em [TEXTURE_SIZE_X] x [TEXTURE_SIZE_Y]. - -Substituir textura [TEXTURE_NUM], com uma imagem de 24-bit 512x512 ou menor e em seguida, clique em 'Aplicar' novamente. - </notification> - - <notification - - name="RawUploadStarted" - > -Upload iniciado. Pode levar uns 2 minutos, dependendo da sua velocidade de conexão. - </notification> - - <notification - - name="ConfirmBakeTerrain" - > -Você realmente deseja nivelar o terreno selecionado a partir do centro elevando/reduzindo os limites e o padrão para a ferramenta ´Reverter´? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Executar"/> - </notification> - - <notification - - name="MaxAllowedAgentOnRegion" - > -Você pode ter somente [MAX_AGENTS] residentes permitidos. - </notification> - - <notification - - name="MaxBannedAgentsOnRegion" - > -Você pode ter apenas [MAX_BANNED] residentes banidos. - </notification> - - <notification - - name="MaxAgentOnRegionBatch" - > -Falha ao adicionar [NUM_ADDED] agentes: -Ultrapassa o limite de [MAX_AGENTS] [LIST_TYPE] de [NUM_EXCESS]. - </notification> - - <notification - - name="MaxAllowedGroupsOnRegion" - > -Você pode ter somente [MAX_GROUPS] grupos permitidos. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Executar"/> - </notification> - - <notification - - name="MaxManagersOnRegion" - > -Você pode ter apenas [MAX_MANAGER] gerentes da Propriedade. - </notification> - - <notification - - name="OwnerCanNotBeDenied" - > -Não é possÃvel adicionar o dono da propriedade na lista de residentes banidos. - </notification> - - <notification - - name="CanNotChangeAppearanceUntilLoaded" - > -Não é possÃvel alterar a aparência até que as roupas e formas estejam carregadas. - </notification> - - <notification - - name="ClassifiedMustBeAlphanumeric" - > -O tÃtulo do seu Anúncio deve começar com uma letra entre A e Z ou número. Nenhuma pontuação é permitida. - </notification> - - <notification - - name="CantSetBuyObject" - > -Não é possÃvel configurar Comprar Objeto, porque o objeto não está à venda. -Por favor, ponha o objeto à venda e tente novamente. - </notification> - - <notification - - name="FinishedRawDownload" - > -Download do arquivo de terreno RAW concluÃdo em: -[DOWNLOAD_PATH] - </notification> - - <notification - - name="DownloadWindowsMandatory" - > -Uma nova versão do [SECOND_LIFE] está disponÃvel. -[MESSAGE] -Você deve baixar essa atualização para utilizar o [SECOND_LIFE]. - <usetemplate - name="okcancelbuttons" - notext="Sair" - yestext="Atualizar"/> - </notification> - - <notification - - name="DownloadWindows" - > -Uma versão atualizada do [SECOND_LIFE] está disponÃvel. -[MESSAGE] -Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Atualizar"/> - </notification> - - <notification - - name="DownloadWindowsReleaseForDownload" - > -Uma versão atualizada do [SECOND_LIFE] está disponÃvel. -[MESSAGE] -Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Atualizar"/> - </notification> - - <notification - - name="DownloadMacMandatory" - > -Uma nova versão do [SECOND_LIFE] está disponÃvel. -[MESSAGE] -Você deve baixar esta atualização para utilizar o [SECOND_LIFE]. - -Baixar para sua pasta de Aplicativos? - <usetemplate - name="okcancelbuttons" - notext="Sair" - yestext="Atualizar"/> - </notification> - - <notification - - name="DownloadMac" - > -Uma nova versão do [SECOND_LIFE] está disponÃvel. -[MESSAGE] -Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. - -Baixar para a sua pasta de Aplicativos? - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Atualizar"/> - </notification> - - <notification - - name="DownloadMacReleaseForDownload" - > -Uma nova versão do [SECOND_LIFE] está disponÃvel. - -[MESSAGE] -Essa atualização não é mandatória, mas sugerimos que você a instale para melhorar a performance e a estabilidade. - -Baixar para sua pasta de Aplicativos? - <usetemplate - name="okcancelbuttons" - notext="Continuar" - yestext="Atualizar"/> - </notification> - - <notification - - name="DeedObjectToGroup" - > -Delegar este objeto causará ao grupo: -* Receber os L$ pagos ao objeto - <usetemplate - ignoretext="Ao transferir objetos aos grupos" - name="okcancelignore" - notext="Cancelar" - yestext="Acionar"/> - </notification> - - <notification - - name="WebLaunchExternalTarget" - > -Abrir o navegador do seu sistema para ver este conteúdo? - <usetemplate - ignoretext="Ao abrir o navegador web do seu sistema para visualizar uma página Web" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchJoinNow" - > -Ir ao www.secondlife.com para gerenciar sua conta? - <usetemplate - ignoretext="Ao abrir o navegador web para gerenciar sua conta" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchBugReport101" - > -Visite a Wiki [SECOND_LIFE] para aprender como reportar bugs corretamente. - <usetemplate - ignoretext="Ao abrir o web browser para visualizar o report de Bug 101 na Wiki" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchSecurityIssues" - > -Visite a Wiki do [SECOND_LIFE] para detalhes de como Reportar um Problema de Segurança. - <usetemplate - ignoretext="Ao abrir o navegador da web para visualizar a Wiki de Problemas de Segurança" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchQAWiki" - > -Visite o Wiki de QA do [SECOND_LIFE]. - <usetemplate - ignoretext="Ao abrir o navegador web para visualizar a Wiki de QA" - name="okcancelignore" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - name="WebLaunchPublicIssue" - > -Visite o Rastreador Público de Problemas do [SECOND_LIFE], onde você poderá reportar Bugs e outros Problemas. - <usetemplate - ignoretext="Ao abrir o navegador web para visualizar o Rastreador Público de Problemas" - name="okcancelignore" - notext="Cancelar" - yestext="Ir para a Página"/> - </notification> - - <notification - - name="WebLaunchPublicIssueHelp" - > -Visite a Wiki [SECOND_LIFE] para informações sobre como utilizar o Rastrador de Público de Problemas. - <usetemplate - ignoretext="Ao abrir o navegador web para visualizar a wiki do Rastreador Público de Problemas" - name="okcancelignore" - notext="Cancelar" - yestext="Ir para a página"/> - </notification> - - <notification - - name="WebLaunchSupportWiki" - > -Ir até o Blog Oficial da Linden buscar pelas últimas notÃcias e informações. - <usetemplate - ignoretext="Ao abrir o navegador da web para visualizar o blog" - name="okcancelignore" - notext="Cancelar" - yestext="Ir até a página"/> - </notification> - - <notification - - name="WebLaunchLSLGuide" - > -Ir para a página guia do LSL para ajuda com script? - <usetemplate - ignoretext="Ao abrir o navegador web para visualizar o Guia de Scripts." - name="okcancelignore" - notext="Cancelar" - yestext="Ir para a página"/> - </notification> - - <notification - - name="WebLaunchLSLWiki" - > -Ir para o portal LSL para ajuda com script? - <usetemplate - ignoretext="Ao abrir o navegador da web para visualizar o Portal de LSL" - name="okcancelignore" - notext="Cancelar" - yestext="Ir para a página"/> - </notification> - - <notification - - name="ReturnToOwner" - > -Você tem certeza que deseja retornar os objetos selecionados para seus proprietários? Objetos transferÃveis doados irão retornar aos proprietários anteriores. - -*AVISO* Objetos doados não – transferÃveis serão deletados! - <usetemplate - ignoretext="Ao retornar objetos a seus proprietários" - name="okcancelignore" - notext="Cancelar" - yestext="Retornar"/> - </notification> - - <notification - - name="GroupLeaveConfirmMember" - > -Você é atualmente um membro do grupo [GROUP]. -Deixar este grupo? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Deixar"/> - </notification> - - <notification - - name="ConfirmKick" - > -Você quer REALMENTE expulsar todos os usuários deste grid? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Expulsar todos os usuários"/> - </notification> - - <notification - - name="MuteLinden" - > -Desculpe, você não pode silenciar um Linden. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - label="Silenciar objeto pelo nome falhou" - name="MuteByNameFailed" - > -Você já silenciou este nome. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="RemoveItemWarn" - > -Embora seja permitido, deletar conteúdo pode danificar o objeto. Você quer excluir este item? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="CantOfferCallingCard" - > -Não é possÃvel oferecer um cartão de visitas neste momento. Por favor, tente novamente em breve. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="CantOfferFriendship" - > -Não é possÃvel oferecer amizade neste momento. Por favor, tente novamente em breve. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="BusyModeSet" - > -Definido o Modo Ocupado. -Bate-papo e mensagens instantâneas serão escondidas. Mensagens instantâneas irão receber a sua resposta de modo ocupado. Todas as ofertas de teletransporte serão recusadas. Todas as ofertas de inventário irão para a sua Lixeira. - <usetemplate - ignoretext="Ao definir o Modo Ocupado" - name="okignore" - yestext="OK"/> - </notification> - - <notification - - name="JoinedTooManyGroupsMember" - > -Você já pertence a muitos grupos para entrar em outro. Por favor, deixe pelo menos um grupo antes de entrar neste. Para sair de um grupo, selecione o Menu Editar e a opção Meus 'Grupos...' -[NAME] convidou você para entrar num grupo como membro. -[INVITE] - <usetemplate - name="okcancelbuttons" - notext="Recusar" - yestext="Entrar"/> - </notification> - - <notification - - name="KickUser" - > -Expulsar este usuário com qual mensagem? - <form name="form"> - <input name="message" type="text"> -Um administrador desligou você. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="KickAllUsers" - > -Expulsar todo mundo atualmente do grid com qual mensagem? - <form name="form"> - <input name="message" type="text"> -Um administrador deslogou você. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="FreezeUser" - > -Paralise este usuário com qual mensagem? - <form name="form"> - <input name="message" type="text"> -Você foi congelado. Você não pode se mover ou conversar. Um administrador irá contatá-lo via mensagem instantânea (MI). - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="UnFreezeUser" - > -Liberar este usuário com qual mensagem? - <form name="form"> - <input name="message" type="text"> -Você não está mais congelado. - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="OfferTeleport" - > -Oferecer um teletransporte para sua localização com qual mensagem? - <form name="form"> - <input name="message" type="text"> -Junte-se a mim em [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="OfferTeleportFromGod" - > -God user convocou para a sua localização? - <form name="form"> - <input name="message" type="text"> -Junte-se a mim em [REGION] - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="TeleportFromLandmark" - > -Você tem certeza que quer se teletransportar? - <usetemplate - ignoretext="Ao se teletransportar a partir de uma Landmark no inventário" - name="okcancelignore" - notext="Cancelar" - yestext="Teletransportar"/> - </notification> - - <notification - - label="Mensagem para todos na sua Propriedade" - name="MessageEstate" - > -Digite um breve anúncio que será enviado para todos que estejam atualmente na sua propriedade. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - label="Mudar propriedade Linden" - name="ChangeLindenEstate" - > -Você está prestes a mudar uma propriedade pertencente a Linden (continente, teen grid, orientação, etc.) - -Isto é EXTREMAMENTE PERIGOSO porque pode fundamentalmente afetar a experiência do usuário. No continente, vai mudar milhares de regiões e fazer o spaceserver soluçar. - -Proceder? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Mudar Propriedade"/> - </notification> - - <notification - - label="Mudar o acesso à propriedade Linden" - name="ChangeLindenAccess" - > -Você está prestes a mudar a lista de acessos de uma propriedade pertencente a Linden (continente, teen grid, orientação, etc.). - -Isto é PERIGOSO e deveria ser feito apenas para utilizar uma brecha que permita que objetos/L$ sejam transferidos para dentro/fora da grade. -Isto mudará milhares de regiões e fará o spaceserver soluçar. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="OK"/> - </notification> - - <notification - - label="Selecione a propriedade" - name="EstateAllowedAgentAdd" - > -Adicionar à lista de permitidos somente para esta propriedade ou para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Selecione a propriedade" - name="EstateAllowedAgentRemove" - > -Remover da lista de permissão somente para esta propriedade ou para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Seleção de propriedade" - name="EstateAllowedGroupAdd" - > -Adicionar à lista de grupos permitidos somente para esta Região ou para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Selecione a propriedade" - name="EstateAllowedGroupRemove" - > -Remover da lista de grupos permitidos somente para esta propriedade ou de [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Selecione a propriedade" - name="EstateBannedAgentAdd" - > -Negar acesso a esta propriedade somente ou para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Selecione a propriedade" - name="EstateBannedAgentRemove" - > -Remover este residente da lista de banidos para acesso a esta propriedade apenas ou para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Selecione a propriedade" - name="EstateManagerAdd" - > -Adicionar gerente da propriedade para esta propriedade somente ou para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Selecione a propriedade" - name="EstateManagerRemove" - > -Remover o gerente da propriedade desta propriedade apenas ou para [ALL_ESTATES]? - <usetemplate - canceltext="Cancelar" - name="yesnocancelbuttons" - notext="Todas as Propriedades" - yestext="Esta Propriedade"/> - </notification> - - <notification - - label="Confirmar expulsão" - name="EstateKickUser" - > -Expulsar [EVIL_USER] desta propriedade? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Expulsar"/> - </notification> - - <notification - - name="EstateChangeCovenant" - > -Tem certeza de que deseja mudar o Corretor da Propriedade? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Mudar"/> - </notification> - - <notification - - name="ProblemImportingEstateCovenant" - > -Problemas encontrados ao importar o Corretor da propriedade. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ProblemAddingEstateManager" - > -Problemas em adicionar um novo gerente da propriedade. Uma ou mais propriedades podem ter uma lista de gerentes cheia. - </notification> - - <notification - - name="ProblemAddingEstateGeneric" - > -Problemas em adicionar a esta lista de propriedades. Uma ou mais propriedades podem ter uma lista cheia. - </notification> - - <notification - - name="UnableToLoadNotecard" - > -Não é possÃvel carregar notas neste momento. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="NotAllowedToViewNotecard" - > -Permissões insuficientes para visualizar notecard associado com o ID do ativo solicitado. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MissingNotecardAssetID" - > -O ID do ativo do notecard não foi localizado no banco de dados. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="PublishClassified" - > -Lembre-se: Taxas de Anúncios de Classificados não são reembolsáveis. - -Publicar este classificado agora por L$ [AMOUNT]? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Publicar"/> - </notification> - - - - - - <notification - - label="Confirmar reiniciar" - name="ConfirmRestart" - > -Você quer realmente reiniciar esta região em 2 minutos? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Reiniciar"/> - </notification> - - <notification - - label="Mensagem para todos desta Região" - name="MessageRegion" - > -Digite um breve aviso que será enviado para todos nesta região. - <form name="form"> - <input name="message" type="text"/> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - label="Bloquear Terraforma" - name="HelpRegionBlockTerraform" - > -Se esta opção for assinalada, donos de Terrenos não serão capazes de terraformar independentemente da configuração 'Editar Terreno' de suas terras por lote. - -Padrão: desligado - </notification> - - <notification - - label="Bloquear Vôo" - name="HelpRegionBlockFly" - > -Se esta caixa estiver marcada, as pessoas não poderão voar nesta região independente das configurações por lote de 'Voar'. - -Padrão: desligado. - </notification> - - <notification - - label="Permitir Dano" - name="HelpRegionAllowDamage" - > -Marcar essa caixa habilita o sistema de vitalidade em todos os lotes independente das configurações individuais. Se esta caixa ficar desmarcada, os proprietários de lotes individuais ainda estarão aptos a ativar o sistema de vitalidade de seus lotes. - -Padrão: desligado. - </notification> - - <notification - - label="Limite de Agentes" - name="HelpRegionAgentLimit" - > -Define o número máximo de residentes permitidos nesta região. -Quanto mais residentes existirem em sua região, pior pode ser a performance. - -Padrão: 40 - </notification> - - <notification - - label="Bonus de Objetos" - name="HelpRegionObjectBonus" - > -O Bônus de objetos é um multiplicador para primitivas permitidas em qualquer lote. O intervalo permitido é de 1 a 10. -Se fixado em '1 ', 512m² de cada lote permitem 117 objetos. -Fixado em '2 ', 512m² cada lote permitem 234, ou o dobro, e assim por diante. -O número máximo de objetos permitidos por região permanece 15000 não importa qual seja o Bônus de objeto. Uma vez estabelecido, esteja ciente de que a redução do Bônus de objetos pode retornar objetos ou apagá-los. - -Padrão: 1.0 - </notification> - - - - <notification - - label="Restringir Empurrar" - name="HelpRegionRestrictPushObject" - > -Esta caixa de verificação Configura toda a região para permissões restritivas de empurrar. -Quando habilitada, os agentes só podem empurrar a si mesmos ou serem empurrados pelo dono do lote. -(Empurrar se refere à função LSL llPushObject().) - -Padrão: Desligado. - </notification> - - <notification - - label="Unir/dividir lote" - name="HelpParcelChanges" - > -Configura se os lotes que não pertencem ao dono da propriedade podem ser unidos ou subdivididos. -Se esta opção estiver desmarcada: - * Apenas os donos ou gerentes de propriedades podem unir ou dividir lotes. - * Eles podem unir ou subdividir lotes pertencentes ao dono ou ao grupo onde eles tem os poderes apropriados. -Se esta opção estiver marcada: - * Todos os donos de lotes podem unir ou subdividir os lotes que eles possuem. - * Para lotes pertencentes a grupos, aqueles com os poderes apropriados podem unir ou subdividir lotes. - -Padrão: Marcado. - </notification> - - <notification - - label="Não Mostrar na Pesquisa" - name="HelpRegionSearch" - > -Ao marcar esta caixa irá bloquear os donos de lotes de listar seus lotes na busca - -Padrão: desligado - </notification> - - <notification - - label="Modificar a maturidade da Região" - name="RegionMaturityChange" - > -A classificação de maturidade para esta região foi atualizada. -Pode levar algum tempo para que a mudança seja refletida no mapa. - </notification> - - <notification - - label="Revenda de Terreno" - name="HelpRegionLandResell" - > -Os gerentes e os donos de propriedades podem vender qualquer terreno pertencente ao dono da propriedade. -Se esta opção estiver desmarcada, os compradores não podem revender seus terrenos nesta região. -Se esta opção estiver marcada, compradores podem vender seus terrenos nesta região. - -Padrão: Desabilitada. - </notification> - - <notification - - label="Desabilitar Scripts" - name="HelpRegionDisableScripts" - > -Quando a performance do simulador está ruim, um script pode ser o culpado. Abra a Barra de EstatÃsticas (Ctrl-Shift-1). Olhe no Simulador de FÃsica FPS. Se estiver abaixo de 45, então abra o painel 'Tempo' localizado na parte de baixo da Barra de EstatÃsticas. Se o Tempo de Script indicar 25 ms ou mais, clique no botão 'Get Top CScripts'. Será dado o nome e a localização do script que pode estar causando uma performance ruim. Marque a caixa 'Desabilitar Scripts' e aperte o botão 'Aplicar'. Isto temporariamente desabilitará todos os scripts nesta região. Uma vez que você chegar ao local, investigue o script para determinar se ele está causando o problema. Você pode querer entrar em contato com o proprietário do script, excluir ou devolver o objeto. Desmarque a caixa 'Desabilitar Script' e então clique em 'Aplicar' para reativar os scripts na região. Padrão: desligado. - </notification> - - <notification - - label="Desabilitar Colisões" - name="HelpRegionDisableCollisions" - > -Quando a performance do simulador é pobre, os objetos fÃsicos podem ser os culpados.Abra a a Barra de EstatÃsticas (Ctrl-Shift-1). -Olhe a taxa de quadros por segundos (FPS) dos objetos fÃsicos. - -Se ela estiver abaixo de 45, abra o painel de Tempo, localizado na parte inferior da Barra de EstatÃsticas. Se o Tempo (FÃsicos) do Simulador mostrar 20 ms ou mais, clique o botão 'Pegue os Maiores Colidentes'. Será fornecido a você o nome e a localidade dos objetos fÃsicos que podem estar causando uma performance pobre. -Ativando a caixa Desabilitar Colisões e então pressionando o botão Aplicar, as colisões objeto-objeto serão temporariamente desabilitadas. Você pode precisar fazer isso para que possa viajar até a localidade onde observou um 'colidente-mor'. Uma vez tendo chegado à localidade, investigue o objeto – ele está constantemente colidindo com outros objetos? Você pode desejar contatar o dono do objeto ou deletar ou retornar o objeto. -Desative a caixa 'Desabilitar Colisões' e então use 'Aplicar' para reativar as colisões na região. - -Padrão: off - </notification> - - <notification - - label="Desabilitar FÃsica" - name="HelpRegionDisablePhysics" - > -Desabilitar FÃsica é similar a desabilitar Colisões, com exceção de que todas as simulações fÃsicas serão desabilitadas. Isto significa que não só os objetos pararão de colidir, mas também que os avatares não poderão se mover. - -Isto só deve ser usado quando Desabilitar Colisões não trouxer performance suficiente à região para investigar um problema de FÃsica ou do 'Colidente-Mor'. - -Esteja certo de reabilitar FÃsica quando você terminar, ou os avatares não poderão se mover. - -Default: desligado - </notification> - - <notification - - label="Principais Colidentes" - name="HelpRegionTopColliders" - > -Mostra uma lista de objetos com o maior número de potenciais colisões objeto-objeto. Estes objetos podem diminuir a performance do simulador. -Selecione Ver > Barra de EstatÃsticas e olhe em Simulador > Tempo > Tempo de Simulação (FÃsica) para ver se mais de 20 ms são gastos em fÃsica. - </notification> - - <notification - - label="Principais Scripts" - name="HelpRegionTopScripts" - > -Mostra uma lista dos objetos gastando mais tempo rodando scripts LSL. Estes objetos podem diminuir a performance do simulador. -Selecione Ver > Barra de EstatÃsticas e olhe em Simulador > Tempo > Tempo de Script para ver se mais de 25 ms são gastos em scripts. - </notification> - - <notification - - label="Reiniciar Região" - name="HelpRegionRestart" - > -Reinicia o processo do servidor rodando esta região, após um aviso de dois minutos. Todos os residentes nesta região serão desconectados. A região salvará seus dados e deverá retornar em até 90 segundos. - -Reiniciar a região não consertará a maioria dos problemas de performance, e deveria ser utilizada somente quando solicitado. - </notification> - - <notification - - label="Altura da água" - name="HelpRegionWaterHeight" - > -Esta é a altura em metros onde a água aparece. Caso este ajuste seja diferente de 20 e você tenha águas adjacentes ao limite do seu terreno ou águas continentais, haverá uma abertura visÃvel. - -Padrão: 20 - </notification> - - <notification - - label="Limite do aumento" - name="HelpRegionTerrainRaise" - > -Esta é a distância em metros que os donos de lotes podem elevar o terreno, a partir da altura nivelada do terreno. - -Padrão: 4 - </notification> - - <notification - - label="Limite mais baixo" - name="HelpRegionTerrainLower" - > -Esta é a distância em metros que os donos de lotes podem abaixar o terreno, a partir da altura nivelada do terreno. - -Padrão: -4 - </notification> - - <notification - - label="Carregar terreno RAW" - name="HelpRegionUploadRaw" - > -Este botão faz upload de um arquivo .RAW para a região em que você está. -O arquivo precisa conter as dimensões/número de canais corretos: RGB, 256x256 e 13 canais. A melhor forma de criar um arquivo da região é baixando o arquivo .RAW existente. Um bom primeiro passo seria modificar o primeiro canal (altura da região) e fazer o upload do arquivo. - -O upload pode levar certa de 45 segundos. Note que fazer upload do arquivo da região *não* moverá os objetos que estão na região, apenas o terreno e as permissões associadas a ele. Isso pode fazer com que alguns objetos fiquem debaixo da terra. - -Para mais informações sobre edição dos campos de altura da região, consulte a ajuda F1. - </notification> - - <notification - - label="Baixar RAW de terreno" - name="HelpRegionDownloadRaw" - > -Este botão faz download de um arquivo contendo dados de altura do campo, dimensões do lote, status de lotes à venda e algumas permissões de lote para este terreno. Ao abrir o arquivo em programas como o Photoshop, você precisa especificar as dimensões do documento, que são: RGB, 256x256 com 13 canais. Este arquivo de terras não pode ser aberto de outra forma. - -Para mais informações sobre edição dos campos de altura da região, consulte a Ajuda F1. - </notification> - - <notification - - label="Usar Sol da Propriedade" - name="HelpRegionUseEstateSun" - > -Esta caixa de opção faz com que a posição do sol nesta região seja a mesma que no resto da região. - -Padrão: ligada - </notification> - - <notification - - label="Sol fixo" - name="HelpRegionFixedSun" - > -Esta caixa de opção ajusta a posição do sol no equalizador de fuso e interrompe o movimento do sol. - -Padrão: desligada - </notification> - - <notification - - label="Nivelar Terreno" - name="HelpRegionBakeTerrain" - > -Este botão salva a forma atual do terreno como o novo padrão para a região. Uma vez nivelado, o terreno pode reverter à forma que foi salva, sempre que você ou outros utilizarem a ferramenta 'Revert' na edição de terreno. O terreno nivelado é também o ponto médio entre os limites de elevação e redução de terreno. - </notification> - - <notification - - label="Gerentes da Propriedade" - name="HelpEstateEstateManager" - > -Um gerente da propriedade é um residente a quem você delegou o controle das configurações da região. Ele pode alterar qualquer configuração da região, com exceção de elevar, abaixar ou nivelar o terreno. Em particular, eles podem permitir ou banir residentes da sua propriedade. Gerentes da propriedade só podem ser adicionados ou removidos pelo dono da propriedade. - -Um gerente não pode adicionar ou remover outro gerente. Por favor, escolha somente residentes em quem você confia para serem gerentes da propriedade, pois você poderá ser responsabilizado pelas ações deles. - </notification> - - <notification - - label="Usar hora Global" - name="HelpEstateUseGlobalTime" - > -Esta caixa de opção faz com que o Sol em sua propriedade siga a mesma posição do Sol nas propriedades da 'mainland' do Linden Lab. - -Padrão: ligado - </notification> - - <notification - - label="Sol fixo" - name="HelpEstateFixedSun" - > -Esta caixa de opção ajusta a posição do sol no equalizador de fuso e interrompe o movimento do sol. - </notification> - - <notification - - label="Acesso público" - name="HelpEstateExternallyVisible" - > -Esta caixa de verificação define se os Residentes que estão em outras propriedades podem entrar nesta, sem estar em uma lista de acesso. - -Padrão: on - </notification> - - <notification - - label="Permitir Teletransporte direto" - name="HelpEstateAllowDirectTeleport" - > -Quando marcada, permite que os residentes se teletransportem diretamente para qualquer ponto da sua propriedade. Quando desmarcada, os residentes serão teleportados para o telehub mais próximo. - -Padrão: desmarcada - </notification> - - <notification - - label="Permitir acesso" - name="HelpEstateAllowResident" - > -Acesso a esta propriedade estará limitado aos Residentes listados aqui e em quaisquer grupos abaixo. -Esta definição está disponÃvel apenas quando o Acesso Público estiver desmarcado. - </notification> - - <notification - - label="Permitir acesso de grupo" - name="HelpEstateAllowGroup" - > -Acesso a esta propriedade estará limitado aos grupos listados aqui e a quaisquer Residentes acima. -Esta definição está disponÃvel apenas quando o Acesso Público estiver desmarcado. - </notification> - - <notification - - label="Endereço de Email do Abuso" - name="HelpEstateAbuseEmailAddress" - > -Configurar isto para um endereço de email válido, fará com que relatos de abuso nesta propriedade sejam enviados para esse endereço. -DefinÃ-lo em branco fará com que os relatórios de abuso sejam enviados apenas para a Linden Lab. - </notification> - - <notification - - label="Negar acesso" - name="HelpEstateBanResident" - > -Residentes desta lista estão proibidos de acessar a sua propriedade, independentemente de outras configurações. - </notification> - - <notification - - label="Permitir Conversa por Voz" - name="HelpEstateVoiceChat" - > -Lotes nesta propriedade têm permissão para ter seus canais de voz próprios, nos quais os residentes podem ouvir e falar com os outros residentes próximos. - -Padrão: desligado - </notification> - - <notification - - label="Discordância de Versão de Voz" - name="VoiceVersionMismatch" - > -Esta versão do Second Life não é compatÃvel com as caracterÃsticas do Canal de Voz desta região. Para que a Conversa por Voz funcione corretamente, você precisará atualizar o Second Life. - </notification> - - <notification - - label="Corretor da Propriedade" - name="HelpEstateCovenant" - > -Definir um corretor da propriedade lhe permite vender lotes nesta propriedade. Se um corretor não for definido, você não pode vender terras. O cartão do seu corretor pode ficar vazio se você não desejar aplicar quaisquer regras ou avisar os compradores sobre qualquer coisa em relação ao lote antes da compra. - -Um corretor pode ser usado para comunicar regras, orientações, informações culturais ou simplesmente suas expectativas quanto ao futuro comprador. Isto pode incluir zoneamento, regulamentos para construções, opções de pagamento ou qualquer outra informação que você julgar importante que o novo proprietário veja e concorde antes da compra. - -O comprador precisa concordar com o corretor marcando a caixa de verificação antes de concluir a compra. Corretores são sempre visÃveis na caixa de diálogo 'Sobre a Terra' para todos os lotes que têm corretores definidos. - </notification> - - <notification - - label="ImpossÃvel Comprar Objetos" - name="BuyObjectOneOwner" - > -Não é possÃvel comprar objetos de diferentes proprietários ao mesmo tempo. -Por favor, selecione apenas um objeto e tente novamente. - </notification> - - <notification - - label="ImpossÃvel Comprar Conteúdos" - name="BuyContentsOneOnly" - > -Não é possÃvel comprar os conteúdos de mais de um objeto ao mesmo tempo. -Por favor, selecione apenas um objeto e tente novamente. - </notification> - - <notification - - label="ImpossÃvel Comprar Conteúdos" - name="BuyContentsOneOwner" - > -Não é possÃvel comprar objetos de diferentes proprietários ao mesmo tempo. -Por favor, selecione apenas um objeto e tente novamente. - </notification> - - <notification - - name="BuyOriginal" - > -Comprar o objeto original de [OWNER] por L$[PRICE]? -Você se tornará o proprietário deste objeto. -Você poderá: - Modificar: [MODIFYPERM] - Copiar: [COPYPERM] - Revender ou Doar: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Comprar"/> - </notification> - - <notification - - name="BuyOriginalNoOwner" - > -Comprar o objeto original por L$[PRICE]? -Você se tornará o proprietário deste objeto. -Você poderá: - Modificar: [MODIFYPERM] - Copiar: [COPYPERM] - Revender ou Doar: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Comprar"/> - </notification> - - <notification - - name="BuyCopy" - > -Comprar uma cópia de [OWNER] por L$[PRICE]? -O objeto será copiado para o seu inventário. -Você poderá: - Modificar: [MODIFYPERM] - Copiar: [COPYPERM] - Revender ou Doar: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Comprar"/> - </notification> - - <notification - - name="BuyCopyNoOwner" - > -Comprar uma cópia por L$[PRICE]? -O objeto será copiado para o seu inventário. -Você poderá: - Modificar: [MODIFYPERM] - Copiar: [COPYPERM] - Revender ou Doar: [RESELLPERM] - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Comprar"/> - </notification> - - <notification - - name="BuyContents" - > -Comprar conteúdo de [OWNER] por L$[PRICE]? -Eles serão copiados para o seu inventário. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Comprar"/> - </notification> - - <notification - - name="BuyContentsNoOwner" - > -Comprar conteúdo por L$[PRICE]? -Eles serão copiados para o seu inventário. - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Comprar"/> - </notification> - - <notification - - name="ConfirmPurchase" - > -Esta transação fará: -[ACTION] - -Você tem certeza de que deseja prosseguir com esta compra? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Confirmar"/> - </notification> - - <notification - - name="ConfirmPurchasePassword" - type="password"> -Esta transação fará: -[ACTION] - -Você tem certeza de que deseja prosseguir com esta compra? -Por favor, re-insira sua senha e clique 'Confirmar Compra'. - <form name="form"> - <input - name="message" - type="password"/> - <button - - - name="ConfirmPurchase" - text="Confirmar Compra"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="SetPickLocation" - > -Nota: Você atualizou a localidade desta pick mas os outros detalhes ficarão com seus valores originais. - <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="MoveInventoryFromObject" - > -Você selecionou itens 'no copy' do inventário. -Estes itens serão movidos para o seu inventário, não copiados. - -Mover os itens do inventário? - <usetemplate - ignoretext="Quando estiver movendo inventário não copiável a partir de objetos." - name="okcancelignore" - notext="Não mover" - yestext="Mover"/> - </notification> - - <notification - - name="MoveInventoryFromScriptedObject" - > -Você selecionou itens de inventário não copiáveis. -Estes itens serão movidos para seu inventário, não copiados. Pelo fato de o objeto ter scripts, mover estes itens ao inventário pode provocar um mal funcionamento do script. - -Mover para o inventário o(s) item(s)? - <usetemplate - ignoretext="Quando movendo objetos com scripts não copiáveis ao inventário" - name="okcancelignore" - notext="Não mover" - yestext="Mover"/> - </notification> - - <notification - - name="ClickActionNotPayable" - > -Aviso: A ação de Pagar ao Objeto com clique foi definida, mas funcionará apenas se for adicionado um script com o evento money(). - <form name="form"> - <ignore name="ignore" - text="Quando Definindo 'Pagar' em objetos sem eventos money()"/> - </form> - </notification> - - <notification - - name="OpenObjectCannotCopy" - > -Não há itens neste objeto que você está autorizado a copiar. - </notification> - - <notification - - name="WebLaunchAccountHistory" - > -Ir para o site do Second Life para visualizar o histórico de sua conta? - <usetemplate - ignoretext="Ao abrir a página web de histórico de conta" - name="okcancelignore" - notext="Cancelar" - yestext="Ir para a página"/> - </notification> - - <notification - - name="ClickOpenF1Help" - > -Visitar o website de Suporte do Second Life? - <usetemplate - ignoretext="Quando visitando o website de Suporte do Second Life" - name="okcancelignore" - notext="Cancelar" - yestext="Ir"/> - </notification> - - <notification - - name="ConfirmQuit" - > -Tem certeza que deseja sair? - <usetemplate - ignoretext="Quando Saindo do Second Life." - name="okcancelignore" - notext="Continuar" - yestext="Sair"/> - </notification> - - <notification - - name="HelpReportAbuseEmailLL" - > -Use esta ferramenta para reportar violações aos Termos de Serviço e aos Padrões da Comunidade. Veja: - -http://secondlife.com/corporate/tos.php -http://secondlife.com/corporate/cs.php - -Todos os abusos aos Termos de Serviço e aos Padrões da Comunidade reportados, são investigados e resolvidos. Você pode ver a resolução do incidente na Reportagem de Incidentes em: - -http://secondlife.com/support/incidentreport.php - </notification> - - <notification - - name="HelpReportAbuseEmailEO" - > -IMPORTANTE: Esta reportagem irá para o dono da região em que você se encontra atualmente e não para a Linden Lab. - -Como um serviço aos residentes e visitantes, o dono da região em que você se encontra foi eleito para receber e resolver todas as reportagens originadas nesta região. A Linden Lab não irá investigar reportagens que você envia desta localidade. - -O dono da região resolverá as reportagens baseado nas regras locais desta região, como definido na Declaração da propriedade. -(Veja as declarações indo ao menu Mundo e selecionando Sobre a Terra.) - -A resolução desta reportagem se aplica apenas a esta região; o acesso de Residentes à s outras áreas do Second Life não será afetado pelas decisões desta reportagem. -Apenas a Linden Lab pode restringir acesso a todo o Second Life. - </notification> - - <notification - - name="HelpReportBug" - > -Use esta ferramenta para reportar *apenas* caracterÃsticas técnicas que não atuem como descrito ou esperado. -Por favor, forneça tantos detalhes quanto possÃvel. -Você pode responder ao e-mail de resposta automática para adicionar mais detalhes à sua reportagem. - -Todas as reportagens de bugs são investigadas e avaliadas. -Nenhum e-mail de resposta será enviado. - -Se você estiver tendo uma dificuldade técnica, por favor contate o Suporte em: -http://secondlife.com/community/support.php - -Nota: reportagens incompletas não serão investigadas - </notification> - - <notification - - name="HelpReportAbuseSelectCategory" - > -Por favor, selecione uma categoria para a reportagem deste abuso. -A seleção de uma categoria nos ajuda a arquivar e processar as reportagens de abuso. - </notification> - - <notification - - name="HelpReportBugSelectCategory" - > -Por favor, selecione uma categoria para este bug. -A seleção de uma categoria nos ajuda a arquivar e processar as reportagens de bugs. - </notification> - - <notification - - name="HelpReportAbuseAbuserNameEmpty" - > -Por favor, entre com o nome do perturbador. -Entrando com um valor preciso, nos ajuda a arquivar e processar as reportagens de abuso. - </notification> - - <notification - - name="HelpReportAbuseAbuserLocationEmpty" - > -Por favor, entre com a localidade aonde o abuso aconteceu. -Entrando com um valor preciso, nos ajuda a arquivar e processar as reportagens de abuso. - </notification> - - <notification - - name="HelpReportAbuseSummaryEmpty" - > -Por favor, digite um resumo de como ocorreu o abuso. -Fazer um resumo detalhado nos ajuda a arquivar e processar as reportagens de abuso. - </notification> - - <notification - - name="HelpReportBugSummaryEmpty" - > -Por favor, digite um resumo do bug. Realizar um resumo detalhado nos ajuda a arquivar e processar as reportagens de abuso. - </notification> - - <notification - - name="HelpReportAbuseDetailsEmpty" - > -Por favor, digite uma descrição detalhada do abuso que ocorreu. -Seja tão especÃfico quanto você puder, incluindo nomes e os detalhes do incidente que está denunciando. -Fazer uma descrição precisa nos ajuda a arquivar e processar as reportagens de abuso. - </notification> - - <notification - - name="HelpReportBugDetailsEmpty" - > -Por favor, digite uma descrição detalhada do bug. -Seja tão especÃfico quanto você puder, incluindo as etapas para reproduzir o bug, se possÃvel. -Fazer uma descrição precisa nos ajuda a arquivar e processar os relatórios de bugs. - </notification> - - <notification - - name="HelpReportAbuseContainsCopyright" - > -Caro Residente, - -Você parece estar relatando violação de propriedade intelectual. Por favor, certifique-se de que está relatando corretamente: - -(1) O Processo de abuso. Você pode apresentar um relatório de abuso se você acredita que um Residente está infringindo o sistema de permissões do Second Life, por exemplo, utilizando ferramentas CopyBot para copiar ou similar, para violar os direitos de propriedade intelectual. A Equipe de Abuso investiga e divulga a ação disciplinar adequada para o comportamento que viola o Estatuto da Comunidade do Second Life ou os Termos de Serviço. No entanto, a mesma não controla e não irá responder aos pedidos para remover o conteúdo do mundo Second Life. - -(2) O processo de remoção de conteúdo ou DMCA. Para solicitar a remoção de conteúdo do Second Life, você deve enviar uma notificação válida de infração, conforme previsto em nossa PolÃtica de DMCA em http://secondlife.com/corporate/dmca.php. - -Se você ainda deseja prosseguir com o processo de abuso, por favor, feche esta janela e termine de enviar seu relatório. Pode ser necessário selecionar a categoria especÃfica 'CopyBot Infração de Permissões'. - -Obrigado, -Linden Lab - </notification> - - <notification - - name="FailedRequirementsCheck" - > -Não foram encontrados os seguintes componentes requeridos de [FLOATER]: -[COMPONENTS] - </notification> - - <notification - - label="Substituir anexo existente" - name="ReplaceAttachment" - > -Já existe um objeto anexado a este ponto do seu corpo. -Você deseja substituÃ-lo pelo objeto selecionado? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Ao substituir os anexos existentes"/> - <button - - - - name="Yes" - text="Sim"/> - <button - - - name="No" - text="Não"/> - </form> - </notification> - - <notification - - label="Aviso de Modo Ocupado" - name="BusyModePay" - > -Você está no modo Ocupado, o que significa que você não receberá quaisquer itens oferecidos em troca deste pagamento. - -Você gostaria de deixar o modo Ocupado antes de completar esta transação? - <form name="form"> - <ignore name="ignore" - save_option="true" - text="Ao pagar uma pessoa ou objeto no modo ocupado"/> - <button - - - - name="Yes" - text="Sim"/> - <button - - - name="No" - text="Não"/> - </form> - </notification> - - <notification - - name="ConfirmEmptyTrash" - > -Tem certeza de que deseja remover permanentemente o conteúdo da lixeira de seu inventário? - <usetemplate - ignoretext="Ao esvaziar a pasta da lixeira no seu inventário" - name="okcancelignore" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmClearBrowserCache" - > -Você tem certeza que deseja limpar o cache do seu navegador? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmClearCookies" - > -Você tem certeza de que deseja limpar os cookies? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmClearMediaUrlList" - > -Você tem certeza de que deseja limpar toda sua lista de URLs? - <usetemplate - name="okcancelbuttons" - notext="Cancelar" - yestext="Sim"/> - </notification> - - <notification - - name="ConfirmEmptyLostAndFound" - > -Deseja realmente remover permanentemente o conteúdo da pasta achados e perdidos? - <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: - [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. - <form name="form"> - <ignore name="ignore" - text="Ao copiar a SURL para o seu clipboard"/> - </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: - -Sombreamento: Ativar ou desativar vários tipos de sobreadores de pixel. - -Detalhes de Reflexão: Define os tipos de objetos que a água pode refletir. - -Renderização de Avatar: Define opções que afetam a forma como o cliente renderizará os avatares. - -Alcance: Afeta a distância do seu ponto de vista que os objetos serão renderizados na cena. - -Número máximo de partÃculas: Define o número máximo de partÃculas que será capaz de ver na sua tela de uma só vez. - -Qualidade de Pós-Processamento: Define a resolução com a qual o brilho será renderizado. - -Detalhes de malha: Ajusta a quantidade de detalhes ou número de triângulos utilizados na renderização de certos objetos. Um valor mais alto leva mais tempo para renderizar, mas torna esses objetos mais detalhados. - -Detalhe de Iluminação: Seleciona os tipos de luzes que você gostaria de renderizar. - -Detalhe de Terreno: Ajusta a quantidade de detalhes que você gostaria de ver para a textura do terreno. - </notification> - - <notification - - name="WLSavePresetAlert" - > -Você deseja substituir a pré-configuração salva? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="WLDeletePresetAlert" - > -Você deseja apagar [SKY]? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="WLNoEditDefault" - > -Você não pode editar ou excluir um padrão predefinido. - </notification> - - <notification - - name="WLMissingSky" - > -Este arquivo de ciclo de dia se refere a um arquivo de céu faltando: [SKY]. - </notification> - - <notification - - name="PPSaveEffectAlert" - > -Existe efeito de Pós-Processamento. Você deseja substituÃ-lo? - <usetemplate - name="okcancelbuttons" - notext="Não" - yestext="Sim"/> - </notification> - - <notification - - name="HelpEditSky" - > -Editar os controles graduais do WindLight para configurar e salvar um conjunto de céus. - </notification> - - <notification - - name="HelpEditDayCycle" - > -Definir quais céus colocar durante todo o dia. - </notification> - - <notification - - name="EnvSettingsHelpButton" - > -Essas configurações ajustam a forma como o ambiente parece localmente no seu computador. Sua placa de vÃdeo precisa suportar o sombreador atmosférico, a fim de ter acesso a todas as definições. - -Ajuste o controle gradual "Hora do Dia" para alterar a fase do dia localmente no visualizador. - -Ajuste o controle gradual de "Cobertura das nuvens" para controlar quantas nuvens cobrem o céu. - -Pegue uma cor na paleta de cores de "Cor da Ãgua" para mudar a cor desta. - -Ajuste o controle gradual de "Névoa de Ãgua" para controlar o quão densa é a névoa dentro da água. - -Clique "Usar Horário da Propriedade" para redefinir a hora do dia para o horário atual do dia da região e permanecer atrelado a ela. - -Clique "Céu Avançado " para abrir um editor com configurações mais avançadas para o céu. - -Clique "Ãgua Avançada " para abrir um editor com configurações mais avançadas para a água. - </notification> - - <notification - - name="HelpDayCycle" - > -O editor de Ciclo do Dia dá a você o controle do céu durante um ciclo de dia/noite do Second Life. Este é o ciclo usado pelo controle gradual da hora do dia do editor de ambiente básico. - -O editor do ciclo de dia trabalha configurando quadros-chave. Estes são pontos (representados pelos Ãcones cinza no gráfico de horário) que possuem um pré-ajuste de céu associado a eles. Conforme o dia passa, o céu do Windlight " anima " a interpolação entre esses quadros-chave. - -A seta amarela acima da linha de tempo representa a sua vista atual, baseada no horário do dia. Clique e arraste para ver como o seu dia será animado. Você pode adicionar ou deletar os quadros-chave pressionando os botões Adicionar Chave e Deletar chave ao lado direito da linha de tempo. - -Você pode configurar a posição do tempo de um quadro-chave arrastando-o pela linha do tempo, ou configurando manualmente no quadro de configurações do seu quadro-chave. Será possÃvel a você associar o seu quadro-chave a este respectivo padrão WindLight. - -A duração do ciclo determina a duração geral do "dia". Configurá-la para um valor baixo (por exmplo, 2 min.) quer dizer que a linha do tempo de 24 horas será animada completamente em apenas dois minutos reais! Assim que estiver satisfeito com a linha do tempo e o ciclo dos quadros-chave, use os botões Play e Stop para uma prévia de como ficará o resultado. Lembre-se, você também pode utilizar a seta amarela indicadora do tempo acima da linha do tempo para ver o ciclo animado interativamente. Usando o botão do tempo da popriedade irá sincronizar a duração do seu dia ao ciclo diário da propriedade. - -Assim que estiver satisfeito com o seu ciclo diário, você pode salvá-lo ou carregá-lo através dos botões Salvar Dia Teste e Carregar Dia Teste. Note que, por enquanto, nós permitimos apenas um Ciclo de dia. - </notification> - - <notification - - name="HelpBlueHorizon" - > -Use os cursores Vermelho/Verde/Azul ( Red/Green/Blue -RGB) para ajustar as cores do céu. Você também pode usar o controle de Intensidade (I) para mover os três controles RGB simultaneamente. - </notification> - - <notification - - name="HelpHazeHorizon" - > -Haze Horizon é um dos parâmetros mais úteis para ajuste global de exposição de luz na cena. Ele é eficaz para simular diversas configurações de exposição, tais como configurações para super-exposição do sol e escuros halos de Iris. - </notification> - - <notification - - name="HelpBlueDensity" - > -A densidade global azul afeta a saturação da cor do céu e nevoeiro. Se você mover o controle gradual de intensidade (I) para a direita, as cores vão se tornar mais brilhantes e vibrantes. Se você movê-lo totalmente para a esquerda, as cores perdem intensidade e cor, eventualmente chegando a preto e branco. Se pretende um ajuste fino do equilÃbrio de cor do céu, você pode controlar os diversos elementos da saturação, utilizando os controles graduais para vermelho / verde / azul (RGB). - </notification> - - <notification - - name="HelpHazeDensity" - > -Densidade de Poeira controla o nÃvel de fumaça, poeira cinza na atmosfera. Eficaz para simular cenas com altos nÃveis de poeira e poluentes. É também efetivo em simular névoa e nevoeiro. - </notification> - - <notification - - name="HelpDensityMult" - > -O Multiplicador de Densidade pode ser usado para afetar a densidade atmosférica global. Com definições mais baixas, ele cria uma sensação de "ar rarefeito" e em definições mais altas, ele cria um efeito mais denso, mais esfumaçado. - </notification> - - <notification - - name="HelpDistanceMult" - > -Ajusta como a distância no WindLight é percebida. Um valor zero efetivamente desativa a influência do WindLight sobre terrenos e objetos. Valores superiores a 1 simulam os efeitos atmosféricos mais espessos a maiores distâncias. - </notification> - - <notification - - name="HelpMaxAltitude" - > -Max Altitude ajusta os cálculos de performance de altitude do WindLight, quando computa sua iluminação atmosférica. Em perÃodos vespertinos do dia, é útil para ajustar a "profundidade" de como o pôr-do-sol aparece. - </notification> - - <notification - - name="HelpSunlightColor" - > -Ajustar a cor e intensidade da luz direta na cena. - </notification> - - <notification - - name="HelpSunAmbient" - > -Ajusta a cor e a intensidade da luz ambiente atmosférica na cena. - </notification> - - <notification - - name="HelpSunGlow" - > -O controle gradual de Tamanho controla o tamanho do sol. -O controle gradual de Foco controla o quanto o sol aparecerá desfocado no céu. - </notification> - - <notification - - name="HelpSceneGamma" - > -Ajusta a distribuição na tela de luz e escuridão. - </notification> - - <notification - - name="HelpStarBrightness" - > -Ajusta o brilho das estrelas no céu. - </notification> - - <notification - - name="HelpTimeOfDay" - > -Controla a localização do sol no céu. Semelhante a elevação. - </notification> - - <notification - - name="HelpEastAngle" - > -Controla a localização do sol no céu. -Similar ao azimute. - </notification> - - <notification - - name="HelpCloudColor" - > -Edita as cores das nuvens, É normalmente recomendado manter o tom esbranquiçado, mas hey! Você pode se divertir se desejar. - </notification> - - <notification - - name="HelpCloudDetail" - > -Controla os detalhes da camada de imagem superior na imagem de nuvem principal. X e Y controla sua posição. D (Densidade) controla o quão cheio ou estratificada as nuvens devem aparecer. - </notification> - - <notification - - name="HelpCloudDensity" - > -Permite que você controle a posição das nuvens com os cursores X e Y e a densidade deles com o cursor D. - </notification> - - <notification - - name="HelpCloudCoverage" - > -Controla o quanto as nuvens cobrem o céu. - </notification> - - <notification - - name="HelpCloudScale" - > -Controla o dimensionamento da imagem de nuvens na cúpula celeste. - </notification> - - <notification - - name="HelpCloudScrollX" - > -Controla a velocidade das nuvens que se movem na direção X. - </notification> - - <notification - - name="HelpCloudScrollY" - > -Controla a velocidade que as núvens se movem na direção Y. - </notification> - - <notification - - name="HelpClassicClouds" - > -Marque esta check box para permitir a reprodução das nuvens clássicas mais velhas do Second Life, além das nuvens WindLight. - </notification> - - <notification - - name="HelpWaterFogColor" - > -Escolhe a cor da neblina subaquática. - </notification> - - <notification - - name="HelpWaterFogDensity" - > -Controla a densidade da neblina da água e a distância de visibilidade debaixo d'água. - </notification> - - <notification - - name="HelpUnderWaterFogMod" - > -Modifica o efeito do expoente de densidade de Neblina para controlar até onde você pode ver quando o seu avatar está imerso. - </notification> - - <notification - - name="HelpWaterGlow" - > -Controla o quanto a superfÃcie da água deve brilhar. - </notification> - - <notification - - name="HelpWaterNormalScale" - > -Controla o escalonamento das três marolas que compõem a água. - </notification> - - <notification - - name="HelpWaterFresnelScale" - > -Controla o quanto de luz será refletido por ângulos diferentes. - </notification> - - <notification - - name="HelpWaterFresnelOffset" - > -Controla o quanto da intensidade da luz é refletida. - </notification> - - <notification - - name="HelpWaterScaleAbove" - > -Controla o quanto de luz será refratado olhando acima da superfÃcie da água. - </notification> - - <notification - - name="HelpWaterScaleBelow" - > -Controla o quanto de luz sera refratado visto debaixo da superfÃcie da água. - </notification> - - <notification - - name="HelpWaterBlurMultiplier" - > -Controla como ondas e reflexos são misturados. - </notification> - - <notification - - name="HelpWaterNormalMap" - > -Controla o mapeamento normal em todos os nÃveis da água para determinar reflexões / refrações. - </notification> - - <notification - - name="HelpWaterWave1" - > -Controla aonde e com que velocidade a versão em escala maior do mapa normal se move nas direções X e Y . - </notification> - - <notification - - name="HelpWaterWave2" - > -Controla onde e a velocidade com que o mapa normal em escala menor se move nas direções X e Y. - </notification> - - <notification - - name="NewSkyPreset" - > -Me dê o nome para o novo céu. - <form name="form"> - <input name="message" type="text"> -Novo padrão - </input> - <button - - - name="OK" - text="OK"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="ExistsSkyPresetAlert" - > -Este padrão já existe! - </notification> + yestext="OK"/> + </notification> + <notification name="RegionEntryAccessBlocked_KB"> + Você não é permitido nesta região devido à sua Classificação de maturidade. - <notification - - name="NewWaterPreset" - > -Dê o nome para o novo padrão de água. - <form name="form"> - <input name="message" type="text"> -Nova Apresentação - </input> +Ir para o Banco de Conhecimento para maiores informações sobre Classificações de maturidade? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> + <usetemplate + name="okcancelignore" + yestext="Ir para o Banco de Conhecimento" + notext="Fechar" + ignoretext="Quando a entrada na região está bloqueada devido à Classificação de maturidade"/> + </notification> + <notification name="RegionEntryAccessBlocked_Notify"> + Você não é permitido nesta região devido à sua Classificação de maturidade. + </notification> + <notification name="RegionEntryAccessBlocked_Change"> + 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> <button - - name="OK" - text="OK"/> + text="Mudar Preferência"/> <button - + default="true" name="Cancel" - text="Cancelar"/> + text="Fechar"/> + <ignore text="Quando a entrada na Região está bloqueada devido à preferência de Classificação de maturidade"/> </form> - </notification> - - <notification - - name="ExistsWaterPresetAlert" - > -Este padrão já existe! - </notification> - - <notification - - name="WaterNoEditDefault" - > -Você não pode editar ou apagar um padrão predefinido. - </notification> + </notification> + <notification name="LandClaimAccessBlocked"> + Você não pode reclamar esta terra devido à sua Classificação de maturidade. Isto pode ser o resultado de falta de informação na validação de sua idade. - <notification - - name="ChatterBoxSessionStartError" - > -Não foi possÃvel iniciar uma nova sessão bate-papo com [RECIPIENT]. -[REASON] +Por favor, verifique se você tem o último Visualizador instalado e vá para o Banco de Conhecimento para detalhes sobre o acesso de áreas com esta Classificação de maturidade. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandClaimAccessBlocked_KB"> + Você não pode reclamar esta terra devido à sua Classificação de maturidade. - <notification - - name="ChatterBoxSessionEventError" - > -[EVENT] -[REASON] +Ir para a o Banco de Conhecimento para maiores informações sobre Classificações de maturidade? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="ForceCloseChatterBoxSession" - > -Sua sessão de bate-papo com [NAME] tem que fechar. -[REASON] + name="okcancelignore" + yestext="Ir para o Banco de Conhecimento" + notext="Fechar" + ignoretext="Quando reclamar a Terra está bloqueado devido à Classificação de maturidade"/> + </notification> + <notification name="LandClaimAccessBlocked_Notify"> + Você não pode reclamar esta terra devido à sua Classificação de maturidade. + </notification> + <notification name="LandClaimAccessBlocked_Change"> + Você não pode reclamar esta terra devido à sua preferência de Classsificaçã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. <usetemplate - name="okbutton" - yestext="OK"/> - </notification> - - <notification - - name="Cannot_Purchase_an_Attachment" - > -Os itens não podem ser comprados enquanto forem parte de um anexo. - </notification> + name="okcancelignore" + yestext="Mudar Preferência" + notext="Fechar" + ignoretext="Quando reclamar a Terra está bloqueado devido à preferência de Classificação de maturidade"/> + </notification> + <notification name="LandBuyAccessBlocked"> + Você não pode comprar esta terra devido à sua Classificação de maturidade. Isto pode ser o resultado de falta de informação na validação de sua idade. - <notification - - label="Sobre o pedido de Permissão de Débito" - name="DebitPermissionDetails" - > -Conceder esse pedido dá permissão ao script para tirar Linden dólares (L$) de sua conta. Para revogar esta permissão, o proprietário do objeto deve excluir o objeto ou resetar os scripts dele. +Por favor, verifique se você tem o último Visualizador instalado e vá para o Banco de Conhecimento para detalhes sobre o acesso de áreas com esta Classificação de maturidade. <usetemplate name="okbutton" yestext="OK"/> - </notification> + </notification> + <notification name="LandBuyAccessBlocked_KB"> + Você não pode comprar esta terra devido à sua Classificação de maturidade. - <notification - - name="AutoWearNewClothing" - > -Você gostaria de vestir automaticamente o item de vestuário que você criar? +Ir para o Banco de Conhecimento para maiores informações sobre Classificações de Maturidade? + <url name="url"> + https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 + </url> <usetemplate - ignoretext="Automaticamente vestir novo vestuário" name="okcancelignore" + yestext="Ir para o Banco de Conhecimento" + notext="Fechar" + ignoretext="Quando a compra de Terra está bloqueada devido à Classificação de maturidade"/> + </notification> + <notification name="LandBuyAccessBlocked_Notify"> + Você não pode comprar esta terra devido à sua Classificação de maturidade. + </notification> + <notification name="LandBuyAccessBlocked_Change"> + Você não pode comprar esta terra 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. + <usetemplate + name="okcancelignore" + yestext="Mudar Preferência" + notext="Fechar" + ignoretext="Quando a compra de Terra está bloqueada devido à preferência de Classificação de maturidade"/> + </notification> + <notification name="TooManyPrimsSelected"> + "Muitos prims foram selecionados. Por favor, selecione [MAX_PRIM_COUNT] ou menos e tente novamente." + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemImportingEstateCovenant"> + Problemas encontrados ao importar o Corretor da propriedade. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ProblemAddingEstateManager"> + Problemas em adicionar um novo gerente da propriedade. Uma ou mais propriedades podem ter uma lista de gerentes cheia. + </notification> + <notification name="ProblemAddingEstateGeneric"> + Problemas em adicionar a esta lista de propriedades. Uma ou mais propriedades podem ter uma lista cheia. + </notification> + <notification name="UnableToLoadNotecardAsset"> + ImpossÃvel carregar o notecard da propriedade no momento. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="NotAllowedToViewNotecard"> + Permissões insuficientes para visualizar notecard associado com o ID do ativo solicitado. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MissingNotecardAssetID"> + O ID do ativo do notecard não foi localizado no banco de dados. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="PublishClassified"> + Lembre-se: Taxas de Anúncios de Classificados não são reembolsáveis. + +Publicar este classificado agora por L$ [AMOUNT]? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Publicar"/> + </notification> + <notification name="SetClassifiedMature"> + Este classificado contém conteúdo Mature? + <usetemplate + canceltext="Cancelar" + name="yesnocancelbuttons" notext="Não" yestext="Sim"/> - </notification> - - <notification - - name="NotAgeVerified" - > -Você precisa ter a idade verificada para acessar este lote. -Gostaria de visitar o site do Second Life para verificação de idade? - -[_URL] - <url option="0" name="url"> - - https://secondlife.com/account/verification.php - </url> + </notification> + <notification name="SetGroupMature"> + Este grupo contém conteúdo Mature? <usetemplate - ignoretext="Alertar sobre a falta de verificação de idade" - name="okcancelignore" + canceltext="Cancelar" + name="yesnocancelbuttons" notext="Não" yestext="Sim"/> - </notification> + </notification> + <notification label="Confirmar reiniciar" name="ConfirmRestart"> + Você quer realmente reiniciar esta região em 2 minutos? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Reiniciar"/> + </notification> + <notification label="Mensagem para todos desta Região" name="MessageRegion"> + Digite um breve aviso que será enviado para todos nesta região. + <form name="form"> + <input name="message" type="text"/> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification label="Bloquear Terraforma" name="HelpRegionBlockTerraform"> + Se esta opção for assinalada, donos de Terrenos não serão capazes de terraformar independentemente da configuração 'Editar Terreno' de suas terras por lote. - <notification - - name="Cannot enter parcel: no payment info on file" - > -Este lote exige que você tenha informações de pagamento no arquivo antes de poder acessá-lo. -Gostaria de visitar o site do Second Life para configurá-lo? +Padrão: desligado + </notification> + <notification label="Bloquear Vôo" name="HelpRegionBlockFly"> + Se esta caixa estiver marcada, as pessoas não poderão voar nesta região independente das configurações por lote de 'Voar'. -[_URL] - <url option="0" name="url"> +Padrão: desligado. + </notification> + <notification label="Mudança Conjunta das Permissões de Conteúdo" name="HelpBulkPermission"> + A ferramenta de Mudança Conjunta das Permissões lhe ajuda a mudar, rapidamente, as permissões de múltiplos itens que estão no conteúdo do(s) objeto(s) selecionado(s). Por favor observe que, no entanto, você está apenas definindo permissões para on itens que estão no conteúdo dos objetos selecionados -- não as permissões para o container dos próprios objetos. - https://secondlife.com/account/ - </url> - <usetemplate - ignoretext="Avisar sobre a falta de informação de pagamento." - name="okcancelignore" - notext="Não" - yestext="Sim"/> - </notification> +Também observe que as permissões não se aplicam aos conteúdos aninhados, contidos em quaisquer dos objetos. Sua solicitação opera apenas nos itens em exatamente um nÃvel de profundidade. - <notification - - name="MissingString" - > -A sequência [STRING_NAME] está faltando do strings.xml - </notification> +Você pode escolher seletivamente quais tipos de itens modificar, usando a lista de conferência aqui, abaixo de 'Tipos de Conteúdo'. Quando você seleciona Texturas, as fotos são incluÃdas. - <notification - - name="SystemMessageTip" - > -[MESSAGE] - </notification> +* Esta ferramenta apenas mudará as permissões em itens que você pode mudar. +* Você não pode dar ao Próximo dono, as permissões que você já não tem. +* As permissões ao Próximo dono são meramente solicitações. Se um dos itens não puder assumir todas as novas permissões, nenhuma delas mudará. - <notification - - name="Cancelled" - > -Cancelado - </notification> +Quando você estiver pronto para mudar as permissões globais, clique 'Aplicar' e aguarde os resultados na tela. - <notification - - name="CancelledSit" - > -Cancelada a ação de sentar - </notification> +Se você fechar a janela de Permissões Conjuntas enquanto elas estiverem sendo alteradas, a operação será suspensa. + </notification> + <notification label="Permitir Dano" name="HelpRegionAllowDamage"> + Marcar essa caixa habilita o sistema de vitalidade em todos os lotes independente das configurações individuais. Se esta caixa ficar desmarcada, os proprietários de lotes individuais ainda estarão aptos a ativar o sistema de vitalidade de seus lotes. - <notification - - name="CancelledAttach" - > -Cancelado Anexar - </notification> +Padrão: desligado. + </notification> + <notification label="Limite de Agentes" name="HelpRegionAgentLimit"> + Define o número máximo de residentes permitidos nesta região. +Quanto mais residentes existirem em sua região, pior pode ser a performance. - <notification - - name="ReplacedMissingWearable" - > -Substituindo partes de roupa/corpo perdidas com o padrão - </notification> +Padrão: 40 + </notification> + <notification label="Bonus de Objetos" name="HelpRegionObjectBonus"> + O Bônus de objetos é um multiplicador para primitivas permitidas em qualquer lote. O intervalo permitido é de 1 a 10. +Se fixado em '1 ', 512m² de cada lote permitem 117 objetos. +Fixado em '2 ', 512m² cada lote permitem 234, ou o dobro, e assim por diante. +O número máximo de objetos permitidos por região permanece 15000 não importa qual seja o Bônus de objeto. Uma vez estabelecido, esteja ciente de que a redução do Bônus de objetos pode retornar objetos ou apagá-los. - <notification - - name="GroupNotice" - > -Assunto: [SUBJECT], Mensagem: [MESSAGE] - </notification> +Padrão: 1.0 + </notification> + <notification label="Maturidade" name="HelpRegionMaturity"> + Define a Classificação de Maturidade da região, como mostrado na barra de menu, no topo de qualquer visualizador do Residente e nas dicas no Mapa-Mundi, quando o cursor passa sobre esta Região. Esta definição também afeta o acesso a esta Região e aos resultados de busca. Outros Residentes podem apenas entrar em Regiões ou ver resultados de busca com a mesma Classificação de maturidade que eles escolheram em suas preferências. + +Pode levar algum tempo até que esta mudança se reflita no mapa. + </notification> + <notification label="Restringir Empurrar" name="HelpRegionRestrictPushObject"> + Esta caixa de verificação Configura toda a região para permissões restritivas de empurrar. +Quando habilitada, os agentes só podem empurrar a si mesmos ou serem empurrados pelo dono do lote. +(Empurrar se refere à função LSL llPushObject().) - <notification - - name="FriendOnline" - > -[FIRST] [LAST] está Online - </notification> +Padrão: Desligado. + </notification> + <notification label="Unir/dividir lote" name="HelpParcelChanges"> + Configura se os lotes que não pertencem ao dono da propriedade podem ser unidos ou subdivididos. +Se esta opção estiver desmarcada: + * Apenas os donos ou gerentes de propriedades podem unir ou dividir lotes. + * Eles podem unir ou subdividir lotes pertencentes ao dono ou ao grupo onde eles tem os poderes apropriados. +Se esta opção estiver marcada: + * Todos os donos de lotes podem unir ou subdividir os lotes que eles possuem. + * Para lotes pertencentes a grupos, aqueles com os poderes apropriados podem unir ou subdividir lotes. + +Padrão: Marcado. + </notification> + <notification label="Não Mostrar na Pesquisa" name="HelpRegionSearch"> + Ao marcar esta caixa irá bloquear os donos de lotes de listar seus lotes na busca - <notification - - name="FriendOffline" - > -[FIRST] [LAST] está Offline - </notification> +Padrão: desligado + </notification> + <notification label="Modificar a maturidade da Região" name="RegionMaturityChange"> + A classificação de maturidade para esta região foi atualizada. +Pode levar algum tempo para que a mudança seja refletida no mapa. + </notification> + <notification label="Revenda de Terreno" name="HelpRegionLandResell"> + Os gerentes e os donos de propriedades podem vender qualquer terreno pertencente ao dono da propriedade. +Se esta opção estiver desmarcada, os compradores não podem revender seus terrenos nesta região. +Se esta opção estiver marcada, compradores podem vender seus terrenos nesta região. - <notification - - name="AddSelfFriend" - > -Você não pode adicionar a si mesmo como amigo - </notification> +Padrão: Desabilitada. + </notification> + <notification label="Desabilitar Scripts" name="HelpRegionDisableScripts"> + Quando a performance do simulador está ruim, um script pode ser o culpado. Abra a Barra de EstatÃsticas (Ctrl-Shift-1). Olhe no Simulador de FÃsica FPS. Se estiver abaixo de 45, então abra o painel 'Tempo' localizado na parte de baixo da Barra de EstatÃsticas. Se o Tempo de Script indicar 25 ms ou mais, clique no botão 'Get Top CScripts'. Será dado o nome e a localização do script que pode estar causando uma performance ruim. Marque a caixa 'Desabilitar Scripts' e aperte o botão 'Aplicar'. Isto temporariamente desabilitará todos os scripts nesta região. Uma vez que você chegar ao local, investigue o script para determinar se ele está causando o problema. Você pode querer entrar em contato com o proprietário do script, excluir ou devolver o objeto. Desmarque a caixa 'Desabilitar Script' e então clique em 'Aplicar' para reativar os scripts na região. Padrão: desligado. + </notification> + <notification label="Desabilitar Colisões" name="HelpRegionDisableCollisions"> + Quando a performance do simulador é pobre, os objetos fÃsicos podem ser os culpados.Abra a a Barra de EstatÃsticas (Ctrl-Shift-1). +Olhe a taxa de quadros por segundos (FPS) dos objetos fÃsicos. - <notification - - name="UploadingAuctionSnapshot" - > -Fazendo o upload das fotos do site da web e do mundo... -(Leva cerca de 5 minutos) - </notification> +Se ela estiver abaixo de 45, abra o painel de Tempo, localizado na parte inferior da Barra de EstatÃsticas. Se o Tempo (FÃsicos) do Simulador mostrar 20 ms ou mais, clique o botão 'Pegue os Maiores Colidentes'. Será fornecido a você o nome e a localidade dos objetos fÃsicos que podem estar causando uma performance pobre. +Ativando a caixa Desabilitar Colisões e então pressionando o botão Aplicar, as colisões objeto-objeto serão temporariamente desabilitadas. Você pode precisar fazer isso para que possa viajar até a localidade onde observou um 'colidente-mor'. Uma vez tendo chegado à localidade, investigue o objeto – ele está constantemente colidindo com outros objetos? Você pode desejar contatar o dono do objeto ou deletar ou retornar o objeto. +Desative a caixa 'Desabilitar Colisões' e então use 'Aplicar' para reativar as colisões na região. - <notification - - name="UploadPayment" - > -Você paga L$[AMOUNT] para fazer o upload. - </notification> +Padrão: off + </notification> + <notification label="Desabilitar FÃsica" name="HelpRegionDisablePhysics"> + Desabilitar FÃsica é similar a desabilitar Colisões, com exceção de que todas as simulações fÃsicas serão desabilitadas. Isto significa que não só os objetos pararão de colidir, mas também que os avatares não poderão se mover. - <notification - - name="UploadWebSnapshotDone" - > -ConcluÃdo o upload da foto do site da web - </notification> +Isto só deve ser usado quando Desabilitar Colisões não trouxer performance suficiente à região para investigar um problema de FÃsica ou do 'Colidente-Mor'. - <notification - - name="UploadSnapshotDone" - > -O upload da foto foi realizado - </notification> +Esteja certo de reabilitar FÃsica quando você terminar, ou os avatares não poderão se mover. - <notification - - name="TerrainDownloaded" - > -Feito o download de Terrain.raw - </notification> +Default: desligado + </notification> + <notification label="Principais Colidentes" name="HelpRegionTopColliders"> + Mostra uma lista de objetos com o maior número de potenciais colisões objeto-objeto. Estes objetos podem diminuir a performance do simulador. +Selecione Ver > Barra de EstatÃsticas e olhe em Simulador > Tempo > Tempo de Simulação (FÃsica) para ver se mais de 20 ms são gastos em fÃsica. + </notification> + <notification label="Principais Scripts" name="HelpRegionTopScripts"> + Mostra uma lista dos objetos gastando mais tempo rodando scripts LSL. Estes objetos podem diminuir a performance do simulador. +Selecione Ver > Barra de EstatÃsticas e olhe em Simulador > Tempo > Tempo de Script para ver se mais de 25 ms são gastos em scripts. + </notification> + <notification label="Reiniciar Região" name="HelpRegionRestart"> + Reinicia o processo do servidor rodando esta região, após um aviso de dois minutos. Todos os residentes nesta região serão desconectados. A região salvará seus dados e deverá retornar em até 90 segundos. - <notification - - name="GestureMissing" - > -O Gesto [NAME] não se encontra na base de dados - </notification> +Reiniciar a região não consertará a maioria dos problemas de performance, e deveria ser utilizada somente quando solicitado. + </notification> + <notification label="Altura da água" name="HelpRegionWaterHeight"> + Esta é a altura em metros onde a água aparece. Caso este ajuste seja diferente de 20 e você tenha águas adjacentes ao limite do seu terreno ou águas continentais, haverá uma abertura visÃvel. - <notification - - name="UnableToLoadGesture" - > -ImpossÃvel de carregar o gesto [NAME]. -Por favor, tente novamente. - </notification> +Padrão: 20 + </notification> + <notification label="Limite do aumento" name="HelpRegionTerrainRaise"> + Esta é a distância em metros que os donos de lotes podem elevar o terreno, a partir da altura nivelada do terreno. - <notification - - name="LandmarkMissing" - > -O landmark foi perdido na base de dados - </notification> +Padrão: 4 + </notification> + <notification label="Limite mais baixo" name="HelpRegionTerrainLower"> + Esta é a distância em metros que os donos de lotes podem abaixar o terreno, a partir da altura nivelada do terreno. - <notification - - name="UnableToLoadLandmark" - > -ImpossÃvel carregar o landmark. Por favor, tente de novo. - </notification> +Padrão: -4 + </notification> + <notification label="Carregar terreno RAW" name="HelpRegionUploadRaw"> + Este botão faz upload de um arquivo .RAW para a região em que você está. +O arquivo precisa conter as dimensões/número de canais corretos: RGB, 256x256 e 13 canais. A melhor forma de criar um arquivo da região é baixando o arquivo .RAW existente. Um bom primeiro passo seria modificar o primeiro canal (altura da região) e fazer o upload do arquivo. - <notification - - name="CapsKeyOn" - > -Seu botão CAPS LOCK está ativado. -Como isto afeta a senha digitada, você provavelmente desejará desativá-lo. - </notification> +O upload pode levar certa de 45 segundos. Note que fazer upload do arquivo da região *não* moverá os objetos que estão na região, apenas o terreno e as permissões associadas a ele. Isso pode fazer com que alguns objetos fiquem debaixo da terra. - <notification - - name="NotecardMissing" - > -Notecard foi perdido no banco de dados. - </notification> +Para mais informações sobre edição dos campos de altura da região, consulte a ajuda F1. + </notification> + <notification label="Baixar RAW de terreno" name="HelpRegionDownloadRaw"> + Este botão faz download de um arquivo contendo dados de altura do campo, dimensões do lote, status de lotes à venda e algumas permissões de lote para este terreno. Ao abrir o arquivo em programas como o Photoshop, você precisa especificar as dimensões do documento, que são: RGB, 256x256 com 13 canais. Este arquivo de terras não pode ser aberto de outra forma. - <notification - - name="NotecardNoPermissions" - > -Permissões insuficientes para visualizar o notecard - </notification> +Para mais informações sobre edição dos campos de altura da região, consulte a Ajuda F1. + </notification> + <notification label="Usar Sol da Propriedade" name="HelpRegionUseEstateSun"> + Esta caixa de opção faz com que a posição do sol nesta região seja a mesma que no resto da região. - <notification - - name="RezItemNoPermissions" - > -Sem permissões suficientes para criar objetos. - </notification> +Padrão: ligada + </notification> + <notification label="Sol fixo" name="HelpRegionFixedSun"> + Esta caixa de opção ajusta a posição do sol no equalizador de fuso e interrompe o movimento do sol. - <notification - - name="UnableToLoadNotecard" - > -ImpossÃvel carregar o notecard. -Por favor, tente novamente. - </notification> +Padrão: desligada + </notification> + <notification label="Nivelar Terreno" name="HelpRegionBakeTerrain"> + Este botão salva a forma atual do terreno como o novo padrão para a região. Uma vez nivelado, o terreno pode reverter à forma que foi salva, sempre que você ou outros utilizarem a ferramenta 'Revert' na edição de terreno. O terreno nivelado é também o ponto médio entre os limites de elevação e redução de terreno. + </notification> + <notification label="Gerentes da Propriedade" name="HelpEstateEstateManager"> + Um gerente da propriedade é um residente a quem você delegou o controle das configurações da região. Ele pode alterar qualquer configuração da região, com exceção de elevar, abaixar ou nivelar o terreno. Em particular, eles podem permitir ou banir residentes da sua propriedade. Gerentes da propriedade só podem ser adicionados ou removidos pelo dono da propriedade. - <notification - - name="ScriptMissing" - > -O script foi perdido no banco de dados. - </notification> +Um gerente não pode adicionar ou remover outro gerente. Por favor, escolha somente residentes em quem você confia para serem gerentes da propriedade, pois você poderá ser responsabilizado pelas ações deles. + </notification> + <notification label="Usar hora Global" name="HelpEstateUseGlobalTime"> + Esta caixa de opção faz com que o Sol em sua propriedade siga a mesma posição do Sol nas propriedades da 'mainland' do Linden Lab. - <notification - - name="ScriptNoPermissions" - > -Permissões insuficientes para visualizar o script. - </notification> +Padrão: ligado + </notification> + <notification label="Sol fixo" name="HelpEstateFixedSun"> + Esta caixa de opção ajusta a posição do sol no equalizador de fuso e interrompe o movimento do sol. + </notification> + <notification label="Acesso público" name="HelpEstateExternallyVisible"> + Esta caixa de verificação define se os Residentes que estão em outras propriedades podem entrar nesta, sem estar em uma lista de acesso. - <notification - - name="UnableToLoadScript" - > -ImpossÃvel carregar o script. Por favor, tente novamente. - </notification> +Padrão: on + </notification> + <notification label="Permitir Teletransporte direto" name="HelpEstateAllowDirectTeleport"> + Quando marcada, permite que os residentes se teletransportem diretamente para qualquer ponto da sua propriedade. Quando desmarcada, os residentes serão teleportados para o telehub mais próximo. - <notification - - name="IncompleteInventory" - > -Os conteúdos completos que vocë está oferecendo, não estão ainda disponÃveis localmente. Por favor, tente oferecê-los novamente em um minuto. - </notification> +Padrão: desmarcada + </notification> + <notification label="Permitir acesso" name="HelpEstateAllowResident"> + Acesso a esta propriedade estará limitado aos Residentes listados aqui e em quaisquer grupos abaixo. +Esta definição está disponÃvel apenas quando o Acesso Público estiver desmarcado. + </notification> + <notification label="Permitir acesso de grupo" name="HelpEstateAllowGroup"> + Acesso a esta propriedade estará limitado aos grupos listados aqui e a quaisquer Residentes acima. +Esta definição está disponÃvel apenas quando o Acesso Público estiver desmarcado. + </notification> + <notification label="Endereço de Email do Abuso" name="HelpEstateAbuseEmailAddress"> + Configurar isto para um endereço de email válido, fará com que relatos de abuso nesta propriedade sejam enviados para esse endereço. +DefinÃ-lo em branco fará com que os relatórios de abuso sejam enviados apenas para a Linden Lab. + </notification> + <notification label="Negar acesso" name="HelpEstateBanResident"> + Residentes desta lista estão proibidos de acessar a sua propriedade, independentemente de outras configurações. + </notification> + <notification label="Permitir Conversa por Voz" name="HelpEstateVoiceChat"> + Lotes nesta propriedade têm permissão para ter seus canais de voz próprios, nos quais os residentes podem ouvir e falar com os outros residentes próximos. - <notification - - name="CannotModifyProtectedCategories" - > -Você não pode modificar categorias protegidas. - </notification> +Padrão: desligado + </notification> + <notification label="Discordância de Versão de Voz" name="VoiceVersionMismatch"> + Esta versão do Second Life não é compatÃvel com as caracterÃsticas do Canal de Voz desta região. Para que a Conversa por Voz funcione corretamente, você precisará atualizar o Second Life. + </notification> + <notification label="Corretor da Propriedade" name="HelpEstateCovenant"> + Definir um corretor da propriedade lhe permite vender lotes nesta propriedade. Se um corretor não for definido, você não pode vender terras. O cartão do seu corretor pode ficar vazio se você não desejar aplicar quaisquer regras ou avisar os compradores sobre qualquer coisa em relação ao lote antes da compra. - <notification - - name="CannotRemoveProtectedCategories" - > -Você não pode remover categorias protegidas. - </notification> +Um corretor pode ser usado para comunicar regras, orientações, informações culturais ou simplesmente suas expectativas quanto ao futuro comprador. Isto pode incluir zoneamento, regulamentos para construções, opções de pagamento ou qualquer outra informação que você julgar importante que o novo proprietário veja e concorde antes da compra. - <notification - - name="OfferedCard" - > -Você ofereceu um cartão de visita a [FIRST] [LAST] - </notification> +O comprador precisa concordar com o corretor marcando a caixa de verificação antes de concluir a compra. Corretores são sempre visÃveis na caixa de diálogo 'Sobre a Terra' para todos os lotes que têm corretores definidos. + </notification> + <notification label="ImpossÃvel Comprar Objetos" name="BuyObjectOneOwner"> + Não é possÃvel comprar objetos de diferentes proprietários ao mesmo tempo. +Por favor, selecione apenas um objeto e tente novamente. + </notification> + <notification label="ImpossÃvel Comprar Conteúdos" name="BuyContentsOneOnly"> + Não é possÃvel comprar os conteúdos de mais de um objeto ao mesmo tempo. +Por favor, selecione apenas um objeto e tente novamente. + </notification> + <notification label="ImpossÃvel Comprar Conteúdos" name="BuyContentsOneOwner"> + Não é possÃvel comprar objetos de diferentes proprietários ao mesmo tempo. +Por favor, selecione apenas um objeto e tente novamente. + </notification> + <notification name="BuyOriginal"> + Comprar o objeto original de [OWNER] por L$[PRICE]? +Você se tornará o proprietário deste objeto. +Você poderá: + Modificar: [MODIFYPERM] + Copiar: [COPYPERM] + Revender ou Doar: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Comprar"/> + </notification> + <notification name="BuyOriginalNoOwner"> + Comprar o objeto original por L$[PRICE]? +Você se tornará o proprietário deste objeto. +Você poderá: + Modificar: [MODIFYPERM] + Copiar: [COPYPERM] + Revender ou Doar: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Comprar"/> + </notification> + <notification name="BuyCopy"> + Comprar uma cópia de [OWNER] por L$[PRICE]? +O objeto será copiado para o seu inventário. +Você poderá: + Modificar: [MODIFYPERM] + Copiar: [COPYPERM] + Revender ou Doar: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Comprar"/> + </notification> + <notification name="BuyCopyNoOwner"> + Comprar uma cópia por L$[PRICE]? +O objeto será copiado para o seu inventário. +Você poderá: + Modificar: [MODIFYPERM] + Copiar: [COPYPERM] + Revender ou Doar: [RESELLPERM] + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Comprar"/> + </notification> + <notification name="BuyContents"> + Comprar conteúdo de [OWNER] por L$[PRICE]? +Eles serão copiados para o seu inventário. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Comprar"/> + </notification> + <notification name="BuyContentsNoOwner"> + Comprar conteúdo por L$[PRICE]? +Eles serão copiados para o seu inventário. + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Comprar"/> + </notification> + <notification name="ConfirmPurchase"> + Esta transação fará: +[ACTION] - <notification - - name="UnableToBuyWhileDownloading" - > -ImpossÃvel comprar o objeto enquanto ele está sendo carregado. -Por favor, tente novamente. - </notification> +Você tem certeza de que deseja prosseguir com esta compra? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Confirmar"/> + </notification> + <notification name="ConfirmPurchasePassword" type="password"> + Esta transação fará: +[ACTION] - <notification - - name="UnableToLinkWhileDownloading" - > -ImpossÃvel unir o objeto enquanto ele está sendo carregado. -Por favor, tente novamente. - </notification> +Você tem certeza de que deseja prosseguir com esta compra? +Por favor, re-insira sua senha e clique 'Confirmar Compra'. + <form name="form"> + <input name="message" type="password"/> + <button name="ConfirmPurchase" text="Confirmar Compra"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="SetPickLocation"> + Nota: Você atualizou a localidade desta pick mas os outros detalhes ficarão com seus valores originais. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="MoveInventoryFromObject"> + Você selecionou itens 'no copy' do inventário. +Estes itens serão movidos para o seu inventário, não copiados. - <notification - - name="CannotBuyObjectsFromDifferentOwners" - > -ImpossÃvel comprar objetos de diferentes compradores ao mesmo tempo. -Por favor, compre apenas um objeto. - </notification> +Mover os itens do inventário? + <usetemplate ignoretext="Quando estiver movendo inventário não copiável a partir de objetos." name="okcancelignore" notext="Não mover" yestext="Mover"/> + </notification> + <notification name="MoveInventoryFromScriptedObject"> + Você selecionou itens de inventário não copiáveis. +Estes itens serão movidos para seu inventário, não copiados. Pelo fato de o objeto ter scripts, mover estes itens ao inventário pode provocar um mal funcionamento do script. - <notification - - name="ObjectNotForSale" - > -Este objeto não está a venda. - </notification> +Mover para o inventário o(s) item(s)? + <usetemplate ignoretext="Quando movendo objetos com scripts não copiáveis ao inventário" name="okcancelignore" notext="Não mover" yestext="Mover"/> + </notification> + <notification name="ClickActionNotPayable"> + Aviso: A ação de Pagar ao Objeto com clique foi definida, mas funcionará apenas se for adicionado um script com o evento money(). + <form name="form"> + <ignore name="ignore" text="Quando Definindo 'Pagar' em objetos sem eventos money()"/> + </form> + </notification> + <notification name="OpenObjectCannotCopy"> + Não há itens neste objeto que você está autorizado a copiar. + </notification> + <notification name="WebLaunchAccountHistory"> + Ir para o site do Second Life para visualizar o histórico de sua conta? + <usetemplate ignoretext="Ao abrir a página web de histórico de conta" name="okcancelignore" notext="Cancelar" yestext="Ir para a página"/> + </notification> + <notification name="ClickOpenF1Help"> + Visitar o website de Suporte do Second Life? + <usetemplate ignoretext="Quando visitando o website de Suporte do Second Life" name="okcancelignore" notext="Cancelar" yestext="Ir"/> + </notification> + <notification name="ConfirmQuit"> + Tem certeza que deseja sair? + <usetemplate ignoretext="Quando Saindo do Second Life." name="okcancelignore" notext="Continuar" yestext="Sair"/> + </notification> + <notification name="HelpReportAbuseEmailLL"> + Use esta ferramenta para reportar violações aos Termos de Serviço e aos Padrões da Comunidade. Veja: - <notification - - name="EnteringGodMode" - > -Entrando em god mode, nÃvel [LEVEL] - </notification> +http://secondlife.com/corporate/tos.php +http://secondlife.com/corporate/cs.php - <notification - - name="LeavingGodMode" - > -Saindo do god mode, nÃvel [LEVEL] - </notification> +Todos os abusos aos Termos de Serviço e aos Padrões da Comunidade reportados, são investigados e resolvidos. Você pode ver a resolução do incidente na Reportagem de Incidentes em: - <notification - - name="CopyFailed" - > -A cópia falhou porque você não tem permissão para copiar. - </notification> +http://secondlife.com/support/incidentreport.php + </notification> + <notification name="HelpReportAbuseEmailEO"> + IMPORTANTE: Esta reportagem irá para o dono da região em que você se encontra atualmente e não para a Linden Lab. - <notification - - name="InventoryAccepted" - > -[NAME] aceitou sua oferta de inventário. - </notification> +Como um serviço aos residentes e visitantes, o dono da região em que você se encontra foi eleito para receber e resolver todas as reportagens originadas nesta região. A Linden Lab não irá investigar reportagens que você envia desta localidade. - <notification - - name="InventoryDeclined" - > -[NAME] rejeitou sua oferta de inventário. - </notification> +O dono da região resolverá as reportagens baseado nas regras locais desta região, como definido na Declaração da propriedade. +(Veja as declarações indo ao menu Mundo e selecionando Sobre a Terra.) - <notification - - name="ObjectMessage" - > -[NAME]: [MESSAGE] - </notification> +A resolução desta reportagem se aplica apenas a esta região; o acesso de Residentes à s outras áreas do Second Life não será afetado pelas decisões desta reportagem. +Apenas a Linden Lab pode restringir acesso a todo o Second Life. + </notification> + <notification name="HelpReportBug"> + Use esta ferramenta para reportar *apenas* caracterÃsticas técnicas que não atuem como descrito ou esperado. +Por favor, forneça tantos detalhes quanto possÃvel. +Você pode responder ao e-mail de resposta automática para adicionar mais detalhes à sua reportagem. - <notification - - name="CallingCardAccepted" - > -Seu cartão de visita foi aceito - </notification> +Todas as reportagens de bugs são investigadas e avaliadas. +Nenhum e-mail de resposta será enviado. - <notification - - name="CallingCardDeclined" - > -Seu cartão de visita foi negado. - </notification> +Se você estiver tendo uma dificuldade técnica, por favor contate o Suporte em: +http://secondlife.com/community/support.php - <notification - - name="TeleportToLandmark" - > -Agora que você chegou à mainland, você pode se teletransportar para locais como '[NAME]' clicando no botão de Inventário, no canto direito inferior de sua tela, e selecionando a pasta Landmarks. -Dê um duplo-clique na landmark e clique Teletransportar para viajar para o local desejado. - </notification> +Nota: reportagens incompletas não serão investigadas + </notification> + <notification name="HelpReportAbuseSelectCategory"> + Por favor, selecione uma categoria para a reportagem deste abuso. +A seleção de uma categoria nos ajuda a arquivar e processar as reportagens de abuso. + </notification> + <notification name="HelpReportBugSelectCategory"> + Por favor, selecione uma categoria para este bug. +A seleção de uma categoria nos ajuda a arquivar e processar as reportagens de bugs. + </notification> + <notification name="HelpReportAbuseAbuserNameEmpty"> + Por favor, entre com o nome do perturbador. +Entrando com um valor preciso, nos ajuda a arquivar e processar as reportagens de abuso. + </notification> + <notification name="HelpReportAbuseAbuserLocationEmpty"> + Por favor, entre com a localidade aonde o abuso aconteceu. +Entrando com um valor preciso, nos ajuda a arquivar e processar as reportagens de abuso. + </notification> + <notification name="HelpReportAbuseSummaryEmpty"> + Por favor, digite um resumo de como ocorreu o abuso. +Fazer um resumo detalhado nos ajuda a arquivar e processar as reportagens de abuso. + </notification> + <notification name="HelpReportBugSummaryEmpty"> + Por favor, digite um resumo do bug. Realizar um resumo detalhado nos ajuda a arquivar e processar as reportagens de abuso. + </notification> + <notification name="HelpReportAbuseDetailsEmpty"> + Por favor, digite uma descrição detalhada do abuso que ocorreu. +Seja tão especÃfico quanto você puder, incluindo nomes e os detalhes do incidente que está denunciando. +Fazer uma descrição precisa nos ajuda a arquivar e processar as reportagens de abuso. + </notification> + <notification name="HelpReportBugDetailsEmpty"> + Por favor, digite uma descrição detalhada do bug. +Seja tão especÃfico quanto você puder, incluindo as etapas para reproduzir o bug, se possÃvel. +Fazer uma descrição precisa nos ajuda a arquivar e processar os relatórios de bugs. + </notification> + <notification name="HelpReportAbuseContainsCopyright"> + Caro Residente, - <notification - - name="TeleportToPerson" - > -Agora que você chegou à mainland, você pode contatar residentes como '[NAME]' clicando no botão de Inventário, canto direito inferior de sua tela, e selecionando a pasta Cartões de Visita. -Dê um duplo-clique num cartão de visita e em Mensagem Instantânea, digite sua mensagem. - </notification> +Você parece estar relatando violação de propriedade intelectual. Por favor, certifique-se de que está relatando corretamente: - <notification - - name="CantSelectLandFromMultipleRegions" - > -ImpossÃvel selecionar terra nas fronteiras do servidor. Tente selecionar um pedaço menor de terra. - </notification> +(1) O Processo de abuso. Você pode apresentar um relatório de abuso se você acredita que um Residente está infringindo o sistema de permissões do Second Life, por exemplo, utilizando ferramentas CopyBot para copiar ou similar, para violar os direitos de propriedade intelectual. A Equipe de Abuso investiga e divulga a ação disciplinar adequada para o comportamento que viola o Estatuto da Comunidade do Second Life ou os Termos de Serviço. No entanto, a mesma não controla e não irá responder aos pedidos para remover o conteúdo do mundo Second Life. - <notification - - name="GroupVote" - > -[NAME] propõe que você vote: -[MESSAGE] - <form name="form"> - <button - - name="VoteNow" - text="Vote agora"/> - <button - - name="Later" - text="Depois"/> - </form> - </notification> +(2) O processo de remoção de conteúdo ou DMCA. Para solicitar a remoção de conteúdo do Second Life, você deve enviar uma notificação válida de infração, conforme previsto em nossa PolÃtica de DMCA em http://secondlife.com/corporate/dmca.php. - <notification - - name="SystemMessage" - > -[MESSAGE] - </notification> +Se você ainda deseja prosseguir com o processo de abuso, por favor, feche esta janela e termine de enviar seu relatório. Pode ser necessário selecionar a categoria especÃfica 'CopyBot Infração de Permissões'. - <notification - - name="EventNotification" - > -Notificação de evento: +Obrigado, +Linden Lab + </notification> + <notification name="FailedRequirementsCheck"> + Não foram encontrados os seguintes componentes requeridos de [FLOATER]: +[COMPONENTS] + </notification> + <notification label="Substituir anexo existente" name="ReplaceAttachment"> + Já existe um objeto anexado a este ponto do seu corpo. +Você deseja substituÃ-lo pelo objeto selecionado? + <form name="form"> + <ignore name="ignore" save_option="true" text="Ao substituir os anexos existentes"/> + <button name="Yes" text="Sim"/> + <button name="No" text="Não"/> + </form> + </notification> + <notification label="Aviso de Modo Ocupado" name="BusyModePay"> + Você está no modo Ocupado, o que significa que você não receberá quaisquer itens oferecidos em troca deste pagamento. -[NAME] -[DATE] - <form name="form"> - <button - - name="Teleport" - text="Teletransporte"/> - <button - - name="Description" - text="Descrição"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> +Você gostaria de deixar o modo Ocupado antes de completar esta transação? + <form name="form"> + <ignore name="ignore" save_option="true" text="Ao pagar uma pessoa ou objeto no modo ocupado"/> + <button name="Yes" text="Sim"/> + <button name="No" text="Não"/> + </form> + </notification> + <notification name="ConfirmEmptyTrash"> + Tem certeza de que deseja remover permanentemente o conteúdo da lixeira de seu inventário? + <usetemplate ignoretext="Ao esvaziar a pasta da lixeira no seu inventário" name="okcancelignore" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmClearBrowserCache"> + Você tem certeza que deseja limpar o cache do seu navegador? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="ConfirmClearCookies"> + Você tem certeza de que deseja limpar os cookies? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Sim"/> + </notification> + <notification name="ConfirmClearMediaUrlList"> + Você tem certeza de que deseja limpar toda sua lista de URLs? + <usetemplate name="okcancelbuttons" notext="Cancelar" yestext="Sim"/> + </notification> + <notification name="ConfirmEmptyLostAndFound"> + Deseja realmente remover permanentemente o conteúdo da pasta achados e perdidos? + <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: + [SLURL] - <notification - - name="TransferObjectsHighlighted" - > -Todos os objetos deste terreno que serão transferidos ao seu comprador, estão realçados agora. - <form name="form"> - <button - - name="Done" - text="Feito"/> - </form> - </notification> +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. + <form name="form"> + <ignore name="ignore" text="Ao copiar a SURL para o seu clipboard"/> + </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: - <notification - - name="DeactivatedGesturesTrigger" - > -Gestos desativados com o mesmo comando: -[NAMES] - </notification> +Sombreamento: Ativar ou desativar vários tipos de sobreadores de pixel. + +Detalhes de Reflexão: Define os tipos de objetos que a água pode refletir. + +Renderização de Avatar: Define opções que afetam a forma como o cliente renderizará os avatares. - <notification - - name="NoQuickTime" - > -O software QuickTime da Apple parece não estar instalado em seu sistema. -Se você deseja ver fluxo de mÃdia em terrenos que aceitem isso, você deverá ir ao site do QickTime (http://www.apple.com/quicktime) e instalar o player do QuickTime. - </notification> +Alcance: Afeta a distância do seu ponto de vista que os objetos serão renderizados na cena. - <notification - - name="OwnedObjectsReturned" - > -Os objetos que lhe pertencem no lote selecionado do terreno, voltaram ao seu inventário. - </notification> +Número máximo de partÃculas: Define o número máximo de partÃculas que será capaz de ver na sua tela de uma só vez. - <notification - - name="OtherObjectsReturned" - > -Os objetos no lote selecionado de terra que pertence a [FIRST] [LAST], voltaram ao seu inventário. - </notification> +Qualidade de Pós-Processamento: Define a resolução com a qual o brilho será renderizado. - <notification - - name="OtherObjectsReturned2" - > -Os objetos no lote de terra selecionado que pertence ao residente '[NAME]', voltaram aos seus donos. - </notification> +Detalhes de malha: Ajusta a quantidade de detalhes ou número de triângulos utilizados na renderização de certos objetos. Um valor mais alto leva mais tempo para renderizar, mas torna esses objetos mais detalhados. - <notification - - name="GroupObjectsReturned" - > -Os objetos no lote selecionado de terreno compartilhado pelo grupo [GROUPNAME], voltaram para os inventários de seus donos. -Objetos trasnferÃveis dados ao grupo, voltaram aos seus donos anteriores. -Objetos não transferÃveis dados ao grupo foram deletados. - </notification> +Detalhe de Iluminação: Seleciona os tipos de luzes que você gostaria de renderizar. - <notification - - name="UnOwnedObjectsReturned" - > -Os objetos no lote selecionado que NÃO são seus, voltaram aos seus donos. - </notification> +Detalhe de Terreno: Ajusta a quantidade de detalhes que você gostaria de ver para a textura do terreno. + </notification> + <notification name="WLSavePresetAlert"> + Você deseja substituir a pré-configuração salva? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="WLDeletePresetAlert"> + Você deseja apagar [SKY]? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="WLNoEditDefault"> + Você não pode editar ou excluir um padrão predefinido. + </notification> + <notification name="WLMissingSky"> + Este arquivo de ciclo de dia se refere a um arquivo de céu faltando: [SKY]. + </notification> + <notification name="PPSaveEffectAlert"> + Existe efeito de Pós-Processamento. Você deseja substituÃ-lo? + <usetemplate name="okcancelbuttons" notext="Não" yestext="Sim"/> + </notification> + <notification name="HelpEditSky"> + Editar os controles graduais do WindLight para configurar e salvar um conjunto de céus. + </notification> + <notification name="HelpEditDayCycle"> + Definir quais céus colocar durante todo o dia. + </notification> + <notification name="EnvSettingsHelpButton"> + Essas configurações ajustam a forma como o ambiente parece localmente no seu computador. Sua placa de vÃdeo precisa suportar o sombreador atmosférico, a fim de ter acesso a todas as definições. - <notification - - name="NotSafe" - > -Esta terra permite que você sofra ataques. -Você pode ser ferido aqui. Se você morrer, você será teletransportado à sua posição inicial. - </notification> +Ajuste o controle gradual "Hora do Dia" para alterar a fase do dia localmente no visualizador. - <notification - - name="NoFly" - > -Este terreno tem a opção Voar desabilitada. -Ou seja, você não pode voar aqui. - </notification> +Ajuste o controle gradual de "Cobertura das nuvens" para controlar quantas nuvens cobrem o céu. - <notification - - name="PushRestricted" - > -Esta terra é “Não empurreâ€. -Você não pode empurrar os outros, a não ser que seja o proprietário da terra. - </notification> +Pegue uma cor na paleta de cores de "Cor da Ãgua" para mudar a cor desta. - <notification - - name="NoVoice" - > -O uso de voz está desabilitado nesta terra. - </notification> +Ajuste o controle gradual de "Névoa de Ãgua" para controlar o quão densa é a névoa dentro da água. - <notification - - name="NoBuild" - > -Este terreno tem a opção de construir desabilitada, ou seja, você não pode criar objetos aqui. - </notification> +Clique "Usar Horário da Propriedade" para redefinir a hora do dia para o horário atual do dia da região e permanecer atrelado a ela. - <notification - - name="ScriptsStopped" - > -Um administrador não permitiu scripts temporariamente nesta região. - </notification> +Clique "Céu Avançado " para abrir um editor com configurações mais avançadas para o céu. - <notification - - name="ScriptsNotRunning" - > -Esta região não roda nenhum script. - </notification> +Clique "Ãgua Avançada " para abrir um editor com configurações mais avançadas para a água. + </notification> + <notification name="HelpDayCycle"> + O editor de Ciclo do Dia dá a você o controle do céu durante um ciclo de dia/noite do Second Life. Este é o ciclo usado pelo controle gradual da hora do dia do editor de ambiente básico. - <notification - - name="NoOutsideScripts" - > -Neste terreno, nenhum script funcionará, a não ser os scripts do próprio dono da terra. - </notification> +O editor do ciclo de dia trabalha configurando quadros-chave. Estes são pontos (representados pelos Ãcones cinza no gráfico de horário) que possuem um pré-ajuste de céu associado a eles. Conforme o dia passa, o céu do Windlight " anima " a interpolação entre esses quadros-chave. - <notification - - name="ClaimPublicLand" - > -Pode apenas reclamar terreno público na região em que você está. - </notification> +A seta amarela acima da linha de tempo representa a sua vista atual, baseada no horário do dia. Clique e arraste para ver como o seu dia será animado. Você pode adicionar ou deletar os quadros-chave pressionando os botões Adicionar Chave e Deletar chave ao lado direito da linha de tempo. - <notification - - name="ObjectGiveItem" - > -Um objeto nomeado [OBJECTFROMNAME] do dono [FIRST] [LAST] deu a você [OBJECTTYPE] nomeado '[OBJECTNAME]'. - <form name="form"> - <button - - name="Keep" - text="Segure"/> - <button - - name="Discard" - text="Descarte"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> +Você pode configurar a posição do tempo de um quadro-chave arrastando-o pela linha do tempo, ou configurando manualmente no quadro de configurações do seu quadro-chave. Será possÃvel a você associar o seu quadro-chave a este respectivo padrão WindLight. - <notification - - name="ObjectGiveItemUnknownUser" - > -Um objeto nomeado [OBJECTFROMNAME], de dono desconhecido, deu a você um [OBJECTTYPE] nomeado [OBJECTNAME]. - <form name="form"> - <button - - name="Keep" - text="Segure"/> - <button - - name="Discard" - text="Descarte"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> +A duração do ciclo determina a duração geral do "dia". Configurá-la para um valor baixo (por exmplo, 2 min.) quer dizer que a linha do tempo de 24 horas será animada completamente em apenas dois minutos reais! Assim que estiver satisfeito com a linha do tempo e o ciclo dos quadros-chave, use os botões Play e Stop para uma prévia de como ficará o resultado. Lembre-se, você também pode utilizar a seta amarela indicadora do tempo acima da linha do tempo para ver o ciclo animado interativamente. Usando o botão do tempo da popriedade irá sincronizar a duração do seu dia ao ciclo diário da propriedade. - <notification - - name="UserGiveItem" - > -[NAME]deu a voce um [OBJECTTYPE] nomeado '[OBJECTNAME]'. - <form name="form"> - <button - - name="Keep" - text="Mantenha"/> - <button - - name="Discard" - text="Descarte"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> +Assim que estiver satisfeito com o seu ciclo diário, você pode salvá-lo ou carregá-lo através dos botões Salvar Dia Teste e Carregar Dia Teste. Note que, por enquanto, nós permitimos apenas um Ciclo de dia. + </notification> + <notification name="HelpBlueHorizon"> + Use os cursores Vermelho/Verde/Azul ( Red/Green/Blue -RGB) para ajustar as cores do céu. Você também pode usar o controle de Intensidade (I) para mover os três controles RGB simultaneamente. + </notification> + <notification name="HelpHazeHorizon"> + Haze Horizon é um dos parâmetros mais úteis para ajuste global de exposição de luz na cena. Ele é eficaz para simular diversas configurações de exposição, tais como configurações para super-exposição do sol e escuros halos de Iris. + </notification> + <notification name="HelpBlueDensity"> + A densidade global azul afeta a saturação da cor do céu e nevoeiro. Se você mover o controle gradual de intensidade (I) para a direita, as cores vão se tornar mais brilhantes e vibrantes. Se você movê-lo totalmente para a esquerda, as cores perdem intensidade e cor, eventualmente chegando a preto e branco. Se pretende um ajuste fino do equilÃbrio de cor do céu, você pode controlar os diversos elementos da saturação, utilizando os controles graduais para vermelho / verde / azul (RGB). + </notification> + <notification name="HelpHazeDensity"> + Densidade de Poeira controla o nÃvel de fumaça, poeira cinza na atmosfera. Eficaz para simular cenas com altos nÃveis de poeira e poluentes. É também efetivo em simular névoa e nevoeiro. + </notification> + <notification name="HelpDensityMult"> + O Multiplicador de Densidade pode ser usado para afetar a densidade atmosférica global. Com definições mais baixas, ele cria uma sensação de "ar rarefeito" e em definições mais altas, ele cria um efeito mais denso, mais esfumaçado. + </notification> + <notification name="HelpDistanceMult"> + Ajusta como a distância no WindLight é percebida. Um valor zero efetivamente desativa a influência do WindLight sobre terrenos e objetos. Valores superiores a 1 simulam os efeitos atmosféricos mais espessos a maiores distâncias. + </notification> + <notification name="HelpMaxAltitude"> + Max Altitude ajusta os cálculos de performance de altitude do WindLight, quando computa sua iluminação atmosférica. Em perÃodos vespertinos do dia, é útil para ajustar a "profundidade" de como o pôr-do-sol aparece. + </notification> + <notification name="HelpSunlightColor"> + Ajustar a cor e intensidade da luz direta na cena. + </notification> + <notification name="HelpSunAmbient"> + Ajusta a cor e a intensidade da luz ambiente atmosférica na cena. + </notification> + <notification name="HelpSunGlow"> + O controle gradual de Tamanho controla o tamanho do sol. +O controle gradual de Foco controla o quanto o sol aparecerá desfocado no céu. + </notification> + <notification name="HelpSceneGamma"> + Ajusta a distribuição na tela de luz e escuridão. + </notification> + <notification name="HelpStarBrightness"> + Ajusta o brilho das estrelas no céu. + </notification> + <notification name="HelpTimeOfDay"> + Controla a localização do sol no céu. Semelhante a elevação. + </notification> + <notification name="HelpEastAngle"> + Controla a localização do sol no céu. +Similar ao azimute. + </notification> + <notification name="HelpCloudColor"> + Edita as cores das nuvens, É normalmente recomendado manter o tom esbranquiçado, mas hey! Você pode se divertir se desejar. + </notification> + <notification name="HelpCloudDetail"> + Controla os detalhes da camada de imagem superior na imagem de nuvem principal. X e Y controla sua posição. D (Densidade) controla o quão cheio ou estratificada as nuvens devem aparecer. + </notification> + <notification name="HelpCloudDensity"> + Permite que você controle a posição das nuvens com os cursores X e Y e a densidade deles com o cursor D. + </notification> + <notification name="HelpCloudCoverage"> + Controla o quanto as nuvens cobrem o céu. + </notification> + <notification name="HelpCloudScale"> + Controla o dimensionamento da imagem de nuvens na cúpula celeste. + </notification> + <notification name="HelpCloudScrollX"> + Controla a velocidade das nuvens que se movem na direção X. + </notification> + <notification name="HelpCloudScrollY"> + Controla a velocidade que as núvens se movem na direção Y. + </notification> + <notification name="HelpClassicClouds"> + Marque esta check box para permitir a reprodução das nuvens clássicas mais velhas do Second Life, além das nuvens WindLight. + </notification> + <notification name="HelpWaterFogColor"> + Escolhe a cor da neblina subaquática. + </notification> + <notification name="HelpWaterFogDensity"> + Controla a densidade da neblina da água e a distância de visibilidade debaixo d'água. + </notification> + <notification name="HelpUnderWaterFogMod"> + Modifica o efeito do expoente de densidade de Neblina para controlar até onde você pode ver quando o seu avatar está imerso. + </notification> + <notification name="HelpWaterGlow"> + Controla o quanto a superfÃcie da água deve brilhar. + </notification> + <notification name="HelpWaterNormalScale"> + Controla o escalonamento das três marolas que compõem a água. + </notification> + <notification name="HelpWaterFresnelScale"> + Controla o quanto de luz será refletido por ângulos diferentes. + </notification> + <notification name="HelpWaterFresnelOffset"> + Controla o quanto da intensidade da luz é refletida. + </notification> + <notification name="HelpWaterScaleAbove"> + Controla o quanto de luz será refratado olhando acima da superfÃcie da água. + </notification> + <notification name="HelpWaterScaleBelow"> + Controla o quanto de luz sera refratado visto debaixo da superfÃcie da água. + </notification> + <notification name="HelpWaterBlurMultiplier"> + Controla como ondas e reflexos são misturados. + </notification> + <notification name="HelpWaterNormalMap"> + Controla o mapeamento normal em todos os nÃveis da água para determinar reflexões / refrações. + </notification> + <notification name="HelpWaterWave1"> + Controla aonde e com que velocidade a versão em escala maior do mapa normal se move nas direções X e Y . + </notification> + <notification name="HelpWaterWave2"> + Controla onde e a velocidade com que o mapa normal em escala menor se move nas direções X e Y. + </notification> + <notification name="NewSkyPreset"> + Me dê o nome para o novo céu. + <form name="form"> + <input name="message" type="text"> + Novo padrão + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="ExistsSkyPresetAlert"> + Este padrão já existe! + </notification> + <notification name="NewWaterPreset"> + Dê o nome para o novo padrão de água. + <form name="form"> + <input name="message" type="text"> + Nova Apresentação + </input> + <button name="OK" text="OK"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="ExistsWaterPresetAlert"> + Este padrão já existe! + </notification> + <notification name="WaterNoEditDefault"> + Você não pode editar ou apagar um padrão predefinido. + </notification> + <notification name="ChatterBoxSessionStartError"> + Não foi possÃvel iniciar uma nova sessão bate-papo com [RECIPIENT]. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ChatterBoxSessionEventError"> + [EVENT] +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="ForceCloseChatterBoxSession"> + Sua sessão de bate-papo com [NAME] tem que fechar. +[REASON] + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="Cannot_Purchase_an_Attachment"> + Os itens não podem ser comprados enquanto forem parte de um anexo. + </notification> + <notification label="Sobre o pedido de Permissão de Débito" name="DebitPermissionDetails"> + Conceder esse pedido dá permissão ao script para tirar Linden dólares (L$) de sua conta. Para revogar esta permissão, o proprietário do objeto deve excluir o objeto ou resetar os scripts dele. + <usetemplate name="okbutton" yestext="OK"/> + </notification> + <notification name="AutoWearNewClothing"> + Você gostaria de vestir automaticamente o item de vestuário que você criar? + <usetemplate ignoretext="Automaticamente vestir novo vestuário" name="okcancelignore" notext="Não" yestext="Sim"/> + </notification> + <notification name="NotAgeVerified"> + Você precisa ter a idade verificada para acessar este lote. +Gostaria de visitar o site do Second Life para verificação de idade? - <notification - - name="GodMessage" - > -[NAME] -[MESSAGE] - </notification> +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/verification.php + </url> + <usetemplate ignoretext="Alertar sobre a falta de verificação de idade" name="okcancelignore" notext="Não" yestext="Sim"/> + </notification> + <notification name="Cannot enter parcel: no payment info on file"> + Este lote exige que você tenha informações de pagamento no arquivo antes de poder acessá-lo. +Gostaria de visitar o site do Second Life para configurá-lo? - <notification - - name="JoinGroup" - > +[_URL] + <url name="url" option="0"> + https://secondlife.com/account/ + </url> + <usetemplate ignoretext="Avisar sobre a falta de informação de pagamento." name="okcancelignore" notext="Não" yestext="Sim"/> + </notification> + <notification name="MissingString"> + A sequência [STRING_NAME] está faltando do strings.xml + </notification> + <notification name="SystemMessageTip"> + [MESSAGE] + </notification> + <notification name="Cancelled"> + Cancelado + </notification> + <notification name="CancelledSit"> + Cancelada a ação de sentar + </notification> + <notification name="CancelledAttach"> + Cancelado Anexar + </notification> + <notification name="ReplacedMissingWearable"> + Substituindo partes de roupa/corpo perdidas com o padrão + </notification> + <notification name="GroupNotice"> + Assunto: [SUBJECT], Mensagem: [MESSAGE] + </notification> + <notification name="FriendOnline"> + [FIRST] [LAST] está Online + </notification> + <notification name="FriendOffline"> + [FIRST] [LAST] está Offline + </notification> + <notification name="AddSelfFriend"> + Você não pode adicionar a si mesmo como amigo + </notification> + <notification name="UploadingAuctionSnapshot"> + Fazendo o upload das fotos do site da web e do mundo... +(Leva cerca de 5 minutos) + </notification> + <notification name="UploadPayment"> + Você paga L$[AMOUNT] para fazer o upload. + </notification> + <notification name="UploadWebSnapshotDone"> + ConcluÃdo o upload da foto do site da web + </notification> + <notification name="UploadSnapshotDone"> + O upload da foto foi realizado + </notification> + <notification name="TerrainDownloaded"> + Feito o download de Terrain.raw + </notification> + <notification name="GestureMissing"> + O Gesto [NAME] não se encontra na base de dados + </notification> + <notification name="UnableToLoadGesture"> + ImpossÃvel de carregar o gesto [NAME]. +Por favor, tente novamente. + </notification> + <notification name="LandmarkMissing"> + O landmark foi perdido na base de dados + </notification> + <notification name="UnableToLoadLandmark"> + ImpossÃvel carregar o landmark. Por favor, tente de novo. + </notification> + <notification name="CapsKeyOn"> + Seu botão CAPS LOCK está ativado. +Como isto afeta a senha digitada, você provavelmente desejará desativá-lo. + </notification> + <notification name="NotecardMissing"> + Notecard foi perdido no banco de dados. + </notification> + <notification name="NotecardNoPermissions"> + Permissões insuficientes para visualizar o notecard + </notification> + <notification name="RezItemNoPermissions"> + Sem permissões suficientes para criar objetos. + </notification> + <notification name="UnableToLoadNotecard"> + Não é possÃvel carregar notas neste momento. + </notification> + <notification name="ScriptMissing"> + O script foi perdido no banco de dados. + </notification> + <notification name="ScriptNoPermissions"> + Permissões insuficientes para visualizar o script. + </notification> + <notification name="UnableToLoadScript"> + ImpossÃvel carregar o script. Por favor, tente novamente. + </notification> + <notification name="IncompleteInventory"> + Os conteúdos completos que vocë está oferecendo, não estão ainda disponÃveis localmente. Por favor, tente oferecê-los novamente em um minuto. + </notification> + <notification name="CannotModifyProtectedCategories"> + Você não pode modificar categorias protegidas. + </notification> + <notification name="CannotRemoveProtectedCategories"> + Você não pode remover categorias protegidas. + </notification> + <notification name="OfferedCard"> + Você ofereceu um cartão de visita a [FIRST] [LAST] + </notification> + <notification name="UnableToBuyWhileDownloading"> + ImpossÃvel comprar o objeto enquanto ele está sendo carregado. +Por favor, tente novamente. + </notification> + <notification name="UnableToLinkWhileDownloading"> + ImpossÃvel unir o objeto enquanto ele está sendo carregado. +Por favor, tente novamente. + </notification> + <notification name="CannotBuyObjectsFromDifferentOwners"> + ImpossÃvel comprar objetos de diferentes compradores ao mesmo tempo. +Por favor, compre apenas um objeto. + </notification> + <notification name="ObjectNotForSale"> + Este objeto não está a venda. + </notification> + <notification name="EnteringGodMode"> + Entrando em god mode, nÃvel [LEVEL] + </notification> + <notification name="LeavingGodMode"> + Saindo do god mode, nÃvel [LEVEL] + </notification> + <notification name="CopyFailed"> + A cópia falhou porque você não tem permissão para copiar. + </notification> + <notification name="InventoryAccepted"> + [NAME] aceitou sua oferta de inventário. + </notification> + <notification name="InventoryDeclined"> + [NAME] rejeitou sua oferta de inventário. + </notification> + <notification name="ObjectMessage"> + [NAME]: [MESSAGE] + </notification> + <notification name="CallingCardAccepted"> + Seu cartão de visita foi aceito + </notification> + <notification name="CallingCardDeclined"> + Seu cartão de visita foi negado. + </notification> + <notification name="TeleportToLandmark"> + Agora que você chegou à mainland, você pode se teletransportar para locais como '[NAME]' clicando no botão de Inventário, no canto direito inferior de sua tela, e selecionando a pasta Landmarks. +Dê um duplo-clique na landmark e clique Teletransportar para viajar para o local desejado. + </notification> + <notification name="TeleportToPerson"> + Agora que você chegou à mainland, você pode contatar residentes como '[NAME]' clicando no botão de Inventário, canto direito inferior de sua tela, e selecionando a pasta Cartões de Visita. +Dê um duplo-clique num cartão de visita e em Mensagem Instantânea, digite sua mensagem. + </notification> + <notification name="CantSelectLandFromMultipleRegions"> + ImpossÃvel selecionar terra nas fronteiras do servidor. Tente selecionar um pedaço menor de terra. + </notification> + <notification name="SearchWordBanned"> + Alguns termos da sua busca foram excluÃdos, devido à s restrições de conteúdo, como explicado nos Padrões da Comunidade. + </notification> + <notification name="NoContentToSearch"> + Por favor, selecione ao menos um tipo de conteúdo para a busca (PG, Mature ou Adult). + </notification> + <notification name="GroupVote"> + [NAME] propõe que você vote: [MESSAGE] - <form name="form"> - <button - - name="Join" - text="Entre"/> - <button - - name="Decline" - text="Saia"/> - <button - - name="Info" - text="Informações"/> - </form> - </notification> - - <notification - - name="TeleportOffered" - > -[NAME] ofereceu um teletransporte para seu local: + <form name="form"> + <button name="VoteNow" text="Vote agora"/> + <button name="Later" text="Depois"/> + </form> + </notification> + <notification name="SystemMessage"> + [MESSAGE] + </notification> + <notification name="EventNotification"> + Notificação de evento: +[NAME] +[DATE] + <form name="form"> + <button name="Teleport" text="Teletransporte"/> + <button name="Description" text="Descrição"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="TransferObjectsHighlighted"> + Todos os objetos deste terreno que serão transferidos ao seu comprador, estão realçados agora. + <form name="form"> + <button name="Done" text="Feito"/> + </form> + </notification> + <notification name="DeactivatedGesturesTrigger"> + Gestos desativados com o mesmo comando: +[NAMES] + </notification> + <notification name="NoQuickTime"> + O software QuickTime da Apple parece não estar instalado em seu sistema. +Se você deseja ver fluxo de mÃdia em terrenos que aceitem isso, você deverá ir ao site do QickTime (http://www.apple.com/quicktime) e instalar o player do QuickTime. + </notification> + <notification name="OwnedObjectsReturned"> + Os objetos que lhe pertencem no lote selecionado do terreno, voltaram ao seu inventário. + </notification> + <notification name="OtherObjectsReturned"> + Os objetos no lote selecionado de terra que pertence a [FIRST] [LAST], voltaram ao seu inventário. + </notification> + <notification name="OtherObjectsReturned2"> + Os objetos no lote de terra selecionado que pertence ao residente '[NAME]', voltaram aos seus donos. + </notification> + <notification name="GroupObjectsReturned"> + Os objetos no lote selecionado de terreno compartilhado pelo grupo [GROUPNAME], voltaram para os inventários de seus donos. +Objetos trasnferÃveis dados ao grupo, voltaram aos seus donos anteriores. +Objetos não transferÃveis dados ao grupo foram deletados. + </notification> + <notification name="UnOwnedObjectsReturned"> + Os objetos no lote selecionado que NÃO são seus, voltaram aos seus donos. + </notification> + <notification name="NotSafe"> + Esta terra permite que você sofra ataques. +Você pode ser ferido aqui. Se você morrer, você será teletransportado à sua posição inicial. + </notification> + <notification name="NoFly"> + Este terreno tem a opção Voar desabilitada. +Ou seja, você não pode voar aqui. + </notification> + <notification name="PushRestricted"> + Esta terra é “Não empurreâ€. +Você não pode empurrar os outros, a não ser que seja o proprietário da terra. + </notification> + <notification name="NoVoice"> + O uso de voz está desabilitado nesta terra. + </notification> + <notification name="NoBuild"> + Este terreno tem a opção de construir desabilitada, ou seja, você não pode criar objetos aqui. + </notification> + <notification name="ScriptsStopped"> + Um administrador não permitiu scripts temporariamente nesta região. + </notification> + <notification name="ScriptsNotRunning"> + Esta região não roda nenhum script. + </notification> + <notification name="NoOutsideScripts"> + Neste terreno, nenhum script funcionará, a não ser os scripts do próprio dono da terra. + </notification> + <notification name="ClaimPublicLand"> + Pode apenas reclamar terreno público na região em que você está. + </notification> + <notification name="RegionTPAccessBlocked"> + Você não é permitido na Região devido à sua Classificação de maturidade. Você precisa validar sua idade e/ou instalar o último Visualizador. + +Por favor, vá ao Banco de Conhecimento para detalhes sobre o acesso de áreas com esta Classificação de maturidade. + </notification> + <notification name="URBannedFromRegion"> + Você está banido da região. + </notification> + <notification name="NoTeenGridAccess"> + Sua conta não pode conectar a esta região da grade teen. + </notification> + <notification name="NoHelpIslandTP"> + Você não pode se tele-transportar de volta à Ilha de Ajuda. +Vá para a Ilha de Ajuda Pública para repetir este tutorial. + </notification> + <notification name="ImproperPaymentStatus"> + Você não tem o status de pagamento adequado para entrar nesta região. + </notification> + <notification name="MustGetAgeRgion"> + Você precisa ter sua idade verificada para entrar nesta região. + </notification> + <notification name="MustGetAgeParcel"> + Você precisa ter a idade verificada para entrar neste lote. + </notification> + <notification name="NoDestRegion"> + Nenhuma região de destino encontrada. + </notification> + <notification name="NotAllowedInDest"> + Você não é permitido nesse destino. + </notification> + <notification name="RegionParcelBan"> + Não consegue atravessar região com lote banido. Tente outra forma. + </notification> + <notification name="TelehubRedirect"> + Você foi redirecionado para um telehub. + </notification> + <notification name="CouldntTPCloser"> + Não conseguiu tele-transportar próximo ao destino. + </notification> + <notification name="TPCancelled"> + Tele-transporte cancelado. + </notification> + <notification name="FullRegionTryAgain"> + A região que você está tentando entrar está no momento cheia. +Por favor, tente novamente em alguns instantes. + </notification> + <notification name="GeneralFailure"> + Falha geral. + </notification> + <notification name="RoutedWrongRegion"> + Direcionado para a região errada. Por favor, tente novamente. + </notification> + <notification name="NoValidAgentID"> + ID do agente inválido. + </notification> + <notification name="NoValidSession"> + ID de sessão inválido. + </notification> + <notification name="NoValidCircuit"> + Código de circuito inválido. + </notification> + <notification name="NoValidTimestamp"> + Hora inválida. + </notification> + <notification name="NoPendingConnection"> + ImpossÃvel criar a conexão pendente. + </notification> + <notification name="InternalUsherError"> + Um erro interno ocorreu enquanto se tentava direcioná-lo para seu destino de Tele-transporte. O Second Life pode estar passando por problemas no serviço, neste momento. + </notification> + <notification name="NoGoodTPDestination"> + ImpossÃvel encontrar um bom destino para tele-transporte nesta região. + </notification> + <notification name="InternalErrorRegionResolver"> + Um erro interno ocorreu enquanto tentava-se definir as coordenadas globais da sua solicitação de tele-transporte. O Second Life pode estar passando por problemas no serviço, no momento. + </notification> + <notification name="NoValidLanding"> + Não se achou um ponto de aterrissagem válido. + </notification> + <notification name="NoValidParcel"> + Nenhum lote válido foi encontrado. + </notification> + <notification name="ObjectGiveItem"> + Um objeto nomeado [OBJECTFROMNAME] do dono [FIRST] [LAST] deu a você [OBJECTTYPE] nomeado '[OBJECTNAME]'. + <form name="form"> + <button name="Keep" text="Segure"/> + <button name="Discard" text="Descarte"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="ObjectGiveItemUnknownUser"> + Um objeto nomeado [OBJECTFROMNAME], de dono desconhecido, deu a você um [OBJECTTYPE] nomeado [OBJECTNAME]. + <form name="form"> + <button name="Keep" text="Segure"/> + <button name="Discard" text="Descarte"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="UserGiveItem"> + [NAME]deu a voce um [OBJECTTYPE] nomeado '[OBJECTNAME]'. + <form name="form"> + <button name="Keep" text="Mantenha"/> + <button name="Discard" text="Descarte"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="GodMessage"> + [NAME] [MESSAGE] - <form name="form"> - <button - - name="Teleport" - text="Teletransporte"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> + </notification> + <notification name="JoinGroup"> + [MESSAGE] + <form name="form"> + <button name="Join" text="Entre"/> + <button name="Decline" text="Saia"/> + <button name="Info" text="Informações"/> + </form> + </notification> + <notification name="TeleportOffered"> + [NAME] ofereceu um teletransporte para seu local: - <notification - - name="GotoURL" - > [MESSAGE] + <form name="form"> + <button name="Teleport" text="Teletransporte"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="GotoURL"> + [MESSAGE] [URL] - <form name="form"> - <button - - name="Later" - text="Depois"/> - <button - - name="GoNow..." - text="Vá agora"/> - </form> - </notification> - - <notification - - name="OfferFriendship" - > -[NAME] está lhe oferecendo sua amizade + <form name="form"> + <button name="Later" text="Depois"/> + <button name="GoNow..." text="Vá agora"/> + </form> + </notification> + <notification name="OfferFriendship"> + [NAME] está lhe oferecendo sua amizade [MESSAGE] (Por definição vocês serão capazes de ver um ao outro online) - <form name="form"> - <button - - name="Accept" - text="Aceitar"/> - <button - - name="Decline" - text="Recusar"/> - </form> - </notification> - - <notification - - name="OfferFriendshipNoMessage" - > -[NAME] está lhe oferecendo sua amizade. + <form name="form"> + <button name="Accept" text="Aceitar"/> + <button name="Decline" text="Recusar"/> + </form> + </notification> + <notification name="OfferFriendshipNoMessage"> + [NAME] está lhe oferecendo sua amizade. (Por definição vocês serão capazes de ver um ao outro online) - <form name="form"> - <button - - name="Accept" - text="Aceitar"/> - <button - - name="Decline" - text="Recusar"/> - </form> - </notification> - - <notification - - name="FriendshipAccepted" - > -[NAME] aceitou seu convite de amizade. - </notification> - - <notification - - name="FriendshipDeclined" - > -[NAME] recusou seu convite de amizade - </notification> - - <notification - - name="OfferCallingCard" - > -[FIRST] [LAST] está oferecendo seu cartão de visita. + <form name="form"> + <button name="Accept" text="Aceitar"/> + <button name="Decline" text="Recusar"/> + </form> + </notification> + <notification name="FriendshipAccepted"> + [NAME] aceitou seu convite de amizade. + </notification> + <notification name="FriendshipDeclined"> + [NAME] recusou seu convite de amizade + </notification> + <notification name="OfferCallingCard"> + [FIRST] [LAST] está oferecendo seu cartão de visita. Isto adicionará uma anotação em seu inventário, de modo que você possa mandar rapidamente uma IM para este residente. - <form name="form"> - <button - - name="Accept" - text="Aceitar"/> - <button - - name="Decline" - text="Recusar"/> - </form> - </notification> - - <notification - - name="RegionRestartMinutes" - - - > -A região será reiniciada em [MINUTES] minutos. + <form name="form"> + <button name="Accept" text="Aceitar"/> + <button name="Decline" text="Recusar"/> + </form> + </notification> + <notification name="RegionRestartMinutes"> + A região será reiniciada em [MINUTES] minutos. Se permanecer nesta região, você será desconectado. - </notification> - - <notification - - name="RegionRestartSeconds" - - - > -Região será reiniciada em [SECONDS] segundos. + </notification> + <notification name="RegionRestartSeconds"> + Região será reiniciada em [SECONDS] segundos. Se permanecer nesta região, você será desconectado. - </notification> - - <notification - - name="LoadWebPage" - > -Carregar página da web [URL]? + </notification> + <notification name="LoadWebPage"> + Carregar página da web [URL]? [MESSAGE] Do objeto: [OBJECTNAME], dono: [NAME]? - <form name="form"> - <button - - name="Gotopage" - text="Vá para a página"/> - <button - - name="Cancel" - text="Cancelar"/> - </form> - </notification> - - <notification - - name="FailedToFindWearableUnnamed" - > -Falhou ao procurar [TYPE] no banco de dados. - </notification> - - <notification - - name="FailedToFindWearable" - > -Falhou ao procurar [TYPE] nomeado [DESC] no banco de dados. - </notification> - - <notification - - name="ScriptQuestion" - > -'[OBJECTNAME]', um objeto pertencente a '[NAME]', gostaria de: + <form name="form"> + <button name="Gotopage" text="Carregar"/> + <button name="Cancel" text="Cancelar"/> + </form> + </notification> + <notification name="FailedToFindWearableUnnamed"> + Falhou ao procurar [TYPE] no banco de dados. + </notification> + <notification name="FailedToFindWearable"> + Falhou ao procurar [TYPE] nomeado [DESC] no banco de dados. + </notification> + <notification name="InvalidWearable"> + O item que você está tentando vestir usa uma caracterÃstica que seu Visualizador não lê. Por favor, atualize sua versão do Second Life para vestir este item. + </notification> + <notification name="ScriptQuestion"> + '[OBJECTNAME]', um objeto pertencente a '[NAME]', gostaria de: [QUESTIONS] Está OK? - <form name="form"> - <button - - name="Yes" - text="Sim"/> - <button - - name="No" - text="Não"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> - - <notification - - name="ScriptQuestionCaution" - > -'[OBJECTNAME]', um objeto de '[NAME]', gostaria de: + <form name="form"> + <button name="Yes" text="Sim"/> + <button name="No" text="Não"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="ScriptQuestionCaution"> + '[OBJECTNAME]', um objeto de '[NAME]', gostaria de: [QUESTIONS] Se você não confia neste objeto ou em seu criador, você deveria negar o pedido. Para informações adicionais clique no botão Detalhes. Autorizar este pedido? - <form name="form"> - <button - - name="Grant" - text="Autorizar"/> - <button - - name="Deny" - text="Negar"/> - <button - - name="Details" - text="Detalhes..."/> - </form> - </notification> - - <notification - - name="ScriptDialog" - > -[FIRST] [LAST]'s '[TITLE]' + <form name="form"> + <button name="Grant" text="Autorizar"/> + <button name="Deny" text="Negar"/> + <button name="Details" text="Detalhes..."/> + </form> + </notification> + <notification name="ScriptDialog"> + [FIRST] [LAST]'s '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="ScriptDialogGroup" - > -[GROUPNAME]'s '[TITLE]' + <form name="form"> + <button name="Ignore" text="Ignorar"/> + </form> + </notification> + <notification name="ScriptDialogGroup"> + [GROUPNAME]'s '[TITLE]' [MESSAGE] - <form name="form"> - <button - - name="Ignore" - text="Ignorar"/> - </form> - </notification> - - <notification - - name="FirstBalanceIncrease" - > -Você recebeu uma quantia de L$[AMOUNT]. + <form name="form"> + <button name="Ignore" text="Ignorar"/> + </form> + </notification> + <notification name="FirstBalanceIncrease"> + Você recebeu uma quantia de L$[AMOUNT]. Objetos e outros usuários podem dar L$ a você. Seu saldo é mostrado no canto superior direito da tela. - </notification> - - <notification - - name="FirstBalanceDecrease" - > -Você pagou L$[AMOUNT]. + </notification> + <notification name="FirstBalanceDecrease"> + Você pagou L$[AMOUNT]. O seu balanço de dinheiro está sendo mostrado no canto superior direito da tela. - </notification> - - <notification - - name="FirstSit" - > -Você está sentado. + </notification> + <notification name="FirstSit"> + Você está sentado. Use as setas (ou AWSD) para mudar a visão. Clique em 'Levantar' para levantar. - </notification> - - <notification - - name="FirstMap" - > -Clique e arraste para movimentar o mapa. + </notification> + <notification name="FirstMap"> + Clique e arraste para movimentar o mapa. Dê um duplo clique para teletransportar-se. Use os controles à direita para achar coisas e mostrar fundos diferentes. - </notification> - - <notification - - name="FirstBuild" - > -Você pode construir novos objetos em algumas áreas do [SECOND_LIFE]. + </notification> + <notification name="FirstBuild"> + Você pode construir novos objetos em algumas áreas do [SECOND_LIFE]. Use as ferramentas acima, à esquerda para construir e tente manter apertadas as teclas Ctrl ou Alt para mudar rapidamente as ferramentas. Aperte ESC para parar de construir. - </notification> - - <notification - - name="FirstLeftClickNoHit" - > -Clicando com esquerdo, você interage com os objetos especiais. + </notification> + <notification name="FirstLeftClickNoHit"> + Clicando com esquerdo, você interage com os objetos especiais. Se o ponteiro do mouse mudar a uma mão, você pode interagir com o objeto. Clique com o direito que será mostrado sempre um menu das ações que você pode fazer. - </notification> - - <notification - - name="FirstTeleport" - > -Esta região não permite teletransporte ponto-a-ponto. Assim, você foi teletransportado para o telehub mais próximo. + </notification> + <notification name="FirstTeleport"> + Esta região não permite teletransporte ponto-a-ponto. Assim, você foi teletransportado para o telehub mais próximo. Seu destino está assinalado com um farol alto. Siga a flecha vermelha até o farol, ou clique nela para apagar o farol. - </notification> - - <notification - - name="FirstOverrideKeys" - > -Suas chaves do movimento estão sendo seguras agora por um objeto. + </notification> + <notification name="FirstOverrideKeys"> + Suas chaves do movimento estão sendo seguras agora por um objeto. Tente as teclas de setas ou AWSD para ver o que elas fazem. Alguns objetos (como armas) requerem que você passe para mouselook para usá-los. Pressione 'M' para fazer isto. - </notification> - - <notification - - name="FirstAppearance" - > -Você está editando sua aparência. + </notification> + <notification name="FirstAppearance"> + Você está editando sua aparência. Para girar e ver em zoom, use as teclas de setas. Quando terminar, aperte 'Salvar Tudo' para salvar sua aparência e sair. Você pode editar sua aparência quantas vezes quiser. - </notification> - - <notification - - name="FirstInventory" - > -Este é o seu inventário, que contém objetos, notecards, roupas e outras coisas suas. + </notification> + <notification name="FirstInventory"> + Este é o seu inventário, que contém objetos, notecards, roupas e outras coisas suas. * Para vestir um objeto ou uma pasta completa, arraste-o para si mesmo(a). * Para trzer um objeto ao mundo, arraste-o ao chão. * Para ler um notecard, dê um duplo-click nele. - </notification> - - <notification - - name="FirstSandbox" - > -Esta é a região conhecida como sandbox. + </notification> + <notification name="FirstSandbox"> + Esta é a região conhecida como sandbox. Os objetos que você constrói aqui podem ser deletados depois que você deixa a área. As sandboxes são limpas de forma periódica. Por favor, veja a informação no alto da tela, próxima ao nome da região. As regiões de sandbox não são comuns e são marcadas com sÃmbolos. - </notification> - - <notification - - name="FirstFlexible" - > -Este objeto tem a propriedade flexÃvel. + </notification> + <notification name="FirstFlexible"> + Este objeto tem a propriedade flexÃvel. Objetos flexÃveis não podem ser fÃsicos e devem ser fantasmas até que a caixa de verificação seja desmarcada. - </notification> - - <notification - - name="FirstDebugMenus" - > -Você ativou o menu Avançado. + </notification> + <notification name="FirstDebugMenus"> + Você ativou o menu Avançado. Este menu contém funcionalidades úteis para desenvolvedores debugarem o Second Life. Para mostrar esse menu no Windows pressione Ctrl-Alt-D. No Mac pressione Cmd-Opt-Shift-D. - </notification> - - <notification - - name="FirstSculptedPrim" - > -Você está editando uma primitiva esculpida. + </notification> + <notification name="FirstSculptedPrim"> + Você está editando uma primitiva esculpida. Primitivas esculpidas requerem uma textura especial para especificar suas formas. Você encontrará exemplos dessas texturas na Biblioteca do Inventário. - </notification> - - <notification - - name="FirstMedia" - > -Você começou a tocar uma mÃdia. MÃdias podem ser autorizadas a iniciar automaticamente se você assim escolher na janela de Preferências, sob Ãudio/VÃdeo. Atente para o risco de segurança que pode haver ao acessar websites de mÃdia que você não confia. - </notification> - - <notification - - name="MaxListSelectMessage" - > -Você pode selecionar até [MAX_SELECT] itens desta lista. - </notification> - - <notification - - name="VoiceInviteP2P" - > -[NAME] está lhe convidando para uma conversa com voz. + </notification> + <notification name="FirstMedia"> + Você começou a tocar uma mÃdia. MÃdias podem ser autorizadas a iniciar automaticamente se você assim escolher na janela de Preferências, sob Ãudio/VÃdeo. Atente para o risco de segurança que pode haver ao acessar websites de mÃdia que você não confia. + </notification> + <notification name="MaxListSelectMessage"> + Você pode selecionar até [MAX_SELECT] itens desta lista. + </notification> + <notification name="VoiceInviteP2P"> + [NAME] está lhe convidando para uma conversa com voz. Clique Aceitar para atender, ou Recusar para recusar o convite. Clique Mudo para calar quem está chamando. - <form name="form"> - <button - - name="Accept" - text="Aceitar"/> - <button - - name="Decline" - text="Recusar"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> - - <notification - - name="AutoUnmuteByIM" - > -[FIRST] [LAST] recebeu uma Mensagem Instantânea sua e automaticamente não está mais no modo mudo. - </notification> - - <notification - - name="AutoUnmuteByMoney" - > -[FIRST] [LAST] recebeu pagamento seu e automaticamente não está mais no modo mudo. - </notification> - - <notification - - name="AutoUnmuteByInventory" - > -[FIRST] [LAST] recebeu inventário seu e automaticamente não está mais mudo. - </notification> - - <notification - - name="VoiceInviteGroup" - > -[NAME] juntou-se a uma conversa com voz do grupo [GROUP]. + <form name="form"> + <button name="Accept" text="Aceitar"/> + <button name="Decline" text="Recusar"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="AutoUnmuteByIM"> + [FIRST] [LAST] recebeu uma Mensagem Instantânea sua e automaticamente não está mais no modo mudo. + </notification> + <notification name="AutoUnmuteByMoney"> + [FIRST] [LAST] recebeu pagamento seu e automaticamente não está mais no modo mudo. + </notification> + <notification name="AutoUnmuteByInventory"> + [FIRST] [LAST] recebeu inventário seu e automaticamente não está mais mudo. + </notification> + <notification name="VoiceInviteGroup"> + [NAME] juntou-se a uma conversa com voz do grupo [GROUP]. Clique Aceitar para atender, ou Recusar para recusar o convite. Clique Mudo para calar quem está chamando. - <form name="form"> - <button - - name="Accept" - text="Aceitar"/> - <button - - name="Decline" - text="Recusar"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> - - <notification - - name="VoiceInviteAdHoc" - > -[NAME] juntou-se a uma chamada de Conferência com voz... + <form name="form"> + <button name="Accept" text="Aceitar"/> + <button name="Decline" text="Recusar"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="VoiceInviteAdHoc"> + [NAME] juntou-se a uma chamada de Conferência com voz... Clique Aceitar para juntar-se à chamada ou Recusar para recusar o convite. Clique Mudo para calar este usuário. - <form name="form"> - <button - - name="Accept" - text="Aceitar"/> - <button - - name="Decline" - text="Recusar"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> - - <notification - - name="InviteAdHoc" - > -[NAME] está lhe convidando para uma conversa em conferência... + <form name="form"> + <button name="Accept" text="Aceitar"/> + <button name="Decline" text="Recusar"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="InviteAdHoc"> + [NAME] está lhe convidando para uma conversa em conferência... Clique Aceitar para se juntar à conversa, ou Recusar para recusar o convite. Clique Mudo para calar este usuário. - <form name="form"> - <button - - name="Accept" - text="Aceitar"/> - <button - - name="Decline" - text="Recusar"/> - <button - - name="Mute" - text="Mudo"/> - </form> - </notification> - - <notification - - name="VoiceChannelFull" - > -A chamada de voz a qual você está tentando juntar-se, [VOICE_CHANNEL_NAME], atingiu sua máxima capacidade. Favor tentar novamente mais tarde. - </notification> - - <notification - - name="ProximalVoiceChannelFull" - > -Desculpe-nos. Esta área atingiu seu limite de capacidade para conversas com voz. Favor tentar usar voz em outra área. - </notification> - - <notification - - name="VoiceChannelDisconnected" - > -Você foi desconectado de [VOICE_CHANNEL_NAME]. Voce será reconectado agora à Conversa com voz local. - </notification> - - <notification - - name="VoiceChannelDisconnectedP2P" - > -[VOICE_CHANNEL_NAME] desligou a chamada. Voce será reconectado agora à Conversa com voz local. - </notification> - - <notification - - name="P2PCallDeclined" - > -[VOICE_CHANNEL_NAME] recusou sua chamada. Voce será reconectado agora à Conversa com voz local. - </notification> - - <notification - - name="P2PCallNoAnswer" - > -[VOICE_CHANNEL_NAME] não está disponÃvel para aceitar sua chamada. Voce será reconectado agora à Conversa com voz local. - </notification> - - <notification - - name="VoiceChannelJoinFailed" - > -Falha na conexão com [VOICE_CHANNEL_NAME], tente novamente mais tarde. Voce será reconectado agora à Conversa com voz local. - </notification> - - <notification - - name="VoiceLoginRetry" - > -Estamos criando uma canal de voz para você. Isto pode levar até um minuto. - </notification> - - <notification - - name="Cannot enter parcel: not a group member" - > -Você não pode entrar nessa terra, você não é membro do grupo autorizado. - </notification> - - <notification - - name="Cannot enter parcel: banned" - > -Você não pode entrar nessa terra, você foi banido. - </notification> - - <notification - - name="Cannot enter parcel: not on access list" - > -Você não pode entrar nessa terra, você não está na lista de acesso. - </notification> - - <notification - - name="VoiceNotAllowed" - > -Você não tem permissão para se conectar à conversa com voz de [VOICE_CHANNEL_NAME]. - </notification> - - <notification - - name="VoiceCallGenericError" - > -Ocorreu um erro enquanto você tentava se conectar à conversa de voz de [VOICE_CHANNEL_NAME]. Favor tentar novamente mais tarde. - </notification> - - <notification - - name="ServerVersionChanged" - > -A região em que você entrou está rodando uma versão diferente de simulador. Clique aqui para mais detalhes. - </notification> - - <notification - - name="UnableToOpenCommandURL" - > -A URL que vocÊ clicou não pode ser aberta no navegador web. - </notification> - - <global name="UnsupportedCPU"> -- A velocidade da sua CPU não suporta os requisitos mÃnimos exigidos. - </global> - - <global name="UnsupportedGLRequirements"> -Você não parece ter os requisitos de hardware recomendados para rodar o Second Life. O Second Life exige uma placa gráfica OpenGL que tem apoio a multi- texturas. Se este for o caso, você pode se certificar de que tem os drivers mais recentes para sua placa gráfica, e os patches e pacotes de serviços para seu sistema operacional. + <form name="form"> + <button name="Accept" text="Aceitar"/> + <button name="Decline" text="Recusar"/> + <button name="Mute" text="Mudo"/> + </form> + </notification> + <notification name="VoiceChannelFull"> + A chamada de voz a qual você está tentando juntar-se, [VOICE_CHANNEL_NAME], atingiu sua máxima capacidade. Favor tentar novamente mais tarde. + </notification> + <notification name="ProximalVoiceChannelFull"> + Desculpe-nos. Esta área atingiu seu limite de capacidade para conversas com voz. Favor tentar usar voz em outra área. + </notification> + <notification name="VoiceChannelDisconnected"> + Você foi desconectado de [VOICE_CHANNEL_NAME]. Voce será reconectado agora à Conversa com voz local. + </notification> + <notification name="VoiceChannelDisconnectedP2P"> + [VOICE_CHANNEL_NAME] desligou a chamada. Voce será reconectado agora à Conversa com voz local. + </notification> + <notification name="P2PCallDeclined"> + [VOICE_CHANNEL_NAME] recusou sua chamada. Voce será reconectado agora à Conversa com voz local. + </notification> + <notification name="P2PCallNoAnswer"> + [VOICE_CHANNEL_NAME] não está disponÃvel para aceitar sua chamada. Voce será reconectado agora à Conversa com voz local. + </notification> + <notification name="VoiceChannelJoinFailed"> + Falha na conexão com [VOICE_CHANNEL_NAME], tente novamente mais tarde. Voce será reconectado agora à Conversa com voz local. + </notification> + <notification name="VoiceLoginRetry"> + Estamos criando uma canal de voz para você. Isto pode levar até um minuto. + </notification> + <notification name="Cannot enter parcel: not a group member"> + Você não pode entrar nessa terra, você não é membro do grupo autorizado. + </notification> + <notification name="Cannot enter parcel: banned"> + Você não pode entrar nessa terra, você foi banido. + </notification> + <notification name="Cannot enter parcel: not on access list"> + Você não pode entrar nessa terra, você não está na lista de acesso. + </notification> + <notification name="VoiceNotAllowed"> + Você não tem permissão para se conectar à conversa com voz de [VOICE_CHANNEL_NAME]. + </notification> + <notification name="VoiceCallGenericError"> + Ocorreu um erro enquanto você tentava se conectar à conversa de voz de [VOICE_CHANNEL_NAME]. Favor tentar novamente mais tarde. + </notification> + <notification name="ServerVersionChanged"> + A região em que você entrou está rodando uma versão diferente de simulador. Clique aqui para mais detalhes. + </notification> + <notification name="UnableToOpenCommandURL"> + A URL que vocÊ clicou não pode ser aberta no navegador web. + </notification> + <global name="UnsupportedCPU"> + - A velocidade da sua CPU não suporta os requisitos mÃnimos exigidos. + </global> + <global name="UnsupportedGLRequirements"> + Você não parece ter os requisitos de hardware recomendados para rodar o Second Life. O Second Life exige uma placa gráfica OpenGL que tem apoio a multi- texturas. Se este for o caso, você pode se certificar de que tem os drivers mais recentes para sua placa gráfica, e os patches e pacotes de serviços para seu sistema operacional. Se continuar com problemas, por favor visite: http://www.secondlife.com/support - </global> - - <global name="UnsupportedCPUAmount"> -796 - </global> - - <global name="UnsupportedRAMAmount"> -510 - </global> - - <global name="UnsupportedGPU"> -- A sua placa de vÃdeo não atende os requisitos mÃnimos exigidos. - </global> - - <global name="UnsupportedRAM"> -- A memória do seu sistema não suporta os requisitos mÃnimos exigidos. - </global> - - <global name="PermYes"> -Sim - </global> - - <global name="PermNo"> -Não - </global> + </global> + <global name="UnsupportedCPUAmount"> + 796 + </global> + <global name="UnsupportedRAMAmount"> + 510 + </global> + <global name="UnsupportedGPU"> + - A sua placa de vÃdeo não atende os requisitos mÃnimos exigidos. + </global> + <global name="UnsupportedRAM"> + - A memória do seu sistema não suporta os requisitos mÃnimos exigidos. + </global> + <global name="PermYes"> + Sim + </global> + <global name="PermNo"> + Não + </global> </notifications> - diff --git a/indra/newview/skins/default/xui/pt/panel_group_general.xml b/indra/newview/skins/default/xui/pt/panel_group_general.xml index 9eba44ba61df71a251d96ee7af689b48f34d5f10..f4941eabd9796557214d5433b976b616bff1bad4 100644 --- a/indra/newview/skins/default/xui/pt/panel_group_general.xml +++ b/indra/newview/skins/default/xui/pt/panel_group_general.xml @@ -45,7 +45,17 @@ <check_box label="Adesão aberta" name="open_enrollement" tool_tip="Definir se este grupo permite que novos membros entrem sem serem convidados"/> <check_box label="Taxa de adesão: L$" name="check_enrollment_fee" tool_tip="Define se é necessária uma taxa de adesão para se unir ao grupo."/> <spinner name="spin_enrollment_fee" tool_tip="Os novos membros devem pagar esta taxa para se unir ao grupo quando a Taxa de Adesão está marcada."/> - + <combo_box name="group_mature_check" tool_tip="Define se a informação do seu grupo é considerada mature."> + <combo_item name="select_mature"> + - Selecionar Maturidade - + </combo_item> + <combo_item name="mature"> + Conteúdo Mature + </combo_item> + <combo_item name="pg"> + Conteúdo PG + </combo_item> + </combo_box> <panel name="title_container"> <text name="active_title_label"> Meu tÃtulo ativo diff --git a/indra/newview/skins/default/xui/pt/panel_group_invite.xml b/indra/newview/skins/default/xui/pt/panel_group_invite.xml index f34fa1c60eca78ea5b8e9e64281a808d1b496dca..e9c7bab3dbea24377387b608a5d51d4a1c39a645 100644 --- a/indra/newview/skins/default/xui/pt/panel_group_invite.xml +++ b/indra/newview/skins/default/xui/pt/panel_group_invite.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Convidar um membro" name="invite_panel"> <text name="help_text"> - Você pode selecionar múltiplos residentes -para convidar ao seu grupo. Clique -'Abra o Selecionador de Pessoas' para iniciar. + Voce pode selecionar vários residentes +para convidar ao seu grupo. Clique 'Abrir +Seletor de Residente' para iniciar. </text> - <button label="Abrir selecionador de pessoas" name="add_button" tool_tip=""/> + <button label="Abrir Seletor de Residente" name="add_button" tool_tip=""/> <name_list name="invitee_list" tool_tip="Mantenha apertada a tecla Control e clique nos nomes dos residentes para uma seleção múltipla."/> <button label="Remove Selected from List" name="remove_button" tool_tip="Remove os residentes selecionados acima da lista de convite."/> <text name="role_text"> diff --git a/indra/newview/skins/default/xui/pt/panel_group_land_money.xml b/indra/newview/skins/default/xui/pt/panel_group_land_money.xml index 59a8f8f46d5d9bd1fa771eefca6a01c43090e546..f5e96869d7c1dc4987b1be10c891aa91c7fd1da4 100644 --- a/indra/newview/skins/default/xui/pt/panel_group_land_money.xml +++ b/indra/newview/skins/default/xui/pt/panel_group_land_money.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Terra & L$" name="land_money_tab"> <string name="help_text"> - Lotes pertencentes ao grupo são listados com detalhes de contribuição. Um aviso aparece até que o total de Terras em Uso seja menor ou igual ao Total de Contribuições. As abas de Planejamento, Detalhes e Vendas fornecem informações sobre as finanças do grupo. + Lotes pertencentes ao grupo são listados adiante, com os detalhes de contribuição. Um aviso aparece até que o Total de Terra em Uso seja menor ou igual à Contribuição Total. As abas de Planejamento, Detalhes e Vendas fornecem informações sobre as finanças do grupo. </string> <button label="?" name="help_button"/> <string name="cant_view_group_land_text"> @@ -19,6 +19,7 @@ <scroll_list name="group_parcel_list"> <column label="Nome do Lote" name="name"/> <column label="Região" name="location"/> + <column label="Tipo" name="type"/> <column label="Ãrea" name="area"/> </scroll_list> <button label="Mostrar no Mapa" label_selected="Mostrar no Mapa" name="map_button"/> @@ -56,6 +57,11 @@ Grupo L$ </text> <tab_container name="group_money_tab_container"> + <panel label="Planejamento" name="group_money_planning_tab"> + <text_editor name="group_money_planning_text"> + Computando.. + </text_editor> + </panel> <panel label="Detalhes" name="group_money_details_tab"> <text_editor name="group_money_details_text"> Computando... diff --git a/indra/newview/skins/default/xui/pt/panel_group_roles.xml b/indra/newview/skins/default/xui/pt/panel_group_roles.xml index 5371355e9bc04b1f3ecda96f342be7be9b8a5425..32ed839bd8b6d1fb425b063e0313dfb844649538 100644 --- a/indra/newview/skins/default/xui/pt/panel_group_roles.xml +++ b/indra/newview/skins/default/xui/pt/panel_group_roles.xml @@ -50,7 +50,7 @@ Estes ajustes podem ser facilmente customizados para uma flexibilidade e organiz <column label="Tarifa doada" name="donated"/> <column label="Último login" name="online"/> </name_list> - <button label="Convidar nova pessoa..." name="member_invite"/> + <button label="Convidar Novo Membro ..." name="member_invite"/> <button label="Ejetar do Grupo" name="member_eject"/> <string name="help_text"> Você pode adicionar ou remover as funções designadas aos membros. Selecione vários membros, segurando a tecla Ctrl e clicando em seus nomes. diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_general.xml b/indra/newview/skins/default/xui/pt/panel_preferences_general.xml index 28361d8ddf03ad5f25244f3c06d8cafdbd2c9cec..fde3551b8b6dcdc23c38dad77f43ac1cfc0d7ee4 100644 --- a/indra/newview/skins/default/xui/pt/panel_preferences_general.xml +++ b/indra/newview/skins/default/xui/pt/panel_preferences_general.xml @@ -33,10 +33,28 @@ </text> <check_box label="Usar escala independente da resolução" name="ui_auto_scale"/> <spinner label="Tempo para ficar Ausente:" name="afk_timeout_spinner"/> - <check_box label="Rotacionar Mini-Mapa" name="rotate_mini_map_checkbox"/> <check_box label="Avisar quando receber ou gastar Linden dollars (L$)" name="notify_money_change_checkbox"/> - <check_box label="Usar a paleta de cores padrão do sistema" name="use_system_color_picker_checkbox" tool_tip="Usar a paleta de cores padrão do sistema ao invés de uma feita dentro de Second Life."/> - <check_box label="Mostrar o painel de busca na barra sobreposta" name="show_search_panel" tool_tip="Mostrar o painel de busca embutido."/> + <text name="maturity_desired_label" bottom="-312"> + Classificação: + </text> + <text name="maturity_desired_prompt" bottom="-312"> + Eu quero acessar +conteúdo classificado: + </text> + <combo_box name="maturity_desired_combobox" bottom="-330" left="278"> + <combo_item name="Desired_Adult"> + PG, Mature e Adult + </combo_item> + <combo_item name="Desired_Mature"> + PG e Mature + </combo_item> + <combo_item name="Desired_PG"> + apenas PG + </combo_item> + </combo_box> + <text name="maturity_desired_textbox" bottom="-324" left="278"> + apenas PG + </text> <text length="1" name="start_location_textbox" type="string"> Posição Inicial: </text> @@ -91,15 +109,30 @@ <combo_item name="French"> Français (Francês) - Beta </combo_item> + <combo_item name="Italian"> + Italiano - Beta + </combo_item> <combo_item name="Hungarian"> Magyar (Húngaro) - Beta </combo_item> + <combo_item name="Dutch"> + Nederlands (Holandês) - Beta + </combo_item> <combo_item name="Polish"> Polski (Polonês) - Beta </combo_item> <combo_item name="Portugese"> Português - Beta </combo_item> + <combo_item name="Russian"> + РуÑÑкий (Russo) - Beta + </combo_item> + <combo_item name="Turkish"> + Türkçe (Turco) - Beta + </combo_item> + <combo_item name="Ukrainian"> + УкраїнÑька (Ucraniano) - Beta + </combo_item> <combo_item name="Chinese"> ä¸æ–‡ (简体) (Chinês) - Beta </combo_item> diff --git a/indra/newview/skins/default/xui/pt/panel_region_covenant.xml b/indra/newview/skins/default/xui/pt/panel_region_covenant.xml index f70e975bd43818c585adaf86c13fb7b837bf6b20..6218e4eafbfa06da70c6e02f07561dde1d5abf65 100644 --- a/indra/newview/skins/default/xui/pt/panel_region_covenant.xml +++ b/indra/newview/skins/default/xui/pt/panel_region_covenant.xml @@ -1,50 +1,80 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <panel label="Corretagem" name="Covenant"> + <text name="estate_section_lbl"> + Propriedade: + </text> + <text bottom_delta="-19" name="estate_name_lbl"> + Nome: + </text> + <text name="estate_name_text"> + mainland + </text> + <text bottom_delta="-19" name="estate_owner_lbl"> + Dono: + </text> + <text name="estate_owner_text"> + (nenhum) + </text> + <text name="estate_cov_lbl"> + Corretagem: + </text> + <text name="covenant_timestamp_text"> + Última modificação: Quarta, 31 de dezembro de 1969 à s 16:00:00 horas + </text> + <button label="?" name="covenant_help"/> + <text_editor name="covenant_editor"> + Não há nenhuma regra fornecida para esta Propriedade. + </text_editor> + <button label="Resetar" name="reset_covenant"/> <text bottom="-25" name="covenant_help_text"> - As mudanças nas informações de corretagem serão mostradas em todos os lotes da propriedade. + As mudanças das regras serão mostradas em todos os lotes da propriedade. </text> - <text bottom_delta="-31" name="region_name_lbl"> + <text name="covenant_instructions"> + Arraste e solte um notecard, para mudar as Regras desta Propriedade. + </text> + <text name="region_section_lbl"> Região: </text> + <text bottom_delta="-31" name="region_name_lbl"> + Nome: + </text> <text name="region_name_text"> - (desconhecido) + leyla </text> - <text bottom_delta="-19" name="estate_name_lbl"> - Propriedade: + <text name="region_landtype_lbl"> + Tipo: </text> - <text name="estate_name_text"> - (desconhecido) + <text name="region_landtype_text"> + Continente / Terra </text> - <text name="covenent_instructions"> - Arraste e solte um notecard para alterar a corretagem desta propriedade. + <text name="region_maturity_lbl"> + Classificação: </text> - <button label="?" name="covenant_help"/> - <button label="Resetar" name="reset_covenant"/> - <text bottom_delta="-19" name="estate_owner_lbl"> - Dono da propriedade: + <text name="region_maturity_text"> + Adult </text> - <text name="estate_owner_text"> - (desconhecido) + <text name="resellable_lbl"> + Revender: </text> <text name="resellable_clause"> - Terras compradas nesta região podem ou não, ser revendidas. + Terra nesta região não pode ser revendida. + </text> + <text name="changeable_lbl"> + Subdividir: </text> <text name="changeable_clause"> - Terras compradas nesta região podem ou não, ser unidas ou subdivididas. + Terra nesta região não pode ser unida/sub-dividida. </text> - <text_editor name="covenant_editor"> - Carregando... - </text_editor> - <text name="can_resell"> + <string name="can_resell"> Terras compradas na região poderão ser revendidas. - </text> - <text name="can_not_resell"> + </string> + <string name="can_not_resell"> Terras compradas na região não poderão ser revendidas. - </text> - <text name="can_change"> + </string> + <string name="can_change"> O terreno comprado nesta região pode ser compartilhado ou subdividido. - </text> - <text name="can_not_change"> + </string> + <string name="can_not_change"> O terreno comprado nesta região não pode ser compartilhado ou subdividido. - </text> + </string> </panel> diff --git a/indra/newview/skins/default/xui/pt/panel_region_general.xml b/indra/newview/skins/default/xui/pt/panel_region_general.xml index c04a5f001ee93f1d0e90f677786ea2d223ce59e6..6873d4ac98f75cdab6563eb728f972e3a5382491 100644 --- a/indra/newview/skins/default/xui/pt/panel_region_general.xml +++ b/indra/newview/skins/default/xui/pt/panel_region_general.xml @@ -12,6 +12,12 @@ <text name="version_channel_text"> desconhecido </text> + <text name="region_type_lbl"> + Tipo: + </text> + <text name="region_type"> + desconhecido + </text> <check_box label="Bloquear Terraform" name="block_terraform_check"/> <button label="?" name="terraform_help"/> <check_box label="Bloquear Vôo" name="block_fly_check"/> @@ -31,10 +37,19 @@ <spinner label="Objeto Bonus" name="object_bonus_spin"/> <button label="?" name="object_bonus_help"/> <text label="Maturidade" name="access_text"> - Maturidade: + Classificação: </text> - - + <combo_box label="Mature" name="access_combo"> + <combo_item name="Adult"> + Adult + </combo_item> + <combo_item name="Mature"> + Mature + </combo_item> + <combo_item name="PG"> + PG + </combo_item> + </combo_box> <button label="?" name="access_help"/> <button label="Aplicar" name="apply_btn"/> <button label="Teletransportar um usuário para Casa..." name="kick_btn"/> diff --git a/indra/newview/skins/default/xui/pt/strings.xml b/indra/newview/skins/default/xui/pt/strings.xml index d54b562e5950c55c648f9dacf842a1794b5aab6d..8542fc6c0e7056bf37feec1cc0c388eb45974da3 100644 --- a/indra/newview/skins/default/xui/pt/strings.xml +++ b/indra/newview/skins/default/xui/pt/strings.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!-- This file contains strings that used to be hardcoded in the source. - It is only for those strings which don't belong in a floater. + It is only for those strings which do not belong in a floater. For example, the strings used in avatar chat bubbles, and strings that are returned from one component and may appear in many places--> <strings> @@ -55,9 +55,6 @@ <string name="LoginDownloadingClothing"> Baixando roupas... </string> - <string name="LoginFailedNoNetwork"> - Erro de Rede: Não foi possÃvel estabelecer uma conexão. Por favor, verifique sua conexão de rede. - </string> <string name="AgentLostConnection"> Esta região pode estar passando por problemas. Por favor, verifique sua conexão com a internet. </string> @@ -184,6 +181,9 @@ <string name="AssetErrorCircuitGone"> Circuito caiu </string> + <string name="AssetErrorPriceMismatch"> + Visualizador e servidor não concordam no preço + </string> <string name="AssetErrorUnknownStatus"> Status desconhecido </string> @@ -418,4 +418,69 @@ <string name="shout"> grita: </string> + <string name="SIM_ACCESS_PG"> + PG + </string> + <string name="SIM_ACCESS_MATURE"> + Mature + </string> + <string name="SIM_ACCESS_ADULT"> + Adult + </string> + <string name="SIM_ACCESS_DOWN"> + Desconectado + </string> + <string name="SIM_ACCESS_MIN"> + Desconhecido + </string> + <string name="land_type_unknown"> + (desconhecido) + </string> + <string name="covenant_never_modified">Última modificação: (nunca)</string> + <string name="covenant_modified">Última modificação: </string> + <string name="all_files"> + Todos os Arquivos + </string> + <string name="sound_files"> + Sons + </string> + <string name="animation_files"> + Animações + </string> + <string name="image_files"> + Imagens + </string> + <string name="save_file_verb"> + Salvar + </string> + <string name="load_file_verb"> + Carregar + </string> + <string name="targa_image_files"> + Imagens Targa + </string> + <string name="bitmap_image_files"> + Imagens Bitmap + </string> + <string name="avi_movie_file"> + Arquivo de filme AVI + </string> + <string name="xaf_animation_file"> + Arquivo de Animação XAF + </string> + <string name="xml_file"> + Arquivo XML + </string> + <string name="dot_raw_file"> + Arquivo RAW + </string> + <string name="compressed_image_files"> + Imagens Compactadas + </string> + <string name="load_files"> + Carregar Arquivos + </string> + <string name="choose_the_directory"> + Escolher Diretório + </string> </strings> diff --git a/indra/win_updater/updater.cpp b/indra/win_updater/updater.cpp index e7adaf356bc80aad6b61d9b9607fe04ace24b9c4..3937351d73bde604ff3d81dd74339aa3c5ba4d46 100644 --- a/indra/win_updater/updater.cpp +++ b/indra/win_updater/updater.cpp @@ -42,6 +42,11 @@ #include <windows.h> #include <wininet.h> #include <stdio.h> +#include <string> +#include <iostream> +#include <stdexcept> +#include <sstream> +#include <fstream> #define BUFSIZE 8192 @@ -52,13 +57,16 @@ WCHAR gProgress[256]; char* gUpdateURL = NULL; #if _DEBUG -FILE* logfile = 0; +std::ofstream logfile; +#define DEBUG(expr) logfile << expr << std::endl +#else +#define DEBUG(expr) /**/ #endif -char* wchars_to_utf8chars(WCHAR* in_chars) +char* wchars_to_utf8chars(const WCHAR* in_chars) { int tlen = 0; - WCHAR* twc = in_chars; + const WCHAR* twc = in_chars; while (*twc++ != 0) { tlen++; @@ -81,103 +89,128 @@ char* wchars_to_utf8chars(WCHAR* in_chars) return res; } -int WINAPI get_url_into_file(WCHAR *uri, char *path, int *cancelled) +class Fetcher +{ +public: + Fetcher(const std::wstring& uri) + { + // These actions are broken out as separate methods not because it + // makes the code clearer, but to avoid triggering AntiVir and + // McAfee-GW-Edition virus scanners (DEV-31680). + mInet = openInet(); + mDownload = openUrl(uri); + } + + ~Fetcher() + { + DEBUG("Calling InternetCloseHandle"); + InternetCloseHandle(mDownload); + InternetCloseHandle(mInet); + } + + unsigned long read(char* buffer, size_t bufflen) const; + + DWORD getTotalBytes() const + { + DWORD totalBytes; + DWORD sizeof_total_bytes = sizeof(totalBytes); + HttpQueryInfo(mDownload, HTTP_QUERY_CONTENT_LENGTH | HTTP_QUERY_FLAG_NUMBER, + &totalBytes, &sizeof_total_bytes, NULL); + return totalBytes; + } + + struct InetError: public std::runtime_error + { + InetError(const std::string& what): std::runtime_error(what) {} + }; + +private: + // We test results from a number of different MS functions with different + // return types -- but the common characteristic is that 0 (i.e. (! result)) + // means an error of some kind. + template <typename RESULT> + static RESULT check(const std::string& desc, RESULT result) + { + if (result) + { + // success, show caller + return result; + } + DWORD err = GetLastError(); + std::ostringstream out; + out << desc << " Failed: " << err; + DEBUG(out.str()); + throw InetError(out.str()); + } + + HINTERNET openUrl(const std::wstring& uri) const; + HINTERNET openInet() const; + + HINTERNET mInet, mDownload; +}; + +HINTERNET Fetcher::openInet() const +{ + DEBUG("Calling InternetOpen"); + // Init wininet subsystem + return check("InternetOpen", + InternetOpen(L"LindenUpdater", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0)); +} + +HINTERNET Fetcher::openUrl(const std::wstring& uri) const +{ + DEBUG("Calling InternetOpenUrl: " << wchars_to_utf8chars(uri.c_str())); + return check("InternetOpenUrl", + InternetOpenUrl(mInet, uri.c_str(), NULL, 0, INTERNET_FLAG_NEED_FILE, NULL)); +} + +unsigned long Fetcher::read(char* buffer, size_t bufflen) const +{ + unsigned long bytes_read = 0; + DEBUG("Calling InternetReadFile"); + check("InternetReadFile", + InternetReadFile(mDownload, buffer, bufflen, &bytes_read)); + return bytes_read; +} + +int WINAPI get_url_into_file(const std::wstring& uri, const std::string& path, int *cancelled) { int success = FALSE; *cancelled = FALSE; - HINTERNET hinet, hdownload; - char data[BUFSIZE]; /* Flawfinder: ignore */ - unsigned long bytes_read; - -#if _DEBUG - fprintf(logfile,"Opening '%s'\n",path); - fflush(logfile); -#endif + DEBUG("Opening '" << path << "'"); - FILE* fp = fopen(path, "wb"); /* Flawfinder: ignore */ + FILE* fp = fopen(path.c_str(), "wb"); /* Flawfinder: ignore */ if (!fp) { -#if _DEBUG - fprintf(logfile,"Failed to open '%s'\n",path); - fflush(logfile); -#endif - return success; - } - -#if _DEBUG - fprintf(logfile,"Calling InternetOpen\n"); - fflush(logfile); -#endif - // Init wininet subsystem - hinet = InternetOpen(L"LindenUpdater", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0); - if (hinet == NULL) - { + DEBUG("Failed to open '" << path << "'"); return success; } -#if _DEBUG - fprintf(logfile,"Calling InternetOpenUrl: %s\n",wchars_to_utf8chars(uri)); - fflush(logfile); -#endif - hdownload = InternetOpenUrl(hinet, uri, NULL, 0, INTERNET_FLAG_NEED_FILE, NULL); - if (hdownload == NULL) - { -#if _DEBUG - DWORD err = GetLastError(); - fprintf(logfile,"InternetOpenUrl Failed: %d\n",err); - fflush(logfile); -#endif - return success; - } + // Note, ctor can throw, since it uses check() function. + Fetcher fetcher(uri); + gTotalBytes = fetcher.getTotalBytes(); - DWORD sizeof_total_bytes = sizeof(gTotalBytes); - HttpQueryInfo(hdownload, HTTP_QUERY_CONTENT_LENGTH | HTTP_QUERY_FLAG_NUMBER, &gTotalBytes, &sizeof_total_bytes, NULL); - +/*==========================================================================*| + // nobody uses total_bytes?!? What's this doing here? DWORD total_bytes = 0; - success = InternetQueryDataAvailable(hdownload, &total_bytes, 0, 0); - if (success == FALSE) - { -#if _DEBUG - DWORD err = GetLastError(); - fprintf(logfile,"InternetQueryDataAvailable Failed: %d bytes Err:%d\n",total_bytes,err); - fflush(logfile); -#endif - return success; - } + success = check("InternetQueryDataAvailable", + InternetQueryDataAvailable(hdownload, &total_bytes, 0, 0)); +|*==========================================================================*/ success = FALSE; while(!success && !(*cancelled)) { - MSG msg; - -#if _DEBUG - fprintf(logfile,"Calling InternetReadFile\n"); - fflush(logfile); -#endif - if (!InternetReadFile(hdownload, data, BUFSIZE, &bytes_read)) - { -#if _DEBUG - fprintf(logfile,"InternetReadFile Failed.\n"); - fflush(logfile); -#endif - // ...an error occurred - return FALSE; - } + char data[BUFSIZE]; /* Flawfinder: ignore */ + unsigned long bytes_read = fetcher.read(data, sizeof(data)); -#if _DEBUG if (!bytes_read) { - fprintf(logfile,"InternetReadFile Read 0 bytes.\n"); - fflush(logfile); + DEBUG("InternetReadFile Read " << bytes_read << " bytes."); } -#endif -#if _DEBUG - fprintf(logfile,"Reading Data, bytes_read = %d\n",bytes_read); - fflush(logfile); -#endif + DEBUG("Reading Data, bytes_read = " << bytes_read); if (bytes_read == 0) { @@ -200,25 +233,17 @@ int WINAPI get_url_into_file(WCHAR *uri, char *path, int *cancelled) } -#if _DEBUG - fprintf(logfile,"Calling InvalidateRect\n"); - fflush(logfile); -#endif + DEBUG("Calling InvalidateRect"); // Mark the window as needing redraw (of the whole thing) InvalidateRect(gWindow, NULL, TRUE); // Do the redraw -#if _DEBUG - fprintf(logfile,"Calling UpdateWindow\n"); - fflush(logfile); -#endif + DEBUG("Calling UpdateWindow"); UpdateWindow(gWindow); -#if _DEBUG - fprintf(logfile,"Calling PeekMessage\n"); - fflush(logfile); -#endif + DEBUG("Calling PeekMessage"); + MSG msg; while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { TranslateMessage(&msg); @@ -232,15 +257,7 @@ int WINAPI get_url_into_file(WCHAR *uri, char *path, int *cancelled) } } -#if _DEBUG - fprintf(logfile,"Calling InternetCloseHandle\n"); - fclose(logfile); -#endif - fclose(fp); - InternetCloseHandle(hdownload); - InternetCloseHandle(hinet); - return success; } @@ -306,9 +323,8 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nSho char* argv[MAX_ARGS]; /* Flawfinder: ignore */ #if _DEBUG - logfile = _wfopen(TEXT("updater.log"),TEXT("wt")); - fprintf(logfile,"Parsing command arguments\n"); - fflush(logfile); + logfile.open("updater.log", std::ios_base::out); + DEBUG("Parsing command arguments"); #endif char *token = NULL; @@ -346,10 +362,7 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nSho // Process command line arguments // -#if _DEBUG - fprintf(logfile,"Processing command arguments\n"); - fflush(logfile); -#endif + DEBUG("Processing command arguments"); // // Parse the command line arguments @@ -358,7 +371,6 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nSho WNDCLASSEX wndclassex = { 0 }; //DEVMODE dev_mode = { 0 }; - char update_exec_path[MAX_PATH]; /* Flawfinder: ignore */ const int WINDOW_WIDTH = 250; const int WINDOW_HEIGHT = 100; @@ -407,26 +419,34 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nSho } // Can't feed GetTempPath into GetTempFile directly - if (0 == GetTempPathA(MAX_PATH - 14, update_exec_path)) + char temp_path[MAX_PATH]; /* Flawfinder: ignore */ + if (0 == GetTempPathA(sizeof(temp_path), temp_path)) { MessageBox(gWindow, L"Problem with GetTempPath()", L"Error", MB_OK); return 1; } - strcat(update_exec_path, "Second_Life_Updater.exe"); + std::string update_exec_path(temp_path); + update_exec_path.append("Second_Life_Updater.exe"); WCHAR update_uri[4096]; - mbstowcs(update_uri, gUpdateURL, 4096); + mbstowcs(update_uri, gUpdateURL, sizeof(update_uri)); int success = 0; int cancelled = 0; // Actually do the download -#if _DEBUG - fprintf(logfile,"Calling get_url_into_file\n"); - fflush(logfile); -#endif - success = get_url_into_file(update_uri, update_exec_path, &cancelled); + try + { + DEBUG("Calling get_url_into_file"); + success = get_url_into_file(update_uri, update_exec_path, &cancelled); + } + catch (const Fetcher::InetError& e) + { + (void)e; + success = FALSE; + DEBUG("Caught: " << e.what()); + } // WinInet can't tell us if we got a 404 or not. Therefor, we check // for the size of the downloaded file, and assume that our installer @@ -466,10 +486,31 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nSho // L"Download Complete", // MB_OK); - if (32 >= (int) ShellExecuteA(gWindow, "open", update_exec_path, NULL, +/*==========================================================================*| + // DEV-31680: ShellExecuteA() causes McAfee-GW-Edition and AntiVir + // scanners to flag this executable as a probable virus vector. + // Less than or equal to 32 means failure + if (32 >= (int) ShellExecuteA(gWindow, "open", update_exec_path.c_str(), NULL, "C:\\", SW_SHOWDEFAULT)) +|*==========================================================================*/ + // from http://msdn.microsoft.com/en-us/library/ms682512(VS.85).aspx + STARTUPINFOA si; + PROCESS_INFORMATION pi; + ZeroMemory(&si, sizeof(si)); + si.cb = sizeof(si); + ZeroMemory(&pi, sizeof(pi)); + + if (! CreateProcessA(update_exec_path.c_str(), // executable file + NULL, // command line + NULL, // process cannot be inherited + NULL, // thread cannot be inherited + FALSE, // do not inherit existing handles + 0, // process creation flags + NULL, // inherit parent's environment + NULL, // inherit parent's current dir + &si, // STARTUPINFO + &pi)) // PROCESS_INFORMATION { - // Less than or equal to 32 means failure MessageBox(gWindow, L"Update failed. Please try again later.", NULL, MB_OK); return 1; } diff --git a/install.xml b/install.xml index 4ec443bc8d60396b17a9bd21236e70d3f1cef1a6..33875aee864fdf9ceeec377ec1def646a5ce713f 100644 --- a/install.xml +++ b/install.xml @@ -1124,9 +1124,9 @@ anguage Infrstructure (CLI) international standard</string> <key>darwin</key> <map> <key>md5sum</key> - <string>ac3e0218287e084709afea06b82ae03b</string> + <string>23313fda213a2496945435db2a0ee78b</string> <key>url</key> - <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/openjpeg-1.2-darwin-20080812.tar.bz2</uri> + <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/openjpeg-1.3.0-darwin-20090501.tar.bz2</uri> </map> <key>linux</key> <map>