You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"hint": "Adds context menu items to assist with packing a Scene. You should only need to enable this while actively developing and packing a module with scenes."
9
+
},
10
+
"compendium": {
11
+
"name": "Show the dialog information when opening a compendium"
12
+
}
13
+
},
14
+
"notifications": {
15
+
"first-launch": "First launch of this adventure! Unpacking scene...",
16
+
"done": "All done!",
17
+
"pack-scene": {
18
+
"clear-reminder": "Don't forget to run ScenePacker.ClearPackedData() after exporting to prevent future duplicates.",
19
+
"writing-journals": "Writing {number} journals to scene: {name}",
20
+
"no-journal-pins": "No journal pins detected on the scene.",
21
+
"no-token-name-warning": "Cannot pack a token that has no name. Check console for details.",
22
+
"no-token-name-log": "Trying to pack a token that has no name is not going to end well. Please ensure the Token and Actor have a name.",
23
+
"writing-tokens": "Writing {number} tokens to scene: {name}",
24
+
"no-tokens": "No tokens detected on the scene."
25
+
},
26
+
"import-by-name": {
27
+
"creating-data": "Importing {count} new {type}.",
28
+
"missing-name": "Tried to find an actor for a token with no name.",
29
+
"invalid-packs": {
30
+
"error": "Invalid pack configuration. Cannot import {type}. Check console for more details.",
31
+
"short": "ImportByName was called with no searchPacks defined.",
32
+
"details": "ImportByName was called with no valid searchPacks defined. Received the following call details:",
33
+
"reference": "ImportByName was called with a reference that is not registered with Foundry. Received the following call details:",
34
+
"missing-pack": "Invalid pack configuration. Cannot find compendium {packName}. Check console for more details.",
35
+
"missing-pack-details": "ImportByName was called to search for pack \"{packName}\" which is not found. Check for typos in your module setup."
36
+
}
37
+
},
38
+
"find-actor": {
39
+
"missing-name": "Cannot find a token that has no name. Check console for details.",
40
+
"missing-name-details": "Trying to find a token that has no name is not going to end well. Please ensure the Token and Actor have a name prior to packing."
41
+
},
42
+
"link-tokens": {
43
+
"missing": "Could not find {count} actors to link, they will remain unlinked. Check console for details.",
44
+
"missing-details": "Could not find {count} actors to link. The following actor tokens were not found in the \"{adventureName}\" folder.",
45
+
"linking": "Relinking {count} Tokens linked to actors."
46
+
},
47
+
"spawn-notes": {
48
+
"missing": "Could not find {count} journals to link. Check console for details.",
49
+
"missing-details": "Could not find {count} notes to spawn. The following journals were not found.",
50
+
"spawning": "Spawning {count} journal notes."
51
+
},
52
+
"unpack": {
53
+
"no-items": "No items to configure. All done!"
54
+
},
55
+
"clear-data": {
56
+
"done": "Finished clearing Packed Data."
57
+
}
58
+
},
59
+
"compendium": {
60
+
"title": "{title} Importer",
61
+
"info-scene": "Please <strong>view each scene</strong> after importing to allow the module to correctly relink Journal Pins and Actors.",
62
+
"info-other": "To import this adventure correctly, please <strong>import just the scenes</strong> first and then view each one. This will allow the module to correctly relink Journal Pins and Actors."
63
+
},
64
+
"scene-context": {
65
+
"pack": {
66
+
"title": "Pack Scene Data"
67
+
},
68
+
"clear": {
69
+
"title": "Clear Packed Scene Data"
70
+
}
71
+
},
72
+
"log": {
73
+
"invalidForce": "{moduleName} | Invalid log usage. Expected \"log(force, ...args)\" as boolean but got {force}"
74
+
},
75
+
"errors": {
76
+
"adventureName": {
77
+
"ui": "Invalid call to SetAdventureName(). See console for details.",
78
+
"details": "Invalid adventure name passed to \"SetAdventureName()\". This must be the name of the adventure as defined in module.json under the \"title\" field."
79
+
},
80
+
"moduleName": {
81
+
"ui": "Invalid call to SetModuleName(). See console for details.",
82
+
"details": "Invalid module name passed to \"SetModuleName()\". This must be the name of the module as defined in module.json under the \"name\" field."
83
+
},
84
+
"welcomeJournal": {
85
+
"ui": "Invalid call to SetWelcomeJournal(). See console for details.",
86
+
"details": "Invalid journal name passed to \"SetWelcomeJournal()\". This must be the name of a journal in the module compendium.",
87
+
"missing": "SetWelcomeJournal() called with no value. This disables importing a welcome journal. No journal will automatically be opened."
88
+
},
89
+
"additionalJournals": {
90
+
"ui": "Invalid call to SetAdditionalJournalsToImport(). See console for details.",
91
+
"details": "You must pass an array of strings to \"SetAdditionalJournalsToImport()\". They must be the names of journals. Received: {journal}",
92
+
"missing": "SetAdditionalJournalsToImport() called with no value. This disables importing of additional journals. Only those journals linked to the scene by a map pin will be imported."
93
+
},
94
+
"creaturePacks": {
95
+
"ui": "Invalid call to SetCreaturePacks(). See console for details.",
96
+
"details": "You must pass an array of strings to \"SetCreaturePacks()\". They must be the names of Actor Packs. Received: {pack}",
97
+
"missing": "SetCreatePacks() called with no value. This disables importing of Actors."
98
+
},
99
+
"journalPacks": {
100
+
"ui": "Invalid call to SetJournalPacks(). See console for details.",
101
+
"details": "You must pass an array of strings to \"SetJournalPacks()\". They must be the names of Journal Packs. Received: {pack}",
102
+
"missing": "SetJournalPacks() called with no value. This disables importing of Journals."
0 commit comments