1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<notifications>
<notify name="SystemMessageTip" tip="true">
<message name="message">
[MESSAGE]
</message>
</notify>
<notify name="Cancelled" tip="true">
<message name="message">
Cancelled
</message>
</notify>
<notify name="CancelledSit" tip="true">
<message name="message">
Cancelled Sit
</message>
</notify>
<notify name="CancelledAttach" tip="true">
<message name="message">
Cancelled Attach
</message>
</notify>
<notify name="ReplacedMissingWearable" tip="true">
<message name="message">
Replaced missing clothing/body part with default.
</message>
</notify>
<notify name="FriendOnline" tip="true">
<message name="message">
[FIRST] [LAST] is Online
</message>
</notify>
<notify name="FriendOffline" tip="true">
<message name="message">
[FIRST] [LAST] is Offline
</message>
</notify>
<notify name="AddSelfFriend" tip="true">
<message name="message">
You cannot add yourself as a friend.
</message>
</notify>
<notify name="UploadingAuctionSnapshot" tip="true">
<message name="message">
Uploading in-world and web site snapshots...
(Takes about 5 minutes.)
</message>
</notify>
<notify name="UploadPayment" tip="false">
<message name="message">
You paid L$[AMOUNT] to upload.
</message>
</notify>
<notify name="UploadingSnapshot" tip="true">
<message name="message">
Uploading in-world snapshot...
(Takes a minute or so.)
</message>
</notify>
<notify name="UploadWebSnapshotDone" tip="true">
<message name="message">
Web site snapshot upload done.
</message>
</notify>
<notify name="UploadSnapshotDone" tip="true">
<message name="message">
In-world snapshot upload done
</message>
</notify>
<notify name="TerrainDownloaded" tip="true">
<message name="message">
Terrain.raw downloaded
</message>
</notify>
<notify name="InMaxGroups" tip="true">
<message name="message">
You are already in the maximum number of groups. You will need to leave a group before you can create one.
</message>
</notify>
<notify name="GestureMissing" tip="true">
<message name="message">
Gesture is missing from database.
</message>
</notify>
<notify name="UnableToLoadGesture" tip="true">
<message name="message">
Unable to load gesture.
Please try again.
</message>
</notify>
<notify name="InventoryLoaded" tip="true">
<message name="message">
Your inventory is loaded.
</message>
</notify>
<notify name="LandmarkMissing" tip="true">
<message name="message">
Landmark is missing from database.
</message>
</notify>
<notify name="UnableToLoadLandmark" tip="true">
<message name="message">
Unable to load landmark. Please try again.
</message>
</notify>
<notify name="CapsKeyOn" tip="true">
<message name="message">
Your Caps Lock key is on.
As this will affect the password you type in,
you will probably want to turn it off.
</message>
</notify>
<notify name="NotecardMissing" tip="true">
<message name="message">
Notecard is missing from database.
</message>
</notify>
<notify name="NotecardNoPermissions" tip="true">
<message name="message">
Insufficient permissions to view notecard.
</message>
</notify>
<notify name="UnableToLoadNotecard" tip="true">
<message name="message">
Unable to load notecard.
Please try again.
</message>
</notify>
<notify name="ScriptMissing" tip="true">
<message name="message">
Script is missing from database.
</message>
</notify>
<notify name="ScriptNoPermissions" tip="true">
<message name="message">
Insufficient permissions to view script.
</message>
</notify>
<notify name="UnableToLoadScript" tip="true">
<message name="message">
Unable to load script. Please try again.
</message>
</notify>
<notify name="IncompleteInventory" tip="true">
<message name="message">
The complete contents you are offering are not yet
locally available. Please try offering those items
again in a minute.
</message>
</notify>
<notify name="CannotModifyProtectedCategories" tip="true">
<message name="message">
You cannot modify protected categories.
</message>
</notify>
<notify name="CannotRemoveProtectedCategories" tip="true">
<message name="message">
You cannot remove protected categories.
</message>
</notify>
<notify name="OfferedCard" tip="true">
<message name="message">
You have offered a calling card to [FIRST] [LAST]
</message>
</notify>
<notify name="OfferedFriendship" tip="true">
<message name="message">
You have offered friendship to [FIRST] [LAST]
</message>
</notify>
<notify name="UnableToBuyWhileDownloading" tip="true">
<message name="message">
Unable to buy while downloading object data.
Please try again.
</message>
</notify>
<notify name="UnableToLinkWhileDownloading" tip="true">
<message name="message">
Unable to link while downloading object data.
Please try again.
</message>
</notify>
<notify name="CannotBuyObjectsFromDifferentOwners" tip="true">
<message name="message">
Cannot buy objects from different owners at the same time.
Please select a single object.
</message>
</notify>
<notify name="ObjectNotForSale" tip="true">
<message name="message">
Object does not appear to be for sale.
</message>
</notify>
<notify name="EnteringGodMode" tip="true">
<message name="message">
Entering god mode, level [LEVEL]
</message>
</notify>
<notify name="LeavingGodMode" tip="true">
<message name="message">
Leaving god mode, level [LEVEL]
</message>
</notify>
<notify name="CopyFailed" tip="true">
<message name="message">
Copy failed because you lack copy permission
</message>
</notify>
<notify name="InventoryAccepted" tip="true">
<message name="message">
[NAME] accepted your inventory offer.
</message>
</notify>
<notify name="InventoryDeclined" tip="true">
<message name="message">
[NAME] declined your inventory offer.
</message>
</notify>
<notify name="ObjectMessage" tip="true">
<message name="message">
[NAME]: [MESSAGE]
</message>
</notify>
<notify name="CallingCardAccepted" tip="true">
<message name="message">
Your calling card was accepted.
</message>
</notify>
<notify name="CallingCardDeclined" tip="true">
<message name="message">
Your calling card was declined.
</message>
</notify>
<notify name="TeleportToLandmark" tip="true">
<message name="message">
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.
Double click on the landmark and click on Teleport to travel there.
</message>
</notify>
<notify name="TeleportToPerson" tip="true">
<message name="message">
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.
Double click on the card, click on Instant Message, and type a message.
</message>
</notify>
<notify name="CantSelectLandFromMultipleRegions" tip="true">
<message name="message">
Can't select land across server boundaries.
Try selecting a smaller piece of land.
</message>
</notify>
<notify name="GenerticNotify" tip="false">
<message name="message">
[MESSAGE]
</message>
</notify>
<notify name="GroupVote" tip="false">
<message name="message">
[NAME] has proposed to vote on:
[MESSAGE]
</message>
<option name="VoteNow">
Vote Now
</option>
<option name="Later">
Later
</option>
</notify>
<notify name="GroupElection" tip="false">
<message name="message">
[NAME] has started an election:
[MESSAGE]
</message>
<option name="VoteNow">
Vote Now
</option>
<option name="Later">
Later
</option>
</notify>
<notify name="SystemMessage" tip="false">
<message name="message">
[MESSAGE]
</message>
</notify>
<notify name="EventNotification" tip="false">
<message name="message">
Event Notification:
[NAME]
[DATE]
</message>
<option name="Teleport">
Teleport
</option>
<option name="Description">
Description
</option>
<option name="Cancel">
Cancel
</option>
</notify>
<notify name="TransferObjectsHighlighted" tip="false">
<message name="message">
All objects on this parcel that will transfer
to the purchaser of this parcel are now highlighted.
* Trees and grasses that will transfer are not highlighted.
</message>
<option name="Done">
Done
</option>
</notify>
<notify name="DeactivatedGesturesTrigger" tip="false">
<message name="message">
Deactivated gestures with same trigger:
[NAMES]
</message>
</notify>
<notify name="InventoryNetworkCorruption" tip="false">
<message name="message">
Inventory could not be loaded because of network corruption. This indicates a bad network connection.
</message>
</notify>
<notify name="NoQuickTime" tip="false">
<message name="message">
Apple's QuickTime software does not appear to be installed on your system.
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.
</message>
</notify>
<notify name="OwnedObjectsReturned" tip="false">
<message name="message">
The objects you own on the selected parcel of land
have been returned back to your inventory.
</message>
</notify>
<notify name="OtherObjectsReturned" tip="false">
<message name="message">
The objects on the selected parcel of land
that is owned by [FIRST] [LAST]
have been returned to his or her inventory.
</message>
</notify>
<notify name="OtherObjectsReturned2" tip="false">
<message name="message">
The objects on the selected parcel of land
owned by the resident '[NAME]'
have been returned to their owner.
</message>
</notify>
<notify name="GroupObjectsReturned" tip="false">
<message name="message">
The objects on the selected parcel of land shared with the group [GROUPNAME] have been returned back to their owner's inventory.
Transferable deeded objects have been returned to their previous owners.
Non-transferable objects that are deeded to the group have been deleted.
</message>
</notify>
<notify name="UnOwnedObjectsReturned" tip="false">
<message name="message">
The objects on the selected parcel that are NOT owned by you have been returned to their owners.
</message>
</notify>
<notify name="NotSafe" tip="false" unique="true">
<message name="message">
This land has damage enabled ('not safe').
You can be hurt here. If you die, you will be teleported to your home location.
</message>
</notify>
<notify name="NoFly" tip="false" unique="true">
<message name="message">
This land has flying disabled ('no fly').
You cannot fly here.
</message>
</notify>
<notify name="PushRestricted" tip="false" unique="true">
<message name="message">
This land is 'llPushObject Restricted'.
You cannot push others here unless you own the land.
</message>
</notify>
<notify name="VoiceAvailablity" tip="false" unique="true">
<message name="message">
This land has voice enabled.
</message>
</notify>
<notify name="NoBuild" tip="false" unique="true">
<message name="message">
This land has building disabled ('no build').
You cannot create objects here.
</message>
</notify>
<notify name="ScriptsStopped" tip="false">
<message name="message">
An administrator has temporarily stopped scripts in this region.
</message>
</notify>
<notify name="ScriptsNotRunning" tip="false">
<message name="message">
This region is not running any scripts.
</message>
</notify>
<notify name="NoOutsideScripts" tip="false">
<message name="message">
This land has outside scripts disabled
('no outside scripts').
No scripts will run except those belonging to the land owner.
</message>
</notify>
<notify name="ApproveURL" tip="false">
<message name="message">
An object wants to display this web page on its surface:
[URL]
</message>
<option name="LoadPage">
Load Page
</option>
<option name="Don'tLoad">
Don't Load
</option>
</notify>
<notify name="ClaimPublicLand" tip="false">
<message name="message">
Can only claim public land in region you're in.
</message>
</notify>
<notify name="ObjectGiveItem" tip="false">
<message name="message">
An object named [OBJECTFROMNAME] owned by [FIRST] [LAST] has given you a [OBJECTTYPE] named [OBJECTNAME].
</message>
<option name="Keep">
Keep
</option>
<option name="Discard">
Discard
</option>
<option name="Mute">
Mute
</option>
</notify>
<notify name="ObjectGiveItemUnknownUser" tip="false">
<message name="message">
An object named [OBJECTFROMNAME] owned by (an unknown user) has given you a [OBJECTTYPE] named [OBJECTNAME].
</message>
<option name="Keep">
Keep
</option>
<option name="Discard">
Discard
</option>
<option name="Mute">
Mute
</option>
</notify>
<notify name="UserGiveItem" tip="false">
<message name="message">
[NAME] has given you a [OBJECTTYPE] named '[OBJECTNAME]'.
</message>
<option name="Keep">
Keep
</option>
<option name="Discard">
Discard
</option>
<option name="Mute">
Mute
</option>
</notify>
<notify name="GodMessage" tip="false">
<message name="message">
[NAME]
[MESSAGE]
</message>
</notify>
<notify name="JoinGroup" tip="false">
<message name="message">
[MESSAGE]
</message>
<option name="Join">
Join
</option>
<option name="Decline">
Decline
</option>
<option name="Info">
Info
</option>
</notify>
<notify name="JoinGroupOfficerNoFee" tip="false">
<message name="message">
[NAME] has invited you
to join a group as an officer.
There is no cost to join this group.
[MESSAGE]
</message>
<option name="Join">
Join
</option>
<option name="Decline">
Decline
</option>
<option name="Info">
Info
</option>
</notify>
<notify name="JoinGroupMember" tip="false">
<message name="message">
[NAME] has invited you
to join a group as a member.
To join this group, you will have to pay a signup fee of L$[COST]
[MESSAGE]
</message>
<option name="Join">
Join
</option>
<option name="Decline">
Decline
</option>
<option name="Info">
Info
</option>
</notify>
<notify name="JoinGroupMemberNoFee" tip="false">
<message name="message">
[NAME] has invited you
to join a group as a member.
There is no cost to join this group.
[MESSAGE]
</message>
<option name="Join">
Join
</option>
<option name="Decline">
Decline
</option>
<option name="Info">
Info
</option>
</notify>
<notify name="OfferTeleport" tip="false">
<message name="message">
[NAME] has offered to teleport you
to his or her location:
[MESSAGE]
</message>
<option name="Teleport">
Teleport
</option>
<option name="Cancel">
Cancel
</option>
</notify>
<notify name="GotoURL" tip="false">
<message name="message">
[MESSAGE]
[URL]
</message>
<option name="Later">
Later
</option>
<option name="GoNow...">
Go Now...
</option>
</notify>
<notify name="OfferFriendship" tip="false">
<message name="message">
[NAME] is offering friendship.
By default, you will be able to
see each other's online status.
</message>
<option name="Accept">
Accept
</option>
<option name="Decline">
Decline
</option>
</notify>
<notify name="FriendshipAccepted" tip="false">
<message name="message">
[NAME] accepted your friendship offer.
</message>
</notify>
<notify name="FriendshipDeclined" tip="false">
<message name="message">
[NAME] declined your friendship offer.
</message>
</notify>
<notify name="OfferCallingCard" tip="false">
<message name="message">
[FIRST] [LAST] is offering their calling card.
This will add a bookmark in your inventory
so you can quickly IM this resident.
</message>
<option name="Accept">
Accept
</option>
<option name="Decline">
Decline
</option>
</notify>
<notify name="RegionRestartMinutes" tip="false">
<message name="message">
Region is restarting in [MINUTES] minutes.
If you remain in this region you will be logged out.
</message>
</notify>
<notify name="RegionRestartSeconds" tip="false">
<message name="message">
Region is restarting in [SECONDS] seconds.
If you remain in this region you will be logged out.
</message>
</notify>
<notify name="LoadWebPage" tip="false">
<message name="message">
Load web page [URL]?
[MESSAGE]
From object: [OBJECTNAME], owner: [NAME]?
</message>
<option name="Gotopage">
Go to page
</option>
<option name="Cancel">
Cancel
</option>
</notify>
<notify name="FailedToLoadWearableUnnamed" tip="false">
<message name="message">
Failed to load [TYPE].
Please notify the vendor from whom you purchased this item.
</message>
</notify>
<notify name="FailedToLoadWearable" tip="false">
<message name="message">
Failed to load [TYPE] named [DESC].
Please notify the vendor from whom you purchased this item.
</message>
</notify>
<notify name="FailedToFindWearableUnnamed" tip="false">
<message name="message">
Failed to find [TYPE] in database.
</message>
</notify>
<notify name="FailedToFindWearable" tip="false">
<message name="message">
Failed to find [TYPE] named [DESC] in database.
</message>
</notify>
<notify name="ScriptTakeMoney" tip="false" caution="true">
<message name="message">
Take Linden dollars (L$) from you
</message>
</notify>
<notify name="ActOnControlInputs" tip="false">
<message name="message">
Act on your control inputs
</message>
</notify>
<notify name="RemapControlInputs" tip="false">
<message name="message">
Remap your control inputs
</message>
</notify>
<notify name="AnimateYourAvatar" tip="false">
<message name="message">
Animate your avatar
</message>
</notify>
<notify name="AttachToYourAvatar" tip="false">
<message name="message">
Attach to your avatar
</message>
</notify>
<notify name="ReleaseOwnership" tip="false">
<message name="message">
Release ownership and become public
</message>
</notify>
<notify name="LinkAndDelink" tip="false">
<message name="message">
Link and delink from other objects
</message>
</notify>
<notify name="AddAndRemoveJoints" tip="false">
<message name="message">
Add and remove joints with other objects
</message>
</notify>
<notify name="ChangePermissions" tip="false">
<message name="message">
Change its permissions
</message>
</notify>
<notify name="TrackYourCamera" tip="false">
<message name="message">
Track your camera
</message>
</notify>
<notify name="ControlYourCamera" tip="false">
<message name="message">
Control your camera
</message>
</notify>
<!-- the normal permissions prompt -->
<notify name="ScriptQuestion" tip="false">
<message name="message">
'[OBJECTNAME]', an object owned by '[NAME]', would like to:
[QUESTIONS]
Is this OK?
</message>
<option name="Yes">
Yes
</option>
<option name="No">
No
</option>
</notify>
<!-- the special chat messages to log when caution permissions have been granted or denied -->
<notify name="ScriptQuestionCautionChatGranted" tip="false">
<message name="message">'[OBJECTNAME]', an object owned by '[OWNERNAME]', located in [REGIONNAME] at [REGIONPOS], has been granted permission to: [PERMISSIONS].</message>
</notify>
<notify name="ScriptQuestionCautionChatDenied" tip="false">
<message name="message">'[OBJECTNAME]', an object owned by '[OWNERNAME]', located in [REGIONNAME] at [REGIONPOS], has been denied permission to: [PERMISSIONS].</message>
</notify>
<!-- the special title to display at the top of a caution permissions prompt -->
<notify name="ScriptQuestionCautionWarn" tip="false">
<message name="message">An object wants permission to take Linden dollars (L$) from your account.</message>
</notify>
<!-- the caution permssions prompt, when auto-deny is disabled -->
<notify name="ScriptQuestionCaution" tip="false" caution="true">
<message name="message">
'[OBJECTNAME]', an object owned by '[NAME]', would like to:
[QUESTIONS]
If you do not trust this object and its creator, you should deny the request. For additional information, click the Details button.
Grant this request?
</message>
<option name="Grant">
Grant
</option>
<option name="Deny" default="true">
Deny
</option>
<!-- details button MUST be the last button -->
<option name="Details">
Details...
</option>
</notify>
<notify name="ScriptDialog" tip="false">
<message name="message">
[FIRST] [LAST]'s '[TITLE]'
[MESSAGE]
</message>
<option name="Ignore">
Ignore
</option>
</notify>
<notify name="ScriptDialogGroup" tip="false">
<message name="message">
[GROUPNAME]'s '[TITLE]'
[MESSAGE]
</message>
<option name="Ignore">
Ignore
</option>
</notify>
<notify name="FirstBalanceIncrease" tip="false">
<message name="message">
You just received L$[AMOUNT].
Objects and other users may give you L$.
Your balance is shown in the
upper-right corner of the screen.
</message>
</notify>
<notify name="FirstBalanceDecrease" tip="false">
<message name="message">
You just paid L$[AMOUNT].
Your balance is shown in the upper-right
corner of the screen.
</message>
</notify>
<notify name="FirstSit" tip="false">
<message name="message">
You are sitting.
Use the arrow keys (or AWSD) to change the view.
Click the 'Stand Up' button to get up.
</message>
</notify>
<notify name="FirstMap" tip="false">
<message name="message">
Click and drag to scroll the map.
Double-click to teleport.
Use the controls on the right to find things
and display different backgrounds.
</message>
</notify>
<notify name="FirstBuild" tip="false">
<message name="message">
You can build new objects in some areas of [SECOND_LIFE].
Use the tools in the upper left to build, and try
holding down Ctrl or Alt to rapidly switch tools.
Press Esc to stop building.
</message>
</notify>
<notify name="FirstLeftClickNoHit" tip="false">
<message name="message">
Left-clicking interacts with special objects.
If the mouse pointer changes to a hand,
you can interact with the object.
Right-click always shows a menu of things you can do.
</message>
</notify>
<notify name="FirstTeleport" tip="false">
<message name="message">
You have just teleported.
You are at the Infohub nearest your destination.
Your destination is marked with a tall red beacon.
</message>
</notify>
<notify name="FirstOverrideKeys" tip="false">
<message name="message">
Your movement keys are now being handled by an object.
Try the arrow keys or AWSD to see what they do.
Some objects (like guns) require you to go into mouselook to use them.
Press 'M' to do this.
</message>
</notify>
<notify name="FirstAppearance" tip="false">
<message name="message">
You are editing your appearance.
To rotate and zoom view, use the arrow keys.
When you are finished, press 'Save All'
to save your look and exit.
You can edit your appearance as often as you like.
</message>
</notify>
<notify name="FirstInventory" tip="false">
<message name="message">
This is your inventory, which contains objects, notecards, clothing, and other things you own.
* To wear an object or outfit folder, drag it onto yourself.
* To bring an object into the world, drag it onto the ground.
* To read a notecard, double-click it.
</message>
</notify>
<notify name="FirstSandbox" tip="false">
<message name="message">
This is a sandbox region.
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.
Sandbox regions are uncommon, and are marked with signs.
</message>
</notify>
<notify name="FirstFlexible" tip="false">
<message name="message">
This object is flexible.
Flexible objects may not be physical and must be phantom
until the flexible checkbox is unchecked.
</message>
</notify>
<notify name="FirstDebugMenus" tip="false">
<message name="message">
You have enabled the Client and Server debugging menus.
These menus contain features useful for developers debugging Second Life.
To toggle these menus on and off press Ctrl-Alt-D. On a Mac press Cmd-Opt-Shift-D.
</message>
</notify>
<notify name="FirstSculptedPrim" tip="false">
<message name="message">
You are editing a sculpted prim.
Sculpted prims require a special texture to specify their shape.
You can find example sculpted textures in the system library.
</message>
</notify>
<notify name="MaxListSelectMessage" tip="true">
<message name="message">
You may only select up to [MAX_SELECT] items
from this list.
</message>
</notify>
<notify name="VoiceInviteP2P" tip="false" unique="true">
<message name="message">
[NAME] is inviting you to a Voice Chat call.
Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this caller.
</message>
<option name="Accept">
Accept
</option>
<option name="Decline">
Decline
</option>
<option name="Mute">
Mute
</option>
</notify>
<notify name="VoiceInviteGroup" tip="false" unique="true">
<message name="message">
[NAME] has joined a Voice Chat call with the group [GROUP].
Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this caller.
</message>
<option name="Accept">
Accept
</option>
<option name="Decline">
Decline
</option>
<option name="Mute">
Mute
</option>
</notify>
<notify name="VoiceInviteAdHoc" tip="false" unique="true">
<message name="message">
[NAME] is inviting you to a Voice Chat conference call.
Click Accept to join the call or Decline to decline the invitation. Click Mute to mute this caller.
</message>
<option name="Accept">
Accept
</option>
<option name="Decline">
Decline
</option>
<option name="Mute">
Mute
</option>
</notify>
<notify name="VoiceChannelFull" tip="true" unique="true">
<message name="message">
The voice call you are trying to join, [VOICE_CHANNEL_NAME], has reached maximum capacity. Please try again later.
</message>
</notify>
<notify name="ProximalVoiceChannelFull" tip="true" unique="true">
<message name="message">
We're sorry. This area has has reached maximum capacity for voice conversations. Please try to use voice in another area.
</message>
</notify>
<notify name="VoiceChannelDisconnected" tip="true" unique="true">
<message name="message">
You have been disconnected from [VOICE_CHANNEL_NAME]. You will now be reconnected to spatial voice chat.
</message>
</notify>
<notify name="VoiceChannelDisconnectedP2P" tip="true" unique="true">
<message name="message">
[VOICE_CHANNEL_NAME] has ended the call. You will now be reconnected to spatial voice chat.
</message>
</notify>
<notify name="P2PCallDeclined" tip="true" unique="true">
<message name="message">
[VOICE_CHANNEL_NAME] has declined your call. You will now be reconnected to spatial voice chat.
</message>
</notify>
<notify name="P2PCallNoAnswer" tip="true" unique="true">
<message name="message">
[VOICE_CHANNEL_NAME] is not available to take your call. You will now be reconnected to spatial voice chat.
</message>
</notify>
<notify name="VoiceChannelJoinFailed" tip="true" unique="true">
<message name="message">
Failed to connect to [VOICE_CHANNEL_NAME], please try again later. You will now be reconnected to spatial voice chat.
</message>
</notify>
<notify name="VoiceLoginRetry" tip="true" unique="true" duration="10">
<message name="message">
We are creating a voice channel for you. This may take up to one minute.
</message>
</notify>
</notifications>
|