summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default/xui/en/menu_gallery_inventory.xml
blob: c11f1c88cb7991c06fed79d6bfd86f1e8b9e82ef (plain)
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<context_menu
    layout="topleft"
    name="Gallery">
    <menu_item_call
     label="Share"
     layout="topleft"
     name="Share">
        <menu_item_call.on_click
         function="Inventory.Share" />
    </menu_item_call>
    <menu_item_call
     label="Empty Trash"
     layout="topleft"
     name="Empty Trash">
        <menu_item_call.on_click
         function="Inventory.EmptyTrash"/>
    </menu_item_call>
    <menu_item_call
     label="Empty Lost And Found"
     layout="topleft"
     name="Empty Lost And Found">
        <menu_item_call.on_click
         function="Inventory.EmptyLostAndFound"/>
    </menu_item_call>
    <menu_item_call
     label="Teleport"
     layout="topleft"
     name="Landmark Open">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="open" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft"
     name="Folder Wearables Separator" />
    <menu_item_call
     label="Replace current outfit"
     layout="topleft"
     name="Replace Outfit">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="replaceoutfit" />
    </menu_item_call>
    <menu_item_call
     label="Add folder items"
     layout="topleft"
     name="Add To Outfit">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="addtooutfit" />
    </menu_item_call>
    <menu_item_call
     label="Take off folder items"
     layout="topleft"
     name="Remove From Outfit">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="removefromoutfit" />
    </menu_item_call>
    <menu_item_call
     label="Copy outfit list to clipboard"
     layout="topleft"
     name="Copy outfit list to clipboard">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="copyoutfittoclipboard" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft"
     name="Outfit Separator" />
    <menu_item_call
     label="Find Original"
     layout="topleft"
     name="Find Original">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="goto" />
    </menu_item_call>
    <menu_item_call
     label="Purge Item"
     layout="topleft"
     name="Purge Item">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="purge"/>
    </menu_item_call>
    <menu_item_call
     label="Restore Item"
     layout="topleft"
     name="Restore Item">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="restore" />
    </menu_item_call>
    <menu_item_call
     label="Open"
     layout="topleft"
     name="Open">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="open" />
    </menu_item_call>
    <menu_item_call
     label="Open Original"
     layout="topleft"
     name="Open Original">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="open_original" />
    </menu_item_call>
    <menu_item_call
     label="Properties"
     layout="topleft"
     name="Properties">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="properties" />
    </menu_item_call>
    <menu_item_call
     label="Image..."
     layout="topleft"
     name="thumbnail">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="thumbnail" />
    </menu_item_call>
    <menu_item_call
     label="Copy Asset UUID"
     layout="topleft"
     name="Copy Asset UUID">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="copy_uuid" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Copy Separator" />
    <menu_item_call
     label="Open"
     layout="topleft"
     name="open_in_current_window">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="open_selected_folder" />
    </menu_item_call>
    <menu_item_call
     label="Open in new window"
     layout="topleft"
     name="open_in_new_window">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="open_in_new_window" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft"
     name="Open Folder Separator" />
    <menu_item_call
     label="Rename"
     layout="topleft"
     name="Rename">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="rename" />
    </menu_item_call>
    <menu_item_call
     label="Cut"
     layout="topleft"
     name="Cut">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="cut" />
    </menu_item_call>
    <menu_item_call
     label="Copy"
     layout="topleft"
     name="Copy">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="copy" />
    </menu_item_call>
    <menu_item_call
     label="Paste"
     layout="topleft"
     name="Paste">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="paste" />
    </menu_item_call>
    <menu_item_call
     label="Paste As Link"
     layout="topleft"
     name="Paste As Link">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="paste_link" />
    </menu_item_call>
    <menu_item_call
     label="Replace Links"
     layout="topleft"
     name="Replace Links">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="replace_links" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Paste Separator" />
    <menu_item_call
     label="Delete"
     layout="topleft"
     name="Delete">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="delete" />
    </menu_item_call>
    <menu_item_call
     label="Delete System Folder"
     layout="topleft"
     name="Delete System Folder">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="delete_system_folder" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" />
    <menu_item_separator
     layout="topleft" />
    <menu_item_call
     label="Play"
     layout="topleft"
     name="Sound Play">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="sound_play" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft"
     name="Landmark Separator" />
    <menu_item_call
    label="Copy SLurl"
    layout="topleft"
    name="url_copy">
       <menu_item_call.on_click
        function="Inventory.DoToSelected"
        parameter="copy_slurl" />
   </menu_item_call> 
   <menu_item_call
     label="About Landmark"
     layout="topleft"
     name="About Landmark">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="about" />
    </menu_item_call>
   <menu_item_call
     label="Show on Map"
     layout="topleft"
     name="show_on_map">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="show_on_map" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Animation Separator" />
    <menu_item_call
     label="Play Inworld"
     layout="topleft"
     name="Animation Play">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="playworld" />
    </menu_item_call>
    <menu_item_call
     label="Play Locally"
     layout="topleft"
     name="Animation Audition">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="playlocal" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Send Instant Message Separator" />
    <menu_item_call
     label="Send Instant Message"
     layout="topleft"
     name="Send Instant Message">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="begin_im" />
    </menu_item_call>
    <menu_item_call
     label="Offer Teleport..."
     layout="topleft"
     name="Offer Teleport...">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="lure" />
    </menu_item_call>
    <menu_item_call
     label="Request Teleport..."
     layout="topleft"
     name="Request Teleport...">
        <menu_item_call.on_click
        function="Inventory.DoToSelected"
        parameter="request_lure" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Gesture Separator" />
    <menu_item_call
     label="Activate"
     layout="topleft"
     name="Activate">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="activate" />
    </menu_item_call>
    <menu_item_call
     label="Deactivate"
     layout="topleft"
     name="Deactivate">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="deactivate" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Texture Separator" />
    <menu_item_call
     label="Save As"
     layout="topleft"
     name="Save As">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="save_as" />
    </menu_item_call>
  <menu_item_call
 label="Save Selected As"
 layout="topleft"
 name="Save Selected As">
    <menu_item_call.on_click
     function="Inventory.DoToSelected"
     parameter="save_selected_as" />
  </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Wearable And Object Separator"/>
    <menu_item_call
     label="Wear"
     layout="topleft"
     name="Wearable And Object Wear">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="wear" />
    </menu_item_call>
    <menu
     label="Attach To"
     layout="topleft"
     name="Attach To" />
    <menu
     label="Attach To HUD"
     layout="topleft"
     name="Attach To HUD" />
    <menu_item_call
     label="Touch"
     layout="topleft"
     name="Attachment Touch">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="touch" />
    </menu_item_call>
    <menu_item_call
     label="Edit"
     layout="topleft"
     name="Wearable Edit">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="edit" />
    </menu_item_call>
    <menu_item_call
     label="Add"
     layout="topleft"
     name="Wearable Add">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="wear_add" />
    </menu_item_call>
    <menu_item_call
     label="Detach From Yourself"
     layout="topleft"
     name="Detach From Yourself">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="detach" />
    </menu_item_call>
    <menu_item_call
     label="Take Off"
     layout="topleft"
     name="Take Off">
        <menu_item_call.on_click
         function="Inventory.DoToSelected"
         parameter="take_off" />
    </menu_item_call>
    <menu_item_separator
     layout="topleft" 
     name="Settings Separator" />
    <menu_item_call
            name="Settings Apply Local"
            layout="topleft"
            label="Apply Only To Myself">
        <menu_item_call.on_click 
                function="Inventory.DoToSelected"
                parameter="apply_settings_local" />
    </menu_item_call>
    <menu_item_call
            name="Settings Apply Parcel"
            layout="topleft"
            label="Apply To Parcel">
        <menu_item_call.on_click 
                function="Inventory.DoToSelected"
                parameter="apply_settings_parcel" />
    </menu_item_call>
  <menu_item_separator
   layout="topleft"
   name="Subfolder Separator" />
  <menu_item_call
   label="Create folder from selected"
   layout="topleft"
   name="New folder from selected">
    <menu_item_call.on_click
     function="Inventory.DoToSelected"
     parameter="new_folder_from_selected" />
  </menu_item_call>
  <menu_item_call
   label="Ungroup folder items"
   layout="topleft"
   name="Ungroup folder items">
    <menu_item_call.on_click
     function="Inventory.DoToSelected"
     parameter="ungroup_folder_items" />
  </menu_item_call>
  <menu
   label="Use as default for"
   layout="topleft"
   name="upload_def">
    <menu_item_call
     label="Image uploads"
     layout="topleft"
     name="Image uploads">
      <menu_item_call.on_click
       function="Inventory.FileUploadLocation"
        parameter="texture" />
      <menu_item_call.on_visible
       function="Inventory.CanSetUploadLocation" />
    </menu_item_call>
    <menu_item_call
     label="Sound uploads"
     layout="topleft"
     name="Sound uploads">
      <menu_item_call.on_click
       function="Inventory.FileUploadLocation"
       parameter="sound" />
      <menu_item_call.on_visible
       function="Inventory.CanSetUploadLocation" />
    </menu_item_call>
    <menu_item_call
     label="Animation uploads"
     layout="topleft"
     name="Animation uploads">
      <menu_item_call.on_click
       function="Inventory.FileUploadLocation"
       parameter="animation" />
      <menu_item_call.on_visible
       function="Inventory.CanSetUploadLocation" />
    </menu_item_call>
    <menu_item_call
     label="Model uploads"
     layout="topleft"
     name="Model uploads">
      <menu_item_call.on_click
       function="Inventory.FileUploadLocation"
       parameter="model" />
      <menu_item_call.on_visible
       function="Inventory.CanSetUploadLocation" />
    </menu_item_call>
  </menu>
	<menu_item_separator
	 layout="topleft"
	 name="Marketplace Separator" />
	<menu_item_call
        label="Copy to Marketplace Listings"
        layout="topleft"
        name="Marketplace Copy">
		<menu_item_call.on_click
        function="Inventory.DoToSelected"
        parameter="copy_to_marketplace_listings" />
	</menu_item_call>
	<menu_item_call
        label="Move to Marketplace Listings"
        layout="topleft"
        name="Marketplace Move">
		<menu_item_call.on_click
        function="Inventory.DoToSelected"
        parameter="move_to_marketplace_listings" />
	</menu_item_call>
	<menu_item_call
     label="--no options--"
     layout="topleft"
     name="--no options--" />
    <menu_item_separator
     layout="topleft" />
</context_menu>