@wayward/types 2.14.4-beta.dev.20241231.1 → 2.14.4-beta.dev.20250102.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/definitions/game/IGlobal.d.ts +2 -9
  2. package/definitions/game/game/Game.d.ts +2 -2
  3. package/definitions/game/game/IGame.d.ts +1 -1
  4. package/definitions/game/game/doodad/Doodad.d.ts +1 -1
  5. package/definitions/game/game/entity/action/ActionsRegistration.d.ts +1 -1
  6. package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
  7. package/definitions/game/game/island/Island.d.ts +2 -2
  8. package/definitions/game/game/magic/MagicalPropertyManager.d.ts +2 -1
  9. package/definitions/game/game/mapgen/IMapGen.d.ts +1 -1
  10. package/definitions/game/game/mapgen/MapGenHelpers.d.ts +1 -1
  11. package/definitions/game/game/options/GameOptions.d.ts +1 -1
  12. package/definitions/game/language/DictionaryMap.d.ts +2 -2
  13. package/definitions/game/language/dictionary/Message.d.ts +37 -37
  14. package/definitions/game/language/dictionary/UiTranslation.d.ts +924 -917
  15. package/definitions/game/mod/IMod.d.ts +1 -1
  16. package/definitions/game/save/ISaveManager.d.ts +1 -1
  17. package/definitions/game/save/SaveManager.d.ts +1 -1
  18. package/definitions/game/save/SaveMetadata.d.ts +1 -1
  19. package/definitions/game/save/data/ISaveData.d.ts +1 -1
  20. package/definitions/game/save/data/ISaveDataGlobal.d.ts +2 -1
  21. package/definitions/game/save/data/SaveData.d.ts +1 -1
  22. package/definitions/game/save/data/SaveDataGlobal.d.ts +1 -1
  23. package/definitions/game/save/serializer/ISerializer.d.ts +1 -1
  24. package/definitions/game/save/serializer/PropertiesToSerialize.d.ts +1 -1
  25. package/definitions/game/save/serializer/Serializer.d.ts +1 -1
  26. package/definitions/game/save/upgrade/UpgradePlayer.d.ts +1 -1
  27. package/definitions/game/save/upgrade/UpgradeSaveDataGlobal.d.ts +1 -1
  28. package/definitions/game/save/upgrade/UpgradeVersion.d.ts +1 -1
  29. package/definitions/game/save/upgrade/UpgradeVersionRegistry.d.ts +1 -1
  30. package/definitions/game/steamworks/ISteamworks.d.ts +0 -6
  31. package/definitions/game/steamworks/Steamworks.d.ts +2 -2
  32. package/definitions/game/ui/{screen/screens/splash → component}/Notice.d.ts +4 -2
  33. package/definitions/game/ui/screen/screens/SplashScreen.d.ts +1 -1
  34. package/definitions/game/ui/screen/screens/game/DialogManager.d.ts +8 -3
  35. package/definitions/game/ui/screen/screens/game/component/item/ItemComponentEventBus.d.ts +2 -1
  36. package/definitions/game/ui/screen/screens/game/dialog/EquipmentDialog.d.ts +1 -1
  37. package/definitions/game/ui/screen/screens/menu/menus/main/ChangelogMenu.d.ts +1 -1
  38. package/definitions/game/ui/screen/screens/menu/menus/options/ErrorReportingNotice.d.ts +14 -0
  39. package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +2 -0
  40. package/definitions/game/ui/screen/screens/splash/DevelopmentBranchNotice.d.ts +1 -1
  41. package/definitions/game/utilities/VersionTranslation.d.ts +18 -0
  42. package/definitions/game/utilities/trello/ITrello.d.ts +1 -1
  43. package/definitions/game/utilities/trello/Trello.d.ts +1 -1
  44. package/definitions/hosts/node/nodeLoader.d.ts +1 -0
  45. package/definitions/hosts/shared/globalTypes.d.ts +6 -0
  46. package/definitions/lint/condition-complexity.d.mts +31 -0
  47. package/definitions/{devserver/middleware/util → server/core}/Middleware.d.ts +1 -0
  48. package/definitions/{devserver → server/core}/middleware/E404.d.ts +1 -1
  49. package/definitions/server/core/middleware/Probe.d.ts +13 -0
  50. package/definitions/{devserver → server/core}/middleware/Static.d.ts +1 -1
  51. package/definitions/{devserver → server/core}/middleware/Validate.d.ts +1 -1
  52. package/definitions/{devserver/middleware → server/core}/util/SendFile.d.ts +1 -1
  53. package/definitions/{matchmakingserver → server/dev}/index.d.ts +1 -3
  54. package/definitions/{devserver → server/dev}/middleware/CustomInternalMods.d.ts +1 -1
  55. package/definitions/{devserver → server/dev}/middleware/SaveFolder.d.ts +1 -1
  56. package/definitions/server/error/Router.d.ts +13 -0
  57. package/definitions/server/error/index.d.ts +11 -0
  58. package/definitions/server/error/middleware/ReportError.d.ts +13 -0
  59. package/definitions/{matchmakingserver → server/matchmaking}/dedicatedServer.d.ts +1 -1
  60. package/definitions/test/core/applicationDom.d.ts +1 -1
  61. package/definitions/test/core/applicationInteractions.d.ts +4 -0
  62. package/definitions/test/suite/functionalTests/singleplayer/ui/DialogLeak.d.ts +13 -0
  63. package/definitions/{devserver/index.d.ts → utilities/ApplyTsConfigPaths.d.ts} +1 -1
  64. package/definitions/{game/utilities → utilities}/Version.d.ts +3 -7
  65. package/definitions/utilities/event/EventEmitter.d.ts +12 -7
  66. package/definitions/utilities/types.d.ts +18 -0
  67. package/package.json +1 -1
  68. /package/definitions/{devserver → server/core}/util/Log.d.ts +0 -0
  69. /package/definitions/{devserver → server/dev}/Router.d.ts +0 -0
  70. /package/definitions/{devserver/middleware → server/dev}/util/GameLogFilter.d.ts +0 -0
  71. /package/definitions/{matchmakingserver → server/matchmaking}/directoryConnection.d.ts +0 -0
  72. /package/definitions/{matchmakingserver → server/matchmaking}/globalMatchmaking.d.ts +0 -0
  73. /package/definitions/{matchmakingserver → server/matchmaking}/globalServerDirectory.d.ts +0 -0
  74. /package/definitions/{matchmakingserver/vps.d.ts → server/matchmaking/index.d.ts} +0 -0
  75. /package/definitions/{matchmakingserver → server/matchmaking}/server.d.ts +0 -0
  76. /package/definitions/{matchmakingserver → server/matchmaking}/shared.d.ts +0 -0
  77. /package/definitions/utilities/{types → type}/Assert.d.ts +0 -0
  78. /package/definitions/utilities/{typesglobal → types}/Class.d.ts +0 -0
  79. /package/definitions/utilities/{typesglobal → types}/Descriptions.d.ts +0 -0
  80. /package/definitions/utilities/{typesglobal → types}/Function.d.ts +0 -0
  81. /package/definitions/utilities/{typesglobal → types}/Immutable.d.ts +0 -0
  82. /package/definitions/utilities/{typesglobal → types}/Iterables.d.ts +0 -0
  83. /package/definitions/utilities/{typesglobal → types}/Misc.d.ts +0 -0
  84. /package/definitions/utilities/{typesglobal → types}/Objects.d.ts +0 -0
  85. /package/definitions/utilities/{typesglobal → types}/Types.d.ts +0 -0
