diff options
-rw-r--r-- | ChangeLog.txt | 22 | ||||
-rw-r--r-- | linden/indra/newview/llfloatertools.cpp | 16 | ||||
-rw-r--r-- | linden/indra/newview/llimpanel.cpp | 4 | ||||
-rw-r--r-- | linden/indra/newview/llinventorybridge.cpp | 11 | ||||
-rw-r--r-- | linden/indra/newview/llinventorybridge.h | 4 | ||||
-rw-r--r-- | linden/indra/newview/llmutelist.cpp | 26 | ||||
-rw-r--r-- | linden/indra/newview/llmutelist.h | 6 | ||||
-rw-r--r-- | linden/indra/newview/llpanelface.cpp | 2 | ||||
-rw-r--r-- | linden/indra/newview/llpanelobject.cpp | 2 | ||||
-rw-r--r-- | linden/indra/newview/llviewermenu.cpp | 13 | ||||
-rw-r--r-- | linden/indra/newview/llviewerwindow.cpp | 14 | ||||
-rw-r--r-- | linden/indra/newview/llviewerwindow.h | 2 | ||||
-rw-r--r-- | linden/indra/newview/panelradar.cpp | 51 | ||||
-rw-r--r-- | linden/indra/newview/panelradar.h | 6 | ||||
-rw-r--r-- | linden/indra/newview/rlvdefines.h | 2 | ||||
-rw-r--r-- | linden/indra/newview/skins/default/xui/en-us/alerts.xml | 154 | ||||
-rw-r--r-- | linden/indra/newview/skins/default/xui/en-us/notifications.xml | 2369 |
17 files changed, 1396 insertions, 1308 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index fb3f065..29598dc 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -2,6 +2,28 @@ | |||
2 | =- 1.3.0 -= | 2 | =- 1.3.0 -= |
3 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | 3 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
4 | 4 | ||
5 | 2009-11-09 McCabe Maxsted <hakushakukun@gmail.com> | ||
6 | |||
7 | * Moved 1.2 alerts to the new notification system. | ||
8 | |||
9 | modified: linden/indra/newview/llfloatertools.cpp | ||
10 | modified: linden/indra/newview/llimpanel.cpp | ||
11 | modified: linden/indra/newview/llinventorybridge.cpp | ||
12 | modified: linden/indra/newview/llinventorybridge.h | ||
13 | modified: linden/indra/newview/llmutelist.cpp | ||
14 | modified: linden/indra/newview/llmutelist.h | ||
15 | modified: linden/indra/newview/llpanelface.cpp | ||
16 | modified: linden/indra/newview/llpanelobject.cpp | ||
17 | modified: linden/indra/newview/llviewermenu.cpp | ||
18 | modified: linden/indra/newview/llviewerwindow.cpp | ||
19 | modified: linden/indra/newview/llviewerwindow.h | ||
20 | modified: linden/indra/newview/panelradar.cpp | ||
21 | modified: linden/indra/newview/panelradar.h | ||
22 | modified: linden/indra/newview/rlvdefines.h | ||
23 | modified: linden/indra/newview/skins/default/xui/en-us/alerts.xml | ||
24 | modified: linden/indra/newview/skins/default/xui/en-us/notifications.xml | ||
25 | |||
26 | |||
5 | 2009-11-08 McCabe Maxsted <hakushakukun@gmail.com> | 27 | 2009-11-08 McCabe Maxsted <hakushakukun@gmail.com> |
6 | 28 | ||
7 | * Removed unused CMake resource files. | 29 | * Removed unused CMake resource files. |
diff --git a/linden/indra/newview/llfloatertools.cpp b/linden/indra/newview/llfloatertools.cpp index a37663e..5a7fdff 100644 --- a/linden/indra/newview/llfloatertools.cpp +++ b/linden/indra/newview/llfloatertools.cpp | |||
@@ -1143,29 +1143,29 @@ void LLFloaterTools::onClickLink(void* data) | |||
1143 | { | 1143 | { |
1144 | if(!LLSelectMgr::getInstance()->selectGetAllRootsValid()) | 1144 | if(!LLSelectMgr::getInstance()->selectGetAllRootsValid()) |
1145 | { | 1145 | { |
1146 | LLNotifyBox::showXml("UnableToLinkWhileDownloading"); | 1146 | LLNotifications::instance().add("UnableToLinkWhileDownloading"); |
1147 | return; | 1147 | return; |
1148 | } | 1148 | } |
1149 | 1149 | ||
1150 | S32 object_count = LLSelectMgr::getInstance()->getSelection()->getObjectCount(); | 1150 | S32 object_count = LLSelectMgr::getInstance()->getSelection()->getObjectCount(); |
1151 | if (object_count > MAX_CHILDREN_PER_TASK + 1) | 1151 | if (object_count > MAX_CHILDREN_PER_TASK + 1) |
1152 | { | 1152 | { |
1153 | LLStringUtil::format_map_t args; | 1153 | LLSD args; |
1154 | args["[COUNT]"] = llformat("%d", object_count); | 1154 | args["COUNT"] = llformat("%d", object_count); |
1155 | int max = MAX_CHILDREN_PER_TASK+1; | 1155 | int max = MAX_CHILDREN_PER_TASK+1; |
1156 | args["[MAX]"] = llformat("%d", max); | 1156 | args["MAX"] = llformat("%d", max); |
1157 | gViewerWindow->alertXml("UnableToLinkObjects", args); | 1157 | LLNotifications::instance().add("UnableToLinkObjects", args); |
1158 | return; | 1158 | return; |
1159 | } | 1159 | } |
1160 | 1160 | ||
1161 | if(LLSelectMgr::getInstance()->getSelection()->getRootObjectCount() < 2) | 1161 | if(LLSelectMgr::getInstance()->getSelection()->getRootObjectCount() < 2) |
1162 | { | 1162 | { |
1163 | gViewerWindow->alertXml("CannotLinkIncompleteSet"); | 1163 | LLNotifications::instance().add("CannotLinkIncompleteSet"); |
1164 | return; | 1164 | return; |
1165 | } | 1165 | } |
1166 | if(!LLSelectMgr::getInstance()->selectGetRootsModify()) | 1166 | if(!LLSelectMgr::getInstance()->selectGetRootsModify()) |
1167 | { | 1167 | { |
1168 | gViewerWindow->alertXml("CannotLinkModify"); | 1168 | LLNotifications::instance().add("CannotLinkModify"); |
1169 | return; | 1169 | return; |
1170 | } | 1170 | } |
1171 | LLUUID owner_id; | 1171 | LLUUID owner_id; |
@@ -1175,7 +1175,7 @@ void LLFloaterTools::onClickLink(void* data) | |||
1175 | // we don't actually care if you're the owner, but novices are | 1175 | // we don't actually care if you're the owner, but novices are |
1176 | // the most likely to be stumped by this one, so offer the | 1176 | // the most likely to be stumped by this one, so offer the |
1177 | // easiest and most likely solution. | 1177 | // easiest and most likely solution. |
1178 | gViewerWindow->alertXml("CannotLinkDifferentOwners"); | 1178 | LLNotifications::instance().add("CannotLinkDifferentOwners"); |
1179 | return; | 1179 | return; |
1180 | } | 1180 | } |
1181 | LLSelectMgr::getInstance()->sendLink(); | 1181 | LLSelectMgr::getInstance()->sendLink(); |
diff --git a/linden/indra/newview/llimpanel.cpp b/linden/indra/newview/llimpanel.cpp index 9368e4e..a5950ce 100644 --- a/linden/indra/newview/llimpanel.cpp +++ b/linden/indra/newview/llimpanel.cpp | |||
@@ -1838,9 +1838,9 @@ void LLFloaterIMPanel::onClickHistory( void* userdata ) | |||
1838 | } | 1838 | } |
1839 | else | 1839 | else |
1840 | { | 1840 | { |
1841 | LLStringUtil::format_map_t args; | 1841 | LLSD args; |
1842 | args["[NAME]"] = fullname; | 1842 | args["[NAME]"] = fullname; |
1843 | gViewerWindow->alertXml("IMLogNotFound", args); | 1843 | LLNotifications::instance().add("IMLogNotFound", args); |
1844 | llinfos << file_path << llendl; | 1844 | llinfos << file_path << llendl; |
1845 | } | 1845 | } |
1846 | } | 1846 | } |
diff --git a/linden/indra/newview/llinventorybridge.cpp b/linden/indra/newview/llinventorybridge.cpp index 1e86301..0d0c512 100644 --- a/linden/indra/newview/llinventorybridge.cpp +++ b/linden/indra/newview/llinventorybridge.cpp | |||
@@ -837,17 +837,22 @@ void LLItemBridge::restoreItem() | |||
837 | // virtual | 837 | // virtual |
838 | void LLItemBridge::restoreToWorldConfirm() | 838 | void LLItemBridge::restoreToWorldConfirm() |
839 | { | 839 | { |
840 | gViewerWindow->alertXml("ConfirmRestoreToWorld", LLItemBridge::restoreToWorldCallback, (void *)this); | 840 | LLNotifications::instance().add("ConfirmRestoreToWorld", |
841 | LLSD(), | ||
842 | LLSD(), | ||
843 | boost::bind(&restoreToWorldCallback, _1, _2, this)); | ||
841 | } | 844 | } |
842 | 845 | ||
843 | // static | 846 | // static |
844 | void LLItemBridge::restoreToWorldCallback(S32 option, void *userdata) | 847 | bool LLItemBridge::restoreToWorldCallback(const LLSD& notification, const LLSD& response, LLItemBridge *self) |
845 | { | 848 | { |
849 | S32 option = LLNotification::getSelectedOption(notification, response); | ||
846 | if( option == 0 ) | 850 | if( option == 0 ) |
847 | { | 851 | { |
848 | // They confirmed it. Here we go! | 852 | // They confirmed it. Here we go! |
849 | ((LLItemBridge *) userdata)->restoreToWorld(); | 853 | self->restoreToWorld(); |
850 | } | 854 | } |
855 | return false; | ||
851 | } | 856 | } |
852 | 857 | ||
853 | // virtual | 858 | // virtual |
diff --git a/linden/indra/newview/llinventorybridge.h b/linden/indra/newview/llinventorybridge.h index 860749d..6c1c469 100644 --- a/linden/indra/newview/llinventorybridge.h +++ b/linden/indra/newview/llinventorybridge.h | |||
@@ -246,10 +246,8 @@ public: | |||
246 | virtual void selectItem(); | 246 | virtual void selectItem(); |
247 | virtual void restoreItem(); | 247 | virtual void restoreItem(); |
248 | virtual void restoreToWorld(); | 248 | virtual void restoreToWorld(); |
249 | |||
250 | virtual void restoreToWorld(); | ||
251 | virtual void restoreToWorldConfirm(); | 249 | virtual void restoreToWorldConfirm(); |
252 | static void restoreToWorldCallback(S32 option, void *userdata); | 250 | static bool restoreToWorldCallback(const LLSD& notification, const LLSD& response, LLItemBridge *self); |
253 | 251 | ||
254 | 252 | ||
255 | virtual LLUIImagePtr getIcon() const; | 253 | virtual LLUIImagePtr getIcon() const; |
diff --git a/linden/indra/newview/llmutelist.cpp b/linden/indra/newview/llmutelist.cpp index 8726600..0e03509 100644 --- a/linden/indra/newview/llmutelist.cpp +++ b/linden/indra/newview/llmutelist.cpp | |||
@@ -302,30 +302,31 @@ void LLMuteList::addMuteAgentConfirm( const LLMute &mute ) | |||
302 | { | 302 | { |
303 | LLMute *newmute = new LLMute(mute); | 303 | LLMute *newmute = new LLMute(mute); |
304 | 304 | ||
305 | LLStringUtil::format_map_t args; | 305 | LLSD args; |
306 | LLSD payload; | ||
306 | args["[NAME]"] = newmute->mName; | 307 | args["[NAME]"] = newmute->mName; |
307 | 308 | LLNotifications::instance().add("ConfirmMuteAgent", | |
308 | gViewerWindow->alertXml("ConfirmMuteAgent", args, | 309 | args, |
309 | LLMuteList::addMuteCallback, | 310 | LLSD(), |
310 | static_cast<void*>(newmute)); | 311 | boost::bind(&addMuteCallback, _1, _2, newmute)); |
311 | } | 312 | } |
312 | 313 | ||
313 | void LLMuteList::addMuteObjectConfirm( const LLMute &mute ) | 314 | void LLMuteList::addMuteObjectConfirm( const LLMute &mute ) |
314 | { | 315 | { |
315 | LLMute *newmute = new LLMute(mute); | 316 | LLMute *newmute = new LLMute(mute); |
316 | 317 | ||
317 | LLStringUtil::format_map_t args; | 318 | LLSD args; |
318 | args["[NAME]"] = newmute->mName; | 319 | args["[NAME]"] = newmute->mName; |
319 | 320 | LLNotifications::instance().add("ConfirmMuteObject", | |
320 | gViewerWindow->alertXml("ConfirmMuteObject", args, | 321 | args, |
321 | LLMuteList::addMuteCallback, | 322 | LLSD(), |
322 | static_cast<void*>(newmute)); | 323 | boost::bind(&addMuteCallback, _1, _2, newmute)); |
323 | } | 324 | } |
324 | 325 | ||
325 | // static | 326 | // static |
326 | void LLMuteList::addMuteCallback(S32 option, void *userdata) | 327 | bool LLMuteList::addMuteCallback(const LLSD& notification, const LLSD& response, LLMute *mute) |
327 | { | 328 | { |
328 | LLMute *mute = static_cast<LLMute*>(userdata); | 329 | S32 option = LLNotification::getSelectedOption(notification, response); |
329 | if( option == 0 ) | 330 | if( option == 0 ) |
330 | { | 331 | { |
331 | // They confirmed it. Here we go! | 332 | // They confirmed it. Here we go! |
@@ -333,6 +334,7 @@ void LLMuteList::addMuteCallback(S32 option, void *userdata) | |||
333 | LLFloaterMute::showInstance(); | 334 | LLFloaterMute::showInstance(); |
334 | } | 335 | } |
335 | delete mute; | 336 | delete mute; |
337 | return false; | ||
336 | } | 338 | } |
337 | 339 | ||
338 | BOOL LLMuteList::add(const LLMute& mute, U32 flags) | 340 | BOOL LLMuteList::add(const LLMute& mute, U32 flags) |
diff --git a/linden/indra/newview/llmutelist.h b/linden/indra/newview/llmutelist.h index 9163f94..03a548f 100644 --- a/linden/indra/newview/llmutelist.h +++ b/linden/indra/newview/llmutelist.h | |||
@@ -103,9 +103,9 @@ public: | |||
103 | void removeObserver(LLMuteListObserver* observer); | 103 | void removeObserver(LLMuteListObserver* observer); |
104 | 104 | ||
105 | 105 | ||
106 | void addMuteAgentConfirm( const LLMute &mute ); | 106 | void addMuteAgentConfirm( const LLMute &mute ); |
107 | void addMuteObjectConfirm( const LLMute &mute ); | 107 | void addMuteObjectConfirm( const LLMute &mute ); |
108 | static void addMuteCallback(S32 option, void *userdata); | 108 | static bool addMuteCallback(const LLSD& notification, const LLSD& response, LLMute *mute); |
109 | 109 | ||
110 | // Add either a normal or a BY_NAME mute, for any or all properties. | 110 | // Add either a normal or a BY_NAME mute, for any or all properties. |
111 | BOOL add(const LLMute& mute, U32 flags = 0); | 111 | BOOL add(const LLMute& mute, U32 flags = 0); |
diff --git a/linden/indra/newview/llpanelface.cpp b/linden/indra/newview/llpanelface.cpp index 9754d2a..6ae2ffe 100644 --- a/linden/indra/newview/llpanelface.cpp +++ b/linden/indra/newview/llpanelface.cpp | |||
@@ -1001,5 +1001,5 @@ void LLPanelFace::onClickAutoFix(void* userdata) | |||
1001 | // static | 1001 | // static |
1002 | void LLPanelFace::onClickTextureConstants(void *) | 1002 | void LLPanelFace::onClickTextureConstants(void *) |
1003 | { | 1003 | { |
1004 | gViewerWindow->alertXml("ClickTextureConstants"); | 1004 | LLNotifications::instance().add("ClickTextureConstants"); |
1005 | } | 1005 | } |
diff --git a/linden/indra/newview/llpanelobject.cpp b/linden/indra/newview/llpanelobject.cpp index 270a8ed..40dc211 100644 --- a/linden/indra/newview/llpanelobject.cpp +++ b/linden/indra/newview/llpanelobject.cpp | |||
@@ -2134,5 +2134,5 @@ void LLPanelObject::onCommitSculptType(LLUICtrl *ctrl, void* userdata) | |||
2134 | // static | 2134 | // static |
2135 | void LLPanelObject::onClickBuildConstants(void *) | 2135 | void LLPanelObject::onClickBuildConstants(void *) |
2136 | { | 2136 | { |
2137 | gViewerWindow->alertXml("ClickBuildConstants"); | 2137 | LLNotifications::instance().add("ClickBuildConstants"); |
2138 | } | 2138 | } |
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp index cebd6fd..63ea2e8 100644 --- a/linden/indra/newview/llviewermenu.cpp +++ b/linden/indra/newview/llviewermenu.cpp | |||
@@ -502,7 +502,7 @@ BOOL enable_detach(void*); | |||
502 | BOOL enable_region_owner(void*); | 502 | BOOL enable_region_owner(void*); |
503 | void menu_toggle_attached_lights(void* user_data); | 503 | void menu_toggle_attached_lights(void* user_data); |
504 | void menu_toggle_attached_particles(void* user_data); | 504 | void menu_toggle_attached_particles(void* user_data); |
505 | static void handle_go_to_callback(S32 option, void *userdata); | 505 | static bool handle_go_to_callback(const LLSD& notification, const LLSD& response); |
506 | 506 | ||
507 | class LLMenuParcelObserver : public LLParcelObserver | 507 | class LLMenuParcelObserver : public LLParcelObserver |
508 | { | 508 | { |
@@ -2443,11 +2443,11 @@ bool handle_go_to_confirm() | |||
2443 | 2443 | ||
2444 | if (action == "teleport") | 2444 | if (action == "teleport") |
2445 | { | 2445 | { |
2446 | gViewerWindow->alertXml("ConfirmDoubleClickTP", handle_go_to_callback, (void*)LLToolPie::getInstance()); | 2446 | LLNotifications::instance().add("ConfirmDoubleClickTP", , LLSD(), LLSD(), &handle_go_to_callback); |
2447 | } | 2447 | } |
2448 | else if (action == "autopilot") | 2448 | else if (action == "autopilot") |
2449 | { | 2449 | { |
2450 | gViewerWindow->alertXml("ConfirmAutoPilot", handle_go_to_callback, (void*)LLToolPie::getInstance()); | 2450 | LLNotifications::instance().add("ConfirmAutoPilot", , LLSD(), LLSD(), &handle_go_to_callback); |
2451 | } | 2451 | } |
2452 | return true; | 2452 | return true; |
2453 | } | 2453 | } |
@@ -2462,18 +2462,19 @@ bool handle_go_to() | |||
2462 | } | 2462 | } |
2463 | // [/RLVa:KB] | 2463 | // [/RLVa:KB] |
2464 | 2464 | ||
2465 | handle_go_to_callback( 0, (void*)LLToolPie::getInstance() ); | 2465 | handle_go_to_callback( LLSD(), LLSD(0) ); |
2466 | 2466 | ||
2467 | return true; | 2467 | return true; |
2468 | } | 2468 | } |
2469 | 2469 | ||
2470 | 2470 | ||
2471 | //static | 2471 | //static |
2472 | void handle_go_to_callback(S32 option, void *userdata) | 2472 | bool handle_go_to_callback(const LLSD& notification, const LLSD& response) |
2473 | { | 2473 | { |
2474 | S32 option = LLNotification::getSelectedOption(notification, response); | ||
2474 | if (option == 0) | 2475 | if (option == 0) |
2475 | { | 2476 | { |
2476 | LLToolPie* pie = (LLToolPie*)userdata; | 2477 | LLToolPie* pie = LLToolPie::getInstance(); |
2477 | 2478 | ||
2478 | // JAMESDEBUG try simulator autopilot | 2479 | // JAMESDEBUG try simulator autopilot |
2479 | std::vector<std::string> strings; | 2480 | std::vector<std::string> strings; |
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp index 022515a..ef4e728 100644 --- a/linden/indra/newview/llviewerwindow.cpp +++ b/linden/indra/newview/llviewerwindow.cpp | |||
@@ -4484,20 +4484,22 @@ void LLViewerWindow::initFonts(F32 zoom_factor) | |||
4484 | 4484 | ||
4485 | void LLViewerWindow::toggleFullscreenConfirm() | 4485 | void LLViewerWindow::toggleFullscreenConfirm() |
4486 | { | 4486 | { |
4487 | gViewerWindow->alertXml("ConfirmToggleFullscreen", | 4487 | LLNotifications::instance().add("ConfirmToggleFullscreen", |
4488 | LLViewerWindow::toggleFullscreenCallback, | 4488 | LLSD(), |
4489 | (void *)this); | 4489 | LLSD(), |
4490 | boost::bind(&toggleFullscreenCallback, _1, _2, this)); | ||
4490 | } | 4491 | } |
4491 | 4492 | ||
4492 | 4493 | ||
4493 | // static | 4494 | bool LLViewerWindow::toggleFullscreenCallback(const LLSD& notification, const LLSD& response, LLViewerWindow *self) |
4494 | void LLViewerWindow::toggleFullscreenCallback(S32 option, void *userdata) | ||
4495 | { | 4495 | { |
4496 | S32 option = LLNotification::getSelectedOption(notification, response); | ||
4496 | if( option == 0 ) | 4497 | if( option == 0 ) |
4497 | { | 4498 | { |
4498 | // User confirmed it. Here we go! | 4499 | // User confirmed it. Here we go! |
4499 | ((LLViewerWindow *)userdata)->toggleFullscreen( TRUE ); | 4500 | self->toggleFullscreen( TRUE ); |
4500 | } | 4501 | } |
4502 | return false; | ||
4501 | } | 4503 | } |
4502 | 4504 | ||
4503 | 4505 | ||
diff --git a/linden/indra/newview/llviewerwindow.h b/linden/indra/newview/llviewerwindow.h index 74edd2e..85cdc52 100644 --- a/linden/indra/newview/llviewerwindow.h +++ b/linden/indra/newview/llviewerwindow.h | |||
@@ -347,7 +347,7 @@ public: | |||
347 | // Request display setting changes | 347 | // Request display setting changes |
348 | void toggleFullscreen(BOOL show_progress); | 348 | void toggleFullscreen(BOOL show_progress); |
349 | void toggleFullscreenConfirm(); | 349 | void toggleFullscreenConfirm(); |
350 | static void toggleFullscreenCallback(S32 option, void *userdata); | 350 | static bool toggleFullscreenCallback(const LLSD& notification, const LLSD& response, LLViewerWindow *self); |
351 | 351 | ||
352 | // handle shutting down GL and bringing it back up | 352 | // handle shutting down GL and bringing it back up |
353 | void requestResolutionUpdate(bool fullscreen_checked); | 353 | void requestResolutionUpdate(bool fullscreen_checked); |
diff --git a/linden/indra/newview/panelradar.cpp b/linden/indra/newview/panelradar.cpp index e85af44..1a5f2d4 100644 --- a/linden/indra/newview/panelradar.cpp +++ b/linden/indra/newview/panelradar.cpp | |||
@@ -656,11 +656,11 @@ void PanelRadar::onClickAddFriend(void* user_data) | |||
656 | // Estate tab | 656 | // Estate tab |
657 | // | 657 | // |
658 | 658 | ||
659 | //static | ||
660 | void PanelRadar::callbackFreeze(S32 option, void *user_data) | ||
661 | { | ||
662 | PanelRadar *self = (PanelRadar*)user_data; | ||
663 | 659 | ||
660 | //static | ||
661 | bool PanelRadar::callbackFreeze(const LLSD& notification, const LLSD& response, PanelRadar *self) | ||
662 | { | ||
663 | S32 option = LLNotification::getSelectedOption(notification, response); | ||
664 | if ( option == 0 ) | 664 | if ( option == 0 ) |
665 | { | 665 | { |
666 | sendFreeze(self->mSelectedAvatar, true); | 666 | sendFreeze(self->mSelectedAvatar, true); |
@@ -669,14 +669,14 @@ void PanelRadar::callbackFreeze(S32 option, void *user_data) | |||
669 | { | 669 | { |
670 | sendFreeze(self->mSelectedAvatar, false); | 670 | sendFreeze(self->mSelectedAvatar, false); |
671 | } | 671 | } |
672 | return false; | ||
672 | } | 673 | } |
673 | 674 | ||
674 | 675 | ||
675 | //static | 676 | //static |
676 | void PanelRadar::callbackEject(S32 option, void *user_data) | 677 | bool PanelRadar::callbackEject(const LLSD& notification, const LLSD& response, PanelRadar *self) |
677 | { | 678 | { |
678 | PanelRadar *self = (PanelRadar*)user_data; | 679 | S32 option = LLNotification::getSelectedOption(notification, response); |
679 | |||
680 | if ( option == 0 ) | 680 | if ( option == 0 ) |
681 | { | 681 | { |
682 | sendEject(self->mSelectedAvatar, false); | 682 | sendEject(self->mSelectedAvatar, false); |
@@ -685,14 +685,14 @@ void PanelRadar::callbackEject(S32 option, void *user_data) | |||
685 | { | 685 | { |
686 | sendEject(self->mSelectedAvatar, true); | 686 | sendEject(self->mSelectedAvatar, true); |
687 | } | 687 | } |
688 | return false; | ||
688 | } | 689 | } |
689 | 690 | ||
690 | 691 | ||
691 | //static | 692 | //static |
692 | void PanelRadar::callbackEjectFromEstate(S32 option, void *user_data) | 693 | bool PanelRadar::callbackEjectFromEstate(const LLSD& notification, const LLSD& response, PanelRadar *self) |
693 | { | 694 | { |
694 | PanelRadar *self = (PanelRadar*)user_data; | 695 | S32 option = LLNotification::getSelectedOption(notification, response); |
695 | |||
696 | if ( option == 0 ) | 696 | if ( option == 0 ) |
697 | { | 697 | { |
698 | cmdEstateEject(self->mSelectedAvatar); | 698 | cmdEstateEject(self->mSelectedAvatar); |
@@ -701,16 +701,19 @@ void PanelRadar::callbackEjectFromEstate(S32 option, void *user_data) | |||
701 | { | 701 | { |
702 | cmdEstateBan(self->mSelectedAvatar); | 702 | cmdEstateBan(self->mSelectedAvatar); |
703 | } | 703 | } |
704 | return false; | ||
704 | } | 705 | } |
705 | 706 | ||
706 | 707 | ||
707 | void PanelRadar::onClickFreeze(void *user_data) | 708 | void PanelRadar::onClickFreeze(void *user_data) |
708 | { | 709 | { |
709 | PanelRadar *self = (PanelRadar*)user_data; | 710 | PanelRadar *self = (PanelRadar*)user_data; |
710 | LLStringUtil::format_map_t args; | 711 | LLSD args; |
711 | LLSD payload; | 712 | args["AVATAR_NAME"] = getSelectedName(self->mSelectedAvatar); |
712 | args["[AVATAR_NAME]"] = getSelectedName(self->mSelectedAvatar); | 713 | LLNotifications::instance().add("FreezeAvatarFullname", |
713 | gViewerWindow->alertXml("FreezeAvatarFullname", args, callbackFreeze, user_data); | 714 | args, |
715 | LLSD(), | ||
716 | boost::bind(&callbackFreeze, _1, _2, self)); | ||
714 | } | 717 | } |
715 | 718 | ||
716 | 719 | ||
@@ -718,10 +721,12 @@ void PanelRadar::onClickFreeze(void *user_data) | |||
718 | void PanelRadar::onClickEject(void *user_data) | 721 | void PanelRadar::onClickEject(void *user_data) |
719 | { | 722 | { |
720 | PanelRadar *self = (PanelRadar*)user_data; | 723 | PanelRadar *self = (PanelRadar*)user_data; |
721 | LLStringUtil::format_map_t args; | 724 | LLSD args; |
722 | LLSD payload; | ||
723 | args["AVATAR_NAME"] = getSelectedName(self->mSelectedAvatar); | 725 | args["AVATAR_NAME"] = getSelectedName(self->mSelectedAvatar); |
724 | gViewerWindow->alertXml("EjectAvatarFullName", args, callbackEject, user_data); | 726 | LLNotifications::instance().add("EjectAvatarFullname", |
727 | args, | ||
728 | LLSD(), | ||
729 | boost::bind(&callbackEject, _1, _2, self)); | ||
725 | } | 730 | } |
726 | 731 | ||
727 | 732 | ||
@@ -777,10 +782,12 @@ void PanelRadar::onClickUnmute(void *user_data) | |||
777 | void PanelRadar::onClickEjectFromEstate(void *user_data) | 782 | void PanelRadar::onClickEjectFromEstate(void *user_data) |
778 | { | 783 | { |
779 | PanelRadar *self = (PanelRadar*)user_data; | 784 | PanelRadar *self = (PanelRadar*)user_data; |
780 | LLStringUtil::format_map_t args; | 785 | LLSD args; |
781 | LLSD payload; | ||
782 | args["EVIL_USER"] = getSelectedName(self->mSelectedAvatar); | 786 | args["EVIL_USER"] = getSelectedName(self->mSelectedAvatar); |
783 | gViewerWindow->alertXml("EstateKickUser", args, callbackEjectFromEstate, user_data); | 787 | LLNotifications::instance().add("EstateKickUser", |
788 | args, | ||
789 | LLSD(), | ||
790 | boost::bind(&callbackEjectFromEstate, _1, _2, self)); | ||
784 | } | 791 | } |
785 | 792 | ||
786 | 793 | ||
diff --git a/linden/indra/newview/panelradar.h b/linden/indra/newview/panelradar.h index 0152f26..8697bbc 100644 --- a/linden/indra/newview/panelradar.h +++ b/linden/indra/newview/panelradar.h | |||
@@ -99,10 +99,10 @@ private: | |||
99 | static void onClickAR(void *user_data); | 99 | static void onClickAR(void *user_data); |
100 | static void onClickEjectFromEstate(void *user_data); | 100 | static void onClickEjectFromEstate(void *user_data); |
101 | 101 | ||
102 | static void callbackFreeze(S32 option, void *user_data); | ||
103 | static void callbackEject(S32 option, void *user_data); | ||
104 | static void callbackAR(void *user_data); | 102 | static void callbackAR(void *user_data); |
105 | static void callbackEjectFromEstate(S32 option, void *user_data); | 103 | static bool callbackFreeze(const LLSD& notification, const LLSD& response, PanelRadar *self); |
104 | static bool callbackEject(const LLSD& notification, const LLSD& response, PanelRadar *self); | ||
105 | static bool callbackEjectFromEstate(const LLSD& notification, const LLSD& response, PanelRadar *self); | ||
106 | 106 | ||
107 | static void sendFreeze(const LLUUID &avatar, bool); | 107 | static void sendFreeze(const LLUUID &avatar, bool); |
108 | static void sendEject(const LLUUID &avatar, bool); | 108 | static void sendEject(const LLUUID &avatar, bool); |
diff --git a/linden/indra/newview/rlvdefines.h b/linden/indra/newview/rlvdefines.h index a35d109..3785b0a 100644 --- a/linden/indra/newview/rlvdefines.h +++ b/linden/indra/newview/rlvdefines.h | |||
@@ -53,7 +53,7 @@ const S32 RLVa_VERSION_BUILD = 4; | |||
53 | 53 | ||
54 | // The official viewer version we're patching against | 54 | // The official viewer version we're patching against |
55 | #define RLV_MAKE_TARGET(x, y, z) ((x << 16) | (y << 8) | z) | 55 | #define RLV_MAKE_TARGET(x, y, z) ((x << 16) | (y << 8) | z) |
56 | #define RLV_TARGET RLV_MAKE_TARGET(1, 22, 11) | 56 | #define RLV_TARGET RLV_MAKE_TARGET(1, 23, 4) |
57 | 57 | ||
58 | // Defining these makes it easier if we ever need to change our tag | 58 | // Defining these makes it easier if we ever need to change our tag |
59 | #define RLV_WARNS LL_WARNS("RLV") | 59 | #define RLV_WARNS LL_WARNS("RLV") |
diff --git a/linden/indra/newview/skins/default/xui/en-us/alerts.xml b/linden/indra/newview/skins/default/xui/en-us/alerts.xml index b5d6a20..38ffaa9 100644 --- a/linden/indra/newview/skins/default/xui/en-us/alerts.xml +++ b/linden/indra/newview/skins/default/xui/en-us/alerts.xml | |||
@@ -2856,160 +2856,6 @@ Would you like to visit the [SECOND_LIFE] website to set this up? | |||
2856 | The string [STRING_NAME] is missing from strings.xml | 2856 | The string [STRING_NAME] is missing from strings.xml |
2857 | </message> | 2857 | </message> |
2858 | </alert> | 2858 | </alert> |
2859 | |||
2860 | <alert modal="true" name="ConfirmAutoPilot"> | ||
2861 | <message name="message"> | ||
2862 | Are you sure you want to move here? | ||
2863 | </message> | ||
2864 | <ignore name="ignore"> | ||
2865 | When using auto-pilot | ||
2866 | </ignore> | ||
2867 | <option name="Move"> | ||
2868 | Move | ||
2869 | </option> | ||
2870 | <option name="Cancel"> | ||
2871 | Cancel | ||
2872 | </option> | ||
2873 | </alert> | ||
2874 | 2859 | ||
2875 | <alert modal="true" name="ConfirmDoubleClickTP"> | ||
2876 | <message name="message"> | ||
2877 | Are you sure you want to teleport here? | ||
2878 | </message> | ||
2879 | <ignore name="ignore"> | ||
2880 | When double-click teleporting | ||
2881 | </ignore> | ||
2882 | <option name="Teleport"> | ||
2883 | Teleport | ||
2884 | </option> | ||
2885 | <option name="Cancel"> | ||
2886 | Cancel | ||
2887 | </option> | ||
2888 | </alert> | ||
2889 | |||
2890 | <alert modal="true" name="ConfirmTeleportHome"> | ||
2891 | <message name="message"> | ||
2892 | Are you sure you want to teleport home? | ||
2893 | </message> | ||
2894 | <ignore name="ignore"> | ||
2895 | When teleporting home | ||
2896 | </ignore> | ||
2897 | <option name="Teleport"> | ||
2898 | Teleport | ||
2899 | </option> | ||
2900 | <option name="Cancel"> | ||
2901 | Cancel | ||
2902 | </option> | ||
2903 | </alert> | ||
2904 | |||
2905 | <alert modal="true" name="ConfirmToggleFullscreen"> | ||
2906 | <message name="message"> | ||
2907 | Are you sure you want to toggle fullscreen mode? | ||
2908 | </message> | ||
2909 | <ignore name="ignore"> | ||
2910 | When toggling fullscreen mode | ||
2911 | </ignore> | ||
2912 | <option name="Toggle"> | ||
2913 | Toggle | ||
2914 | </option> | ||
2915 | <option name="Cancel"> | ||
2916 | Cancel | ||
2917 | </option> | ||
2918 | </alert> | ||
2919 | |||
2920 | <alert modal="true" name="ConfirmRestoreToWorld"> | ||
2921 | <message name="message"> | ||
2922 | Are you sure you want to restore the object to its last position? | ||
2923 | |||
2924 | WARNING: Don't restore if you aren't sure where the object will go! | ||
2925 | </message> | ||
2926 | <ignore name="ignore"> | ||
2927 | When restoring objects to their last positions | ||
2928 | </ignore> | ||
2929 | <option name="Restore"> | ||
2930 | Restore | ||
2931 | </option> | ||
2932 | <option name="MoreInfo"> | ||
2933 | More Info | ||
2934 | </option> | ||
2935 | <option name="Cancel"> | ||
2936 | Cancel | ||
2937 | </option> | ||
2938 | <url option="1"> | ||
2939 | http://imprudenceviewer.org/wiki/Restore_to_Last_Position | ||
2940 | </url> | ||
2941 | |||
2942 | </alert> | ||
2943 | |||
2944 | <alert modal="true" name="ConfirmRemoveAllClothes"> | ||
2945 | <message name="message"> | ||
2946 | Are you sure you want to take off all clothes? | ||
2947 | </message> | ||
2948 | <ignore name="ignore"> | ||
2949 | When taking off all clothes | ||
2950 | </ignore> | ||
2951 | <option name="Take Off"> | ||
2952 | Take Off | ||
2953 | </option> | ||
2954 | <option name="Cancel"> | ||
2955 | Cancel | ||
2956 | </option> | ||
2957 | </alert> | ||
2958 | |||
2959 | <alert modal="true" name="ConfirmMuteAgent"> | ||
2960 | <message name="message"> | ||
2961 | Are you sure you want to mute [NAME] (resident)? | ||
2962 | </message> | ||
2963 | <ignore name="ignore"> | ||
2964 | When muting a Resident | ||
2965 | </ignore> | ||
2966 | <option name="Mute"> | ||
2967 | Mute | ||
2968 | </option> | ||
2969 | <option name="Cancel"> | ||
2970 | Cancel | ||
2971 | </option> | ||
2972 | </alert> | ||
2973 | |||
2974 | <alert modal="true" name="ConfirmMuteObject"> | ||
2975 | <message name="message"> | ||
2976 | Are you sure you want to mute [NAME] (object)? | ||
2977 | </message> | ||
2978 | <ignore name="ignore"> | ||
2979 | When muting an object | ||
2980 | </ignore> | ||
2981 | <option name="Mute"> | ||
2982 | Mute | ||
2983 | </option> | ||
2984 | <option name="Cancel"> | ||
2985 | Cancel | ||
2986 | </option> | ||
2987 | </alert> | ||
2988 | <alert modal="true" name="IMLogNotFound"> | ||
2989 | <message name="message"> | ||
2990 | IM history could not be found for [NAME]. | ||
2991 | </message> | ||
2992 | <option name="OK"> | ||
2993 | OK | ||
2994 | </option> | ||
2995 | </alert> | ||
2996 | |||
2997 | <!-- [RLVa:KB] --> | ||
2998 | <alert modal="true" name="FirstRLVGiveToRLV"> | ||
2999 | <message name="message"> | ||
3000 | Folders starting with '#RLV/~' can automatically be placed under your #RLV shared folder after you accept the inventory offer. | ||
3001 | |||
3002 | Please note that - if enabled - the accepted inventory items will instantly be available to scripts and will have full use of the RLV API which may cause unexpected or undesirable situations. | ||
3003 | |||
3004 | Do you want to enable this feature? | ||
3005 | </message> | ||
3006 | <option name="Yes"> | ||
3007 | Yes | ||
3008 | </option> | ||
3009 | <option name="No"> | ||
3010 | No | ||
3011 | </option> | ||
3012 | </alert> | ||
3013 | <!-- [/RLVa:KB] --> | ||
3014 | </alerts> | 2860 | </alerts> |
3015 | <!-- This file is no longer used. Please see notifications.xml and make your changes there. --> | 2861 | <!-- This file is no longer used. Please see notifications.xml and make your changes there. --> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/notifications.xml b/linden/indra/newview/skins/default/xui/en-us/notifications.xml index e005385..8fe2db0 100644 --- a/linden/indra/newview/skins/default/xui/en-us/notifications.xml +++ b/linden/indra/newview/skins/default/xui/en-us/notifications.xml | |||
@@ -369,19 +369,20 @@ Add this Ability to '[ROLE_NAME]'? | |||
369 | icon="alertmodal.tga" | 369 | icon="alertmodal.tga" |
370 | name="ClickPublishHelpLand" | 370 | name="ClickPublishHelpLand" |
371 | type="alertmodal"> | 371 | type="alertmodal"> |
372 | Selecting the "Publish in Search" | 372 | Selecting the "Publish in Search" |
373 | Checking this box will show: | 373 | Checking this box will show: |
374 | - this parcel in search results | 374 | - this parcel in search results |
375 | - this parcel's public objects | 375 | - this parcel's public objects |
376 | - this parcel in web search | 376 | - this parcel in web search |
377 | </notification> | 377 | </notification> |
378 | 378 | ||
379 | <notification | 379 | <notification |
380 | icon="alertmodal.tga" | 380 | icon="alertmodal.tga" |
381 | name="ClickSoundHelpLand" | 381 | name="ClickSoundHelpLand" |
382 | type="alertmodal">Media and Music can only be experienced within the parcel. Sound and Voice options can be restricted to the parcel or will be heard by residents outside the parcel depending on their maturity Rating. Go to Knowledge Base to learn more about how to set these options? | 382 | type="alertmodal"> |
383 | Media and Music can only be experienced within the parcel. Sound and Voice options can be restricted to the parcel or will be heard by residents outside the parcel depending on their maturity Rating. Go to Knowledge Base to learn more about how to set these options? | ||
383 | <url option="0" name="url"> | 384 | <url option="0" name="url"> |
384 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 | 385 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=5046 |
385 | </url> | 386 | </url> |
386 | <usetemplate | 387 | <usetemplate |
387 | name="okcancelbuttons" | 388 | name="okcancelbuttons" |
@@ -393,9 +394,9 @@ Checking this box will show: | |||
393 | icon="alertmodal.tga" | 394 | icon="alertmodal.tga" |
394 | name="ClickSearchHelpAll" | 395 | name="ClickSearchHelpAll" |
395 | type="alertmodal"> | 396 | type="alertmodal"> |
396 | Search results are organized based on the tab you are in, your maturity Rating, the category chosen, and other factors. For more details, please see the Knowledge Base. | 397 | Search results are organized based on the tab you are in, your maturity Rating, the category chosen, and other factors. For more details, please see the Knowledge Base. |
397 | <url option="0" name="url"> | 398 | <url option="0" name="url"> |
398 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 | 399 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=4722 |
399 | </url> | 400 | </url> |
400 | <usetemplate | 401 | <usetemplate |
401 | name="okcancelbuttons" | 402 | name="okcancelbuttons" |
@@ -407,25 +408,25 @@ Search results are organized based on the tab you are in, your maturity Rating, | |||
407 | icon="alertmodal.tga" | 408 | icon="alertmodal.tga" |
408 | name="ClickPublishHelpLandDisabled" | 409 | name="ClickPublishHelpLandDisabled" |
409 | type="alertmodal"> | 410 | type="alertmodal"> |
410 | You can't make this parcel show in search because it is located in a region that forbids this. | 411 | You can't make this parcel show in search because it is located in a region that forbids this. |
411 | </notification> | 412 | </notification> |
412 | 413 | ||
413 | <notification | 414 | <notification |
414 | icon="alertmodal.tga" | 415 | icon="alertmodal.tga" |
415 | name="ClickPublishHelpAvatar" | 416 | name="ClickPublishHelpAvatar" |
416 | type="alertmodal"> | 417 | type="alertmodal"> |
417 | Selecting "Show in Search" will show: | 418 | Selecting "Show in Search" will show: |
418 | - my profile in search results | 419 | - my profile in search results |
419 | - a link to my profile in public group pages | 420 | - a link to my profile in public group pages |
420 | </notification> | 421 | </notification> |
421 | 422 | ||
422 | <notification | 423 | <notification |
423 | icon="alertmodal.tga" | 424 | icon="alertmodal.tga" |
424 | name="ClickPartnerHelpAvatar" | 425 | name="ClickPartnerHelpAvatar" |
425 | type="alertmodal"> | 426 | type="alertmodal"> |
426 | You can propose to another Resident or dissolve an existing partnership through the [SECOND_LIFE] website. | 427 | You can propose to another Resident or dissolve an existing partnership through the [SECOND_LIFE] website. |
427 | 428 | ||
428 | Go to the Second Life web site for more information on partnering? | 429 | Go to the Second Life web site for more information on partnering? |
429 | <usetemplate | 430 | <usetemplate |
430 | name="okcancelbuttons" | 431 | name="okcancelbuttons" |
431 | notext="Cancel" | 432 | notext="Cancel" |
@@ -436,28 +437,28 @@ Go to the Second Life web site for more information on partnering? | |||
436 | icon="alertmodal.tga" | 437 | icon="alertmodal.tga" |
437 | name="ClickUploadHelpPermissions" | 438 | name="ClickUploadHelpPermissions" |
438 | type="alertmodal"> | 439 | type="alertmodal"> |
439 | Your default permissions may not work in older regions. | 440 | Your default permissions may not work in older regions. |
440 | </notification> | 441 | </notification> |
441 | 442 | ||
442 | <notification | 443 | <notification |
443 | icon="alertmodal.tga" | 444 | icon="alertmodal.tga" |
444 | name="ClickWebProfileHelpAvatar" | 445 | name="ClickWebProfileHelpAvatar" |
445 | type="alertmodal"> | 446 | type="alertmodal"> |
446 | If this Resident has set a web profile URL then you can: | 447 | If this Resident has set a web profile URL then you can: |
447 | * Click 'Load' to see the page in this Web tab. | 448 | * Click 'Load' to see the page in this Web tab. |
448 | * Click Load > 'In external browser' to view the page in your default web browser. | 449 | * Click Load > 'In external browser' to view the page in your default web browser. |
449 | * Click Load > 'Home URL' to return to this Resident's web profile if you've navigated away. | 450 | * Click Load > 'Home URL' to return to this Resident's web profile if you've navigated away. |
450 | 451 | ||
451 | When viewing your own profile, you can enter any URL as your web profile and click OK to set it. | 452 | When viewing your own profile, you can enter any URL as your web profile and click OK to set it. |
452 | Other residents can visit the URL you set when they look at your profile. | 453 | Other residents can visit the URL you set when they look at your profile. |
453 | </notification> | 454 | </notification> |
454 | 455 | ||
455 | <notification | 456 | <notification |
456 | icon="alertmodal.tga" | 457 | icon="alertmodal.tga" |
457 | name="JoinGroupCanAfford" | 458 | name="JoinGroupCanAfford" |
458 | type="alertmodal"> | 459 | type="alertmodal"> |
459 | Joining this group costs L$[COST]. | 460 | Joining this group costs L$[COST]. |
460 | Do you wish to proceed? | 461 | Do you wish to proceed? |
461 | <usetemplate | 462 | <usetemplate |
462 | name="okcancelbuttons" | 463 | name="okcancelbuttons" |
463 | notext="Cancel" | 464 | notext="Cancel" |
@@ -468,15 +469,15 @@ Do you wish to proceed? | |||
468 | icon="alertmodal.tga" | 469 | icon="alertmodal.tga" |
469 | name="JoinGroupCannotAfford" | 470 | name="JoinGroupCannotAfford" |
470 | type="alertmodal"> | 471 | type="alertmodal"> |
471 | Joining this group costs L$[COST]. | 472 | Joining this group costs L$[COST]. |
472 | You do not have enough L$ to join this group. | 473 | You do not have enough L$ to join this group. |
473 | </notification> | 474 | </notification> |
474 | 475 | ||
475 | <notification | 476 | <notification |
476 | icon="alertmodal.tga" | 477 | icon="alertmodal.tga" |
477 | name="LandBuyPass" | 478 | name="LandBuyPass" |
478 | type="alertmodal"> | 479 | type="alertmodal"> |
479 | For L$[COST] you can enter this land ('[PARCEL_NAME]') for [TIME] hours. Buy a pass? | 480 | For L$[COST] you can enter this land ('[PARCEL_NAME]') for [TIME] hours. Buy a pass? |
480 | <usetemplate | 481 | <usetemplate |
481 | name="okcancelbuttons" | 482 | name="okcancelbuttons" |
482 | notext="Cancel" | 483 | notext="Cancel" |
@@ -487,8 +488,8 @@ For L$[COST] you can enter this land ('[PARCEL_NAME]') for [TIME] hour | |||
487 | icon="alertmodal.tga" | 488 | icon="alertmodal.tga" |
488 | name="SalePriceRestriction" | 489 | name="SalePriceRestriction" |
489 | type="alertmodal"> | 490 | type="alertmodal"> |
490 | Sale price must be set to more than L$0 if selling to anyone. | 491 | Sale price must be set to more than L$0 if selling to anyone. |
491 | Please select an individual to sell to if selling for L$0. | 492 | Please select an individual to sell to if selling for L$0. |
492 | </notification> | 493 | </notification> |
493 | 494 | ||
494 | <notification | 495 | <notification |
@@ -496,8 +497,8 @@ Please select an individual to sell to if selling for L$0. | |||
496 | name="ConfirmLandSaleChange" | 497 | name="ConfirmLandSaleChange" |
497 | priority="high" | 498 | priority="high" |
498 | type="alertmodal"> | 499 | type="alertmodal"> |
499 | The selected [LAND_SIZE] m² land is being set for sale. | 500 | The selected [LAND_SIZE] m² land is being set for sale. |
500 | Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME]. | 501 | Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME]. |
501 | <usetemplate | 502 | <usetemplate |
502 | name="okcancelbuttons" | 503 | name="okcancelbuttons" |
503 | notext="Cancel" | 504 | notext="Cancel" |
@@ -508,10 +509,10 @@ Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NA | |||
508 | icon="alertmodal.tga" | 509 | icon="alertmodal.tga" |
509 | name="ConfirmLandSaleToAnyoneChange" | 510 | name="ConfirmLandSaleToAnyoneChange" |
510 | type="alertmodal"> | 511 | type="alertmodal"> |
511 | ATTENTION: Clicking 'sell to anyone' makes your land available to the entire Second Life community, even those not in this region. | 512 | ATTENTION: Clicking 'sell to anyone' makes your land available to the entire Second Life community, even those not in this region. |
512 | 513 | ||
513 | The selected [LAND_SIZE] m² land is being set for sale. | 514 | The selected [LAND_SIZE] m² land is being set for sale. |
514 | Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME]. | 515 | Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME]. |
515 | <usetemplate | 516 | <usetemplate |
516 | name="okcancelbuttons" | 517 | name="okcancelbuttons" |
517 | notext="Cancel" | 518 | notext="Cancel" |
@@ -522,11 +523,11 @@ Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NA | |||
522 | icon="alertmodal.tga" | 523 | icon="alertmodal.tga" |
523 | name="ReturnObjectsDeededToGroup" | 524 | name="ReturnObjectsDeededToGroup" |
524 | type="alertmodal"> | 525 | type="alertmodal"> |
525 | Are you sure you want to return all objects shared with the group '[NAME]' on this parcel of land back to their previous owner's inventory? | 526 | Are you sure you want to return all objects shared with the group '[NAME]' on this parcel of land back to their previous owner's inventory? |
526 | 527 | ||
527 | *WARNING* This will delete the non-transferable objects deeded to the group! | 528 | *WARNING* This will delete the non-transferable objects deeded to the group! |
528 | 529 | ||
529 | Objects: [N] | 530 | Objects: [N] |
530 | <usetemplate | 531 | <usetemplate |
531 | name="okcancelbuttons" | 532 | name="okcancelbuttons" |
532 | notext="Cancel" | 533 | notext="Cancel" |
@@ -537,9 +538,9 @@ Objects: [N] | |||
537 | icon="alertmodal.tga" | 538 | icon="alertmodal.tga" |
538 | name="ReturnObjectsOwnedByUser" | 539 | name="ReturnObjectsOwnedByUser" |
539 | type="alertmodal"> | 540 | type="alertmodal"> |
540 | Are you sure you want to return all objects owned by the Resident '[NAME]' on this parcel of land back to their inventory? | 541 | Are you sure you want to return all objects owned by the Resident '[NAME]' on this parcel of land back to their inventory? |
541 | 542 | ||
542 | Objects: [N] | 543 | Objects: [N] |
543 | <usetemplate | 544 | <usetemplate |
544 | name="okcancelbuttons" | 545 | name="okcancelbuttons" |
545 | notext="Cancel" | 546 | notext="Cancel" |
@@ -550,9 +551,9 @@ Objects: [N] | |||
550 | icon="alertmodal.tga" | 551 | icon="alertmodal.tga" |
551 | name="ReturnObjectsOwnedBySelf" | 552 | name="ReturnObjectsOwnedBySelf" |
552 | type="alertmodal"> | 553 | type="alertmodal"> |
553 | Are you sure you want to return all objects owned by you on this parcel of land back to your inventory? | 554 | Are you sure you want to return all objects owned by you on this parcel of land back to your inventory? |
554 | 555 | ||
555 | Objects: [N] | 556 | Objects: [N] |
556 | <usetemplate | 557 | <usetemplate |
557 | name="okcancelbuttons" | 558 | name="okcancelbuttons" |
558 | notext="Cancel" | 559 | notext="Cancel" |
@@ -563,12 +564,12 @@ Objects: [N] | |||
563 | icon="alertmodal.tga" | 564 | icon="alertmodal.tga" |
564 | name="ReturnObjectsNotOwnedBySelf" | 565 | name="ReturnObjectsNotOwnedBySelf" |
565 | type="alertmodal"> | 566 | type="alertmodal"> |
566 | Are you sure you want to return all objects NOT owned by you on this parcel of land back to their owner's inventory? | 567 | Are you sure you want to return all objects NOT owned by you on this parcel of land back to their owner's inventory? |
567 | Transferable objects deeded to a group will be returned to their previous owners. | 568 | Transferable objects deeded to a group will be returned to their previous owners. |
568 | 569 | ||
569 | *WARNING* This will delete the non-transferable objects deeded to the group! | 570 | *WARNING* This will delete the non-transferable objects deeded to the group! |
570 | 571 | ||
571 | Objects: [N] | 572 | Objects: [N] |
572 | <usetemplate | 573 | <usetemplate |
573 | name="okcancelbuttons" | 574 | name="okcancelbuttons" |
574 | notext="Cancel" | 575 | notext="Cancel" |
@@ -579,12 +580,12 @@ Objects: [N] | |||
579 | icon="alertmodal.tga" | 580 | icon="alertmodal.tga" |
580 | name="ReturnObjectsNotOwnedByUser" | 581 | name="ReturnObjectsNotOwnedByUser" |
581 | type="alertmodal"> | 582 | type="alertmodal"> |
582 | Are you sure you want to return all objects NOT owned by [NAME] on this parcel of land back to their owner's inventory? | 583 | Are you sure you want to return all objects NOT owned by [NAME] on this parcel of land back to their owner's inventory? |
583 | Transferable objects deeded to a group will be returned to their previous owners. | 584 | Transferable objects deeded to a group will be returned to their previous owners. |
584 | 585 | ||
585 | *WARNING* This will delete the non-transferable objects deeded to the group! | 586 | *WARNING* This will delete the non-transferable objects deeded to the group! |
586 | 587 | ||
587 | Objects: [N] | 588 | Objects: [N] |
588 | <usetemplate | 589 | <usetemplate |
589 | name="okcancelbuttons" | 590 | name="okcancelbuttons" |
590 | notext="Cancel" | 591 | notext="Cancel" |
@@ -595,7 +596,7 @@ Objects: [N] | |||
595 | icon="alertmodal.tga" | 596 | icon="alertmodal.tga" |
596 | name="ReturnAllTopObjects" | 597 | name="ReturnAllTopObjects" |
597 | type="alertmodal"> | 598 | type="alertmodal"> |
598 | Are you sure you want to return all listed objects back to their owner's inventory? | 599 | Are you sure you want to return all listed objects back to their owner's inventory? |
599 | <usetemplate | 600 | <usetemplate |
600 | name="okcancelbuttons" | 601 | name="okcancelbuttons" |
601 | notext="Cancel" | 602 | notext="Cancel" |
@@ -606,7 +607,7 @@ Are you sure you want to return all listed objects back to their owner's in | |||
606 | icon="alertmodal.tga" | 607 | icon="alertmodal.tga" |
607 | name="DisableAllTopObjects" | 608 | name="DisableAllTopObjects" |
608 | type="alertmodal"> | 609 | type="alertmodal"> |
609 | Are you sure you want to disable all objects in this region? | 610 | Are you sure you want to disable all objects in this region? |
610 | <usetemplate | 611 | <usetemplate |
611 | name="okcancelbuttons" | 612 | name="okcancelbuttons" |
612 | notext="Cancel" | 613 | notext="Cancel" |
@@ -617,9 +618,9 @@ Are you sure you want to disable all objects in this region? | |||
617 | icon="alertmodal.tga" | 618 | icon="alertmodal.tga" |
618 | name="ReturnObjectsNotOwnedByGroup" | 619 | name="ReturnObjectsNotOwnedByGroup" |
619 | type="alertmodal"> | 620 | type="alertmodal"> |
620 | Return the objects on this parcel of land that are NOT shared with the group [NAME] back to their owners? | 621 | Return the objects on this parcel of land that are NOT shared with the group [NAME] back to their owners? |
621 | 622 | ||
622 | Objects: [N] | 623 | Objects: [N] |
623 | <usetemplate | 624 | <usetemplate |
624 | name="okcancelbuttons" | 625 | name="okcancelbuttons" |
625 | notext="Cancel" | 626 | notext="Cancel" |
@@ -630,37 +631,37 @@ Objects: [N] | |||
630 | icon="alertmodal.tga" | 631 | icon="alertmodal.tga" |
631 | name="UnableToDisableOutsideScripts" | 632 | name="UnableToDisableOutsideScripts" |
632 | type="alertmodal"> | 633 | type="alertmodal"> |
633 | Can not disable scripts. | 634 | Can not disable scripts. |
634 | This entire region is damage enabled. | 635 | This entire region is damage enabled. |
635 | Scripts must be allowed to run for weapons to work. | 636 | Scripts must be allowed to run for weapons to work. |
636 | </notification> | 637 | </notification> |
637 | 638 | ||
638 | <notification | 639 | <notification |
639 | icon="alertmodal.tga" | 640 | icon="alertmodal.tga" |
640 | name="MustBeInParcel" | 641 | name="MustBeInParcel" |
641 | type="alertmodal"> | 642 | type="alertmodal"> |
642 | You must be standing inside the land parcel to set its Landing Point. | 643 | You must be standing inside the land parcel to set its Landing Point. |
643 | </notification> | 644 | </notification> |
644 | 645 | ||
645 | <notification | 646 | <notification |
646 | icon="alertmodal.tga" | 647 | icon="alertmodal.tga" |
647 | name="PromptRecipientEmail" | 648 | name="PromptRecipientEmail" |
648 | type="alertmodal"> | 649 | type="alertmodal"> |
649 | Please enter a valid email address for the recipient(s). | 650 | Please enter a valid email address for the recipient(s). |
650 | </notification> | 651 | </notification> |
651 | 652 | ||
652 | <notification | 653 | <notification |
653 | icon="alertmodal.tga" | 654 | icon="alertmodal.tga" |
654 | name="PromptSelfEmail" | 655 | name="PromptSelfEmail" |
655 | type="alertmodal"> | 656 | type="alertmodal"> |
656 | Please enter your email address. | 657 | Please enter your email address. |
657 | </notification> | 658 | </notification> |
658 | 659 | ||
659 | <notification | 660 | <notification |
660 | icon="alertmodal.tga" | 661 | icon="alertmodal.tga" |
661 | name="PromptMissingSubjMsg" | 662 | name="PromptMissingSubjMsg" |
662 | type="alertmodal"> | 663 | type="alertmodal"> |
663 | Email snapshot with the default subject or message? | 664 | Email snapshot with the default subject or message? |
664 | <usetemplate | 665 | <usetemplate |
665 | name="okcancelbuttons" | 666 | name="okcancelbuttons" |
666 | notext="Cancel" | 667 | notext="Cancel" |
@@ -671,67 +672,67 @@ Email snapshot with the default subject or message? | |||
671 | icon="alertmodal.tga" | 672 | icon="alertmodal.tga" |
672 | name="ErrorProcessingSnapshot" | 673 | name="ErrorProcessingSnapshot" |
673 | type="alertmodal"> | 674 | type="alertmodal"> |
674 | Error processing snapshot data | 675 | Error processing snapshot data |
675 | </notification> | 676 | </notification> |
676 | 677 | ||
677 | <notification | 678 | <notification |
678 | icon="alertmodal.tga" | 679 | icon="alertmodal.tga" |
679 | name="ErrorEncodingSnapshot" | 680 | name="ErrorEncodingSnapshot" |
680 | type="alertmodal"> | 681 | type="alertmodal"> |
681 | Error encoding snapshot. | 682 | Error encoding snapshot. |
682 | </notification> | 683 | </notification> |
683 | 684 | ||
684 | <notification | 685 | <notification |
685 | icon="alertmodal.tga" | 686 | icon="alertmodal.tga" |
686 | name="ErrorUploadingPostcard" | 687 | name="ErrorUploadingPostcard" |
687 | type="alertmodal"> | 688 | type="alertmodal"> |
688 | There was a problem sending a snapshot due to the following reason: [REASON] | 689 | There was a problem sending a snapshot due to the following reason: [REASON] |
689 | </notification> | 690 | </notification> |
690 | 691 | ||
691 | <notification | 692 | <notification |
692 | icon="alertmodal.tga" | 693 | icon="alertmodal.tga" |
693 | name="ErrorUploadingReportScreenshot" | 694 | name="ErrorUploadingReportScreenshot" |
694 | type="alertmodal"> | 695 | type="alertmodal"> |
695 | There was a problem uploading a report screenshot due to the following reason: [REASON] | 696 | There was a problem uploading a report screenshot due to the following reason: [REASON] |
696 | </notification> | 697 | </notification> |
697 | 698 | ||
698 | <notification | 699 | <notification |
699 | icon="alertmodal.tga" | 700 | icon="alertmodal.tga" |
700 | name="MustAgreeToLogIn" | 701 | name="MustAgreeToLogIn" |
701 | type="alertmodal"> | 702 | type="alertmodal"> |
702 | You must agree to the Terms of Service to continue logging into [SECOND_LIFE]. | 703 | You must agree to the Terms of Service to continue logging into [SECOND_LIFE]. |
703 | </notification> | 704 | </notification> |
704 | 705 | ||
705 | <notification | 706 | <notification |
706 | icon="alertmodal.tga" | 707 | icon="alertmodal.tga" |
707 | name="CouldNotPutOnOutfit" | 708 | name="CouldNotPutOnOutfit" |
708 | type="alertmodal"> | 709 | type="alertmodal"> |
709 | Could not put on outfit. | 710 | Could not put on outfit. |
710 | The outfit folder contains no clothing, body parts, or attachments. | 711 | The outfit folder contains no clothing, body parts, or attachments. |
711 | </notification> | 712 | </notification> |
712 | 713 | ||
713 | <notification | 714 | <notification |
714 | icon="alertmodal.tga" | 715 | icon="alertmodal.tga" |
715 | name="CannotWearTrash" | 716 | name="CannotWearTrash" |
716 | type="alertmodal"> | 717 | type="alertmodal"> |
717 | You can not wear clothes or body parts that are in the trash | 718 | You can not wear clothes or body parts that are in the trash |
718 | </notification> | 719 | </notification> |
719 | 720 | ||
720 | <notification | 721 | <notification |
721 | icon="alertmodal.tga" | 722 | icon="alertmodal.tga" |
722 | name="CannotWearInfoNotComplete" | 723 | name="CannotWearInfoNotComplete" |
723 | type="alertmodal"> | 724 | type="alertmodal"> |
724 | You can not wear that item because it has not yet loaded. Please try again in a minute. | 725 | You can not wear that item because it has not yet loaded. Please try again in a minute. |
725 | </notification> | 726 | </notification> |
726 | 727 | ||
727 | <notification | 728 | <notification |
728 | icon="alertmodal.tga" | 729 | icon="alertmodal.tga" |
729 | name="MustHaveAccountToLogIn" | 730 | name="MustHaveAccountToLogIn" |
730 | type="alertmodal"> | 731 | type="alertmodal"> |
731 | Oops! Something was left blank. | 732 | Oops! Something was left blank. |
732 | You need to enter both the First and Last name of your avatar. | 733 | You need to enter both the First and Last name of your avatar. |
733 | 734 | ||
734 | You need an account to enter [SECOND_LIFE]. Would you like to create one now? | 735 | You need an account to enter [SECOND_LIFE]. Would you like to create one now? |
735 | <usetemplate | 736 | <usetemplate |
736 | name="okcancelbuttons" | 737 | name="okcancelbuttons" |
737 | notext="Try again" | 738 | notext="Try again" |
@@ -742,10 +743,10 @@ You need an account to enter [SECOND_LIFE]. Would you like to create one now? | |||
742 | icon="alertmodal.tga" | 743 | icon="alertmodal.tga" |
743 | name="AddClassified" | 744 | name="AddClassified" |
744 | type="alertmodal"> | 745 | type="alertmodal"> |
745 | Classified ads appear in the 'Classified' section of the Search directory and on www.secondlife.com for one week. | 746 | Classified ads appear in the 'Classified' section of the Search directory and on www.secondlife.com for one week. |
746 | Fill out your ad, then click 'Publish...' to add it to the directory. | 747 | Fill out your ad, then click 'Publish...' to add it to the directory. |
747 | You'll be asked for a price to pay when clicking Publish. | 748 | You'll be asked for a price to pay when clicking Publish. |
748 | Paying more makes your ad appear higher in the list, and also appear higher when people search for keywords. | 749 | Paying more makes your ad appear higher in the list, and also appear higher when people search for keywords. |
749 | <usetemplate | 750 | <usetemplate |
750 | ignoretext="When adding a new Classified" | 751 | ignoretext="When adding a new Classified" |
751 | name="okcancelignore" | 752 | name="okcancelignore" |
@@ -757,8 +758,8 @@ Paying more makes your ad appear higher in the list, and also appear higher when | |||
757 | icon="alertmodal.tga" | 758 | icon="alertmodal.tga" |
758 | name="DeleteClassified" | 759 | name="DeleteClassified" |
759 | type="alertmodal"> | 760 | type="alertmodal"> |
760 | Delete classified '[NAME]'? | 761 | Delete classified '[NAME]'? |
761 | There is no reimbursement for fees paid. | 762 | There is no reimbursement for fees paid. |
762 | <usetemplate | 763 | <usetemplate |
763 | name="okcancelbuttons" | 764 | name="okcancelbuttons" |
764 | notext="Cancel" | 765 | notext="Cancel" |
@@ -769,7 +770,7 @@ There is no reimbursement for fees paid. | |||
769 | icon="alertmodal.tga" | 770 | icon="alertmodal.tga" |
770 | name="ClassifiedSave" | 771 | name="ClassifiedSave" |
771 | type="alertmodal"> | 772 | type="alertmodal"> |
772 | Save changes to classified [NAME]? | 773 | Save changes to classified [NAME]? |
773 | <usetemplate | 774 | <usetemplate |
774 | canceltext="Cancel" | 775 | canceltext="Cancel" |
775 | name="yesnocancelbuttons" | 776 | name="yesnocancelbuttons" |
@@ -781,7 +782,7 @@ Save changes to classified [NAME]? | |||
781 | icon="alertmodal.tga" | 782 | icon="alertmodal.tga" |
782 | name="DeleteAvatarPick" | 783 | name="DeleteAvatarPick" |
783 | type="alertmodal"> | 784 | type="alertmodal"> |
784 | Delete pick [PICK]? | 785 | Delete pick [PICK]? |
785 | <usetemplate | 786 | <usetemplate |
786 | name="okcancelbuttons" | 787 | name="okcancelbuttons" |
787 | notext="Cancel" | 788 | notext="Cancel" |
@@ -792,7 +793,7 @@ Delete pick [PICK]? | |||
792 | icon="alertmodal.tga" | 793 | icon="alertmodal.tga" |
793 | name="PromptGoToEventsPage" | 794 | name="PromptGoToEventsPage" |
794 | type="alertmodal"> | 795 | type="alertmodal"> |
795 | Go to the [SECOND_LIFE] events web page? | 796 | Go to the [SECOND_LIFE] events web page? |
796 | <usetemplate | 797 | <usetemplate |
797 | name="okcancelbuttons" | 798 | name="okcancelbuttons" |
798 | notext="Cancel" | 799 | notext="Cancel" |
@@ -803,21 +804,21 @@ Go to the [SECOND_LIFE] events web page? | |||
803 | icon="alertmodal.tga" | 804 | icon="alertmodal.tga" |
804 | name="SelectProposalToView" | 805 | name="SelectProposalToView" |
805 | type="alertmodal"> | 806 | type="alertmodal"> |
806 | Please select a proposal to view. | 807 | Please select a proposal to view. |
807 | </notification> | 808 | </notification> |
808 | 809 | ||
809 | <notification | 810 | <notification |
810 | icon="alertmodal.tga" | 811 | icon="alertmodal.tga" |
811 | name="SelectHistoryItemToView" | 812 | name="SelectHistoryItemToView" |
812 | type="alertmodal"> | 813 | type="alertmodal"> |
813 | Please select a history item to view. | 814 | Please select a history item to view. |
814 | </notification> | 815 | </notification> |
815 | 816 | ||
816 | <notification | 817 | <notification |
817 | icon="alertmodal.tga" | 818 | icon="alertmodal.tga" |
818 | name="ResetShowNextTimeDialogs" | 819 | name="ResetShowNextTimeDialogs" |
819 | type="alertmodal"> | 820 | type="alertmodal"> |
820 | Would you like to re-enable all these popups, which you previously indicated 'Don't show me again'? | 821 | Would you like to re-enable all these popups, which you previously indicated 'Don't show me again'? |
821 | <usetemplate | 822 | <usetemplate |
822 | name="okcancelbuttons" | 823 | name="okcancelbuttons" |
823 | notext="Cancel" | 824 | notext="Cancel" |
@@ -828,7 +829,7 @@ Would you like to re-enable all these popups, which you previously indicated &ap | |||
828 | icon="alertmodal.tga" | 829 | icon="alertmodal.tga" |
829 | name="SkipShowNextTimeDialogs" | 830 | name="SkipShowNextTimeDialogs" |
830 | type="alertmodal"> | 831 | type="alertmodal"> |
831 | Would you like to disable all popups which can be skipped? | 832 | Would you like to disable all popups which can be skipped? |
832 | <usetemplate | 833 | <usetemplate |
833 | name="okcancelbuttons" | 834 | name="okcancelbuttons" |
834 | notext="Cancel" | 835 | notext="Cancel" |
@@ -839,36 +840,36 @@ Would you like to disable all popups which can be skipped? | |||
839 | icon="alertmodal.tga" | 840 | icon="alertmodal.tga" |
840 | name="CacheWillClear" | 841 | name="CacheWillClear" |
841 | type="alertmodal"> | 842 | type="alertmodal"> |
842 | Cache will be cleared after you restart [SECOND_LIFE]. | 843 | Cache will be cleared after you restart [SECOND_LIFE]. |
843 | </notification> | 844 | </notification> |
844 | 845 | ||
845 | <notification | 846 | <notification |
846 | icon="alertmodal.tga" | 847 | icon="alertmodal.tga" |
847 | name="CacheWillBeMoved" | 848 | name="CacheWillBeMoved" |
848 | type="alertmodal"> | 849 | type="alertmodal"> |
849 | Cache will be moved after you restart [SECOND_LIFE]. | 850 | Cache will be moved after you restart [SECOND_LIFE]. |
850 | Note: This will clear the cache. | 851 | Note: This will clear the cache. |
851 | </notification> | 852 | </notification> |
852 | 853 | ||
853 | <notification | 854 | <notification |
854 | icon="alertmodal.tga" | 855 | icon="alertmodal.tga" |
855 | name="ChangeConnectionPort" | 856 | name="ChangeConnectionPort" |
856 | type="alertmodal"> | 857 | type="alertmodal"> |
857 | Port settings take effect after you restart [SECOND_LIFE]. | 858 | Port settings take effect after you restart [SECOND_LIFE]. |
858 | </notification> | 859 | </notification> |
859 | 860 | ||
860 | <notification | 861 | <notification |
861 | icon="alertmodal.tga" | 862 | icon="alertmodal.tga" |
862 | name="ChangeSkin" | 863 | name="ChangeSkin" |
863 | type="alertmodal"> | 864 | type="alertmodal"> |
864 | The new skin will appear after you restart [SECOND_LIFE]. | 865 | The new skin will appear after you restart [SECOND_LIFE]. |
865 | </notification> | 866 | </notification> |
866 | 867 | ||
867 | <notification | 868 | <notification |
868 | icon="alertmodal.tga" | 869 | icon="alertmodal.tga" |
869 | name="GoToAuctionPage" | 870 | name="GoToAuctionPage" |
870 | type="alertmodal"> | 871 | type="alertmodal"> |
871 | Go to the [SECOND_LIFE] web page to see auction details or make a bid? | 872 | Go to the [SECOND_LIFE] web page to see auction details or make a bid? |
872 | <usetemplate | 873 | <usetemplate |
873 | name="okcancelbuttons" | 874 | name="okcancelbuttons" |
874 | notext="Cancel" | 875 | notext="Cancel" |
@@ -879,7 +880,7 @@ Go to the [SECOND_LIFE] web page to see auction details or make a bid? | |||
879 | icon="alertmodal.tga" | 880 | icon="alertmodal.tga" |
880 | name="SaveChanges" | 881 | name="SaveChanges" |
881 | type="alertmodal"> | 882 | type="alertmodal"> |
882 | Save Changes? | 883 | Save Changes? |
883 | <usetemplate | 884 | <usetemplate |
884 | canceltext="Cancel" | 885 | canceltext="Cancel" |
885 | name="yesnocancelbuttons" | 886 | name="yesnocancelbuttons" |
@@ -891,55 +892,55 @@ Save Changes? | |||
891 | icon="alertmodal.tga" | 892 | icon="alertmodal.tga" |
892 | name="GestureSaveFailedTooManySteps" | 893 | name="GestureSaveFailedTooManySteps" |
893 | type="alertmodal"> | 894 | type="alertmodal"> |
894 | Gesture save failed. | 895 | Gesture save failed. |
895 | This gesture has too many steps. | 896 | This gesture has too many steps. |
896 | Try removing some steps, then save again. | 897 | Try removing some steps, then save again. |
897 | </notification> | 898 | </notification> |
898 | 899 | ||
899 | <notification | 900 | <notification |
900 | icon="alertmodal.tga" | 901 | icon="alertmodal.tga" |
901 | name="GestureSaveFailedTryAgain" | 902 | name="GestureSaveFailedTryAgain" |
902 | type="alertmodal"> | 903 | type="alertmodal"> |
903 | Gesture save failed. Please try again in a minute. | 904 | Gesture save failed. Please try again in a minute. |
904 | </notification> | 905 | </notification> |
905 | 906 | ||
906 | <notification | 907 | <notification |
907 | icon="alertmodal.tga" | 908 | icon="alertmodal.tga" |
908 | name="GestureSaveFailedObjectNotFound" | 909 | name="GestureSaveFailedObjectNotFound" |
909 | type="alertmodal"> | 910 | type="alertmodal"> |
910 | Could not save gesture because the object or the associated object inventory could not be found. | 911 | Could not save gesture because the object or the associated object inventory could not be found. |
911 | The object may be out of range or may have been deleted. | 912 | The object may be out of range or may have been deleted. |
912 | </notification> | 913 | </notification> |
913 | 914 | ||
914 | <notification | 915 | <notification |
915 | icon="alertmodal.tga" | 916 | icon="alertmodal.tga" |
916 | name="GestureSaveFailedReason" | 917 | name="GestureSaveFailedReason" |
917 | type="alertmodal"> | 918 | type="alertmodal"> |
918 | There was a problem saving a gesture due to the following reason: [REASON]. Please try resaving the gesture later. | 919 | There was a problem saving a gesture due to the following reason: [REASON]. Please try resaving the gesture later. |
919 | </notification> | 920 | </notification> |
920 | 921 | ||
921 | <notification | 922 | <notification |
922 | icon="alertmodal.tga" | 923 | icon="alertmodal.tga" |
923 | name="SaveNotecardFailObjectNotFound" | 924 | name="SaveNotecardFailObjectNotFound" |
924 | type="alertmodal"> | 925 | type="alertmodal"> |
925 | Could not save notecard because the object or the associated object inventory could not be found. | 926 | Could not save notecard because the object or the associated object inventory could not be found. |
926 | The object may be out of range or may have been deleted. | 927 | The object may be out of range or may have been deleted. |
927 | </notification> | 928 | </notification> |
928 | 929 | ||
929 | <notification | 930 | <notification |
930 | icon="alertmodal.tga" | 931 | icon="alertmodal.tga" |
931 | name="SaveNotecardFailReason" | 932 | name="SaveNotecardFailReason" |
932 | type="alertmodal"> | 933 | type="alertmodal"> |
933 | There was a problem saving a notecard due to the following reason: [REASON]. Please try re-saving the notecard later. | 934 | There was a problem saving a notecard due to the following reason: [REASON]. Please try re-saving the notecard later. |
934 | </notification> | 935 | </notification> |
935 | 936 | ||
936 | <notification | 937 | <notification |
937 | icon="alertmodal.tga" | 938 | icon="alertmodal.tga" |
938 | name="ScriptCannotUndo" | 939 | name="ScriptCannotUndo" |
939 | type="alertmodal"> | 940 | type="alertmodal"> |
940 | Could not undo all changes in your version of the script. | 941 | Could not undo all changes in your version of the script. |
941 | Would you like to load the server's last saved version? | 942 | Would you like to load the server's last saved version? |
942 | (**Warning** This operation cannot be undone.) | 943 | (**Warning** This operation cannot be undone.) |
943 | <usetemplate | 944 | <usetemplate |
944 | name="okcancelbuttons" | 945 | name="okcancelbuttons" |
945 | notext="Cancel" | 946 | notext="Cancel" |
@@ -950,57 +951,57 @@ Would you like to load the server's last saved version? | |||
950 | icon="alertmodal.tga" | 951 | icon="alertmodal.tga" |
951 | name="SaveScriptFailReason" | 952 | name="SaveScriptFailReason" |
952 | type="alertmodal"> | 953 | type="alertmodal"> |
953 | There was a problem saving a script due to the following reason: [REASON]. Please try re-saving the script later. | 954 | There was a problem saving a script due to the following reason: [REASON]. Please try re-saving the script later. |
954 | </notification> | 955 | </notification> |
955 | 956 | ||
956 | <notification | 957 | <notification |
957 | icon="alertmodal.tga" | 958 | icon="alertmodal.tga" |
958 | name="SaveScriptFailObjectNotFound" | 959 | name="SaveScriptFailObjectNotFound" |
959 | type="alertmodal"> | 960 | type="alertmodal"> |
960 | Could not save the script because the object it is in could not be found. | 961 | Could not save the script because the object it is in could not be found. |
961 | The object may be out of range or may have been deleted. | 962 | The object may be out of range or may have been deleted. |
962 | </notification> | 963 | </notification> |
963 | 964 | ||
964 | <notification | 965 | <notification |
965 | icon="alertmodal.tga" | 966 | icon="alertmodal.tga" |
966 | name="SaveBytecodeFailReason" | 967 | name="SaveBytecodeFailReason" |
967 | type="alertmodal"> | 968 | type="alertmodal"> |
968 | There was a problem saving a compiled script due to the following reason: [REASON]. Please try re-saving the script later. | 969 | There was a problem saving a compiled script due to the following reason: [REASON]. Please try re-saving the script later. |
969 | </notification> | 970 | </notification> |
970 | 971 | ||
971 | <notification | 972 | <notification |
972 | icon="alertmodal.tga" | 973 | icon="alertmodal.tga" |
973 | name="CouldNotStartStopScript" | 974 | name="CouldNotStartStopScript" |
974 | type="alertmodal"> | 975 | type="alertmodal"> |
975 | Could not start or stop the script because the object it is on could not be found. | 976 | Could not start or stop the script because the object it is on could not be found. |
976 | The object may be out of range or may have been deleted. | 977 | The object may be out of range or may have been deleted. |
977 | </notification> | 978 | </notification> |
978 | 979 | ||
979 | <notification | 980 | <notification |
980 | icon="alertmodal.tga" | 981 | icon="alertmodal.tga" |
981 | name="CannotDownloadFile" | 982 | name="CannotDownloadFile" |
982 | type="alertmodal"> | 983 | type="alertmodal"> |
983 | Unable to download file | 984 | Unable to download file |
984 | </notification> | 985 | </notification> |
985 | 986 | ||
986 | <notification | 987 | <notification |
987 | icon="alertmodal.tga" | 988 | icon="alertmodal.tga" |
988 | name="CannotWriteFile" | 989 | name="CannotWriteFile" |
989 | type="alertmodal"> | 990 | type="alertmodal"> |
990 | Unable to write file [[FILE]] | 991 | Unable to write file [[FILE]] |
991 | </notification> | 992 | </notification> |
992 | 993 | ||
993 | <notification | 994 | <notification |
994 | icon="alertmodal.tga" | 995 | icon="alertmodal.tga" |
995 | name="UnsupportedHardware" | 996 | name="UnsupportedHardware" |
996 | type="alertmodal"> | 997 | type="alertmodal"> |
997 | Warning: Your system does not meet Second Life's minimum system requirements. If you continue using Second Life, you may experience poor performance. Unfortunately, we cannot provide technical support for unsupported system configurations. | 998 | Warning: Your system does not meet Second Life's minimum system requirements. If you continue using Second Life, you may experience poor performance. Unfortunately, we cannot provide technical support for unsupported system configurations. |
998 | 999 | ||
999 | MINSPECS | 1000 | MINSPECS |
1000 | Do you wish to visit [_URL] for more information? | 1001 | Do you wish to visit [_URL] for more information? |
1001 | <url option="0" name="url"> | 1002 | <url option="0" name="url"> |
1002 | 1003 | ||
1003 | http://www.secondlife.com/corporate/sysreqs.php | 1004 | http://www.secondlife.com/corporate/sysreqs.php |
1004 | </url> | 1005 | </url> |
1005 | <usetemplate | 1006 | <usetemplate |
1006 | ignoretext="When detecting unsupported hardware" | 1007 | ignoretext="When detecting unsupported hardware" |
@@ -1013,9 +1014,9 @@ Do you wish to visit [_URL] for more information? | |||
1013 | icon="alertmodal.tga" | 1014 | icon="alertmodal.tga" |
1014 | name="UnknownGPU" | 1015 | name="UnknownGPU" |
1015 | type="alertmodal"> | 1016 | type="alertmodal"> |
1016 | Your system contains a graphics card that is unknown to us at this time. | 1017 | Your system contains a graphics card that is unknown to us at this time. |
1017 | This is often the case with new hardware we haven't had a chance to test. Second Life will most likely run properly, but you may need to adjust your graphics settings to something more appropriate. | 1018 | This is often the case with new hardware we haven't had a chance to test. Second Life will most likely run properly, but you may need to adjust your graphics settings to something more appropriate. |
1018 | (Edit menu > Preferences > Graphics). | 1019 | (Edit menu > Preferences > Graphics). |
1019 | <form name="form"> | 1020 | <form name="form"> |
1020 | <ignore name="ignore" | 1021 | <ignore name="ignore" |
1021 | text="When detecting an unknown graphics card"/> | 1022 | text="When detecting an unknown graphics card"/> |
@@ -1026,25 +1027,25 @@ This is often the case with new hardware we haven't had a chance to test. | |||
1026 | icon="alertmodal.tga" | 1027 | icon="alertmodal.tga" |
1027 | name="DisplaySettingsNoShaders" | 1028 | name="DisplaySettingsNoShaders" |
1028 | type="alertmodal"> | 1029 | type="alertmodal"> |
1029 | [SECOND_LIFE] crashed while initializing graphics drivers. | 1030 | [SECOND_LIFE] crashed while initializing graphics drivers. |
1030 | Graphics Quality will be set to low to avoid some common driver errors. | 1031 | Graphics Quality will be set to low to avoid some common driver errors. |
1031 | This will disable some graphics features. | 1032 | This will disable some graphics features. |
1032 | We recommend updating your graphics card drivers. | 1033 | We recommend updating your graphics card drivers. |
1033 | Graphics Quality can be raised in Preferences > Graphics. | 1034 | Graphics Quality can be raised in Preferences > Graphics. |
1034 | </notification> | 1035 | </notification> |
1035 | 1036 | ||
1036 | <notification | 1037 | <notification |
1037 | icon="alertmodal.tga" | 1038 | icon="alertmodal.tga" |
1038 | name="RegionNoTerraforming" | 1039 | name="RegionNoTerraforming" |
1039 | type="alertmodal"> | 1040 | type="alertmodal"> |
1040 | The region [REGION] does not allow terraforming. | 1041 | The region [REGION] does not allow terraforming. |
1041 | </notification> | 1042 | </notification> |
1042 | 1043 | ||
1043 | <notification | 1044 | <notification |
1044 | icon="alertmodal.tga" | 1045 | icon="alertmodal.tga" |
1045 | name="CannotCopyWarning" | 1046 | name="CannotCopyWarning" |
1046 | type="alertmodal"> | 1047 | type="alertmodal"> |
1047 | You do not have permission to copy this item and will lose it from your inventory if you give it away. Do you really want to offer this item? | 1048 | You do not have permission to copy this item and will lose it from your inventory if you give it away. Do you really want to offer this item? |
1048 | <usetemplate | 1049 | <usetemplate |
1049 | name="okcancelbuttons" | 1050 | name="okcancelbuttons" |
1050 | notext="No" | 1051 | notext="No" |
@@ -1055,36 +1056,36 @@ You do not have permission to copy this item and will lose it from your inventor | |||
1055 | icon="alertmodal.tga" | 1056 | icon="alertmodal.tga" |
1056 | name="CannotGiveItem" | 1057 | name="CannotGiveItem" |
1057 | type="alertmodal"> | 1058 | type="alertmodal"> |
1058 | Unable to give inventory item. | 1059 | Unable to give inventory item. |
1059 | </notification> | 1060 | </notification> |
1060 | 1061 | ||
1061 | <notification | 1062 | <notification |
1062 | icon="alertmodal.tga" | 1063 | icon="alertmodal.tga" |
1063 | name="TransactionCancelled" | 1064 | name="TransactionCancelled" |
1064 | type="alertmodal"> | 1065 | type="alertmodal"> |
1065 | Transaction cancelled. | 1066 | Transaction cancelled. |
1066 | </notification> | 1067 | </notification> |
1067 | 1068 | ||
1068 | <notification | 1069 | <notification |
1069 | icon="alertmodal.tga" | 1070 | icon="alertmodal.tga" |
1070 | name="TooManyItems" | 1071 | name="TooManyItems" |
1071 | type="alertmodal"> | 1072 | type="alertmodal"> |
1072 | Cannot give more than 42 items in a single inventory transfer. | 1073 | Cannot give more than 42 items in a single inventory transfer. |
1073 | </notification> | 1074 | </notification> |
1074 | 1075 | ||
1075 | <notification | 1076 | <notification |
1076 | icon="alertmodal.tga" | 1077 | icon="alertmodal.tga" |
1077 | name="NoItems" | 1078 | name="NoItems" |
1078 | type="alertmodal"> | 1079 | type="alertmodal"> |
1079 | You do not have permission to transfer the selected items. | 1080 | You do not have permission to transfer the selected items. |
1080 | </notification> | 1081 | </notification> |
1081 | 1082 | ||
1082 | <notification | 1083 | <notification |
1083 | icon="alertmodal.tga" | 1084 | icon="alertmodal.tga" |
1084 | name="CannotCopyCountItems" | 1085 | name="CannotCopyCountItems" |
1085 | type="alertmodal"> | 1086 | type="alertmodal"> |
1086 | You do not have permission to copy [COUNT] of the selected items. You will lose these items from your inventory. | 1087 | You do not have permission to copy [COUNT] of the selected items. You will lose these items from your inventory. |
1087 | Do you really want to give these items? | 1088 | Do you really want to give these items? |
1088 | <usetemplate | 1089 | <usetemplate |
1089 | name="okcancelbuttons" | 1090 | name="okcancelbuttons" |
1090 | notext="No" | 1091 | notext="No" |
@@ -1095,15 +1096,15 @@ Do you really want to give these items? | |||
1095 | icon="alertmodal.tga" | 1096 | icon="alertmodal.tga" |
1096 | name="CannotGiveCategory" | 1097 | name="CannotGiveCategory" |
1097 | type="alertmodal"> | 1098 | type="alertmodal"> |
1098 | You do not have permission to transfer the selected folder. | 1099 | You do not have permission to transfer the selected folder. |
1099 | </notification> | 1100 | </notification> |
1100 | 1101 | ||
1101 | <notification | 1102 | <notification |
1102 | icon="alertmodal.tga" | 1103 | icon="alertmodal.tga" |
1103 | name="FreezeAvatar" | 1104 | name="FreezeAvatar" |
1104 | type="alertmodal"> | 1105 | type="alertmodal"> |
1105 | Freeze this avatar? | 1106 | Freeze this avatar? |
1106 | He or she will temporarily be unable to move, chat, or interact with the world. | 1107 | He or she will temporarily be unable to move, chat, or interact with the world. |
1107 | <usetemplate | 1108 | <usetemplate |
1108 | canceltext="Cancel" | 1109 | canceltext="Cancel" |
1109 | name="yesnocancelbuttons" | 1110 | name="yesnocancelbuttons" |
@@ -1115,8 +1116,8 @@ He or she will temporarily be unable to move, chat, or interact with the world. | |||
1115 | icon="alertmodal.tga" | 1116 | icon="alertmodal.tga" |
1116 | name="FreezeAvatarFullname" | 1117 | name="FreezeAvatarFullname" |
1117 | type="alertmodal"> | 1118 | type="alertmodal"> |
1118 | Freeze [AVATAR_NAME]? | 1119 | Freeze [AVATAR_NAME]? |
1119 | He or she will temporarily be unable to move, chat, or interact with the world. | 1120 | He or she will temporarily be unable to move, chat, or interact with the world. |
1120 | <usetemplate | 1121 | <usetemplate |
1121 | canceltext="Cancel" | 1122 | canceltext="Cancel" |
1122 | name="yesnocancelbuttons" | 1123 | name="yesnocancelbuttons" |
@@ -1128,7 +1129,7 @@ He or she will temporarily be unable to move, chat, or interact with the world. | |||
1128 | icon="alertmodal.tga" | 1129 | icon="alertmodal.tga" |
1129 | name="EjectAvatarFullname" | 1130 | name="EjectAvatarFullname" |
1130 | type="alertmodal"> | 1131 | type="alertmodal"> |
1131 | Eject [AVATAR_NAME] from your land? | 1132 | Eject [AVATAR_NAME] from your land? |
1132 | <usetemplate | 1133 | <usetemplate |
1133 | canceltext="Cancel" | 1134 | canceltext="Cancel" |
1134 | name="yesnocancelbuttons" | 1135 | name="yesnocancelbuttons" |
@@ -1140,7 +1141,7 @@ Eject [AVATAR_NAME] from your land? | |||
1140 | icon="alertmodal.tga" | 1141 | icon="alertmodal.tga" |
1141 | name="EjectAvatarNoBan" | 1142 | name="EjectAvatarNoBan" |
1142 | type="alertmodal"> | 1143 | type="alertmodal"> |
1143 | Eject this avatar from your land? | 1144 | Eject this avatar from your land? |
1144 | <usetemplate | 1145 | <usetemplate |
1145 | name="okcancelbuttons" | 1146 | name="okcancelbuttons" |
1146 | notext="Cancel" | 1147 | notext="Cancel" |
@@ -1151,7 +1152,7 @@ Eject this avatar from your land? | |||
1151 | icon="alertmodal.tga" | 1152 | icon="alertmodal.tga" |
1152 | name="EjectAvatarFullnameNoBan" | 1153 | name="EjectAvatarFullnameNoBan" |
1153 | type="alertmodal"> | 1154 | type="alertmodal"> |
1154 | Eject [AVATAR_NAME] from your land? | 1155 | Eject [AVATAR_NAME] from your land? |
1155 | <usetemplate | 1156 | <usetemplate |
1156 | name="okcancelbuttons" | 1157 | name="okcancelbuttons" |
1157 | notext="Cancel" | 1158 | notext="Cancel" |
@@ -1162,24 +1163,24 @@ Eject [AVATAR_NAME] from your land? | |||
1162 | icon="alertmodal.tga" | 1163 | icon="alertmodal.tga" |
1163 | name="AcquireErrorTooManyObjects" | 1164 | name="AcquireErrorTooManyObjects" |
1164 | type="alertmodal"> | 1165 | type="alertmodal"> |
1165 | ACQUIRE ERROR: Too many objects selected. | 1166 | ACQUIRE ERROR: Too many objects selected. |
1166 | </notification> | 1167 | </notification> |
1167 | 1168 | ||
1168 | <notification | 1169 | <notification |
1169 | icon="alertmodal.tga" | 1170 | icon="alertmodal.tga" |
1170 | name="AcquireErrorObjectSpan" | 1171 | name="AcquireErrorObjectSpan" |
1171 | type="alertmodal"> | 1172 | type="alertmodal"> |
1172 | ACQUIRE ERROR: Objects span more than one region. | 1173 | ACQUIRE ERROR: Objects span more than one region. |
1173 | Please move all objects to be acquired onto the same region. | 1174 | Please move all objects to be acquired onto the same region. |
1174 | </notification> | 1175 | </notification> |
1175 | 1176 | ||
1176 | <notification | 1177 | <notification |
1177 | icon="alertmodal.tga" | 1178 | icon="alertmodal.tga" |
1178 | name="PromptGoToCurrencyPage" | 1179 | name="PromptGoToCurrencyPage" |
1179 | type="alertmodal"> | 1180 | type="alertmodal"> |
1180 | [EXTRA] | 1181 | [EXTRA] |
1181 | 1182 | ||
1182 | Go to [URL] for information on purchasing currency? | 1183 | Go to [URL] for information on purchasing currency? |
1183 | <usetemplate | 1184 | <usetemplate |
1184 | name="okcancelbuttons" | 1185 | name="okcancelbuttons" |
1185 | notext="Cancel" | 1186 | notext="Cancel" |
@@ -1190,50 +1191,50 @@ Go to [URL] for information on purchasing currency? | |||
1190 | icon="alertmodal.tga" | 1191 | icon="alertmodal.tga" |
1191 | name="UnableToLinkObjects" | 1192 | name="UnableToLinkObjects" |
1192 | type="alertmodal"> | 1193 | type="alertmodal"> |
1193 | Unable to link these [COUNT] objects. | 1194 | Unable to link these [COUNT] objects. |
1194 | You can link a maximum of [MAX] objects. | 1195 | You can link a maximum of [MAX] objects. |
1195 | </notification> | 1196 | </notification> |
1196 | 1197 | ||
1197 | <notification | 1198 | <notification |
1198 | icon="alertmodal.tga" | 1199 | icon="alertmodal.tga" |
1199 | name="CannotLinkIncompleteSet" | 1200 | name="CannotLinkIncompleteSet" |
1200 | type="alertmodal"> | 1201 | type="alertmodal"> |
1201 | You can only link complete sets of objects, and must select more than one object. | 1202 | You can only link complete sets of objects, and must select more than one object. |
1202 | </notification> | 1203 | </notification> |
1203 | 1204 | ||
1204 | <notification | 1205 | <notification |
1205 | icon="alertmodal.tga" | 1206 | icon="alertmodal.tga" |
1206 | name="CannotLinkModify" | 1207 | name="CannotLinkModify" |
1207 | type="alertmodal"> | 1208 | type="alertmodal"> |
1208 | Unable to link because you don't have modify permission on all the objects. | 1209 | Unable to link because you don't have modify permission on all the objects. |
1209 | 1210 | ||
1210 | Please make sure none are locked, and that you own all of them. | 1211 | Please make sure none are locked, and that you own all of them. |
1211 | </notification> | 1212 | </notification> |
1212 | 1213 | ||
1213 | <notification | 1214 | <notification |
1214 | icon="alertmodal.tga" | 1215 | icon="alertmodal.tga" |
1215 | name="CannotLinkDifferentOwners" | 1216 | name="CannotLinkDifferentOwners" |
1216 | type="alertmodal"> | 1217 | type="alertmodal"> |
1217 | Unable to link because not all of the objects have the same owner. | 1218 | Unable to link because not all of the objects have the same owner. |
1218 | 1219 | ||
1219 | Please make sure you own all of the selected objects. | 1220 | Please make sure you own all of the selected objects. |
1220 | </notification> | 1221 | </notification> |
1221 | 1222 | ||
1222 | <notification | 1223 | <notification |
1223 | icon="alertmodal.tga" | 1224 | icon="alertmodal.tga" |
1224 | name="NoFileExtension" | 1225 | name="NoFileExtension" |
1225 | type="alertmodal"> | 1226 | type="alertmodal"> |
1226 | No file extension for the file: '[FILE]' | 1227 | No file extension for the file: '[FILE]' |
1227 | 1228 | ||
1228 | Please make sure the file has a correct file extension. | 1229 | Please make sure the file has a correct file extension. |
1229 | </notification> | 1230 | </notification> |
1230 | 1231 | ||
1231 | <notification | 1232 | <notification |
1232 | icon="alertmodal.tga" | 1233 | icon="alertmodal.tga" |
1233 | name="InvalidFileExtension" | 1234 | name="InvalidFileExtension" |
1234 | type="alertmodal"> | 1235 | type="alertmodal"> |
1235 | Invalid file extension [EXTENSION] | 1236 | Invalid file extension [EXTENSION] |
1236 | Expected [VALIDS] | 1237 | Expected [VALIDS] |
1237 | <usetemplate | 1238 | <usetemplate |
1238 | name="okbutton" | 1239 | name="okbutton" |
1239 | yestext="OK"/> | 1240 | yestext="OK"/> |
@@ -1243,213 +1244,213 @@ Expected [VALIDS] | |||
1243 | icon="alertmodal.tga" | 1244 | icon="alertmodal.tga" |
1244 | name="CannotUploadSoundFile" | 1245 | name="CannotUploadSoundFile" |
1245 | type="alertmodal"> | 1246 | type="alertmodal"> |
1246 | Couldn't open uploaded sound file for reading: | 1247 | Couldn't open uploaded sound file for reading: |
1247 | [FILE] | 1248 | [FILE] |
1248 | </notification> | 1249 | </notification> |
1249 | 1250 | ||
1250 | <notification | 1251 | <notification |
1251 | icon="alertmodal.tga" | 1252 | icon="alertmodal.tga" |
1252 | name="SoundFileNotRIFF" | 1253 | name="SoundFileNotRIFF" |
1253 | type="alertmodal"> | 1254 | type="alertmodal"> |
1254 | File does not appear to be a RIFF WAVE file: | 1255 | File does not appear to be a RIFF WAVE file: |
1255 | [FILE] | 1256 | [FILE] |
1256 | </notification> | 1257 | </notification> |
1257 | 1258 | ||
1258 | <notification | 1259 | <notification |
1259 | icon="alertmodal.tga" | 1260 | icon="alertmodal.tga" |
1260 | name="SoundFileNotPCM" | 1261 | name="SoundFileNotPCM" |
1261 | type="alertmodal"> | 1262 | type="alertmodal"> |
1262 | File does not appear to be a PCM WAVE audio file: | 1263 | File does not appear to be a PCM WAVE audio file: |
1263 | [FILE] | 1264 | [FILE] |
1264 | </notification> | 1265 | </notification> |
1265 | 1266 | ||
1266 | <notification | 1267 | <notification |
1267 | icon="alertmodal.tga" | 1268 | icon="alertmodal.tga" |
1268 | name="SoundFileInvalidChannelCount" | 1269 | name="SoundFileInvalidChannelCount" |
1269 | type="alertmodal"> | 1270 | type="alertmodal"> |
1270 | File has invalid number of channels (must be mono or stereo): | 1271 | File has invalid number of channels (must be mono or stereo): |
1271 | [FILE] | 1272 | [FILE] |
1272 | </notification> | 1273 | </notification> |
1273 | 1274 | ||
1274 | <notification | 1275 | <notification |
1275 | icon="alertmodal.tga" | 1276 | icon="alertmodal.tga" |
1276 | name="SoundFileInvalidSampleRate" | 1277 | name="SoundFileInvalidSampleRate" |
1277 | type="alertmodal"> | 1278 | type="alertmodal"> |
1278 | File does not appear to be a supported sample rate (must be 44.1k): | 1279 | File does not appear to be a supported sample rate (must be 44.1k): |
1279 | [FILE] | 1280 | [FILE] |
1280 | </notification> | 1281 | </notification> |
1281 | 1282 | ||
1282 | <notification | 1283 | <notification |
1283 | icon="alertmodal.tga" | 1284 | icon="alertmodal.tga" |
1284 | name="SoundFileInvalidWordSize" | 1285 | name="SoundFileInvalidWordSize" |
1285 | type="alertmodal"> | 1286 | type="alertmodal"> |
1286 | File does not appear to be a supported word size (must be 8 or 16 bit): | 1287 | File does not appear to be a supported word size (must be 8 or 16 bit): |
1287 | [FILE] | 1288 | [FILE] |
1288 | </notification> | 1289 | </notification> |
1289 | 1290 | ||
1290 | <notification | 1291 | <notification |
1291 | icon="alertmodal.tga" | 1292 | icon="alertmodal.tga" |
1292 | name="SoundFileInvalidHeader" | 1293 | name="SoundFileInvalidHeader" |
1293 | type="alertmodal"> | 1294 | type="alertmodal"> |
1294 | Could not find 'data' chunk in WAV header: | 1295 | Could not find 'data' chunk in WAV header: |
1295 | [FILE] | 1296 | [FILE] |
1296 | </notification> | 1297 | </notification> |
1297 | 1298 | ||
1298 | <notification | 1299 | <notification |
1299 | icon="alertmodal.tga" | 1300 | icon="alertmodal.tga" |
1300 | name="SoundFileInvalidTooLong" | 1301 | name="SoundFileInvalidTooLong" |
1301 | type="alertmodal"> | 1302 | type="alertmodal"> |
1302 | Audio file is too long (10 second maximum): | 1303 | Audio file is too long (10 second maximum): |
1303 | [FILE] | 1304 | [FILE] |
1304 | </notification> | 1305 | </notification> |
1305 | 1306 | ||
1306 | <notification | 1307 | <notification |
1307 | icon="alertmodal.tga" | 1308 | icon="alertmodal.tga" |
1308 | name="ProblemWithFile" | 1309 | name="ProblemWithFile" |
1309 | type="alertmodal"> | 1310 | type="alertmodal"> |
1310 | Problem with file [FILE]: | 1311 | Problem with file [FILE]: |
1311 | 1312 | ||
1312 | [ERROR] | 1313 | [ERROR] |
1313 | </notification> | 1314 | </notification> |
1314 | 1315 | ||
1315 | <notification | 1316 | <notification |
1316 | icon="alertmodal.tga" | 1317 | icon="alertmodal.tga" |
1317 | name="CannotOpenTemporarySoundFile" | 1318 | name="CannotOpenTemporarySoundFile" |
1318 | type="alertmodal"> | 1319 | type="alertmodal"> |
1319 | Couldn't open temporary compressed sound file for writing: [FILE] | 1320 | Couldn't open temporary compressed sound file for writing: [FILE] |
1320 | </notification> | 1321 | </notification> |
1321 | 1322 | ||
1322 | <notification | 1323 | <notification |
1323 | icon="alertmodal.tga" | 1324 | icon="alertmodal.tga" |
1324 | name="UnknownVorbisEncodeFailure" | 1325 | name="UnknownVorbisEncodeFailure" |
1325 | type="alertmodal"> | 1326 | type="alertmodal"> |
1326 | Unknown Vorbis encode failure on: [FILE] | 1327 | Unknown Vorbis encode failure on: [FILE] |
1327 | </notification> | 1328 | </notification> |
1328 | 1329 | ||
1329 | <notification | 1330 | <notification |
1330 | icon="alertmodal.tga" | 1331 | icon="alertmodal.tga" |
1331 | name="CannotEncodeFile" | 1332 | name="CannotEncodeFile" |
1332 | type="alertmodal"> | 1333 | type="alertmodal"> |
1333 | Unable to encode file: [FILE] | 1334 | Unable to encode file: [FILE] |
1334 | </notification> | 1335 | </notification> |
1335 | 1336 | ||
1336 | <notification | 1337 | <notification |
1337 | icon="alertmodal.tga" | 1338 | icon="alertmodal.tga" |
1338 | name="CorruptResourceFile" | 1339 | name="CorruptResourceFile" |
1339 | type="alertmodal"> | 1340 | type="alertmodal"> |
1340 | Corrupt resource file: [FILE] | 1341 | Corrupt resource file: [FILE] |
1341 | </notification> | 1342 | </notification> |
1342 | 1343 | ||
1343 | <notification | 1344 | <notification |
1344 | icon="alertmodal.tga" | 1345 | icon="alertmodal.tga" |
1345 | name="UnknownResourceFileVersion" | 1346 | name="UnknownResourceFileVersion" |
1346 | type="alertmodal"> | 1347 | type="alertmodal"> |
1347 | Unknown Linden resource file version in file: [FILE] | 1348 | Unknown Linden resource file version in file: [FILE] |
1348 | </notification> | 1349 | </notification> |
1349 | 1350 | ||
1350 | <notification | 1351 | <notification |
1351 | icon="alertmodal.tga" | 1352 | icon="alertmodal.tga" |
1352 | name="UnableToCreateOutputFile" | 1353 | name="UnableToCreateOutputFile" |
1353 | type="alertmodal"> | 1354 | type="alertmodal"> |
1354 | Unable to create output file: [FILE] | 1355 | Unable to create output file: [FILE] |
1355 | </notification> | 1356 | </notification> |
1356 | 1357 | ||
1357 | <notification | 1358 | <notification |
1358 | icon="alertmodal.tga" | 1359 | icon="alertmodal.tga" |
1359 | name="DoNotSupportBulkAnimationUpload" | 1360 | name="DoNotSupportBulkAnimationUpload" |
1360 | type="alertmodal"> | 1361 | type="alertmodal"> |
1361 | We do not currently support bulk upload of animation files. | 1362 | We do not currently support bulk upload of animation files. |
1362 | </notification> | 1363 | </notification> |
1363 | 1364 | ||
1364 | <notification | 1365 | <notification |
1365 | icon="alertmodal.tga" | 1366 | icon="alertmodal.tga" |
1366 | name="CannotUploadReason" | 1367 | name="CannotUploadReason" |
1367 | type="alertmodal"> | 1368 | type="alertmodal"> |
1368 | Unable to upload [FILE] due to the following reason: [REASON] | 1369 | Unable to upload [FILE] due to the following reason: [REASON] |
1369 | Please try again later. | 1370 | Please try again later. |
1370 | </notification> | 1371 | </notification> |
1371 | 1372 | ||
1372 | <notification | 1373 | <notification |
1373 | icon="alertmodal.tga" | 1374 | icon="alertmodal.tga" |
1374 | name="CannotCreateLandmarkNotOwner" | 1375 | name="CannotCreateLandmarkNotOwner" |
1375 | type="alertmodal"> | 1376 | type="alertmodal"> |
1376 | You cannot create a landmark here because the owner of the land doesn't allow it. | 1377 | You cannot create a landmark here because the owner of the land doesn't allow it. |
1377 | </notification> | 1378 | </notification> |
1378 | 1379 | ||
1379 | <notification | 1380 | <notification |
1380 | icon="alertmodal.tga" | 1381 | icon="alertmodal.tga" |
1381 | name="CannotRecompileSelectObjectsNoScripts" | 1382 | name="CannotRecompileSelectObjectsNoScripts" |
1382 | type="alertmodal"> | 1383 | type="alertmodal"> |
1383 | Not able to perform 'recompilation'. | 1384 | Not able to perform 'recompilation'. |
1384 | Select an object with a script. | 1385 | Select an object with a script. |
1385 | </notification> | 1386 | </notification> |
1386 | 1387 | ||
1387 | <notification | 1388 | <notification |
1388 | icon="alertmodal.tga" | 1389 | icon="alertmodal.tga" |
1389 | name="CannotRecompileSelectObjectsNoPermission" | 1390 | name="CannotRecompileSelectObjectsNoPermission" |
1390 | type="alertmodal"> | 1391 | type="alertmodal"> |
1391 | Not able to perform 'recompilation'. | 1392 | Not able to perform 'recompilation'. |
1392 | 1393 | ||
1393 | Select objects with scripts that you have permission to modify. | 1394 | Select objects with scripts that you have permission to modify. |
1394 | </notification> | 1395 | </notification> |
1395 | 1396 | ||
1396 | <notification | 1397 | <notification |
1397 | icon="alertmodal.tga" | 1398 | icon="alertmodal.tga" |
1398 | name="CannotResetSelectObjectsNoScripts" | 1399 | name="CannotResetSelectObjectsNoScripts" |
1399 | type="alertmodal"> | 1400 | type="alertmodal"> |
1400 | Not able to perform 'reset'. | 1401 | Not able to perform 'reset'. |
1401 | 1402 | ||
1402 | Select objects with scripts. | 1403 | Select objects with scripts. |
1403 | </notification> | 1404 | </notification> |
1404 | 1405 | ||
1405 | <notification | 1406 | <notification |
1406 | icon="alertmodal.tga" | 1407 | icon="alertmodal.tga" |
1407 | name="CannotResetSelectObjectsNoPermission" | 1408 | name="CannotResetSelectObjectsNoPermission" |
1408 | type="alertmodal"> | 1409 | type="alertmodal"> |
1409 | Not able to perform 'reset'. | 1410 | Not able to perform 'reset'. |
1410 | 1411 | ||
1411 | Select objects with scripts that you have permission to modify. | 1412 | Select objects with scripts that you have permission to modify. |
1412 | </notification> | 1413 | </notification> |
1413 | 1414 | ||
1414 | <notification | 1415 | <notification |
1415 | icon="alertmodal.tga" | 1416 | icon="alertmodal.tga" |
1416 | name="CannotSetRunningSelectObjectsNoScripts" | 1417 | name="CannotSetRunningSelectObjectsNoScripts" |
1417 | type="alertmodal"> | 1418 | type="alertmodal"> |
1418 | Not able to set any scripts to 'running'. | 1419 | Not able to set any scripts to 'running'. |
1419 | 1420 | ||
1420 | Select objects with scripts. | 1421 | Select objects with scripts. |
1421 | </notification> | 1422 | </notification> |
1422 | 1423 | ||
1423 | <notification | 1424 | <notification |
1424 | icon="alertmodal.tga" | 1425 | icon="alertmodal.tga" |
1425 | name="CannotSetRunningNotSelectObjectsNoScripts" | 1426 | name="CannotSetRunningNotSelectObjectsNoScripts" |
1426 | type="alertmodal"> | 1427 | type="alertmodal"> |
1427 | Unable to set any scripts to 'not running'. | 1428 | Unable to set any scripts to 'not running'. |
1428 | 1429 | ||
1429 | Select objects with scripts. | 1430 | Select objects with scripts. |
1430 | </notification> | 1431 | </notification> |
1431 | 1432 | ||
1432 | <notification | 1433 | <notification |
1433 | icon="alertmodal.tga" | 1434 | icon="alertmodal.tga" |
1434 | name="NoFrontmostFloater" | 1435 | name="NoFrontmostFloater" |
1435 | type="alertmodal"> | 1436 | type="alertmodal"> |
1436 | No frontmost floater to save. | 1437 | No frontmost floater to save. |
1437 | </notification> | 1438 | </notification> |
1438 | 1439 | ||
1439 | <notification | 1440 | <notification |
1440 | icon="alertmodal.tga" | 1441 | icon="alertmodal.tga" |
1441 | name="SeachFilteredOnShortWords" | 1442 | name="SeachFilteredOnShortWords" |
1442 | type="alertmodal"> | 1443 | type="alertmodal"> |
1443 | Your search query was modified and the words that were too short were removed. | 1444 | Your search query was modified and the words that were too short were removed. |
1444 | 1445 | ||
1445 | Searched for: [FINALQUERY] | 1446 | Searched for: [FINALQUERY] |
1446 | </notification> | 1447 | </notification> |
1447 | 1448 | ||
1448 | <notification | 1449 | <notification |
1449 | icon="alertmodal.tga" | 1450 | icon="alertmodal.tga" |
1450 | name="SeachFilteredOnShortWordsEmpty" | 1451 | name="SeachFilteredOnShortWordsEmpty" |
1451 | type="alertmodal"> | 1452 | type="alertmodal"> |
1452 | Your search terms were too short so no search was performed. | 1453 | Your search terms were too short so no search was performed. |
1453 | </notification> | 1454 | </notification> |
1454 | 1455 | ||
1455 | <!-- Generic Teleport failure modes - strings will be inserted from | 1456 | <!-- Generic Teleport failure modes - strings will be inserted from |
@@ -1458,8 +1459,8 @@ Your search terms were too short so no search was performed. | |||
1458 | icon="alertmodal.tga" | 1459 | icon="alertmodal.tga" |
1459 | name="CouldNotTeleportReason" | 1460 | name="CouldNotTeleportReason" |
1460 | type="alertmodal"> | 1461 | type="alertmodal"> |
1461 | Could not teleport. | 1462 | Could not teleport. |
1462 | [REASON] | 1463 | [REASON] |
1463 | </notification> | 1464 | </notification> |
1464 | 1465 | ||
1465 | <!-- Teleport failure modes not delivered via the generic mechanism | 1466 | <!-- Teleport failure modes not delivered via the generic mechanism |
@@ -1470,97 +1471,97 @@ Could not teleport. | |||
1470 | icon="alertmodal.tga" | 1471 | icon="alertmodal.tga" |
1471 | name="invalid_tport" | 1472 | name="invalid_tport" |
1472 | type="alertmodal"> | 1473 | type="alertmodal"> |
1473 | Problem encountered processing your teleport request. You may need to log back in before you can teleport. If you continue to get this message, please check the Tech Support FAQ at: | 1474 | Problem encountered processing your teleport request. You may need to log back in before you can teleport. If you continue to get this message, please check the Tech Support FAQ at: |
1474 | www.secondlife.com/support | 1475 | www.secondlife.com/support |
1475 | </notification> | 1476 | </notification> |
1476 | <notification | 1477 | <notification |
1477 | icon="alertmodal.tga" | 1478 | icon="alertmodal.tga" |
1478 | name="invalid_region_handoff" | 1479 | name="invalid_region_handoff" |
1479 | type="alertmodal"> | 1480 | type="alertmodal"> |
1480 | Problem encountered processing your region crossing. You may need to log back in before you can cross regions. If you continue to get this message, please check the Tech Support FAQ at: | 1481 | Problem encountered processing your region crossing. You may need to log back in before you can cross regions. If you continue to get this message, please check the Tech Support FAQ at: |
1481 | www.secondlife.com/support | 1482 | www.secondlife.com/support |
1482 | </notification> | 1483 | </notification> |
1483 | <notification | 1484 | <notification |
1484 | icon="alertmodal.tga" | 1485 | icon="alertmodal.tga" |
1485 | name="blocked_tport" | 1486 | name="blocked_tport" |
1486 | type="alertmodal"> | 1487 | type="alertmodal"> |
1487 | Sorry, teleport is currently blocked. Try again in a moment. If you still cannot teleport, please log out and log back in to resolve the problem. | 1488 | Sorry, teleport is currently blocked. Try again in a moment. If you still cannot teleport, please log out and log back in to resolve the problem. |
1488 | </notification> | 1489 | </notification> |
1489 | <notification | 1490 | <notification |
1490 | icon="alertmodal.tga" | 1491 | icon="alertmodal.tga" |
1491 | name="nolandmark_tport" | 1492 | name="nolandmark_tport" |
1492 | type="alertmodal"> | 1493 | type="alertmodal"> |
1493 | Sorry, but system was unable to locate landmark destination. | 1494 | Sorry, but system was unable to locate landmark destination. |
1494 | </notification> | 1495 | </notification> |
1495 | <notification | 1496 | <notification |
1496 | icon="alertmodal.tga" | 1497 | icon="alertmodal.tga" |
1497 | name="timeout_tport" | 1498 | name="timeout_tport" |
1498 | type="alertmodal"> | 1499 | type="alertmodal"> |
1499 | Sorry, but system was unable to complete the teleport connection. Try again in a moment. | 1500 | Sorry, but system was unable to complete the teleport connection. Try again in a moment. |
1500 | </notification> | 1501 | </notification> |
1501 | <notification | 1502 | <notification |
1502 | icon="alertmodal.tga" | 1503 | icon="alertmodal.tga" |
1503 | name="noaccess_tport" | 1504 | name="noaccess_tport" |
1504 | type="alertmodal"> | 1505 | type="alertmodal"> |
1505 | Sorry, you do not have access to that teleport destination. | 1506 | Sorry, you do not have access to that teleport destination. |
1506 | </notification> | 1507 | </notification> |
1507 | <notification | 1508 | <notification |
1508 | icon="alertmodal.tga" | 1509 | icon="alertmodal.tga" |
1509 | name="missing_attach_tport" | 1510 | name="missing_attach_tport" |
1510 | type="alertmodal"> | 1511 | type="alertmodal"> |
1511 | Your attachments have not arrived yet. Try waiting for a few more seconds or log out and back in again before attempting to teleport. | 1512 | Your attachments have not arrived yet. Try waiting for a few more seconds or log out and back in again before attempting to teleport. |
1512 | </notification> | 1513 | </notification> |
1513 | <notification | 1514 | <notification |
1514 | icon="alertmodal.tga" | 1515 | icon="alertmodal.tga" |
1515 | name="too_many_uploads_tport" | 1516 | name="too_many_uploads_tport" |
1516 | type="alertmodal"> | 1517 | type="alertmodal"> |
1517 | The asset queue in this region is currently clogged so your teleport request will not be able to succeed in a timely manner. Please try again in a few minutes or go to a less busy area. | 1518 | The asset queue in this region is currently clogged so your teleport request will not be able to succeed in a timely manner. Please try again in a few minutes or go to a less busy area. |
1518 | </notification> | 1519 | </notification> |
1519 | <notification | 1520 | <notification |
1520 | icon="alertmodal.tga" | 1521 | icon="alertmodal.tga" |
1521 | name="expired_tport" | 1522 | name="expired_tport" |
1522 | type="alertmodal"> | 1523 | type="alertmodal"> |
1523 | Sorry, but the system was unable to complete your teleport request in a timely fashion. Please try again in a few minutes. | 1524 | Sorry, but the system was unable to complete your teleport request in a timely fashion. Please try again in a few minutes. |
1524 | </notification> | 1525 | </notification> |
1525 | <notification | 1526 | <notification |
1526 | icon="alertmodal.tga" | 1527 | icon="alertmodal.tga" |
1527 | name="expired_region_handoff" | 1528 | name="expired_region_handoff" |
1528 | type="alertmodal"> | 1529 | type="alertmodal"> |
1529 | Sorry, but the system was unable to complete your region crossing in a timely fashion. Please try again in a few minutes. | 1530 | Sorry, but the system was unable to complete your region crossing in a timely fashion. Please try again in a few minutes. |
1530 | </notification> | 1531 | </notification> |
1531 | <notification | 1532 | <notification |
1532 | icon="alertmodal.tga" | 1533 | icon="alertmodal.tga" |
1533 | name="no_host" | 1534 | name="no_host" |
1534 | type="alertmodal"> | 1535 | type="alertmodal"> |
1535 | Unable to find teleport destination. The destination may be temporarily unavailable or no longer exists. Please try again in a few minutes. | 1536 | Unable to find teleport destination. The destination may be temporarily unavailable or no longer exists. Please try again in a few minutes. |
1536 | </notification> | 1537 | </notification> |
1537 | <notification | 1538 | <notification |
1538 | icon="alertmodal.tga" | 1539 | icon="alertmodal.tga" |
1539 | name="no_inventory_host" | 1540 | name="no_inventory_host" |
1540 | type="alertmodal"> | 1541 | type="alertmodal"> |
1541 | The inventory system is currently unavailable. | 1542 | The inventory system is currently unavailable. |
1542 | </notification> | 1543 | </notification> |
1543 | 1544 | ||
1544 | <notification | 1545 | <notification |
1545 | icon="alertmodal.tga" | 1546 | icon="alertmodal.tga" |
1546 | name="CannotSetLandOwnerNothingSelected" | 1547 | name="CannotSetLandOwnerNothingSelected" |
1547 | type="alertmodal"> | 1548 | type="alertmodal"> |
1548 | Unable to set land owner: | 1549 | Unable to set land owner: |
1549 | No parcel selected. | 1550 | No parcel selected. |
1550 | </notification> | 1551 | </notification> |
1551 | 1552 | ||
1552 | <notification | 1553 | <notification |
1553 | icon="alertmodal.tga" | 1554 | icon="alertmodal.tga" |
1554 | name="CannotSetLandOwnerMultipleRegions" | 1555 | name="CannotSetLandOwnerMultipleRegions" |
1555 | type="alertmodal"> | 1556 | type="alertmodal"> |
1556 | Unable to force land ownership because selection spans multiple regions. Please select a smaller area and try again. | 1557 | Unable to force land ownership because selection spans multiple regions. Please select a smaller area and try again. |
1557 | </notification> | 1558 | </notification> |
1558 | 1559 | ||
1559 | <notification | 1560 | <notification |
1560 | icon="alertmodal.tga" | 1561 | icon="alertmodal.tga" |
1561 | name="ForceOwnerAuctionWarning" | 1562 | name="ForceOwnerAuctionWarning" |
1562 | type="alertmodal"> | 1563 | type="alertmodal"> |
1563 | This parcel is up for auction. Forcing ownership will cancel the auction and potentially make some residents unhappy if bidding has begun. Force ownership? | 1564 | This parcel is up for auction. Forcing ownership will cancel the auction and potentially make some residents unhappy if bidding has begun. Force ownership? |
1564 | <usetemplate | 1565 | <usetemplate |
1565 | name="okcancelbuttons" | 1566 | name="okcancelbuttons" |
1566 | notext="Cancel" | 1567 | notext="Cancel" |
@@ -1571,101 +1572,101 @@ This parcel is up for auction. Forcing ownership will cancel the auction and pot | |||
1571 | icon="alertmodal.tga" | 1572 | icon="alertmodal.tga" |
1572 | name="CannotContentifyNothingSelected" | 1573 | name="CannotContentifyNothingSelected" |
1573 | type="alertmodal"> | 1574 | type="alertmodal"> |
1574 | Unable to contentify: | 1575 | Unable to contentify: |
1575 | No parcel selected. | 1576 | No parcel selected. |
1576 | </notification> | 1577 | </notification> |
1577 | 1578 | ||
1578 | <notification | 1579 | <notification |
1579 | icon="alertmodal.tga" | 1580 | icon="alertmodal.tga" |
1580 | name="CannotContentifyNoRegion" | 1581 | name="CannotContentifyNoRegion" |
1581 | type="alertmodal"> | 1582 | type="alertmodal"> |
1582 | Unable to contentify: | 1583 | Unable to contentify: |
1583 | No region selected. | 1584 | No region selected. |
1584 | </notification> | 1585 | </notification> |
1585 | 1586 | ||
1586 | <notification | 1587 | <notification |
1587 | icon="alertmodal.tga" | 1588 | icon="alertmodal.tga" |
1588 | name="CannotReleaseLandNothingSelected" | 1589 | name="CannotReleaseLandNothingSelected" |
1589 | type="alertmodal"> | 1590 | type="alertmodal"> |
1590 | Unable to abandon land: | 1591 | Unable to abandon land: |
1591 | No parcel selected. | 1592 | No parcel selected. |
1592 | </notification> | 1593 | </notification> |
1593 | 1594 | ||
1594 | <notification | 1595 | <notification |
1595 | icon="alertmodal.tga" | 1596 | icon="alertmodal.tga" |
1596 | name="CannotReleaseLandNoRegion" | 1597 | name="CannotReleaseLandNoRegion" |
1597 | type="alertmodal"> | 1598 | type="alertmodal"> |
1598 | Unable to abandon land: | 1599 | Unable to abandon land: |
1599 | Cannot find region. | 1600 | Cannot find region. |
1600 | </notification> | 1601 | </notification> |
1601 | 1602 | ||
1602 | <notification | 1603 | <notification |
1603 | icon="alertmodal.tga" | 1604 | icon="alertmodal.tga" |
1604 | name="CannotBuyLandNothingSelected" | 1605 | name="CannotBuyLandNothingSelected" |
1605 | type="alertmodal"> | 1606 | type="alertmodal"> |
1606 | Unable to buy land: | 1607 | Unable to buy land: |
1607 | No parcel selected. | 1608 | No parcel selected. |
1608 | </notification> | 1609 | </notification> |
1609 | 1610 | ||
1610 | <notification | 1611 | <notification |
1611 | icon="alertmodal.tga" | 1612 | icon="alertmodal.tga" |
1612 | name="CannotBuyLandNoRegion" | 1613 | name="CannotBuyLandNoRegion" |
1613 | type="alertmodal"> | 1614 | type="alertmodal"> |
1614 | Unable to buy land: | 1615 | Unable to buy land: |
1615 | Cannot find the region this land is in. | 1616 | Cannot find the region this land is in. |
1616 | </notification> | 1617 | </notification> |
1617 | 1618 | ||
1618 | <notification | 1619 | <notification |
1619 | icon="alertmodal.tga" | 1620 | icon="alertmodal.tga" |
1620 | name="CannotCloseFloaterBuyLand" | 1621 | name="CannotCloseFloaterBuyLand" |
1621 | type="alertmodal"> | 1622 | type="alertmodal"> |
1622 | You cannot close the Buy Land window until Second Life estimates the price of this transaction. | 1623 | You cannot close the Buy Land window until Second Life estimates the price of this transaction. |
1623 | </notification> | 1624 | </notification> |
1624 | 1625 | ||
1625 | <notification | 1626 | <notification |
1626 | icon="alertmodal.tga" | 1627 | icon="alertmodal.tga" |
1627 | name="CannotDeedLandNothingSelected" | 1628 | name="CannotDeedLandNothingSelected" |
1628 | type="alertmodal"> | 1629 | type="alertmodal"> |
1629 | Unable to deed land: | 1630 | Unable to deed land: |
1630 | No parcel selected. | 1631 | No parcel selected. |
1631 | </notification> | 1632 | </notification> |
1632 | 1633 | ||
1633 | <notification | 1634 | <notification |
1634 | icon="alertmodal.tga" | 1635 | icon="alertmodal.tga" |
1635 | name="CannotDeedLandNoGroup" | 1636 | name="CannotDeedLandNoGroup" |
1636 | type="alertmodal"> | 1637 | type="alertmodal"> |
1637 | Unable to deed land: | 1638 | Unable to deed land: |
1638 | No Group selected. | 1639 | No Group selected. |
1639 | </notification> | 1640 | </notification> |
1640 | 1641 | ||
1641 | <notification | 1642 | <notification |
1642 | icon="alertmodal.tga" | 1643 | icon="alertmodal.tga" |
1643 | name="CannotDeedLandNoRegion" | 1644 | name="CannotDeedLandNoRegion" |
1644 | type="alertmodal"> | 1645 | type="alertmodal"> |
1645 | Unable to deed land: | 1646 | Unable to deed land: |
1646 | Cannot find the region this land is in. | 1647 | Cannot find the region this land is in. |
1647 | Please use Tools -> Report Bug to report this. | 1648 | Please use Tools -> Report Bug to report this. |
1648 | </notification> | 1649 | </notification> |
1649 | 1650 | ||
1650 | <notification | 1651 | <notification |
1651 | icon="alertmodal.tga" | 1652 | icon="alertmodal.tga" |
1652 | name="CannotDeedLandMultipleSelected" | 1653 | name="CannotDeedLandMultipleSelected" |
1653 | type="alertmodal"> | 1654 | type="alertmodal"> |
1654 | Unable to deed land: | 1655 | Unable to deed land: |
1655 | Multiple parcels selected. | 1656 | Multiple parcels selected. |
1656 | 1657 | ||
1657 | Try selecting a single parcel. | 1658 | Try selecting a single parcel. |
1658 | </notification> | 1659 | </notification> |
1659 | 1660 | ||
1660 | <notification | 1661 | <notification |
1661 | icon="alertmodal.tga" | 1662 | icon="alertmodal.tga" |
1662 | name="ParcelCanPlayMedia" | 1663 | name="ParcelCanPlayMedia" |
1663 | type="alertmodal"> | 1664 | type="alertmodal"> |
1664 | This location can play streaming media. | 1665 | This location can play streaming media. |
1665 | Streaming media requires a fast Internet connection. | 1666 | Streaming media requires a fast Internet connection. |
1666 | 1667 | ||
1667 | Play streaming media when available? | 1668 | Play streaming media when available? |
1668 | (You can change this option later under Preferences > Audio & Video.) | 1669 | (You can change this option later under Preferences > Audio & Video.) |
1669 | <usetemplate | 1670 | <usetemplate |
1670 | name="okcancelbuttons" | 1671 | name="okcancelbuttons" |
1671 | notext="Disable" | 1672 | notext="Disable" |
@@ -1676,85 +1677,85 @@ Play streaming media when available? | |||
1676 | icon="alertmodal.tga" | 1677 | icon="alertmodal.tga" |
1677 | name="CannotDeedLandWaitingForServer" | 1678 | name="CannotDeedLandWaitingForServer" |
1678 | type="alertmodal"> | 1679 | type="alertmodal"> |
1679 | Unable to deed land: | 1680 | Unable to deed land: |
1680 | Waiting for server to report ownership. | 1681 | Waiting for server to report ownership. |
1681 | 1682 | ||
1682 | Please try again. | 1683 | Please try again. |
1683 | </notification> | 1684 | </notification> |
1684 | 1685 | ||
1685 | <notification | 1686 | <notification |
1686 | icon="alertmodal.tga" | 1687 | icon="alertmodal.tga" |
1687 | name="CannotDeedLandNoTransfer" | 1688 | name="CannotDeedLandNoTransfer" |
1688 | type="alertmodal"> | 1689 | type="alertmodal"> |
1689 | Unable to deed land: | 1690 | Unable to deed land: |
1690 | The region [REGION] does not allow transfer of land. | 1691 | The region [REGION] does not allow transfer of land. |
1691 | </notification> | 1692 | </notification> |
1692 | 1693 | ||
1693 | <notification | 1694 | <notification |
1694 | icon="alertmodal.tga" | 1695 | icon="alertmodal.tga" |
1695 | name="CannotReleaseLandWatingForServer" | 1696 | name="CannotReleaseLandWatingForServer" |
1696 | type="alertmodal"> | 1697 | type="alertmodal"> |
1697 | Unable to abandon land: | 1698 | Unable to abandon land: |
1698 | Waiting for server to update parcel information. | 1699 | Waiting for server to update parcel information. |
1699 | 1700 | ||
1700 | Try again in a few seconds. | 1701 | Try again in a few seconds. |
1701 | </notification> | 1702 | </notification> |
1702 | 1703 | ||
1703 | <notification | 1704 | <notification |
1704 | icon="alertmodal.tga" | 1705 | icon="alertmodal.tga" |
1705 | name="CannotReleaseLandSelected" | 1706 | name="CannotReleaseLandSelected" |
1706 | type="alertmodal"> | 1707 | type="alertmodal"> |
1707 | Unable to abandon land: | 1708 | Unable to abandon land: |
1708 | You do not own all the parcels selected. | 1709 | You do not own all the parcels selected. |
1709 | 1710 | ||
1710 | Please select a single parcel. | 1711 | Please select a single parcel. |
1711 | </notification> | 1712 | </notification> |
1712 | 1713 | ||
1713 | <notification | 1714 | <notification |
1714 | icon="alertmodal.tga" | 1715 | icon="alertmodal.tga" |
1715 | name="CannotReleaseLandDontOwn" | 1716 | name="CannotReleaseLandDontOwn" |
1716 | type="alertmodal"> | 1717 | type="alertmodal"> |
1717 | Unable to abandon land: | 1718 | Unable to abandon land: |
1718 | You don't have permission to release this parcel. | 1719 | You don't have permission to release this parcel. |
1719 | Parcels you own appear in green. | 1720 | Parcels you own appear in green. |
1720 | </notification> | 1721 | </notification> |
1721 | 1722 | ||
1722 | <notification | 1723 | <notification |
1723 | icon="alertmodal.tga" | 1724 | icon="alertmodal.tga" |
1724 | name="CannotReleaseLandRegionNotFound" | 1725 | name="CannotReleaseLandRegionNotFound" |
1725 | type="alertmodal"> | 1726 | type="alertmodal"> |
1726 | Unable to abandon land: | 1727 | Unable to abandon land: |
1727 | Cannot find the region this land is in. | 1728 | Cannot find the region this land is in. |
1728 | 1729 | ||
1729 | Please use Tools -> Report Bug to report this. | 1730 | Please use Tools -> Report Bug to report this. |
1730 | </notification> | 1731 | </notification> |
1731 | 1732 | ||
1732 | <notification | 1733 | <notification |
1733 | icon="alertmodal.tga" | 1734 | icon="alertmodal.tga" |
1734 | name="CannotReleaseLandNoTransfer" | 1735 | name="CannotReleaseLandNoTransfer" |
1735 | type="alertmodal"> | 1736 | type="alertmodal"> |
1736 | Unable to abandon land: | 1737 | Unable to abandon land: |
1737 | The region [REGION] does not allow transfer of land. | 1738 | The region [REGION] does not allow transfer of land. |
1738 | </notification> | 1739 | </notification> |
1739 | 1740 | ||
1740 | <notification | 1741 | <notification |
1741 | icon="alertmodal.tga" | 1742 | icon="alertmodal.tga" |
1742 | name="CannotReleaseLandPartialSelection" | 1743 | name="CannotReleaseLandPartialSelection" |
1743 | type="alertmodal"> | 1744 | type="alertmodal"> |
1744 | Unable to abandon land: | 1745 | Unable to abandon land: |
1745 | You must select an entire parcel to release it. | 1746 | You must select an entire parcel to release it. |
1746 | 1747 | ||
1747 | Select an entire parcel, or divide your parcel first. | 1748 | Select an entire parcel, or divide your parcel first. |
1748 | </notification> | 1749 | </notification> |
1749 | 1750 | ||
1750 | <notification | 1751 | <notification |
1751 | icon="alertmodal.tga" | 1752 | icon="alertmodal.tga" |
1752 | name="ReleaseLandWarning" | 1753 | name="ReleaseLandWarning" |
1753 | type="alertmodal"> | 1754 | type="alertmodal"> |
1754 | You are about to release [AREA] m² of land. | 1755 | You are about to release [AREA] m² of land. |
1755 | Releasing this parcel will remove it from your land holdings, but will not grant any L$. | 1756 | Releasing this parcel will remove it from your land holdings, but will not grant any L$. |
1756 | 1757 | ||
1757 | Release this land? | 1758 | Release this land? |
1758 | <usetemplate | 1759 | <usetemplate |
1759 | name="okcancelbuttons" | 1760 | name="okcancelbuttons" |
1760 | notext="Cancel" | 1761 | notext="Cancel" |
@@ -1765,28 +1766,28 @@ Release this land? | |||
1765 | icon="alertmodal.tga" | 1766 | icon="alertmodal.tga" |
1766 | name="CannotDivideLandNothingSelected" | 1767 | name="CannotDivideLandNothingSelected" |
1767 | type="alertmodal"> | 1768 | type="alertmodal"> |
1768 | Unable to divide land: | 1769 | Unable to divide land: |
1769 | 1770 | ||
1770 | No parcels selected. | 1771 | No parcels selected. |
1771 | </notification> | 1772 | </notification> |
1772 | 1773 | ||
1773 | <notification | 1774 | <notification |
1774 | icon="alertmodal.tga" | 1775 | icon="alertmodal.tga" |
1775 | name="CannotDivideLandPartialSelection" | 1776 | name="CannotDivideLandPartialSelection" |
1776 | type="alertmodal"> | 1777 | type="alertmodal"> |
1777 | Unable to divide land: | 1778 | Unable to divide land: |
1778 | 1779 | ||
1779 | You have an entire parcel selected. | 1780 | You have an entire parcel selected. |
1780 | Try selecting a part of the parcel. | 1781 | Try selecting a part of the parcel. |
1781 | </notification> | 1782 | </notification> |
1782 | 1783 | ||
1783 | <notification | 1784 | <notification |
1784 | icon="alertmodal.tga" | 1785 | icon="alertmodal.tga" |
1785 | name="LandDivideWarning" | 1786 | name="LandDivideWarning" |
1786 | type="alertmodal"> | 1787 | type="alertmodal"> |
1787 | Dividing this land will split this parcel into two and each parcel can have its own settings. Some settings will be reset to defaults after the operation. | 1788 | Dividing this land will split this parcel into two and each parcel can have its own settings. Some settings will be reset to defaults after the operation. |
1788 | 1789 | ||
1789 | Divide land? | 1790 | Divide land? |
1790 | <usetemplate | 1791 | <usetemplate |
1791 | name="okcancelbuttons" | 1792 | name="okcancelbuttons" |
1792 | notext="Cancel" | 1793 | notext="Cancel" |
@@ -1797,58 +1798,58 @@ Divide land? | |||
1797 | icon="alertmodal.tga" | 1798 | icon="alertmodal.tga" |
1798 | name="CannotDivideLandNoRegion" | 1799 | name="CannotDivideLandNoRegion" |
1799 | type="alertmodal"> | 1800 | type="alertmodal"> |
1800 | Unable to divide land: | 1801 | Unable to divide land: |
1801 | Cannot find the region this land is in. | 1802 | Cannot find the region this land is in. |
1802 | 1803 | ||
1803 | Please use Tools -> Report Bug to report this. | 1804 | Please use Tools -> Report Bug to report this. |
1804 | </notification> | 1805 | </notification> |
1805 | 1806 | ||
1806 | <notification | 1807 | <notification |
1807 | icon="alertmodal.tga" | 1808 | icon="alertmodal.tga" |
1808 | name="CannotJoinLandNoRegion" | 1809 | name="CannotJoinLandNoRegion" |
1809 | type="alertmodal"> | 1810 | type="alertmodal"> |
1810 | Unable to join land: | 1811 | Unable to join land: |
1811 | Cannot find the region this land is in. | 1812 | Cannot find the region this land is in. |
1812 | 1813 | ||
1813 | Please use Tools -> Report Bug to report this. | 1814 | Please use Tools -> Report Bug to report this. |
1814 | </notification> | 1815 | </notification> |
1815 | 1816 | ||
1816 | <notification | 1817 | <notification |
1817 | icon="alertmodal.tga" | 1818 | icon="alertmodal.tga" |
1818 | name="CannotJoinLandNothingSelected" | 1819 | name="CannotJoinLandNothingSelected" |
1819 | type="alertmodal"> | 1820 | type="alertmodal"> |
1820 | Unable to join land: | 1821 | Unable to join land: |
1821 | No parcels selected. | 1822 | No parcels selected. |
1822 | </notification> | 1823 | </notification> |
1823 | 1824 | ||
1824 | <notification | 1825 | <notification |
1825 | icon="alertmodal.tga" | 1826 | icon="alertmodal.tga" |
1826 | name="CannotJoinLandEntireParcelSelected" | 1827 | name="CannotJoinLandEntireParcelSelected" |
1827 | type="alertmodal"> | 1828 | type="alertmodal"> |
1828 | Unable to join land: | 1829 | Unable to join land: |
1829 | You only have one parcel selected. | 1830 | You only have one parcel selected. |
1830 | 1831 | ||
1831 | Select land across both parcels. | 1832 | Select land across both parcels. |
1832 | </notification> | 1833 | </notification> |
1833 | 1834 | ||
1834 | <notification | 1835 | <notification |
1835 | icon="alertmodal.tga" | 1836 | icon="alertmodal.tga" |
1836 | name="CannotJoinLandSelection" | 1837 | name="CannotJoinLandSelection" |
1837 | type="alertmodal"> | 1838 | type="alertmodal"> |
1838 | Unable to join land: | 1839 | Unable to join land: |
1839 | You must select more than one parcel. | 1840 | You must select more than one parcel. |
1840 | 1841 | ||
1841 | Select land across both parcels. | 1842 | Select land across both parcels. |
1842 | </notification> | 1843 | </notification> |
1843 | 1844 | ||
1844 | <notification | 1845 | <notification |
1845 | icon="alertmodal.tga" | 1846 | icon="alertmodal.tga" |
1846 | name="JoinLandWarning" | 1847 | name="JoinLandWarning" |
1847 | type="alertmodal"> | 1848 | type="alertmodal"> |
1848 | Joining this land will create one large parcel out of all parcels intersecting the selected rectangle. | 1849 | Joining this land will create one large parcel out of all parcels intersecting the selected rectangle. |
1849 | You will need to reset the name and options of the new parcel. | 1850 | You will need to reset the name and options of the new parcel. |
1850 | 1851 | ||
1851 | Join land? | 1852 | Join land? |
1852 | <usetemplate | 1853 | <usetemplate |
1853 | name="okcancelbuttons" | 1854 | name="okcancelbuttons" |
1854 | notext="Cancel" | 1855 | notext="Cancel" |
@@ -1859,22 +1860,22 @@ Join land? | |||
1859 | icon="alertmodal.tga" | 1860 | icon="alertmodal.tga" |
1860 | name="ShowOwnersHelp" | 1861 | name="ShowOwnersHelp" |
1861 | type="alertmodal"> | 1862 | type="alertmodal"> |
1862 | Show owners: | 1863 | Show owners: |
1863 | Color parcels to show the owner type. | 1864 | Color parcels to show the owner type. |
1864 | 1865 | ||
1865 | Green = Your land | 1866 | Green = Your land |
1866 | Aqua = Your Group's land | 1867 | Aqua = Your Group's land |
1867 | Red = Owned by others | 1868 | Red = Owned by others |
1868 | Yellow = For sale | 1869 | Yellow = For sale |
1869 | Purple = For auction | 1870 | Purple = For auction |
1870 | Grey = Public | 1871 | Grey = Public |
1871 | </notification> | 1872 | </notification> |
1872 | 1873 | ||
1873 | <notification | 1874 | <notification |
1874 | icon="alertmodal.tga" | 1875 | icon="alertmodal.tga" |
1875 | name="ConfirmNotecardSave" | 1876 | name="ConfirmNotecardSave" |
1876 | type="alertmodal"> | 1877 | type="alertmodal"> |
1877 | This notecard needs to be saved before the item can be copied or viewed. Save notecard? | 1878 | This notecard needs to be saved before the item can be copied or viewed. Save notecard? |
1878 | <usetemplate | 1879 | <usetemplate |
1879 | name="okcancelbuttons" | 1880 | name="okcancelbuttons" |
1880 | notext="Cancel" | 1881 | notext="Cancel" |
@@ -1885,7 +1886,7 @@ This notecard needs to be saved before the item can be copied or viewed. Save no | |||
1885 | icon="alertmodal.tga" | 1886 | icon="alertmodal.tga" |
1886 | name="ConfirmItemCopy" | 1887 | name="ConfirmItemCopy" |
1887 | type="alertmodal"> | 1888 | type="alertmodal"> |
1888 | Copy this item to your inventory? | 1889 | Copy this item to your inventory? |
1889 | <usetemplate | 1890 | <usetemplate |
1890 | name="okcancelbuttons" | 1891 | name="okcancelbuttons" |
1891 | notext="Cancel" | 1892 | notext="Cancel" |
@@ -1896,48 +1897,48 @@ Copy this item to your inventory? | |||
1896 | icon="alertmodal.tga" | 1897 | icon="alertmodal.tga" |
1897 | name="ResolutionSwitchFail" | 1898 | name="ResolutionSwitchFail" |
1898 | type="alertmodal"> | 1899 | type="alertmodal"> |
1899 | Failed to switch resolution to [RESX] by [RESY] | 1900 | Failed to switch resolution to [RESX] by [RESY] |
1900 | </notification> | 1901 | </notification> |
1901 | 1902 | ||
1902 | <notification | 1903 | <notification |
1903 | icon="alertmodal.tga" | 1904 | icon="alertmodal.tga" |
1904 | name="ErrorUndefinedGrasses" | 1905 | name="ErrorUndefinedGrasses" |
1905 | type="alertmodal"> | 1906 | type="alertmodal"> |
1906 | Error: Undefined grasses: [SPECIES] | 1907 | Error: Undefined grasses: [SPECIES] |
1907 | </notification> | 1908 | </notification> |
1908 | 1909 | ||
1909 | <notification | 1910 | <notification |
1910 | icon="alertmodal.tga" | 1911 | icon="alertmodal.tga" |
1911 | name="ErrorUndefinedTrees" | 1912 | name="ErrorUndefinedTrees" |
1912 | type="alertmodal"> | 1913 | type="alertmodal"> |
1913 | Error: Undefined trees: [SPECIES] | 1914 | Error: Undefined trees: [SPECIES] |
1914 | </notification> | 1915 | </notification> |
1915 | 1916 | ||
1916 | <notification | 1917 | <notification |
1917 | icon="alertmodal.tga" | 1918 | icon="alertmodal.tga" |
1918 | name="CannotSaveWearableOutOfSpace" | 1919 | name="CannotSaveWearableOutOfSpace" |
1919 | type="alertmodal"> | 1920 | type="alertmodal"> |
1920 | Unable to save '[NAME]' to wearable file. You will need to free up some space on your computer and save the wearable again. | 1921 | Unable to save '[NAME]' to wearable file. You will need to free up some space on your computer and save the wearable again. |
1921 | </notification> | 1922 | </notification> |
1922 | 1923 | ||
1923 | <notification | 1924 | <notification |
1924 | icon="alertmodal.tga" | 1925 | icon="alertmodal.tga" |
1925 | name="CannotSaveToAssetStore" | 1926 | name="CannotSaveToAssetStore" |
1926 | type="alertmodal"> | 1927 | type="alertmodal"> |
1927 | Unable to save [NAME] to central asset store. | 1928 | Unable to save [NAME] to central asset store. |
1928 | This is usually a temporary failure. Please customize and save the wearable again in a few minutes. | 1929 | This is usually a temporary failure. Please customize and save the wearable again in a few minutes. |
1929 | 1930 | ||
1930 | If this problem persists, please click on the 'Tools > Report Bug' pull down menu | 1931 | If this problem persists, please click on the 'Tools > Report Bug' pull down menu |
1931 | and provide details about your network setup. | 1932 | and provide details about your network setup. |
1932 | </notification> | 1933 | </notification> |
1933 | 1934 | ||
1934 | <notification | 1935 | <notification |
1935 | icon="alertmodal.tga" | 1936 | icon="alertmodal.tga" |
1936 | name="YouHaveBeenLoggedOut" | 1937 | name="YouHaveBeenLoggedOut" |
1937 | type="alertmodal"> | 1938 | type="alertmodal"> |
1938 | You have been logged out of [SECOND_LIFE]: | 1939 | You have been logged out of [SECOND_LIFE]: |
1939 | [MESSAGE] | 1940 | [MESSAGE] |
1940 | You can still look at existing IM and chat by clicking 'View IM & Chat'. Otherwise, click 'Quit' to exit [SECOND_LIFE] immediately. | 1941 | You can still look at existing IM and chat by clicking 'View IM & Chat'. Otherwise, click 'Quit' to exit [SECOND_LIFE] immediately. |
1941 | <usetemplate | 1942 | <usetemplate |
1942 | name="okcancelbuttons" | 1943 | name="okcancelbuttons" |
1943 | notext="Quit" | 1944 | notext="Quit" |
@@ -1948,8 +1949,8 @@ You can still look at existing IM and chat by clicking 'View IM & Chat& | |||
1948 | icon="alertmodal.tga" | 1949 | icon="alertmodal.tga" |
1949 | name="OnlyOfficerCanBuyLand" | 1950 | name="OnlyOfficerCanBuyLand" |
1950 | type="alertmodal"> | 1951 | type="alertmodal"> |
1951 | Unable to buy land for the group: | 1952 | Unable to buy land for the group: |
1952 | You do not have permission to buy land for your active group. | 1953 | You do not have permission to buy land for your active group. |
1953 | </notification> | 1954 | </notification> |
1954 | 1955 | ||
1955 | <notification | 1956 | <notification |
@@ -1957,9 +1958,9 @@ You do not have permission to buy land for your active group. | |||
1957 | label="Add Friend" | 1958 | label="Add Friend" |
1958 | name="AddFriend" | 1959 | name="AddFriend" |
1959 | type="alertmodal"> | 1960 | type="alertmodal"> |
1960 | Friends can give permissions to track each other on the map and receive online status updates. | 1961 | Friends can give permissions to track each other on the map and receive online status updates. |
1961 | 1962 | ||
1962 | Offer friendship to [NAME]? | 1963 | Offer friendship to [NAME]? |
1963 | <usetemplate | 1964 | <usetemplate |
1964 | name="okcancelbuttons" | 1965 | name="okcancelbuttons" |
1965 | notext="Cancel" | 1966 | notext="Cancel" |
@@ -1971,12 +1972,12 @@ Offer friendship to [NAME]? | |||
1971 | label="Add Friend" | 1972 | label="Add Friend" |
1972 | name="AddFriendWithMessage" | 1973 | name="AddFriendWithMessage" |
1973 | type="alertmodal"> | 1974 | type="alertmodal"> |
1974 | Friends can give permissions to track each other on the map and receive online status updates. | 1975 | Friends can give permissions to track each other on the map and receive online status updates. |
1975 | 1976 | ||
1976 | Offer friendship to [NAME]? | 1977 | Offer friendship to [NAME]? |
1977 | <form name="form"> | 1978 | <form name="form"> |
1978 | <input name="message" type="text"> | 1979 | <input name="message" type="text"> |
1979 | Would you be my friend? | 1980 | Would you be my friend? |
1980 | </input> | 1981 | </input> |
1981 | <button | 1982 | <button |
1982 | default="true" | 1983 | default="true" |
@@ -1994,7 +1995,7 @@ Would you be my friend? | |||
1994 | icon="alertmodal.tga" | 1995 | icon="alertmodal.tga" |
1995 | name="RemoveFromFriends" | 1996 | name="RemoveFromFriends" |
1996 | type="alertmodal"> | 1997 | type="alertmodal"> |
1997 | Do you want to remove [FIRST_NAME] [LAST_NAME] from your Friends List? | 1998 | Do you want to remove [FIRST_NAME] [LAST_NAME] from your Friends List? |
1998 | <usetemplate | 1999 | <usetemplate |
1999 | name="okcancelbuttons" | 2000 | name="okcancelbuttons" |
2000 | notext="Cancel" | 2001 | notext="Cancel" |
@@ -2005,7 +2006,7 @@ Do you want to remove [FIRST_NAME] [LAST_NAME] from your Friends List? | |||
2005 | icon="alertmodal.tga" | 2006 | icon="alertmodal.tga" |
2006 | name="RemoveMultipleFromFriends" | 2007 | name="RemoveMultipleFromFriends" |
2007 | type="alertmodal"> | 2008 | type="alertmodal"> |
2008 | Do you want to remove multiple friends from your Friends list? | 2009 | Do you want to remove multiple friends from your Friends list? |
2009 | <usetemplate | 2010 | <usetemplate |
2010 | name="okcancelbuttons" | 2011 | name="okcancelbuttons" |
2011 | notext="Cancel" | 2012 | notext="Cancel" |
@@ -2016,9 +2017,9 @@ Do you want to remove multiple friends from your Friends list? | |||
2016 | icon="alertmodal.tga" | 2017 | icon="alertmodal.tga" |
2017 | name="GodDeleteAllScriptedPublicObjectsByUser" | 2018 | name="GodDeleteAllScriptedPublicObjectsByUser" |
2018 | type="alertmodal"> | 2019 | type="alertmodal"> |
2019 | Are you sure you want to delete all scripted objects owned by | 2020 | Are you sure you want to delete all scripted objects owned by |
2020 | ** [AVATAR_NAME] ** | 2021 | ** [AVATAR_NAME] ** |
2021 | on all others land in this sim? | 2022 | on all others land in this sim? |
2022 | <usetemplate | 2023 | <usetemplate |
2023 | name="okcancelbuttons" | 2024 | name="okcancelbuttons" |
2024 | notext="Cancel" | 2025 | notext="Cancel" |
@@ -2029,9 +2030,9 @@ on all others land in this sim? | |||
2029 | icon="alertmodal.tga" | 2030 | icon="alertmodal.tga" |
2030 | name="GodDeleteAllScriptedObjectsByUser" | 2031 | name="GodDeleteAllScriptedObjectsByUser" |
2031 | type="alertmodal"> | 2032 | type="alertmodal"> |
2032 | Are you sure you want to DELETE ALL scripted objects owned by | 2033 | Are you sure you want to DELETE ALL scripted objects owned by |
2033 | ** [AVATAR_NAME] ** | 2034 | ** [AVATAR_NAME] ** |
2034 | on ALL LAND in this sim? | 2035 | on ALL LAND in this sim? |
2035 | <usetemplate | 2036 | <usetemplate |
2036 | name="okcancelbuttons" | 2037 | name="okcancelbuttons" |
2037 | notext="Cancel" | 2038 | notext="Cancel" |
@@ -2042,9 +2043,9 @@ on ALL LAND in this sim? | |||
2042 | icon="alertmodal.tga" | 2043 | icon="alertmodal.tga" |
2043 | name="GodDeleteAllObjectsByUser" | 2044 | name="GodDeleteAllObjectsByUser" |
2044 | type="alertmodal"> | 2045 | type="alertmodal"> |
2045 | Are you sure you want to DELETE ALL objects (scripted or not) owned by | 2046 | Are you sure you want to DELETE ALL objects (scripted or not) owned by |
2046 | ** [AVATAR_NAME] ** | 2047 | ** [AVATAR_NAME] ** |
2047 | on ALL LAND in this sim? | 2048 | on ALL LAND in this sim? |
2048 | <usetemplate | 2049 | <usetemplate |
2049 | name="okcancelbuttons" | 2050 | name="okcancelbuttons" |
2050 | notext="Cancel" | 2051 | notext="Cancel" |
@@ -2055,25 +2056,25 @@ on ALL LAND in this sim? | |||
2055 | icon="alertmodal.tga" | 2056 | icon="alertmodal.tga" |
2056 | name="BlankClassifiedName" | 2057 | name="BlankClassifiedName" |
2057 | type="alertmodal"> | 2058 | type="alertmodal"> |
2058 | You must specify a name for your classified. | 2059 | You must specify a name for your classified. |
2059 | </notification> | 2060 | </notification> |
2060 | 2061 | ||
2061 | <notification | 2062 | <notification |
2062 | icon="alertmodal.tga" | 2063 | icon="alertmodal.tga" |
2063 | name="MinClassifiedPrice" | 2064 | name="MinClassifiedPrice" |
2064 | type="alertmodal"> | 2065 | type="alertmodal"> |
2065 | Price to pay for listing must be at least L$[MIN_PRICE]. | 2066 | Price to pay for listing must be at least L$[MIN_PRICE]. |
2066 | 2067 | ||
2067 | Please enter a higher price. | 2068 | Please enter a higher price. |
2068 | </notification> | 2069 | </notification> |
2069 | 2070 | ||
2070 | <notification | 2071 | <notification |
2071 | icon="alertmodal.tga" | 2072 | icon="alertmodal.tga" |
2072 | name="ConfirmObjectDeleteLock" | 2073 | name="ConfirmObjectDeleteLock" |
2073 | type="alertmodal"> | 2074 | type="alertmodal"> |
2074 | At least one of the items you have selected is locked. | 2075 | At least one of the items you have selected is locked. |
2075 | 2076 | ||
2076 | Are you sure you want to delete these items? | 2077 | Are you sure you want to delete these items? |
2077 | <usetemplate | 2078 | <usetemplate |
2078 | name="okcancelbuttons" | 2079 | name="okcancelbuttons" |
2079 | notext="Cancel" | 2080 | notext="Cancel" |
@@ -2084,9 +2085,9 @@ Are you sure you want to delete these items? | |||
2084 | icon="alertmodal.tga" | 2085 | icon="alertmodal.tga" |
2085 | name="ConfirmObjectDeleteNoCopy" | 2086 | name="ConfirmObjectDeleteNoCopy" |
2086 | type="alertmodal"> | 2087 | type="alertmodal"> |
2087 | At least one of the items you have selected is not copyable. | 2088 | At least one of the items you have selected is not copyable. |
2088 | 2089 | ||
2089 | Are you sure you want to delete these items? | 2090 | Are you sure you want to delete these items? |
2090 | <usetemplate | 2091 | <usetemplate |
2091 | name="okcancelbuttons" | 2092 | name="okcancelbuttons" |
2092 | notext="Cancel" | 2093 | notext="Cancel" |
@@ -2097,9 +2098,9 @@ Are you sure you want to delete these items? | |||
2097 | icon="alertmodal.tga" | 2098 | icon="alertmodal.tga" |
2098 | name="ConfirmObjectDeleteNoOwn" | 2099 | name="ConfirmObjectDeleteNoOwn" |
2099 | type="alertmodal"> | 2100 | type="alertmodal"> |
2100 | You do not own least one of the items you have selected. | 2101 | You do not own least one of the items you have selected. |
2101 | 2102 | ||
2102 | Are you sure you want to delete these items? | 2103 | Are you sure you want to delete these items? |
2103 | <usetemplate | 2104 | <usetemplate |
2104 | name="okcancelbuttons" | 2105 | name="okcancelbuttons" |
2105 | notext="Cancel" | 2106 | notext="Cancel" |
@@ -2110,10 +2111,10 @@ Are you sure you want to delete these items? | |||
2110 | icon="alertmodal.tga" | 2111 | icon="alertmodal.tga" |
2111 | name="ConfirmObjectDeleteLockNoCopy" | 2112 | name="ConfirmObjectDeleteLockNoCopy" |
2112 | type="alertmodal"> | 2113 | type="alertmodal"> |
2113 | At least one object is locked. | 2114 | At least one object is locked. |
2114 | At least one object is not copyable. | 2115 | At least one object is not copyable. |
2115 | 2116 | ||
2116 | Are you sure you want to delete these items? | 2117 | Are you sure you want to delete these items? |
2117 | <usetemplate | 2118 | <usetemplate |
2118 | name="okcancelbuttons" | 2119 | name="okcancelbuttons" |
2119 | notext="Cancel" | 2120 | notext="Cancel" |
@@ -2124,10 +2125,10 @@ Are you sure you want to delete these items? | |||
2124 | icon="alertmodal.tga" | 2125 | icon="alertmodal.tga" |
2125 | name="ConfirmObjectDeleteLockNoOwn" | 2126 | name="ConfirmObjectDeleteLockNoOwn" |
2126 | type="alertmodal"> | 2127 | type="alertmodal"> |
2127 | At least one object is locked. | 2128 | At least one object is locked. |
2128 | You do not own least one object. | 2129 | You do not own least one object. |
2129 | 2130 | ||
2130 | Are you sure you want to delete these items? | 2131 | Are you sure you want to delete these items? |
2131 | <usetemplate | 2132 | <usetemplate |
2132 | name="okcancelbuttons" | 2133 | name="okcancelbuttons" |
2133 | notext="Cancel" | 2134 | notext="Cancel" |
@@ -2138,10 +2139,10 @@ Are you sure you want to delete these items? | |||
2138 | icon="alertmodal.tga" | 2139 | icon="alertmodal.tga" |
2139 | name="ConfirmObjectDeleteNoCopyNoOwn" | 2140 | name="ConfirmObjectDeleteNoCopyNoOwn" |
2140 | type="alertmodal"> | 2141 | type="alertmodal"> |
2141 | At least one object is not copyable. | 2142 | At least one object is not copyable. |
2142 | You do not own least one object. | 2143 | You do not own least one object. |
2143 | 2144 | ||
2144 | Are you sure you want to delete these items? | 2145 | Are you sure you want to delete these items? |
2145 | <usetemplate | 2146 | <usetemplate |
2146 | name="okcancelbuttons" | 2147 | name="okcancelbuttons" |
2147 | notext="Cancel" | 2148 | notext="Cancel" |
@@ -2152,11 +2153,11 @@ Are you sure you want to delete these items? | |||
2152 | icon="alertmodal.tga" | 2153 | icon="alertmodal.tga" |
2153 | name="ConfirmObjectDeleteLockNoCopyNoOwn" | 2154 | name="ConfirmObjectDeleteLockNoCopyNoOwn" |
2154 | type="alertmodal"> | 2155 | type="alertmodal"> |
2155 | At least one object is locked. | 2156 | At least one object is locked. |
2156 | At least one object is not copyable. | 2157 | At least one object is not copyable. |
2157 | You do not own least one object. | 2158 | You do not own least one object. |
2158 | 2159 | ||
2159 | Are you sure you want to delete these items? | 2160 | Are you sure you want to delete these items? |
2160 | <usetemplate | 2161 | <usetemplate |
2161 | name="okcancelbuttons" | 2162 | name="okcancelbuttons" |
2162 | notext="cancel" | 2163 | notext="cancel" |
@@ -2167,9 +2168,9 @@ Are you sure you want to delete these items? | |||
2167 | icon="alertmodal.tga" | 2168 | icon="alertmodal.tga" |
2168 | name="ConfirmObjectTakeLock" | 2169 | name="ConfirmObjectTakeLock" |
2169 | type="alertmodal"> | 2170 | type="alertmodal"> |
2170 | At least one object is locked. | 2171 | At least one object is locked. |
2171 | 2172 | ||
2172 | Are you sure you want to take these items? | 2173 | Are you sure you want to take these items? |
2173 | <usetemplate | 2174 | <usetemplate |
2174 | name="okcancelbuttons" | 2175 | name="okcancelbuttons" |
2175 | notext="Cancel" | 2176 | notext="Cancel" |
@@ -2180,10 +2181,10 @@ Are you sure you want to take these items? | |||
2180 | icon="alertmodal.tga" | 2181 | icon="alertmodal.tga" |
2181 | name="ConfirmObjectTakeNoOwn" | 2182 | name="ConfirmObjectTakeNoOwn" |
2182 | type="alertmodal"> | 2183 | type="alertmodal"> |
2183 | You do not own all of the objects you are taking. | 2184 | You do not own all of the objects you are taking. |
2184 | If you continue, next owner permissions will be applied and possibly restrict your ability to modify or copy them. | 2185 | If you continue, next owner permissions will be applied and possibly restrict your ability to modify or copy them. |
2185 | 2186 | ||
2186 | Are you sure you want to take these items? | 2187 | Are you sure you want to take these items? |
2187 | <usetemplate | 2188 | <usetemplate |
2188 | name="okcancelbuttons" | 2189 | name="okcancelbuttons" |
2189 | notext="Cancel" | 2190 | notext="Cancel" |
@@ -2194,12 +2195,12 @@ Are you sure you want to take these items? | |||
2194 | icon="alertmodal.tga" | 2195 | icon="alertmodal.tga" |
2195 | name="ConfirmObjectTakeLockNoOwn" | 2196 | name="ConfirmObjectTakeLockNoOwn" |
2196 | type="alertmodal"> | 2197 | type="alertmodal"> |
2197 | At least one object is locked. | 2198 | At least one object is locked. |
2198 | You do not own all of the objects you are taking. | 2199 | You do not own all of the objects you are taking. |
2199 | If you continue, next owner permissions will be applied and possibly restrict your ability to modify or copy them. | 2200 | If you continue, next owner permissions will be applied and possibly restrict your ability to modify or copy them. |
2200 | However, you can take the current selection. | 2201 | However, you can take the current selection. |
2201 | 2202 | ||
2202 | Are you sure you want to take these items? | 2203 | Are you sure you want to take these items? |
2203 | <usetemplate | 2204 | <usetemplate |
2204 | name="okcancelbuttons" | 2205 | name="okcancelbuttons" |
2205 | notext="Cancel" | 2206 | notext="Cancel" |
@@ -2210,19 +2211,19 @@ Are you sure you want to take these items? | |||
2210 | icon="alertmodal.tga" | 2211 | icon="alertmodal.tga" |
2211 | name="CantBuyLandAcrossMultipleRegions" | 2212 | name="CantBuyLandAcrossMultipleRegions" |
2212 | type="alertmodal"> | 2213 | type="alertmodal"> |
2213 | Unable to buy land because selection spans multiple regions. | 2214 | Unable to buy land because selection spans multiple regions. |
2214 | 2215 | ||
2215 | Please select a smaller area and try again. | 2216 | Please select a smaller area and try again. |
2216 | </notification> | 2217 | </notification> |
2217 | 2218 | ||
2218 | <notification | 2219 | <notification |
2219 | icon="alertmodal.tga" | 2220 | icon="alertmodal.tga" |
2220 | name="DeedLandToGroup" | 2221 | name="DeedLandToGroup" |
2221 | type="alertmodal"> | 2222 | type="alertmodal"> |
2222 | By deeding this parcel, the group will be required to have and maintain sufficient land use credits. | 2223 | By deeding this parcel, the group will be required to have and maintain sufficient land use credits. |
2223 | The purchase price of the land is not refunded to the owner. If a deeded parcel is sold, the sale price will be divided evenly among group members. | 2224 | The purchase price of the land is not refunded to the owner. If a deeded parcel is sold, the sale price will be divided evenly among group members. |
2224 | 2225 | ||
2225 | Deed this [AREA] m² of land to the group '[GROUP_NAME]'? | 2226 | Deed this [AREA] m² of land to the group '[GROUP_NAME]'? |
2226 | <usetemplate | 2227 | <usetemplate |
2227 | name="okcancelbuttons" | 2228 | name="okcancelbuttons" |
2228 | notext="Cancel" | 2229 | notext="Cancel" |
@@ -2233,11 +2234,11 @@ Deed this [AREA] m² of land to the group '[GROUP_NAME]'? | |||
2233 | icon="alertmodal.tga" | 2234 | icon="alertmodal.tga" |
2234 | name="DeedLandToGroupWithContribution" | 2235 | name="DeedLandToGroupWithContribution" |
2235 | type="alertmodal"> | 2236 | type="alertmodal"> |
2236 | By deeding this parcel, the group will be required to have and maintain sufficient land use credits. | 2237 | By deeding this parcel, the group will be required to have and maintain sufficient land use credits. |
2237 | The deed will include a simultaneous land contribution to the group from '[FIRST_NAME] [LAST_NAME]'. | 2238 | The deed will include a simultaneous land contribution to the group from '[FIRST_NAME] [LAST_NAME]'. |
2238 | The purchase price of the land is not refunded to the owner. If a deeded parcel is sold, the sale price will be divided evenly among group members. | 2239 | The purchase price of the land is not refunded to the owner. If a deeded parcel is sold, the sale price will be divided evenly among group members. |
2239 | 2240 | ||
2240 | Deed this [AREA] m² of land to the group '[GROUP_NAME]'? | 2241 | Deed this [AREA] m² of land to the group '[GROUP_NAME]'? |
2241 | <usetemplate | 2242 | <usetemplate |
2242 | name="okcancelbuttons" | 2243 | name="okcancelbuttons" |
2243 | notext="Cancel" | 2244 | notext="Cancel" |
@@ -2248,37 +2249,37 @@ Deed this [AREA] m² of land to the group '[GROUP_NAME]'? | |||
2248 | icon="alertmodal.tga" | 2249 | icon="alertmodal.tga" |
2249 | name="DisplaySetToSafe" | 2250 | name="DisplaySetToSafe" |
2250 | type="alertmodal"> | 2251 | type="alertmodal"> |
2251 | Display settings have been set to safe levels because you have specified the -safe option. | 2252 | Display settings have been set to safe levels because you have specified the -safe option. |
2252 | </notification> | 2253 | </notification> |
2253 | 2254 | ||
2254 | <notification | 2255 | <notification |
2255 | icon="alertmodal.tga" | 2256 | icon="alertmodal.tga" |
2256 | name="DisplaySetToRecommended" | 2257 | name="DisplaySetToRecommended" |
2257 | type="alertmodal"> | 2258 | type="alertmodal"> |
2258 | Display settings have been set to recommended levels based on your system configuration. | 2259 | Display settings have been set to recommended levels based on your system configuration. |
2259 | </notification> | 2260 | </notification> |
2260 | 2261 | ||
2261 | <notification | 2262 | <notification |
2262 | icon="alertmodal.tga" | 2263 | icon="alertmodal.tga" |
2263 | name="ErrorMessage" | 2264 | name="ErrorMessage" |
2264 | type="alertmodal"> | 2265 | type="alertmodal"> |
2265 | [ERROR_MESSAGE] | 2266 | [ERROR_MESSAGE] |
2266 | </notification> | 2267 | </notification> |
2267 | 2268 | ||
2268 | <notification | 2269 | <notification |
2269 | icon="alertmodal.tga" | 2270 | icon="alertmodal.tga" |
2270 | name="AvatarMoved" | 2271 | name="AvatarMoved" |
2271 | type="alertmodal"> | 2272 | type="alertmodal"> |
2272 | Your [TYPE] location is not currently available. [HELP] | 2273 | Your [TYPE] location is not currently available. [HELP] |
2273 | You have been moved into a nearby region. | 2274 | You have been moved into a nearby region. |
2274 | </notification> | 2275 | </notification> |
2275 | 2276 | ||
2276 | <notification | 2277 | <notification |
2277 | icon="alertmodal.tga" | 2278 | icon="alertmodal.tga" |
2278 | name="ClothingLoading" | 2279 | name="ClothingLoading" |
2279 | type="alertmodal"> | 2280 | type="alertmodal"> |
2280 | Your clothing is still downloading. | 2281 | Your clothing is still downloading. |
2281 | You can use [SECOND_LIFE] normally and other users will see you correctly. | 2282 | You can use [SECOND_LIFE] normally and other users will see you correctly. |
2282 | <form name="form"> | 2283 | <form name="form"> |
2283 | <ignore name="ignore" | 2284 | <ignore name="ignore" |
2284 | text="When clothing is taking a long time to download"/> | 2285 | text="When clothing is taking a long time to download"/> |
@@ -2289,10 +2290,10 @@ You can use [SECOND_LIFE] normally and other users will see you correctly. | |||
2289 | icon="alertmodal.tga" | 2290 | icon="alertmodal.tga" |
2290 | name="FirstRun" | 2291 | name="FirstRun" |
2291 | type="alertmodal"> | 2292 | type="alertmodal"> |
2292 | [SECOND_LIFE] installation is complete. | 2293 | [SECOND_LIFE] installation is complete. |
2293 | 2294 | ||
2294 | If this is your first time using [SECOND_LIFE], you will need to create an account before you can log on. | 2295 | If this is your first time using [SECOND_LIFE], you will need to create an account before you can log on. |
2295 | Return to www.secondlife.com to create a new account? | 2296 | Return to www.secondlife.com to create a new account? |
2296 | <usetemplate | 2297 | <usetemplate |
2297 | name="okcancelbuttons" | 2298 | name="okcancelbuttons" |
2298 | notext="Continue" | 2299 | notext="Continue" |
@@ -2303,9 +2304,9 @@ Return to www.secondlife.com to create a new account? | |||
2303 | icon="alertmodal.tga" | 2304 | icon="alertmodal.tga" |
2304 | name="LoginPacketNeverReceived" | 2305 | name="LoginPacketNeverReceived" |
2305 | type="alertmodal"> | 2306 | type="alertmodal"> |
2306 | We're having trouble connecting. There may be a problem with your internet connection or the Second Life servers. | 2307 | We're having trouble connecting. There may be a problem with your internet connection or the Second Life servers. |
2307 | 2308 | ||
2308 | You can either check your internet connection and try again in a few minutes, click Help to connect to our support site, or click Teleport to attempt to teleport home. | 2309 | You can either check your internet connection and try again in a few minutes, click Help to connect to our support site, or click Teleport to attempt to teleport home. |
2309 | <form name="form"> | 2310 | <form name="form"> |
2310 | <button | 2311 | <button |
2311 | default="true" | 2312 | default="true" |
@@ -2327,11 +2328,11 @@ You can either check your internet connection and try again in a few minutes, cl | |||
2327 | icon="alertmodal.tga" | 2328 | icon="alertmodal.tga" |
2328 | name="WelcomeChooseSex" | 2329 | name="WelcomeChooseSex" |
2329 | type="alertmodal"> | 2330 | type="alertmodal"> |
2330 | Your character will appear in a moment. | 2331 | Your character will appear in a moment. |
2331 | 2332 | ||
2332 | Use arrow keys to walk. | 2333 | Use arrow keys to walk. |
2333 | Press the F1 key at any time for help or to learn more about [SECOND_LIFE]. | 2334 | Press the F1 key at any time for help or to learn more about [SECOND_LIFE]. |
2334 | Please choose the male or female avatar. You can change your mind later. | 2335 | Please choose the male or female avatar. You can change your mind later. |
2335 | <usetemplate | 2336 | <usetemplate |
2336 | name="okcancelbuttons" | 2337 | name="okcancelbuttons" |
2337 | notext="Female" | 2338 | notext="Female" |
@@ -2342,30 +2343,30 @@ Please choose the male or female avatar. You can change your mind later. | |||
2342 | icon="alertmodal.tga" | 2343 | icon="alertmodal.tga" |
2343 | name="NotEnoughCurrency" | 2344 | name="NotEnoughCurrency" |
2344 | type="alertmodal"> | 2345 | type="alertmodal"> |
2345 | [NAME] L$ [PRICE] You don't have enough L$ to do that. | 2346 | [NAME] L$ [PRICE] You don't have enough L$ to do that. |
2346 | </notification> | 2347 | </notification> |
2347 | 2348 | ||
2348 | <notification | 2349 | <notification |
2349 | icon="alertmodal.tga" | 2350 | icon="alertmodal.tga" |
2350 | name="GrantedModifyRights" | 2351 | name="GrantedModifyRights" |
2351 | type="alertmodal"> | 2352 | type="alertmodal"> |
2352 | You have been granted the privilege to modify [FIRST_NAME] [LAST_NAME]'s objects. | 2353 | You have been granted the privilege to modify [FIRST_NAME] [LAST_NAME]'s objects. |
2353 | </notification> | 2354 | </notification> |
2354 | 2355 | ||
2355 | <notification | 2356 | <notification |
2356 | icon="alertmodal.tga" | 2357 | icon="alertmodal.tga" |
2357 | name="RevokedModifyRights" | 2358 | name="RevokedModifyRights" |
2358 | type="alertmodal"> | 2359 | type="alertmodal"> |
2359 | Your privilege to modify [FIRST_NAME] [LAST_NAME]'s objects has been revoked | 2360 | Your privilege to modify [FIRST_NAME] [LAST_NAME]'s objects has been revoked |
2360 | </notification> | 2361 | </notification> |
2361 | 2362 | ||
2362 | <notification | 2363 | <notification |
2363 | icon="alertmodal.tga" | 2364 | icon="alertmodal.tga" |
2364 | name="FlushMapVisibilityCaches" | 2365 | name="FlushMapVisibilityCaches" |
2365 | type="alertmodal"> | 2366 | type="alertmodal"> |
2366 | This will flush the map caches on this region. | 2367 | This will flush the map caches on this region. |
2367 | This is really only useful for debugging. | 2368 | This is really only useful for debugging. |
2368 | (In production, wait 5 minutes, then everyone's map will update after they relog.) | 2369 | (In production, wait 5 minutes, then everyone's map will update after they relog.) |
2369 | <usetemplate | 2370 | <usetemplate |
2370 | name="okcancelbuttons" | 2371 | name="okcancelbuttons" |
2371 | notext="Cancel" | 2372 | notext="Cancel" |
@@ -2376,15 +2377,15 @@ This is really only useful for debugging. | |||
2376 | icon="alertmodal.tga" | 2377 | icon="alertmodal.tga" |
2377 | name="BuyOneObjectOnly" | 2378 | name="BuyOneObjectOnly" |
2378 | type="alertmodal"> | 2379 | type="alertmodal"> |
2379 | Unable to buy more than one object at a time. Please select only one object and try again. | 2380 | Unable to buy more than one object at a time. Please select only one object and try again. |
2380 | </notification> | 2381 | </notification> |
2381 | 2382 | ||
2382 | <notification | 2383 | <notification |
2383 | icon="alertmodal.tga" | 2384 | icon="alertmodal.tga" |
2384 | name="OnlyCopyContentsOfSingleItem" | 2385 | name="OnlyCopyContentsOfSingleItem" |
2385 | type="alertmodal"> | 2386 | type="alertmodal"> |
2386 | Unable to copy the contents of more than one item at a time. | 2387 | Unable to copy the contents of more than one item at a time. |
2387 | Please select only one object and try again. | 2388 | Please select only one object and try again. |
2388 | <usetemplate | 2389 | <usetemplate |
2389 | name="okcancelbuttons" | 2390 | name="okcancelbuttons" |
2390 | notext="Cancel" | 2391 | notext="Cancel" |
@@ -2395,7 +2396,7 @@ Please select only one object and try again. | |||
2395 | icon="alertmodal.tga" | 2396 | icon="alertmodal.tga" |
2396 | name="KickUsersFromRegion" | 2397 | name="KickUsersFromRegion" |
2397 | type="alertmodal"> | 2398 | type="alertmodal"> |
2398 | Teleport all Residents in this region home? | 2399 | Teleport all Residents in this region home? |
2399 | <usetemplate | 2400 | <usetemplate |
2400 | name="okcancelbuttons" | 2401 | name="okcancelbuttons" |
2401 | notext="Cancel" | 2402 | notext="Cancel" |
@@ -2406,7 +2407,7 @@ Teleport all Residents in this region home? | |||
2406 | icon="alertmodal.tga" | 2407 | icon="alertmodal.tga" |
2407 | name="EstateObjectReturn" | 2408 | name="EstateObjectReturn" |
2408 | type="alertmodal"> | 2409 | type="alertmodal"> |
2409 | Are you sure you want to return objects owned by [USER_NAME]? | 2410 | Are you sure you want to return objects owned by [USER_NAME]? |
2410 | <usetemplate | 2411 | <usetemplate |
2411 | name="okcancelbuttons" | 2412 | name="okcancelbuttons" |
2412 | notext="Cancel" | 2413 | notext="Cancel" |
@@ -2417,34 +2418,34 @@ Are you sure you want to return objects owned by [USER_NAME]? | |||
2417 | icon="alertmodal.tga" | 2418 | icon="alertmodal.tga" |
2418 | name="InvalidTerrainBitDepth" | 2419 | name="InvalidTerrainBitDepth" |
2419 | type="alertmodal"> | 2420 | type="alertmodal"> |
2420 | Couldn't set region textures: | 2421 | Couldn't set region textures: |
2421 | Terrain texture [TEXTURE_NUM] has an invalid bit depth of [TEXTURE_BIT_DEPTH]. | 2422 | Terrain texture [TEXTURE_NUM] has an invalid bit depth of [TEXTURE_BIT_DEPTH]. |
2422 | 2423 | ||
2423 | Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image then click "Apply" again. | 2424 | Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image then click "Apply" again. |
2424 | </notification> | 2425 | </notification> |
2425 | 2426 | ||
2426 | <notification | 2427 | <notification |
2427 | icon="alertmodal.tga" | 2428 | icon="alertmodal.tga" |
2428 | name="InvalidTerrainSize" | 2429 | name="InvalidTerrainSize" |
2429 | type="alertmodal"> | 2430 | type="alertmodal"> |
2430 | Couldn't set region textures: | 2431 | Couldn't set region textures: |
2431 | Terrain texture [TEXTURE_NUM] is too large at [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. | 2432 | Terrain texture [TEXTURE_NUM] is too large at [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. |
2432 | 2433 | ||
2433 | Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image then click "Apply" again. | 2434 | Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image then click "Apply" again. |
2434 | </notification> | 2435 | </notification> |
2435 | 2436 | ||
2436 | <notification | 2437 | <notification |
2437 | icon="alertmodal.tga" | 2438 | icon="alertmodal.tga" |
2438 | name="RawUploadStarted" | 2439 | name="RawUploadStarted" |
2439 | type="alertmodal"> | 2440 | type="alertmodal"> |
2440 | Upload started. It may take up to two minutes, depending on your connection speed. | 2441 | Upload started. It may take up to two minutes, depending on your connection speed. |
2441 | </notification> | 2442 | </notification> |
2442 | 2443 | ||
2443 | <notification | 2444 | <notification |
2444 | icon="alertmodal.tga" | 2445 | icon="alertmodal.tga" |
2445 | name="ConfirmBakeTerrain" | 2446 | name="ConfirmBakeTerrain" |
2446 | type="alertmodal"> | 2447 | type="alertmodal"> |
2447 | Do you really want to bake the current terrain, make it the center for terrain raise/lower limits and the default for the 'Revert' tool? | 2448 | Do you really want to bake the current terrain, make it the center for terrain raise/lower limits and the default for the 'Revert' tool? |
2448 | <usetemplate | 2449 | <usetemplate |
2449 | name="okcancelbuttons" | 2450 | name="okcancelbuttons" |
2450 | notext="Cancel" | 2451 | notext="Cancel" |
@@ -2455,29 +2456,29 @@ Do you really want to bake the current terrain, make it the center for terrain r | |||
2455 | icon="alertmodal.tga" | 2456 | icon="alertmodal.tga" |
2456 | name="MaxAllowedAgentOnRegion" | 2457 | name="MaxAllowedAgentOnRegion" |
2457 | type="alertmodal"> | 2458 | type="alertmodal"> |
2458 | You can only have [MAX_AGENTS] Allowed Residents. | 2459 | You can only have [MAX_AGENTS] Allowed Residents. |
2459 | </notification> | 2460 | </notification> |
2460 | 2461 | ||
2461 | <notification | 2462 | <notification |
2462 | icon="alertmodal.tga" | 2463 | icon="alertmodal.tga" |
2463 | name="MaxBannedAgentsOnRegion" | 2464 | name="MaxBannedAgentsOnRegion" |
2464 | type="alertmodal"> | 2465 | type="alertmodal"> |
2465 | You can only have [MAX_BANNED] Banned Residents. | 2466 | You can only have [MAX_BANNED] Banned Residents. |
2466 | </notification> | 2467 | </notification> |
2467 | 2468 | ||
2468 | <notification | 2469 | <notification |
2469 | icon="alertmodal.tga" | 2470 | icon="alertmodal.tga" |
2470 | name="MaxAgentOnRegionBatch" | 2471 | name="MaxAgentOnRegionBatch" |
2471 | type="alertmodal"> | 2472 | type="alertmodal"> |
2472 | Failure while attempting to add [NUM_ADDED] agents: | 2473 | Failure while attempting to add [NUM_ADDED] agents: |
2473 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | 2474 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. |
2474 | </notification> | 2475 | </notification> |
2475 | 2476 | ||
2476 | <notification | 2477 | <notification |
2477 | icon="alertmodal.tga" | 2478 | icon="alertmodal.tga" |
2478 | name="MaxAllowedGroupsOnRegion" | 2479 | name="MaxAllowedGroupsOnRegion" |
2479 | type="alertmodal"> | 2480 | type="alertmodal"> |
2480 | You can only have [MAX_GROUPS] Allowed Groups. | 2481 | You can only have [MAX_GROUPS] Allowed Groups. |
2481 | <usetemplate | 2482 | <usetemplate |
2482 | name="okcancelbuttons" | 2483 | name="okcancelbuttons" |
2483 | notext="Cancel" | 2484 | notext="Cancel" |
@@ -2488,53 +2489,53 @@ You can only have [MAX_GROUPS] Allowed Groups. | |||
2488 | icon="alertmodal.tga" | 2489 | icon="alertmodal.tga" |
2489 | name="MaxManagersOnRegion" | 2490 | name="MaxManagersOnRegion" |
2490 | type="alertmodal"> | 2491 | type="alertmodal"> |
2491 | You can only have [MAX_MANAGER] Estate Managers. | 2492 | You can only have [MAX_MANAGER] Estate Managers. |
2492 | </notification> | 2493 | </notification> |
2493 | 2494 | ||
2494 | <notification | 2495 | <notification |
2495 | icon="alertmodal.tga" | 2496 | icon="alertmodal.tga" |
2496 | name="OwnerCanNotBeDenied" | 2497 | name="OwnerCanNotBeDenied" |
2497 | type="alertmodal"> | 2498 | type="alertmodal"> |
2498 | Can't add estate owner to estate 'Banned Resident' list. | 2499 | Can't add estate owner to estate 'Banned Resident' list. |
2499 | </notification> | 2500 | </notification> |
2500 | 2501 | ||
2501 | <notification | 2502 | <notification |
2502 | icon="alertmodal.tga" | 2503 | icon="alertmodal.tga" |
2503 | name="CanNotChangeAppearanceUntilLoaded" | 2504 | name="CanNotChangeAppearanceUntilLoaded" |
2504 | type="alertmodal"> | 2505 | type="alertmodal"> |
2505 | Can't change appearance until clothing and shape are loaded. | 2506 | Can't change appearance until clothing and shape are loaded. |
2506 | </notification> | 2507 | </notification> |
2507 | 2508 | ||
2508 | <notification | 2509 | <notification |
2509 | icon="alertmodal.tga" | 2510 | icon="alertmodal.tga" |
2510 | name="ClassifiedMustBeAlphanumeric" | 2511 | name="ClassifiedMustBeAlphanumeric" |
2511 | type="alertmodal"> | 2512 | type="alertmodal"> |
2512 | The name of your classified must start with a letter from A to Z or a number. No punctuation is allowed. | 2513 | The name of your classified must start with a letter from A to Z or a number. No punctuation is allowed. |
2513 | </notification> | 2514 | </notification> |
2514 | 2515 | ||
2515 | <notification | 2516 | <notification |
2516 | icon="alertmodal.tga" | 2517 | icon="alertmodal.tga" |
2517 | name="CantSetBuyObject" | 2518 | name="CantSetBuyObject" |
2518 | type="alertmodal"> | 2519 | type="alertmodal"> |
2519 | Can't set Buy Object, because the object is not for sale. | 2520 | Can't set Buy Object, because the object is not for sale. |
2520 | Please set the object for sale and try again. | 2521 | Please set the object for sale and try again. |
2521 | </notification> | 2522 | </notification> |
2522 | 2523 | ||
2523 | <notification | 2524 | <notification |
2524 | icon="alertmodal.tga" | 2525 | icon="alertmodal.tga" |
2525 | name="FinishedRawDownload" | 2526 | name="FinishedRawDownload" |
2526 | type="alertmodal"> | 2527 | type="alertmodal"> |
2527 | Finished download of raw terrain file to: | 2528 | Finished download of raw terrain file to: |
2528 | [DOWNLOAD_PATH]. | 2529 | [DOWNLOAD_PATH]. |
2529 | </notification> | 2530 | </notification> |
2530 | 2531 | ||
2531 | <notification | 2532 | <notification |
2532 | icon="alertmodal.tga" | 2533 | icon="alertmodal.tga" |
2533 | name="DownloadWindowsMandatory" | 2534 | name="DownloadWindowsMandatory" |
2534 | type="alertmodal"> | 2535 | type="alertmodal"> |
2535 | A new version of [SECOND_LIFE] is available. | 2536 | A new version of [SECOND_LIFE] is available. |
2536 | [MESSAGE] | 2537 | [MESSAGE] |
2537 | You must download this update to use [SECOND_LIFE]. | 2538 | You must download this update to use [SECOND_LIFE]. |
2538 | <usetemplate | 2539 | <usetemplate |
2539 | name="okcancelbuttons" | 2540 | name="okcancelbuttons" |
2540 | notext="Quit" | 2541 | notext="Quit" |
@@ -2545,9 +2546,9 @@ You must download this update to use [SECOND_LIFE]. | |||
2545 | icon="alertmodal.tga" | 2546 | icon="alertmodal.tga" |
2546 | name="DownloadWindows" | 2547 | name="DownloadWindows" |
2547 | type="alertmodal"> | 2548 | type="alertmodal"> |
2548 | An updated version of [SECOND_LIFE] is available. | 2549 | An updated version of [SECOND_LIFE] is available. |
2549 | [MESSAGE] | 2550 | [MESSAGE] |
2550 | This update is not required, but we suggest you install it to improve performance and stability. | 2551 | This update is not required, but we suggest you install it to improve performance and stability. |
2551 | <usetemplate | 2552 | <usetemplate |
2552 | name="okcancelbuttons" | 2553 | name="okcancelbuttons" |
2553 | notext="Continue" | 2554 | notext="Continue" |
@@ -2558,9 +2559,9 @@ This update is not required, but we suggest you install it to improve performanc | |||
2558 | icon="alertmodal.tga" | 2559 | icon="alertmodal.tga" |
2559 | name="DownloadWindowsReleaseForDownload" | 2560 | name="DownloadWindowsReleaseForDownload" |
2560 | type="alertmodal"> | 2561 | type="alertmodal"> |
2561 | An updated version of [SECOND_LIFE] is available. | 2562 | An updated version of [SECOND_LIFE] is available. |
2562 | [MESSAGE] | 2563 | [MESSAGE] |
2563 | This update is not required, but we suggest you install it to improve performance and stability. | 2564 | This update is not required, but we suggest you install it to improve performance and stability. |
2564 | <usetemplate | 2565 | <usetemplate |
2565 | name="okcancelbuttons" | 2566 | name="okcancelbuttons" |
2566 | notext="Continue" | 2567 | notext="Continue" |
@@ -2571,11 +2572,11 @@ This update is not required, but we suggest you install it to improve performanc | |||
2571 | icon="alertmodal.tga" | 2572 | icon="alertmodal.tga" |
2572 | name="DownloadMacMandatory" | 2573 | name="DownloadMacMandatory" |
2573 | type="alertmodal"> | 2574 | type="alertmodal"> |
2574 | A new version of [SECOND_LIFE] is available. | 2575 | A new version of [SECOND_LIFE] is available. |
2575 | [MESSAGE] | 2576 | [MESSAGE] |
2576 | You must download this update to use [SECOND_LIFE]. | 2577 | You must download this update to use [SECOND_LIFE]. |
2577 | 2578 | ||
2578 | Download to your Applications folder? | 2579 | Download to your Applications folder? |
2579 | <usetemplate | 2580 | <usetemplate |
2580 | name="okcancelbuttons" | 2581 | name="okcancelbuttons" |
2581 | notext="Quit" | 2582 | notext="Quit" |
@@ -2586,11 +2587,11 @@ Download to your Applications folder? | |||
2586 | icon="alertmodal.tga" | 2587 | icon="alertmodal.tga" |
2587 | name="DownloadMac" | 2588 | name="DownloadMac" |
2588 | type="alertmodal"> | 2589 | type="alertmodal"> |
2589 | An updated version of [SECOND_LIFE] is available. | 2590 | An updated version of [SECOND_LIFE] is available. |
2590 | [MESSAGE] | 2591 | [MESSAGE] |
2591 | This update is not required, but we suggest you install it to improve performance and stability. | 2592 | This update is not required, but we suggest you install it to improve performance and stability. |
2592 | 2593 | ||
2593 | Download to your Applications folder? | 2594 | Download to your Applications folder? |
2594 | <usetemplate | 2595 | <usetemplate |
2595 | name="okcancelbuttons" | 2596 | name="okcancelbuttons" |
2596 | notext="Continue" | 2597 | notext="Continue" |
@@ -2601,11 +2602,11 @@ Download to your Applications folder? | |||
2601 | icon="alertmodal.tga" | 2602 | icon="alertmodal.tga" |
2602 | name="DownloadMacReleaseForDownload" | 2603 | name="DownloadMacReleaseForDownload" |
2603 | type="alertmodal"> | 2604 | type="alertmodal"> |
2604 | An updated version of [SECOND_LIFE] is available. | 2605 | An updated version of [SECOND_LIFE] is available. |
2605 | [MESSAGE] | 2606 | [MESSAGE] |
2606 | This update is not required, but we suggest you install it to improve performance and stability. | 2607 | This update is not required, but we suggest you install it to improve performance and stability. |
2607 | 2608 | ||
2608 | Download to your Applications folder? | 2609 | Download to your Applications folder? |
2609 | <usetemplate | 2610 | <usetemplate |
2610 | name="okcancelbuttons" | 2611 | name="okcancelbuttons" |
2611 | notext="Continue" | 2612 | notext="Continue" |
@@ -2616,8 +2617,8 @@ Download to your Applications folder? | |||
2616 | icon="alertmodal.tga" | 2617 | icon="alertmodal.tga" |
2617 | name="DeedObjectToGroup" | 2618 | name="DeedObjectToGroup" |
2618 | type="alertmodal"> | 2619 | type="alertmodal"> |
2619 | Deeding this object will cause the group to: | 2620 | Deeding this object will cause the group to: |
2620 | * Receive L$ paid into the object | 2621 | * Receive L$ paid into the object |
2621 | <usetemplate | 2622 | <usetemplate |
2622 | ignoretext="When deeding objects to groups" | 2623 | ignoretext="When deeding objects to groups" |
2623 | name="okcancelignore" | 2624 | name="okcancelignore" |
@@ -2629,7 +2630,7 @@ Deeding this object will cause the group to: | |||
2629 | icon="alertmodal.tga" | 2630 | icon="alertmodal.tga" |
2630 | name="WebLaunchExternalTarget" | 2631 | name="WebLaunchExternalTarget" |
2631 | type="alertmodal"> | 2632 | type="alertmodal"> |
2632 | Open your system Web browser to view this content? | 2633 | Open your system Web browser to view this content? |
2633 | <usetemplate | 2634 | <usetemplate |
2634 | ignoretext="When opening your system browser to view a Web page" | 2635 | ignoretext="When opening your system browser to view a Web page" |
2635 | name="okcancelignore" | 2636 | name="okcancelignore" |
@@ -2641,7 +2642,7 @@ Open your system Web browser to view this content? | |||
2641 | icon="alertmodal.tga" | 2642 | icon="alertmodal.tga" |
2642 | name="WebLaunchJoinNow" | 2643 | name="WebLaunchJoinNow" |
2643 | type="alertmodal"> | 2644 | type="alertmodal"> |
2644 | Go to www.secondlife.com to manage your account? | 2645 | Go to www.secondlife.com to manage your account? |
2645 | <usetemplate | 2646 | <usetemplate |
2646 | ignoretext="When launching web browser to manage your account" | 2647 | ignoretext="When launching web browser to manage your account" |
2647 | name="okcancelignore" | 2648 | name="okcancelignore" |
@@ -2653,7 +2654,7 @@ Go to www.secondlife.com to manage your account? | |||
2653 | icon="alertmodal.tga" | 2654 | icon="alertmodal.tga" |
2654 | name="WebLaunchBugReport101" | 2655 | name="WebLaunchBugReport101" |
2655 | type="alertmodal"> | 2656 | type="alertmodal"> |
2656 | Visit the [SECOND_LIFE] Wiki and learn how to report bugs correctly. | 2657 | Visit the [SECOND_LIFE] Wiki and learn how to report bugs correctly. |
2657 | <usetemplate | 2658 | <usetemplate |
2658 | ignoretext="When launching web browser to view the Bug Reporting 101 Wiki" | 2659 | ignoretext="When launching web browser to view the Bug Reporting 101 Wiki" |
2659 | name="okcancelignore" | 2660 | name="okcancelignore" |
@@ -2665,7 +2666,7 @@ Visit the [SECOND_LIFE] Wiki and learn how to report bugs correctly. | |||
2665 | icon="alertmodal.tga" | 2666 | icon="alertmodal.tga" |
2666 | name="WebLaunchSecurityIssues" | 2667 | name="WebLaunchSecurityIssues" |
2667 | type="alertmodal"> | 2668 | type="alertmodal"> |
2668 | Visit the [SECOND_LIFE] Wiki for details of how to report a security issue. | 2669 | Visit the [SECOND_LIFE] Wiki for details of how to report a security issue. |
2669 | <usetemplate | 2670 | <usetemplate |
2670 | ignoretext="When launching web browser to view Security Issues Wiki" | 2671 | ignoretext="When launching web browser to view Security Issues Wiki" |
2671 | name="okcancelignore" | 2672 | name="okcancelignore" |
@@ -2677,7 +2678,7 @@ Visit the [SECOND_LIFE] Wiki for details of how to report a security issue. | |||
2677 | icon="alertmodal.tga" | 2678 | icon="alertmodal.tga" |
2678 | name="WebLaunchQAWiki" | 2679 | name="WebLaunchQAWiki" |
2679 | type="alertmodal"> | 2680 | type="alertmodal"> |
2680 | Visit the [SECOND_LIFE] QA Wiki. | 2681 | Visit the [SECOND_LIFE] QA Wiki. |
2681 | <usetemplate | 2682 | <usetemplate |
2682 | ignoretext="When launching web browser to view the QA Wiki" | 2683 | ignoretext="When launching web browser to view the QA Wiki" |
2683 | name="okcancelignore" | 2684 | name="okcancelignore" |
@@ -2689,7 +2690,7 @@ Visit the [SECOND_LIFE] QA Wiki. | |||
2689 | icon="alertmodal.tga" | 2690 | icon="alertmodal.tga" |
2690 | name="WebLaunchPublicIssue" | 2691 | name="WebLaunchPublicIssue" |
2691 | type="alertmodal"> | 2692 | type="alertmodal"> |
2692 | Visit the [SECOND_LIFE] Public Issue Tracker, where you can report bugs and other issues. | 2693 | Visit the [SECOND_LIFE] Public Issue Tracker, where you can report bugs and other issues. |
2693 | <usetemplate | 2694 | <usetemplate |
2694 | ignoretext="When launching web browser to view the Public Issue Tracker" | 2695 | ignoretext="When launching web browser to view the Public Issue Tracker" |
2695 | name="okcancelignore" | 2696 | name="okcancelignore" |
@@ -2701,7 +2702,7 @@ Visit the [SECOND_LIFE] Public Issue Tracker, where you can report bugs and othe | |||
2701 | icon="alertmodal.tga" | 2702 | icon="alertmodal.tga" |
2702 | name="WebLaunchPublicIssueHelp" | 2703 | name="WebLaunchPublicIssueHelp" |
2703 | type="alertmodal"> | 2704 | type="alertmodal"> |
2704 | Visit the [SECOND_LIFE] Wiki for info on how to use the Public Issue Tracker. | 2705 | Visit the [SECOND_LIFE] Wiki for info on how to use the Public Issue Tracker. |
2705 | <usetemplate | 2706 | <usetemplate |
2706 | ignoretext="When launching web browser to view Public Issue Tracker Wiki" | 2707 | ignoretext="When launching web browser to view Public Issue Tracker Wiki" |
2707 | name="okcancelignore" | 2708 | name="okcancelignore" |
@@ -2713,7 +2714,7 @@ Visit the [SECOND_LIFE] Wiki for info on how to use the Public Issue Tracker. | |||
2713 | icon="alertmodal.tga" | 2714 | icon="alertmodal.tga" |
2714 | name="WebLaunchSupportWiki" | 2715 | name="WebLaunchSupportWiki" |
2715 | type="alertmodal"> | 2716 | type="alertmodal"> |
2716 | Go to the Official Linden Blog, for the latest news and information. | 2717 | Go to the Official Linden Blog, for the latest news and information. |
2717 | <usetemplate | 2718 | <usetemplate |
2718 | ignoretext="When launching web browser to view the blog" | 2719 | ignoretext="When launching web browser to view the blog" |
2719 | name="okcancelignore" | 2720 | name="okcancelignore" |
@@ -2725,7 +2726,7 @@ Go to the Official Linden Blog, for the latest news and information. | |||
2725 | icon="alertmodal.tga" | 2726 | icon="alertmodal.tga" |
2726 | name="WebLaunchLSLGuide" | 2727 | name="WebLaunchLSLGuide" |
2727 | type="alertmodal"> | 2728 | type="alertmodal"> |
2728 | Go to the Scripting Guide for scripting help? | 2729 | Go to the Scripting Guide for scripting help? |
2729 | <usetemplate | 2730 | <usetemplate |
2730 | ignoretext="When launching web browser to view the Scripting Guide" | 2731 | ignoretext="When launching web browser to view the Scripting Guide" |
2731 | name="okcancelignore" | 2732 | name="okcancelignore" |
@@ -2737,7 +2738,7 @@ Go to the Scripting Guide for scripting help? | |||
2737 | icon="alertmodal.tga" | 2738 | icon="alertmodal.tga" |
2738 | name="WebLaunchLSLWiki" | 2739 | name="WebLaunchLSLWiki" |
2739 | type="alertmodal"> | 2740 | type="alertmodal"> |
2740 | Go to the LSL Portal for scripting help? | 2741 | Go to the LSL Portal for scripting help? |
2741 | <usetemplate | 2742 | <usetemplate |
2742 | ignoretext="When launching web browser to view the LSL Portal" | 2743 | ignoretext="When launching web browser to view the LSL Portal" |
2743 | name="okcancelignore" | 2744 | name="okcancelignore" |
@@ -2749,9 +2750,9 @@ Go to the LSL Portal for scripting help? | |||
2749 | icon="alertmodal.tga" | 2750 | icon="alertmodal.tga" |
2750 | name="ReturnToOwner" | 2751 | name="ReturnToOwner" |
2751 | type="alertmodal"> | 2752 | type="alertmodal"> |
2752 | Are you sure you want to return the selected objects to their owners? Transferable deeded objects will be returned to their previous owners. | 2753 | Are you sure you want to return the selected objects to their owners? Transferable deeded objects will be returned to their previous owners. |
2753 | 2754 | ||
2754 | *WARNING* No-transfer deeded objects will be deleted! | 2755 | *WARNING* No-transfer deeded objects will be deleted! |
2755 | <usetemplate | 2756 | <usetemplate |
2756 | ignoretext="When returning objects to their owners" | 2757 | ignoretext="When returning objects to their owners" |
2757 | name="okcancelignore" | 2758 | name="okcancelignore" |
@@ -2763,8 +2764,8 @@ Are you sure you want to return the selected objects to their owners? Transferab | |||
2763 | icon="alert.tga" | 2764 | icon="alert.tga" |
2764 | name="GroupLeaveConfirmMember" | 2765 | name="GroupLeaveConfirmMember" |
2765 | type="alert"> | 2766 | type="alert"> |
2766 | You are currently a member of the group [GROUP]. | 2767 | You are currently a member of the group [GROUP]. |
2767 | Leave Group? | 2768 | Leave Group? |
2768 | <usetemplate | 2769 | <usetemplate |
2769 | name="okcancelbuttons" | 2770 | name="okcancelbuttons" |
2770 | notext="Cancel" | 2771 | notext="Cancel" |
@@ -2775,7 +2776,7 @@ Leave Group? | |||
2775 | icon="alert.tga" | 2776 | icon="alert.tga" |
2776 | name="ConfirmKick" | 2777 | name="ConfirmKick" |
2777 | type="alert"> | 2778 | type="alert"> |
2778 | Do you REALLY want to kick all users off the grid? | 2779 | Do you REALLY want to kick all users off the grid? |
2779 | <usetemplate | 2780 | <usetemplate |
2780 | name="okcancelbuttons" | 2781 | name="okcancelbuttons" |
2781 | notext="Cancel" | 2782 | notext="Cancel" |
@@ -2786,7 +2787,7 @@ Do you REALLY want to kick all users off the grid? | |||
2786 | icon="alertmodal.tga" | 2787 | icon="alertmodal.tga" |
2787 | name="MuteLinden" | 2788 | name="MuteLinden" |
2788 | type="alertmodal"> | 2789 | type="alertmodal"> |
2789 | Sorry, you cannot mute a Linden. | 2790 | Sorry, you cannot mute a Linden. |
2790 | <usetemplate | 2791 | <usetemplate |
2791 | name="okbutton" | 2792 | name="okbutton" |
2792 | yestext="OK"/> | 2793 | yestext="OK"/> |
@@ -2796,7 +2797,7 @@ Sorry, you cannot mute a Linden. | |||
2796 | icon="alertmodal.tga" | 2797 | icon="alertmodal.tga" |
2797 | name="CannotStartAuctionAlreadyForSale" | 2798 | name="CannotStartAuctionAlreadyForSale" |
2798 | type="alertmodal"> | 2799 | type="alertmodal"> |
2799 | You cannot start an auction on a parcel which is already set for sale. Disable the land sale if you are sure you want to start an auction. | 2800 | You cannot start an auction on a parcel which is already set for sale. Disable the land sale if you are sure you want to start an auction. |
2800 | </notification> | 2801 | </notification> |
2801 | 2802 | ||
2802 | <notification | 2803 | <notification |
@@ -2804,7 +2805,7 @@ You cannot start an auction on a parcel which is already set for sale. Disable | |||
2804 | label="Mute object by name failed" | 2805 | label="Mute object by name failed" |
2805 | name="MuteByNameFailed" | 2806 | name="MuteByNameFailed" |
2806 | type="alertmodal"> | 2807 | type="alertmodal"> |
2807 | You already have muted this name. | 2808 | You already have muted this name. |
2808 | <usetemplate | 2809 | <usetemplate |
2809 | name="okbutton" | 2810 | name="okbutton" |
2810 | yestext="OK"/> | 2811 | yestext="OK"/> |
@@ -2814,7 +2815,7 @@ You already have muted this name. | |||
2814 | icon="alert.tga" | 2815 | icon="alert.tga" |
2815 | name="RemoveItemWarn" | 2816 | name="RemoveItemWarn" |
2816 | type="alert"> | 2817 | type="alert"> |
2817 | Though permitted, deleting contents may damage the object. Do you want to delete that item? | 2818 | Though permitted, deleting contents may damage the object. Do you want to delete that item? |
2818 | <usetemplate | 2819 | <usetemplate |
2819 | name="okcancelbuttons" | 2820 | name="okcancelbuttons" |
2820 | notext="Cancel" | 2821 | notext="Cancel" |
@@ -2825,7 +2826,7 @@ Though permitted, deleting contents may damage the object. Do you want to delete | |||
2825 | icon="alert.tga" | 2826 | icon="alert.tga" |
2826 | name="CantOfferCallingCard" | 2827 | name="CantOfferCallingCard" |
2827 | type="alert"> | 2828 | type="alert"> |
2828 | Cannot offer a calling card at this time. Please try again in a moment. | 2829 | Cannot offer a calling card at this time. Please try again in a moment. |
2829 | <usetemplate | 2830 | <usetemplate |
2830 | name="okbutton" | 2831 | name="okbutton" |
2831 | yestext="OK"/> | 2832 | yestext="OK"/> |
@@ -2835,7 +2836,7 @@ Cannot offer a calling card at this time. Please try again in a moment. | |||
2835 | icon="alert.tga" | 2836 | icon="alert.tga" |
2836 | name="CantOfferFriendship" | 2837 | name="CantOfferFriendship" |
2837 | type="alert"> | 2838 | type="alert"> |
2838 | Cannot offer friendship at this time. Please try again in a moment. | 2839 | Cannot offer friendship at this time. Please try again in a moment. |
2839 | <usetemplate | 2840 | <usetemplate |
2840 | name="okbutton" | 2841 | name="okbutton" |
2841 | yestext="OK"/> | 2842 | yestext="OK"/> |
@@ -2845,8 +2846,8 @@ Cannot offer friendship at this time. Please try again in a moment. | |||
2845 | icon="alert.tga" | 2846 | icon="alert.tga" |
2846 | name="BusyModeSet" | 2847 | name="BusyModeSet" |
2847 | type="alert"> | 2848 | type="alert"> |
2848 | Busy mode set. | 2849 | Busy mode set. |
2849 | Chat and instant messages will be hidden. Instant messages will get your Busy mode response. All teleportation offers will be declined. All inventory offers will go to your Trash. | 2850 | Chat and instant messages will be hidden. Instant messages will get your Busy mode response. All teleportation offers will be declined. All inventory offers will go to your Trash. |
2850 | <usetemplate | 2851 | <usetemplate |
2851 | ignoretext="When setting busy mode" | 2852 | ignoretext="When setting busy mode" |
2852 | name="okignore" | 2853 | name="okignore" |
@@ -2857,10 +2858,10 @@ Chat and instant messages will be hidden. Instant messages will get your Busy mo | |||
2857 | icon="alert.tga" | 2858 | icon="alert.tga" |
2858 | name="JoinedTooManyGroupsMember" | 2859 | name="JoinedTooManyGroupsMember" |
2859 | type="alert"> | 2860 | type="alert"> |
2860 | You are a member of too many groups to join another one. Please leave at least one group before joining this one, or decline the offer. | 2861 | You are a member of too many groups to join another one. Please leave at least one group before joining this one, or decline the offer. |
2861 | To leave a group select the 'Groups...' option from the 'Edit' menu. | 2862 | To leave a group select the 'Groups...' option from the 'Edit' menu. |
2862 | [NAME] has invited you to join a group as a member. | 2863 | [NAME] has invited you to join a group as a member. |
2863 | [INVITE] | 2864 | [INVITE] |
2864 | <usetemplate | 2865 | <usetemplate |
2865 | name="okcancelbuttons" | 2866 | name="okcancelbuttons" |
2866 | notext="Decline" | 2867 | notext="Decline" |
@@ -2871,10 +2872,10 @@ To leave a group select the 'Groups...' option from the 'Edit&apo | |||
2871 | icon="alert.tga" | 2872 | icon="alert.tga" |
2872 | name="KickUser" | 2873 | name="KickUser" |
2873 | type="alert"> | 2874 | type="alert"> |
2874 | Kick this user with what message? | 2875 | Kick this user with what message? |
2875 | <form name="form"> | 2876 | <form name="form"> |
2876 | <input name="message" type="text"> | 2877 | <input name="message" type="text"> |
2877 | An administrator has logged you off. | 2878 | An administrator has logged you off. |
2878 | </input> | 2879 | </input> |
2879 | <button | 2880 | <button |
2880 | default="true" | 2881 | default="true" |
@@ -2892,10 +2893,10 @@ An administrator has logged you off. | |||
2892 | icon="alert.tga" | 2893 | icon="alert.tga" |
2893 | name="KickAllUsers" | 2894 | name="KickAllUsers" |
2894 | type="alert"> | 2895 | type="alert"> |
2895 | Kick everyone currently on the grid with what message? | 2896 | Kick everyone currently on the grid with what message? |
2896 | <form name="form"> | 2897 | <form name="form"> |
2897 | <input name="message" type="text"> | 2898 | <input name="message" type="text"> |
2898 | An administrator has logged you off. | 2899 | An administrator has logged you off. |
2899 | </input> | 2900 | </input> |
2900 | <button | 2901 | <button |
2901 | default="true" | 2902 | default="true" |
@@ -2913,10 +2914,10 @@ An administrator has logged you off. | |||
2913 | icon="alert.tga" | 2914 | icon="alert.tga" |
2914 | name="FreezeUser" | 2915 | name="FreezeUser" |
2915 | type="alert"> | 2916 | type="alert"> |
2916 | Freeze this user with what message? | 2917 | Freeze this user with what message? |
2917 | <form name="form"> | 2918 | <form name="form"> |
2918 | <input name="message" type="text"> | 2919 | <input name="message" type="text"> |
2919 | You have been frozen. You cannot move or chat. An administrator will contact you via instant message (IM). | 2920 | You have been frozen. You cannot move or chat. An administrator will contact you via instant message (IM). |
2920 | </input> | 2921 | </input> |
2921 | <button | 2922 | <button |
2922 | default="true" | 2923 | default="true" |
@@ -2934,10 +2935,10 @@ You have been frozen. You cannot move or chat. An administrator will contact you | |||
2934 | icon="alert.tga" | 2935 | icon="alert.tga" |
2935 | name="UnFreezeUser" | 2936 | name="UnFreezeUser" |
2936 | type="alert"> | 2937 | type="alert"> |
2937 | Unfreeze this user with what message? | 2938 | Unfreeze this user with what message? |
2938 | <form name="form"> | 2939 | <form name="form"> |
2939 | <input name="message" type="text"> | 2940 | <input name="message" type="text"> |
2940 | You are no longer frozen. | 2941 | You are no longer frozen. |
2941 | </input> | 2942 | </input> |
2942 | <button | 2943 | <button |
2943 | default="true" | 2944 | default="true" |
@@ -2955,10 +2956,10 @@ You are no longer frozen. | |||
2955 | icon="alertmodal.tga" | 2956 | icon="alertmodal.tga" |
2956 | name="OfferTeleport" | 2957 | name="OfferTeleport" |
2957 | type="alertmodal"> | 2958 | type="alertmodal"> |
2958 | Offer a teleport to your location with the following message? | 2959 | Offer a teleport to your location with the following message? |
2959 | <form name="form"> | 2960 | <form name="form"> |
2960 | <input name="message" type="text"> | 2961 | <input name="message" type="text"> |
2961 | Join me in [REGION] | 2962 | Join me in [REGION] |
2962 | </input> | 2963 | </input> |
2963 | <button | 2964 | <button |
2964 | default="true" | 2965 | default="true" |
@@ -2976,10 +2977,10 @@ Join me in [REGION] | |||
2976 | icon="alertmodal.tga" | 2977 | icon="alertmodal.tga" |
2977 | name="OfferTeleportFromGod" | 2978 | name="OfferTeleportFromGod" |
2978 | type="alertmodal"> | 2979 | type="alertmodal"> |
2979 | God summon user to your location? | 2980 | God summon user to your location? |
2980 | <form name="form"> | 2981 | <form name="form"> |
2981 | <input name="message" type="text"> | 2982 | <input name="message" type="text"> |
2982 | Join me in [REGION] | 2983 | Join me in [REGION] |
2983 | </input> | 2984 | </input> |
2984 | <button | 2985 | <button |
2985 | default="true" | 2986 | default="true" |
@@ -2997,7 +2998,7 @@ Join me in [REGION] | |||
2997 | icon="alertmodal.tga" | 2998 | icon="alertmodal.tga" |
2998 | name="TeleportFromLandmark" | 2999 | name="TeleportFromLandmark" |
2999 | type="alertmodal"> | 3000 | type="alertmodal"> |
3000 | Are you sure you want to teleport? | 3001 | Are you sure you want to teleport? |
3001 | <usetemplate | 3002 | <usetemplate |
3002 | ignoretext="When teleporting from a landmark in inventory" | 3003 | ignoretext="When teleporting from a landmark in inventory" |
3003 | name="okcancelignore" | 3004 | name="okcancelignore" |
@@ -3010,7 +3011,7 @@ Are you sure you want to teleport? | |||
3010 | label="Message everyone in your Estate" | 3011 | label="Message everyone in your Estate" |
3011 | name="MessageEstate" | 3012 | name="MessageEstate" |
3012 | type="alert"> | 3013 | type="alert"> |
3013 | Type a short announcement which will be sent to everyone currently in your estate. | 3014 | Type a short announcement which will be sent to everyone currently in your estate. |
3014 | <form name="form"> | 3015 | <form name="form"> |
3015 | <input name="message" type="text"/> | 3016 | <input name="message" type="text"/> |
3016 | <button | 3017 | <button |
@@ -3030,11 +3031,11 @@ Type a short announcement which will be sent to everyone currently in your estat | |||
3030 | label="Change Linden Estate" | 3031 | label="Change Linden Estate" |
3031 | name="ChangeLindenEstate" | 3032 | name="ChangeLindenEstate" |
3032 | type="alert"> | 3033 | type="alert"> |
3033 | You are about to change a Linden owned estate (mainland, teen grid, orientation, etc.). | 3034 | You are about to change a Linden owned estate (mainland, teen grid, orientation, etc.). |
3034 | 3035 | ||
3035 | This is EXTREMELY DANGEROUS because it can fundamentally affect the user experience. On the mainland, it will change thousands of regions and make the spaceserver hiccup. | 3036 | This is EXTREMELY DANGEROUS because it can fundamentally affect the user experience. On the mainland, it will change thousands of regions and make the spaceserver hiccup. |
3036 | 3037 | ||
3037 | Proceed? | 3038 | Proceed? |
3038 | <usetemplate | 3039 | <usetemplate |
3039 | name="okcancelbuttons" | 3040 | name="okcancelbuttons" |
3040 | notext="Cancel" | 3041 | notext="Cancel" |
@@ -3046,10 +3047,10 @@ Proceed? | |||
3046 | label="Change Linden Estate Access" | 3047 | label="Change Linden Estate Access" |
3047 | name="ChangeLindenAccess" | 3048 | name="ChangeLindenAccess" |
3048 | type="alert"> | 3049 | type="alert"> |
3049 | You are about to change the access list for a Linden owned estate (mainland, teen grid, orientation, etc.). | 3050 | You are about to change the access list for a Linden owned estate (mainland, teen grid, orientation, etc.). |
3050 | 3051 | ||
3051 | This is DANGEROUS and should only be done to invoke the hack allowing objects/L$ to be transfered in/out of a grid. | 3052 | This is DANGEROUS and should only be done to invoke the hack allowing objects/L$ to be transfered in/out of a grid. |
3052 | It will change thousands of regions and make the spaceserver hiccup. | 3053 | It will change thousands of regions and make the spaceserver hiccup. |
3053 | <usetemplate | 3054 | <usetemplate |
3054 | name="okcancelbuttons" | 3055 | name="okcancelbuttons" |
3055 | notext="Cancel" | 3056 | notext="Cancel" |
@@ -3061,7 +3062,7 @@ It will change thousands of regions and make the spaceserver hiccup. | |||
3061 | label="Select estate" | 3062 | label="Select estate" |
3062 | name="EstateAllowedAgentAdd" | 3063 | name="EstateAllowedAgentAdd" |
3063 | type="alert"> | 3064 | type="alert"> |
3064 | Add to allowed list for this estate only or for [ALL_ESTATES]? | 3065 | Add to allowed list for this estate only or for [ALL_ESTATES]? |
3065 | <usetemplate | 3066 | <usetemplate |
3066 | canceltext="Cancel" | 3067 | canceltext="Cancel" |
3067 | name="yesnocancelbuttons" | 3068 | name="yesnocancelbuttons" |
@@ -3074,7 +3075,7 @@ Add to allowed list for this estate only or for [ALL_ESTATES]? | |||
3074 | label="Select estate" | 3075 | label="Select estate" |
3075 | name="EstateAllowedAgentRemove" | 3076 | name="EstateAllowedAgentRemove" |
3076 | type="alert"> | 3077 | type="alert"> |
3077 | Remove from allowed list for this estate only or for [ALL_ESTATES]? | 3078 | Remove from allowed list for this estate only or for [ALL_ESTATES]? |
3078 | <usetemplate | 3079 | <usetemplate |
3079 | canceltext="Cancel" | 3080 | canceltext="Cancel" |
3080 | name="yesnocancelbuttons" | 3081 | name="yesnocancelbuttons" |
@@ -3087,7 +3088,7 @@ Remove from allowed list for this estate only or for [ALL_ESTATES]? | |||
3087 | label="Select estate" | 3088 | label="Select estate" |
3088 | name="EstateAllowedGroupAdd" | 3089 | name="EstateAllowedGroupAdd" |
3089 | type="alert"> | 3090 | type="alert"> |
3090 | Add to group allowed list for this estate only or for [ALL_ESTATES]? | 3091 | Add to group allowed list for this estate only or for [ALL_ESTATES]? |
3091 | <usetemplate | 3092 | <usetemplate |
3092 | canceltext="Cancel" | 3093 | canceltext="Cancel" |
3093 | name="yesnocancelbuttons" | 3094 | name="yesnocancelbuttons" |
@@ -3100,7 +3101,7 @@ Add to group allowed list for this estate only or for [ALL_ESTATES]? | |||
3100 | label="Select estate" | 3101 | label="Select estate" |
3101 | name="EstateAllowedGroupRemove" | 3102 | name="EstateAllowedGroupRemove" |
3102 | type="alert"> | 3103 | type="alert"> |
3103 | Remove from group allowed list for this estate only or [ALL_ESTATES]? | 3104 | Remove from group allowed list for this estate only or [ALL_ESTATES]? |
3104 | <usetemplate | 3105 | <usetemplate |
3105 | canceltext="Cancel" | 3106 | canceltext="Cancel" |
3106 | name="yesnocancelbuttons" | 3107 | name="yesnocancelbuttons" |
@@ -3113,7 +3114,7 @@ Remove from group allowed list for this estate only or [ALL_ESTATES]? | |||
3113 | label="Select estate" | 3114 | label="Select estate" |
3114 | name="EstateBannedAgentAdd" | 3115 | name="EstateBannedAgentAdd" |
3115 | type="alert"> | 3116 | type="alert"> |
3116 | Deny access for this estate only or for [ALL_ESTATES]? | 3117 | Deny access for this estate only or for [ALL_ESTATES]? |
3117 | <usetemplate | 3118 | <usetemplate |
3118 | canceltext="Cancel" | 3119 | canceltext="Cancel" |
3119 | name="yesnocancelbuttons" | 3120 | name="yesnocancelbuttons" |
@@ -3126,7 +3127,7 @@ Deny access for this estate only or for [ALL_ESTATES]? | |||
3126 | label="Select estate" | 3127 | label="Select estate" |
3127 | name="EstateBannedAgentRemove" | 3128 | name="EstateBannedAgentRemove" |
3128 | type="alert"> | 3129 | type="alert"> |
3129 | Remove this Resident from the ban list for access for this estate only or for [ALL_ESTATES]? | 3130 | Remove this Resident from the ban list for access for this estate only or for [ALL_ESTATES]? |
3130 | <usetemplate | 3131 | <usetemplate |
3131 | canceltext="Cancel" | 3132 | canceltext="Cancel" |
3132 | name="yesnocancelbuttons" | 3133 | name="yesnocancelbuttons" |
@@ -3139,7 +3140,7 @@ Remove this Resident from the ban list for access for this estate only or for [ | |||
3139 | label="Select estate" | 3140 | label="Select estate" |
3140 | name="EstateManagerAdd" | 3141 | name="EstateManagerAdd" |
3141 | type="alert"> | 3142 | type="alert"> |
3142 | Add estate manager for this estate only or for [ALL_ESTATES]? | 3143 | Add estate manager for this estate only or for [ALL_ESTATES]? |
3143 | <usetemplate | 3144 | <usetemplate |
3144 | canceltext="Cancel" | 3145 | canceltext="Cancel" |
3145 | name="yesnocancelbuttons" | 3146 | name="yesnocancelbuttons" |
@@ -3152,7 +3153,7 @@ Add estate manager for this estate only or for [ALL_ESTATES]? | |||
3152 | label="Select estate" | 3153 | label="Select estate" |
3153 | name="EstateManagerRemove" | 3154 | name="EstateManagerRemove" |
3154 | type="alert"> | 3155 | type="alert"> |
3155 | Remove estate manager for this estate only or for [ALL_ESTATES]? | 3156 | Remove estate manager for this estate only or for [ALL_ESTATES]? |
3156 | <usetemplate | 3157 | <usetemplate |
3157 | canceltext="Cancel" | 3158 | canceltext="Cancel" |
3158 | name="yesnocancelbuttons" | 3159 | name="yesnocancelbuttons" |
@@ -3165,7 +3166,7 @@ Remove estate manager for this estate only or for [ALL_ESTATES]? | |||
3165 | label="Confirm Kick" | 3166 | label="Confirm Kick" |
3166 | name="EstateKickUser" | 3167 | name="EstateKickUser" |
3167 | type="alert"> | 3168 | type="alert"> |
3168 | Kick [EVIL_USER] from this estate? | 3169 | Kick [EVIL_USER] from this estate? |
3169 | <usetemplate | 3170 | <usetemplate |
3170 | name="okcancelbuttons" | 3171 | name="okcancelbuttons" |
3171 | notext="Cancel" | 3172 | notext="Cancel" |
@@ -3176,7 +3177,7 @@ Kick [EVIL_USER] from this estate? | |||
3176 | icon="alertmodal.tga" | 3177 | icon="alertmodal.tga" |
3177 | name="EstateChangeCovenant" | 3178 | name="EstateChangeCovenant" |
3178 | type="alertmodal"> | 3179 | type="alertmodal"> |
3179 | Are you sure you want to change the Estate Covenant? | 3180 | Are you sure you want to change the Estate Covenant? |
3180 | <usetemplate | 3181 | <usetemplate |
3181 | name="okcancelbuttons" | 3182 | name="okcancelbuttons" |
3182 | notext="Cancel" | 3183 | notext="Cancel" |
@@ -3187,9 +3188,9 @@ Are you sure you want to change the Estate Covenant? | |||
3187 | icon="alertmodal.tga" | 3188 | icon="alertmodal.tga" |
3188 | name="RegionEntryAccessBlocked" | 3189 | name="RegionEntryAccessBlocked" |
3189 | type="alertmodal"> | 3190 | type="alertmodal"> |
3190 | You are not allowed in that Region due to your maturity Rating. This may be a result of a lack of information validating your age. | 3191 | You are not allowed in that Region due to your maturity Rating. This may be a result of a lack of information validating your age. |
3191 | 3192 | ||
3192 | Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating. | 3193 | Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating. |
3193 | <usetemplate | 3194 | <usetemplate |
3194 | name="okbutton" | 3195 | name="okbutton" |
3195 | yestext="OK"/> | 3196 | yestext="OK"/> |
@@ -3199,11 +3200,11 @@ Please verify you have the latest Viewer installed, and go to the Knowledge Base | |||
3199 | icon="alertmodal.tga" | 3200 | icon="alertmodal.tga" |
3200 | name="RegionEntryAccessBlocked_KB" | 3201 | name="RegionEntryAccessBlocked_KB" |
3201 | type="alertmodal"> | 3202 | type="alertmodal"> |
3202 | You are not allowed in that region due to your maturity Rating. | 3203 | You are not allowed in that region due to your maturity Rating. |
3203 | 3204 | ||
3204 | Go to the Knowledge Base for more information about maturity Ratings? | 3205 | Go to the Knowledge Base for more information about maturity Ratings? |
3205 | <url option="0" name="url"> | 3206 | <url option="0" name="url"> |
3206 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 | 3207 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 |
3207 | </url> | 3208 | </url> |
3208 | <usetemplate | 3209 | <usetemplate |
3209 | name="okcancelignore" | 3210 | name="okcancelignore" |
@@ -3216,17 +3217,17 @@ Go to the Knowledge Base for more information about maturity Ratings? | |||
3216 | icon="notifytip.tga" | 3217 | icon="notifytip.tga" |
3217 | name="RegionEntryAccessBlocked_Notify" | 3218 | name="RegionEntryAccessBlocked_Notify" |
3218 | type="notifytip"> | 3219 | type="notifytip"> |
3219 | You are not allowed in that region due to your maturity Rating. | 3220 | You are not allowed in that region due to your maturity Rating. |
3220 | </notification> | 3221 | </notification> |
3221 | 3222 | ||
3222 | <notification | 3223 | <notification |
3223 | icon="alertmodal.tga" | 3224 | icon="alertmodal.tga" |
3224 | name="RegionEntryAccessBlocked_Change" | 3225 | name="RegionEntryAccessBlocked_Change" |
3225 | type="alertmodal"> | 3226 | type="alertmodal"> |
3226 | You are not allowed in that Region due to your maturity Rating preference. | 3227 | You are not allowed in that Region due to your maturity Rating preference. |
3227 | 3228 | ||
3228 | You can click 'Change Preference' to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Edit > Preferences... > General. | 3229 | You can click 'Change Preference' to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Edit > Preferences... > General. |
3229 | <form name="form"> | 3230 | <form name="form"> |
3230 | <button | 3231 | <button |
3231 | index="0" | 3232 | index="0" |
3232 | name="OK" | 3233 | name="OK" |
@@ -3236,7 +3237,7 @@ You can click 'Change Preference' to raise your maturity Rating prefer | |||
3236 | index="1" | 3237 | index="1" |
3237 | name="Cancel" | 3238 | name="Cancel" |
3238 | text="Close"/> | 3239 | text="Close"/> |
3239 | <ignore name="ignore" text="When Region entry is blocked due to maturity Rating preference"/> | 3240 | <ignore name="ignore" text="When Region entry is blocked due to maturity Rating preference"/> |
3240 | </form> | 3241 | </form> |
3241 | </notification> | 3242 | </notification> |
3242 | 3243 | ||
@@ -3244,9 +3245,9 @@ You can click 'Change Preference' to raise your maturity Rating prefer | |||
3244 | icon="alertmodal.tga" | 3245 | icon="alertmodal.tga" |
3245 | name="LandClaimAccessBlocked" | 3246 | name="LandClaimAccessBlocked" |
3246 | type="alertmodal"> | 3247 | type="alertmodal"> |
3247 | You cannot claim this land due to your maturity Rating. This may be a result of a lack of information validating your age. | 3248 | You cannot claim this land due to your maturity Rating. This may be a result of a lack of information validating your age. |
3248 | 3249 | ||
3249 | Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating. | 3250 | Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating. |
3250 | <usetemplate | 3251 | <usetemplate |
3251 | name="okbutton" | 3252 | name="okbutton" |
3252 | yestext="OK"/> | 3253 | yestext="OK"/> |
@@ -3256,11 +3257,11 @@ Please verify you have the latest Viewer installed, and go to the Knowledge Base | |||
3256 | icon="alertmodal.tga" | 3257 | icon="alertmodal.tga" |
3257 | name="LandClaimAccessBlocked_KB" | 3258 | name="LandClaimAccessBlocked_KB" |
3258 | type="alertmodal"> | 3259 | type="alertmodal"> |
3259 | You cannot claim this land due to your maturity Rating. | 3260 | You cannot claim this land due to your maturity Rating. |
3260 | 3261 | ||
3261 | Go to the Knowledge Base for more information about maturity Ratings? | 3262 | Go to the Knowledge Base for more information about maturity Ratings? |
3262 | <url option="0" name="url"> | 3263 | <url option="0" name="url"> |
3263 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 | 3264 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 |
3264 | </url> | 3265 | </url> |
3265 | <usetemplate | 3266 | <usetemplate |
3266 | name="okcancelignore" | 3267 | name="okcancelignore" |
@@ -3273,16 +3274,16 @@ Go to the Knowledge Base for more information about maturity Ratings? | |||
3273 | icon="notifytip.tga" | 3274 | icon="notifytip.tga" |
3274 | name="LandClaimAccessBlocked_Notify" | 3275 | name="LandClaimAccessBlocked_Notify" |
3275 | type="notifytip"> | 3276 | type="notifytip"> |
3276 | You cannot claim this land due to your maturity Rating. | 3277 | You cannot claim this land due to your maturity Rating. |
3277 | </notification> | 3278 | </notification> |
3278 | 3279 | ||
3279 | <notification | 3280 | <notification |
3280 | icon="alertmodal.tga" | 3281 | icon="alertmodal.tga" |
3281 | name="LandClaimAccessBlocked_Change" | 3282 | name="LandClaimAccessBlocked_Change" |
3282 | type="alertmodal"> | 3283 | type="alertmodal"> |
3283 | You cannot claim this land due to your maturity Rating preference. | 3284 | You cannot claim this land due to your maturity Rating preference. |
3284 | 3285 | ||
3285 | You can click 'Change Preference' to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Edit > Preferences... > General. | 3286 | You can click 'Change Preference' to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Edit > Preferences... > General. |
3286 | <usetemplate | 3287 | <usetemplate |
3287 | name="okcancelignore" | 3288 | name="okcancelignore" |
3288 | yestext="Change Preference" | 3289 | yestext="Change Preference" |
@@ -3294,9 +3295,9 @@ You can click 'Change Preference' to raise your maturity Rating prefer | |||
3294 | icon="alertmodal.tga" | 3295 | icon="alertmodal.tga" |
3295 | name="LandBuyAccessBlocked" | 3296 | name="LandBuyAccessBlocked" |
3296 | type="alertmodal"> | 3297 | type="alertmodal"> |
3297 | You cannot buy this land due to your maturity Rating. This may be a result of a lack of information validating your age. | 3298 | You cannot buy this land due to your maturity Rating. This may be a result of a lack of information validating your age. |
3298 | 3299 | ||
3299 | Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating. | 3300 | Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating. |
3300 | <usetemplate | 3301 | <usetemplate |
3301 | name="okbutton" | 3302 | name="okbutton" |
3302 | yestext="OK"/> | 3303 | yestext="OK"/> |
@@ -3306,11 +3307,11 @@ Please verify you have the latest Viewer installed, and go to the Knowledge Base | |||
3306 | icon="alertmodal.tga" | 3307 | icon="alertmodal.tga" |
3307 | name="LandBuyAccessBlocked_KB" | 3308 | name="LandBuyAccessBlocked_KB" |
3308 | type="alertmodal"> | 3309 | type="alertmodal"> |
3309 | You cannot buy this land due to your maturity Rating. | 3310 | You cannot buy this land due to your maturity Rating. |
3310 | 3311 | ||
3311 | Go to the Knowledge Base for more information about maturity Ratings? | 3312 | Go to the Knowledge Base for more information about maturity Ratings? |
3312 | <url option="0" name="url"> | 3313 | <url option="0" name="url"> |
3313 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 | 3314 | https://support.secondlife.com/ics/support/default.asp?deptID=4417&task=knowledge&questionID=6010 |
3314 | </url> | 3315 | </url> |
3315 | <usetemplate | 3316 | <usetemplate |
3316 | name="okcancelignore" | 3317 | name="okcancelignore" |
@@ -3323,16 +3324,16 @@ Go to the Knowledge Base for more information about maturity Ratings? | |||
3323 | icon="notifytip.tga" | 3324 | icon="notifytip.tga" |
3324 | name="LandBuyAccessBlocked_Notify" | 3325 | name="LandBuyAccessBlocked_Notify" |
3325 | type="notifytip"> | 3326 | type="notifytip"> |
3326 | You cannot buy this land due to your maturity Rating. | 3327 | You cannot buy this land due to your maturity Rating. |
3327 | </notification> | 3328 | </notification> |
3328 | 3329 | ||
3329 | <notification | 3330 | <notification |
3330 | icon="alertmodal.tga" | 3331 | icon="alertmodal.tga" |
3331 | name="LandBuyAccessBlocked_Change" | 3332 | name="LandBuyAccessBlocked_Change" |
3332 | type="alertmodal"> | 3333 | type="alertmodal"> |
3333 | You cannot buy this land due to your maturity Rating preference. | 3334 | You cannot buy this land due to your maturity Rating preference. |
3334 | 3335 | ||
3335 | You can click 'Change Preference' to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Edit > Preferences... > General. | 3336 | You can click 'Change Preference' to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Edit > Preferences... > General. |
3336 | <usetemplate | 3337 | <usetemplate |
3337 | name="okcancelignore" | 3338 | name="okcancelignore" |
3338 | yestext="Change Preference" | 3339 | yestext="Change Preference" |
@@ -3340,21 +3341,21 @@ You can click 'Change Preference' to raise your maturity Rating prefer | |||
3340 | ignoretext="When a Land purchase is blocked due to maturity Rating preference"/> | 3341 | ignoretext="When a Land purchase is blocked due to maturity Rating preference"/> |
3341 | </notification> | 3342 | </notification> |
3342 | 3343 | ||
3343 | <notification | 3344 | <notification |
3344 | icon="alertmodal.tga" | 3345 | icon="alertmodal.tga" |
3345 | name="TooManyPrimsSelected" | 3346 | name="TooManyPrimsSelected" |
3346 | type="alertmodal"> | 3347 | type="alertmodal"> |
3347 | "There are too many prims selected. Please select [MAX_PRIM_COUNT] or fewer prims and try again" | 3348 | "There are too many prims selected. Please select [MAX_PRIM_COUNT] or fewer prims and try again" |
3348 | <usetemplate | 3349 | <usetemplate |
3349 | name="okbutton" | 3350 | name="okbutton" |
3350 | yestext="OK"/> | 3351 | yestext="OK"/> |
3351 | </notification> | 3352 | </notification> |
3352 | 3353 | ||
3353 | <notification | 3354 | <notification |
3354 | icon="alertmodal.tga" | 3355 | icon="alertmodal.tga" |
3355 | name="ProblemImportingEstateCovenant" | 3356 | name="ProblemImportingEstateCovenant" |
3356 | type="alertmodal"> | 3357 | type="alertmodal"> |
3357 | Problem importing estate covenant. | 3358 | Problem importing estate covenant. |
3358 | <usetemplate | 3359 | <usetemplate |
3359 | name="okbutton" | 3360 | name="okbutton" |
3360 | yestext="OK"/> | 3361 | yestext="OK"/> |
@@ -3364,21 +3365,21 @@ Problem importing estate covenant. | |||
3364 | icon="alertmodal.tga" | 3365 | icon="alertmodal.tga" |
3365 | name="ProblemAddingEstateManager" | 3366 | name="ProblemAddingEstateManager" |
3366 | type="alertmodal"> | 3367 | type="alertmodal"> |
3367 | Problems adding a new estate manager. One or more estates may have a full manager list. | 3368 | Problems adding a new estate manager. One or more estates may have a full manager list. |
3368 | </notification> | 3369 | </notification> |
3369 | 3370 | ||
3370 | <notification | 3371 | <notification |
3371 | icon="alertmodal.tga" | 3372 | icon="alertmodal.tga" |
3372 | name="ProblemAddingEstateGeneric" | 3373 | name="ProblemAddingEstateGeneric" |
3373 | type="alertmodal"> | 3374 | type="alertmodal"> |
3374 | Problems adding to this estate list. One or more estates may have a full list. | 3375 | Problems adding to this estate list. One or more estates may have a full list. |
3375 | </notification> | 3376 | </notification> |
3376 | 3377 | ||
3377 | <notification | 3378 | <notification |
3378 | icon="alertmodal.tga" | 3379 | icon="alertmodal.tga" |
3379 | name="UnableToLoadNotecardAsset" | 3380 | name="UnableToLoadNotecardAsset" |
3380 | type="alertmodal"> | 3381 | type="alertmodal"> |
3381 | Unable to load notecard's asset at this time. | 3382 | Unable to load notecard's asset at this time. |
3382 | <usetemplate | 3383 | <usetemplate |
3383 | name="okbutton" | 3384 | name="okbutton" |
3384 | yestext="OK"/> | 3385 | yestext="OK"/> |
@@ -3388,7 +3389,7 @@ Unable to load notecard's asset at this time. | |||
3388 | icon="alertmodal.tga" | 3389 | icon="alertmodal.tga" |
3389 | name="NotAllowedToViewNotecard" | 3390 | name="NotAllowedToViewNotecard" |
3390 | type="alertmodal"> | 3391 | type="alertmodal"> |
3391 | Insufficient permissions to view notecard associated with asset ID requested. | 3392 | Insufficient permissions to view notecard associated with asset ID requested. |
3392 | <usetemplate | 3393 | <usetemplate |
3393 | name="okbutton" | 3394 | name="okbutton" |
3394 | yestext="OK"/> | 3395 | yestext="OK"/> |
@@ -3398,7 +3399,7 @@ Insufficient permissions to view notecard associated with asset ID requested. | |||
3398 | icon="alertmodal.tga" | 3399 | icon="alertmodal.tga" |
3399 | name="MissingNotecardAssetID" | 3400 | name="MissingNotecardAssetID" |
3400 | type="alertmodal"> | 3401 | type="alertmodal"> |
3401 | Asset ID for notecard is missing from database. | 3402 | Asset ID for notecard is missing from database. |
3402 | <usetemplate | 3403 | <usetemplate |
3403 | name="okbutton" | 3404 | name="okbutton" |
3404 | yestext="OK"/> | 3405 | yestext="OK"/> |
@@ -3408,9 +3409,9 @@ Asset ID for notecard is missing from database. | |||
3408 | icon="alert.tga" | 3409 | icon="alert.tga" |
3409 | name="PublishClassified" | 3410 | name="PublishClassified" |
3410 | type="alert"> | 3411 | type="alert"> |
3411 | Remember: Classified ad fees are non-refundable. | 3412 | Remember: Classified ad fees are non-refundable. |
3412 | 3413 | ||
3413 | Publish this classified now for L$[AMOUNT]? | 3414 | Publish this classified now for L$[AMOUNT]? |
3414 | <usetemplate | 3415 | <usetemplate |
3415 | name="okcancelbuttons" | 3416 | name="okcancelbuttons" |
3416 | notext="Cancel" | 3417 | notext="Cancel" |
@@ -3421,7 +3422,7 @@ Publish this classified now for L$[AMOUNT]? | |||
3421 | icon="alertmodal.tga" | 3422 | icon="alertmodal.tga" |
3422 | name="SetClassifiedMature" | 3423 | name="SetClassifiedMature" |
3423 | type="alertmodal"> | 3424 | type="alertmodal"> |
3424 | Does this classified contain Mature content? | 3425 | Does this classified contain Mature content? |
3425 | <usetemplate | 3426 | <usetemplate |
3426 | canceltext="Cancel" | 3427 | canceltext="Cancel" |
3427 | name="yesnocancelbuttons" | 3428 | name="yesnocancelbuttons" |
@@ -3433,7 +3434,7 @@ Does this classified contain Mature content? | |||
3433 | icon="alertmodal.tga" | 3434 | icon="alertmodal.tga" |
3434 | name="SetGroupMature" | 3435 | name="SetGroupMature" |
3435 | type="alertmodal"> | 3436 | type="alertmodal"> |
3436 | Does this group contain Mature content? | 3437 | Does this group contain Mature content? |
3437 | <usetemplate | 3438 | <usetemplate |
3438 | canceltext="Cancel" | 3439 | canceltext="Cancel" |
3439 | name="yesnocancelbuttons" | 3440 | name="yesnocancelbuttons" |
@@ -3446,7 +3447,7 @@ Does this group contain Mature content? | |||
3446 | label="Confirm restart" | 3447 | label="Confirm restart" |
3447 | name="ConfirmRestart" | 3448 | name="ConfirmRestart" |
3448 | type="alert"> | 3449 | type="alert"> |
3449 | Do you really want to restart this region in 2 minutes? | 3450 | Do you really want to restart this region in 2 minutes? |
3450 | <usetemplate | 3451 | <usetemplate |
3451 | name="okcancelbuttons" | 3452 | name="okcancelbuttons" |
3452 | notext="Cancel" | 3453 | notext="Cancel" |
@@ -3458,7 +3459,7 @@ Do you really want to restart this region in 2 minutes? | |||
3458 | label="Message everyone in this region" | 3459 | label="Message everyone in this region" |
3459 | name="MessageRegion" | 3460 | name="MessageRegion" |
3460 | type="alert"> | 3461 | type="alert"> |
3461 | Type a short announcement which will be sent to everyone in this region. | 3462 | Type a short announcement which will be sent to everyone in this region. |
3462 | <form name="form"> | 3463 | <form name="form"> |
3463 | <input name="message" type="text"/> | 3464 | <input name="message" type="text"/> |
3464 | <button | 3465 | <button |
@@ -3478,9 +3479,9 @@ Type a short announcement which will be sent to everyone in this region. | |||
3478 | label="Block Terraform" | 3479 | label="Block Terraform" |
3479 | name="HelpRegionBlockTerraform" | 3480 | name="HelpRegionBlockTerraform" |
3480 | type="alertmodal"> | 3481 | type="alertmodal"> |
3481 | If this box is checked, land owners will not be able to terraform their land regardless of the per-parcel 'Edit Terrain' setting. | 3482 | If this box is checked, land owners will not be able to terraform their land regardless of the per-parcel 'Edit Terrain' setting. |
3482 | 3483 | ||
3483 | Default: off | 3484 | Default: off |
3484 | </notification> | 3485 | </notification> |
3485 | 3486 | ||
3486 | <notification | 3487 | <notification |
@@ -3488,9 +3489,9 @@ Default: off | |||
3488 | label="Block Fly" | 3489 | label="Block Fly" |
3489 | name="HelpRegionBlockFly" | 3490 | name="HelpRegionBlockFly" |
3490 | type="alertmodal"> | 3491 | type="alertmodal"> |
3491 | If this box is checked, people will not be able to fly in this region regardless of the per-parcel 'Fly' setting. | 3492 | If this box is checked, people will not be able to fly in this region regardless of the per-parcel 'Fly' setting. |
3492 | 3493 | ||
3493 | Default: off | 3494 | Default: off |
3494 | </notification> | 3495 | </notification> |
3495 | 3496 | ||
3496 | <notification | 3497 | <notification |
@@ -3498,19 +3499,19 @@ Default: off | |||
3498 | label="Bulk Change Content Permissions" | 3499 | label="Bulk Change Content Permissions" |
3499 | name="HelpBulkPermission" | 3500 | name="HelpBulkPermission" |
3500 | type="alertmodal"> | 3501 | type="alertmodal"> |
3501 | The Bulk Permissions tool helps you to quickly change the permissions on multiple items in the contents of the selected object(s). However, please note that you are only setting permissions on the items in the Contents of the selected objects -- not permissions on the container object(s) themselves. | 3502 | The Bulk Permissions tool helps you to quickly change the permissions on multiple items in the contents of the selected object(s). However, please note that you are only setting permissions on the items in the Contents of the selected objects -- not permissions on the container object(s) themselves. |
3502 | 3503 | ||
3503 | Also note, the permissions are not applied to the nested contents of any of the contained items. Your request only operates on items exactly one level deep. | 3504 | Also note, the permissions are not applied to the nested contents of any of the contained items. Your request only operates on items exactly one level deep. |
3504 | 3505 | ||
3505 | You can selectively choose which types of items to modify by using the checklist under 'Content Types' here. Snapshots are included when you select Textures. | 3506 | You can selectively choose which types of items to modify by using the checklist under 'Content Types' here. Snapshots are included when you select Textures. |
3506 | 3507 | ||
3507 | * This tool will only succeed at changing permissions on items you are allowed to change. | 3508 | * This tool will only succeed at changing permissions on items you are allowed to change. |
3508 | * You cannot grant any Next owner permissions which you do not already have. | 3509 | * You cannot grant any Next owner permissions which you do not already have. |
3509 | * The Next owner permissions are merely requests. If any item cannot take all of the new permissions, none of its permissions will change. | 3510 | * The Next owner permissions are merely requests. If any item cannot take all of the new permissions, none of its permissions will change. |
3510 | 3511 | ||
3511 | When you are ready to change the permissions in bulk, click 'Apply' and wait for the results to display. | 3512 | When you are ready to change the permissions in bulk, click 'Apply' and wait for the results to display. |
3512 | 3513 | ||
3513 | If you close the Bulk Permissions window while permissions are being changed, it will halt the operation. | 3514 | If you close the Bulk Permissions window while permissions are being changed, it will halt the operation. |
3514 | </notification> | 3515 | </notification> |
3515 | 3516 | ||
3516 | <notification | 3517 | <notification |
@@ -3518,9 +3519,9 @@ If you close the Bulk Permissions window while permissions are being changed, it | |||
3518 | label="Allow Damage" | 3519 | label="Allow Damage" |
3519 | name="HelpRegionAllowDamage" | 3520 | name="HelpRegionAllowDamage" |
3520 | type="alertmodal"> | 3521 | type="alertmodal"> |
3521 | If this box is checked, the health system across all parcels regardless of individual parcel settings. If this box is left unchecked, individual parcel owners will still be able to activate the health system on their parcels. | 3522 | If this box is checked, the health system across all parcels regardless of individual parcel settings. If this box is left unchecked, individual parcel owners will still be able to activate the health system on their parcels. |
3522 | 3523 | ||
3523 | Default: off | 3524 | Default: off |
3524 | </notification> | 3525 | </notification> |
3525 | 3526 | ||
3526 | <notification | 3527 | <notification |
@@ -3528,10 +3529,10 @@ Default: off | |||
3528 | label="Agent Limit" | 3529 | label="Agent Limit" |
3529 | name="HelpRegionAgentLimit" | 3530 | name="HelpRegionAgentLimit" |
3530 | type="alertmodal"> | 3531 | type="alertmodal"> |
3531 | Sets the maximum number of avatars allowed in this region. | 3532 | Sets the maximum number of avatars allowed in this region. |
3532 | Performance may vary depending on the number avatars present. | 3533 | Performance may vary depending on the number avatars present. |
3533 | 3534 | ||
3534 | Default: 40 | 3535 | Default: 40 |
3535 | </notification> | 3536 | </notification> |
3536 | 3537 | ||
3537 | <notification | 3538 | <notification |
@@ -3539,9 +3540,9 @@ Default: 40 | |||
3539 | label="Object Bonus" | 3540 | label="Object Bonus" |
3540 | name="HelpRegionObjectBonus" | 3541 | name="HelpRegionObjectBonus" |
3541 | type="alertmodal"> | 3542 | type="alertmodal"> |
3542 | The Object Bonus is a multiplier for primitives allowed on any given parcel. The range allowed is 1 to 10. Set at '1', each 512m² parcel is allowed 117 objects. Set at '2', each 512m² parcel is allowed 234, or twice as many, and so on. The max number of objects allowed per region remains 15,000 no matter what the Object Bonus is. Once set, be aware that lowering the Object Bonus may cause objects to be returned or deleted. | 3543 | The Object Bonus is a multiplier for primitives allowed on any given parcel. The range allowed is 1 to 10. Set at '1', each 512m² parcel is allowed 117 objects. Set at '2', each 512m² parcel is allowed 234, or twice as many, and so on. The max number of objects allowed per region remains 15,000 no matter what the Object Bonus is. Once set, be aware that lowering the Object Bonus may cause objects to be returned or deleted. |
3543 | 3544 | ||
3544 | Default: 1.0 | 3545 | Default: 1.0 |
3545 | </notification> | 3546 | </notification> |
3546 | 3547 | ||
3547 | <notification | 3548 | <notification |
@@ -3549,9 +3550,9 @@ Default: 1.0 | |||
3549 | label="Maturity" | 3550 | label="Maturity" |
3550 | name="HelpRegionMaturity" | 3551 | name="HelpRegionMaturity" |
3551 | type="alertmodal"> | 3552 | type="alertmodal"> |
3552 | Sets the maturity Rating of the Region, as shown in the menu bar at the top of any Resident's viewer, and in tooltips on the World Map when the cursor hovers over this Region. This setting also affects access to this Region and search results. Other Residents may only enter Regions or view search results with the same maturity Ratings they have chosen in their preferences. | 3553 | Sets the maturity Rating of the Region, as shown in the menu bar at the top of any Resident's viewer, and in tooltips on the World Map when the cursor hovers over this Region. This setting also affects access to this Region and search results. Other Residents may only enter Regions or view search results with the same maturity Ratings they have chosen in their preferences. |
3553 | 3554 | ||
3554 | It may take some time for this change to be reflected on the map. | 3555 | It may take some time for this change to be reflected on the map. |
3555 | </notification> | 3556 | </notification> |
3556 | 3557 | ||
3557 | <notification | 3558 | <notification |
@@ -3559,11 +3560,11 @@ It may take some time for this change to be reflected on the map. | |||
3559 | label="Restrict Pushing" | 3560 | label="Restrict Pushing" |
3560 | name="HelpRegionRestrictPushObject" | 3561 | name="HelpRegionRestrictPushObject" |
3561 | type="alertmodal"> | 3562 | type="alertmodal"> |
3562 | This checkbox sets the full region to restricted push permissions. | 3563 | This checkbox sets the full region to restricted push permissions. |
3563 | When enabled, Residents may only be pushed by themselves or by the parcel's owner. | 3564 | When enabled, Residents may only be pushed by themselves or by the parcel's owner. |
3564 | (Push refers to the llPushObject() LSL function.) | 3565 | (Push refers to the llPushObject() LSL function.) |
3565 | 3566 | ||
3566 | Default: Off | 3567 | Default: Off |
3567 | </notification> | 3568 | </notification> |
3568 | 3569 | ||
3569 | <notification | 3570 | <notification |
@@ -3571,15 +3572,15 @@ Default: Off | |||
3571 | label="Parcel Join/Subdivide" | 3572 | label="Parcel Join/Subdivide" |
3572 | name="HelpParcelChanges" | 3573 | name="HelpParcelChanges" |
3573 | type="alertmodal"> | 3574 | type="alertmodal"> |
3574 | This checkbox sets whether or not parcels not owned by the estate owner can be joined or subdivided. | 3575 | This checkbox sets whether or not parcels not owned by the estate owner can be joined or subdivided. |
3575 | If this option is unchecked: | 3576 | If this option is unchecked: |
3576 | * Only estate owners or managers can join or subdivide parcels. | 3577 | * Only estate owners or managers can join or subdivide parcels. |
3577 | * They may only join or subdivide parcels belonging to the owner, or to a group where they have the appropriate group powers. | 3578 | * They may only join or subdivide parcels belonging to the owner, or to a group where they have the appropriate group powers. |
3578 | If this option is checked: | 3579 | If this option is checked: |
3579 | * All parcel owners can join or subdivide the parcels they own. | 3580 | * All parcel owners can join or subdivide the parcels they own. |
3580 | * For group owned parcels, those with appropriate group powers may join or subdivide parcels. | 3581 | * For group owned parcels, those with appropriate group powers may join or subdivide parcels. |
3581 | 3582 | ||
3582 | Default: Checked | 3583 | Default: Checked |
3583 | </notification> | 3584 | </notification> |
3584 | 3585 | ||
3585 | <notification | 3586 | <notification |
@@ -3587,9 +3588,9 @@ Default: Checked | |||
3587 | label="Do Not Show In Search" | 3588 | label="Do Not Show In Search" |
3588 | name="HelpRegionSearch" | 3589 | name="HelpRegionSearch" |
3589 | type="alertmodal"> | 3590 | type="alertmodal"> |
3590 | Checking this box will block parcel owners from listing their parcels in search. | 3591 | Checking this box will block parcel owners from listing their parcels in search. |
3591 | 3592 | ||
3592 | Default: Off | 3593 | Default: Off |
3593 | </notification> | 3594 | </notification> |
3594 | 3595 | ||
3595 | <notification | 3596 | <notification |
@@ -3597,8 +3598,8 @@ Default: Off | |||
3597 | label="Changed Region Maturity" | 3598 | label="Changed Region Maturity" |
3598 | name="RegionMaturityChange" | 3599 | name="RegionMaturityChange" |
3599 | type="alertmodal"> | 3600 | type="alertmodal"> |
3600 | The maturity rating for this region has been updated. | 3601 | The maturity rating for this region has been updated. |
3601 | It may take some time for the change to be reflected on the map. | 3602 | It may take some time for the change to be reflected on the map. |
3602 | </notification> | 3603 | </notification> |
3603 | 3604 | ||
3604 | <notification | 3605 | <notification |
@@ -3606,11 +3607,11 @@ It may take some time for the change to be reflected on the map. | |||
3606 | label="Land Resale" | 3607 | label="Land Resale" |
3607 | name="HelpRegionLandResell" | 3608 | name="HelpRegionLandResell" |
3608 | type="alertmodal"> | 3609 | type="alertmodal"> |
3609 | Estate owners and managers can sell any land owned by the estate owner. | 3610 | Estate owners and managers can sell any land owned by the estate owner. |
3610 | If this option is left unchecked, buyers cannot resell their land in this region. | 3611 | If this option is left unchecked, buyers cannot resell their land in this region. |
3611 | If this option is checked, buyers can resell their land in this region. | 3612 | If this option is checked, buyers can resell their land in this region. |
3612 | 3613 | ||
3613 | Default: Disallow | 3614 | Default: Disallow |
3614 | </notification> | 3615 | </notification> |
3615 | 3616 | ||
3616 | <notification | 3617 | <notification |
@@ -3618,13 +3619,13 @@ Default: Disallow | |||
3618 | label="Disable Scripts" | 3619 | label="Disable Scripts" |
3619 | name="HelpRegionDisableScripts" | 3620 | name="HelpRegionDisableScripts" |
3620 | type="alertmodal"> | 3621 | type="alertmodal"> |
3621 | When sim performance is poor, a script may be to blame. Open the Statistics Bar (Ctrl-Shift-1). Look at the Simulator Physics FPS. | 3622 | When sim performance is poor, a script may be to blame. Open the Statistics Bar (Ctrl-Shift-1). Look at the Simulator Physics FPS. |
3622 | If it is lower than 45, open the Time panel located at the bottom of the Stats Bar. If Script Time reads 25 ms or higher, click the Get Top Scripts button. You will be given the name and location of scripts that may be causing poor performance. | 3623 | If it is lower than 45, open the Time panel located at the bottom of the Stats Bar. If Script Time reads 25 ms or higher, click the Get Top Scripts button. You will be given the name and location of scripts that may be causing poor performance. |
3623 | 3624 | ||
3624 | Checking the Disable Scripts box and then pressing the Apply button will temporarily disable all scripts in this region. You may need to do this in order to travel to the location of a noted 'top script'. Once you have arrived at the location, investigate the script to determine if it is causing the problem. You may want to contact the owner of the script or delete or return the object. | 3625 | Checking the Disable Scripts box and then pressing the Apply button will temporarily disable all scripts in this region. You may need to do this in order to travel to the location of a noted 'top script'. Once you have arrived at the location, investigate the script to determine if it is causing the problem. You may want to contact the owner of the script or delete or return the object. |
3625 | Uncheck the Disable Script box and then Apply to reactivate the scripts in the region. | 3626 | Uncheck the Disable Script box and then Apply to reactivate the scripts in the region. |
3626 | 3627 | ||
3627 | Default: off | 3628 | Default: off |
3628 | </notification> | 3629 | </notification> |
3629 | 3630 | ||
3630 | <notification | 3631 | <notification |
@@ -3632,14 +3633,14 @@ Default: off | |||
3632 | label="Disable Collisions" | 3633 | label="Disable Collisions" |
3633 | name="HelpRegionDisableCollisions" | 3634 | name="HelpRegionDisableCollisions" |
3634 | type="alertmodal"> | 3635 | type="alertmodal"> |
3635 | When sim performance is poor, physical objects may be to blame. | 3636 | When sim performance is poor, physical objects may be to blame. |
3636 | Open the Statistics Bar (Ctrl-Shift-1). Look at the Simulator Physics FPS. If it is lower than 45, open the Time panel located at the bottom of the Stats Bar. If Sim Time (Physics) reads 20 ms or higher, click the Get Top Colliders button. | 3637 | Open the Statistics Bar (Ctrl-Shift-1). Look at the Simulator Physics FPS. If it is lower than 45, open the Time panel located at the bottom of the Stats Bar. If Sim Time (Physics) reads 20 ms or higher, click the Get Top Colliders button. |
3637 | You will be given the name and location of physical objects that may be causing poor performance. | 3638 | You will be given the name and location of physical objects that may be causing poor performance. |
3638 | 3639 | ||
3639 | Checking the Disable Collisions box and then pressing the Apply button will temporarily disable object-object collisions. You may need to do this in order to travel to the location of a noted 'top collider'. Once you have arrived at the location, investigate the object - is it constantly colliding with other objects? You may want to contact the owner of the object or delete or return the object. | 3640 | Checking the Disable Collisions box and then pressing the Apply button will temporarily disable object-object collisions. You may need to do this in order to travel to the location of a noted 'top collider'. Once you have arrived at the location, investigate the object - is it constantly colliding with other objects? You may want to contact the owner of the object or delete or return the object. |
3640 | Uncheck the Disable Collisions box and then Apply to reactivate collisions in the region. | 3641 | Uncheck the Disable Collisions box and then Apply to reactivate collisions in the region. |
3641 | 3642 | ||
3642 | Default: off | 3643 | Default: off |
3643 | </notification> | 3644 | </notification> |
3644 | 3645 | ||
3645 | <notification | 3646 | <notification |
@@ -3647,13 +3648,13 @@ Default: off | |||
3647 | label="Disable Physics" | 3648 | label="Disable Physics" |
3648 | name="HelpRegionDisablePhysics" | 3649 | name="HelpRegionDisablePhysics" |
3649 | type="alertmodal"> | 3650 | type="alertmodal"> |
3650 | Disable Physics is similar to Disable Collisions, except all physics simulation is disabled. This means that not only will objects stop colliding, but avatars will be unable to move. | 3651 | Disable Physics is similar to Disable Collisions, except all physics simulation is disabled. This means that not only will objects stop colliding, but avatars will be unable to move. |
3651 | 3652 | ||
3652 | This should only be used when Disable Collisions does not give back enough performance to the region to investigate a physics problem or Top Collider. | 3653 | This should only be used when Disable Collisions does not give back enough performance to the region to investigate a physics problem or Top Collider. |
3653 | 3654 | ||
3654 | Be sure to re-enable physics when you are done, or avatars will continue to be unable to move. | 3655 | Be sure to re-enable physics when you are done, or avatars will continue to be unable to move. |
3655 | 3656 | ||
3656 | Default: off | 3657 | Default: off |
3657 | </notification> | 3658 | </notification> |
3658 | 3659 | ||
3659 | <notification | 3660 | <notification |
@@ -3661,7 +3662,7 @@ Default: off | |||
3661 | label="Top Colliders" | 3662 | label="Top Colliders" |
3662 | name="HelpRegionTopColliders" | 3663 | name="HelpRegionTopColliders" |
3663 | type="alertmodal"> | 3664 | type="alertmodal"> |
3664 | Show a list of objects experiencing the greatest number of potential object-object collisions. These objects can slow performance. Select View > Statistics Bar and look under Simulator > Time > Sim Time (Physics) to see if more than 20 ms is being spent in physics. | 3665 | Show a list of objects experiencing the greatest number of potential object-object collisions. These objects can slow performance. Select View > Statistics Bar and look under Simulator > Time > Sim Time (Physics) to see if more than 20 ms is being spent in physics. |
3665 | </notification> | 3666 | </notification> |
3666 | 3667 | ||
3667 | <notification | 3668 | <notification |
@@ -3669,8 +3670,8 @@ Show a list of objects experiencing the greatest number of potential object-obje | |||
3669 | label="Top Scripts" | 3670 | label="Top Scripts" |
3670 | name="HelpRegionTopScripts" | 3671 | name="HelpRegionTopScripts" |
3671 | type="alertmodal"> | 3672 | type="alertmodal"> |
3672 | Show a list of objects spending the most time running LSL scripts. These objects can slow performance. | 3673 | Show a list of objects spending the most time running LSL scripts. These objects can slow performance. |
3673 | Select View > Statistics Bar and look under Simulator > Time > Script Time to see if more than 25 ms is being spent in scripts. | 3674 | Select View > Statistics Bar and look under Simulator > Time > Script Time to see if more than 25 ms is being spent in scripts. |
3674 | </notification> | 3675 | </notification> |
3675 | 3676 | ||
3676 | <notification | 3677 | <notification |
@@ -3678,9 +3679,9 @@ Select View > Statistics Bar and look under Simulator > Time > Script T | |||
3678 | label="Restart Region" | 3679 | label="Restart Region" |
3679 | name="HelpRegionRestart" | 3680 | name="HelpRegionRestart" |
3680 | type="alertmodal"> | 3681 | type="alertmodal"> |
3681 | Restart the server process running this region after a two minute warning. All Residents in the region will be disconnected. The region will save its data, and should come back up within 90 seconds. | 3682 | Restart the server process running this region after a two minute warning. All Residents in the region will be disconnected. The region will save its data, and should come back up within 90 seconds. |
3682 | 3683 | ||
3683 | Restarting the region will not fix most performance problems, and should usually be used only when directed. | 3684 | Restarting the region will not fix most performance problems, and should usually be used only when directed. |
3684 | </notification> | 3685 | </notification> |
3685 | 3686 | ||
3686 | <notification | 3687 | <notification |
@@ -3688,9 +3689,9 @@ Restarting the region will not fix most performance problems, and should usually | |||
3688 | label="Water Height" | 3689 | label="Water Height" |
3689 | name="HelpRegionWaterHeight" | 3690 | name="HelpRegionWaterHeight" |
3690 | type="alertmodal"> | 3691 | type="alertmodal"> |
3691 | This is the height in meters where water appears. If this setting is anything other than 20 and you have water that is adjacent to the edge of world or 'void' water, there will be a visible gap. | 3692 | This is the height in meters where water appears. If this setting is anything other than 20 and you have water that is adjacent to the edge of world or 'void' water, there will be a visible gap. |
3692 | 3693 | ||
3693 | Default: 20 | 3694 | Default: 20 |
3694 | </notification> | 3695 | </notification> |
3695 | 3696 | ||
3696 | <notification | 3697 | <notification |
@@ -3698,9 +3699,9 @@ Default: 20 | |||
3698 | label="Terrain Raise" | 3699 | label="Terrain Raise" |
3699 | name="HelpRegionTerrainRaise" | 3700 | name="HelpRegionTerrainRaise" |
3700 | type="alertmodal"> | 3701 | type="alertmodal"> |
3701 | This is the distance in meters that parcel owners can raise their terrain above the 'baked' terrain default height. | 3702 | This is the distance in meters that parcel owners can raise their terrain above the 'baked' terrain default height. |
3702 | 3703 | ||
3703 | Default: 4 | 3704 | Default: 4 |
3704 | </notification> | 3705 | </notification> |
3705 | 3706 | ||
3706 | <notification | 3707 | <notification |
@@ -3708,9 +3709,9 @@ Default: 4 | |||
3708 | label="Terrain Lower" | 3709 | label="Terrain Lower" |
3709 | name="HelpRegionTerrainLower" | 3710 | name="HelpRegionTerrainLower" |
3710 | type="alertmodal"> | 3711 | type="alertmodal"> |
3711 | This is the distance in meters that parcel owners can lower their terrain below the 'baked' terrain default height. | 3712 | This is the distance in meters that parcel owners can lower their terrain below the 'baked' terrain default height. |
3712 | 3713 | ||
3713 | Default: -4 | 3714 | Default: -4 |
3714 | </notification> | 3715 | </notification> |
3715 | 3716 | ||
3716 | <notification | 3717 | <notification |
@@ -3718,12 +3719,12 @@ Default: -4 | |||
3718 | label="Upload RAW Terrain" | 3719 | label="Upload RAW Terrain" |
3719 | name="HelpRegionUploadRaw" | 3720 | name="HelpRegionUploadRaw" |
3720 | type="alertmodal"> | 3721 | type="alertmodal"> |
3721 | This button uploads a .RAW file to the region you are in. | 3722 | This button uploads a .RAW file to the region you are in. |
3722 | The file must have the correct dimensions (RGB, 256x256) and 13 channels. The best way to create a terrain file is to download the existing RAW file. A good first step is to modify the red channel (land height), and upload it. | 3723 | The file must have the correct dimensions (RGB, 256x256) and 13 channels. The best way to create a terrain file is to download the existing RAW file. A good first step is to modify the red channel (land height), and upload it. |
3723 | 3724 | ||
3724 | The upload can take up to 45 seconds. Note that uploading a terrain file *will not* move the objects that are on the land, only the terrain itself and the permissions associated with the parcels. This can result in objects going underground. | 3725 | The upload can take up to 45 seconds. Note that uploading a terrain file *will not* move the objects that are on the land, only the terrain itself and the permissions associated with the parcels. This can result in objects going underground. |
3725 | 3726 | ||
3726 | For more information on editing region height fields, consult F1 Help. | 3727 | For more information on editing region height fields, consult F1 Help. |
3727 | </notification> | 3728 | </notification> |
3728 | 3729 | ||
3729 | <notification | 3730 | <notification |
@@ -3731,9 +3732,9 @@ For more information on editing region height fields, consult F1 Help. | |||
3731 | label="Download RAW Terrain" | 3732 | label="Download RAW Terrain" |
3732 | name="HelpRegionDownloadRaw" | 3733 | name="HelpRegionDownloadRaw" |
3733 | type="alertmodal"> | 3734 | type="alertmodal"> |
3734 | This button downloads a file containing the height field data, parcel dimensions, parcel for sale status and some parcel permissions for this region. When opening the file in a program such as Photoshop you must specify the document's dimensions which are: RGB, 256x256 with 13 channels. This terrain file cannot be opened in any other way. | 3735 | This button downloads a file containing the height field data, parcel dimensions, parcel for sale status and some parcel permissions for this region. When opening the file in a program such as Photoshop you must specify the document's dimensions which are: RGB, 256x256 with 13 channels. This terrain file cannot be opened in any other way. |
3735 | 3736 | ||
3736 | For more information on editing region height fields, consult F1 help. | 3737 | For more information on editing region height fields, consult F1 help. |
3737 | </notification> | 3738 | </notification> |
3738 | 3739 | ||
3739 | <notification | 3740 | <notification |
@@ -3741,9 +3742,9 @@ For more information on editing region height fields, consult F1 help. | |||
3741 | label="Use Estate Sun" | 3742 | label="Use Estate Sun" |
3742 | name="HelpRegionUseEstateSun" | 3743 | name="HelpRegionUseEstateSun" |
3743 | type="alertmodal"> | 3744 | type="alertmodal"> |
3744 | This checkbox makes the sun position in this region the same as the sun position in the rest of the estate. | 3745 | This checkbox makes the sun position in this region the same as the sun position in the rest of the estate. |
3745 | 3746 | ||
3746 | Default: on | 3747 | Default: on |
3747 | </notification> | 3748 | </notification> |
3748 | 3749 | ||
3749 | <notification | 3750 | <notification |
@@ -3751,9 +3752,9 @@ Default: on | |||
3751 | label="Fixed Sun" | 3752 | label="Fixed Sun" |
3752 | name="HelpRegionFixedSun" | 3753 | name="HelpRegionFixedSun" |
3753 | type="alertmodal"> | 3754 | type="alertmodal"> |
3754 | This checkbox sets the sun position to the position in the Phase slider and stops the sun from moving. | 3755 | This checkbox sets the sun position to the position in the Phase slider and stops the sun from moving. |
3755 | 3756 | ||
3756 | Default: off | 3757 | Default: off |
3757 | </notification> | 3758 | </notification> |
3758 | 3759 | ||
3759 | <notification | 3760 | <notification |
@@ -3761,7 +3762,7 @@ Default: off | |||
3761 | label="Bake Terrain" | 3762 | label="Bake Terrain" |
3762 | name="HelpRegionBakeTerrain" | 3763 | name="HelpRegionBakeTerrain" |
3763 | type="alertmodal"> | 3764 | type="alertmodal"> |
3764 | This button saves the current shape of the terrain as the new default for the region. Once baked, the land can revert to the saved shape whenever you or others use the Edit Terrain 'Revert' option. The baked terrain is also the middle point for the terrain raise and lower limits. | 3765 | This button saves the current shape of the terrain as the new default for the region. Once baked, the land can revert to the saved shape whenever you or others use the Edit Terrain 'Revert' option. The baked terrain is also the middle point for the terrain raise and lower limits. |
3765 | </notification> | 3766 | </notification> |
3766 | 3767 | ||
3767 | <notification | 3768 | <notification |
@@ -3769,9 +3770,9 @@ This button saves the current shape of the terrain as the new default for the re | |||
3769 | label="Estate Managers" | 3770 | label="Estate Managers" |
3770 | name="HelpEstateEstateManager" | 3771 | name="HelpEstateEstateManager" |
3771 | type="alertmodal"> | 3772 | type="alertmodal"> |
3772 | An estate manager is a Resident to whom you have delegated control of region and estate settings. An estate manager can change any setting in these panels, except for uploading, downloading, and baking terrain. In particular, they can allow or ban Residents from your estate. | 3773 | An estate manager is a Resident to whom you have delegated control of region and estate settings. An estate manager can change any setting in these panels, except for uploading, downloading, and baking terrain. In particular, they can allow or ban Residents from your estate. |
3773 | 3774 | ||
3774 | Estate managers can only be added or removed by the owner of the estate, not by each other. Please only choose Residents you trust as estate managers, as you will be ultimately responsible for their actions. | 3775 | Estate managers can only be added or removed by the owner of the estate, not by each other. Please only choose Residents you trust as estate managers, as you will be ultimately responsible for their actions. |
3775 | </notification> | 3776 | </notification> |
3776 | 3777 | ||
3777 | <notification | 3778 | <notification |
@@ -3779,9 +3780,9 @@ Estate managers can only be added or removed by the owner of the estate, not by | |||
3779 | label="Use Global Time" | 3780 | label="Use Global Time" |
3780 | name="HelpEstateUseGlobalTime" | 3781 | name="HelpEstateUseGlobalTime" |
3781 | type="alertmodal"> | 3782 | type="alertmodal"> |
3782 | This checkbox makes the sun in your estate follow the same position as on the Linden-owned 'mainland' estates. | 3783 | This checkbox makes the sun in your estate follow the same position as on the Linden-owned 'mainland' estates. |
3783 | 3784 | ||
3784 | Default: on | 3785 | Default: on |
3785 | </notification> | 3786 | </notification> |
3786 | 3787 | ||
3787 | <notification | 3788 | <notification |
@@ -3789,7 +3790,7 @@ Default: on | |||
3789 | label="Fixed Sun" | 3790 | label="Fixed Sun" |
3790 | name="HelpEstateFixedSun" | 3791 | name="HelpEstateFixedSun" |
3791 | type="alertmodal"> | 3792 | type="alertmodal"> |
3792 | This checkbox sets the sun position to the position in the Phase slider and stops the sun from moving. | 3793 | This checkbox sets the sun position to the position in the Phase slider and stops the sun from moving. |
3793 | </notification> | 3794 | </notification> |
3794 | 3795 | ||
3795 | <notification | 3796 | <notification |
@@ -3797,9 +3798,9 @@ This checkbox sets the sun position to the position in the Phase slider and stop | |||
3797 | label="Public Access" | 3798 | label="Public Access" |
3798 | name="HelpEstateExternallyVisible" | 3799 | name="HelpEstateExternallyVisible" |
3799 | type="alertmodal"> | 3800 | type="alertmodal"> |
3800 | This checkbox sets whether Residents who are on other estates can enter this estate without being on an access list. | 3801 | This checkbox sets whether Residents who are on other estates can enter this estate without being on an access list. |
3801 | 3802 | ||
3802 | Default: on | 3803 | Default: on |
3803 | </notification> | 3804 | </notification> |
3804 | 3805 | ||
3805 | <notification | 3806 | <notification |
@@ -3807,9 +3808,9 @@ Default: on | |||
3807 | label="Allow Direct Teleport" | 3808 | label="Allow Direct Teleport" |
3808 | name="HelpEstateAllowDirectTeleport" | 3809 | name="HelpEstateAllowDirectTeleport" |
3809 | type="alertmodal"> | 3810 | type="alertmodal"> |
3810 | When checked, allows Residents to directly teleport to any point in your estate. When unchecked, Residents teleport to the nearest telehub. | 3811 | When checked, allows Residents to directly teleport to any point in your estate. When unchecked, Residents teleport to the nearest telehub. |
3811 | 3812 | ||
3812 | Default: off | 3813 | Default: off |
3813 | </notification> | 3814 | </notification> |
3814 | 3815 | ||
3815 | <notification | 3816 | <notification |
@@ -3817,7 +3818,7 @@ Default: off | |||
3817 | label="Allow Access" | 3818 | label="Allow Access" |
3818 | name="HelpEstateAllowResident" | 3819 | name="HelpEstateAllowResident" |
3819 | type="alertmodal"> | 3820 | type="alertmodal"> |
3820 | Access to this estate will be limited to Residents listed here and any groups below. This setting is only available when Public Access is unchecked. | 3821 | Access to this estate will be limited to Residents listed here and any groups below. This setting is only available when Public Access is unchecked. |
3821 | </notification> | 3822 | </notification> |
3822 | 3823 | ||
3823 | <notification | 3824 | <notification |
@@ -3825,7 +3826,7 @@ Access to this estate will be limited to Residents listed here and any groups be | |||
3825 | label="Allow Group Access" | 3826 | label="Allow Group Access" |
3826 | name="HelpEstateAllowGroup" | 3827 | name="HelpEstateAllowGroup" |
3827 | type="alertmodal"> | 3828 | type="alertmodal"> |
3828 | Access to this estate will be limited to groups listed here and any Residents above. This setting is only available when Public Access is unchecked. | 3829 | Access to this estate will be limited to groups listed here and any Residents above. This setting is only available when Public Access is unchecked. |
3829 | </notification> | 3830 | </notification> |
3830 | 3831 | ||
3831 | <notification | 3832 | <notification |
@@ -3833,8 +3834,8 @@ Access to this estate will be limited to groups listed here and any Residents ab | |||
3833 | label="Abuse Email Address" | 3834 | label="Abuse Email Address" |
3834 | name="HelpEstateAbuseEmailAddress" | 3835 | name="HelpEstateAbuseEmailAddress" |
3835 | type="alertmodal"> | 3836 | type="alertmodal"> |
3836 | Setting this to a valid email address will cause abuse reports on this estate to be sent to that address. | 3837 | Setting this to a valid email address will cause abuse reports on this estate to be sent to that address. |
3837 | Setting it blank will cause abuse reports to be sent only to Linden Lab. | 3838 | Setting it blank will cause abuse reports to be sent only to Linden Lab. |
3838 | </notification> | 3839 | </notification> |
3839 | 3840 | ||
3840 | <notification | 3841 | <notification |
@@ -3842,7 +3843,7 @@ Setting it blank will cause abuse reports to be sent only to Linden Lab. | |||
3842 | label="Deny Access" | 3843 | label="Deny Access" |
3843 | name="HelpEstateBanResident" | 3844 | name="HelpEstateBanResident" |
3844 | type="alertmodal"> | 3845 | type="alertmodal"> |
3845 | Residents on this list are denied access to your estate, regardless of any other settings. | 3846 | Residents on this list are denied access to your estate, regardless of any other settings. |
3846 | </notification> | 3847 | </notification> |
3847 | 3848 | ||
3848 | <notification | 3849 | <notification |
@@ -3850,9 +3851,9 @@ Residents on this list are denied access to your estate, regardless of any other | |||
3850 | label="Allow Voice Chat" | 3851 | label="Allow Voice Chat" |
3851 | name="HelpEstateVoiceChat" | 3852 | name="HelpEstateVoiceChat" |
3852 | type="alertmodal"> | 3853 | type="alertmodal"> |
3853 | Parcels in this estate are allowed to have their own voice channels in which residents may hear and talk with others nearby. | 3854 | Parcels in this estate are allowed to have their own voice channels in which residents may hear and talk with others nearby. |
3854 | 3855 | ||
3855 | Default: off | 3856 | Default: off |
3856 | </notification> | 3857 | </notification> |
3857 | 3858 | ||
3858 | <notification | 3859 | <notification |
@@ -3860,7 +3861,7 @@ Default: off | |||
3860 | label="Voice Version Mismatch" | 3861 | label="Voice Version Mismatch" |
3861 | name="VoiceVersionMismatch" | 3862 | name="VoiceVersionMismatch" |
3862 | type="alertmodal"> | 3863 | type="alertmodal"> |
3863 | This version of Second Life is not compatible with the Voice Chat feature in this region. In order for Voice Chat to function correctly you will need to update Second Life. | 3864 | This version of Second Life is not compatible with the Voice Chat feature in this region. In order for Voice Chat to function correctly you will need to update Second Life. |
3864 | </notification> | 3865 | </notification> |
3865 | 3866 | ||
3866 | <notification | 3867 | <notification |
@@ -3868,11 +3869,11 @@ This version of Second Life is not compatible with the Voice Chat feature in thi | |||
3868 | label="Estate Covenant" | 3869 | label="Estate Covenant" |
3869 | name="HelpEstateCovenant" | 3870 | name="HelpEstateCovenant" |
3870 | type="alertmodal"> | 3871 | type="alertmodal"> |
3871 | Setting an estate covenant enables you to sell parcels within that estate. If a covenant is not set, you cannot sell the land. The notecard for your covenant can be empty if you do not wish to apply any rules or advise buyers of anything in relation to the land before they buy it. | 3872 | Setting an estate covenant enables you to sell parcels within that estate. If a covenant is not set, you cannot sell the land. The notecard for your covenant can be empty if you do not wish to apply any rules or advise buyers of anything in relation to the land before they buy it. |
3872 | 3873 | ||
3873 | A covenant can be used to communicate rules, guidelines, cultural information or simply your own expectations to the prospective buyer. This can include zoning, building regulations, payment options or any other information you feel it is important for the new owner to have seen and to have agreed to before they purchase. | 3874 | A covenant can be used to communicate rules, guidelines, cultural information or simply your own expectations to the prospective buyer. This can include zoning, building regulations, payment options or any other information you feel it is important for the new owner to have seen and to have agreed to before they purchase. |
3874 | 3875 | ||
3875 | The buyer must agree to the covenant by ticking the check box before they will be able to finish the purchase. Estate covenants are always visible in the About Land dialog for any parcels that have one set. | 3876 | The buyer must agree to the covenant by ticking the check box before they will be able to finish the purchase. Estate covenants are always visible in the About Land dialog for any parcels that have one set. |
3876 | </notification> | 3877 | </notification> |
3877 | 3878 | ||
3878 | <notification | 3879 | <notification |
@@ -3880,8 +3881,8 @@ The buyer must agree to the covenant by ticking the check box before they will b | |||
3880 | label="Can't Buy Objects" | 3881 | label="Can't Buy Objects" |
3881 | name="BuyObjectOneOwner" | 3882 | name="BuyObjectOneOwner" |
3882 | type="alertmodal"> | 3883 | type="alertmodal"> |
3883 | Cannot buy objects from different owners at the same time. | 3884 | Cannot buy objects from different owners at the same time. |
3884 | Please select only one object and try again. | 3885 | Please select only one object and try again. |
3885 | </notification> | 3886 | </notification> |
3886 | 3887 | ||
3887 | <notification | 3888 | <notification |
@@ -3889,8 +3890,8 @@ Please select only one object and try again. | |||
3889 | label="Can't Buy Contents" | 3890 | label="Can't Buy Contents" |
3890 | name="BuyContentsOneOnly" | 3891 | name="BuyContentsOneOnly" |
3891 | type="alertmodal"> | 3892 | type="alertmodal"> |
3892 | Unable to buy the contents of more than one object at a time. | 3893 | Unable to buy the contents of more than one object at a time. |
3893 | Please select only one object and try again. | 3894 | Please select only one object and try again. |
3894 | </notification> | 3895 | </notification> |
3895 | 3896 | ||
3896 | <notification | 3897 | <notification |
@@ -3898,20 +3899,20 @@ Please select only one object and try again. | |||
3898 | label="Can't Buy Contents" | 3899 | label="Can't Buy Contents" |
3899 | name="BuyContentsOneOwner" | 3900 | name="BuyContentsOneOwner" |
3900 | type="alertmodal"> | 3901 | type="alertmodal"> |
3901 | Cannot buy objects from different owners at the same time. | 3902 | Cannot buy objects from different owners at the same time. |
3902 | Please select only one object and try again. | 3903 | Please select only one object and try again. |
3903 | </notification> | 3904 | </notification> |
3904 | 3905 | ||
3905 | <notification | 3906 | <notification |
3906 | icon="alertmodal.tga" | 3907 | icon="alertmodal.tga" |
3907 | name="BuyOriginal" | 3908 | name="BuyOriginal" |
3908 | type="alertmodal"> | 3909 | type="alertmodal"> |
3909 | Buy original object from [OWNER] for L$[PRICE]? | 3910 | Buy original object from [OWNER] for L$[PRICE]? |
3910 | You will become the owner of this object. | 3911 | You will become the owner of this object. |
3911 | You will be able to: | 3912 | You will be able to: |
3912 | Modify: [MODIFYPERM] | 3913 | Modify: [MODIFYPERM] |
3913 | Copy: [COPYPERM] | 3914 | Copy: [COPYPERM] |
3914 | Resell or Give Away: [RESELLPERM] | 3915 | Resell or Give Away: [RESELLPERM] |
3915 | <usetemplate | 3916 | <usetemplate |
3916 | name="okcancelbuttons" | 3917 | name="okcancelbuttons" |
3917 | notext="Cancel" | 3918 | notext="Cancel" |
@@ -3922,12 +3923,12 @@ You will be able to: | |||
3922 | icon="alertmodal.tga" | 3923 | icon="alertmodal.tga" |
3923 | name="BuyOriginalNoOwner" | 3924 | name="BuyOriginalNoOwner" |
3924 | type="alertmodal"> | 3925 | type="alertmodal"> |
3925 | Buy original object for L$[PRICE]? | 3926 | Buy original object for L$[PRICE]? |
3926 | You will become the owner of this object. | 3927 | You will become the owner of this object. |
3927 | You will be able to: | 3928 | You will be able to: |
3928 | Modify: [MODIFYPERM] | 3929 | Modify: [MODIFYPERM] |
3929 | Copy: [COPYPERM] | 3930 | Copy: [COPYPERM] |
3930 | Resell or Give Away: [RESELLPERM] | 3931 | Resell or Give Away: [RESELLPERM] |
3931 | <usetemplate | 3932 | <usetemplate |
3932 | name="okcancelbuttons" | 3933 | name="okcancelbuttons" |
3933 | notext="Cancel" | 3934 | notext="Cancel" |
@@ -3938,12 +3939,12 @@ You will be able to: | |||
3938 | icon="alertmodal.tga" | 3939 | icon="alertmodal.tga" |
3939 | name="BuyCopy" | 3940 | name="BuyCopy" |
3940 | type="alertmodal"> | 3941 | type="alertmodal"> |
3941 | Buy a copy from [OWNER] for L$[PRICE]? | 3942 | Buy a copy from [OWNER] for L$[PRICE]? |
3942 | The object will be copied to your inventory. | 3943 | The object will be copied to your inventory. |
3943 | You will be able to: | 3944 | You will be able to: |
3944 | Modify: [MODIFYPERM] | 3945 | Modify: [MODIFYPERM] |
3945 | Copy: [COPYPERM] | 3946 | Copy: [COPYPERM] |
3946 | Resell or Give Away: [RESELLPERM] | 3947 | Resell or Give Away: [RESELLPERM] |
3947 | <usetemplate | 3948 | <usetemplate |
3948 | name="okcancelbuttons" | 3949 | name="okcancelbuttons" |
3949 | notext="Cancel" | 3950 | notext="Cancel" |
@@ -3954,12 +3955,12 @@ You will be able to: | |||
3954 | icon="alertmodal.tga" | 3955 | icon="alertmodal.tga" |
3955 | name="BuyCopyNoOwner" | 3956 | name="BuyCopyNoOwner" |
3956 | type="alertmodal"> | 3957 | type="alertmodal"> |
3957 | Buy a copy for L$[PRICE]? | 3958 | Buy a copy for L$[PRICE]? |
3958 | The object will be copied to your inventory. | 3959 | The object will be copied to your inventory. |
3959 | You will be able to: | 3960 | You will be able to: |
3960 | Modify: [MODIFYPERM] | 3961 | Modify: [MODIFYPERM] |
3961 | Copy: [COPYPERM] | 3962 | Copy: [COPYPERM] |
3962 | Resell or Give Away: [RESELLPERM] | 3963 | Resell or Give Away: [RESELLPERM] |
3963 | <usetemplate | 3964 | <usetemplate |
3964 | name="okcancelbuttons" | 3965 | name="okcancelbuttons" |
3965 | notext="Cancel" | 3966 | notext="Cancel" |
@@ -3970,8 +3971,8 @@ You will be able to: | |||
3970 | icon="alertmodal.tga" | 3971 | icon="alertmodal.tga" |
3971 | name="BuyContents" | 3972 | name="BuyContents" |
3972 | type="alertmodal"> | 3973 | type="alertmodal"> |
3973 | Buy contents from [OWNER] for L$[PRICE]? | 3974 | Buy contents from [OWNER] for L$[PRICE]? |
3974 | They will be copied to your inventory. | 3975 | They will be copied to your inventory. |
3975 | <usetemplate | 3976 | <usetemplate |
3976 | name="okcancelbuttons" | 3977 | name="okcancelbuttons" |
3977 | notext="Cancel" | 3978 | notext="Cancel" |
@@ -3982,8 +3983,8 @@ They will be copied to your inventory. | |||
3982 | icon="alertmodal.tga" | 3983 | icon="alertmodal.tga" |
3983 | name="BuyContentsNoOwner" | 3984 | name="BuyContentsNoOwner" |
3984 | type="alertmodal"> | 3985 | type="alertmodal"> |
3985 | Buy contents for L$[PRICE]? | 3986 | Buy contents for L$[PRICE]? |
3986 | They will be copied to your inventory. | 3987 | They will be copied to your inventory. |
3987 | <usetemplate | 3988 | <usetemplate |
3988 | name="okcancelbuttons" | 3989 | name="okcancelbuttons" |
3989 | notext="Cancel" | 3990 | notext="Cancel" |
@@ -3994,10 +3995,10 @@ They will be copied to your inventory. | |||
3994 | icon="alertmodal.tga" | 3995 | icon="alertmodal.tga" |
3995 | name="ConfirmPurchase" | 3996 | name="ConfirmPurchase" |
3996 | type="alertmodal"> | 3997 | type="alertmodal"> |
3997 | This transaction will: | 3998 | This transaction will: |
3998 | [ACTION] | 3999 | [ACTION] |
3999 | 4000 | ||
4000 | Are you sure you want to proceed with this purchase? | 4001 | Are you sure you want to proceed with this purchase? |
4001 | <usetemplate | 4002 | <usetemplate |
4002 | name="okcancelbuttons" | 4003 | name="okcancelbuttons" |
4003 | notext="Cancel" | 4004 | notext="Cancel" |
@@ -4008,11 +4009,11 @@ Are you sure you want to proceed with this purchase? | |||
4008 | icon="alertmodal.tga" | 4009 | icon="alertmodal.tga" |
4009 | name="ConfirmPurchasePassword" | 4010 | name="ConfirmPurchasePassword" |
4010 | type="password"> | 4011 | type="password"> |
4011 | This transaction will: | 4012 | This transaction will: |
4012 | [ACTION] | 4013 | [ACTION] |
4013 | 4014 | ||
4014 | Are you sure you want to proceed with this purchase? | 4015 | Are you sure you want to proceed with this purchase? |
4015 | Please re-enter your password and click OK. | 4016 | Please re-enter your password and click OK. |
4016 | <form name="form"> | 4017 | <form name="form"> |
4017 | <input | 4018 | <input |
4018 | name="message" | 4019 | name="message" |
@@ -4033,8 +4034,8 @@ Please re-enter your password and click OK. | |||
4033 | icon="alert.tga" | 4034 | icon="alert.tga" |
4034 | name="SetPickLocation" | 4035 | name="SetPickLocation" |
4035 | type="alert"> | 4036 | type="alert"> |
4036 | Note: | 4037 | Note: |
4037 | You have updated the location of this pick but the other details will retain their original values. | 4038 | You have updated the location of this pick but the other details will retain their original values. |
4038 | <usetemplate | 4039 | <usetemplate |
4039 | name="okbutton" | 4040 | name="okbutton" |
4040 | yestext="OK"/> | 4041 | yestext="OK"/> |
@@ -4044,10 +4045,10 @@ You have updated the location of this pick but the other details will retain the | |||
4044 | icon="alertmodal.tga" | 4045 | icon="alertmodal.tga" |
4045 | name="MoveInventoryFromObject" | 4046 | name="MoveInventoryFromObject" |
4046 | type="alertmodal"> | 4047 | type="alertmodal"> |
4047 | You have selected 'no copy' inventory items. | 4048 | You have selected 'no copy' inventory items. |
4048 | These items will be moved to your inventory, not copied. | 4049 | These items will be moved to your inventory, not copied. |
4049 | 4050 | ||
4050 | Move the inventory item(s)? | 4051 | Move the inventory item(s)? |
4051 | <usetemplate | 4052 | <usetemplate |
4052 | ignoretext="When moving no-copy inventory from objects" | 4053 | ignoretext="When moving no-copy inventory from objects" |
4053 | name="okcancelignore" | 4054 | name="okcancelignore" |
@@ -4059,10 +4060,10 @@ Move the inventory item(s)? | |||
4059 | icon="alertmodal.tga" | 4060 | icon="alertmodal.tga" |
4060 | name="MoveInventoryFromScriptedObject" | 4061 | name="MoveInventoryFromScriptedObject" |
4061 | type="alertmodal"> | 4062 | type="alertmodal"> |
4062 | You have selected 'no copy' inventory items. These items will be moved to your inventory, not copied. | 4063 | You have selected 'no copy' inventory items. These items will be moved to your inventory, not copied. |
4063 | Because this object is scripted, moving these items to your inventory may cause the script to malfunction. | 4064 | Because this object is scripted, moving these items to your inventory may cause the script to malfunction. |
4064 | 4065 | ||
4065 | Move the inventory item(s)? | 4066 | Move the inventory item(s)? |
4066 | <usetemplate | 4067 | <usetemplate |
4067 | ignoretext="When moving no-copy inventory from scripted objects" | 4068 | ignoretext="When moving no-copy inventory from scripted objects" |
4068 | name="okcancelignore" | 4069 | name="okcancelignore" |
@@ -4074,7 +4075,7 @@ Move the inventory item(s)? | |||
4074 | icon="alert.tga" | 4075 | icon="alert.tga" |
4075 | name="ClickActionNotPayable" | 4076 | name="ClickActionNotPayable" |
4076 | type="alert"> | 4077 | type="alert"> |
4077 | Warning: The Pay Object click action has been set, but it will only work if a script is added with a money() event. | 4078 | Warning: The Pay Object click action has been set, but it will only work if a script is added with a money() event. |
4078 | <form name="form"> | 4079 | <form name="form"> |
4079 | <ignore name="ignore" | 4080 | <ignore name="ignore" |
4080 | text="When Setting 'Pay' on objects without money() events"/> | 4081 | text="When Setting 'Pay' on objects without money() events"/> |
@@ -4085,14 +4086,14 @@ Warning: The Pay Object click action has been set, but it will only work if a sc | |||
4085 | icon="alertmodal.tga" | 4086 | icon="alertmodal.tga" |
4086 | name="OpenObjectCannotCopy" | 4087 | name="OpenObjectCannotCopy" |
4087 | type="alertmodal"> | 4088 | type="alertmodal"> |
4088 | There are no items in this object that you are allowed to copy. | 4089 | There are no items in this object that you are allowed to copy. |
4089 | </notification> | 4090 | </notification> |
4090 | 4091 | ||
4091 | <notification | 4092 | <notification |
4092 | icon="alertmodal.tga" | 4093 | icon="alertmodal.tga" |
4093 | name="WebLaunchAccountHistory" | 4094 | name="WebLaunchAccountHistory" |
4094 | type="alertmodal"> | 4095 | type="alertmodal"> |
4095 | Go to the Second Life web site to see your account history? | 4096 | Go to the Second Life web site to see your account history? |
4096 | <usetemplate | 4097 | <usetemplate |
4097 | ignoretext="When loading account history web page" | 4098 | ignoretext="When loading account history web page" |
4098 | name="okcancelignore" | 4099 | name="okcancelignore" |
@@ -4104,7 +4105,7 @@ Go to the Second Life web site to see your account history? | |||
4104 | icon="alertmodal.tga" | 4105 | icon="alertmodal.tga" |
4105 | name="ClickOpenF1Help" | 4106 | name="ClickOpenF1Help" |
4106 | type="alertmodal"> | 4107 | type="alertmodal"> |
4107 | Visit the Second Life Support Web site? | 4108 | Visit the [SECOND_LIFE] Support Website? (note: this is not an Imprudence Help site) |
4108 | <usetemplate | 4109 | <usetemplate |
4109 | ignoretext="When visiting the Second Life Support Website." | 4110 | ignoretext="When visiting the Second Life Support Website." |
4110 | name="okcancelignore" | 4111 | name="okcancelignore" |
@@ -4116,7 +4117,7 @@ Visit the Second Life Support Web site? | |||
4116 | icon="alertmodal.tga" | 4117 | icon="alertmodal.tga" |
4117 | name="ConfirmQuit" | 4118 | name="ConfirmQuit" |
4118 | type="alertmodal"> | 4119 | type="alertmodal"> |
4119 | Are you sure you want to quit? | 4120 | Are you sure you want to quit? |
4120 | <usetemplate | 4121 | <usetemplate |
4121 | ignoretext="When Quitting Second Life." | 4122 | ignoretext="When Quitting Second Life." |
4122 | name="okcancelignore" | 4123 | name="okcancelignore" |
@@ -4128,137 +4129,137 @@ Are you sure you want to quit? | |||
4128 | icon="alertmodal.tga" | 4129 | icon="alertmodal.tga" |
4129 | name="HelpReportAbuseEmailLL" | 4130 | name="HelpReportAbuseEmailLL" |
4130 | type="alertmodal"> | 4131 | type="alertmodal"> |
4131 | Use this tool to report violations of the Terms of Service and Community Standards. See: | 4132 | Use this tool to report violations of the Terms of Service and Community Standards. See: |
4132 | 4133 | ||
4133 | http://secondlife.com/corporate/tos.php | 4134 | http://secondlife.com/corporate/tos.php |
4134 | http://secondlife.com/corporate/cs.php | 4135 | http://secondlife.com/corporate/cs.php |
4135 | 4136 | ||
4136 | All reported abuses of the Terms of Service and Community Standards are investigated and resolved. You can view the incident resolution on the Incident Report at: | 4137 | All reported abuses of the Terms of Service and Community Standards are investigated and resolved. You can view the incident resolution on the Incident Report at: |
4137 | 4138 | ||
4138 | http://secondlife.com/support/incidentreport.php | 4139 | http://secondlife.com/support/incidentreport.php |
4139 | </notification> | 4140 | </notification> |
4140 | 4141 | ||
4141 | <notification | 4142 | <notification |
4142 | icon="alertmodal.tga" | 4143 | icon="alertmodal.tga" |
4143 | name="HelpReportAbuseEmailEO" | 4144 | name="HelpReportAbuseEmailEO" |
4144 | type="alertmodal"> | 4145 | type="alertmodal"> |
4145 | IMPORTANT: This report will go to the owner of the region you are currently in and not to Linden Lab. | 4146 | IMPORTANT: This report will go to the owner of the region you are currently in and not to Linden Lab. |
4146 | 4147 | ||
4147 | As a service to residents and visitors, the owner of the region you are in has elected to receive and resolve all reports originating in this region. Linden Lab will not investigate reports you file from this location. | 4148 | As a service to residents and visitors, the owner of the region you are in has elected to receive and resolve all reports originating in this region. Linden Lab will not investigate reports you file from this location. |
4148 | 4149 | ||
4149 | The region owner will resolve reports based on the local rules of this region as outlined in the estate Covenant. | 4150 | The region owner will resolve reports based on the local rules of this region as outlined in the estate Covenant. |
4150 | (View covenants by going to the World menu and selecting About Land.) | 4151 | (View covenants by going to the World menu and selecting About Land.) |
4151 | 4152 | ||
4152 | The resolution of this report applies only to this Region; Residents access to other areas of Second Life will not be affected by the outcome of this report. Only Linden Lab can restrict access to the entirety of Second Life. | 4153 | The resolution of this report applies only to this Region; Residents access to other areas of Second Life will not be affected by the outcome of this report. Only Linden Lab can restrict access to the entirety of Second Life. |
4153 | </notification> | 4154 | </notification> |
4154 | 4155 | ||
4155 | <notification | 4156 | <notification |
4156 | icon="alertmodal.tga" | 4157 | icon="alertmodal.tga" |
4157 | name="HelpReportBug" | 4158 | name="HelpReportBug" |
4158 | type="alertmodal"> | 4159 | type="alertmodal"> |
4159 | Use this tool to *only* report technical features that do not perform as described or expected, please provide as much detail as possible. | 4160 | Use this tool to *only* report technical features that do not perform as described or expected, please provide as much detail as possible. |
4160 | You may reply to the auto-response email to add more details to your report. | 4161 | You may reply to the auto-response email to add more details to your report. |
4161 | 4162 | ||
4162 | All bug reports are investigated and assessed. No email response will be sent. | 4163 | All bug reports are investigated and assessed. No email response will be sent. |
4163 | 4164 | ||
4164 | If you are having a technical difficulty, please contact Support at: | 4165 | If you are having a technical difficulty, please contact Support at: |
4165 | 4166 | ||
4166 | http://secondlife.com/community/support.php | 4167 | http://secondlife.com/community/support.php |
4167 | 4168 | ||
4168 | Note: Incomplete reports will not be investigated | 4169 | Note: Incomplete reports will not be investigated |
4169 | </notification> | 4170 | </notification> |
4170 | 4171 | ||
4171 | <notification | 4172 | <notification |
4172 | icon="alertmodal.tga" | 4173 | icon="alertmodal.tga" |
4173 | name="HelpReportAbuseSelectCategory" | 4174 | name="HelpReportAbuseSelectCategory" |
4174 | type="alertmodal"> | 4175 | type="alertmodal"> |
4175 | Please select a category for this abuse report. | 4176 | Please select a category for this abuse report. |
4176 | Selecting a category helps us file and process abuse reports. | 4177 | Selecting a category helps us file and process abuse reports. |
4177 | </notification> | 4178 | </notification> |
4178 | 4179 | ||
4179 | <notification | 4180 | <notification |
4180 | icon="alertmodal.tga" | 4181 | icon="alertmodal.tga" |
4181 | name="HelpReportBugSelectCategory" | 4182 | name="HelpReportBugSelectCategory" |
4182 | type="alertmodal"> | 4183 | type="alertmodal"> |
4183 | Please select a category for this bug. | 4184 | Please select a category for this bug. |
4184 | Selecting a category helps us file and process bug reports. | 4185 | Selecting a category helps us file and process bug reports. |
4185 | </notification> | 4186 | </notification> |
4186 | 4187 | ||
4187 | <notification | 4188 | <notification |
4188 | icon="alertmodal.tga" | 4189 | icon="alertmodal.tga" |
4189 | name="HelpReportAbuseAbuserNameEmpty" | 4190 | name="HelpReportAbuseAbuserNameEmpty" |
4190 | type="alertmodal"> | 4191 | type="alertmodal"> |
4191 | Please enter the name of the abuser. | 4192 | Please enter the name of the abuser. |
4192 | Entering an accurate value helps us file and process abuse reports. | 4193 | Entering an accurate value helps us file and process abuse reports. |
4193 | </notification> | 4194 | </notification> |
4194 | 4195 | ||
4195 | <notification | 4196 | <notification |
4196 | icon="alertmodal.tga" | 4197 | icon="alertmodal.tga" |
4197 | name="HelpReportAbuseAbuserLocationEmpty" | 4198 | name="HelpReportAbuseAbuserLocationEmpty" |
4198 | type="alertmodal"> | 4199 | type="alertmodal"> |
4199 | Please enter the location where the abuse took place. | 4200 | Please enter the location where the abuse took place. |
4200 | Entering an accurate value helps us file and process abuse reports. | 4201 | Entering an accurate value helps us file and process abuse reports. |
4201 | </notification> | 4202 | </notification> |
4202 | 4203 | ||
4203 | <notification | 4204 | <notification |
4204 | icon="alertmodal.tga" | 4205 | icon="alertmodal.tga" |
4205 | name="HelpReportAbuseSummaryEmpty" | 4206 | name="HelpReportAbuseSummaryEmpty" |
4206 | type="alertmodal"> | 4207 | type="alertmodal"> |
4207 | Please enter a summary of the abuse that took place. | 4208 | Please enter a summary of the abuse that took place. |
4208 | Entering an accurate summary helps us file and process abuse reports. | 4209 | Entering an accurate summary helps us file and process abuse reports. |
4209 | </notification> | 4210 | </notification> |
4210 | 4211 | ||
4211 | <notification | 4212 | <notification |
4212 | icon="alertmodal.tga" | 4213 | icon="alertmodal.tga" |
4213 | name="HelpReportBugSummaryEmpty" | 4214 | name="HelpReportBugSummaryEmpty" |
4214 | type="alertmodal"> | 4215 | type="alertmodal"> |
4215 | Please enter a summary of the bug. | 4216 | Please enter a summary of the bug. |
4216 | Entering an accurate summary helps us file and process bug reports. | 4217 | Entering an accurate summary helps us file and process bug reports. |
4217 | </notification> | 4218 | </notification> |
4218 | 4219 | ||
4219 | <notification | 4220 | <notification |
4220 | icon="alertmodal.tga" | 4221 | icon="alertmodal.tga" |
4221 | name="HelpReportAbuseDetailsEmpty" | 4222 | name="HelpReportAbuseDetailsEmpty" |
4222 | type="alertmodal"> | 4223 | type="alertmodal"> |
4223 | Please enter a detailed description of the abuse that took place. | 4224 | Please enter a detailed description of the abuse that took place. |
4224 | Be as specific as you can, including names and the details of the incident you are reporting. | 4225 | Be as specific as you can, including names and the details of the incident you are reporting. |
4225 | Entering an accurate description helps us file and process abuse reports. | 4226 | Entering an accurate description helps us file and process abuse reports. |
4226 | </notification> | 4227 | </notification> |
4227 | 4228 | ||
4228 | <notification | 4229 | <notification |
4229 | icon="alertmodal.tga" | 4230 | icon="alertmodal.tga" |
4230 | name="HelpReportBugDetailsEmpty" | 4231 | name="HelpReportBugDetailsEmpty" |
4231 | type="alertmodal"> | 4232 | type="alertmodal"> |
4232 | Please enter a detailed description of the bug. | 4233 | Please enter a detailed description of the bug. |
4233 | Be as specific as you can, including steps to reproduce the bug if possible. | 4234 | Be as specific as you can, including steps to reproduce the bug if possible. |
4234 | Entering an accurate description helps us file and process bug reports. | 4235 | Entering an accurate description helps us file and process bug reports. |
4235 | </notification> | 4236 | </notification> |
4236 | 4237 | ||
4237 | <notification | 4238 | <notification |
4238 | icon="alertmodal.tga" | 4239 | icon="alertmodal.tga" |
4239 | name="HelpReportAbuseContainsCopyright" | 4240 | name="HelpReportAbuseContainsCopyright" |
4240 | type="alertmodal"> | 4241 | type="alertmodal"> |
4241 | Dear Resident, | 4242 | Dear Resident, |
4242 | 4243 | ||
4243 | You appear to be reporting intellectual property infringement. Please make sure you are reporting it correctly: | 4244 | You appear to be reporting intellectual property infringement. Please make sure you are reporting it correctly: |
4244 | 4245 | ||
4245 | (1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the Second Life permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the Second Life Community Standards or Terms of Service. However, the Abuse Team does not handle and will not respond to requests to remove content from the Second Life world. | 4246 | (1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the Second Life permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the Second Life Community Standards or Terms of Service. However, the Abuse Team does not handle and will not respond to requests to remove content from the Second Life world. |
4246 | 4247 | ||
4247 | (2) The DMCA or Content Removal Process. To request removal of content from Second Life, you MUST submit a valid notification of infringement as provided in our DMCA Policy at http://secondlife.com/corporate/dmca.php. | 4248 | (2) The DMCA or Content Removal Process. To request removal of content from Second Life, you MUST submit a valid notification of infringement as provided in our DMCA Policy at http://secondlife.com/corporate/dmca.php. |
4248 | 4249 | ||
4249 | If you still wish to continue with the abuse process, please close this window and finish submitting your report. You may need to select the specific category 'CopyBot or Permissions Exploit'. | 4250 | If you still wish to continue with the abuse process, please close this window and finish submitting your report. You may need to select the specific category 'CopyBot or Permissions Exploit'. |
4250 | 4251 | ||
4251 | Thank you, | 4252 | Thank you, |
4252 | 4253 | ||
4253 | Linden Lab | 4254 | Linden Lab |
4254 | </notification> | 4255 | </notification> |
4255 | 4256 | ||
4256 | <notification | 4257 | <notification |
4257 | icon="alertmodal.tga" | 4258 | icon="alertmodal.tga" |
4258 | name="FailedRequirementsCheck" | 4259 | name="FailedRequirementsCheck" |
4259 | type="alertmodal"> | 4260 | type="alertmodal"> |
4260 | The following required components are missing from [FLOATER]: | 4261 | The following required components are missing from [FLOATER]: |
4261 | [COMPONENTS] | 4262 | [COMPONENTS] |
4262 | </notification> | 4263 | </notification> |
4263 | 4264 | ||
4264 | <notification | 4265 | <notification |
@@ -4266,8 +4267,8 @@ The following required components are missing from [FLOATER]: | |||
4266 | label="Replace Existing Attachment" | 4267 | label="Replace Existing Attachment" |
4267 | name="ReplaceAttachment" | 4268 | name="ReplaceAttachment" |
4268 | type="alert"> | 4269 | type="alert"> |
4269 | There is already an object attached to this point on your body. | 4270 | There is already an object attached to this point on your body. |
4270 | Do you want to replace it with the selected object? | 4271 | Do you want to replace it with the selected object? |
4271 | <form name="form"> | 4272 | <form name="form"> |
4272 | <ignore name="ignore" | 4273 | <ignore name="ignore" |
4273 | save_option="true" | 4274 | save_option="true" |
@@ -4291,9 +4292,9 @@ Do you want to replace it with the selected object? | |||
4291 | label="Busy Mode Warning" | 4292 | label="Busy Mode Warning" |
4292 | name="BusyModePay" | 4293 | name="BusyModePay" |
4293 | type="alert"> | 4294 | type="alert"> |
4294 | You are in Busy Mode, which means you will not receive any items offered in exchange for this payment. | 4295 | You are in Busy Mode, which means you will not receive any items offered in exchange for this payment. |
4295 | 4296 | ||
4296 | Would you like to leave Busy Mode before completing this transaction? | 4297 | Would you like to leave Busy Mode before completing this transaction? |
4297 | <form name="form"> | 4298 | <form name="form"> |
4298 | <ignore name="ignore" | 4299 | <ignore name="ignore" |
4299 | save_option="true" | 4300 | save_option="true" |
@@ -4316,7 +4317,7 @@ Would you like to leave Busy Mode before completing this transaction? | |||
4316 | icon="alertmodal.tga" | 4317 | icon="alertmodal.tga" |
4317 | name="ConfirmEmptyTrash" | 4318 | name="ConfirmEmptyTrash" |
4318 | type="alertmodal"> | 4319 | type="alertmodal"> |
4319 | Are you sure you want to permanently remove the contents of your Trash folder? | 4320 | Are you sure you want to permanently remove the contents of your Trash folder? |
4320 | <usetemplate | 4321 | <usetemplate |
4321 | ignoretext="When emptying your inventory trash folder" | 4322 | ignoretext="When emptying your inventory trash folder" |
4322 | name="okcancelignore" | 4323 | name="okcancelignore" |
@@ -4328,7 +4329,7 @@ Are you sure you want to permanently remove the contents of your Trash folder? | |||
4328 | icon="alertmodal.tga" | 4329 | icon="alertmodal.tga" |
4329 | name="ConfirmClearBrowserCache" | 4330 | name="ConfirmClearBrowserCache" |
4330 | type="alertmodal"> | 4331 | type="alertmodal"> |
4331 | Are you sure you want to clear your browser cache? | 4332 | Are you sure you want to clear your browser cache? |
4332 | <usetemplate | 4333 | <usetemplate |
4333 | name="okcancelbuttons" | 4334 | name="okcancelbuttons" |
4334 | notext="Cancel" | 4335 | notext="Cancel" |
@@ -4339,7 +4340,7 @@ Are you sure you want to clear your browser cache? | |||
4339 | icon="alertmodal.tga" | 4340 | icon="alertmodal.tga" |
4340 | name="ConfirmClearCookies" | 4341 | name="ConfirmClearCookies" |
4341 | type="alertmodal"> | 4342 | type="alertmodal"> |
4342 | Are you sure you want to clear your cookies? | 4343 | Are you sure you want to clear your cookies? |
4343 | <usetemplate | 4344 | <usetemplate |
4344 | name="okcancelbuttons" | 4345 | name="okcancelbuttons" |
4345 | notext="Cancel" | 4346 | notext="Cancel" |
@@ -4350,7 +4351,7 @@ Are you sure you want to clear your cookies? | |||
4350 | icon="alertmodal.tga" | 4351 | icon="alertmodal.tga" |
4351 | name="ConfirmClearMediaUrlList" | 4352 | name="ConfirmClearMediaUrlList" |
4352 | type="alertmodal"> | 4353 | type="alertmodal"> |
4353 | Are you sure you want to clear your list of saved URLs? | 4354 | Are you sure you want to clear your list of saved URLs? |
4354 | <usetemplate | 4355 | <usetemplate |
4355 | name="okcancelbuttons" | 4356 | name="okcancelbuttons" |
4356 | notext="Cancel" | 4357 | notext="Cancel" |
@@ -4361,7 +4362,7 @@ Are you sure you want to clear your list of saved URLs? | |||
4361 | icon="alertmodal.tga" | 4362 | icon="alertmodal.tga" |
4362 | name="ConfirmEmptyLostAndFound" | 4363 | name="ConfirmEmptyLostAndFound" |
4363 | type="alertmodal"> | 4364 | type="alertmodal"> |
4364 | Are you sure you want to permanently remove the contents of your Lost And Found folder? | 4365 | Are you sure you want to permanently remove the contents of your Lost And Found folder? |
4365 | <usetemplate | 4366 | <usetemplate |
4366 | ignoretext="When emptying your inventory Lost And Found folder" | 4367 | ignoretext="When emptying your inventory Lost And Found folder" |
4367 | name="okcancelignore" | 4368 | name="okcancelignore" |
@@ -4373,10 +4374,10 @@ Are you sure you want to permanently remove the contents of your Lost And Found | |||
4373 | icon="alertmodal.tga" | 4374 | icon="alertmodal.tga" |
4374 | name="CopySLURL" | 4375 | name="CopySLURL" |
4375 | type="alertmodal"> | 4376 | type="alertmodal"> |
4376 | The following SLURL has been copied to your clipboard: | 4377 | The following SLURL has been copied to your clipboard: |
4377 | [SLURL] | 4378 | [SLURL] |
4378 | 4379 | ||
4379 | Put it in a web page to give others easy access to this location or try it out yourself by pasting it into the address bar of your web browser. | 4380 | Put it in a web page to give others easy access to this location or try it out yourself by pasting it into the address bar of your web browser. |
4380 | <form name="form"> | 4381 | <form name="form"> |
4381 | <ignore name="ignore" | 4382 | <ignore name="ignore" |
4382 | text="When copying a SLURL to your clipboard"/> | 4383 | text="When copying a SLURL to your clipboard"/> |
@@ -4387,32 +4388,32 @@ Put it in a web page to give others easy access to this location or try it out y | |||
4387 | icon="alertmodal.tga" | 4388 | icon="alertmodal.tga" |
4388 | name="GraphicsPreferencesHelp" | 4389 | name="GraphicsPreferencesHelp" |
4389 | type="alertmodal"> | 4390 | type="alertmodal"> |
4390 | This panel controls window size and resolution and the quality of the client's graphics. The Preferences > Graphics interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. You may also customize your graphics settings by checking the Custom checkbox and manipulating the following settings: | 4391 | This panel controls window size and resolution and the quality of the client's graphics. The Preferences > Graphics interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. You may also customize your graphics settings by checking the Custom checkbox and manipulating the following settings: |
4391 | 4392 | ||
4392 | Shaders: Enable or disable various types of pixel shaders. | 4393 | Shaders: Enable or disable various types of pixel shaders. |
4393 | 4394 | ||
4394 | Reflection Detail: Sets the types of objects that water can reflect. | 4395 | Reflection Detail: Sets the types of objects that water can reflect. |
4395 | 4396 | ||
4396 | Avatar Rendering: Sets options that affect how the client renders avatars. | 4397 | Avatar Rendering: Sets options that affect how the client renders avatars. |
4397 | 4398 | ||
4398 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | 4399 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. |
4399 | 4400 | ||
4400 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | 4401 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. |
4401 | 4402 | ||
4402 | Post Process Quality: Sets the resolution with which Glow is rendered. | 4403 | Post Process Quality: Sets the resolution with which Glow is rendered. |
4403 | 4404 | ||
4404 | Mesh Detail: Sets the amount of detail or number of triangles used in rendering certain objects. A higher value takes longer to render, but makes these objects appear with more detail. | 4405 | Mesh Detail: Sets the amount of detail or number of triangles used in rendering certain objects. A higher value takes longer to render, but makes these objects appear with more detail. |
4405 | 4406 | ||
4406 | Lighting Detail: Selects what types of lights you would like to render. | 4407 | Lighting Detail: Selects what types of lights you would like to render. |
4407 | 4408 | ||
4408 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. | 4409 | Terrain Detail: Sets the amount of detail you would like to see for the terrain texture. |
4409 | </notification> | 4410 | </notification> |
4410 | 4411 | ||
4411 | <notification | 4412 | <notification |
4412 | icon="alertmodal.tga" | 4413 | icon="alertmodal.tga" |
4413 | name="WLSavePresetAlert" | 4414 | name="WLSavePresetAlert" |
4414 | type="alertmodal"> | 4415 | type="alertmodal"> |
4415 | Do you wish to overwrite the saved preset? | 4416 | Do you wish to overwrite the saved preset? |
4416 | <usetemplate | 4417 | <usetemplate |
4417 | name="okcancelbuttons" | 4418 | name="okcancelbuttons" |
4418 | notext="No" | 4419 | notext="No" |
@@ -4423,7 +4424,7 @@ Do you wish to overwrite the saved preset? | |||
4423 | icon="alertmodal.tga" | 4424 | icon="alertmodal.tga" |
4424 | name="WLDeletePresetAlert" | 4425 | name="WLDeletePresetAlert" |
4425 | type="alertmodal"> | 4426 | type="alertmodal"> |
4426 | Do you wish to delete [SKY]? | 4427 | Do you wish to delete [SKY]? |
4427 | <usetemplate | 4428 | <usetemplate |
4428 | name="okcancelbuttons" | 4429 | name="okcancelbuttons" |
4429 | notext="No" | 4430 | notext="No" |
@@ -4434,21 +4435,21 @@ Do you wish to delete [SKY]? | |||
4434 | icon="alertmodal.tga" | 4435 | icon="alertmodal.tga" |
4435 | name="WLNoEditDefault" | 4436 | name="WLNoEditDefault" |
4436 | type="alertmodal"> | 4437 | type="alertmodal"> |
4437 | You cannot edit or delete a default preset. | 4438 | You cannot edit or delete a default preset. |
4438 | </notification> | 4439 | </notification> |
4439 | 4440 | ||
4440 | <notification | 4441 | <notification |
4441 | icon="alertmodal.tga" | 4442 | icon="alertmodal.tga" |
4442 | name="WLMissingSky" | 4443 | name="WLMissingSky" |
4443 | type="alertmodal"> | 4444 | type="alertmodal"> |
4444 | This day cycle file references a missing sky file: [SKY]. | 4445 | This day cycle file references a missing sky file: [SKY]. |
4445 | </notification> | 4446 | </notification> |
4446 | 4447 | ||
4447 | <notification | 4448 | <notification |
4448 | icon="alertmodal.tga" | 4449 | icon="alertmodal.tga" |
4449 | name="PPSaveEffectAlert" | 4450 | name="PPSaveEffectAlert" |
4450 | type="alertmodal"> | 4451 | type="alertmodal"> |
4451 | PostProcess Effect exists. Do you still wish overwrite it? | 4452 | PostProcess Effect exists. Do you still wish overwrite it? |
4452 | <usetemplate | 4453 | <usetemplate |
4453 | name="okcancelbuttons" | 4454 | name="okcancelbuttons" |
4454 | notext="No" | 4455 | notext="No" |
@@ -4459,310 +4460,310 @@ PostProcess Effect exists. Do you still wish overwrite it? | |||
4459 | icon="alertmodal.tga" | 4460 | icon="alertmodal.tga" |
4460 | name="HelpEditSky" | 4461 | name="HelpEditSky" |
4461 | type="alertmodal"> | 4462 | type="alertmodal"> |
4462 | Edit the WindLight sliders to create and save a set of skies. | 4463 | Edit the WindLight sliders to create and save a set of skies. |
4463 | </notification> | 4464 | </notification> |
4464 | 4465 | ||
4465 | <notification | 4466 | <notification |
4466 | icon="alertmodal.tga" | 4467 | icon="alertmodal.tga" |
4467 | name="HelpEditDayCycle" | 4468 | name="HelpEditDayCycle" |
4468 | type="alertmodal"> | 4469 | type="alertmodal"> |
4469 | Set which skies to turn to throughout the day. | 4470 | Set which skies to turn to throughout the day. |
4470 | </notification> | 4471 | </notification> |
4471 | 4472 | ||
4472 | <notification | 4473 | <notification |
4473 | icon="alertmodal.tga" | 4474 | icon="alertmodal.tga" |
4474 | name="EnvSettingsHelpButton" | 4475 | name="EnvSettingsHelpButton" |
4475 | type="alertmodal"> | 4476 | type="alertmodal"> |
4476 | These settings adjust the way the environment looks locally on your computer. Your graphics card needs to support atmospheric shaders in order to have access to all of the settings. | 4477 | These settings adjust the way the environment looks locally on your computer. Your graphics card needs to support atmospheric shaders in order to have access to all of the settings. |
4477 | 4478 | ||
4478 | Adjust the "Time of Day" slider to change the day's phase locally on the viewer. | 4479 | Adjust the "Time of Day" slider to change the day's phase locally on the viewer. |
4479 | 4480 | ||
4480 | Adjust the "Cloud Cover" slider to control how much the clouds cover the sky. | 4481 | Adjust the "Cloud Cover" slider to control how much the clouds cover the sky. |
4481 | 4482 | ||
4482 | Pick a color in the "Water Color" color picker to change the color of the water. | 4483 | Pick a color in the "Water Color" color picker to change the color of the water. |
4483 | 4484 | ||
4484 | Adjust the "Water Fog" slider to control how dense the fog is underwater. | 4485 | Adjust the "Water Fog" slider to control how dense the fog is underwater. |
4485 | 4486 | ||
4486 | Click "Use Estate Time" to reset the time of day to the region's current time of day and remain linked to it. | 4487 | Click "Use Estate Time" to reset the time of day to the region's current time of day and remain linked to it. |
4487 | 4488 | ||
4488 | Click "Advanced Sky" to bring up an editor with more advanced settings for the sky. | 4489 | Click "Advanced Sky" to bring up an editor with more advanced settings for the sky. |
4489 | 4490 | ||
4490 | Click "Advanced Water" to bring up an editor with more advanced settings for the water. | 4491 | Click "Advanced Water" to bring up an editor with more advanced settings for the water. |
4491 | </notification> | 4492 | </notification> |
4492 | 4493 | ||
4493 | <notification | 4494 | <notification |
4494 | icon="alertmodal.tga" | 4495 | icon="alertmodal.tga" |
4495 | name="HelpDayCycle" | 4496 | name="HelpDayCycle" |
4496 | type="alertmodal"> | 4497 | type="alertmodal"> |
4497 | The Day Cycle Editor gives you control over the sky during Second Life's day/night cycle. This is the cycle that is used by the Basic Environment Editor's Time of Day slider. | 4498 | The Day Cycle Editor gives you control over the sky during Second Life's day/night cycle. This is the cycle that is used by the Basic Environment Editor's Time of Day slider. |
4498 | 4499 | ||
4499 | The Day Cycle Editor works by setting keyframes. These are nodes (represented by the gray blips on the time graph) that have Sky Presets associated with them. As the Time of Day progresses, the WindLight sky "animates" as it interpolates between these keyframes. | 4500 | The Day Cycle Editor works by setting keyframes. These are nodes (represented by the gray blips on the time graph) that have Sky Presets associated with them. As the Time of Day progresses, the WindLight sky "animates" as it interpolates between these keyframes. |
4500 | 4501 | ||
4501 | The yellow arrow above the timeline represents your current view, based on Time of Day. Click and drag it to see how your day will animate. You may add or delete keyframes by pressing the Add Key and Delete Key buttons to the right of the timeline. | 4502 | The yellow arrow above the timeline represents your current view, based on Time of Day. Click and drag it to see how your day will animate. You may add or delete keyframes by pressing the Add Key and Delete Key buttons to the right of the timeline. |
4502 | 4503 | ||
4503 | You can set the time position of a keyframe by either dragging it along the timeline, or by setting its value manually in the Key Frame Settings frame. Within the Key Frame Settings frame, you'll be able to associate the keyframe with its respective WindLight preset. | 4504 | You can set the time position of a keyframe by either dragging it along the timeline, or by setting its value manually in the Key Frame Settings frame. Within the Key Frame Settings frame, you'll be able to associate the keyframe with its respective WindLight preset. |
4504 | 4505 | ||
4505 | Length of Cycle dictates the overall duration of a "day". Setting this to a low value (for instance, 2 min.) will mean your entire 24-hour timeline will animate in only two real minutes! Once you are satisfied with your timeline and keyframe cycle, use the Play and Stop buttons to preview the results. Remember- you can also move the yellow time-indicator arrow above the timeline to see the cycle animate interactively. Using the Use Estate Time button will synchronize your day length and time of day with the Estate's day cycle. | 4506 | Length of Cycle dictates the overall duration of a "day". Setting this to a low value (for instance, 2 min.) will mean your entire 24-hour timeline will animate in only two real minutes! Once you are satisfied with your timeline and keyframe cycle, use the Play and Stop buttons to preview the results. Remember- you can also move the yellow time-indicator arrow above the timeline to see the cycle animate interactively. Using the Use Estate Time button will synchronize your day length and time of day with the Estate's day cycle. |
4506 | 4507 | ||
4507 | Once you are pleased with your Day Cycle, you can save and load it with the Save Test Day and Load Test Day buttons. Note that, for now, we only allow one Day Cycle. | 4508 | Once you are pleased with your Day Cycle, you can save and load it with the Save Test Day and Load Test Day buttons. Note that, for now, we only allow one Day Cycle. |
4508 | </notification> | 4509 | </notification> |
4509 | 4510 | ||
4510 | <notification | 4511 | <notification |
4511 | icon="alertmodal.tga" | 4512 | icon="alertmodal.tga" |
4512 | name="HelpBlueHorizon" | 4513 | name="HelpBlueHorizon" |
4513 | type="alertmodal"> | 4514 | type="alertmodal"> |
4514 | Use the Red/Green/Blue (RGB) sliders to adjust the color of the sky. You can use the Intensity (I) slider to move all three RGB sliders in unison. | 4515 | Use the Red/Green/Blue (RGB) sliders to adjust the color of the sky. You can use the Intensity (I) slider to move all three RGB sliders in unison. |
4515 | </notification> | 4516 | </notification> |
4516 | 4517 | ||
4517 | <notification | 4518 | <notification |
4518 | icon="alertmodal.tga" | 4519 | icon="alertmodal.tga" |
4519 | name="HelpHazeHorizon" | 4520 | name="HelpHazeHorizon" |
4520 | type="alertmodal"> | 4521 | type="alertmodal"> |
4521 | Haze Horizon is one of the most useful parameters for adjusting overall light exposure in the scene. It is effective for simulating many exposure settings, such as white-outs from the sun and darker, closed-iris settings. | 4522 | Haze Horizon is one of the most useful parameters for adjusting overall light exposure in the scene. It is effective for simulating many exposure settings, such as white-outs from the sun and darker, closed-iris settings. |
4522 | </notification> | 4523 | </notification> |
4523 | 4524 | ||
4524 | <notification | 4525 | <notification |
4525 | icon="alertmodal.tga" | 4526 | icon="alertmodal.tga" |
4526 | name="HelpBlueDensity" | 4527 | name="HelpBlueDensity" |
4527 | type="alertmodal"> | 4528 | type="alertmodal"> |
4528 | Blue Density affects the overall color saturation of the sky and fog. If you move the Intensity (I) slider to the right, colors will become brighter and more vibrant. If you move it all the way to the left, the colors will become duller, eventually fading to black and white. If you want to fine-tune the sky's color balance, you can control individual elements of saturation by using the Red/Green/Blue (RGB) sliders. | 4529 | Blue Density affects the overall color saturation of the sky and fog. If you move the Intensity (I) slider to the right, colors will become brighter and more vibrant. If you move it all the way to the left, the colors will become duller, eventually fading to black and white. If you want to fine-tune the sky's color balance, you can control individual elements of saturation by using the Red/Green/Blue (RGB) sliders. |
4529 | </notification> | 4530 | </notification> |
4530 | 4531 | ||
4531 | <notification | 4532 | <notification |
4532 | icon="alertmodal.tga" | 4533 | icon="alertmodal.tga" |
4533 | name="HelpHazeDensity" | 4534 | name="HelpHazeDensity" |
4534 | type="alertmodal"> | 4535 | type="alertmodal"> |
4535 | Haze Density controls the level of dull, gray haze in the atmosphere. It is effective for simulating scenes with high levels of smoke and man-made pollutants. It is also effective for simulating fog and mist. | 4536 | Haze Density controls the level of dull, gray haze in the atmosphere. It is effective for simulating scenes with high levels of smoke and man-made pollutants. It is also effective for simulating fog and mist. |
4536 | </notification> | 4537 | </notification> |
4537 | 4538 | ||
4538 | <notification | 4539 | <notification |
4539 | icon="alertmodal.tga" | 4540 | icon="alertmodal.tga" |
4540 | name="HelpDensityMult" | 4541 | name="HelpDensityMult" |
4541 | type="alertmodal"> | 4542 | type="alertmodal"> |
4542 | The Density Multiplier can be used to affect the overall atmospheric density. At lower settings, it creates a feeling of "thin air", and at higher settings, it creates a very heavy, smoggy effect. | 4543 | The Density Multiplier can be used to affect the overall atmospheric density. At lower settings, it creates a feeling of "thin air", and at higher settings, it creates a very heavy, smoggy effect. |
4543 | </notification> | 4544 | </notification> |
4544 | 4545 | ||
4545 | <notification | 4546 | <notification |
4546 | icon="alertmodal.tga" | 4547 | icon="alertmodal.tga" |
4547 | name="HelpDistanceMult" | 4548 | name="HelpDistanceMult" |
4548 | type="alertmodal"> | 4549 | type="alertmodal"> |
4549 | Adjusts WindLight's perceived distance. A value of zero effectively turns off WindLight's influence on terrain and objects. Values greater than 1 simulate greater distances for thicker atmospheric effects. | 4550 | Adjusts WindLight's perceived distance. A value of zero effectively turns off WindLight's influence on terrain and objects. Values greater than 1 simulate greater distances for thicker atmospheric effects. |
4550 | </notification> | 4551 | </notification> |
4551 | 4552 | ||
4552 | <notification | 4553 | <notification |
4553 | icon="alertmodal.tga" | 4554 | icon="alertmodal.tga" |
4554 | name="HelpMaxAltitude" | 4555 | name="HelpMaxAltitude" |
4555 | type="alertmodal"> | 4556 | type="alertmodal"> |
4556 | Max Altitude adjusts the altitude calculations WindLight performs when computing its atmospheric lighting. At later times of day, it is useful for adjusting how "deep" the sunset appears. | 4557 | Max Altitude adjusts the altitude calculations WindLight performs when computing its atmospheric lighting. At later times of day, it is useful for adjusting how "deep" the sunset appears. |
4557 | </notification> | 4558 | </notification> |
4558 | 4559 | ||
4559 | <notification | 4560 | <notification |
4560 | icon="alertmodal.tga" | 4561 | icon="alertmodal.tga" |
4561 | name="HelpSunlightColor" | 4562 | name="HelpSunlightColor" |
4562 | type="alertmodal"> | 4563 | type="alertmodal"> |
4563 | Adjusts the color and intensity of the direct light in the scene. | 4564 | Adjusts the color and intensity of the direct light in the scene. |
4564 | </notification> | 4565 | </notification> |
4565 | 4566 | ||
4566 | <notification | 4567 | <notification |
4567 | icon="alertmodal.tga" | 4568 | icon="alertmodal.tga" |
4568 | name="HelpSunAmbient" | 4569 | name="HelpSunAmbient" |
4569 | type="alertmodal"> | 4570 | type="alertmodal"> |
4570 | Adjusts the color and intensity of ambient atmospheric light in the scene. | 4571 | Adjusts the color and intensity of ambient atmospheric light in the scene. |
4571 | </notification> | 4572 | </notification> |
4572 | 4573 | ||
4573 | <notification | 4574 | <notification |
4574 | icon="alertmodal.tga" | 4575 | icon="alertmodal.tga" |
4575 | name="HelpSunGlow" | 4576 | name="HelpSunGlow" |
4576 | type="alertmodal"> | 4577 | type="alertmodal"> |
4577 | The Size slider controls the size of the sun. | 4578 | The Size slider controls the size of the sun. |
4578 | The Focus slider controls how blurred the sun is over the sky. | 4579 | The Focus slider controls how blurred the sun is over the sky. |
4579 | </notification> | 4580 | </notification> |
4580 | 4581 | ||
4581 | <notification | 4582 | <notification |
4582 | icon="alertmodal.tga" | 4583 | icon="alertmodal.tga" |
4583 | name="HelpSceneGamma" | 4584 | name="HelpSceneGamma" |
4584 | type="alertmodal"> | 4585 | type="alertmodal"> |
4585 | Adjust the screen's distribution of light and dark. | 4586 | Adjust the screen's distribution of light and dark. |
4586 | </notification> | 4587 | </notification> |
4587 | 4588 | ||
4588 | <notification | 4589 | <notification |
4589 | icon="alertmodal.tga" | 4590 | icon="alertmodal.tga" |
4590 | name="HelpStarBrightness" | 4591 | name="HelpStarBrightness" |
4591 | type="alertmodal"> | 4592 | type="alertmodal"> |
4592 | Adjusts the brightness of the stars in the sky. | 4593 | Adjusts the brightness of the stars in the sky. |
4593 | </notification> | 4594 | </notification> |
4594 | 4595 | ||
4595 | <notification | 4596 | <notification |
4596 | icon="alertmodal.tga" | 4597 | icon="alertmodal.tga" |
4597 | name="HelpTimeOfDay" | 4598 | name="HelpTimeOfDay" |
4598 | type="alertmodal"> | 4599 | type="alertmodal"> |
4599 | Controls the location of the sun in the sky. | 4600 | Controls the location of the sun in the sky. |
4600 | Similar to elevation. | 4601 | Similar to elevation. |
4601 | </notification> | 4602 | </notification> |
4602 | 4603 | ||
4603 | <notification | 4604 | <notification |
4604 | icon="alertmodal.tga" | 4605 | icon="alertmodal.tga" |
4605 | name="HelpEastAngle" | 4606 | name="HelpEastAngle" |
4606 | type="alertmodal"> | 4607 | type="alertmodal"> |
4607 | Controls the location of the sun in the sky. | 4608 | Controls the location of the sun in the sky. |
4608 | Similar to azimuth. | 4609 | Similar to azimuth. |
4609 | </notification> | 4610 | </notification> |
4610 | 4611 | ||
4611 | <notification | 4612 | <notification |
4612 | icon="alertmodal.tga" | 4613 | icon="alertmodal.tga" |
4613 | name="HelpCloudColor" | 4614 | name="HelpCloudColor" |
4614 | type="alertmodal"> | 4615 | type="alertmodal"> |
4615 | Edits the color of the clouds. It is generally recommended to keep it whitish, but hey, have fun if you want. | 4616 | Edits the color of the clouds. It is generally recommended to keep it whitish, but hey, have fun if you want. |
4616 | </notification> | 4617 | </notification> |
4617 | 4618 | ||
4618 | <notification | 4619 | <notification |
4619 | icon="alertmodal.tga" | 4620 | icon="alertmodal.tga" |
4620 | name="HelpCloudDetail" | 4621 | name="HelpCloudDetail" |
4621 | type="alertmodal"> | 4622 | type="alertmodal"> |
4622 | Controls the detail image layered on top of the main cloud image. X and Y control its position. D (Density) controls how puffy or fractured the clouds appear. | 4623 | Controls the detail image layered on top of the main cloud image. X and Y control its position. D (Density) controls how puffy or fractured the clouds appear. |
4623 | </notification> | 4624 | </notification> |
4624 | 4625 | ||
4625 | <notification | 4626 | <notification |
4626 | icon="alertmodal.tga" | 4627 | icon="alertmodal.tga" |
4627 | name="HelpCloudDensity" | 4628 | name="HelpCloudDensity" |
4628 | type="alertmodal"> | 4629 | type="alertmodal"> |
4629 | Allows you to control the position of the clouds with the X and Y sliders and how dense they are with the the D slider. | 4630 | Allows you to control the position of the clouds with the X and Y sliders and how dense they are with the the D slider. |
4630 | </notification> | 4631 | </notification> |
4631 | 4632 | ||
4632 | <notification | 4633 | <notification |
4633 | icon="alertmodal.tga" | 4634 | icon="alertmodal.tga" |
4634 | name="HelpCloudCoverage" | 4635 | name="HelpCloudCoverage" |
4635 | type="alertmodal"> | 4636 | type="alertmodal"> |
4636 | Controls how much the clouds cover the sky. | 4637 | Controls how much the clouds cover the sky. |
4637 | </notification> | 4638 | </notification> |
4638 | 4639 | ||
4639 | <notification | 4640 | <notification |
4640 | icon="alertmodal.tga" | 4641 | icon="alertmodal.tga" |
4641 | name="HelpCloudScale" | 4642 | name="HelpCloudScale" |
4642 | type="alertmodal"> | 4643 | type="alertmodal"> |
4643 | Controls the scaling of the cloud image on the sky dome. | 4644 | Controls the scaling of the cloud image on the sky dome. |
4644 | </notification> | 4645 | </notification> |
4645 | 4646 | ||
4646 | <notification | 4647 | <notification |
4647 | icon="alertmodal.tga" | 4648 | icon="alertmodal.tga" |
4648 | name="HelpCloudScrollX" | 4649 | name="HelpCloudScrollX" |
4649 | type="alertmodal"> | 4650 | type="alertmodal"> |
4650 | Controls the speed of the clouds as they move in the X direction. | 4651 | Controls the speed of the clouds as they move in the X direction. |
4651 | </notification> | 4652 | </notification> |
4652 | 4653 | ||
4653 | <notification | 4654 | <notification |
4654 | icon="alertmodal.tga" | 4655 | icon="alertmodal.tga" |
4655 | name="HelpCloudScrollY" | 4656 | name="HelpCloudScrollY" |
4656 | type="alertmodal"> | 4657 | type="alertmodal"> |
4657 | Controls the speed of the clouds as they move in the Y direction. | 4658 | Controls the speed of the clouds as they move in the Y direction. |
4658 | </notification> | 4659 | </notification> |
4659 | 4660 | ||
4660 | <notification | 4661 | <notification |
4661 | icon="alertmodal.tga" | 4662 | icon="alertmodal.tga" |
4662 | name="HelpClassicClouds" | 4663 | name="HelpClassicClouds" |
4663 | type="alertmodal"> | 4664 | type="alertmodal"> |
4664 | Check this box to enable rendering of Second Life's older classic clouds in addition to WindLight's clouds. | 4665 | Check this box to enable rendering of Second Life's older classic clouds in addition to WindLight's clouds. |
4665 | </notification> | 4666 | </notification> |
4666 | 4667 | ||
4667 | <notification | 4668 | <notification |
4668 | icon="alertmodal.tga" | 4669 | icon="alertmodal.tga" |
4669 | name="HelpWaterFogColor" | 4670 | name="HelpWaterFogColor" |
4670 | type="alertmodal"> | 4671 | type="alertmodal"> |
4671 | Chooses the color of the underwater fog. | 4672 | Chooses the color of the underwater fog. |
4672 | </notification> | 4673 | </notification> |
4673 | 4674 | ||
4674 | <notification | 4675 | <notification |
4675 | icon="alertmodal.tga" | 4676 | icon="alertmodal.tga" |
4676 | name="HelpWaterFogDensity" | 4677 | name="HelpWaterFogDensity" |
4677 | type="alertmodal"> | 4678 | type="alertmodal"> |
4678 | Controls how dense the water fog is and how far you can see underwater. | 4679 | Controls how dense the water fog is and how far you can see underwater. |
4679 | </notification> | 4680 | </notification> |
4680 | 4681 | ||
4681 | <notification | 4682 | <notification |
4682 | icon="alertmodal.tga" | 4683 | icon="alertmodal.tga" |
4683 | name="HelpUnderWaterFogMod" | 4684 | name="HelpUnderWaterFogMod" |
4684 | type="alertmodal"> | 4685 | type="alertmodal"> |
4685 | Modifies the effect of the Fog Density Exponent to control how far you can see when your avatar is underwater. | 4686 | Modifies the effect of the Fog Density Exponent to control how far you can see when your avatar is underwater. |
4686 | </notification> | 4687 | </notification> |
4687 | 4688 | ||
4688 | <notification | 4689 | <notification |
4689 | icon="alertmodal.tga" | 4690 | icon="alertmodal.tga" |
4690 | name="HelpWaterGlow" | 4691 | name="HelpWaterGlow" |
4691 | type="alertmodal"> | 4692 | type="alertmodal"> |
4692 | Controls how much the surface of the water glows. | 4693 | Controls how much the surface of the water glows. |
4693 | </notification> | 4694 | </notification> |
4694 | 4695 | ||
4695 | <notification | 4696 | <notification |
4696 | icon="alertmodal.tga" | 4697 | icon="alertmodal.tga" |
4697 | name="HelpWaterNormalScale" | 4698 | name="HelpWaterNormalScale" |
4698 | type="alertmodal"> | 4699 | type="alertmodal"> |
4699 | Controls the scaling of the three wavelets that make up the water. | 4700 | Controls the scaling of the three wavelets that make up the water. |
4700 | </notification> | 4701 | </notification> |
4701 | 4702 | ||
4702 | <notification | 4703 | <notification |
4703 | icon="alertmodal.tga" | 4704 | icon="alertmodal.tga" |
4704 | name="HelpWaterFresnelScale" | 4705 | name="HelpWaterFresnelScale" |
4705 | type="alertmodal"> | 4706 | type="alertmodal"> |
4706 | Controls how much light is reflected at different angles. | 4707 | Controls how much light is reflected at different angles. |
4707 | </notification> | 4708 | </notification> |
4708 | 4709 | ||
4709 | <notification | 4710 | <notification |
4710 | icon="alertmodal.tga" | 4711 | icon="alertmodal.tga" |
4711 | name="HelpWaterFresnelOffset" | 4712 | name="HelpWaterFresnelOffset" |
4712 | type="alertmodal"> | 4713 | type="alertmodal"> |
4713 | Controls how much light intensity is reflected. | 4714 | Controls how much light intensity is reflected. |
4714 | </notification> | 4715 | </notification> |
4715 | 4716 | ||
4716 | <notification | 4717 | <notification |
4717 | icon="alertmodal.tga" | 4718 | icon="alertmodal.tga" |
4718 | name="HelpWaterScaleAbove" | 4719 | name="HelpWaterScaleAbove" |
4719 | type="alertmodal"> | 4720 | type="alertmodal"> |
4720 | Controls how much light is refracted from looking above the surface of the water. | 4721 | Controls how much light is refracted from looking above the surface of the water. |
4721 | </notification> | 4722 | </notification> |
4722 | 4723 | ||
4723 | <notification | 4724 | <notification |
4724 | icon="alertmodal.tga" | 4725 | icon="alertmodal.tga" |
4725 | name="HelpWaterScaleBelow" | 4726 | name="HelpWaterScaleBelow" |
4726 | type="alertmodal"> | 4727 | type="alertmodal"> |
4727 | Controls how much light is refracted from looking from below the surface of the water. | 4728 | Controls how much light is refracted from looking from below the surface of the water. |
4728 | </notification> | 4729 | </notification> |
4729 | 4730 | ||
4730 | <notification | 4731 | <notification |
4731 | icon="alertmodal.tga" | 4732 | icon="alertmodal.tga" |
4732 | name="HelpWaterBlurMultiplier" | 4733 | name="HelpWaterBlurMultiplier" |
4733 | type="alertmodal"> | 4734 | type="alertmodal"> |
4734 | Controls how waves and reflections are mixed. | 4735 | Controls how waves and reflections are mixed. |
4735 | </notification> | 4736 | </notification> |
4736 | 4737 | ||
4737 | <notification | 4738 | <notification |
4738 | icon="alertmodal.tga" | 4739 | icon="alertmodal.tga" |
4739 | name="HelpWaterNormalMap" | 4740 | name="HelpWaterNormalMap" |
4740 | type="alertmodal"> | 4741 | type="alertmodal"> |
4741 | Controls what normal map is layered across the water to determine reflections/refractions. | 4742 | Controls what normal map is layered across the water to determine reflections/refractions. |
4742 | </notification> | 4743 | </notification> |
4743 | 4744 | ||
4744 | <notification | 4745 | <notification |
4745 | icon="alertmodal.tga" | 4746 | icon="alertmodal.tga" |
4746 | name="HelpWaterWave1" | 4747 | name="HelpWaterWave1" |
4747 | type="alertmodal"> | 4748 | type="alertmodal"> |
4748 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | 4749 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. |
4749 | </notification> | 4750 | </notification> |
4750 | 4751 | ||
4751 | <notification | 4752 | <notification |
4752 | icon="alertmodal.tga" | 4753 | icon="alertmodal.tga" |
4753 | name="HelpWaterWave2" | 4754 | name="HelpWaterWave2" |
4754 | type="alertmodal"> | 4755 | type="alertmodal"> |
4755 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | 4756 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. |
4756 | </notification> | 4757 | </notification> |
4757 | 4758 | ||
4758 | <notification | 4759 | <notification |
4759 | icon="alert.tga" | 4760 | icon="alert.tga" |
4760 | name="NewSkyPreset" | 4761 | name="NewSkyPreset" |
4761 | type="alert"> | 4762 | type="alert"> |
4762 | Give me a name for the new sky. | 4763 | Give me a name for the new sky. |
4763 | <form name="form"> | 4764 | <form name="form"> |
4764 | <input name="message" type="text"> | 4765 | <input name="message" type="text"> |
4765 | New Preset | 4766 | New Preset |
4766 | </input> | 4767 | </input> |
4767 | <button | 4768 | <button |
4768 | default="true" | 4769 | default="true" |
@@ -4780,17 +4781,17 @@ New Preset | |||
4780 | icon="alertmodal.tga" | 4781 | icon="alertmodal.tga" |
4781 | name="ExistsSkyPresetAlert" | 4782 | name="ExistsSkyPresetAlert" |
4782 | type="alertmodal"> | 4783 | type="alertmodal"> |
4783 | Preset already exists! | 4784 | Preset already exists! |
4784 | </notification> | 4785 | </notification> |
4785 | 4786 | ||
4786 | <notification | 4787 | <notification |
4787 | icon="alert.tga" | 4788 | icon="alert.tga" |
4788 | name="NewWaterPreset" | 4789 | name="NewWaterPreset" |
4789 | type="alert"> | 4790 | type="alert"> |
4790 | Give me a name for the new water preset. | 4791 | Give me a name for the new water preset. |
4791 | <form name="form"> | 4792 | <form name="form"> |
4792 | <input name="message" type="text"> | 4793 | <input name="message" type="text"> |
4793 | New Preset | 4794 | New Preset |
4794 | </input> | 4795 | </input> |
4795 | <button | 4796 | <button |
4796 | default="true" | 4797 | default="true" |
@@ -4808,22 +4809,22 @@ New Preset | |||
4808 | icon="alertmodal.tga" | 4809 | icon="alertmodal.tga" |
4809 | name="ExistsWaterPresetAlert" | 4810 | name="ExistsWaterPresetAlert" |
4810 | type="alertmodal"> | 4811 | type="alertmodal"> |
4811 | Preset already exists! | 4812 | Preset already exists! |
4812 | </notification> | 4813 | </notification> |
4813 | 4814 | ||
4814 | <notification | 4815 | <notification |
4815 | icon="alertmodal.tga" | 4816 | icon="alertmodal.tga" |
4816 | name="WaterNoEditDefault" | 4817 | name="WaterNoEditDefault" |
4817 | type="alertmodal"> | 4818 | type="alertmodal"> |
4818 | You cannot edit or delete a default preset. | 4819 | You cannot edit or delete a default preset. |
4819 | </notification> | 4820 | </notification> |
4820 | 4821 | ||
4821 | <notification | 4822 | <notification |
4822 | icon="alertmodal.tga" | 4823 | icon="alertmodal.tga" |
4823 | name="ChatterBoxSessionStartError" | 4824 | name="ChatterBoxSessionStartError" |
4824 | type="alertmodal"> | 4825 | type="alertmodal"> |
4825 | Unable to start a new chat session with [RECIPIENT]. | 4826 | Unable to start a new chat session with [RECIPIENT]. |
4826 | [REASON] | 4827 | [REASON] |
4827 | <usetemplate | 4828 | <usetemplate |
4828 | name="okbutton" | 4829 | name="okbutton" |
4829 | yestext="OK"/> | 4830 | yestext="OK"/> |
@@ -4833,8 +4834,8 @@ Unable to start a new chat session with [RECIPIENT]. | |||
4833 | icon="alertmodal.tga" | 4834 | icon="alertmodal.tga" |
4834 | name="ChatterBoxSessionEventError" | 4835 | name="ChatterBoxSessionEventError" |
4835 | type="alertmodal"> | 4836 | type="alertmodal"> |
4836 | [EVENT] | 4837 | [EVENT] |
4837 | [REASON] | 4838 | [REASON] |
4838 | <usetemplate | 4839 | <usetemplate |
4839 | name="okbutton" | 4840 | name="okbutton" |
4840 | yestext="OK"/> | 4841 | yestext="OK"/> |
@@ -4844,8 +4845,8 @@ Unable to start a new chat session with [RECIPIENT]. | |||
4844 | icon="alertmodal.tga" | 4845 | icon="alertmodal.tga" |
4845 | name="ForceCloseChatterBoxSession" | 4846 | name="ForceCloseChatterBoxSession" |
4846 | type="alertmodal"> | 4847 | type="alertmodal"> |
4847 | Your chat session with [NAME] must close. | 4848 | Your chat session with [NAME] must close. |
4848 | [REASON] | 4849 | [REASON] |
4849 | <usetemplate | 4850 | <usetemplate |
4850 | name="okbutton" | 4851 | name="okbutton" |
4851 | yestext="OK"/> | 4852 | yestext="OK"/> |
@@ -4855,7 +4856,7 @@ Your chat session with [NAME] must close. | |||
4855 | icon="alertmodal.tga" | 4856 | icon="alertmodal.tga" |
4856 | name="Cannot_Purchase_an_Attachment" | 4857 | name="Cannot_Purchase_an_Attachment" |
4857 | type="alertmodal"> | 4858 | type="alertmodal"> |
4858 | Items may not be purchased while they are part of an attachment. | 4859 | Items may not be purchased while they are part of an attachment. |
4859 | </notification> | 4860 | </notification> |
4860 | 4861 | ||
4861 | <notification | 4862 | <notification |
@@ -4863,7 +4864,7 @@ Items may not be purchased while they are part of an attachment. | |||
4863 | label="About Requests for the Debit Permission" | 4864 | label="About Requests for the Debit Permission" |
4864 | name="DebitPermissionDetails" | 4865 | name="DebitPermissionDetails" |
4865 | type="alertmodal"> | 4866 | type="alertmodal"> |
4866 | Granting this request gives a script ongoing permission to take Linden dollars (L$) from your account. To revoke this permission, the object owner must delete the object or reset the scripts in the object. | 4867 | Granting this request gives a script ongoing permission to take Linden dollars (L$) from your account. To revoke this permission, the object owner must delete the object or reset the scripts in the object. |
4867 | <usetemplate | 4868 | <usetemplate |
4868 | name="okbutton" | 4869 | name="okbutton" |
4869 | yestext="OK"/> | 4870 | yestext="OK"/> |
@@ -4873,7 +4874,7 @@ Granting this request gives a script ongoing permission to take Linden dollars ( | |||
4873 | icon="alertmodal.tga" | 4874 | icon="alertmodal.tga" |
4874 | name="AutoWearNewClothing" | 4875 | name="AutoWearNewClothing" |
4875 | type="alertmodal"> | 4876 | type="alertmodal"> |
4876 | Would you like to automatically wear the clothing item you create? | 4877 | Would you like to automatically wear the clothing item you create? |
4877 | <usetemplate | 4878 | <usetemplate |
4878 | ignoretext="Automatically wear new clothing" | 4879 | ignoretext="Automatically wear new clothing" |
4879 | name="okcancelignore" | 4880 | name="okcancelignore" |
@@ -4885,13 +4886,13 @@ Would you like to automatically wear the clothing item you create? | |||
4885 | icon="alertmodal.tga" | 4886 | icon="alertmodal.tga" |
4886 | name="NotAgeVerified" | 4887 | name="NotAgeVerified" |
4887 | type="alertmodal"> | 4888 | type="alertmodal"> |
4888 | You need to be age-verified in order to access this parcel. | 4889 | You need to be age-verified in order to access this parcel. |
4889 | Would you like to visit the Second Life website to verify your age? | 4890 | Would you like to visit the Second Life website to verify your age? |
4890 | 4891 | ||
4891 | [_URL] | 4892 | [_URL] |
4892 | <url option="0" name="url"> | 4893 | <url option="0" name="url"> |
4893 | 4894 | ||
4894 | https://secondlife.com/account/verification.php | 4895 | https://secondlife.com/account/verification.php |
4895 | </url> | 4896 | </url> |
4896 | <usetemplate | 4897 | <usetemplate |
4897 | ignoretext="Warn about lack of age verification" | 4898 | ignoretext="Warn about lack of age verification" |
@@ -4904,13 +4905,13 @@ Would you like to visit the Second Life website to verify your age? | |||
4904 | icon="alertmodal.tga" | 4905 | icon="alertmodal.tga" |
4905 | name="Cannot enter parcel: no payment info on file" | 4906 | name="Cannot enter parcel: no payment info on file" |
4906 | type="alertmodal"> | 4907 | type="alertmodal"> |
4907 | This parcel requires that you have payment information on file before you can access it. | 4908 | This parcel requires that you have payment information on file before you can access it. |
4908 | Would you like to visit the Second Life website to set this up? | 4909 | Would you like to visit the Second Life website to set this up? |
4909 | 4910 | ||
4910 | [_URL] | 4911 | [_URL] |
4911 | <url option="0" name="url"> | 4912 | <url option="0" name="url"> |
4912 | 4913 | ||
4913 | https://secondlife.com/account/ | 4914 | https://secondlife.com/account/ |
4914 | </url> | 4915 | </url> |
4915 | <usetemplate | 4916 | <usetemplate |
4916 | ignoretext="Warn about lack of payment info" | 4917 | ignoretext="Warn about lack of payment info" |
@@ -4923,354 +4924,354 @@ Would you like to visit the Second Life website to set this up? | |||
4923 | icon="alertmodal.tga" | 4924 | icon="alertmodal.tga" |
4924 | name="MissingString" | 4925 | name="MissingString" |
4925 | type="alertmodal"> | 4926 | type="alertmodal"> |
4926 | The string [STRING_NAME] is missing from strings.xml | 4927 | The string [STRING_NAME] is missing from strings.xml |
4927 | </notification> | 4928 | </notification> |
4928 | 4929 | ||
4929 | <notification | 4930 | <notification |
4930 | icon="notifytip.tga" | 4931 | icon="notifytip.tga" |
4931 | name="SystemMessageTip" | 4932 | name="SystemMessageTip" |
4932 | type="notifytip"> | 4933 | type="notifytip"> |
4933 | [MESSAGE] | 4934 | [MESSAGE] |
4934 | </notification> | 4935 | </notification> |
4935 | 4936 | ||
4936 | <notification | 4937 | <notification |
4937 | icon="notifytip.tga" | 4938 | icon="notifytip.tga" |
4938 | name="Cancelled" | 4939 | name="Cancelled" |
4939 | type="notifytip"> | 4940 | type="notifytip"> |
4940 | Cancelled | 4941 | Cancelled |
4941 | </notification> | 4942 | </notification> |
4942 | 4943 | ||
4943 | <notification | 4944 | <notification |
4944 | icon="notifytip.tga" | 4945 | icon="notifytip.tga" |
4945 | name="CancelledSit" | 4946 | name="CancelledSit" |
4946 | type="notifytip"> | 4947 | type="notifytip"> |
4947 | Cancelled Sit | 4948 | Cancelled Sit |
4948 | </notification> | 4949 | </notification> |
4949 | 4950 | ||
4950 | <notification | 4951 | <notification |
4951 | icon="notifytip.tga" | 4952 | icon="notifytip.tga" |
4952 | name="CancelledAttach" | 4953 | name="CancelledAttach" |
4953 | type="notifytip"> | 4954 | type="notifytip"> |
4954 | Cancelled Attach | 4955 | Cancelled Attach |
4955 | </notification> | 4956 | </notification> |
4956 | 4957 | ||
4957 | <notification | 4958 | <notification |
4958 | icon="notifytip.tga" | 4959 | icon="notifytip.tga" |
4959 | name="ReplacedMissingWearable" | 4960 | name="ReplacedMissingWearable" |
4960 | type="notifytip"> | 4961 | type="notifytip"> |
4961 | Replaced missing clothing/body part with default. | 4962 | Replaced missing clothing/body part with default. |
4962 | </notification> | 4963 | </notification> |
4963 | 4964 | ||
4964 | <notification | 4965 | <notification |
4965 | icon="groupnotify" | 4966 | icon="groupnotify" |
4966 | name="GroupNotice" | 4967 | name="GroupNotice" |
4967 | type="groupnotify"> | 4968 | type="groupnotify"> |
4968 | Topic: [SUBJECT], Message: [MESSAGE] | 4969 | Topic: [SUBJECT], Message: [MESSAGE] |
4969 | </notification> | 4970 | </notification> |
4970 | 4971 | ||
4971 | <notification | 4972 | <notification |
4972 | icon="notifytip.tga" | 4973 | icon="notifytip.tga" |
4973 | name="FriendOnline" | 4974 | name="FriendOnline" |
4974 | type="notifytip"> | 4975 | type="notifytip"> |
4975 | [FIRST] [LAST] is Online | 4976 | [FIRST] [LAST] is Online |
4976 | </notification> | 4977 | </notification> |
4977 | 4978 | ||
4978 | <notification | 4979 | <notification |
4979 | icon="notifytip.tga" | 4980 | icon="notifytip.tga" |
4980 | name="FriendOffline" | 4981 | name="FriendOffline" |
4981 | type="notifytip"> | 4982 | type="notifytip"> |
4982 | [FIRST] [LAST] is Offline | 4983 | [FIRST] [LAST] is Offline |
4983 | </notification> | 4984 | </notification> |
4984 | 4985 | ||
4985 | <notification | 4986 | <notification |
4986 | icon="notifytip.tga" | 4987 | icon="notifytip.tga" |
4987 | name="AddSelfFriend" | 4988 | name="AddSelfFriend" |
4988 | type="notifytip"> | 4989 | type="notifytip"> |
4989 | You cannot add yourself as a friend. | 4990 | You cannot add yourself as a friend. |
4990 | </notification> | 4991 | </notification> |
4991 | 4992 | ||
4992 | <notification | 4993 | <notification |
4993 | icon="notifytip.tga" | 4994 | icon="notifytip.tga" |
4994 | name="UploadingAuctionSnapshot" | 4995 | name="UploadingAuctionSnapshot" |
4995 | type="notifytip"> | 4996 | type="notifytip"> |
4996 | Uploading in-world and web site snapshots... | 4997 | Uploading in-world and web site snapshots... |
4997 | (Takes about 5 minutes.) | 4998 | (Takes about 5 minutes.) |
4998 | </notification> | 4999 | </notification> |
4999 | 5000 | ||
5000 | <notification | 5001 | <notification |
5001 | icon="notify.tga" | 5002 | icon="notify.tga" |
5002 | name="UploadPayment" | 5003 | name="UploadPayment" |
5003 | type="notify"> | 5004 | type="notify"> |
5004 | You paid L$[AMOUNT] to upload. | 5005 | You paid L$[AMOUNT] to upload. |
5005 | </notification> | 5006 | </notification> |
5006 | 5007 | ||
5007 | <notification | 5008 | <notification |
5008 | icon="notifytip.tga" | 5009 | icon="notifytip.tga" |
5009 | name="UploadWebSnapshotDone" | 5010 | name="UploadWebSnapshotDone" |
5010 | type="notifytip"> | 5011 | type="notifytip"> |
5011 | Web site snapshot upload done. | 5012 | Web site snapshot upload done. |
5012 | </notification> | 5013 | </notification> |
5013 | 5014 | ||
5014 | <notification | 5015 | <notification |
5015 | icon="notifytip.tga" | 5016 | icon="notifytip.tga" |
5016 | name="UploadSnapshotDone" | 5017 | name="UploadSnapshotDone" |
5017 | type="notifytip"> | 5018 | type="notifytip"> |
5018 | In-world snapshot upload done | 5019 | In-world snapshot upload done |
5019 | </notification> | 5020 | </notification> |
5020 | 5021 | ||
5021 | <notification | 5022 | <notification |
5022 | icon="notifytip.tga" | 5023 | icon="notifytip.tga" |
5023 | name="TerrainDownloaded" | 5024 | name="TerrainDownloaded" |
5024 | type="notifytip"> | 5025 | type="notifytip"> |
5025 | Terrain.raw downloaded | 5026 | Terrain.raw downloaded |
5026 | </notification> | 5027 | </notification> |
5027 | 5028 | ||
5028 | <notification | 5029 | <notification |
5029 | icon="notifytip.tga" | 5030 | icon="notifytip.tga" |
5030 | name="GestureMissing" | 5031 | name="GestureMissing" |
5031 | type="notifytip"> | 5032 | type="notifytip"> |
5032 | Gesture [NAME] is missing from database. | 5033 | Gesture [NAME] is missing from database. |
5033 | </notification> | 5034 | </notification> |
5034 | 5035 | ||
5035 | <notification | 5036 | <notification |
5036 | icon="notifytip.tga" | 5037 | icon="notifytip.tga" |
5037 | name="UnableToLoadGesture" | 5038 | name="UnableToLoadGesture" |
5038 | type="notifytip"> | 5039 | type="notifytip"> |
5039 | Unable to load gesture [NAME]. | 5040 | Unable to load gesture [NAME]. |
5040 | Please try again. | 5041 | Please try again. |
5041 | </notification> | 5042 | </notification> |
5042 | 5043 | ||
5043 | <notification | 5044 | <notification |
5044 | icon="notifytip.tga" | 5045 | icon="notifytip.tga" |
5045 | name="LandmarkMissing" | 5046 | name="LandmarkMissing" |
5046 | type="notifytip"> | 5047 | type="notifytip"> |
5047 | Landmark is missing from database. | 5048 | Landmark is missing from database. |
5048 | </notification> | 5049 | </notification> |
5049 | 5050 | ||
5050 | <notification | 5051 | <notification |
5051 | icon="notifytip.tga" | 5052 | icon="notifytip.tga" |
5052 | name="UnableToLoadLandmark" | 5053 | name="UnableToLoadLandmark" |
5053 | type="notifytip"> | 5054 | type="notifytip"> |
5054 | Unable to load landmark. Please try again. | 5055 | Unable to load landmark. Please try again. |
5055 | </notification> | 5056 | </notification> |
5056 | 5057 | ||
5057 | <notification | 5058 | <notification |
5058 | icon="notifytip.tga" | 5059 | icon="notifytip.tga" |
5059 | name="CapsKeyOn" | 5060 | name="CapsKeyOn" |
5060 | type="notifytip"> | 5061 | type="notifytip"> |
5061 | Your Caps Lock key is on. | 5062 | Your Caps Lock key is on. |
5062 | As this will affect the password you type in, you will probably want to turn it off. | 5063 | As this will affect the password you type in, you will probably want to turn it off. |
5063 | </notification> | 5064 | </notification> |
5064 | 5065 | ||
5065 | <notification | 5066 | <notification |
5066 | icon="notifytip.tga" | 5067 | icon="notifytip.tga" |
5067 | name="NotecardMissing" | 5068 | name="NotecardMissing" |
5068 | type="notifytip"> | 5069 | type="notifytip"> |
5069 | Notecard is missing from database. | 5070 | Notecard is missing from database. |
5070 | </notification> | 5071 | </notification> |
5071 | 5072 | ||
5072 | <notification | 5073 | <notification |
5073 | icon="notifytip.tga" | 5074 | icon="notifytip.tga" |
5074 | name="NotecardNoPermissions" | 5075 | name="NotecardNoPermissions" |
5075 | type="notifytip"> | 5076 | type="notifytip"> |
5076 | Insufficient permissions to view notecard. | 5077 | Insufficient permissions to view notecard. |
5077 | </notification> | 5078 | </notification> |
5078 | 5079 | ||
5079 | <notification | 5080 | <notification |
5080 | icon="notifytip.tga" | 5081 | icon="notifytip.tga" |
5081 | name="RezItemNoPermissions" | 5082 | name="RezItemNoPermissions" |
5082 | type="notifytip"> | 5083 | type="notifytip"> |
5083 | Insufficient permissions to rez object. | 5084 | Insufficient permissions to rez object. |
5084 | </notification> | 5085 | </notification> |
5085 | 5086 | ||
5086 | <notification | 5087 | <notification |
5087 | icon="notifytip.tga" | 5088 | icon="notifytip.tga" |
5088 | name="UnableToLoadNotecard" | 5089 | name="UnableToLoadNotecard" |
5089 | type="notifytip"> | 5090 | type="notifytip"> |
5090 | Unable to load notecard. | 5091 | Unable to load notecard. |
5091 | Please try again. | 5092 | Please try again. |
5092 | </notification> | 5093 | </notification> |
5093 | 5094 | ||
5094 | <notification | 5095 | <notification |
5095 | icon="notifytip.tga" | 5096 | icon="notifytip.tga" |
5096 | name="ScriptMissing" | 5097 | name="ScriptMissing" |
5097 | type="notifytip"> | 5098 | type="notifytip"> |
5098 | Script is missing from database. | 5099 | Script is missing from database. |
5099 | </notification> | 5100 | </notification> |
5100 | 5101 | ||
5101 | <notification | 5102 | <notification |
5102 | icon="notifytip.tga" | 5103 | icon="notifytip.tga" |
5103 | name="ScriptNoPermissions" | 5104 | name="ScriptNoPermissions" |
5104 | type="notifytip"> | 5105 | type="notifytip"> |
5105 | Insufficient permissions to view script. | 5106 | Insufficient permissions to view script. |
5106 | </notification> | 5107 | </notification> |
5107 | 5108 | ||
5108 | <notification | 5109 | <notification |
5109 | icon="notifytip.tga" | 5110 | icon="notifytip.tga" |
5110 | name="UnableToLoadScript" | 5111 | name="UnableToLoadScript" |
5111 | type="notifytip"> | 5112 | type="notifytip"> |
5112 | Unable to load script. Please try again. | 5113 | Unable to load script. Please try again. |
5113 | </notification> | 5114 | </notification> |
5114 | 5115 | ||
5115 | <notification | 5116 | <notification |
5116 | icon="notifytip.tga" | 5117 | icon="notifytip.tga" |
5117 | name="IncompleteInventory" | 5118 | name="IncompleteInventory" |
5118 | type="notifytip"> | 5119 | type="notifytip"> |
5119 | The complete contents you are offering are not yet locally available. Please try offering those items again in a minute. | 5120 | The complete contents you are offering are not yet locally available. Please try offering those items again in a minute. |
5120 | </notification> | 5121 | </notification> |
5121 | 5122 | ||
5122 | <notification | 5123 | <notification |
5123 | icon="notifytip.tga" | 5124 | icon="notifytip.tga" |
5124 | name="CannotModifyProtectedCategories" | 5125 | name="CannotModifyProtectedCategories" |
5125 | type="notifytip"> | 5126 | type="notifytip"> |
5126 | You cannot modify protected categories. | 5127 | You cannot modify protected categories. |
5127 | </notification> | 5128 | </notification> |
5128 | 5129 | ||
5129 | <notification | 5130 | <notification |
5130 | icon="notifytip.tga" | 5131 | icon="notifytip.tga" |
5131 | name="CannotRemoveProtectedCategories" | 5132 | name="CannotRemoveProtectedCategories" |
5132 | type="notifytip"> | 5133 | type="notifytip"> |
5133 | You cannot remove protected categories. | 5134 | You cannot remove protected categories. |
5134 | </notification> | 5135 | </notification> |
5135 | 5136 | ||
5136 | <notification | 5137 | <notification |
5137 | icon="notifytip.tga" | 5138 | icon="notifytip.tga" |
5138 | name="OfferedCard" | 5139 | name="OfferedCard" |
5139 | type="notifytip"> | 5140 | type="notifytip"> |
5140 | You have offered a calling card to [FIRST] [LAST] | 5141 | You have offered a calling card to [FIRST] [LAST] |
5141 | </notification> | 5142 | </notification> |
5142 | 5143 | ||
5143 | <notification | 5144 | <notification |
5144 | icon="notifytip.tga" | 5145 | icon="notifytip.tga" |
5145 | name="UnableToBuyWhileDownloading" | 5146 | name="UnableToBuyWhileDownloading" |
5146 | type="notifytip"> | 5147 | type="notifytip"> |
5147 | Unable to buy while downloading object data. | 5148 | Unable to buy while downloading object data. |
5148 | Please try again. | 5149 | Please try again. |
5149 | </notification> | 5150 | </notification> |
5150 | 5151 | ||
5151 | <notification | 5152 | <notification |
5152 | icon="notifytip.tga" | 5153 | icon="notifytip.tga" |
5153 | name="UnableToLinkWhileDownloading" | 5154 | name="UnableToLinkWhileDownloading" |
5154 | type="notifytip"> | 5155 | type="notifytip"> |
5155 | Unable to link while downloading object data. | 5156 | Unable to link while downloading object data. |
5156 | Please try again. | 5157 | Please try again. |
5157 | </notification> | 5158 | </notification> |
5158 | 5159 | ||
5159 | <notification | 5160 | <notification |
5160 | icon="notifytip.tga" | 5161 | icon="notifytip.tga" |
5161 | name="CannotBuyObjectsFromDifferentOwners" | 5162 | name="CannotBuyObjectsFromDifferentOwners" |
5162 | type="notifytip"> | 5163 | type="notifytip"> |
5163 | Cannot buy objects from different owners at the same time. | 5164 | Cannot buy objects from different owners at the same time. |
5164 | Please select a single object. | 5165 | Please select a single object. |
5165 | </notification> | 5166 | </notification> |
5166 | 5167 | ||
5167 | <notification | 5168 | <notification |
5168 | icon="notifytip.tga" | 5169 | icon="notifytip.tga" |
5169 | name="ObjectNotForSale" | 5170 | name="ObjectNotForSale" |
5170 | type="notifytip"> | 5171 | type="notifytip"> |
5171 | Object does not appear to be for sale. | 5172 | Object does not appear to be for sale. |
5172 | </notification> | 5173 | </notification> |
5173 | 5174 | ||
5174 | <notification | 5175 | <notification |
5175 | icon="notifytip.tga" | 5176 | icon="notifytip.tga" |
5176 | name="EnteringGodMode" | 5177 | name="EnteringGodMode" |
5177 | type="notifytip"> | 5178 | type="notifytip"> |
5178 | Entering god mode, level [LEVEL] | 5179 | Entering god mode, level [LEVEL] |
5179 | </notification> | 5180 | </notification> |
5180 | 5181 | ||
5181 | <notification | 5182 | <notification |
5182 | icon="notifytip.tga" | 5183 | icon="notifytip.tga" |
5183 | name="LeavingGodMode" | 5184 | name="LeavingGodMode" |
5184 | type="notifytip"> | 5185 | type="notifytip"> |
5185 | Leaving god mode, level [LEVEL] | 5186 | Leaving god mode, level [LEVEL] |
5186 | </notification> | 5187 | </notification> |
5187 | 5188 | ||
5188 | <notification | 5189 | <notification |
5189 | icon="notifytip.tga" | 5190 | icon="notifytip.tga" |
5190 | name="CopyFailed" | 5191 | name="CopyFailed" |
5191 | type="notifytip"> | 5192 | type="notifytip"> |
5192 | Copy failed because you lack copy permission | 5193 | Copy failed because you lack copy permission |
5193 | </notification> | 5194 | </notification> |
5194 | 5195 | ||
5195 | <notification | 5196 | <notification |
5196 | icon="notifytip.tga" | 5197 | icon="notifytip.tga" |
5197 | name="InventoryAccepted" | 5198 | name="InventoryAccepted" |
5198 | type="notifytip"> | 5199 | type="notifytip"> |
5199 | [NAME] accepted your inventory offer. | 5200 | [NAME] accepted your inventory offer. |
5200 | </notification> | 5201 | </notification> |
5201 | 5202 | ||
5202 | <notification | 5203 | <notification |
5203 | icon="notifytip.tga" | 5204 | icon="notifytip.tga" |
5204 | name="InventoryDeclined" | 5205 | name="InventoryDeclined" |
5205 | type="notifytip"> | 5206 | type="notifytip"> |
5206 | [NAME] declined your inventory offer. | 5207 | [NAME] declined your inventory offer. |
5207 | </notification> | 5208 | </notification> |
5208 | 5209 | ||
5209 | <notification | 5210 | <notification |
5210 | icon="notifytip.tga" | 5211 | icon="notifytip.tga" |
5211 | name="ObjectMessage" | 5212 | name="ObjectMessage" |
5212 | type="notifytip"> | 5213 | type="notifytip"> |
5213 | [NAME]: [MESSAGE] | 5214 | [NAME]: [MESSAGE] |
5214 | </notification> | 5215 | </notification> |
5215 | 5216 | ||
5216 | <notification | 5217 | <notification |
5217 | icon="notifytip.tga" | 5218 | icon="notifytip.tga" |
5218 | name="CallingCardAccepted" | 5219 | name="CallingCardAccepted" |
5219 | type="notifytip"> | 5220 | type="notifytip"> |
5220 | Your calling card was accepted. | 5221 | Your calling card was accepted. |
5221 | </notification> | 5222 | </notification> |
5222 | 5223 | ||
5223 | <notification | 5224 | <notification |
5224 | icon="notifytip.tga" | 5225 | icon="notifytip.tga" |
5225 | name="CallingCardDeclined" | 5226 | name="CallingCardDeclined" |
5226 | type="notifytip"> | 5227 | type="notifytip"> |
5227 | Your calling card was declined. | 5228 | Your calling card was declined. |
5228 | </notification> | 5229 | </notification> |
5229 | 5230 | ||
5230 | <notification | 5231 | <notification |
5231 | icon="notifytip.tga" | 5232 | icon="notifytip.tga" |
5232 | name="TeleportToLandmark" | 5233 | name="TeleportToLandmark" |
5233 | type="notifytip"> | 5234 | type="notifytip"> |
5234 | Now that you have reached the mainland, you can teleport to locations like '[NAME]' by clicking on the Inventory button on the bottom right of your screen, and then select the Landmarks folder. | 5235 | Now that you have reached the mainland, you can teleport to locations like '[NAME]' by clicking on the Inventory button on the bottom right of your screen, and then select the Landmarks folder. |
5235 | Double click on the landmark and click on Teleport to travel there. | 5236 | Double click on the landmark and click on Teleport to travel there. |
5236 | </notification> | 5237 | </notification> |
5237 | 5238 | ||
5238 | <notification | 5239 | <notification |
5239 | icon="notifytip.tga" | 5240 | icon="notifytip.tga" |
5240 | name="TeleportToPerson" | 5241 | name="TeleportToPerson" |
5241 | type="notifytip"> | 5242 | type="notifytip"> |
5242 | Now that you have reached the mainland, you can contact residents like '[NAME]' by clicking on the Inventory button on the bottom right of your screen, and then select the Calling Cards folder. | 5243 | Now that you have reached the mainland, you can contact residents like '[NAME]' by clicking on the Inventory button on the bottom right of your screen, and then select the Calling Cards folder. |
5243 | Double click on the card, click on Instant Message, and type a message. | 5244 | Double click on the card, click on Instant Message, and type a message. |
5244 | </notification> | 5245 | </notification> |
5245 | 5246 | ||
5246 | <notification | 5247 | <notification |
5247 | icon="notifytip.tga" | 5248 | icon="notifytip.tga" |
5248 | name="CantSelectLandFromMultipleRegions" | 5249 | name="CantSelectLandFromMultipleRegions" |
5249 | type="notifytip"> | 5250 | type="notifytip"> |
5250 | Can't select land across server boundaries. | 5251 | Can't select land across server boundaries. |
5251 | Try selecting a smaller piece of land. | 5252 | Try selecting a smaller piece of land. |
5252 | </notification> | 5253 | </notification> |
5253 | 5254 | ||
5254 | <notification | 5255 | <notification |
5255 | icon="notifytip.tga" | 5256 | icon="notifytip.tga" |
5256 | name="SearchWordBanned" | 5257 | name="SearchWordBanned" |
5257 | type="notifytip"> | 5258 | type="notifytip"> |
5258 | Some terms in your search query were excluded due to content restrictions as clarified in the Community Standards. | 5259 | Some terms in your search query were excluded due to content restrictions as clarified in the Community Standards. |
5259 | </notification> | 5260 | </notification> |
5260 | 5261 | ||
5261 | <notification | 5262 | <notification |
5262 | icon="notifytip.tga" | 5263 | icon="notifytip.tga" |
5263 | name="NoContentToSearch" | 5264 | name="NoContentToSearch" |
5264 | type="notifytip"> | 5265 | type="notifytip"> |
5265 | Please select at least one type of content to search (PG, Mature, or Adult). | 5266 | Please select at least one type of content to search (PG, Mature, or Adult). |
5266 | </notification> | 5267 | </notification> |
5267 | 5268 | ||
5268 | <notification | 5269 | <notification |
5269 | icon="notify.tga" | 5270 | icon="notify.tga" |
5270 | name="GroupVote" | 5271 | name="GroupVote" |
5271 | type="notify"> | 5272 | type="notify"> |
5272 | [NAME] has proposed to vote on: | 5273 | [NAME] has proposed to vote on: |
5273 | [MESSAGE] | 5274 | [MESSAGE] |
5274 | <form name="form"> | 5275 | <form name="form"> |
5275 | <button | 5276 | <button |
5276 | index="0" | 5277 | index="0" |
@@ -5287,17 +5288,17 @@ Please select at least one type of content to search (PG, Mature, or Adult). | |||
5287 | icon="notify.tga" | 5288 | icon="notify.tga" |
5288 | name="SystemMessage" | 5289 | name="SystemMessage" |
5289 | type="notify"> | 5290 | type="notify"> |
5290 | [MESSAGE] | 5291 | [MESSAGE] |
5291 | </notification> | 5292 | </notification> |
5292 | 5293 | ||
5293 | <notification | 5294 | <notification |
5294 | icon="notify.tga" | 5295 | icon="notify.tga" |
5295 | name="EventNotification" | 5296 | name="EventNotification" |
5296 | type="notify"> | 5297 | type="notify"> |
5297 | Event Notification: | 5298 | Event Notification: |
5298 | 5299 | ||
5299 | [NAME] | 5300 | [NAME] |
5300 | [DATE] | 5301 | [DATE] |
5301 | <form name="form"> | 5302 | <form name="form"> |
5302 | <button | 5303 | <button |
5303 | index="0" | 5304 | index="0" |
@@ -5318,9 +5319,9 @@ Event Notification: | |||
5318 | icon="notify.tga" | 5319 | icon="notify.tga" |
5319 | name="TransferObjectsHighlighted" | 5320 | name="TransferObjectsHighlighted" |
5320 | type="notify"> | 5321 | type="notify"> |
5321 | All objects on this parcel that will transfer to the purchaser of this parcel are now highlighted. | 5322 | All objects on this parcel that will transfer to the purchaser of this parcel are now highlighted. |
5322 | 5323 | ||
5323 | * Trees and grasses that will transfer are not highlighted. | 5324 | * Trees and grasses that will transfer are not highlighted. |
5324 | <form name="form"> | 5325 | <form name="form"> |
5325 | <button | 5326 | <button |
5326 | index="0" | 5327 | index="0" |
@@ -5333,61 +5334,61 @@ All objects on this parcel that will transfer to the purchaser of this parcel ar | |||
5333 | icon="notify.tga" | 5334 | icon="notify.tga" |
5334 | name="DeactivatedGesturesTrigger" | 5335 | name="DeactivatedGesturesTrigger" |
5335 | type="notify"> | 5336 | type="notify"> |
5336 | Deactivated gestures with same trigger: | 5337 | Deactivated gestures with same trigger: |
5337 | [NAMES] | 5338 | [NAMES] |
5338 | </notification> | 5339 | </notification> |
5339 | 5340 | ||
5340 | <notification | 5341 | <notification |
5341 | icon="notify.tga" | 5342 | icon="notify.tga" |
5342 | name="NoQuickTime" | 5343 | name="NoQuickTime" |
5343 | type="notify"> | 5344 | type="notify"> |
5344 | Apple's QuickTime software does not appear to be installed on your system. | 5345 | Apple's QuickTime software does not appear to be installed on your system. |
5345 | If you want to view streaming media on parcels that support it you should go to the QuickTime site (http://www.apple.com/quicktime) and install the QuickTime Player. | 5346 | If you want to view streaming media on parcels that support it you should go to the QuickTime site (http://www.apple.com/quicktime) and install the QuickTime Player. |
5346 | </notification> | 5347 | </notification> |
5347 | 5348 | ||
5348 | <notification | 5349 | <notification |
5349 | icon="notify.tga" | 5350 | icon="notify.tga" |
5350 | name="OwnedObjectsReturned" | 5351 | name="OwnedObjectsReturned" |
5351 | type="notify"> | 5352 | type="notify"> |
5352 | The objects you own on the selected parcel of land have been returned back to your inventory. | 5353 | The objects you own on the selected parcel of land have been returned back to your inventory. |
5353 | </notification> | 5354 | </notification> |
5354 | 5355 | ||
5355 | <notification | 5356 | <notification |
5356 | icon="notify.tga" | 5357 | icon="notify.tga" |
5357 | name="OtherObjectsReturned" | 5358 | name="OtherObjectsReturned" |
5358 | type="notify"> | 5359 | type="notify"> |
5359 | The objects on the selected parcel of land that is owned by [FIRST] [LAST] have been returned to his or her inventory. | 5360 | The objects on the selected parcel of land that is owned by [FIRST] [LAST] have been returned to his or her inventory. |
5360 | </notification> | 5361 | </notification> |
5361 | 5362 | ||
5362 | <notification | 5363 | <notification |
5363 | icon="notify.tga" | 5364 | icon="notify.tga" |
5364 | name="OtherObjectsReturned2" | 5365 | name="OtherObjectsReturned2" |
5365 | type="notify"> | 5366 | type="notify"> |
5366 | The objects on the selected parcel of land owned by the resident '[NAME]' have been returned to their owner. | 5367 | The objects on the selected parcel of land owned by the resident '[NAME]' have been returned to their owner. |
5367 | </notification> | 5368 | </notification> |
5368 | 5369 | ||
5369 | <notification | 5370 | <notification |
5370 | icon="notify.tga" | 5371 | icon="notify.tga" |
5371 | name="GroupObjectsReturned" | 5372 | name="GroupObjectsReturned" |
5372 | type="notify"> | 5373 | type="notify"> |
5373 | The objects on the selected parcel of land shared with the group [GROUPNAME] have been returned back to their owner's inventory. | 5374 | The objects on the selected parcel of land shared with the group [GROUPNAME] have been returned back to their owner's inventory. |
5374 | Transferable deeded objects have been returned to their previous owners. | 5375 | Transferable deeded objects have been returned to their previous owners. |
5375 | Non-transferable objects that are deeded to the group have been deleted. | 5376 | Non-transferable objects that are deeded to the group have been deleted. |
5376 | </notification> | 5377 | </notification> |
5377 | 5378 | ||
5378 | <notification | 5379 | <notification |
5379 | icon="notify.tga" | 5380 | icon="notify.tga" |
5380 | name="UnOwnedObjectsReturned" | 5381 | name="UnOwnedObjectsReturned" |
5381 | type="notify"> | 5382 | type="notify"> |
5382 | The objects on the selected parcel that are NOT owned by you have been returned to their owners. | 5383 | The objects on the selected parcel that are NOT owned by you have been returned to their owners. |
5383 | </notification> | 5384 | </notification> |
5384 | 5385 | ||
5385 | <notification | 5386 | <notification |
5386 | icon="notify.tga" | 5387 | icon="notify.tga" |
5387 | name="NotSafe" | 5388 | name="NotSafe" |
5388 | type="notify"> | 5389 | type="notify"> |
5389 | This land has damage enabled ('not safe'). | 5390 | This land has damage enabled ('not safe'). |
5390 | You can be hurt here. If you die, you will be teleported to your home location. | 5391 | You can be hurt here. If you die, you will be teleported to your home location. |
5391 | <unique/> | 5392 | <unique/> |
5392 | </notification> | 5393 | </notification> |
5393 | 5394 | ||
@@ -5395,8 +5396,8 @@ You can be hurt here. If you die, you will be teleported to your home location. | |||
5395 | icon="notify.tga" | 5396 | icon="notify.tga" |
5396 | name="NoFly" | 5397 | name="NoFly" |
5397 | type="notify"> | 5398 | type="notify"> |
5398 | This land has flying disabled ('no fly'). | 5399 | This land has flying disabled ('no fly'). |
5399 | You cannot fly here. | 5400 | You cannot fly here. |
5400 | <unique/> | 5401 | <unique/> |
5401 | </notification> | 5402 | </notification> |
5402 | 5403 | ||
@@ -5404,8 +5405,8 @@ You cannot fly here. | |||
5404 | icon="notify.tga" | 5405 | icon="notify.tga" |
5405 | name="PushRestricted" | 5406 | name="PushRestricted" |
5406 | type="notify"> | 5407 | type="notify"> |
5407 | This land is 'No Pushing'. | 5408 | This land is 'No Pushing'. |
5408 | You cannot push others here unless you own the land. | 5409 | You cannot push others here unless you own the land. |
5409 | <unique/> | 5410 | <unique/> |
5410 | </notification> | 5411 | </notification> |
5411 | 5412 | ||
@@ -5413,7 +5414,7 @@ You cannot push others here unless you own the land. | |||
5413 | icon="notify.tga" | 5414 | icon="notify.tga" |
5414 | name="NoVoice" | 5415 | name="NoVoice" |
5415 | type="notify"> | 5416 | type="notify"> |
5416 | This land has voice disabled. | 5417 | This land has voice disabled. |
5417 | <unique/> | 5418 | <unique/> |
5418 | </notification> | 5419 | </notification> |
5419 | 5420 | ||
@@ -5421,8 +5422,8 @@ This land has voice disabled. | |||
5421 | icon="notify.tga" | 5422 | icon="notify.tga" |
5422 | name="NoBuild" | 5423 | name="NoBuild" |
5423 | type="notify"> | 5424 | type="notify"> |
5424 | This land has building disabled ('no build'). | 5425 | This land has building disabled ('no build'). |
5425 | You cannot create objects here. | 5426 | You cannot create objects here. |
5426 | <unique/> | 5427 | <unique/> |
5427 | </notification> | 5428 | </notification> |
5428 | 5429 | ||
@@ -5430,222 +5431,222 @@ You cannot create objects here. | |||
5430 | icon="notify.tga" | 5431 | icon="notify.tga" |
5431 | name="ScriptsStopped" | 5432 | name="ScriptsStopped" |
5432 | type="notify"> | 5433 | type="notify"> |
5433 | An administrator has temporarily stopped scripts in this region. | 5434 | An administrator has temporarily stopped scripts in this region. |
5434 | </notification> | 5435 | </notification> |
5435 | 5436 | ||
5436 | <notification | 5437 | <notification |
5437 | icon="notify.tga" | 5438 | icon="notify.tga" |
5438 | name="ScriptsNotRunning" | 5439 | name="ScriptsNotRunning" |
5439 | type="notify"> | 5440 | type="notify"> |
5440 | This region is not running any scripts. | 5441 | This region is not running any scripts. |
5441 | </notification> | 5442 | </notification> |
5442 | 5443 | ||
5443 | <notification | 5444 | <notification |
5444 | icon="notify.tga" | 5445 | icon="notify.tga" |
5445 | name="NoOutsideScripts" | 5446 | name="NoOutsideScripts" |
5446 | type="notify"> | 5447 | type="notify"> |
5447 | This land has outside scripts disabled ('no outside scripts'). | 5448 | This land has outside scripts disabled ('no outside scripts'). |
5448 | No scripts will run except those belonging to the land owner. | 5449 | No scripts will run except those belonging to the land owner. |
5449 | </notification> | 5450 | </notification> |
5450 | 5451 | ||
5451 | <notification | 5452 | <notification |
5452 | icon="notify.tga" | 5453 | icon="notify.tga" |
5453 | name="ClaimPublicLand" | 5454 | name="ClaimPublicLand" |
5454 | type="notify"> | 5455 | type="notify"> |
5455 | Can only claim public land in region you're in. | 5456 | Can only claim public land in region you're in. |
5456 | </notification> | 5457 | </notification> |
5457 | 5458 | ||
5458 | <notification | 5459 | <notification |
5459 | icon="notify.tga" | 5460 | icon="notify.tga" |
5460 | name="RegionTPAccessBlocked" | 5461 | name="RegionTPAccessBlocked" |
5461 | type="notify"> | 5462 | type="notify"> |
5462 | You aren't allowed in that Region due to your maturity Rating. You may need to validate your age and/or install the latest Viewer. | 5463 | You aren't allowed in that Region due to your maturity Rating. You may need to validate your age and/or install the latest Viewer. |
5463 | 5464 | ||
5464 | Please go to the Knowledge Base for details on accessing areas with this maturity Rating. | 5465 | Please go to the Knowledge Base for details on accessing areas with this maturity Rating. |
5465 | </notification> | 5466 | </notification> |
5466 | 5467 | ||
5467 | <notification | 5468 | <notification |
5468 | icon="notify.tga" | 5469 | icon="notify.tga" |
5469 | name="URBannedFromRegion" | 5470 | name="URBannedFromRegion" |
5470 | type="notify"> | 5471 | type="notify"> |
5471 | You are banned from the region. | 5472 | You are banned from the region. |
5472 | </notification> | 5473 | </notification> |
5473 | 5474 | ||
5474 | <notification | 5475 | <notification |
5475 | icon="notify.tga" | 5476 | icon="notify.tga" |
5476 | name="NoTeenGridAccess" | 5477 | name="NoTeenGridAccess" |
5477 | type="notify"> | 5478 | type="notify"> |
5478 | Your account cannot connect to this teen grid region. | 5479 | Your account cannot connect to this teen grid region. |
5479 | </notification> | 5480 | </notification> |
5480 | 5481 | ||
5481 | <notification | 5482 | <notification |
5482 | icon="notify.tga" | 5483 | icon="notify.tga" |
5483 | name="NoHelpIslandTP" | 5484 | name="NoHelpIslandTP" |
5484 | type="notify"> | 5485 | type="notify"> |
5485 | You cannot teleport back to Help Island. | 5486 | You cannot teleport back to Help Island. |
5486 | Go to 'Help Island Public' to repeat the tutorial. | 5487 | Go to 'Help Island Public' to repeat the tutorial. |
5487 | </notification> | 5488 | </notification> |
5488 | 5489 | ||
5489 | <notification | 5490 | <notification |
5490 | icon="notify.tga" | 5491 | icon="notify.tga" |
5491 | name="ImproperPaymentStatus" | 5492 | name="ImproperPaymentStatus" |
5492 | type="notify"> | 5493 | type="notify"> |
5493 | You do not have proper payment status to enter this region. | 5494 | You do not have proper payment status to enter this region. |
5494 | </notification> | 5495 | </notification> |
5495 | 5496 | ||
5496 | <notification | 5497 | <notification |
5497 | icon="notify.tga" | 5498 | icon="notify.tga" |
5498 | name="MustGetAgeRegion" | 5499 | name="MustGetAgeRegion" |
5499 | type="notify"> | 5500 | type="notify"> |
5500 | You must be age-verified to enter this region. | 5501 | You must be age-verified to enter this region. |
5501 | </notification> | 5502 | </notification> |
5502 | 5503 | ||
5503 | <notification | 5504 | <notification |
5504 | icon="notify.tga" | 5505 | icon="notify.tga" |
5505 | name="MustGetAgeParcel" | 5506 | name="MustGetAgeParcel" |
5506 | type="notify"> | 5507 | type="notify"> |
5507 | You must be age-verified to enter this parcel. | 5508 | You must be age-verified to enter this parcel. |
5508 | </notification> | 5509 | </notification> |
5509 | 5510 | ||
5510 | <notification | 5511 | <notification |
5511 | icon="notify.tga" | 5512 | icon="notify.tga" |
5512 | name="NoDestRegion" | 5513 | name="NoDestRegion" |
5513 | type="notify"> | 5514 | type="notify"> |
5514 | No destination region found. | 5515 | No destination region found. |
5515 | </notification> | 5516 | </notification> |
5516 | 5517 | ||
5517 | <notification | 5518 | <notification |
5518 | icon="notify.tga" | 5519 | icon="notify.tga" |
5519 | name="NotAllowedInDest" | 5520 | name="NotAllowedInDest" |
5520 | type="notify"> | 5521 | type="notify"> |
5521 | You are not allowed into the destination. | 5522 | You are not allowed into the destination. |
5522 | </notification> | 5523 | </notification> |
5523 | 5524 | ||
5524 | <notification | 5525 | <notification |
5525 | icon="notify.tga" | 5526 | icon="notify.tga" |
5526 | name="RegionParcelBan" | 5527 | name="RegionParcelBan" |
5527 | type="notify"> | 5528 | type="notify"> |
5528 | Cannot region cross into banned parcel. Try another way. | 5529 | Cannot region cross into banned parcel. Try another way. |
5529 | </notification> | 5530 | </notification> |
5530 | 5531 | ||
5531 | <notification | 5532 | <notification |
5532 | icon="notify.tga" | 5533 | icon="notify.tga" |
5533 | name="TelehubRedirect" | 5534 | name="TelehubRedirect" |
5534 | type="notify"> | 5535 | type="notify"> |
5535 | You have been redirected to a telehub. | 5536 | You have been redirected to a telehub. |
5536 | </notification> | 5537 | </notification> |
5537 | 5538 | ||
5538 | <notification | 5539 | <notification |
5539 | icon="notify.tga" | 5540 | icon="notify.tga" |
5540 | name="CouldntTPCloser" | 5541 | name="CouldntTPCloser" |
5541 | type="notify"> | 5542 | type="notify"> |
5542 | Could not teleport closer to destination. | 5543 | Could not teleport closer to destination. |
5543 | </notification> | 5544 | </notification> |
5544 | 5545 | ||
5545 | <notification | 5546 | <notification |
5546 | icon="notify.tga" | 5547 | icon="notify.tga" |
5547 | name="TPCancelled" | 5548 | name="TPCancelled" |
5548 | type="notify"> | 5549 | type="notify"> |
5549 | Teleport cancelled. | 5550 | Teleport cancelled. |
5550 | </notification> | 5551 | </notification> |
5551 | 5552 | ||
5552 | <notification | 5553 | <notification |
5553 | icon="notify.tga" | 5554 | icon="notify.tga" |
5554 | name="FullRegionTryAgain" | 5555 | name="FullRegionTryAgain" |
5555 | type="notify"> | 5556 | type="notify"> |
5556 | The region you are attempting to enter is currently full. | 5557 | The region you are attempting to enter is currently full. |
5557 | Please try again in a few moments. | 5558 | Please try again in a few moments. |
5558 | </notification> | 5559 | </notification> |
5559 | 5560 | ||
5560 | <notification | 5561 | <notification |
5561 | icon="notify.tga" | 5562 | icon="notify.tga" |
5562 | name="GeneralFailure" | 5563 | name="GeneralFailure" |
5563 | type="notify"> | 5564 | type="notify"> |
5564 | General failure. | 5565 | General failure. |
5565 | </notification> | 5566 | </notification> |
5566 | 5567 | ||
5567 | <notification | 5568 | <notification |
5568 | icon="notify.tga" | 5569 | icon="notify.tga" |
5569 | name="RoutedWrongRegion" | 5570 | name="RoutedWrongRegion" |
5570 | type="notify"> | 5571 | type="notify"> |
5571 | Routed to wrong region. Please try again. | 5572 | Routed to wrong region. Please try again. |
5572 | </notification> | 5573 | </notification> |
5573 | 5574 | ||
5574 | <notification | 5575 | <notification |
5575 | icon="notify.tga" | 5576 | icon="notify.tga" |
5576 | name="NoValidAgentID" | 5577 | name="NoValidAgentID" |
5577 | type="notify"> | 5578 | type="notify"> |
5578 | No valid agent id. | 5579 | No valid agent id. |
5579 | </notification> | 5580 | </notification> |
5580 | 5581 | ||
5581 | <notification | 5582 | <notification |
5582 | icon="notify.tga" | 5583 | icon="notify.tga" |
5583 | name="NoValidSession" | 5584 | name="NoValidSession" |
5584 | type="notify"> | 5585 | type="notify"> |
5585 | No valid session id. | 5586 | No valid session id. |
5586 | </notification> | 5587 | </notification> |
5587 | 5588 | ||
5588 | <notification | 5589 | <notification |
5589 | icon="notify.tga" | 5590 | icon="notify.tga" |
5590 | name="NoValidCircuit" | 5591 | name="NoValidCircuit" |
5591 | type="notify"> | 5592 | type="notify"> |
5592 | No valid circuit code. | 5593 | No valid circuit code. |
5593 | </notification> | 5594 | </notification> |
5594 | 5595 | ||
5595 | <notification | 5596 | <notification |
5596 | icon="notify.tga" | 5597 | icon="notify.tga" |
5597 | name="NoValidTimestamp" | 5598 | name="NoValidTimestamp" |
5598 | type="notify"> | 5599 | type="notify"> |
5599 | No valid timestamp. | 5600 | No valid timestamp. |
5600 | </notification> | 5601 | </notification> |
5601 | 5602 | ||
5602 | <notification | 5603 | <notification |
5603 | icon="notify.tga" | 5604 | icon="notify.tga" |
5604 | name="NoPendingConnection" | 5605 | name="NoPendingConnection" |
5605 | type="notify"> | 5606 | type="notify"> |
5606 | Unable to create pending connection. | 5607 | Unable to create pending connection. |
5607 | </notification> | 5608 | </notification> |
5608 | 5609 | ||
5609 | <notification | 5610 | <notification |
5610 | icon="notify.tga" | 5611 | icon="notify.tga" |
5611 | name="InternalUsherError" | 5612 | name="InternalUsherError" |
5612 | type="notify"> | 5613 | type="notify"> |
5613 | Internal error attempting to connect agent usher. | 5614 | Internal error attempting to connect agent usher. |
5614 | </notification> | 5615 | </notification> |
5615 | 5616 | ||
5616 | <notification | 5617 | <notification |
5617 | icon="notify.tga" | 5618 | icon="notify.tga" |
5618 | name="NoGoodTPDestination" | 5619 | name="NoGoodTPDestination" |
5619 | type="notify"> | 5620 | type="notify"> |
5620 | Unable to find a good teleport destination in this region. | 5621 | Unable to find a good teleport destination in this region. |
5621 | </notification> | 5622 | </notification> |
5622 | 5623 | ||
5623 | <notification | 5624 | <notification |
5624 | icon="notify.tga" | 5625 | icon="notify.tga" |
5625 | name="InternalErrorRegionResolver" | 5626 | name="InternalErrorRegionResolver" |
5626 | type="notify"> | 5627 | type="notify"> |
5627 | Internal error attempting to activate region resolver. | 5628 | Internal error attempting to activate region resolver. |
5628 | </notification> | 5629 | </notification> |
5629 | 5630 | ||
5630 | <notification | 5631 | <notification |
5631 | icon="notify.tga" | 5632 | icon="notify.tga" |
5632 | name="NoValidLanding" | 5633 | name="NoValidLanding" |
5633 | type="notify"> | 5634 | type="notify"> |
5634 | A valid landing point could not be found. | 5635 | A valid landing point could not be found. |
5635 | </notification> | 5636 | </notification> |
5636 | 5637 | ||
5637 | <notification | 5638 | <notification |
5638 | icon="notify.tga" | 5639 | icon="notify.tga" |
5639 | name="NoValidParcel" | 5640 | name="NoValidParcel" |
5640 | type="notify"> | 5641 | type="notify"> |
5641 | No valid parcel could be found. | 5642 | No valid parcel could be found. |
5642 | </notification> | 5643 | </notification> |
5643 | 5644 | ||
5644 | <notification | 5645 | <notification |
5645 | icon="notify.tga" | 5646 | icon="notify.tga" |
5646 | name="ObjectGiveItem" | 5647 | name="ObjectGiveItem" |
5647 | type="notify"> | 5648 | type="notify"> |
5648 | An object named [OBJECTFROMNAME] owned by [FIRST] [LAST] has given you a [OBJECTTYPE] named [OBJECTNAME]. | 5649 | An object named [OBJECTFROMNAME] owned by [FIRST] [LAST] has given you a [OBJECTTYPE] named [OBJECTNAME]. |
5649 | <form name="form"> | 5650 | <form name="form"> |
5650 | <button | 5651 | <button |
5651 | index="0" | 5652 | index="0" |
@@ -5666,7 +5667,7 @@ An object named [OBJECTFROMNAME] owned by [FIRST] [LAST] has given you a [OBJECT | |||
5666 | icon="notify.tga" | 5667 | icon="notify.tga" |
5667 | name="ObjectGiveItemUnknownUser" | 5668 | name="ObjectGiveItemUnknownUser" |
5668 | type="notify"> | 5669 | type="notify"> |
5669 | An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJECTTYPE] named [OBJECTNAME]. | 5670 | An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJECTTYPE] named [OBJECTNAME]. |
5670 | <form name="form"> | 5671 | <form name="form"> |
5671 | <button | 5672 | <button |
5672 | index="0" | 5673 | index="0" |
@@ -5687,7 +5688,7 @@ An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJ | |||
5687 | icon="notify.tga" | 5688 | icon="notify.tga" |
5688 | name="UserGiveItem" | 5689 | name="UserGiveItem" |
5689 | type="notify"> | 5690 | type="notify"> |
5690 | [NAME] has given you a [OBJECTTYPE] named '[OBJECTNAME]'. | 5691 | [NAME] has given you a [OBJECTTYPE] named '[OBJECTNAME]'. |
5691 | <form name="form"> | 5692 | <form name="form"> |
5692 | <button | 5693 | <button |
5693 | index="0" | 5694 | index="0" |
@@ -5708,15 +5709,15 @@ An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJ | |||
5708 | icon="notify.tga" | 5709 | icon="notify.tga" |
5709 | name="GodMessage" | 5710 | name="GodMessage" |
5710 | type="notify"> | 5711 | type="notify"> |
5711 | [NAME] | 5712 | [NAME] |
5712 | [MESSAGE] | 5713 | [MESSAGE] |
5713 | </notification> | 5714 | </notification> |
5714 | 5715 | ||
5715 | <notification | 5716 | <notification |
5716 | icon="notify.tga" | 5717 | icon="notify.tga" |
5717 | name="JoinGroup" | 5718 | name="JoinGroup" |
5718 | type="notify"> | 5719 | type="notify"> |
5719 | [MESSAGE] | 5720 | [MESSAGE] |
5720 | <form name="form"> | 5721 | <form name="form"> |
5721 | <button | 5722 | <button |
5722 | index="0" | 5723 | index="0" |
@@ -5737,9 +5738,9 @@ An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJ | |||
5737 | icon="notify.tga" | 5738 | icon="notify.tga" |
5738 | name="TeleportOffered" | 5739 | name="TeleportOffered" |
5739 | type="notify"> | 5740 | type="notify"> |
5740 | [NAME] has offered to teleport you to his or her location: | 5741 | [NAME] has offered to teleport you to his or her location: |
5741 | 5742 | ||
5742 | [MESSAGE] | 5743 | [MESSAGE] |
5743 | <form name="form"> | 5744 | <form name="form"> |
5744 | <button | 5745 | <button |
5745 | index="0" | 5746 | index="0" |
@@ -5756,8 +5757,8 @@ An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJ | |||
5756 | icon="notify.tga" | 5757 | icon="notify.tga" |
5757 | name="GotoURL" | 5758 | name="GotoURL" |
5758 | type="notify"> | 5759 | type="notify"> |
5759 | [MESSAGE] | 5760 | [MESSAGE] |
5760 | [URL] | 5761 | [URL] |
5761 | <form name="form"> | 5762 | <form name="form"> |
5762 | <button | 5763 | <button |
5763 | index="0" | 5764 | index="0" |
@@ -5774,11 +5775,11 @@ An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJ | |||
5774 | icon="notify.tga" | 5775 | icon="notify.tga" |
5775 | name="OfferFriendship" | 5776 | name="OfferFriendship" |
5776 | type="notify"> | 5777 | type="notify"> |
5777 | [NAME] is offering friendship. | 5778 | [NAME] is offering friendship. |
5778 | 5779 | ||
5779 | [MESSAGE] | 5780 | [MESSAGE] |
5780 | 5781 | ||
5781 | (By default, you will be able to see each other's online status.) | 5782 | (By default, you will be able to see each other's online status.) |
5782 | <form name="form"> | 5783 | <form name="form"> |
5783 | <button | 5784 | <button |
5784 | index="0" | 5785 | index="0" |
@@ -5795,9 +5796,9 @@ An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJ | |||
5795 | icon="notify.tga" | 5796 | icon="notify.tga" |
5796 | name="OfferFriendshipNoMessage" | 5797 | name="OfferFriendshipNoMessage" |
5797 | type="notify"> | 5798 | type="notify"> |
5798 | [NAME] is offering friendship. | 5799 | [NAME] is offering friendship. |
5799 | 5800 | ||
5800 | (By default, you will be able to see each other's online status.) | 5801 | (By default, you will be able to see each other's online status.) |
5801 | <form name="form"> | 5802 | <form name="form"> |
5802 | <button | 5803 | <button |
5803 | index="0" | 5804 | index="0" |
@@ -5814,22 +5815,22 @@ An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJ | |||
5814 | icon="notify.tga" | 5815 | icon="notify.tga" |
5815 | name="FriendshipAccepted" | 5816 | name="FriendshipAccepted" |
5816 | type="notify"> | 5817 | type="notify"> |
5817 | [NAME] accepted your friendship offer. | 5818 | [NAME] accepted your friendship offer. |
5818 | </notification> | 5819 | </notification> |
5819 | 5820 | ||
5820 | <notification | 5821 | <notification |
5821 | icon="notify.tga" | 5822 | icon="notify.tga" |
5822 | name="FriendshipDeclined" | 5823 | name="FriendshipDeclined" |
5823 | type="notify"> | 5824 | type="notify"> |
5824 | [NAME] declined your friendship offer. | 5825 | [NAME] declined your friendship offer. |
5825 | </notification> | 5826 | </notification> |
5826 | 5827 | ||
5827 | <notification | 5828 | <notification |
5828 | icon="notify.tga" | 5829 | icon="notify.tga" |
5829 | name="OfferCallingCard" | 5830 | name="OfferCallingCard" |
5830 | type="notify"> | 5831 | type="notify"> |
5831 | [FIRST] [LAST] is offering their calling card. | 5832 | [FIRST] [LAST] is offering their calling card. |
5832 | This will add a bookmark in your inventory so you can quickly IM this resident. | 5833 | This will add a bookmark in your inventory so you can quickly IM this resident. |
5833 | <form name="form"> | 5834 | <form name="form"> |
5834 | <button | 5835 | <button |
5835 | index="0" | 5836 | index="0" |
@@ -5848,8 +5849,8 @@ This will add a bookmark in your inventory so you can quickly IM this resident. | |||
5848 | priority="high" | 5849 | priority="high" |
5849 | sound="UISndAlert" | 5850 | sound="UISndAlert" |
5850 | type="notify"> | 5851 | type="notify"> |
5851 | Region is restarting in [MINUTES] minutes. | 5852 | Region is restarting in [MINUTES] minutes. |
5852 | If you remain in this region you will be logged out. | 5853 | If you remain in this region you will be logged out. |
5853 | </notification> | 5854 | </notification> |
5854 | 5855 | ||
5855 | <notification | 5856 | <notification |
@@ -5858,19 +5859,19 @@ If you remain in this region you will be logged out. | |||
5858 | priority="high" | 5859 | priority="high" |
5859 | sound="UISndAlert" | 5860 | sound="UISndAlert" |
5860 | type="notify"> | 5861 | type="notify"> |
5861 | Region is restarting in [SECONDS] seconds. | 5862 | Region is restarting in [SECONDS] seconds. |
5862 | If you remain in this region you will be logged out. | 5863 | If you remain in this region you will be logged out. |
5863 | </notification> | 5864 | </notification> |
5864 | 5865 | ||
5865 | <notification | 5866 | <notification |
5866 | icon="notify.tga" | 5867 | icon="notify.tga" |
5867 | name="LoadWebPage" | 5868 | name="LoadWebPage" |
5868 | type="notify"> | 5869 | type="notify"> |
5869 | Load web page [URL]? | 5870 | Load web page [URL]? |
5870 | 5871 | ||
5871 | [MESSAGE] | 5872 | [MESSAGE] |
5872 | 5873 | ||
5873 | From object: [OBJECTNAME], owner: [NAME]? | 5874 | From object: [OBJECTNAME], owner: [NAME]? |
5874 | <form name="form"> | 5875 | <form name="form"> |
5875 | <button | 5876 | <button |
5876 | index="0" | 5877 | index="0" |
@@ -5887,14 +5888,14 @@ From object: [OBJECTNAME], owner: [NAME]? | |||
5887 | icon="notify.tga" | 5888 | icon="notify.tga" |
5888 | name="FailedToFindWearableUnnamed" | 5889 | name="FailedToFindWearableUnnamed" |
5889 | type="notify"> | 5890 | type="notify"> |
5890 | Failed to find [TYPE] in database. | 5891 | Failed to find [TYPE] in database. |
5891 | </notification> | 5892 | </notification> |
5892 | 5893 | ||
5893 | <notification | 5894 | <notification |
5894 | icon="notify.tga" | 5895 | icon="notify.tga" |
5895 | name="FailedToFindWearable" | 5896 | name="FailedToFindWearable" |
5896 | type="notify"> | 5897 | type="notify"> |
5897 | Failed to find [TYPE] named [DESC] in database. | 5898 | Failed to find [TYPE] named [DESC] in database. |
5898 | </notification> | 5899 | </notification> |
5899 | 5900 | ||
5900 | <notification | 5901 | <notification |
@@ -5908,10 +5909,10 @@ Failed to find [TYPE] named [DESC] in database. | |||
5908 | icon="notify.tga" | 5909 | icon="notify.tga" |
5909 | name="ScriptQuestion" | 5910 | name="ScriptQuestion" |
5910 | type="notify"> | 5911 | type="notify"> |
5911 | '[OBJECTNAME]', an object owned by '[NAME]', would like to: | 5912 | '[OBJECTNAME]', an object owned by '[NAME]', would like to: |
5912 | 5913 | ||
5913 | [QUESTIONS] | 5914 | [QUESTIONS] |
5914 | Is this OK? | 5915 | Is this OK? |
5915 | <form name="form"> | 5916 | <form name="form"> |
5916 | <button | 5917 | <button |
5917 | index="0" | 5918 | index="0" |
@@ -5933,12 +5934,12 @@ Is this OK? | |||
5933 | name="ScriptQuestionCaution" | 5934 | name="ScriptQuestionCaution" |
5934 | priority="high" | 5935 | priority="high" |
5935 | type="notify"> | 5936 | type="notify"> |
5936 | '[OBJECTNAME]', an object owned by '[NAME]', would like to: | 5937 | '[OBJECTNAME]', an object owned by '[NAME]', would like to: |
5937 | 5938 | ||
5938 | [QUESTIONS] | 5939 | [QUESTIONS] |
5939 | If you do not trust this object and its creator, you should deny the request. For additional information, click the Details button. | 5940 | If you do not trust this object and its creator, you should deny the request. For additional information, click the Details button. |
5940 | 5941 | ||
5941 | Grant this request? | 5942 | Grant this request? |
5942 | <form name="form"> | 5943 | <form name="form"> |
5943 | <button | 5944 | <button |
5944 | index="0" | 5945 | index="0" |
@@ -5960,8 +5961,8 @@ Grant this request? | |||
5960 | icon="notify.tga" | 5961 | icon="notify.tga" |
5961 | name="ScriptDialog" | 5962 | name="ScriptDialog" |
5962 | type="notify"> | 5963 | type="notify"> |
5963 | [FIRST] [LAST]'s '[TITLE]' | 5964 | [FIRST] [LAST]'s '[TITLE]' |
5964 | [MESSAGE] | 5965 | [MESSAGE] |
5965 | <form name="form"> | 5966 | <form name="form"> |
5966 | <button | 5967 | <button |
5967 | index="-1" | 5968 | index="-1" |
@@ -5974,8 +5975,8 @@ Grant this request? | |||
5974 | icon="notify.tga" | 5975 | icon="notify.tga" |
5975 | name="ScriptDialogGroup" | 5976 | name="ScriptDialogGroup" |
5976 | type="notify"> | 5977 | type="notify"> |
5977 | [GROUPNAME]'s '[TITLE]' | 5978 | [GROUPNAME]'s '[TITLE]' |
5978 | [MESSAGE] | 5979 | [MESSAGE] |
5979 | <form name="form"> | 5980 | <form name="form"> |
5980 | <button | 5981 | <button |
5981 | index="-1" | 5982 | index="-1" |
@@ -5988,157 +5989,157 @@ Grant this request? | |||
5988 | icon="notify.tga" | 5989 | icon="notify.tga" |
5989 | name="FirstBalanceIncrease" | 5990 | name="FirstBalanceIncrease" |
5990 | type="notify"> | 5991 | type="notify"> |
5991 | You just received L$[AMOUNT]. | 5992 | You just received L$[AMOUNT]. |
5992 | Objects and other users may give you L$. | 5993 | Objects and other users may give you L$. |
5993 | Your balance is shown in the upper-right corner of the screen. | 5994 | Your balance is shown in the upper-right corner of the screen. |
5994 | </notification> | 5995 | </notification> |
5995 | 5996 | ||
5996 | <notification | 5997 | <notification |
5997 | icon="notify.tga" | 5998 | icon="notify.tga" |
5998 | name="FirstBalanceDecrease" | 5999 | name="FirstBalanceDecrease" |
5999 | type="notify"> | 6000 | type="notify"> |
6000 | You just paid L$[AMOUNT]. | 6001 | You just paid L$[AMOUNT]. |
6001 | Your balance is shown in the upper-right corner of the screen. | 6002 | Your balance is shown in the upper-right corner of the screen. |
6002 | </notification> | 6003 | </notification> |
6003 | 6004 | ||
6004 | <notification | 6005 | <notification |
6005 | icon="notify.tga" | 6006 | icon="notify.tga" |
6006 | name="FirstSit" | 6007 | name="FirstSit" |
6007 | type="notify"> | 6008 | type="notify"> |
6008 | You are sitting. | 6009 | You are sitting. |
6009 | Use the arrow keys (or AWSD) to change the view. | 6010 | Use the arrow keys (or AWSD) to change the view. |
6010 | Click the 'Stand Up' button to get up. | 6011 | Click the 'Stand Up' button to get up. |
6011 | </notification> | 6012 | </notification> |
6012 | 6013 | ||
6013 | <notification | 6014 | <notification |
6014 | icon="notify.tga" | 6015 | icon="notify.tga" |
6015 | name="FirstMap" | 6016 | name="FirstMap" |
6016 | type="notify"> | 6017 | type="notify"> |
6017 | Click and drag to scroll the map. | 6018 | Click and drag to scroll the map. |
6018 | Double-click to teleport. | 6019 | Double-click to teleport. |
6019 | Use the controls on the right to find things and display different backgrounds. | 6020 | Use the controls on the right to find things and display different backgrounds. |
6020 | </notification> | 6021 | </notification> |
6021 | 6022 | ||
6022 | <notification | 6023 | <notification |
6023 | icon="notify.tga" | 6024 | icon="notify.tga" |
6024 | name="FirstMiniMap" | 6025 | name="FirstMiniMap" |
6025 | type="notify"> | 6026 | type="notify"> |
6026 | Right-click the Mini-Map for more options. | 6027 | Right-click the Mini-Map for more options. |
6027 | </notification> | 6028 | </notification> |
6028 | 6029 | ||
6029 | <notification | 6030 | <notification |
6030 | icon="notify.tga" | 6031 | icon="notify.tga" |
6031 | name="FirstBuild" | 6032 | name="FirstBuild" |
6032 | type="notify"> | 6033 | type="notify"> |
6033 | You can build new objects in some areas of [SECOND_LIFE]. | 6034 | You can build new objects in some areas of [SECOND_LIFE]. |
6034 | Use the tools in the upper left to build, and try holding down Ctrl or Alt to rapidly switch tools. | 6035 | Use the tools in the upper left to build, and try holding down Ctrl or Alt to rapidly switch tools. |
6035 | Press Esc to stop building. | 6036 | Press Esc to stop building. |
6036 | </notification> | 6037 | </notification> |
6037 | 6038 | ||
6038 | <notification | 6039 | <notification |
6039 | icon="notify.tga" | 6040 | icon="notify.tga" |
6040 | name="FirstLeftClickNoHit" | 6041 | name="FirstLeftClickNoHit" |
6041 | type="notify"> | 6042 | type="notify"> |
6042 | Left-clicking interacts with special objects. | 6043 | Left-clicking interacts with special objects. |
6043 | If the mouse pointer changes to a hand, you can interact with the object. | 6044 | If the mouse pointer changes to a hand, you can interact with the object. |
6044 | Right-click always shows a menu of things you can do. | 6045 | Right-click always shows a menu of things you can do. |
6045 | </notification> | 6046 | </notification> |
6046 | 6047 | ||
6047 | <notification | 6048 | <notification |
6048 | icon="notify.tga" | 6049 | icon="notify.tga" |
6049 | name="FirstTeleport" | 6050 | name="FirstTeleport" |
6050 | type="notify"> | 6051 | type="notify"> |
6051 | This region doesn't allow point-to-point teleports, so you've been transported to the nearest telehub. | 6052 | This region doesn't allow point-to-point teleports, so you've been transported to the nearest telehub. |
6052 | Your destination is marked with a tall beacon. | 6053 | Your destination is marked with a tall beacon. |
6053 | Follow the red arrow to the beacon, or click the arrow to dismiss the beacon. | 6054 | Follow the red arrow to the beacon, or click the arrow to dismiss the beacon. |
6054 | </notification> | 6055 | </notification> |
6055 | 6056 | ||
6056 | <notification | 6057 | <notification |
6057 | icon="notify.tga" | 6058 | icon="notify.tga" |
6058 | name="FirstOverrideKeys" | 6059 | name="FirstOverrideKeys" |
6059 | type="notify"> | 6060 | type="notify"> |
6060 | Your movement keys are now being handled by an object. | 6061 | Your movement keys are now being handled by an object. |
6061 | Try the arrow keys or AWSD to see what they do. | 6062 | Try the arrow keys or AWSD to see what they do. |
6062 | Some objects (like guns) require you to go into mouselook to use them. | 6063 | Some objects (like guns) require you to go into mouselook to use them. |
6063 | Press 'M' to do this. | 6064 | Press 'M' to do this. |
6064 | </notification> | 6065 | </notification> |
6065 | 6066 | ||
6066 | <notification | 6067 | <notification |
6067 | icon="notify.tga" | 6068 | icon="notify.tga" |
6068 | name="FirstAppearance" | 6069 | name="FirstAppearance" |
6069 | type="notify"> | 6070 | type="notify"> |
6070 | You are editing your appearance. | 6071 | You are editing your appearance. |
6071 | To rotate and zoom view, use the arrow keys. | 6072 | To rotate and zoom view, use the arrow keys. |
6072 | When you are finished, press 'Save All' to save your look and exit. | 6073 | When you are finished, press 'Save All' to save your look and exit. |
6073 | You can edit your appearance as often as you like. | 6074 | You can edit your appearance as often as you like. |
6074 | </notification> | 6075 | </notification> |
6075 | 6076 | ||
6076 | <notification | 6077 | <notification |
6077 | icon="notify.tga" | 6078 | icon="notify.tga" |
6078 | name="FirstInventory" | 6079 | name="FirstInventory" |
6079 | type="notify"> | 6080 | type="notify"> |
6080 | This is your inventory, which contains objects, notecards, clothing, and other things you own. | 6081 | This is your inventory, which contains objects, notecards, clothing, and other things you own. |
6081 | * To wear an object or outfit folder, drag it onto yourself. | 6082 | * To wear an object or outfit folder, drag it onto yourself. |
6082 | * To bring an object into the world, drag it onto the ground. | 6083 | * To bring an object into the world, drag it onto the ground. |
6083 | * To read a notecard, double-click it. | 6084 | * To read a notecard, double-click it. |
6084 | </notification> | 6085 | </notification> |
6085 | 6086 | ||
6086 | <notification | 6087 | <notification |
6087 | icon="notify.tga" | 6088 | icon="notify.tga" |
6088 | name="FirstSandbox" | 6089 | name="FirstSandbox" |
6089 | type="notify"> | 6090 | type="notify"> |
6090 | This is a sandbox region. | 6091 | This is a sandbox region. |
6091 | Objects you build here may be deleted after you leave the area, Sandboxes clean on a regular basis, please refer to the information at the top of the screen next to the region name. | 6092 | Objects you build here may be deleted after you leave the area, Sandboxes clean on a regular basis, please refer to the information at the top of the screen next to the region name. |
6092 | 6093 | ||
6093 | Sandbox regions are uncommon, and are marked with signs. | 6094 | Sandbox regions are uncommon, and are marked with signs. |
6094 | </notification> | 6095 | </notification> |
6095 | 6096 | ||
6096 | <notification | 6097 | <notification |
6097 | icon="notify.tga" | 6098 | icon="notify.tga" |
6098 | name="FirstFlexible" | 6099 | name="FirstFlexible" |
6099 | type="notify"> | 6100 | type="notify"> |
6100 | This object is flexible. | 6101 | This object is flexible. |
6101 | Flexible objects may not be physical and must be phantom until the flexible checkbox is unchecked. | 6102 | Flexible objects may not be physical and must be phantom until the flexible checkbox is unchecked. |
6102 | </notification> | 6103 | </notification> |
6103 | 6104 | ||
6104 | <notification | 6105 | <notification |
6105 | icon="notify.tga" | 6106 | icon="notify.tga" |
6106 | name="FirstDebugMenus" | 6107 | name="FirstDebugMenus" |
6107 | type="notify"> | 6108 | type="notify"> |
6108 | You have enabled the Advanced menu. | 6109 | You have enabled the Advanced menu. |
6109 | This menu contains features useful for developers debugging Second Life. | 6110 | This menu contains features useful for developers debugging Second Life. |
6110 | To toggle this menu on Windows press Ctrl-Alt-D. On Mac press Cmd-Opt-Shift-D. | 6111 | To toggle this menu on Windows press Ctrl-Alt-D. On Mac press Cmd-Opt-Shift-D. |
6111 | </notification> | 6112 | </notification> |
6112 | 6113 | ||
6113 | <notification | 6114 | <notification |
6114 | icon="notify.tga" | 6115 | icon="notify.tga" |
6115 | name="FirstSculptedPrim" | 6116 | name="FirstSculptedPrim" |
6116 | type="notify"> | 6117 | type="notify"> |
6117 | You are editing a sculpted prim. | 6118 | You are editing a sculpted prim. |
6118 | Sculpted prims require a special texture to specify their shape. | 6119 | Sculpted prims require a special texture to specify their shape. |
6119 | You can find example sculpted textures in the inventory library. | 6120 | You can find example sculpted textures in the inventory library. |
6120 | </notification> | 6121 | </notification> |
6121 | 6122 | ||
6122 | <notification | 6123 | <notification |
6123 | icon="notify.tga" | 6124 | icon="notify.tga" |
6124 | name="FirstMedia" | 6125 | name="FirstMedia" |
6125 | type="notify"> | 6126 | type="notify"> |
6126 | You have begun playing media. Media can set to play automatically in the preferences window under Audio / Video. Note that this can be a security risk for media sites you do not trust. | 6127 | You have begun playing media. Media can set to play automatically in the preferences window under Audio / Video. Note that this can be a security risk for media sites you do not trust. |
6127 | </notification> | 6128 | </notification> |
6128 | 6129 | ||
6129 | <notification | 6130 | <notification |
6130 | icon="notifytip.tga" | 6131 | icon="notifytip.tga" |
6131 | name="MaxListSelectMessage" | 6132 | name="MaxListSelectMessage" |
6132 | type="notifytip"> | 6133 | type="notifytip"> |
6133 | You may only select up to [MAX_SELECT] items from this list. | 6134 | You may only select up to [MAX_SELECT] items from this list. |
6134 | </notification> | 6135 | </notification> |
6135 | 6136 | ||
6136 | <notification | 6137 | <notification |
6137 | icon="notify.tga" | 6138 | icon="notify.tga" |
6138 | name="VoiceInviteP2P" | 6139 | name="VoiceInviteP2P" |
6139 | type="notify"> | 6140 | type="notify"> |
6140 | [NAME] is inviting you to a Voice Chat call. | 6141 | [NAME] is inviting you to a Voice Chat call. |
6141 | Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this caller. | 6142 | Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this caller. |
6142 | <unique> | 6143 | <unique> |
6143 | <context key="NAME"/> | 6144 | <context key="NAME"/> |
6144 | </unique> | 6145 | </unique> |
@@ -6162,29 +6163,29 @@ Click Accept to join the call or Decline to decline the invitation. Click Mute t | |||
6162 | icon="notify.tga" | 6163 | icon="notify.tga" |
6163 | name="AutoUnmuteByIM" | 6164 | name="AutoUnmuteByIM" |
6164 | type="notify"> | 6165 | type="notify"> |
6165 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. | 6166 | [FIRST] [LAST] was sent an instant message and has been automatically unmuted. |
6166 | </notification> | 6167 | </notification> |
6167 | 6168 | ||
6168 | <notification | 6169 | <notification |
6169 | icon="notify.tga" | 6170 | icon="notify.tga" |
6170 | name="AutoUnmuteByMoney" | 6171 | name="AutoUnmuteByMoney" |
6171 | type="notify"> | 6172 | type="notify"> |
6172 | [FIRST] [LAST] was given money and has been automatically unmuted. | 6173 | [FIRST] [LAST] was given money and has been automatically unmuted. |
6173 | </notification> | 6174 | </notification> |
6174 | 6175 | ||
6175 | <notification | 6176 | <notification |
6176 | icon="notify.tga" | 6177 | icon="notify.tga" |
6177 | name="AutoUnmuteByInventory" | 6178 | name="AutoUnmuteByInventory" |
6178 | type="notify"> | 6179 | type="notify"> |
6179 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. | 6180 | [FIRST] [LAST] was offered inventory and has been automatically unmuted. |
6180 | </notification> | 6181 | </notification> |
6181 | 6182 | ||
6182 | <notification | 6183 | <notification |
6183 | icon="notify.tga" | 6184 | icon="notify.tga" |
6184 | name="VoiceInviteGroup" | 6185 | name="VoiceInviteGroup" |
6185 | type="notify"> | 6186 | type="notify"> |
6186 | [NAME] has joined a Voice Chat call with the group [GROUP]. | 6187 | [NAME] has joined a Voice Chat call with the group [GROUP]. |
6187 | Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this caller. | 6188 | Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this caller. |
6188 | <unique> | 6189 | <unique> |
6189 | <context key="NAME"/> | 6190 | <context key="NAME"/> |
6190 | <context key="GROUP"/> | 6191 | <context key="GROUP"/> |
@@ -6209,8 +6210,8 @@ Click Accept to join the call or Decline to decline the invitation. Click Mute t | |||
6209 | icon="notify.tga" | 6210 | icon="notify.tga" |
6210 | name="VoiceInviteAdHoc" | 6211 | name="VoiceInviteAdHoc" |
6211 | type="notify"> | 6212 | type="notify"> |
6212 | [NAME] has joined a Voice Chat call with a conference chat... | 6213 | [NAME] has joined a Voice Chat call with a conference chat... |
6213 | Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this user. | 6214 | Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this user. |
6214 | <unique> | 6215 | <unique> |
6215 | <context key="NAME"/> | 6216 | <context key="NAME"/> |
6216 | </unique> | 6217 | </unique> |
@@ -6234,8 +6235,8 @@ Click Accept to join the call or Decline to decline the invitation. Click Mute t | |||
6234 | icon="notify.tga" | 6235 | icon="notify.tga" |
6235 | name="InviteAdHoc" | 6236 | name="InviteAdHoc" |
6236 | type="notify"> | 6237 | type="notify"> |
6237 | [NAME] is inviting you to a conference chat. | 6238 | [NAME] is inviting you to a conference chat. |
6238 | Click Accept to join the chat or Decline to decline the invitation. Click Mute to mute this user. | 6239 | Click Accept to join the chat or Decline to decline the invitation. Click Mute to mute this user. |
6239 | <unique> | 6240 | <unique> |
6240 | <context key="NAME"/> | 6241 | <context key="NAME"/> |
6241 | </unique> | 6242 | </unique> |
@@ -6259,7 +6260,7 @@ Click Accept to join the chat or Decline to decline the invitation. Click Mute t | |||
6259 | icon="notifytip.tga" | 6260 | icon="notifytip.tga" |
6260 | name="VoiceChannelFull" | 6261 | name="VoiceChannelFull" |
6261 | type="notifytip"> | 6262 | type="notifytip"> |
6262 | The voice call you are trying to join, [VOICE_CHANNEL_NAME], has reached maximum capacity. Please try again later. | 6263 | The voice call you are trying to join, [VOICE_CHANNEL_NAME], has reached maximum capacity. Please try again later. |
6263 | <unique> | 6264 | <unique> |
6264 | <context key="VOICE_CHANNEL_NAME"/> | 6265 | <context key="VOICE_CHANNEL_NAME"/> |
6265 | </unique> | 6266 | </unique> |
@@ -6269,7 +6270,7 @@ The voice call you are trying to join, [VOICE_CHANNEL_NAME], has reached maximum | |||
6269 | icon="notifytip.tga" | 6270 | icon="notifytip.tga" |
6270 | name="ProximalVoiceChannelFull" | 6271 | name="ProximalVoiceChannelFull" |
6271 | type="notifytip"> | 6272 | type="notifytip"> |
6272 | We're sorry. This area has reached maximum capacity for voice conversations. Please try to use voice in another area. | 6273 | We're sorry. This area has reached maximum capacity for voice conversations. Please try to use voice in another area. |
6273 | <unique/> | 6274 | <unique/> |
6274 | </notification> | 6275 | </notification> |
6275 | 6276 | ||
@@ -6277,7 +6278,7 @@ We're sorry. This area has reached maximum capacity for voice conversation | |||
6277 | icon="notifytip.tga" | 6278 | icon="notifytip.tga" |
6278 | name="VoiceChannelDisconnected" | 6279 | name="VoiceChannelDisconnected" |
6279 | type="notifytip"> | 6280 | type="notifytip"> |
6280 | You have been disconnected from [VOICE_CHANNEL_NAME]. You will now be reconnected to spatial voice chat. | 6281 | You have been disconnected from [VOICE_CHANNEL_NAME]. You will now be reconnected to spatial voice chat. |
6281 | <unique> | 6282 | <unique> |
6282 | <context key="VOICE_CHANNEL_NAME"/> | 6283 | <context key="VOICE_CHANNEL_NAME"/> |
6283 | </unique> | 6284 | </unique> |
@@ -6287,7 +6288,7 @@ You have been disconnected from [VOICE_CHANNEL_NAME]. You will now be reconnect | |||
6287 | icon="notifytip.tga" | 6288 | icon="notifytip.tga" |
6288 | name="VoiceChannelDisconnectedP2P" | 6289 | name="VoiceChannelDisconnectedP2P" |
6289 | type="notifytip"> | 6290 | type="notifytip"> |
6290 | [VOICE_CHANNEL_NAME] has ended the call. You will now be reconnected to spatial voice chat. | 6291 | [VOICE_CHANNEL_NAME] has ended the call. You will now be reconnected to spatial voice chat. |
6291 | <unique> | 6292 | <unique> |
6292 | <context key="VOICE_CHANNEL_NAME"/> | 6293 | <context key="VOICE_CHANNEL_NAME"/> |
6293 | </unique> | 6294 | </unique> |
@@ -6297,7 +6298,7 @@ You have been disconnected from [VOICE_CHANNEL_NAME]. You will now be reconnect | |||
6297 | icon="notifytip.tga" | 6298 | icon="notifytip.tga" |
6298 | name="P2PCallDeclined" | 6299 | name="P2PCallDeclined" |
6299 | type="notifytip"> | 6300 | type="notifytip"> |
6300 | [VOICE_CHANNEL_NAME] has declined your call. You will now be reconnected to spatial voice chat. | 6301 | [VOICE_CHANNEL_NAME] has declined your call. You will now be reconnected to spatial voice chat. |
6301 | <unique> | 6302 | <unique> |
6302 | <context key="VOICE_CHANNEL_NAME"/> | 6303 | <context key="VOICE_CHANNEL_NAME"/> |
6303 | </unique> | 6304 | </unique> |
@@ -6307,7 +6308,7 @@ You have been disconnected from [VOICE_CHANNEL_NAME]. You will now be reconnect | |||
6307 | icon="notifytip.tga" | 6308 | icon="notifytip.tga" |
6308 | name="P2PCallNoAnswer" | 6309 | name="P2PCallNoAnswer" |
6309 | type="notifytip"> | 6310 | type="notifytip"> |
6310 | [VOICE_CHANNEL_NAME] is not available to take your call. You will now be reconnected to spatial voice chat. | 6311 | [VOICE_CHANNEL_NAME] is not available to take your call. You will now be reconnected to spatial voice chat. |
6311 | <unique> | 6312 | <unique> |
6312 | <context key="VOICE_CHANNEL_NAME"/> | 6313 | <context key="VOICE_CHANNEL_NAME"/> |
6313 | </unique> | 6314 | </unique> |
@@ -6317,7 +6318,7 @@ You have been disconnected from [VOICE_CHANNEL_NAME]. You will now be reconnect | |||
6317 | icon="notifytip.tga" | 6318 | icon="notifytip.tga" |
6318 | name="VoiceChannelJoinFailed" | 6319 | name="VoiceChannelJoinFailed" |
6319 | type="notifytip"> | 6320 | type="notifytip"> |
6320 | Failed to connect to [VOICE_CHANNEL_NAME], please try again later. You will now be reconnected to spatial voice chat. | 6321 | Failed to connect to [VOICE_CHANNEL_NAME], please try again later. You will now be reconnected to spatial voice chat. |
6321 | <unique> | 6322 | <unique> |
6322 | <context key="VOICE_CHANNEL_NAME"/> | 6323 | <context key="VOICE_CHANNEL_NAME"/> |
6323 | </unique> | 6324 | </unique> |
@@ -6328,7 +6329,7 @@ Failed to connect to [VOICE_CHANNEL_NAME], please try again later. You will now | |||
6328 | icon="notifytip.tga" | 6329 | icon="notifytip.tga" |
6329 | name="VoiceLoginRetry" | 6330 | name="VoiceLoginRetry" |
6330 | type="notifytip"> | 6331 | type="notifytip"> |
6331 | We are creating a voice channel for you. This may take up to one minute. | 6332 | We are creating a voice channel for you. This may take up to one minute. |
6332 | <unique/> | 6333 | <unique/> |
6333 | </notification> | 6334 | </notification> |
6334 | 6335 | ||
@@ -6336,28 +6337,28 @@ We are creating a voice channel for you. This may take up to one minute. | |||
6336 | icon="notifytip.tga" | 6337 | icon="notifytip.tga" |
6337 | name="Cannot enter parcel: not a group member" | 6338 | name="Cannot enter parcel: not a group member" |
6338 | type="notifytip"> | 6339 | type="notifytip"> |
6339 | Cannot enter parcel, you are not a member of the appropriate group. | 6340 | Cannot enter parcel, you are not a member of the appropriate group. |
6340 | </notification> | 6341 | </notification> |
6341 | 6342 | ||
6342 | <notification | 6343 | <notification |
6343 | icon="notifytip.tga" | 6344 | icon="notifytip.tga" |
6344 | name="Cannot enter parcel: banned" | 6345 | name="Cannot enter parcel: banned" |
6345 | type="notifytip"> | 6346 | type="notifytip"> |
6346 | Cannot enter parcel, you have been banned. | 6347 | Cannot enter parcel, you have been banned. |
6347 | </notification> | 6348 | </notification> |
6348 | 6349 | ||
6349 | <notification | 6350 | <notification |
6350 | icon="notifytip.tga" | 6351 | icon="notifytip.tga" |
6351 | name="Cannot enter parcel: not on access list" | 6352 | name="Cannot enter parcel: not on access list" |
6352 | type="notifytip"> | 6353 | type="notifytip"> |
6353 | Cannot enter parcel, you are not on the access list. | 6354 | Cannot enter parcel, you are not on the access list. |
6354 | </notification> | 6355 | </notification> |
6355 | 6356 | ||
6356 | <notification | 6357 | <notification |
6357 | icon="notifytip.tga" | 6358 | icon="notifytip.tga" |
6358 | name="VoiceNotAllowed" | 6359 | name="VoiceNotAllowed" |
6359 | type="notifytip"> | 6360 | type="notifytip"> |
6360 | You do not have permission to connect to voice chat for [VOICE_CHANNEL_NAME]. | 6361 | You do not have permission to connect to voice chat for [VOICE_CHANNEL_NAME]. |
6361 | <unique> | 6362 | <unique> |
6362 | <context key="VOICE_CHANNEL_NAME"/> | 6363 | <context key="VOICE_CHANNEL_NAME"/> |
6363 | </unique> | 6364 | </unique> |
@@ -6367,7 +6368,7 @@ You do not have permission to connect to voice chat for [VOICE_CHANNEL_NAME]. | |||
6367 | icon="notifytip.tga" | 6368 | icon="notifytip.tga" |
6368 | name="VoiceCallGenericError" | 6369 | name="VoiceCallGenericError" |
6369 | type="notifytip"> | 6370 | type="notifytip"> |
6370 | An error has occurred while trying to connect to voice chat for [VOICE_CHANNEL_NAME]. Please try again later. | 6371 | An error has occurred while trying to connect to voice chat for [VOICE_CHANNEL_NAME]. Please try again later. |
6371 | <unique> | 6372 | <unique> |
6372 | <context key="VOICE_CHANNEL_NAME"/> | 6373 | <context key="VOICE_CHANNEL_NAME"/> |
6373 | </unique> | 6374 | </unique> |
@@ -6379,7 +6380,7 @@ An error has occurred while trying to connect to voice chat for [VOICE_CHANNEL_N | |||
6379 | name="ServerVersionChanged" | 6380 | name="ServerVersionChanged" |
6380 | priority="high" | 6381 | priority="high" |
6381 | type="notifytip"> | 6382 | type="notifytip"> |
6382 | The region you have entered is running a different simulator version. Click this message for details. | 6383 | The region you have entered is running a different simulator version. Click this message for details. |
6383 | </notification> | 6384 | </notification> |
6384 | 6385 | ||
6385 | <notification | 6386 | <notification |
@@ -6387,17 +6388,220 @@ The region you have entered is running a different simulator version. Click this | |||
6387 | name="UnableToOpenCommandURL" | 6388 | name="UnableToOpenCommandURL" |
6388 | priority="high" | 6389 | priority="high" |
6389 | type="notifytip"> | 6390 | type="notifytip"> |
6390 | The URL you clicked cannot be opened from this web browser. | 6391 | The URL you clicked cannot be opened from this web browser. |
6392 | </notification> | ||
6393 | |||
6394 | <!--Begin Imprudence notifications--> | ||
6395 | |||
6396 | <notification | ||
6397 | icon="alert.tga" | ||
6398 | name="ClickBuildConstants" | ||
6399 | type="alert"> | ||
6400 | The following constants are accepted in this tab: | ||
6401 | |||
6402 | PX -- X-axis position | ||
6403 | PY -- Y-axis position | ||
6404 | PZ -- Z-axis position | ||
6405 | SX -- X-axis size | ||
6406 | SY -- Y-axis size | ||
6407 | SZ -- Z-axis size | ||
6408 | RX -- X-axis rotation | ||
6409 | RY -- Y-axis rotation | ||
6410 | RZ -- Z-axis rotation | ||
6411 | CB -- Path cut begin | ||
6412 | CE -- Path cut end | ||
6413 | HLW -- Hollow size | ||
6414 | SKW -- Skew | ||
6415 | PB -- Slice/Dimple/Profile cut begin | ||
6416 | PE -- Slice/Dimple/Profile cut end | ||
6417 | TB -- Twist begin | ||
6418 | TE -- Twist end | ||
6419 | SHX -- X-axis top shear | ||
6420 | SHY -- Y-axis top shear | ||
6421 | HLX -- X-axis hole size | ||
6422 | HLY -- Y-axis hole size | ||
6423 | TPX -- X-axis taper | ||
6424 | TPY -- Y-axis taper | ||
6425 | ROF -- Radius offset | ||
6426 | REV -- Revolutions | ||
6427 | |||
6428 | PI -- pi | ||
6429 | TWO_PI -- 2pi | ||
6430 | PI_BY_TWO -- pi/2 | ||
6431 | SQRT2 -- Square root of 2 | ||
6432 | DEG_TO_RAD -- DEG_TO_RAD conversion (pi/180) | ||
6433 | RAD_TO_DEG -- RAD_TO_DEG conversion (180/pi) | ||
6434 | GRAVITY -- -9.8 | ||
6435 | |||
6436 | * -- Multiplication | ||
6437 | \ -- Division | ||
6438 | + -- Addition | ||
6439 | - -- Subtraction | ||
6440 | |||
6441 | For what these are and how to use them, read: | ||
6442 | [_URL] | ||
6443 | <url option="0" name="url"> | ||
6444 | |||
6445 | http://imprudenceviewer.org/wiki/Build_Math_Expressions | ||
6446 | </url> | ||
6447 | <usetemplate | ||
6448 | name="okbutton" | ||
6449 | yestext="OK"/> | ||
6450 | </notification> | ||
6451 | |||
6452 | <notification | ||
6453 | icon="alert.tga" | ||
6454 | name="ClickTextureConstants" | ||
6455 | type="alert"> | ||
6456 | The following constants are accepted in this tab: | ||
6457 | |||
6458 | TSU -- Repeats per face (horizontal) | ||
6459 | TSV -- Repeats per face (vertical) | ||
6460 | TOU -- Offsets per face (horizontal) | ||
6461 | TOV -- Offsets per face (vertical) | ||
6462 | TRNS -- Transparency | ||
6463 | TROT -- Texture rotation | ||
6464 | GLOW -- Glow | ||
6465 | |||
6466 | * -- Multiplication | ||
6467 | \ -- Division | ||
6468 | + -- Addition | ||
6469 | - -- Subtraction | ||
6470 | |||
6471 | For what these are and how to use them, read: | ||
6472 | [_URL] | ||
6473 | <url option="0" name="url"> | ||
6474 | |||
6475 | http://imprudenceviewer.org/wiki/Build_Math_Expressions | ||
6476 | </url> | ||
6477 | <usetemplate | ||
6478 | name="okbutton" | ||
6479 | yestext="OK"/> | ||
6480 | </notification> | ||
6481 | |||
6482 | <notification | ||
6483 | icon="alertmodal.tga" | ||
6484 | name="ConfirmAutoPilot" | ||
6485 | type="alertmodal"> | ||
6486 | Are you sure you want to move here? | ||
6487 | <usetemplate | ||
6488 | ignoretext="When using auto-pilot" | ||
6489 | name="okcancelignore" | ||
6490 | notext="Cancel" | ||
6491 | yestext="Move"/> | ||
6492 | </notification> | ||
6493 | |||
6494 | <notification | ||
6495 | icon="alertmodal.tga" | ||
6496 | name="ConfirmDoubleClickTP" | ||
6497 | type="alertmodal"> | ||
6498 | Are you sure you want to teleport here? | ||
6499 | <usetemplate | ||
6500 | ignoretext="When double-click teleporting" | ||
6501 | name="okcancelignore" | ||
6502 | notext="Cancel" | ||
6503 | yestext="Teleport"/> | ||
6391 | </notification> | 6504 | </notification> |
6392 | 6505 | ||
6506 | <notification | ||
6507 | icon="alert.tga" | ||
6508 | name="ConfirmMuteAgent" | ||
6509 | type="alert"> | ||
6510 | Are you sure you want to mute [NAME] (resident)? | ||
6511 | <usetemplate | ||
6512 | ignoretext="When muting a Resident" | ||
6513 | name="okcancelignore" | ||
6514 | notext="Cancel" | ||
6515 | yestext="Mute"/> | ||
6516 | </notification> | ||
6517 | |||
6518 | <notification | ||
6519 | icon="alert.tga" | ||
6520 | name="ConfirmMuteObject" | ||
6521 | type="alert"> | ||
6522 | Are you sure you want to mute [NAME] (object)? | ||
6523 | <usetemplate | ||
6524 | ignoretext="When muting an object" | ||
6525 | name="okcancelignore" | ||
6526 | notext="Cancel" | ||
6527 | yestext="Mute"/> | ||
6528 | </notification> | ||
6529 | |||
6530 | <notification | ||
6531 | icon="alertmodal.tga" | ||
6532 | name="ConfirmToggleFullscreen" | ||
6533 | type="alertmodal"> | ||
6534 | Are you sure you want to toggle fullscreen mode? | ||
6535 | <usetemplate | ||
6536 | name="okcancelbuttons" | ||
6537 | notext="Cancel" | ||
6538 | yestext="Toggle"/> | ||
6539 | </notification> | ||
6540 | |||
6541 | <notification | ||
6542 | icon="alert.tga" | ||
6543 | name="ConfirmRemoveAllClothes" | ||
6544 | type="alert"> | ||
6545 | Are you sure you want to take off all clothes? | ||
6546 | <usetemplate | ||
6547 | ignoretext="When taking off all clothes" | ||
6548 | name="okcancelignore" | ||
6549 | notext="Cancel" | ||
6550 | yestext="Take Off"/> | ||
6551 | </notification> | ||
6552 | |||
6553 | <notification | ||
6554 | icon="alert.tga" | ||
6555 | name="ConfirmRestoreToWorld" | ||
6556 | type="alert"> | ||
6557 | Are you sure you want to restore the object to its last position? | ||
6558 | |||
6559 | WARNING: Don't restore if you aren't sure where the object will go! | ||
6560 | |||
6561 | [_URL] | ||
6562 | <url option="0" name="url"> | ||
6563 | |||
6564 | http://imprudenceviewer.org/wiki/Restore_to_Last_Position | ||
6565 | </url> | ||
6566 | <usetemplate | ||
6567 | ignoretext="Warn about lack of age verification" | ||
6568 | name="okcancelignore" | ||
6569 | notext="Cancel" | ||
6570 | yestext="Restore"/> | ||
6571 | </notification> | ||
6572 | |||
6573 | <notification | ||
6574 | icon="alertmodal.tga" | ||
6575 | name="ConfirmTeleportHome" | ||
6576 | type="alertmodal"> | ||
6577 | Are you sure you want to teleport home? | ||
6578 | <usetemplate | ||
6579 | ignoretext="When teleporting home" | ||
6580 | name="okcancelignore" | ||
6581 | notext="Cancel" | ||
6582 | yestext="Teleport"/> | ||
6583 | </notification> | ||
6584 | |||
6585 | <notification | ||
6586 | icon="alert.tga" | ||
6587 | name="IMLogNotFound" | ||
6588 | type="alert"> | ||
6589 | IM history could not be found for [NAME]. | ||
6590 | <usetemplate | ||
6591 | name="okbutton" | ||
6592 | yestext="OK"/> | ||
6593 | </notification> | ||
6594 | |||
6595 | <!--End Imprudence notifications--> | ||
6596 | |||
6393 | <global name="UnsupportedCPU"> | 6597 | <global name="UnsupportedCPU"> |
6394 | - Your CPU speed does not meet the minimum requirements. | 6598 | - Your CPU speed does not meet the minimum requirements. |
6395 | </global> | 6599 | </global> |
6396 | 6600 | ||
6397 | <global name="UnsupportedGLRequirements"> | 6601 | <global name="UnsupportedGLRequirements"> |
6398 | You do not appear to have the proper hardware requirements for Second Life. Second Life requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system. | 6602 | You do not appear to have the proper hardware requirements for Second Life. Second Life requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system. |
6399 | 6603 | ||
6400 | If you continue to have problems, please visit: http://www.secondlife.com/support | 6604 | If you continue to have problems, please visit: http://www.secondlife.com/support |
6401 | </global> | 6605 | </global> |
6402 | 6606 | ||
6403 | <global name="UnsupportedCPUAmount"> | 6607 | <global name="UnsupportedCPUAmount"> |
@@ -6423,5 +6627,6 @@ Yes | |||
6423 | <global name="PermNo"> | 6627 | <global name="PermNo"> |
6424 | No | 6628 | No |
6425 | </global> | 6629 | </global> |
6630 | |||
6426 | </notifications> | 6631 | </notifications> |
6427 | 6632 | ||