generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathen.json
157 lines (157 loc) · 5.89 KB
/
en.json
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
{
"challengeTracker": {
"labels": {
"challengeTrackerTitle": "Challenge Tracker",
"challengeTrackerFormTitle": "Challenge Tracker List",
"challengeTrackerEditFormTitle": "Edit Challenge Tracker",
"challengeTrackerButtonTitle": "Challenge Tracker",
"yes": "Yes",
"no": "No",
"deleteAllDialog": {
"title": "Delete All Challenge Trackers",
"body": "Are you sure you wish to delete all Challenge Trackers?"
},
"form": {
"open": "Open",
"openTooltip": "Open the Challenge Tracker",
"copy": "Copy",
"copyTooltip": "Copy the Challenge Tracker",
"edit": "Edit",
"editTooltip": "Edit the Challenge Tracker",
"delete": "Delete",
"deleteTooltip": "Delete the Challenge Tracker",
"moveUpTooltip": "Move the Challenge Tracker up the list",
"moveDownTooltip": "Move the Challenge Tracker down the list",
"new": "Create New",
"newTooltip": "Create a new Challenge Tracker"
},
"editForm": {
"title": "Title",
"titleTooltip": "Set the title of the challenge tracker",
"size": "Size",
"sizeTooltip": "Set the size of the challenge tracker in pixels",
"show": "Show to Others",
"showTooltip": "Show the challenge tracker to others",
"windowed": "Windowed",
"windowedTooltip": "Display the challenge tracker in a window",
"outerTitle": "Outer Track",
"outerTotal": "Total Segments",
"outerTotalTooltip": "Set the number of segments on the outer ring",
"outerCurrent": "Current Segments",
"outerCurrentTooltip": "Set the number of current segments on the outer ring",
"outerColor": "Color",
"outerColorTooltip": "Set the hex color of the outer ring",
"outerBackgroundColor": "Background Color",
"outerBackgroundColorTooltip": "Set the background hex color of the outer ring",
"innerTitle": "Inner Track",
"innerTotal": "Total Segments",
"innerTotalTooltip": "Set the number of segments on the inner circle",
"innerCurrent": "Current Segments",
"innerCurrentTooltip": "Set the number of current segments on the inner circle",
"innerColor": "Color",
"innerColorTooltip": "Set the hex color of the inner circle",
"innerBackgroundColor": "Background Color",
"innerBackgroundColorTooltip": "Set the background hex color of the inner circle",
"imageTitle": "Images",
"image": "Image",
"imageTooltip": "Set the image for the current segments",
"backgroundImage": "Background Image",
"backgroundImageTooltip": "Set the background image",
"frameTitle": "Frame",
"frameWidth": "Width",
"frameWidthTooltip": "Set the width of the frame",
"frameColor": "Color",
"frameColorTooltip": "Set the hex color of the frame",
"save": "Save and Close"
},
"fuzzyQuery": "Did you mean '{fuzzyResult}'?"
},
"errors": {
"doesNotExist": "Challenge Tracker '{value}' does not exist.",
"notAllowed": "Function '{function}' is not allowed for the user.",
"notOwned": "Challenge Tracker '{value}' is not owned by the user.",
"notSupplied": "Parameter '{parameter}' was not supplied to function '{function}'.",
"notValid": "Parameter '{parameter}' is not valid."
},
"settings": {
"displayButton" : {
"name": "Display Button",
"hint": "Display the Challenge Tracker button to users with this role and above (Requires reload)"
},
"buttonLocation" : {
"name": "Button Location",
"hint": "Set the location of the Challenge Tracker button (Requires reload)",
"choices" : {
"playerList": "Player List",
"token": "Token Controls",
"measure": "Measurement Controls",
"tiles": "Tile Controls",
"drawing": "Drawing Tools",
"walls": "Wall Controls",
"lighting": "Lighting Controls",
"sound": "Sound Controls",
"notes": "Journal Notes",
"none": "None"
}
},
"allowShow" : {
"name": "Allow Show to Others",
"hint": "Allow users with this role (and above) to show Challenge Trackers to others (Requires reload)",
"choices" : {
"4": "Game Master",
"3": "Assistant GM",
"2": "Trusted Player",
"1": "Player"
}
},
"outerBackgroundColor" : {
"name": "Outer Background Color",
"hint": "Set the default background color of the outer ring",
"label": "Color Picker"
},
"outerColor" : {
"name": "Outer Color",
"hint": "Set the default color of the outer ring",
"label": "Color Picker"
},
"innerBackgroundColor" : {
"name": "Inner Background Color",
"hint": "Set the default background color of the inner circle",
"label": "Color Picker"
},
"innerColor" : {
"name": "Inner Color",
"hint": "Set the default color of the inner circle",
"label": "Color Picker"
},
"frameColor" : {
"name": "Frame Color",
"hint": "Set the default color of the frame",
"label": "Color Picker"
},
"frameWidth" : {
"name": "Frame Width",
"hint": "Set the width of the frame",
"choices" : {
"none": "None",
"extraThin": "Extra Thin",
"thin": "Thin",
"medium": "Medium",
"thick": "Thick"
}
},
"size" : {
"name": "Size",
"hint": "Set the default size of the Challenge Tracker in pixels"
},
"windowed" : {
"name": "Windowed",
"hint": "Set the Challenge Tracker to windowed by default"
},
"scroll" : {
"name": "Scroll",
"hint": "Enable the scroll wheel for increasing/decreasing segments"
}
}
}
}