@@ -16,922 +16,929 @@ declare enum UiTranslation {
16
16
  SharedDropdownMatching = 1,
17
17
  SharedRangeChoiceListSummary = 2,
18
18
  SharedButtonProceed = 3,
19
- GameSharedInspectionSectionSummary = 4,
20
- GameContextMenuTooltipOpenBindings = 5,
21
- GameStaticButtonRespawn = 6,
22
- GameStaticButtonRespawnInCasualMode = 7,
23
- GameStaticButtonRespawnAsNewCharacter = 8,
24
- GameStaticPopupNightLabel = 9,
25
- GameDialogSharedContextMenuResetPosition = 10,
26
- GameDialogSharedIslandDropdownLabel = 11,
27
- GameDialogContainerSetActiveButtonTooltipTitle = 12,
28
- GameDialogContainerSetActiveButtonTooltipDescription = 13,
29
- GameDialogContainerMoveAllTooltipTitle = 14,
30
- GameDialogContainerMoveAllTooltipDescription = 15,
31
- GameDialogContainerTradeContainerMerchantTradesTitle = 16,
32
- GameDialogContainerTradeContainerYouTradeTitle = 17,
33
- GameDialogContainerTradeButtonTrade = 18,
34
- GameDialogContainerTradeContainerMerchantWeight = 19,
35
- GameDialogContainerTradeContainerMerchantWeightLimit = 20,
36
- GameDialogContainerTradeContainerYouCurrentCredit = 21,
37
- GameDialogContainerAltarButtonOffer = 22,
38
- GameDialogEquipmentTooltipUnequip = 23,
39
- GameDialogMessagesOptionTimestamp = 24,
40
- GameDialogMessagesOptionShowSendButton = 25,
41
- GameDialogMessagesOptionShowOptionsButton = 26,
42
- GameDialogMessagesOptionUnfocusOnSend = 27,
43
- GameDialogMessagesEditFiltersLabelName = 28,
44
- GameDialogMessagesEditFiltersButtonDelete = 29,
45
- GameDialogMessagesEditFiltersButtonSave = 30,
46
- GameDialogMessagesEditFiltersButtonReset = 31,
47
- GameDialogMessagesEditFiltersButtonNew = 32,
48
- GameDialogMessagesEditFiltersMessageTooltipLabelSources = 33,
49
- GameDialogMessagesEditFiltersMessageTooltipLabelSourcesSummary = 34,
50
- GameDialogNotesNoteTime = 35,
51
- GameDialogNotesNoteNumber = 36,
52
- GameDialogNotesNoteLockedTitle = 37,
53
- GameDialogNotesNoteLockedDescription = 38,
54
- GameDialogNotesLinkId = 39,
55
- GameDialogNotesLinkLearnMore = 40,
56
- GameDialogNotesSettingsPinUnreadNotesAutomatically = 41,
57
- GameDialogMilestonesInvisibleMilestone = 42,
58
- GameDialogMilestonesProgress = 43,
59
- GameDialogMilestonesProgressHidden = 44,
60
- GameDialogMilestonesMilestone = 45,
61
- GameDialogMilestonesTooltipMystery = 46,
62
- GameDialogMilestonesTooltipInvisible = 47,
63
- GameDialogUnlockablesHeadingNotUnlockableInMode = 48,
64
- GameDialogUnlockablesHeadingAlreadyUnlocked = 49,
65
- GameDialogUnlockablesLabelPlusHidden = 50,
66
- GameDialogUnlockablesNotUnlockable = 51,
67
- GameDialogSkillsSkill = 52,
68
- GameDialogSkillsSkillHover = 53,
69
- GameDialogMapDurability = 54,
70
- GameDialogMapTooltipRiddle = 55,
71
- GameDialogMapTooltipRotateClockwise = 56,
72
- GameDialogMapTooltipRotateCounterClockwise = 57,
73
- GameDialogMapTooltipFlipHorizontal = 58,
74
- GameDialogMapTooltipFlipVertical = 59,
75
- GameDialogMapTooltipResetView = 60,
76
- GameDialogMapTooltipCopyMap = 61,
77
- GameDialogMapTooltipCopyMapRequirementMissing = 62,
78
- GameDialogMapCheckButtonAlwaysOpaque = 63,
79
- GameDialogMapCheckButtonUseOnlyIntegerZoomLevels = 64,
80
- GameDialogMapLabelTheme = 65,
81
- GameDialogQuestsLink = 66,
82
- GameDialogQuestsLinkChildQuest = 67,
83
- GameDialogQuestsChildQuests = 68,
84
- GameDialogQuestsRequirements = 69,
85
- GameDialogQuestsActiveQuests = 70,
86
- GameDialogQuestsCompletedQuests = 71,
87
- GameDialogQuestsCompleteQuest = 72,
88
- GameDialogQuestsRequirementSkip = 73,
89
- GameDialogIslandsCloseOnTravel = 74,
90
- GameDialogIslandsShipTitle = 75,
91
- GameDialogIslandsNoPort = 76,
92
- GameDialogIslandsConstructLighthousesToBuildMorePorts = 77,
93
- GameTooltipInspect = 78,
94
- GameTooltipShowMoreInformation = 79,
95
- GameTooltipDefenseLabelBase = 80,
96
- GameTooltipDefenseLabelVehicleBonus = 81,
97
- GameTooltipDefenseLabelBaseDefenseMultiplier = 82,
98
- GameTooltipDefenseInsulationWeight = 83,
99
- GameTooltipDefenseInsulationWeightLabel = 84,
100
- GameTooltipDefenseInsulationWeightTooltip = 85,
101
- GameTooltipDefenseInsulationNotRequired = 86,
102
- GameTooltipDefenseInsulationNotRequiredTooltip = 87,
103
- GameTooltipItemUseLabelMaxWeight = 88,
104
- GameTooltipMagicalLabel = 89,
105
- GameTooltipSharedUsesLabel = 90,
106
- GameTooltipSharedLabelTurns = 91,
107
- GameTooltipSharedLabelTurnsAgo = 92,
108
- GameTooltipSharedLabelUntamesIn = 93,
109
- GameTooltipSharedLabelTimesTamed = 94,
110
- GameTooltipSharedLabelTimesPetted = 95,
111
- GameTooltipRecipeLabelSkill = 96,
112
- GameTooltipRecipeLabelLevel = 97,
113
- GameTooltipRecipeLabelEfficacy = 98,
114
- GameTooltipRecipeLabelEfficacyHigh = 99,
115
- GameTooltipRecipeLabelEfficacyHighest = 100,
116
- GameTooltipRecipeLabelEfficacyLow = 101,
117
- GameTooltipRecipeLabelEfficacyLowest = 102,
118
- GameTooltipRecipeLabelEfficacyMed = 103,
119
- GameTooltipRecipeLabelEfficacyLabel = 104,
120
- GameTooltipRecipeLabelSuccessChance = 105,
121
- GameTooltipRecipeLabelQualityChance = 106,
122
- GameTooltipRecipeLabelMasterCraftChance = 107,
123
- GameTooltipRecipeNearby = 108,
124
- GameTooltipRecipeFireSource = 109,
125
- GameTooltipRecipeRequirement = 110,
126
- GameTooltipRecipeLabelRequired = 111,
127
- GameTooltipRecipeLabelConsumed = 112,
128
- GameTooltipItemSkillSource = 113,
129
- GameTooltipItemUseActionOnConsumeTooltipBase = 114,
130
- GameTooltipItemUseActionOnConsumeTooltipSkill = 115,
131
- GameTooltipItemUseActionOnConsumeTooltipQuality = 116,
132
- GameTooltipItemUseActionOnConsumeTooltipMagical = 117,
133
- GameTooltipItemUseActionOnConsumeTooltipMagicalStat = 118,
134
- GameTooltipItemUseActionSharedLabelRequirements = 119,
135
- GameTooltipItemUseActionDismantleProduces = 120,
136
- GameTooltipSharedUseLabelLightSource = 121,
137
- GameTooltipItemUseLabelTelescopy = 122,
138
- GameTooltipItemDecay = 123,
139
- GameTooltipItemDecayExact = 124,
140
- GameTooltipItemDecayRate = 125,
141
- GameTooltipItemDecayRateTooltip = 126,
142
- GameTooltipItemWeight = 127,
143
- GameTooltipItemWeightBase = 128,
144
- GameTooltipItemWeightStored = 129,
145
- GameTooltipItemWeightStoredReduction = 130,
146
- GameTooltipItemLabelRange = 131,
147
- GameTooltipItemLabelAccuracy = 132,
148
- GameTooltipItemMagicalSource = 133,
149
- GameTooltipItemGroupingsLabel = 134,
150
- GameTooltipItemGroup = 135,
151
- GameTooltipItemLabelUsesWhenBuilt = 136,
152
- GameTooltipItemWorth = 137,
153
- GameTooltipItemProtected = 138,
154
- GameTooltipItemProtectedSimpleDescription = 139,
155
- GameTooltipItemProtectedContainer = 140,
156
- GameTooltipItemVehicle = 141,
157
- GameTooltipItemVehicleMovementSpeed = 142,
158
- GameTooltipItemVehicleDefenseBonus = 143,
159
- GameTooltipItemLabelDismantle = 144,
160
- GameTooltipItemLabelDismantleRequirement = 145,
161
- GameTooltipItemQuantityMultiplier = 146,
162
- GameTooltipItemUseAttack = 147,
163
- GameTooltipItemUseThrowDamage = 148,
164
- GameTooltipItemUseCrafting = 149,
165
- GameTooltipSharedLabelDoodadCraftingBonus = 150,
166
- GameTooltipItemUseOffering = 151,
167
- GameTooltipItemUseEquipDefense = 152,
168
- GameTooltipItemUseEquipDefenseAttribute = 153,
169
- GameTooltipItemUseMainHand = 154,
170
- GameTooltipItemUseOffhand = 155,
171
- GameTooltipItemLabelDamage = 156,
172
- GameTooltipItemBarterCreditTradeAvailable = 157,
173
- GameTooltipItemBarterCreditTrade = 158,
174
- GameTooltipItemBarterCredit = 159,
175
- GameTooltipItemLabelIsland = 160,
176
- GameTooltipSharedLabelWeightCapacity = 161,
177
- GameTooltipSharedLabelCivilizationScore = 162,
178
- GameTooltipSharedLabelCivilizationScoreFull = 163,
179
- GameTooltipSharedLabelDoodadSkillAdjacent = 164,
180
- GameTooltipSharedLabelAdjacentSkillBonus = 165,
181
- GameTooltipSharedLabelGrowingSpeed = 166,
182
- GameTooltipSharedLabelInsulation = 167,
183
- GameTooltipSharedLabelStoredInsulation = 168,
184
- GameTooltipSharedLabelPreservation = 169,
185
- GameTooltipSharedLabelDurability = 170,
186
- GameTooltipSharedLabelPurification = 171,
187
- GameTooltipSharedLabelPurificationTurns = 172,
188
- GameTooltipSharedDurabilityMagicalDamageReduction = 173,
189
- GameTooltipSharedDurabilityMagicalDamageRegeneration = 174,
190
- GameTooltipSharedLabelContents = 175,
191
- GameTooltipSkill = 176,
192
- GameTooltipSkillCurrent = 177,
193
- GameTooltipSkillCanIncrease = 178,
194
- GameTooltipSkillItemBonuses = 179,
195
- GameTooltipSkillDoodadBonuses = 180,
196
- GameTooltipSkillBonus = 181,
197
- GameTooltipMilestone = 182,
198
- GameTooltipMilestoneProgress = 183,
199
- GameTooltipMilestoneDiscovered = 184,
200
- GameTooltipMilestoneHintClickToUseAsTitle = 185,
201
- GameTooltipMilestoneUsingAsTitle = 186,
202
- GameTooltipSharedMagicalProperty = 187,
203
- GameTooltipSharedMagicalPropertyOutOf = 188,
204
- GameTooltipSharedLabel = 189,
205
- GameTooltipSharedLabelDash = 190,
206
- GameTooltipSharedLabelHead = 191,
207
- GameTooltipSharedLabelTail = 192,
208
- GameTooltipSharedLabelStart = 193,
209
- GameTooltipSharedLabelStartNoSpace = 194,
210
- GameTooltipSharedLabelEnd = 195,
211
- GameTooltipSharedResistsAndVulnsLabelVulnerableTo = 196,
212
- GameTooltipSharedResistsAndVulnsLabelResistantTo = 197,
213
- GameTooltipSharedResistsAndVulnsLabelImmuneTo = 198,
214
- GameTooltipSharedResistsAndVulnsLabelHealsFrom = 199,
215
- GameTooltipSharedResistsAndVulnsDamageType = 200,
216
- GameTooltipIslandBiome = 201,
217
- GameTooltipIslandSeed = 202,
218
- GameTooltipIslandDaysSpent = 203,
219
- GameTooltipIslandDaysSpentDaysUnit = 204,
220
- GameTooltipIslandDaysSpentCumulative = 205,
221
- GameTooltipIslandUndiscovered = 206,
222
- GameTooltipIslandUnnamed = 207,
223
- GameTooltipIslandSelf = 208,
224
- GameTooltipIslandPlayers = 209,
225
- GameTooltipIslandPorts = 210,
226
- GameTooltipIslandNPCs = 211,
227
- GameTooltipIslandModifiers = 212,
228
- GameTooltipIslandMaps = 213,
229
- GameTooltipIslandCoordinates = 214,
230
- GameTooltipIslandCoordinatesLabel = 215,
231
- GameTooltipNPCMerchantCredit = 216,
232
- GameTooltipNPCMerchantNewInventory = 217,
233
- GameTooltipNPCShipperNoItems = 218,
234
- GameTooltipNPCShipperContainedItems = 219,
235
- GameTooltipActionUndiscovered = 220,
236
- GameTooltipActionTierLabel = 221,
237
- GameTooltipSharedRuneChance = 222,
238
- GameToolTipSharedRuneChanceAction = 223,
239
- GameToolTipSharedRuneChanceCrafting = 224,
240
- GameToolTipSharedRuneChanceSkill = 225,
241
- GameTooltipEquipSlotOffHandDisabledTwoHandedOffHand = 226,
242
- GameTooltipEquipSlotOffHandDisabledTwoHandedMainHand = 227,
243
- GameTooltipStatSubtitle = 228,
244
- GameTooltipStatSubtitleCore = 229,
245
- GameTooltipStatAttackSectionMelee = 230,
246
- GameTooltipStatAttackSectionRanged = 231,
247
- GameTooltipStatAttackRange = 232,
248
- GameTooltipStatAttackMultiplier = 233,
249
- GameTooltipStatWeightLabelMax = 234,
250
- GameTooltipStatSharedLabelMax = 235,
251
- GameTooltipStatSharedLabelSkill = 236,
252
- GameTooltipStatSharedCoreStat = 237,
253
- GameTooltipStatSharedCoreStatLabelSkills = 238,
254
- GameTooltipStatSharedCoreStatSkillsListUndiscoveredSkills = 239,
255
- GameTooltipStatusMoreInformationRevealedAtSkillThreshold = 240,
256
- GameTooltipStatusLabelCures = 241,
257
- GameTooltipCreatureSubtitle = 242,
258
- GameTooltipCreatureColorContext = 243,
259
- GameTooltipCreatureLabelTamed = 244,
260
- GameTooltipCreatureLabelMood = 245,
261
- GameTooltipCreatureLabelCommand = 246,
262
- GameTooltipCreatureLabelCanPetIn = 247,
263
- GameTooltipCreatureCanPet = 248,
264
- GameTooltipCreatureLabelCanMilkIn = 249,
265
- GameTooltipCreatureLabelAberrant = 250,
266
- GameTooltipCreatureLabelStatuses = 251,
267
- GameTooltipCreatureAberrantDescriptionShort = 252,
268
- GameTooltipCreatureAberrantDescriptionExtra = 253,
269
- GameTooltipCreatureAberrantDescriptionVerbose = 254,
270
- GameTooltipCreatureProducingMilk = 255,
271
- GameTooltipDeityLabelDomains = 256,
272
- GameTooltipStatFerocityScore = 257,
273
- GameTooltipStatFerocityCivilizationScore = 258,
274
- GameTooltipStatFerocityCivilizationScoreTerritory = 259,
275
- GameTooltipStatFerocityTurn = 260,
276
- GameTooltipStatFerocityTicks = 261,
277
- GameTooltipStatFerocityNights = 262,
278
- GameTooltipStatFerocityDays = 263,
279
- GameTooltipSharedUndiscovered = 264,
280
- GameTooltipStatCurseFactors = 265,
281
- GameStatsStatAttack = 266,
282
- GameStatsStatGeneric = 267,
283
- GameStatsStatGenericWithMax = 268,
284
- GameStatsStatbar = 269,
285
- GameMenuBarButtonTooltipBindable = 270,
286
- GameMenuBarButtonTooltipSaveSize = 271,
287
- GameMenuBarButtonTooltipSaveTurnsAgo = 272,
288
- GameMenuBarButtonTooltipSaveLastTime = 273,
289
- GameMenuBarButtonTooltipNotesUnread = 274,
290
- GameMenuBarButtonTooltipMilestonesDisabled = 275,
291
- GameMenuBarButtonTooltipQuestsDisabled = 276,
292
- GameMenuBarContextMenuActionRemoveItem = 277,
293
- GameMenuBarContextMenuActionInsertItem = 278,
294
- GameMenuBarContextMenuActionReset = 279,
295
- GameActionBarContextMenuDisplayBindings = 280,
296
- GameActionBarContextMenuAutoSelectPrimaryUse = 281,
297
- GameActionBarContextMenuBringSlotsIntoNewSaves = 282,
298
- GameActionBarContextMenuConfigure = 283,
299
- GameActionBarContextMenuSelectModifierOrder = 284,
300
- GameActionBarContextMenuSelectModifierOrderNoModifier = 285,
301
- GameActionBarContextMenuAutoSwitchToBestItemOnInaccessible = 286,
302
- GameActionBarConfigurationDrawerTitle = 287,
303
- GameActionBarConfigurationDrawerFooterDiscoveryHint = 288,
304
- GameActionBarConfigurationDrawerFooterDiscoveryHintProgress = 289,
305
- GameActionBarConfigurationDrawerSlotHintUse = 290,
306
- GameActionBarConfigurationDrawerSlotHintToggle = 291,
307
- GameActionBarConfigurationDrawerSlotHintToggleUseOnMove = 292,
308
- GameActionBarConfigurationDrawerColumnTitleActions = 293,
309
- GameActionBarConfigurationDrawerColumnTitleItemActions = 294,
310
- GameActionBarConfigurationDrawerColumnTitleConfiguration = 295,
311
- GameActionBarConfigurationDrawerButtonEditBindings = 296,
312
- GameActionBarConfigurationDrawerButtonClearSlot = 297,
313
- GameActionBarConfigurationDrawerColumnTitleInapplicable = 298,
314
- GameActionBarConfigurationDrawerButtonUseOnMove = 299,
315
- GameActionBarConfigurationDrawerButtonUseOnMoveDescription = 300,
316
- GameActionBarConfigurationDrawerButtonUseOnHoveredTile = 301,
317
- GameActionBarConfigurationDrawerButtonUseOnHoveredTileDescription = 302,
318
- GameActionBarConfigurationDrawerModeUseExact = 303,
319
- GameActionBarConfigurationDrawerModeUseExactNoItemSelected = 304,
320
- GameActionBarConfigurationDrawerModeUseBest = 305,
321
- GameActionBarConfigurationDrawerModeUseNone = 306,
322
- GameActionBarConfigurationDrawerModeUseHovered = 307,
323
- GameActionBarConfigurationDrawerItemDropdownAny = 308,
324
- GameActionBarConfigurationDrawerItemDropdownNoTypeSelected = 309,
325
- GameActionBarConfigurationDrawerButtonDone = 310,
326
- GameActionBarConfigurationDrawerButtonCraftType = 311,
327
- GameActionBarSlotTooltipHintUse = 312,
328
- GameActionBarSlotTooltipHintConfigure = 313,
329
- GameActionBarSlotTooltipHintUseOnMove = 314,
330
- GameActionBarSlotTooltipHintUseSlottedItem = 315,
331
- GameActionBarSlotTooltipHintClear = 316,
332
- GameActionBarButtonToggleUseWhenMovingTooltip = 317,
333
- GameActionBarButtonRemoveActionBarRowTooltip = 318,
334
- GameActionBarButtonAddActionBarRowTooltip = 319,
335
- GameActionBarButtonConfigureOptions = 320,
336
- GameMessagesButtonSend = 321,
337
- GameMessagesContextMenuShowAsDialog = 322,
338
- GameMessagesContextMenuClear = 323,
339
- GameMessagesContextMenuCopy = 324,
340
- GameMessagesContextMenuExport = 325,
341
- GameMessagesFilter = 326,
342
- GameMessagesFiltersEdit = 327,
343
- GameMessagesNewNote = 328,
344
- GameMessagesTurn = 329,
345
- GameMessagesDedicatedServerBackup = 330,
346
- GameMessagesDedicatedServerBackupLimitReached = 331,
347
- GameMessagesPlaceholderChat = 332,
348
- GameMessagesButtonShowNewest = 333,
349
- GameTileInspectionCannotSeeTile = 334,
350
- MenuAboutTitle = 335,
351
- MenuAboutDescription = 336,
352
- MenuAboutGameDescription = 337,
353
- MenuAboutSectionTeam = 338,
354
- MenuAboutTeamMemberName = 339,
355
- MenuAboutTeamMemberNickname = 340,
356
- MenuAboutSectionContributors = 341,
357
- MenuAboutSectionSpecialThanks = 342,
358
- MenuAboutTextSpecialThanksTestorsAndDonators = 343,
359
- MenuAboutSectionLibraries = 344,
360
- MenuAboutSectionLibrariesDescription = 345,
361
- MenuAboutLabelVersion = 346,
362
- MenuAboutLabelVersionBuild = 347,
363
- MenuAboutLabelVersionBuildTime = 348,
364
- MenuBindings = 349,
365
- MenuBindingsDescription = 350,
366
- MenuBindingsTooltipBindConflicts = 351,
367
- MenuBindingsManagedBindableGameActionBarUseSlot = 352,
368
- MenuBindingsManagedBindableGameActionBarAssignSlot = 353,
369
- MenuBindingsManagedBindableGameActionBarToggleUseOnMoveSlot = 354,
370
- MenuChangelogTitle = 355,
371
- MenuChangelogDescription = 356,
372
- MenuChangelogHeadingUnchartedWaters = 357,
373
- MenuChangelogFailedToLoadTitle = 358,
374
- MenuChangelogFailedToLoadDescription = 359,
375
- MenuChangelogHeadingChangeCount = 360,
376
- MenuChangelogButtonCopyChangelog = 361,
377
- MenuChangelogButtonCopyAltChangelog = 362,
378
- MenuCharacterCreationButtonRandomizeName = 363,
379
- MenuCharacterCreationButtonExportTooltip = 364,
380
- MenuCharacterCreationButtonImportTooltip = 365,
381
- MenuCharacterCreationButtonStartGame = 366,
382
- MenuCharacterCreationButtonJoinGame = 367,
383
- MenuCharacterCreationDescription = 368,
384
- MenuCharacterCreationHeadingHairColor = 369,
385
- MenuCharacterCreationHeadingHairStyle = 370,
386
- MenuCharacterCreationHeadingSkinTone = 371,
387
- MenuCharacterCreationLabelName = 372,
388
- MenuCharacterCreationTitle = 373,
389
- MenuCharacterCreationButtonRotateLeftTooltip = 374,
390
- MenuCharacterCreationButtonRotateRightTooltip = 375,
391
- MenuCharacterCreationButtonRandomizeTooltip = 376,
392
- MenuCharacterSelectionButtonNewCharacter = 377,
393
- MenuCharacterSelectionDescription = 378,
394
- MenuCharacterSelectionHeadingNoCharacters = 379,
395
- MenuCharacterSelectionTitle = 380,
396
- MenuCharacterSelectionLabelLastUse = 381,
397
- MenuCharacterSelectionLabelUseCount = 382,
398
- MenuCharacterSelectionCharacterButtonDeleteTooltip = 383,
399
- MenuCharacterSelectionCharacterButtonCustomizeTooltip = 384,
400
- MenuDevelopmentBranchTitle = 385,
401
- MenuDevelopmentBranchSuperTitle = 386,
402
- MenuDevelopmentBranchWarning = 387,
403
- MenuDevelopmentBranchStatus = 388,
404
- MenuDevelopmentBranchStatusUnavailable = 389,
405
- MenuMultiplayerDescription = 390,
406
- MenuMultiplayerTitle = 391,
407
- MenuMultiplayerButtonJoinById = 392,
408
- MenuMultiplayerServerLabelDays = 393,
409
- MenuMultiplayerServerLabelIsland = 394,
410
- MenuMultiplayerButtonNewGame = 395,
411
- MenuMultiplayerButtonLoadGame = 396,
412
- MenuMultiplayerServerTooltipPVP = 397,
413
- MenuMultiplayerServerTooltipModsLabel = 398,
414
- MenuMultiplayerServerTooltipFriendsLabel = 399,
415
- MenuMultiplayerServerPlayers = 400,
416
- MenuMultiplayerServerLobbyType = 401,
417
- MenuMultiplayerServerRegion = 402,
418
- MenuMultiplayerServerHost = 403,
419
- MenuMultiplayerServerVersion = 404,
420
- MenuMultiplayerServerVersionUnknown = 405,
421
- MenuMultiplayerServerDedicated = 406,
422
- MenuMultiplayerHeadingPlayersOnline = 407,
423
- MenuMultiplayerServerModInfo = 408,
424
- MenuMultiplayerServerModUnableToLoad = 409,
425
- MenuMultiplayerServerLabelTerritoryTier = 410,
426
- MenuGameEndTitleDead = 411,
427
- MenuGameEndTitleWon = 412,
428
- MenuGameEndShareFacebook = 413,
429
- MenuGameEndShareTwitter = 414,
430
- MenuGameEndContinueAsGhost = 415,
431
- MenuGameEndRespawnInCasualMode = 416,
432
- MenuGameEndRespawnAsNewCharacter = 417,
433
- MenuGameEndReturnToIsland = 418,
434
- MenuGameEndExitToMenu = 419,
435
- MenuHelpTitle = 420,
436
- MenuHelpDescription = 421,
437
- MenuHelpLabelSearch = 422,
438
- MenuHighscoresTitle = 423,
439
- MenuHighscoresDescription = 424,
440
- MenuHighscoresDifficultyFilterAll = 425,
441
- MenuHighscoresHighscoreLabelDifficulty = 426,
442
- MenuHighscoresHighscoreLabelTurns = 427,
443
- MenuHighscoresHighscoreLabelScore = 428,
444
- MenuHighscoresHighscoreLabelPlace = 429,
445
- MenuHighscoresHighscoreLabelDate = 430,
446
- MenuHighscoresHighscoreLabelDeathBy = 431,
447
- MenuHighscoresHighscoreTitle = 432,
448
- MenuHighscoresCharacterNameUnknown = 433,
449
- MenuHighscoresHighscoreReplayWithSettings = 434,
450
- MenuLoadGameButtonSaveSlot = 435,
451
- MenuLoadGameButtonNewGame = 436,
452
- MenuLoadGameButtonNewGameButtonImportTooltip = 437,
453
- MenuLoadGameDescription = 438,
454
- MenuLoadGameSaveButtonDeleteTooltip = 439,
455
- MenuLoadGameSaveButtonEditNameTooltip = 440,
456
- MenuLoadGameSaveButtonExportTooltip = 441,
457
- MenuLoadGameSaveTooltipLabelCreatedTime = 442,
458
- MenuLoadGameSaveTooltipLabelSaveTime = 443,
459
- MenuLoadGameSaveTooltipLabelGameMode = 444,
460
- MenuLoadGameSaveTooltipLabelScore = 445,
461
- MenuLoadGameSaveTooltipLabelSeed = 446,
462
- MenuLoadGameSaveTooltipLabelTurns = 447,
463
- MenuLoadGameSaveTooltipLabelMods = 448,
464
- MenuLoadGameSaveTooltipLabelOriginalVersion = 449,
465
- MenuLoadGameSaveTooltipMod = 450,
466
- MenuLoadGameSaveTooltipNew = 451,
467
- MenuLoadGameSaveTooltipCorrupted = 452,
468
- MenuLoadGameSaveGame = 453,
469
- MenuLoadGameSaveGameDescription = 454,
470
- MenuLoadGameTitle = 455,
471
- MenuLoadGameLabelSelected = 456,
472
- MenuLoadGameButtonDeleteSelectedTooltip = 457,
473
- MenuLoadGameImportSaveFailure = 458,
474
- MenuLoadGameSectionSavedGames = 459,
475
- MenuLoadGameSectionImportFolders = 460,
476
- MenuLoadGameSectionImportFoldersPlaceholderPathToSaves = 461,
477
- MenuLoadGameSectionImportFoldersButtonAddFolder = 462,
478
- MenuLoadGameSectionImportFoldersButtonDeleteFolder = 463,
479
- MenuMainButtonAbout = 464,
480
- MenuMainButtonChangelog = 465,
481
- MenuMainButtonMultiplayer = 466,
482
- MenuMainButtonHighscores = 467,
483
- MenuMainButtonLoadGame = 468,
484
- MenuMainButtonMods = 469,
485
- MenuMainButtonModsTooltipLabelEnabledMods = 470,
486
- MenuMainButtonModsTooltipAndXOthers = 471,
487
- MenuMainButtonModsAllDisabled = 472,
488
- MenuMainButtonNewGame = 473,
489
- MenuMainButtonNews = 474,
490
- MenuMainButtonOptions = 475,
491
- MenuMainButtonQuitGame = 476,
492
- MenuModsWarningModsDisabledTitle = 477,
493
- MenuModsWarningModsDisabledDescription = 478,
494
- MenuModsButtonModdingGuide = 479,
495
- MenuModsButtonOpenFolder = 480,
496
- MenuModsButtonOpenWorkshop = 481,
497
- MenuModsDescription = 482,
498
- MenuModsTitle = 483,
499
- MenuModsTooltipLabelAuthor = 484,
500
- MenuModsTooltipLabelTags = 485,
501
- MenuModsTooltipLabelDependencies = 486,
502
- MenuModsTooltipLabelProvides = 487,
503
- MenuModsTooltipLabelVersion = 488,
504
- MenuModsTooltipLabelDescription = 489,
505
- MenuModsTooltipLabelInstallDate = 490,
506
- MenuModsTooltipLabelCreatedDate = 491,
507
- MenuModsTooltipLabelLastUpdatedDate = 492,
508
- MenuModsTooltipPreventsMilestoneUnlocks = 493,
509
- MenuModsTooltipModOptions = 494,
510
- MenuModsTooltipPublishMod = 495,
511
- MenuModsTooltipModMoreInformation = 496,
512
- MenuModsTooltipUninstallMod = 497,
513
- MenuModsTooltipViewInSteamWorkshop = 498,
514
- MenuModsTooltipViewGitHub = 499,
515
- MenuModsTooltipOpenFolder = 500,
516
- MenuModsButtonEditInternalMods = 501,
517
- MenuModsSectionHeading = 502,
518
- MenuModsSubmenuEditInternalModsTitle = 503,
519
- MenuModsSubmenuEditInternalModsDescription = 504,
520
- MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 505,
521
- MenuModsSubmenuEditInternalModsSectionRootsName = 506,
522
- MenuModsSubmenuEditInternalModsSectionModsName = 507,
523
- MenuModsSubmenuEditInternalModsPlaceholderModRootName = 508,
524
- MenuModsSubmenuEditInternalModsPlaceholderModRootPath = 509,
525
- MenuNewGameButtonNext = 510,
526
- MenuNewGameButtonStartServer = 511,
527
- MenuNewGameDescription = 512,
528
- MenuNewGameLabelEditName = 513,
529
- MenuNewGameLabelEditSeed = 514,
530
- MenuNewGamePlaceholderEditSeed = 515,
531
- MenuNewGameTitle = 516,
532
- MenuNewGameChoiceDifficulty = 517,
533
- MenuNewGameChoiceSingleplayer = 518,
534
- MenuNewGameChoiceSingleplayerDescription = 519,
535
- MenuNewGameChoiceMultiplayer = 520,
536
- MenuNewGameChoiceMultiplayerDescription = 521,
537
- MenuNewGameChoiceTurnModeManual = 522,
538
- MenuNewGameChoiceTurnModeManualDescription = 523,
539
- MenuNewGameChoiceTurnModeRealTime = 524,
540
- MenuNewGameChoiceTurnModeRealTimeDescription = 525,
541
- MenuNewGameChoiceTurnModeSimulated = 526,
542
- MenuNewGameChoiceTurnModeSimulatedDescription = 527,
543
- MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 528,
544
- MenuNewGameChoiceDifficultyChallengeDaily = 529,
545
- MenuNewGameChoiceDifficultyChallengeDailyTooltip = 530,
546
- MenuNewGameButtonMilestones = 531,
547
- MenuNewGameButtonMilestonesDescription = 532,
548
- MenuNewGameTabGameMode = 533,
549
- MenuNewGameTabMultiplayer = 534,
550
- MenuNewGameTabGameplayModifiers = 535,
551
- MenuNewGameHeadingGameMode = 536,
552
- MenuNewGameHeadingMultiplayer = 537,
553
- MenuNewGameHeadingGameplayModifiers = 538,
554
- MenuNewGameMilestoneModifiersUnlockableInMode = 539,
555
- MenuNewGameChoiceClientsInheritHostModifiers = 540,
556
- MenuNewGameChoiceClientsInheritHostModifiersDescription = 541,
557
- MenuNewGameChoiceCustomModifiers = 542,
558
- MenuNewGameChoiceCustomModifiersDescription = 543,
559
- MenuMilestoneModifiersTitle = 544,
560
- MenuMilestoneModifiersDescription = 545,
561
- MenuCustomGameOptionsTitle = 546,
562
- MenuCustomGameOptionsDescription = 547,
563
- MenuCustomGameOptionsRespawnOnDeath = 548,
564
- MenuCustomGameOptionsRespawnOnDeathDescription = 549,
565
- MenuCustomGameOptionsUseUnlockedRecipes = 550,
566
- MenuCustomGameOptionsStartingIslandBiome = 551,
567
- MenuCustomGameOptionsApplyTravelingEffects = 552,
568
- MenuCustomGameOptionsApplyTravelingEffectsDescription = 553,
569
- MenuCustomGameOptionsCreaturesPeaceful = 554,
570
- MenuCustomGameOptionsCreaturesDisableScared = 555,
571
- MenuCustomGameOptionsCreaturesDisableScaredDescription = 556,
572
- MenuCustomGameOptionsCreaturesAberrantSpawns = 557,
573
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 558,
574
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 559,
575
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 560,
576
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 561,
577
- MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 562,
578
- MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 563,
579
- MenuCustomGameOptionsCreaturesAlwaysSpawn = 564,
580
- MenuCustomGameOptionsCreaturesAllowSpawning = 565,
581
- MenuCustomGameOptionsCreaturesSpawnLimit = 566,
582
- MenuCustomGameOptionsCreaturesSpawnLimitDescription = 567,
583
- MenuCustomGameOptionsCreaturesSpawnRateMultiplier = 568,
584
- MenuCustomGameOptionsCreaturesSpawnRateMultiplierDescription = 569,
585
- MenuCustomGameOptionsCreatureNone = 570,
586
- MenuCustomGameOptionsCreatureConfigure = 571,
587
- MenuCustomGameOptionsStatMultiplier = 572,
588
- MenuCustomGameOptionsStatMultiplierTooltip = 573,
589
- MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 574,
590
- MenuCustomGameOptionsHeadingGeneral = 575,
591
- MenuCustomGameOptionsHeadingTravel = 576,
592
- MenuCustomGameOptionsHeadingTime = 577,
593
- MenuCustomGameOptionsHeadingStats = 578,
594
- MenuCustomGameOptionsHeadingItems = 579,
595
- MenuCustomGameOptionsHeadingCreatures = 580,
596
- MenuCustomGameOptionsHeadingSkills = 581,
597
- MenuCustomGameOptionsHeadingStatuses = 582,
598
- MenuCustomGameOptionsEternalNight = 583,
599
- MenuCustomGameOptionsEternalNightDescription = 584,
600
- MenuCustomGameOptionsEternalDay = 585,
601
- MenuCustomGameOptionsEternalDayDescription = 586,
602
- MenuCustomGameOptionsTimeFrozen = 587,
603
- MenuCustomGameOptionsTimeInitial = 588,
604
- MenuCustomGameOptionsTimeDayLength = 589,
605
- MenuCustomGameOptionsTimeDayLengthTooltip = 590,
606
- MenuCustomGameOptionsTimeDayPercent = 591,
607
- MenuCustomGameOptionsTimeDayPercentTooltip = 592,
608
- MenuCustomGameOptionsStatStarting = 593,
609
- MenuCustomGameOptionsStatMax = 594,
610
- MenuCustomGameOptionsStatStartingDisplay = 595,
611
- MenuCustomGameOptionsStatMaxDisplay = 596,
612
- MenuCustomGameOptionsStatNoChange = 597,
613
- MenuCustomGameOptionsStatBonus = 598,
614
- MenuCustomGameOptionsStatBonusDisplay = 599,
615
- MenuCustomGameOptionsStatusPassChanceMultiplier = 600,
616
- MenuCustomGameOptionsStatusPassChanceMultiplierTooltip = 601,
617
- MenuCustomGameOptionsStatusStartWith = 602,
618
- MenuCustomGameOptionsStatusUntreatable = 603,
619
- MenuCustomGameOptionsStatusUntreatableTooltip = 604,
620
- MenuCustomGameOptionsSkillInitialRandomCount = 605,
621
- MenuCustomGameOptionsSkillInitialRandomCountDescription = 606,
622
- MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 607,
623
- MenuCustomGameOptionsSkillsGlobal = 608,
624
- MenuCustomGameOptionsSkillNone = 609,
625
- MenuCustomGameOptionsSkillConfigure = 610,
626
- MenuCustomGameOptionsSkillInitial = 611,
627
- MenuCustomGameOptionsSkillMultiplier = 612,
628
- MenuCustomGameOptionsSkillMultiplierTooltip = 613,
629
- MenuCustomGameOptionsRandomItems = 614,
630
- MenuCustomGameOptionsRandomItemsDescription = 615,
631
- MenuCustomGameOptionsItemDurability = 616,
632
- MenuCustomGameOptionsItemDurabilityTooltip = 617,
633
- MenuCustomGameOptionsItemDecay = 618,
634
- MenuCustomGameOptionsItemDecayTooltip = 619,
635
- MenuCustomGameOptionsExport = 620,
636
- MenuCustomGameOptionsImport = 621,
637
- MenuCustomGameOptionsViewGroundItemsAsContainer = 622,
638
- MenuCustomGameOptionsViewGroundItemsAsContainerDescription = 623,
639
- MenuNewsDescription = 624,
640
- MenuNewsHeadingSocial = 625,
641
- MenuNewsTitle = 626,
642
- MenuNewsHeadingUnableToLoad = 627,
643
- MenuNewsButtonAllNews = 628,
644
- MenuNewsButtonViewChangelog = 629,
645
- MenuOptionsButtonDitherFogOfWar = 630,
646
- MenuOptionsButtonHealthVignette = 631,
647
- MenuOptionsButtonHealthVignetteTooltip = 632,
648
- MenuOptionsButtonDisableCustomCursor = 633,
649
- MenuOptionsButtonEnableSmoothZooming = 634,
650
- MenuOptionsButtonDisplayArticleInObjectNames = 635,
651
- MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 636,
652
- MenuOptionsButtonFullscreen = 637,
653
- MenuOptionsButtonCustomTitleBar = 638,
654
- MenuOptionsButtonDeveloperMode = 639,
655
- MenuOptionsButtonReloadGame = 640,
656
- MenuOptionsButtonReloadStylesheets = 641,
657
- MenuOptionsButtonReloadTextures = 642,
658
- MenuOptionsButtonPrepackedSprites = 643,
659
- MenuOptionsButtonDisposeReflection = 644,
660
- MenuOptionsButtonExportGlobalSaveData = 645,
661
- MenuOptionsButtonImportGlobalSaveData = 646,
662
- MenuOptionsButtonSaveDataBackups = 647,
663
- MenuOptionsButtonSaveDataBackupsTooltip = 648,
664
- MenuOptionsButtonSaveDataClearAll = 649,
665
- MenuOptionsButtonSaveDataClearCharacters = 650,
666
- MenuOptionsButtonSaveDataClearUI = 651,
667
- MenuOptionsButtonSaveDataClearHighscores = 652,
668
- MenuOptionsButtonSaveDataClearMilestones = 653,
669
- MenuOptionsButtonSaveDataClearOptions = 654,
670
- MenuOptionsButtonSaveDataClearCraftingRecipes = 655,
671
- MenuOptionsButtonSaveDataClearSaves = 656,
672
- MenuOptionsButtonSkipSplash = 657,
673
- MenuOptionsButtonDisableQuitConfirmation = 658,
674
- MenuOptionsButtonToggleDevTools = 659,
675
- MenuOptionsButtonOpenBackupsFolder = 660,
676
- MenuOptionsButtonOpenLogsFolder = 661,
677
- MenuOptionsButtonDropLocationFacing = 662,
678
- MenuOptionsButtonDropLocationFeet = 663,
679
- MenuOptionsButtonStartTraceRecording = 664,
680
- MenuOptionsButtonStopTraceRecording = 665,
681
- MenuOptionsButtonTracingRecordingTooltip = 666,
682
- MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 667,
683
- MenuOptionsDescription = 668,
684
- MenuOptionsHeadingAudio = 669,
685
- MenuOptionsHeadingDeveloper = 670,
686
- MenuOptionsHeadingGameplayOptions = 671,
687
- MenuOptionsHeadingGameplayOptionsDescription = 672,
688
- MenuOptionsHeadingGameplayOptionsButtonOpenDialog = 673,
689
- MenuOptionsHeadingOtherOptions = 674,
690
- MenuOptionsHeadingControls = 675,
691
- MenuOptionsHeadingModOptions = 676,
692
- MenuOptionsHeadingSaveData = 677,
693
- MenuOptionsHeadingTooltipsTile = 678,
694
- MenuOptionsHeadingVideo = 679,
695
- MenuOptionsLabelInterfaceScale = 680,
696
- MenuOptionsLabelHudWidth = 681,
697
- MenuOptionsLabelTooltipDelay = 682,
698
- MenuOptionsLabelDirectionTurnDelay = 683,
699
- MenuOptionsLabelMouseTurnDelay = 684,
700
- MenuOptionsLabelFontStyle = 685,
701
- MenuOptionsTooltipTurnDelay = 686,
702
- MenuOptionsTooltipMouseTurnDelay = 687,
703
- MenuOptionsTooltipControlsFilter = 688,
704
- MenuOptionsLabelVolumeEffects = 689,
705
- MenuOptionsLabelVolumeMusic = 690,
706
- MenuOptionsTabAudio = 691,
707
- MenuOptionsTabDeveloper = 692,
708
- MenuOptionsTabGameplay = 693,
709
- MenuOptionsTabTooltips = 694,
710
- MenuOptionsTabOther = 695,
711
- MenuOptionsTabLanguage = 696,
712
- MenuOptionsTabControls = 697,
713
- MenuOptionsTabMods = 698,
714
- MenuOptionsTabSaveData = 699,
715
- MenuOptionsTabVideo = 700,
716
- MenuOptionsTabPerformance = 701,
717
- MenuOptionsHeadingPerformance = 702,
718
- MenuOptionsTitle = 703,
719
- MenuOptionsTooltipMusicNextTrack = 704,
720
- MenuOptionsBindChoose = 705,
721
- MenuOptionsBindChooseAdd = 706,
722
- MenuOptionsBindButtonResetTooltip = 707,
723
- MenuOptionsBindButtonDeleteTooltip = 708,
724
- MenuOptionsBindButtonAddTooltip = 709,
725
- MenuOptionsBindButtonAddMacroTooltip = 710,
726
- MenuOptionsButtonDiscoverEverything = 711,
727
- MenuOptionsButtonDiscoverEverythingDescription = 712,
728
- MenuOptionsButtonGrantAllMilestoneModifiers = 713,
729
- MenuOptionsButtonGrantAllMilestoneModifiersDescription = 714,
730
- MenuOptionsButtonDisableMilestonesDescription = 715,
731
- MenuOptionsButtonAlternatingDirectionMovement = 716,
732
- MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 717,
733
- MenuOptionsButtonSteamInputKeyboardPosition = 718,
734
- MenuOptionsButtonAlwaysShowMoreInformationTooltip = 719,
735
- MenuOptionsButtonEnableLowPowerMode = 720,
736
- MenuOptionsButtonEnableLowPowerModeTooltip = 721,
737
- MenuOptionsButtonDisableAcrylicTransparency = 722,
738
- MenuOptionsButtonDisableAcrylicTransparencyTooltip = 723,
739
- MenuOptionsButtonDisableOverlaySupport = 724,
740
- MenuOptionsButtonDisableOverlaySupportTooltip = 725,
741
- MenuOptionsButtonDisableUIEffects = 726,
742
- MenuOptionsButtonDisableUIEffectsTooltip = 727,
743
- MenuOptionsButtonDisableUIOpacity = 728,
744
- MenuOptionsButtonDisableUIOpacityTooltip = 729,
745
- MenuOptionsButtonDisableMovementAnimations = 730,
746
- MenuOptionsButtonDisableMovementAnimationsTooltip = 731,
747
- MenuOptionsButtonAutoAttack = 732,
748
- MenuOptionsButtonAutoAttackTooltip = 733,
749
- MenuOptionsButtonDropOnDismantle = 734,
750
- MenuOptionsButtonDropOnDismantleTooltip = 735,
751
- MenuOptionsButtonDropOnDisassemble = 736,
752
- MenuOptionsButtonDropOnDisassembleTooltip = 737,
753
- MenuOptionsButtonDisableCraftingProtectedItems = 738,
754
- MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 739,
755
- MenuOptionsButtonDropOnGatherHarvest = 740,
756
- MenuOptionsButtonDropOnGatherHarvestTooltip = 741,
757
- MenuOptionsButtonUseAdjacentContainers = 742,
758
- MenuOptionsButtonUseAdjacentContainersTooltip = 743,
759
- MenuOptionsButtonHideEquippedHeadgear = 744,
760
- MenuOptionsButtonHideEquippedHeadgearTooltip = 745,
761
- MenuOptionsButtonDisableItemNotifiers = 746,
762
- MenuOptionsButtonDisableItemNotifiersTooltip = 747,
763
- MenuOptionsButtonLeftHanded = 748,
764
- MenuOptionsButtonLeftHandedTooltip = 749,
765
- MenuOptionsButtonAutoSave = 750,
766
- MenuOptionsRangeAutoSaveTimerLabel = 751,
767
- MenuOptionsRangeAutoSaveTimerTurnsDisplay = 752,
768
- MenuOptionsRangeAutoSaveTimerTimeDisplay = 753,
769
- MenuOptionsButtonDropIntoContainers = 754,
770
- MenuOptionsButtonDropIntoContainersTooltip = 755,
771
- MenuOptionsButtonWarnOnDangerousActions = 756,
772
- MenuOptionsButtonWarnOnDangerousActionsTooltip = 757,
773
- MenuOptionsButtonWarnOnDestructiveActions = 758,
774
- MenuOptionsButtonWarnOnDestructiveActionsTooltip = 759,
775
- MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 760,
776
- MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 761,
777
- MenuOptionsButtonWarnWhenBreakingItemsOnUse = 762,
778
- MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 763,
779
- MenuOptionsHeadingWarnWhenBreakingItems = 764,
780
- MenuOptionsButtonSaveDataClearBindings = 765,
781
- MenuOptionsButtonDisableMilestones = 766,
782
- MenuOptionsLabelSaveDataRemoval = 767,
783
- MenuOptionsTooltipDialogOpacity = 768,
784
- MenuOptionsLabelDialogOpacity = 769,
785
- MenuOptionsDeveloperSteamBetas = 770,
786
- MenuOptionsDeveloperSteamBetaName = 771,
787
- MenuOptionsDeveloperLogSourceFilterHeading = 772,
788
- MenuOptionsDeveloperUIExperiments = 773,
789
- MenuOptionsDeveloperUIExperimentsDescription = 774,
790
- MenuOptionsDeveloperDebugging = 775,
791
- MenuOptionsDeveloperDebuggingDescription = 776,
792
- MenuOptionsDeveloperToggleContainerDesyncDebugging = 777,
793
- MenuOptionsDeveloperToggleContainerDesyncDebuggingDescription = 778,
794
- MenuOptionsAudioVolumeDisplay = 779,
795
- MenuOptionsAudioInputSoundOnTyping = 780,
796
- MenuOptionsAudioPlayAudioInBackground = 781,
797
- MenuOptionsMusicPlaylist = 782,
798
- MenuOptionsButtonConfigureBindings = 783,
799
- MenuOptionsButtonSaveCompression = 784,
800
- MenuOptionsButtonSaveCompressionTooltip = 785,
801
- MenuOptionsButtonSaveUIDataGlobally = 786,
802
- MenuOptionsButtonSaveUIDataGloballyTooltip = 787,
803
- MenuPauseButtonContinueGame = 788,
804
- MenuPauseButtonReturnToGame = 789,
805
- MenuPauseButtonOptions = 790,
806
- MenuPauseButtonGameSettings = 791,
807
- MenuPauseButtonPaused = 792,
808
- MenuPauseButtonMultiplayer = 793,
809
- MenuPauseButtonHelp = 794,
810
- MenuPauseButtonTitleScreen = 795,
811
- MenuPauseButtonStopServer = 796,
812
- MenuPauseButtonQuitWithoutSaving = 797,
813
- MenuPauseTooltipNotPaused = 798,
814
- MenuPauseLabelPaused = 799,
815
- MenuPauseLabelNotPaused = 800,
816
- MenuModesTitle = 801,
817
- MenuModesDescription = 802,
818
- MenuMultiplayerOptionsTitle = 803,
819
- MenuMultiplayerOptionsDescription = 804,
820
- MenuMultiplayerOptionsOpenServer = 805,
821
- MenuMultiplayerOptionsOpenServerDescription = 806,
822
- MenuMultiplayerOptionsCopyGameCode = 807,
823
- MenuMultiplayerOptionsCopyGameCodeTooltip = 808,
824
- MenuMultiplayerOptionsInviteSteamFriends = 809,
825
- MenuMultiplayerOptionsCheckConnectionHeading = 810,
826
- MenuMultiplayerOptionsCheckConnectionParagraph = 811,
827
- MenuMultiplayerOptionsCheckConnectionButton = 812,
828
- MenuMultiplayerOptionsCheckConnectionResultUnknown = 813,
829
- MenuMultiplayerOptionsCheckConnectionResultChecking = 814,
830
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 815,
831
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 816,
832
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 817,
833
- MenuMultiplayerOptionsCheckConnectionResultWebSocket = 818,
834
- MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 819,
835
- MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 820,
836
- MenuMultiplayerOptionsCheckConnectionResultSuccess = 821,
837
- MenuJoinServerTitle = 822,
838
- MenuJoinServerDescription = 823,
839
- MenuJoinServerInputPlaceholder = 824,
840
- MenuJoinServerChooseModifiersTitle = 825,
841
- MenuJoinServerChooseModifiersDescription = 826,
842
- MenuSharedMultiplayerChoiceLobbyTypeFriends = 827,
843
- MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 828,
844
- MenuSharedMultiplayerChoiceLobbyTypePublic = 829,
845
- MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 830,
846
- MenuSharedMultiplayerChoiceLobbyTypePrivate = 831,
847
- MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 832,
848
- MenuSharedMultiplayerChoicePVP = 833,
849
- MenuSharedMultiplayerChoicePVPDescription = 834,
850
- MenuSharedMultiplayerChoiceAllowTraveling = 835,
851
- MenuSharedMultiplayerChoiceAllowTravelingDescription = 836,
852
- MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 837,
853
- MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 838,
854
- MenuSharedMultiplayerChoicePauseOnDesync = 839,
855
- MenuSharedMultiplayerChoicePauseOnDesyncDescription = 840,
856
- MenuSharedMultiplayerDescription = 841,
857
- MenuSharedMultiplayerMessageOfTheDay = 842,
858
- MenuSharedMultiplayerMaxPlayers = 843,
859
- MenuSharedRealTimeTickSpeedTooltip = 844,
860
- MenuSharedRealTimeTickSpeedLabel = 845,
861
- MenuSharedButtonDefault = 846,
862
- MenuSharedValueSeconds = 847,
863
- MenuSharedValueMilliseconds = 848,
864
- MenuSharedValuePercentage = 849,
865
- MenuSharedMilestonesNotUnlockable = 850,
866
- MenuSharedMilestonesNotUnlockableDescription = 851,
867
- MenuSharedMilestonesNotUnlockableButtonShowMods = 852,
868
- MenuSharedButtonDisableAll = 853,
869
- MenuSharedButtonEnableAll = 854,
870
- MenuSharedMilestoneModifiersSelected = 855,
871
- MiscSortBy = 856,
872
- MiscSortCustom = 857,
873
- MiscSortDirection = 858,
874
- MiscFilter = 859,
875
- MiscNone = 860,
876
- MiscPlayerNameDefault = 861,
877
- MiscPlayerNameServer = 862,
878
- MiscSaveNameDefault = 863,
879
- MiscSaveNameDailyChallenge = 864,
880
- MiscSaveNameChallenge = 865,
881
- MiscSaveVersionUnknown = 866,
882
- MiscVersion = 867,
883
- MiscVersionBuildInfoTooltip = 868,
884
- MiscVersionUpdate = 869,
885
- MiscTime = 870,
886
- MiscTimeMeridiem = 871,
887
- MiscError = 872,
888
- MiscContextMenuCopyTooltip = 873,
889
- MiscBindableNoBindings = 874,
890
- MiscBindingIcon = 875,
891
- MiscBindingIconThen = 876,
892
- DifficultyOptionsPeaceful = 877,
893
- DifficultyOptionsAberrantSpawnsDisabled = 878,
894
- DifficultyOptionsAberrantSpawnsOnly = 879,
895
- DifficultyOptionsCreatureSpawningDisabled = 880,
896
- DifficultyOptionsCreatureAlwaysSpawns = 881,
897
- DifficultyOptionsCreatureSpawnsDefault = 882,
898
- DifficultyOptionsCreatureSpawnsAberrantOnly = 883,
899
- DifficultyOptionsCreatureSpawnsNoAberrants = 884,
900
- DifficultyOptionsSpawnLimit = 885,
901
- DifficultyOptionsSpawnRateMultiplier = 886,
902
- DifficultyOptionsDisableScared = 887,
903
- DifficultyOptionsRespawn = 888,
904
- DifficultyOptionsEternalNight = 889,
905
- DifficultyOptionsEternalDay = 890,
906
- DifficultyOptionsTimeInitial = 891,
907
- DifficultyOptionsTimeFrozen = 892,
908
- DifficultyOptionsTimeDayLength = 893,
909
- DifficultyOptionsTimeDayPercent = 894,
910
- DifficultyOptionsNoItems = 895,
911
- DifficultyOptionsRecipes = 896,
912
- DifficultyOptionsStartingIsland = 897,
913
- DifficultyOptionsTravelingEffectsDisabled = 898,
914
- DifficultyOptionsLuck = 899,
915
- DifficultyOptionsWeightBonus = 900,
916
- DifficultyOptionsStatInitial = 901,
917
- DifficultyOptionsStatMax = 902,
918
- DifficultyOptionsStatMultiplier = 903,
919
- DifficultyOptionsStatusStartWith = 904,
920
- DifficultyOptionsStatusUntreatable = 905,
921
- DifficultyOptionsStatusPassChanceMultiplier = 906,
922
- DifficultyOptionsNoRandomSkills = 907,
923
- DifficultyOptionsSkillStartingCount = 908,
924
- DifficultyOptionsSkillGainMultiplier = 909,
925
- DifficultyOptionsSkillInitial = 910,
926
- DifficultyOptionsStatusPermanent = 911,
927
- DifficultyOptionsStatusRateMultiplier = 912,
928
- DifficultyOptionsStatusMultiplier = 913,
929
- DifficultyOptionsItemDurabilityMultiplier = 914,
930
- DifficultyOptionsItemDecayMultiplier = 915,
931
- DifficultyOptionsTileContainersEnabled = 916,
932
- TabCrafting = 917,
933
- TabDismantle = 918,
934
- WindowTitleContainer = 919,
935
- WindowTitleInventory = 920
19
+ SharedButtonCancel = 4,
20
+ GameSharedInspectionSectionSummary = 5,
21
+ GameContextMenuTooltipOpenBindings = 6,
22
+ GameStaticButtonRespawn = 7,
23
+ GameStaticButtonRespawnInCasualMode = 8,
24
+ GameStaticButtonRespawnAsNewCharacter = 9,
25
+ GameStaticPopupNightLabel = 10,
26
+ GameDialogSharedContextMenuResetPosition = 11,
27
+ GameDialogSharedIslandDropdownLabel = 12,
28
+ GameDialogContainerSetActiveButtonTooltipTitle = 13,
29
+ GameDialogContainerSetActiveButtonTooltipDescription = 14,
30
+ GameDialogContainerMoveAllTooltipTitle = 15,
31
+ GameDialogContainerMoveAllTooltipDescription = 16,
32
+ GameDialogContainerTradeContainerMerchantTradesTitle = 17,
33
+ GameDialogContainerTradeContainerYouTradeTitle = 18,
34
+ GameDialogContainerTradeButtonTrade = 19,
35
+ GameDialogContainerTradeContainerMerchantWeight = 20,
36
+ GameDialogContainerTradeContainerMerchantWeightLimit = 21,
37
+ GameDialogContainerTradeContainerYouCurrentCredit = 22,
38
+ GameDialogContainerAltarButtonOffer = 23,
39
+ GameDialogEquipmentTooltipUnequip = 24,
40
+ GameDialogMessagesOptionTimestamp = 25,
41
+ GameDialogMessagesOptionShowSendButton = 26,
42
+ GameDialogMessagesOptionShowOptionsButton = 27,
43
+ GameDialogMessagesOptionUnfocusOnSend = 28,
44
+ GameDialogMessagesEditFiltersLabelName = 29,
45
+ GameDialogMessagesEditFiltersButtonDelete = 30,
46
+ GameDialogMessagesEditFiltersButtonSave = 31,
47
+ GameDialogMessagesEditFiltersButtonReset = 32,
48
+ GameDialogMessagesEditFiltersButtonNew = 33,
49
+ GameDialogMessagesEditFiltersMessageTooltipLabelSources = 34,
50
+ GameDialogMessagesEditFiltersMessageTooltipLabelSourcesSummary = 35,
51
+ GameDialogNotesNoteTime = 36,
52
+ GameDialogNotesNoteNumber = 37,
53
+ GameDialogNotesNoteLockedTitle = 38,
54
+ GameDialogNotesNoteLockedDescription = 39,
55
+ GameDialogNotesLinkId = 40,
56
+ GameDialogNotesLinkLearnMore = 41,
57
+ GameDialogNotesSettingsPinUnreadNotesAutomatically = 42,
58
+ GameDialogMilestonesInvisibleMilestone = 43,
59
+ GameDialogMilestonesProgress = 44,
60
+ GameDialogMilestonesProgressHidden = 45,
61
+ GameDialogMilestonesMilestone = 46,
62
+ GameDialogMilestonesTooltipMystery = 47,
63
+ GameDialogMilestonesTooltipInvisible = 48,
64
+ GameDialogUnlockablesHeadingNotUnlockableInMode = 49,
65
+ GameDialogUnlockablesHeadingAlreadyUnlocked = 50,
66
+ GameDialogUnlockablesLabelPlusHidden = 51,
67
+ GameDialogUnlockablesNotUnlockable = 52,
68
+ GameDialogSkillsSkill = 53,
69
+ GameDialogSkillsSkillHover = 54,
70
+ GameDialogMapDurability = 55,
71
+ GameDialogMapTooltipRiddle = 56,
72
+ GameDialogMapTooltipRotateClockwise = 57,
73
+ GameDialogMapTooltipRotateCounterClockwise = 58,
74
+ GameDialogMapTooltipFlipHorizontal = 59,
75
+ GameDialogMapTooltipFlipVertical = 60,
76
+ GameDialogMapTooltipResetView = 61,
77
+ GameDialogMapTooltipCopyMap = 62,
78
+ GameDialogMapTooltipCopyMapRequirementMissing = 63,
79
+ GameDialogMapCheckButtonAlwaysOpaque = 64,
80
+ GameDialogMapCheckButtonUseOnlyIntegerZoomLevels = 65,
81
+ GameDialogMapLabelTheme = 66,
82
+ GameDialogQuestsLink = 67,
83
+ GameDialogQuestsLinkChildQuest = 68,
84
+ GameDialogQuestsChildQuests = 69,
85
+ GameDialogQuestsRequirements = 70,
86
+ GameDialogQuestsActiveQuests = 71,
87
+ GameDialogQuestsCompletedQuests = 72,
88
+ GameDialogQuestsCompleteQuest = 73,
89
+ GameDialogQuestsRequirementSkip = 74,
90
+ GameDialogIslandsCloseOnTravel = 75,
91
+ GameDialogIslandsShipTitle = 76,
92
+ GameDialogIslandsNoPort = 77,
93
+ GameDialogIslandsConstructLighthousesToBuildMorePorts = 78,
94
+ GameTooltipInspect = 79,
95
+ GameTooltipShowMoreInformation = 80,
96
+ GameTooltipDefenseLabelBase = 81,
97
+ GameTooltipDefenseLabelVehicleBonus = 82,
98
+ GameTooltipDefenseLabelBaseDefenseMultiplier = 83,
99
+ GameTooltipDefenseInsulationWeight = 84,
100
+ GameTooltipDefenseInsulationWeightLabel = 85,
101
+ GameTooltipDefenseInsulationWeightTooltip = 86,
102
+ GameTooltipDefenseInsulationNotRequired = 87,
103
+ GameTooltipDefenseInsulationNotRequiredTooltip = 88,
104
+ GameTooltipItemUseLabelMaxWeight = 89,
105
+ GameTooltipMagicalLabel = 90,
106
+ GameTooltipSharedUsesLabel = 91,
107
+ GameTooltipSharedLabelTurns = 92,
108
+ GameTooltipSharedLabelTurnsAgo = 93,
109
+ GameTooltipSharedLabelUntamesIn = 94,
110
+ GameTooltipSharedLabelTimesTamed = 95,
111
+ GameTooltipSharedLabelTimesPetted = 96,
112
+ GameTooltipRecipeLabelSkill = 97,
113
+ GameTooltipRecipeLabelLevel = 98,
114
+ GameTooltipRecipeLabelEfficacy = 99,
115
+ GameTooltipRecipeLabelEfficacyHigh = 100,
116
+ GameTooltipRecipeLabelEfficacyHighest = 101,
117
+ GameTooltipRecipeLabelEfficacyLow = 102,
118
+ GameTooltipRecipeLabelEfficacyLowest = 103,
119
+ GameTooltipRecipeLabelEfficacyMed = 104,
120
+ GameTooltipRecipeLabelEfficacyLabel = 105,
121
+ GameTooltipRecipeLabelSuccessChance = 106,
122
+ GameTooltipRecipeLabelQualityChance = 107,
123
+ GameTooltipRecipeLabelMasterCraftChance = 108,
124
+ GameTooltipRecipeNearby = 109,
125
+ GameTooltipRecipeFireSource = 110,
126
+ GameTooltipRecipeRequirement = 111,
127
+ GameTooltipRecipeLabelRequired = 112,
128
+ GameTooltipRecipeLabelConsumed = 113,
129
+ GameTooltipItemSkillSource = 114,
130
+ GameTooltipItemUseActionOnConsumeTooltipBase = 115,
131
+ GameTooltipItemUseActionOnConsumeTooltipSkill = 116,
132
+ GameTooltipItemUseActionOnConsumeTooltipQuality = 117,
133
+ GameTooltipItemUseActionOnConsumeTooltipMagical = 118,
134
+ GameTooltipItemUseActionOnConsumeTooltipMagicalStat = 119,
135
+ GameTooltipItemUseActionSharedLabelRequirements = 120,
136
+ GameTooltipItemUseActionDismantleProduces = 121,
137
+ GameTooltipSharedUseLabelLightSource = 122,
138
+ GameTooltipItemUseLabelTelescopy = 123,
139
+ GameTooltipItemDecay = 124,
140
+ GameTooltipItemDecayExact = 125,
141
+ GameTooltipItemDecayRate = 126,
142
+ GameTooltipItemDecayRateTooltip = 127,
143
+ GameTooltipItemWeight = 128,
144
+ GameTooltipItemWeightBase = 129,
145
+ GameTooltipItemWeightStored = 130,
146
+ GameTooltipItemWeightStoredReduction = 131,
147
+ GameTooltipItemLabelRange = 132,
148
+ GameTooltipItemLabelAccuracy = 133,
149
+ GameTooltipItemMagicalSource = 134,
150
+ GameTooltipItemGroupingsLabel = 135,
151
+ GameTooltipItemGroup = 136,
152
+ GameTooltipItemLabelUsesWhenBuilt = 137,
153
+ GameTooltipItemWorth = 138,
154
+ GameTooltipItemProtected = 139,
155
+ GameTooltipItemProtectedSimpleDescription = 140,
156
+ GameTooltipItemProtectedContainer = 141,
157
+ GameTooltipItemVehicle = 142,
158
+ GameTooltipItemVehicleMovementSpeed = 143,
159
+ GameTooltipItemVehicleDefenseBonus = 144,
160
+ GameTooltipItemLabelDismantle = 145,
161
+ GameTooltipItemLabelDismantleRequirement = 146,
162
+ GameTooltipItemQuantityMultiplier = 147,
163
+ GameTooltipItemUseAttack = 148,
164
+ GameTooltipItemUseThrowDamage = 149,
165
+ GameTooltipItemUseCrafting = 150,
166
+ GameTooltipSharedLabelDoodadCraftingBonus = 151,
167
+ GameTooltipItemUseOffering = 152,
168
+ GameTooltipItemUseEquipDefense = 153,
169
+ GameTooltipItemUseEquipDefenseAttribute = 154,
170
+ GameTooltipItemUseMainHand = 155,
171
+ GameTooltipItemUseOffhand = 156,
172
+ GameTooltipItemLabelDamage = 157,
173
+ GameTooltipItemBarterCreditTradeAvailable = 158,
174
+ GameTooltipItemBarterCreditTrade = 159,
175
+ GameTooltipItemBarterCredit = 160,
176
+ GameTooltipItemLabelIsland = 161,
177
+ GameTooltipSharedLabelWeightCapacity = 162,
178
+ GameTooltipSharedLabelCivilizationScore = 163,
179
+ GameTooltipSharedLabelCivilizationScoreFull = 164,
180
+ GameTooltipSharedLabelDoodadSkillAdjacent = 165,
181
+ GameTooltipSharedLabelAdjacentSkillBonus = 166,
182
+ GameTooltipSharedLabelGrowingSpeed = 167,
183
+ GameTooltipSharedLabelInsulation = 168,
184
+ GameTooltipSharedLabelStoredInsulation = 169,
185
+ GameTooltipSharedLabelPreservation = 170,
186
+ GameTooltipSharedLabelDurability = 171,
187
+ GameTooltipSharedLabelPurification = 172,
188
+ GameTooltipSharedLabelPurificationTurns = 173,
189
+ GameTooltipSharedDurabilityMagicalDamageReduction = 174,
190
+ GameTooltipSharedDurabilityMagicalDamageRegeneration = 175,
191
+ GameTooltipSharedLabelContents = 176,
192
+ GameTooltipSkill = 177,
193
+ GameTooltipSkillCurrent = 178,
194
+ GameTooltipSkillCanIncrease = 179,
195
+ GameTooltipSkillItemBonuses = 180,
196
+ GameTooltipSkillDoodadBonuses = 181,
197
+ GameTooltipSkillBonus = 182,
198
+ GameTooltipMilestone = 183,
199
+ GameTooltipMilestoneProgress = 184,
200
+ GameTooltipMilestoneDiscovered = 185,
201
+ GameTooltipMilestoneHintClickToUseAsTitle = 186,
202
+ GameTooltipMilestoneUsingAsTitle = 187,
203
+ GameTooltipSharedMagicalProperty = 188,
204
+ GameTooltipSharedMagicalPropertyOutOf = 189,
205
+ GameTooltipSharedLabel = 190,
206
+ GameTooltipSharedLabelDash = 191,
207
+ GameTooltipSharedLabelHead = 192,
208
+ GameTooltipSharedLabelTail = 193,
209
+ GameTooltipSharedLabelStart = 194,
210
+ GameTooltipSharedLabelStartNoSpace = 195,
211
+ GameTooltipSharedLabelEnd = 196,
212
+ GameTooltipSharedResistsAndVulnsLabelVulnerableTo = 197,
213
+ GameTooltipSharedResistsAndVulnsLabelResistantTo = 198,
214
+ GameTooltipSharedResistsAndVulnsLabelImmuneTo = 199,
215
+ GameTooltipSharedResistsAndVulnsLabelHealsFrom = 200,
216
+ GameTooltipSharedResistsAndVulnsDamageType = 201,
217
+ GameTooltipIslandBiome = 202,
218
+ GameTooltipIslandSeed = 203,
219
+ GameTooltipIslandDaysSpent = 204,
220
+ GameTooltipIslandDaysSpentDaysUnit = 205,
221
+ GameTooltipIslandDaysSpentCumulative = 206,
222
+ GameTooltipIslandUndiscovered = 207,
223
+ GameTooltipIslandUnnamed = 208,
224
+ GameTooltipIslandSelf = 209,
225
+ GameTooltipIslandPlayers = 210,
226
+ GameTooltipIslandPorts = 211,
227
+ GameTooltipIslandNPCs = 212,
228
+ GameTooltipIslandModifiers = 213,
229
+ GameTooltipIslandMaps = 214,
230
+ GameTooltipIslandCoordinates = 215,
231
+ GameTooltipIslandCoordinatesLabel = 216,
232
+ GameTooltipNPCMerchantCredit = 217,
233
+ GameTooltipNPCMerchantNewInventory = 218,
234
+ GameTooltipNPCShipperNoItems = 219,
235
+ GameTooltipNPCShipperContainedItems = 220,
236
+ GameTooltipActionUndiscovered = 221,
237
+ GameTooltipActionTierLabel = 222,
238
+ GameTooltipSharedRuneChance = 223,
239
+ GameToolTipSharedRuneChanceAction = 224,
240
+ GameToolTipSharedRuneChanceCrafting = 225,
241
+ GameToolTipSharedRuneChanceSkill = 226,
242
+ GameTooltipEquipSlotOffHandDisabledTwoHandedOffHand = 227,
243
+ GameTooltipEquipSlotOffHandDisabledTwoHandedMainHand = 228,
244
+ GameTooltipStatSubtitle = 229,
245
+ GameTooltipStatSubtitleCore = 230,
246
+ GameTooltipStatAttackSectionMelee = 231,
247
+ GameTooltipStatAttackSectionRanged = 232,
248
+ GameTooltipStatAttackRange = 233,
249
+ GameTooltipStatAttackMultiplier = 234,
250
+ GameTooltipStatWeightLabelMax = 235,
251
+ GameTooltipStatSharedLabelMax = 236,
252
+ GameTooltipStatSharedLabelSkill = 237,
253
+ GameTooltipStatSharedCoreStat = 238,
254
+ GameTooltipStatSharedCoreStatLabelSkills = 239,
255
+ GameTooltipStatSharedCoreStatSkillsListUndiscoveredSkills = 240,
256
+ GameTooltipStatusMoreInformationRevealedAtSkillThreshold = 241,
257
+ GameTooltipStatusLabelCures = 242,
258
+ GameTooltipCreatureSubtitle = 243,
259
+ GameTooltipCreatureColorContext = 244,
260
+ GameTooltipCreatureLabelTamed = 245,
261
+ GameTooltipCreatureLabelMood = 246,
262
+ GameTooltipCreatureLabelCommand = 247,
263
+ GameTooltipCreatureLabelCanPetIn = 248,
264
+ GameTooltipCreatureCanPet = 249,
265
+ GameTooltipCreatureLabelCanMilkIn = 250,
266
+ GameTooltipCreatureLabelAberrant = 251,
267
+ GameTooltipCreatureLabelStatuses = 252,
268
+ GameTooltipCreatureAberrantDescriptionShort = 253,
269
+ GameTooltipCreatureAberrantDescriptionExtra = 254,
270
+ GameTooltipCreatureAberrantDescriptionVerbose = 255,
271
+ GameTooltipCreatureProducingMilk = 256,
272
+ GameTooltipDeityLabelDomains = 257,
273
+ GameTooltipStatFerocityScore = 258,
274
+ GameTooltipStatFerocityCivilizationScore = 259,
275
+ GameTooltipStatFerocityCivilizationScoreTerritory = 260,
276
+ GameTooltipStatFerocityTurn = 261,
277
+ GameTooltipStatFerocityTicks = 262,
278
+ GameTooltipStatFerocityNights = 263,
279
+ GameTooltipStatFerocityDays = 264,
280
+ GameTooltipSharedUndiscovered = 265,
281
+ GameTooltipStatCurseFactors = 266,
282
+ GameStatsStatAttack = 267,
283
+ GameStatsStatGeneric = 268,
284
+ GameStatsStatGenericWithMax = 269,
285
+ GameStatsStatbar = 270,
286
+ GameMenuBarButtonTooltipBindable = 271,
287
+ GameMenuBarButtonTooltipSaveSize = 272,
288
+ GameMenuBarButtonTooltipSaveTurnsAgo = 273,
289
+ GameMenuBarButtonTooltipSaveLastTime = 274,
290
+ GameMenuBarButtonTooltipNotesUnread = 275,
291
+ GameMenuBarButtonTooltipMilestonesDisabled = 276,
292
+ GameMenuBarButtonTooltipQuestsDisabled = 277,
293
+ GameMenuBarContextMenuActionRemoveItem = 278,
294
+ GameMenuBarContextMenuActionInsertItem = 279,
295
+ GameMenuBarContextMenuActionReset = 280,
296
+ GameActionBarContextMenuDisplayBindings = 281,
297
+ GameActionBarContextMenuAutoSelectPrimaryUse = 282,
298
+ GameActionBarContextMenuBringSlotsIntoNewSaves = 283,
299
+ GameActionBarContextMenuConfigure = 284,
300
+ GameActionBarContextMenuSelectModifierOrder = 285,
301
+ GameActionBarContextMenuSelectModifierOrderNoModifier = 286,
302
+ GameActionBarContextMenuAutoSwitchToBestItemOnInaccessible = 287,
303
+ GameActionBarConfigurationDrawerTitle = 288,
304
+ GameActionBarConfigurationDrawerFooterDiscoveryHint = 289,
305
+ GameActionBarConfigurationDrawerFooterDiscoveryHintProgress = 290,
306
+ GameActionBarConfigurationDrawerSlotHintUse = 291,
307
+ GameActionBarConfigurationDrawerSlotHintToggle = 292,
308
+ GameActionBarConfigurationDrawerSlotHintToggleUseOnMove = 293,
309
+ GameActionBarConfigurationDrawerColumnTitleActions = 294,
310
+ GameActionBarConfigurationDrawerColumnTitleItemActions = 295,
311
+ GameActionBarConfigurationDrawerColumnTitleConfiguration = 296,
312
+ GameActionBarConfigurationDrawerButtonEditBindings = 297,
313
+ GameActionBarConfigurationDrawerButtonClearSlot = 298,
314
+ GameActionBarConfigurationDrawerColumnTitleInapplicable = 299,
315
+ GameActionBarConfigurationDrawerButtonUseOnMove = 300,
316
+ GameActionBarConfigurationDrawerButtonUseOnMoveDescription = 301,
317
+ GameActionBarConfigurationDrawerButtonUseOnHoveredTile = 302,
318
+ GameActionBarConfigurationDrawerButtonUseOnHoveredTileDescription = 303,
319
+ GameActionBarConfigurationDrawerModeUseExact = 304,
320
+ GameActionBarConfigurationDrawerModeUseExactNoItemSelected = 305,
321
+ GameActionBarConfigurationDrawerModeUseBest = 306,
322
+ GameActionBarConfigurationDrawerModeUseNone = 307,
323
+ GameActionBarConfigurationDrawerModeUseHovered = 308,
324
+ GameActionBarConfigurationDrawerItemDropdownAny = 309,
325
+ GameActionBarConfigurationDrawerItemDropdownNoTypeSelected = 310,
326
+ GameActionBarConfigurationDrawerButtonDone = 311,
327
+ GameActionBarConfigurationDrawerButtonCraftType = 312,
328
+ GameActionBarSlotTooltipHintUse = 313,
329
+ GameActionBarSlotTooltipHintConfigure = 314,
330
+ GameActionBarSlotTooltipHintUseOnMove = 315,
331
+ GameActionBarSlotTooltipHintUseSlottedItem = 316,
332
+ GameActionBarSlotTooltipHintClear = 317,
333
+ GameActionBarButtonToggleUseWhenMovingTooltip = 318,
334
+ GameActionBarButtonRemoveActionBarRowTooltip = 319,
335
+ GameActionBarButtonAddActionBarRowTooltip = 320,
336
+ GameActionBarButtonConfigureOptions = 321,
337
+ GameMessagesButtonSend = 322,
338
+ GameMessagesContextMenuShowAsDialog = 323,
339
+ GameMessagesContextMenuClear = 324,
340
+ GameMessagesContextMenuCopy = 325,
341
+ GameMessagesContextMenuExport = 326,
342
+ GameMessagesFilter = 327,
343
+ GameMessagesFiltersEdit = 328,
344
+ GameMessagesNewNote = 329,
345
+ GameMessagesTurn = 330,
346
+ GameMessagesDedicatedServerBackup = 331,
347
+ GameMessagesDedicatedServerBackupLimitReached = 332,
348
+ GameMessagesPlaceholderChat = 333,
349
+ GameMessagesButtonShowNewest = 334,
350
+ GameTileInspectionCannotSeeTile = 335,
351
+ MenuAboutTitle = 336,
352
+ MenuAboutDescription = 337,
353
+ MenuAboutGameDescription = 338,
354
+ MenuAboutSectionTeam = 339,
355
+ MenuAboutTeamMemberName = 340,
356
+ MenuAboutTeamMemberNickname = 341,
357
+ MenuAboutSectionContributors = 342,
358
+ MenuAboutSectionSpecialThanks = 343,
359
+ MenuAboutTextSpecialThanksTestorsAndDonators = 344,
360
+ MenuAboutSectionLibraries = 345,
361
+ MenuAboutSectionLibrariesDescription = 346,
362
+ MenuAboutLabelVersion = 347,
363
+ MenuAboutLabelVersionBuild = 348,
364
+ MenuAboutLabelVersionBuildTime = 349,
365
+ MenuBindings = 350,
366
+ MenuBindingsDescription = 351,
367
+ MenuBindingsTooltipBindConflicts = 352,
368
+ MenuBindingsManagedBindableGameActionBarUseSlot = 353,
369
+ MenuBindingsManagedBindableGameActionBarAssignSlot = 354,
370
+ MenuBindingsManagedBindableGameActionBarToggleUseOnMoveSlot = 355,
371
+ MenuChangelogTitle = 356,
372
+ MenuChangelogDescription = 357,
373
+ MenuChangelogHeadingUnchartedWaters = 358,
374
+ MenuChangelogFailedToLoadTitle = 359,
375
+ MenuChangelogFailedToLoadDescription = 360,
376
+ MenuChangelogHeadingChangeCount = 361,
377
+ MenuChangelogButtonCopyChangelog = 362,
378
+ MenuChangelogButtonCopyAltChangelog = 363,
379
+ MenuCharacterCreationButtonRandomizeName = 364,
380
+ MenuCharacterCreationButtonExportTooltip = 365,
381
+ MenuCharacterCreationButtonImportTooltip = 366,
382
+ MenuCharacterCreationButtonStartGame = 367,
383
+ MenuCharacterCreationButtonJoinGame = 368,
384
+ MenuCharacterCreationDescription = 369,
385
+ MenuCharacterCreationHeadingHairColor = 370,
386
+ MenuCharacterCreationHeadingHairStyle = 371,
387
+ MenuCharacterCreationHeadingSkinTone = 372,
388
+ MenuCharacterCreationLabelName = 373,
389
+ MenuCharacterCreationTitle = 374,
390
+ MenuCharacterCreationButtonRotateLeftTooltip = 375,
391
+ MenuCharacterCreationButtonRotateRightTooltip = 376,
392
+ MenuCharacterCreationButtonRandomizeTooltip = 377,
393
+ MenuCharacterSelectionButtonNewCharacter = 378,
394
+ MenuCharacterSelectionDescription = 379,
395
+ MenuCharacterSelectionHeadingNoCharacters = 380,
396
+ MenuCharacterSelectionTitle = 381,
397
+ MenuCharacterSelectionLabelLastUse = 382,
398
+ MenuCharacterSelectionLabelUseCount = 383,
399
+ MenuCharacterSelectionCharacterButtonDeleteTooltip = 384,
400
+ MenuCharacterSelectionCharacterButtonCustomizeTooltip = 385,
401
+ MenuDevelopmentBranchTitle = 386,
402
+ MenuDevelopmentBranchSuperTitle = 387,
403
+ MenuDevelopmentBranchWarning = 388,
404
+ MenuDevelopmentBranchStatus = 389,
405
+ MenuDevelopmentBranchStatusUnavailable = 390,
406
+ MenuErrorReportingTitle = 391,
407
+ MenuErrorReportingDescription = 392,
408
+ MenuErrorReportingContentsTitle = 393,
409
+ MenuErrorReportingContentsDescription = 394,
410
+ MenuMultiplayerDescription = 395,
411
+ MenuMultiplayerTitle = 396,
412
+ MenuMultiplayerButtonJoinById = 397,
413
+ MenuMultiplayerServerLabelDays = 398,
414
+ MenuMultiplayerServerLabelIsland = 399,
415
+ MenuMultiplayerButtonNewGame = 400,
416
+ MenuMultiplayerButtonLoadGame = 401,
417
+ MenuMultiplayerServerTooltipPVP = 402,
418
+ MenuMultiplayerServerTooltipModsLabel = 403,
419
+ MenuMultiplayerServerTooltipFriendsLabel = 404,
420
+ MenuMultiplayerServerPlayers = 405,
421
+ MenuMultiplayerServerLobbyType = 406,
422
+ MenuMultiplayerServerRegion = 407,
423
+ MenuMultiplayerServerHost = 408,
424
+ MenuMultiplayerServerVersion = 409,
425
+ MenuMultiplayerServerVersionUnknown = 410,
426
+ MenuMultiplayerServerDedicated = 411,
427
+ MenuMultiplayerHeadingPlayersOnline = 412,
428
+ MenuMultiplayerServerModInfo = 413,
429
+ MenuMultiplayerServerModUnableToLoad = 414,
430
+ MenuMultiplayerServerLabelTerritoryTier = 415,
431
+ MenuGameEndTitleDead = 416,
432
+ MenuGameEndTitleWon = 417,
433
+ MenuGameEndShareFacebook = 418,
434
+ MenuGameEndShareTwitter = 419,
435
+ MenuGameEndContinueAsGhost = 420,
436
+ MenuGameEndRespawnInCasualMode = 421,
437
+ MenuGameEndRespawnAsNewCharacter = 422,
438
+ MenuGameEndReturnToIsland = 423,
439
+ MenuGameEndExitToMenu = 424,
440
+ MenuHelpTitle = 425,
441
+ MenuHelpDescription = 426,
442
+ MenuHelpLabelSearch = 427,
443
+ MenuHighscoresTitle = 428,
444
+ MenuHighscoresDescription = 429,
445
+ MenuHighscoresDifficultyFilterAll = 430,
446
+ MenuHighscoresHighscoreLabelDifficulty = 431,
447
+ MenuHighscoresHighscoreLabelTurns = 432,
448
+ MenuHighscoresHighscoreLabelScore = 433,
449
+ MenuHighscoresHighscoreLabelPlace = 434,
450
+ MenuHighscoresHighscoreLabelDate = 435,
451
+ MenuHighscoresHighscoreLabelDeathBy = 436,
452
+ MenuHighscoresHighscoreTitle = 437,
453
+ MenuHighscoresCharacterNameUnknown = 438,
454
+ MenuHighscoresHighscoreReplayWithSettings = 439,
455
+ MenuLoadGameButtonSaveSlot = 440,
456
+ MenuLoadGameButtonNewGame = 441,
457
+ MenuLoadGameButtonNewGameButtonImportTooltip = 442,
458
+ MenuLoadGameDescription = 443,
459
+ MenuLoadGameSaveButtonDeleteTooltip = 444,
460
+ MenuLoadGameSaveButtonEditNameTooltip = 445,
461
+ MenuLoadGameSaveButtonExportTooltip = 446,
462
+ MenuLoadGameSaveTooltipLabelCreatedTime = 447,
463
+ MenuLoadGameSaveTooltipLabelSaveTime = 448,
464
+ MenuLoadGameSaveTooltipLabelGameMode = 449,
465
+ MenuLoadGameSaveTooltipLabelScore = 450,
466
+ MenuLoadGameSaveTooltipLabelSeed = 451,
467
+ MenuLoadGameSaveTooltipLabelTurns = 452,
468
+ MenuLoadGameSaveTooltipLabelMods = 453,
469
+ MenuLoadGameSaveTooltipLabelOriginalVersion = 454,
470
+ MenuLoadGameSaveTooltipMod = 455,
471
+ MenuLoadGameSaveTooltipNew = 456,
472
+ MenuLoadGameSaveTooltipCorrupted = 457,
473
+ MenuLoadGameSaveGame = 458,
474
+ MenuLoadGameSaveGameDescription = 459,
475
+ MenuLoadGameTitle = 460,
476
+ MenuLoadGameLabelSelected = 461,
477
+ MenuLoadGameButtonDeleteSelectedTooltip = 462,
478
+ MenuLoadGameImportSaveFailure = 463,
479
+ MenuLoadGameSectionSavedGames = 464,
480
+ MenuLoadGameSectionImportFolders = 465,
481
+ MenuLoadGameSectionImportFoldersPlaceholderPathToSaves = 466,
482
+ MenuLoadGameSectionImportFoldersButtonAddFolder = 467,
483
+ MenuLoadGameSectionImportFoldersButtonDeleteFolder = 468,
484
+ MenuMainButtonAbout = 469,
485
+ MenuMainButtonChangelog = 470,
486
+ MenuMainButtonMultiplayer = 471,
487
+ MenuMainButtonHighscores = 472,
488
+ MenuMainButtonLoadGame = 473,
489
+ MenuMainButtonMods = 474,
490
+ MenuMainButtonModsTooltipLabelEnabledMods = 475,
491
+ MenuMainButtonModsTooltipAndXOthers = 476,
492
+ MenuMainButtonModsAllDisabled = 477,
493
+ MenuMainButtonNewGame = 478,
494
+ MenuMainButtonNews = 479,
495
+ MenuMainButtonOptions = 480,
496
+ MenuMainButtonQuitGame = 481,
497
+ MenuModsWarningModsDisabledTitle = 482,
498
+ MenuModsWarningModsDisabledDescription = 483,
499
+ MenuModsButtonModdingGuide = 484,
500
+ MenuModsButtonOpenFolder = 485,
501
+ MenuModsButtonOpenWorkshop = 486,
502
+ MenuModsDescription = 487,
503
+ MenuModsTitle = 488,
504
+ MenuModsTooltipLabelAuthor = 489,
505
+ MenuModsTooltipLabelTags = 490,
506
+ MenuModsTooltipLabelDependencies = 491,
507
+ MenuModsTooltipLabelProvides = 492,
508
+ MenuModsTooltipLabelVersion = 493,
509
+ MenuModsTooltipLabelDescription = 494,
510
+ MenuModsTooltipLabelInstallDate = 495,
511
+ MenuModsTooltipLabelCreatedDate = 496,
512
+ MenuModsTooltipLabelLastUpdatedDate = 497,
513
+ MenuModsTooltipPreventsMilestoneUnlocks = 498,
514
+ MenuModsTooltipModOptions = 499,
515
+ MenuModsTooltipPublishMod = 500,
516
+ MenuModsTooltipModMoreInformation = 501,
517
+ MenuModsTooltipUninstallMod = 502,
518
+ MenuModsTooltipViewInSteamWorkshop = 503,
519
+ MenuModsTooltipViewGitHub = 504,
520
+ MenuModsTooltipOpenFolder = 505,
521
+ MenuModsButtonEditInternalMods = 506,
522
+ MenuModsSectionHeading = 507,
523
+ MenuModsSubmenuEditInternalModsTitle = 508,
524
+ MenuModsSubmenuEditInternalModsDescription = 509,
525
+ MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 510,
526
+ MenuModsSubmenuEditInternalModsSectionRootsName = 511,
527
+ MenuModsSubmenuEditInternalModsSectionModsName = 512,
528
+ MenuModsSubmenuEditInternalModsPlaceholderModRootName = 513,
529
+ MenuModsSubmenuEditInternalModsPlaceholderModRootPath = 514,
530
+ MenuNewGameButtonNext = 515,
531
+ MenuNewGameButtonStartServer = 516,
532
+ MenuNewGameDescription = 517,
533
+ MenuNewGameLabelEditName = 518,
534
+ MenuNewGameLabelEditSeed = 519,
535
+ MenuNewGamePlaceholderEditSeed = 520,
536
+ MenuNewGameTitle = 521,
537
+ MenuNewGameChoiceDifficulty = 522,
538
+ MenuNewGameChoiceSingleplayer = 523,
539
+ MenuNewGameChoiceSingleplayerDescription = 524,
540
+ MenuNewGameChoiceMultiplayer = 525,
541
+ MenuNewGameChoiceMultiplayerDescription = 526,
542
+ MenuNewGameChoiceTurnModeManual = 527,
543
+ MenuNewGameChoiceTurnModeManualDescription = 528,
544
+ MenuNewGameChoiceTurnModeRealTime = 529,
545
+ MenuNewGameChoiceTurnModeRealTimeDescription = 530,
546
+ MenuNewGameChoiceTurnModeSimulated = 531,
547
+ MenuNewGameChoiceTurnModeSimulatedDescription = 532,
548
+ MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 533,
549
+ MenuNewGameChoiceDifficultyChallengeDaily = 534,
550
+ MenuNewGameChoiceDifficultyChallengeDailyTooltip = 535,
551
+ MenuNewGameButtonMilestones = 536,
552
+ MenuNewGameButtonMilestonesDescription = 537,
553
+ MenuNewGameTabGameMode = 538,
554
+ MenuNewGameTabMultiplayer = 539,
555
+ MenuNewGameTabGameplayModifiers = 540,
556
+ MenuNewGameHeadingGameMode = 541,
557
+ MenuNewGameHeadingMultiplayer = 542,
558
+ MenuNewGameHeadingGameplayModifiers = 543,
559
+ MenuNewGameMilestoneModifiersUnlockableInMode = 544,
560
+ MenuNewGameChoiceClientsInheritHostModifiers = 545,
561
+ MenuNewGameChoiceClientsInheritHostModifiersDescription = 546,
562
+ MenuNewGameChoiceCustomModifiers = 547,
563
+ MenuNewGameChoiceCustomModifiersDescription = 548,
564
+ MenuMilestoneModifiersTitle = 549,
565
+ MenuMilestoneModifiersDescription = 550,
566
+ MenuCustomGameOptionsTitle = 551,
567
+ MenuCustomGameOptionsDescription = 552,
568
+ MenuCustomGameOptionsRespawnOnDeath = 553,
569
+ MenuCustomGameOptionsRespawnOnDeathDescription = 554,
570
+ MenuCustomGameOptionsUseUnlockedRecipes = 555,
571
+ MenuCustomGameOptionsStartingIslandBiome = 556,
572
+ MenuCustomGameOptionsApplyTravelingEffects = 557,
573
+ MenuCustomGameOptionsApplyTravelingEffectsDescription = 558,
574
+ MenuCustomGameOptionsCreaturesPeaceful = 559,
575
+ MenuCustomGameOptionsCreaturesDisableScared = 560,
576
+ MenuCustomGameOptionsCreaturesDisableScaredDescription = 561,
577
+ MenuCustomGameOptionsCreaturesAberrantSpawns = 562,
578
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 563,
579
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 564,
580
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 565,
581
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 566,
582
+ MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 567,
583
+ MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 568,
584
+ MenuCustomGameOptionsCreaturesAlwaysSpawn = 569,
585
+ MenuCustomGameOptionsCreaturesAllowSpawning = 570,
586
+ MenuCustomGameOptionsCreaturesSpawnLimit = 571,
587
+ MenuCustomGameOptionsCreaturesSpawnLimitDescription = 572,
588
+ MenuCustomGameOptionsCreaturesSpawnRateMultiplier = 573,
589
+ MenuCustomGameOptionsCreaturesSpawnRateMultiplierDescription = 574,
590
+ MenuCustomGameOptionsCreatureNone = 575,
591
+ MenuCustomGameOptionsCreatureConfigure = 576,
592
+ MenuCustomGameOptionsStatMultiplier = 577,
593
+ MenuCustomGameOptionsStatMultiplierTooltip = 578,
594
+ MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 579,
595
+ MenuCustomGameOptionsHeadingGeneral = 580,
596
+ MenuCustomGameOptionsHeadingTravel = 581,
597
+ MenuCustomGameOptionsHeadingTime = 582,
598
+ MenuCustomGameOptionsHeadingStats = 583,
599
+ MenuCustomGameOptionsHeadingItems = 584,
600
+ MenuCustomGameOptionsHeadingCreatures = 585,
601
+ MenuCustomGameOptionsHeadingSkills = 586,
602
+ MenuCustomGameOptionsHeadingStatuses = 587,
603
+ MenuCustomGameOptionsEternalNight = 588,
604
+ MenuCustomGameOptionsEternalNightDescription = 589,
605
+ MenuCustomGameOptionsEternalDay = 590,
606
+ MenuCustomGameOptionsEternalDayDescription = 591,
607
+ MenuCustomGameOptionsTimeFrozen = 592,
608
+ MenuCustomGameOptionsTimeInitial = 593,
609
+ MenuCustomGameOptionsTimeDayLength = 594,
610
+ MenuCustomGameOptionsTimeDayLengthTooltip = 595,
611
+ MenuCustomGameOptionsTimeDayPercent = 596,
612
+ MenuCustomGameOptionsTimeDayPercentTooltip = 597,
613
+ MenuCustomGameOptionsStatStarting = 598,
614
+ MenuCustomGameOptionsStatMax = 599,
615
+ MenuCustomGameOptionsStatStartingDisplay = 600,
616
+ MenuCustomGameOptionsStatMaxDisplay = 601,
617
+ MenuCustomGameOptionsStatNoChange = 602,
618
+ MenuCustomGameOptionsStatBonus = 603,
619
+ MenuCustomGameOptionsStatBonusDisplay = 604,
620
+ MenuCustomGameOptionsStatusPassChanceMultiplier = 605,
621
+ MenuCustomGameOptionsStatusPassChanceMultiplierTooltip = 606,
622
+ MenuCustomGameOptionsStatusStartWith = 607,
623
+ MenuCustomGameOptionsStatusUntreatable = 608,
624
+ MenuCustomGameOptionsStatusUntreatableTooltip = 609,
625
+ MenuCustomGameOptionsSkillInitialRandomCount = 610,
626
+ MenuCustomGameOptionsSkillInitialRandomCountDescription = 611,
627
+ MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 612,
628
+ MenuCustomGameOptionsSkillsGlobal = 613,
629
+ MenuCustomGameOptionsSkillNone = 614,
630
+ MenuCustomGameOptionsSkillConfigure = 615,
631
+ MenuCustomGameOptionsSkillInitial = 616,
632
+ MenuCustomGameOptionsSkillMultiplier = 617,
633
+ MenuCustomGameOptionsSkillMultiplierTooltip = 618,
634
+ MenuCustomGameOptionsRandomItems = 619,
635
+ MenuCustomGameOptionsRandomItemsDescription = 620,
636
+ MenuCustomGameOptionsItemDurability = 621,
637
+ MenuCustomGameOptionsItemDurabilityTooltip = 622,
638
+ MenuCustomGameOptionsItemDecay = 623,
639
+ MenuCustomGameOptionsItemDecayTooltip = 624,
640
+ MenuCustomGameOptionsExport = 625,
641
+ MenuCustomGameOptionsImport = 626,
642
+ MenuCustomGameOptionsViewGroundItemsAsContainer = 627,
643
+ MenuCustomGameOptionsViewGroundItemsAsContainerDescription = 628,
644
+ MenuNewsDescription = 629,
645
+ MenuNewsHeadingSocial = 630,
646
+ MenuNewsTitle = 631,
647
+ MenuNewsHeadingUnableToLoad = 632,
648
+ MenuNewsButtonAllNews = 633,
649
+ MenuNewsButtonViewChangelog = 634,
650
+ MenuOptionsButtonDitherFogOfWar = 635,
651
+ MenuOptionsButtonHealthVignette = 636,
652
+ MenuOptionsButtonHealthVignetteTooltip = 637,
653
+ MenuOptionsButtonDisableCustomCursor = 638,
654
+ MenuOptionsButtonEnableSmoothZooming = 639,
655
+ MenuOptionsButtonDisplayArticleInObjectNames = 640,
656
+ MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 641,
657
+ MenuOptionsButtonFullscreen = 642,
658
+ MenuOptionsButtonCustomTitleBar = 643,
659
+ MenuOptionsButtonDeveloperMode = 644,
660
+ MenuOptionsButtonReloadGame = 645,
661
+ MenuOptionsButtonReloadStylesheets = 646,
662
+ MenuOptionsButtonReloadTextures = 647,
663
+ MenuOptionsButtonPrepackedSprites = 648,
664
+ MenuOptionsButtonDisposeReflection = 649,
665
+ MenuOptionsButtonExportGlobalSaveData = 650,
666
+ MenuOptionsButtonImportGlobalSaveData = 651,
667
+ MenuOptionsButtonSaveDataBackups = 652,
668
+ MenuOptionsButtonSaveDataBackupsTooltip = 653,
669
+ MenuOptionsButtonSaveDataClearAll = 654,
670
+ MenuOptionsButtonSaveDataClearCharacters = 655,
671
+ MenuOptionsButtonSaveDataClearUI = 656,
672
+ MenuOptionsButtonSaveDataClearHighscores = 657,
673
+ MenuOptionsButtonSaveDataClearMilestones = 658,
674
+ MenuOptionsButtonSaveDataClearOptions = 659,
675
+ MenuOptionsButtonSaveDataClearCraftingRecipes = 660,
676
+ MenuOptionsButtonSaveDataClearSaves = 661,
677
+ MenuOptionsButtonSkipSplash = 662,
678
+ MenuOptionsButtonDisableQuitConfirmation = 663,
679
+ MenuOptionsButtonToggleDevTools = 664,
680
+ MenuOptionsButtonOpenBackupsFolder = 665,
681
+ MenuOptionsButtonOpenLogsFolder = 666,
682
+ MenuOptionsButtonDropLocationFacing = 667,
683
+ MenuOptionsButtonDropLocationFeet = 668,
684
+ MenuOptionsButtonStartTraceRecording = 669,
685
+ MenuOptionsButtonStopTraceRecording = 670,
686
+ MenuOptionsButtonTracingRecordingTooltip = 671,
687
+ MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 672,
688
+ MenuOptionsDescription = 673,
689
+ MenuOptionsHeadingAudio = 674,
690
+ MenuOptionsHeadingDeveloper = 675,
691
+ MenuOptionsHeadingGameplayOptions = 676,
692
+ MenuOptionsHeadingGameplayOptionsDescription = 677,
693
+ MenuOptionsHeadingGameplayOptionsButtonOpenDialog = 678,
694
+ MenuOptionsHeadingOtherOptions = 679,
695
+ MenuOptionsHeadingControls = 680,
696
+ MenuOptionsHeadingModOptions = 681,
697
+ MenuOptionsHeadingSaveData = 682,
698
+ MenuOptionsHeadingTooltipsTile = 683,
699
+ MenuOptionsHeadingVideo = 684,
700
+ MenuOptionsLabelInterfaceScale = 685,
701
+ MenuOptionsLabelHudWidth = 686,
702
+ MenuOptionsLabelTooltipDelay = 687,
703
+ MenuOptionsLabelDirectionTurnDelay = 688,
704
+ MenuOptionsLabelMouseTurnDelay = 689,
705
+ MenuOptionsLabelFontStyle = 690,
706
+ MenuOptionsTooltipTurnDelay = 691,
707
+ MenuOptionsTooltipMouseTurnDelay = 692,
708
+ MenuOptionsTooltipControlsFilter = 693,
709
+ MenuOptionsLabelVolumeEffects = 694,
710
+ MenuOptionsLabelVolumeMusic = 695,
711
+ MenuOptionsTabAudio = 696,
712
+ MenuOptionsTabDeveloper = 697,
713
+ MenuOptionsTabGameplay = 698,
714
+ MenuOptionsTabTooltips = 699,
715
+ MenuOptionsTabOther = 700,
716
+ MenuOptionsTabLanguage = 701,
717
+ MenuOptionsTabControls = 702,
718
+ MenuOptionsTabMods = 703,
719
+ MenuOptionsTabSaveData = 704,
720
+ MenuOptionsTabVideo = 705,
721
+ MenuOptionsTabPerformance = 706,
722
+ MenuOptionsHeadingPerformance = 707,
723
+ MenuOptionsTitle = 708,
724
+ MenuOptionsTooltipMusicNextTrack = 709,
725
+ MenuOptionsBindChoose = 710,
726
+ MenuOptionsBindChooseAdd = 711,
727
+ MenuOptionsBindButtonResetTooltip = 712,
728
+ MenuOptionsBindButtonDeleteTooltip = 713,
729
+ MenuOptionsBindButtonAddTooltip = 714,
730
+ MenuOptionsBindButtonAddMacroTooltip = 715,
731
+ MenuOptionsButtonDiscoverEverything = 716,
732
+ MenuOptionsButtonDiscoverEverythingDescription = 717,
733
+ MenuOptionsButtonGrantAllMilestoneModifiers = 718,
734
+ MenuOptionsButtonGrantAllMilestoneModifiersDescription = 719,
735
+ MenuOptionsButtonDisableMilestonesDescription = 720,
736
+ MenuOptionsButtonAlternatingDirectionMovement = 721,
737
+ MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 722,
738
+ MenuOptionsButtonSteamInputKeyboardPosition = 723,
739
+ MenuOptionsButtonAlwaysShowMoreInformationTooltip = 724,
740
+ MenuOptionsButtonEnableLowPowerMode = 725,
741
+ MenuOptionsButtonEnableLowPowerModeTooltip = 726,
742
+ MenuOptionsButtonDisableAcrylicTransparency = 727,
743
+ MenuOptionsButtonDisableAcrylicTransparencyTooltip = 728,
744
+ MenuOptionsButtonDisableOverlaySupport = 729,
745
+ MenuOptionsButtonDisableOverlaySupportTooltip = 730,
746
+ MenuOptionsButtonDisableUIEffects = 731,
747
+ MenuOptionsButtonDisableUIEffectsTooltip = 732,
748
+ MenuOptionsButtonDisableUIOpacity = 733,
749
+ MenuOptionsButtonDisableUIOpacityTooltip = 734,
750
+ MenuOptionsButtonDisableMovementAnimations = 735,
751
+ MenuOptionsButtonDisableMovementAnimationsTooltip = 736,
752
+ MenuOptionsButtonAutoAttack = 737,
753
+ MenuOptionsButtonAutoAttackTooltip = 738,
754
+ MenuOptionsButtonDropOnDismantle = 739,
755
+ MenuOptionsButtonDropOnDismantleTooltip = 740,
756
+ MenuOptionsButtonDropOnDisassemble = 741,
757
+ MenuOptionsButtonDropOnDisassembleTooltip = 742,
758
+ MenuOptionsButtonDisableCraftingProtectedItems = 743,
759
+ MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 744,
760
+ MenuOptionsButtonDropOnGatherHarvest = 745,
761
+ MenuOptionsButtonDropOnGatherHarvestTooltip = 746,
762
+ MenuOptionsButtonUseAdjacentContainers = 747,
763
+ MenuOptionsButtonUseAdjacentContainersTooltip = 748,
764
+ MenuOptionsButtonHideEquippedHeadgear = 749,
765
+ MenuOptionsButtonHideEquippedHeadgearTooltip = 750,
766
+ MenuOptionsButtonDisableItemNotifiers = 751,
767
+ MenuOptionsButtonDisableItemNotifiersTooltip = 752,
768
+ MenuOptionsButtonLeftHanded = 753,
769
+ MenuOptionsButtonLeftHandedTooltip = 754,
770
+ MenuOptionsButtonAutoSave = 755,
771
+ MenuOptionsRangeAutoSaveTimerLabel = 756,
772
+ MenuOptionsRangeAutoSaveTimerTurnsDisplay = 757,
773
+ MenuOptionsRangeAutoSaveTimerTimeDisplay = 758,
774
+ MenuOptionsButtonDropIntoContainers = 759,
775
+ MenuOptionsButtonDropIntoContainersTooltip = 760,
776
+ MenuOptionsButtonWarnOnDangerousActions = 761,
777
+ MenuOptionsButtonWarnOnDangerousActionsTooltip = 762,
778
+ MenuOptionsButtonWarnOnDestructiveActions = 763,
779
+ MenuOptionsButtonWarnOnDestructiveActionsTooltip = 764,
780
+ MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 765,
781
+ MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 766,
782
+ MenuOptionsButtonWarnWhenBreakingItemsOnUse = 767,
783
+ MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 768,
784
+ MenuOptionsHeadingWarnWhenBreakingItems = 769,
785
+ MenuOptionsButtonSaveDataClearBindings = 770,
786
+ MenuOptionsButtonDisableMilestones = 771,
787
+ MenuOptionsLabelSaveDataRemoval = 772,
788
+ MenuOptionsTooltipDialogOpacity = 773,
789
+ MenuOptionsLabelDialogOpacity = 774,
790
+ MenuOptionsDeveloperSteamBetas = 775,
791
+ MenuOptionsDeveloperSteamBetaName = 776,
792
+ MenuOptionsDeveloperLogSourceFilterHeading = 777,
793
+ MenuOptionsDeveloperUIExperiments = 778,
794
+ MenuOptionsDeveloperUIExperimentsDescription = 779,
795
+ MenuOptionsDeveloperDebugging = 780,
796
+ MenuOptionsDeveloperDebuggingDescription = 781,
797
+ MenuOptionsDeveloperToggleContainerDesyncDebugging = 782,
798
+ MenuOptionsDeveloperToggleContainerDesyncDebuggingDescription = 783,
799
+ MenuOptionsDeveloperReportErrors = 784,
800
+ MenuOptionsDeveloperReportErrorsDescription = 785,
801
+ MenuOptionsAudioVolumeDisplay = 786,
802
+ MenuOptionsAudioInputSoundOnTyping = 787,
803
+ MenuOptionsAudioPlayAudioInBackground = 788,
804
+ MenuOptionsMusicPlaylist = 789,
805
+ MenuOptionsButtonConfigureBindings = 790,
806
+ MenuOptionsButtonSaveCompression = 791,
807
+ MenuOptionsButtonSaveCompressionTooltip = 792,
808
+ MenuOptionsButtonSaveUIDataGlobally = 793,
809
+ MenuOptionsButtonSaveUIDataGloballyTooltip = 794,
810
+ MenuPauseButtonContinueGame = 795,
811
+ MenuPauseButtonReturnToGame = 796,
812
+ MenuPauseButtonOptions = 797,
813
+ MenuPauseButtonGameSettings = 798,
814
+ MenuPauseButtonPaused = 799,
815
+ MenuPauseButtonMultiplayer = 800,
816
+ MenuPauseButtonHelp = 801,
817
+ MenuPauseButtonTitleScreen = 802,
818
+ MenuPauseButtonStopServer = 803,
819
+ MenuPauseButtonQuitWithoutSaving = 804,
820
+ MenuPauseTooltipNotPaused = 805,
821
+ MenuPauseLabelPaused = 806,
822
+ MenuPauseLabelNotPaused = 807,
823
+ MenuModesTitle = 808,
824
+ MenuModesDescription = 809,
825
+ MenuMultiplayerOptionsTitle = 810,
826
+ MenuMultiplayerOptionsDescription = 811,
827
+ MenuMultiplayerOptionsOpenServer = 812,
828
+ MenuMultiplayerOptionsOpenServerDescription = 813,
829
+ MenuMultiplayerOptionsCopyGameCode = 814,
830
+ MenuMultiplayerOptionsCopyGameCodeTooltip = 815,
831
+ MenuMultiplayerOptionsInviteSteamFriends = 816,
832
+ MenuMultiplayerOptionsCheckConnectionHeading = 817,
833
+ MenuMultiplayerOptionsCheckConnectionParagraph = 818,
834
+ MenuMultiplayerOptionsCheckConnectionButton = 819,
835
+ MenuMultiplayerOptionsCheckConnectionResultUnknown = 820,
836
+ MenuMultiplayerOptionsCheckConnectionResultChecking = 821,
837
+ MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 822,
838
+ MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 823,
839
+ MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 824,
840
+ MenuMultiplayerOptionsCheckConnectionResultWebSocket = 825,
841
+ MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 826,
842
+ MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 827,
843
+ MenuMultiplayerOptionsCheckConnectionResultSuccess = 828,
844
+ MenuJoinServerTitle = 829,
845
+ MenuJoinServerDescription = 830,
846
+ MenuJoinServerInputPlaceholder = 831,
847
+ MenuJoinServerChooseModifiersTitle = 832,
848
+ MenuJoinServerChooseModifiersDescription = 833,
849
+ MenuSharedMultiplayerChoiceLobbyTypeFriends = 834,
850
+ MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 835,
851
+ MenuSharedMultiplayerChoiceLobbyTypePublic = 836,
852
+ MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 837,
853
+ MenuSharedMultiplayerChoiceLobbyTypePrivate = 838,
854
+ MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 839,
855
+ MenuSharedMultiplayerChoicePVP = 840,
856
+ MenuSharedMultiplayerChoicePVPDescription = 841,
857
+ MenuSharedMultiplayerChoiceAllowTraveling = 842,
858
+ MenuSharedMultiplayerChoiceAllowTravelingDescription = 843,
859
+ MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 844,
860
+ MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 845,
861
+ MenuSharedMultiplayerChoicePauseOnDesync = 846,
862
+ MenuSharedMultiplayerChoicePauseOnDesyncDescription = 847,
863
+ MenuSharedMultiplayerDescription = 848,
864
+ MenuSharedMultiplayerMessageOfTheDay = 849,
865
+ MenuSharedMultiplayerMaxPlayers = 850,
866
+ MenuSharedRealTimeTickSpeedTooltip = 851,
867
+ MenuSharedRealTimeTickSpeedLabel = 852,
868
+ MenuSharedButtonDefault = 853,
869
+ MenuSharedValueSeconds = 854,
870
+ MenuSharedValueMilliseconds = 855,
871
+ MenuSharedValuePercentage = 856,
872
+ MenuSharedMilestonesNotUnlockable = 857,
873
+ MenuSharedMilestonesNotUnlockableDescription = 858,
874
+ MenuSharedMilestonesNotUnlockableButtonShowMods = 859,
875
+ MenuSharedButtonDisableAll = 860,
876
+ MenuSharedButtonEnableAll = 861,
877
+ MenuSharedMilestoneModifiersSelected = 862,
878
+ MiscSortBy = 863,
879
+ MiscSortCustom = 864,
880
+ MiscSortDirection = 865,
881
+ MiscFilter = 866,
882
+ MiscNone = 867,
883
+ MiscPlayerNameDefault = 868,
884
+ MiscPlayerNameServer = 869,
885
+ MiscSaveNameDefault = 870,
886
+ MiscSaveNameDailyChallenge = 871,
887
+ MiscSaveNameChallenge = 872,
888
+ MiscSaveVersionUnknown = 873,
889
+ MiscVersion = 874,
890
+ MiscVersionBuildInfoTooltip = 875,
891
+ MiscVersionUpdate = 876,
892
+ MiscTime = 877,
893
+ MiscTimeMeridiem = 878,
894
+ MiscError = 879,
895
+ MiscContextMenuCopyTooltip = 880,
896
+ MiscBindableNoBindings = 881,
897
+ MiscBindingIcon = 882,
898
+ MiscBindingIconThen = 883,
899
+ DifficultyOptionsPeaceful = 884,
900
+ DifficultyOptionsAberrantSpawnsDisabled = 885,
901
+ DifficultyOptionsAberrantSpawnsOnly = 886,
902
+ DifficultyOptionsCreatureSpawningDisabled = 887,
903
+ DifficultyOptionsCreatureAlwaysSpawns = 888,
904
+ DifficultyOptionsCreatureSpawnsDefault = 889,
905
+ DifficultyOptionsCreatureSpawnsAberrantOnly = 890,
906
+ DifficultyOptionsCreatureSpawnsNoAberrants = 891,
907
+ DifficultyOptionsSpawnLimit = 892,
908
+ DifficultyOptionsSpawnRateMultiplier = 893,
909
+ DifficultyOptionsDisableScared = 894,
910
+ DifficultyOptionsRespawn = 895,
911
+ DifficultyOptionsEternalNight = 896,
912
+ DifficultyOptionsEternalDay = 897,
913
+ DifficultyOptionsTimeInitial = 898,
914
+ DifficultyOptionsTimeFrozen = 899,
915
+ DifficultyOptionsTimeDayLength = 900,
916
+ DifficultyOptionsTimeDayPercent = 901,
917
+ DifficultyOptionsNoItems = 902,
918
+ DifficultyOptionsRecipes = 903,
919
+ DifficultyOptionsStartingIsland = 904,
920
+ DifficultyOptionsTravelingEffectsDisabled = 905,
921
+ DifficultyOptionsLuck = 906,
922
+ DifficultyOptionsWeightBonus = 907,
923
+ DifficultyOptionsStatInitial = 908,
924
+ DifficultyOptionsStatMax = 909,
925
+ DifficultyOptionsStatMultiplier = 910,
926
+ DifficultyOptionsStatusStartWith = 911,
927
+ DifficultyOptionsStatusUntreatable = 912,
928
+ DifficultyOptionsStatusPassChanceMultiplier = 913,
929
+ DifficultyOptionsNoRandomSkills = 914,
930
+ DifficultyOptionsSkillStartingCount = 915,
931
+ DifficultyOptionsSkillGainMultiplier = 916,
932
+ DifficultyOptionsSkillInitial = 917,
933
+ DifficultyOptionsStatusPermanent = 918,
934
+ DifficultyOptionsStatusRateMultiplier = 919,
935
+ DifficultyOptionsStatusMultiplier = 920,
936
+ DifficultyOptionsItemDurabilityMultiplier = 921,
937
+ DifficultyOptionsItemDecayMultiplier = 922,
938
+ DifficultyOptionsTileContainersEnabled = 923,
939
+ TabCrafting = 924,
940
+ TabDismantle = 925,
941
+ WindowTitleContainer = 926,
942
+ WindowTitleInventory = 927
936
943
  }
937
944
  export default UiTranslation;