blob: ece75e2576457c7dd7018660f27fb3f53c4b0cf0 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
name="linkreplace"
help_topic="linkreplace"
positioning="centered"
title="REPLACE INVENTORY LINKS"
width="333"
height="130"
save_rect="true"
can_minimize="true"
can_close="true">
<string name="Ready">
Ready...
</string>
<string name="TargetNotFound">
Target item not found.
</string>
<string name="ItemsIdentical">
Source and target are identical.
</string>
<string name="ItemsFound">
Found [NUM] inventory links.
</string>
<string name="ItemsRemaining">
Links remaining: [NUM]
</string>
<string name="ReplaceFinished">
Finished replacing inventory links.
</string>
<text
type="string"
follows="left|top"
font="SansSerif"
height="23"
layout="topleft"
left="10"
width="35"
name="source_label"
top="10">
Old:
</text>
<inventory_link_replace_drop_target
name="source_uuid_editor"
follows="left|top|right"
height="23"
layout="topleft"
left_pad="10"
max_length_bytes="255"
top_delta="-3"
right="-10"
tool_tip="Drag and drop the current inventory item here that should be replaced."/>
<text
type="string"
follows="left|top"
font="SansSerif"
height="23"
layout="topleft"
left="10"
width="35"
name="target_label"
top_pad="10">
New:
</text>
<inventory_link_replace_drop_target
name="target_uuid_editor"
follows="left|top|right"
height="23"
layout="topleft"
left_pad="10"
max_length_bytes="255"
top_delta="-3"
right="-10"
tool_tip="Drag and drop new inventory item here."/>
<text
type="string"
follows="left|top|right"
font="SansSerif"
height="20"
layout="topleft"
left="10"
right="-10"
name="status_text"
top_pad="10">
Ready...
</text>
<button
top_pad="5"
left="10"
height="22"
width="90"
follows="left|top"
mouse_opaque="true"
halign="center"
name="btn_refresh"
label="Refresh"/>
<button
top_delta="0"
right="-10"
height="22"
width="90"
follows="right|top"
mouse_opaque="true"
halign="center"
name="btn_start"
label="Start"/>
</floater>
|