@wayward/types 2.13.2-beta.dev.20230611.3 → 2.13.3-beta
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.
- package/LICENSE +20 -20
- package/README.md +27 -27
- package/definitions/game/game/doodad/IDoodad.d.ts +6 -3
- package/definitions/game/game/entity/action/IAction.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Summon.d.ts +0 -2
- package/definitions/game/game/entity/action/actions/TestDepth.d.ts +0 -2
- package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +11 -5
- package/definitions/game/game/entity/action/usable/UsableAction.d.ts +4 -1
- package/definitions/game/game/entity/action/usable/UsableActionRegistrar.d.ts +4 -2
- package/definitions/game/game/entity/action/usable/UsableActionTranslator.d.ts +6 -2
- package/definitions/game/game/entity/action/usable/actions/item/UsableActionsUseItem.d.ts +3 -1
- package/definitions/game/game/entity/player/PlayerManager.d.ts +5 -0
- package/definitions/game/game/entity/player/note/NoteManager.d.ts +1 -1
- package/definitions/game/game/inspection/IInspection.d.ts +2 -1
- package/definitions/game/game/inspection/InfoProviderContext.d.ts +9 -4
- package/definitions/game/game/inspection/infoProviders/LabelledValue.d.ts +3 -1
- package/definitions/game/game/inspection/infoProviders/Uses.d.ts +8 -5
- package/definitions/game/game/inspection/infoProviders/creature/CreatureTamedInfo.d.ts +1 -1
- package/definitions/game/game/inspection/infoProviders/item/ItemDetails.d.ts +1 -1
- package/definitions/game/game/inspection/infoProviders/item/ItemProtected.d.ts +3 -1
- package/definitions/game/game/inspection/infoProviders/item/ItemUses.d.ts +18 -3
- package/definitions/game/game/inspection/infoProviders/stat/AttackInfo.d.ts +1 -1
- package/definitions/game/game/inspection/infoProviders/stat/FerocityInfo.d.ts +1 -1
- package/definitions/game/game/inspection/inspections/ActionInspection.d.ts +9 -9
- package/definitions/game/game/inspection/inspections/CorpseInspection.d.ts +1 -1
- package/definitions/game/game/island/IIsland.d.ts +6 -0
- package/definitions/game/game/island/Island.d.ts +5 -3
- package/definitions/game/game/item/IItem.d.ts +2 -0
- package/definitions/game/game/meta/prompt/IPrompt.d.ts +10 -9
- package/definitions/game/game/meta/prompt/PromptDescriptionFactory.d.ts +9 -5
- package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +2 -1
- package/definitions/game/game/reference/IReferenceManager.d.ts +2 -5
- package/definitions/game/game/reference/ReferenceManager.d.ts +4 -3
- package/definitions/game/game/tile/Tile.d.ts +22 -13
- package/definitions/game/language/Dictionary.d.ts +112 -111
- package/definitions/game/language/DictionaryMap.d.ts +222 -220
- package/definitions/game/language/dictionary/Message.d.ts +360 -358
- package/definitions/game/language/dictionary/Misc.d.ts +41 -39
- package/definitions/game/language/dictionary/UiTranslation.d.ts +734 -729
- package/definitions/game/language/english/ui/ActionSlotItemMethods.d.ts +13 -0
- package/definitions/game/language/english/ui/HelpArticles.d.ts +1 -1
- package/definitions/game/language/impl/TranslationImpl.d.ts +1 -0
- package/definitions/game/language/segment/BindSegment.d.ts +2 -1
- package/definitions/game/language/segment/TooltipSegment.d.ts +1 -1
- package/definitions/game/mod/BaseMod.d.ts +1 -1
- package/definitions/game/mod/ModManager.d.ts +3 -1
- package/definitions/game/mod/ModRegistry.d.ts +6 -3
- package/definitions/game/multiplayer/Multiplayer.d.ts +6 -0
- package/definitions/game/multiplayer/matchmaking/IMatchmaking.d.ts +8 -0
- package/definitions/game/multiplayer/networking/Connection.d.ts +1 -0
- package/definitions/game/multiplayer/networking/IConnection.d.ts +1 -0
- package/definitions/game/renderer/context/RendererContext.d.ts +1 -1
- package/definitions/game/renderer/overlay/UniversalOverlay.d.ts +30 -0
- package/definitions/game/renderer/particle/IParticle.d.ts +1 -3
- package/definitions/game/renderer/tile/TileAdaptors.d.ts +1 -2
- package/definitions/game/renderer/world/IWorldLayer.d.ts +1 -0
- package/definitions/game/renderer/world/WorldLayer.d.ts +2 -0
- package/definitions/game/renderer/world/WorldLayerRenderer.d.ts +1 -1
- package/definitions/game/renderer/world/WorldRenderer.d.ts +2 -1
- package/definitions/game/save/clientStore/IClientStore.d.ts +4 -1
- package/definitions/game/save/clientStore/clientData/MultiplayerClientData.d.ts +13 -0
- package/definitions/game/save/datastorage/LocalStorageDataStorage.d.ts +1 -0
- package/definitions/game/steamworks/Steamworks.d.ts +2 -1
- package/definitions/game/ui/PromptsBridge.d.ts +2 -1
- package/definitions/game/ui/Ui.d.ts +1 -0
- package/definitions/game/ui/component/Bindings.d.ts +8 -5
- package/definitions/game/ui/component/Dropdown.d.ts +1 -1
- package/definitions/game/ui/component/SortRow.d.ts +1 -0
- package/definitions/game/ui/component/Text.d.ts +2 -1
- package/definitions/game/ui/input/Bind.d.ts +4 -0
- package/definitions/game/ui/input/Bindings.d.ts +2 -4
- package/definitions/game/ui/input/IIInput.d.ts +2 -1
- package/definitions/game/ui/input/IInput.d.ts +6 -0
- package/definitions/game/ui/input/InputManager.d.ts +1 -1
- package/definitions/game/ui/input/Macros.d.ts +9 -1
- package/definitions/game/ui/screen/Screen.d.ts +5 -0
- package/definitions/game/ui/screen/screens/game/component/ItemComponent.d.ts +1 -0
- package/definitions/game/ui/screen/screens/game/dialog/MilestonesDialog.d.ts +2 -0
- package/definitions/game/ui/screen/screens/game/dialog/SkillsDialog.d.ts +2 -0
- package/definitions/game/ui/screen/screens/game/static/ActionBar.d.ts +2 -0
- package/definitions/game/ui/screen/screens/game/static/actions/ActionSlotTooltip.d.ts +1 -1
- package/definitions/game/ui/screen/screens/game/static/actions/ActionsDrawer.d.ts +5 -8
- package/definitions/game/ui/screen/screens/game/static/actions/IActionBar.d.ts +25 -0
- package/definitions/game/ui/screen/screens/game/static/actions/IActionsDrawer.d.ts +6 -0
- package/definitions/game/ui/screen/screens/menu/menus/{HelpArticle.d.ts → HelpArticleMenu.d.ts} +1 -1
- package/definitions/game/ui/screen/screens/menu/menus/HelpMenu.d.ts +1 -1
- package/definitions/game/ui/screen/screens/menu/menus/MainMenu.d.ts +1 -0
- package/definitions/game/ui/screen/screens/menu/menus/help/HelpArticleDescriptions.d.ts +3 -43
- package/definitions/game/ui/screen/screens/menu/menus/help/IHelpArticle.d.ts +53 -0
- package/definitions/game/ui/screen/screens/menu/menus/mods/ModRow.d.ts +1 -1
- package/definitions/game/ui/tooltip/TooltipLocationHandler.d.ts +1 -0
- package/definitions/game/ui/tooltip/TooltipManager.d.ts +1 -0
- package/definitions/game/ui/util/Misc.d.ts +4 -2
- package/definitions/game/utilities/Version.d.ts +13 -0
- package/definitions/game/utilities/enum/EnumManager.d.ts +2 -1
- package/definitions/game/utilities/random/generators/specific/RandomItem.d.ts +1 -1
- package/definitions/game/utilities/string/Interpolator.d.ts +0 -1
- package/definitions/hosts/shared/globals.d.ts +1 -1
- package/definitions/matchmakingserver/globalMatchmaking.d.ts +0 -1
- package/definitions/matchmakingserver/shared.d.ts +1 -0
- package/definitions/test/core/applicationInteractions.d.ts +4 -0
- package/definitions/test/core/applicationManager.d.ts +1 -2
- package/package.json +24 -24
- package/tsconfig.json +7 -7
- package/tsconfig.mod.base.json +44 -44
|
@@ -137,734 +137,739 @@ declare enum UiTranslation {
|
|
|
137
137
|
GameTooltipItemLabelUsesWhenBuilt = 122,
|
|
138
138
|
GameTooltipItemWorth = 123,
|
|
139
139
|
GameTooltipItemProtected = 124,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
140
|
+
GameTooltipItemProtectedSimpleDescription = 125,
|
|
141
|
+
GameTooltipItemProtectedContainer = 126,
|
|
142
|
+
GameTooltipItemVehicle = 127,
|
|
143
|
+
GameTooltipItemVehicleMovementSpeed = 128,
|
|
144
|
+
GameTooltipItemVehicleDefenseBonus = 129,
|
|
145
|
+
GameTooltipItemLabelDismantle = 130,
|
|
146
|
+
GameTooltipItemLabelDismantleRequirement = 131,
|
|
147
|
+
GameTooltipItemQuantityMultiplier = 132,
|
|
148
|
+
GameTooltipItemUseAttack = 133,
|
|
149
|
+
GameTooltipItemUseThrowDamage = 134,
|
|
150
|
+
GameTooltipItemUseCrafting = 135,
|
|
151
|
+
GameTooltipItemUseOffering = 136,
|
|
152
|
+
GameTooltipItemUseEquipDefense = 137,
|
|
153
|
+
GameTooltipItemUseEquipDefenseAttribute = 138,
|
|
154
|
+
GameTooltipItemLabelDamage = 139,
|
|
155
|
+
GameTooltipItemBarterCreditTrade = 140,
|
|
156
|
+
GameTooltipItemBarterCredit = 141,
|
|
157
|
+
GameTooltipItemLabelIsland = 142,
|
|
158
|
+
GameTooltipSharedLabelWeightCapacity = 143,
|
|
159
|
+
GameTooltipSharedLabelCivilizationScore = 144,
|
|
160
|
+
GameTooltipSharedLabelCivilizationScoreFull = 145,
|
|
161
|
+
GameTooltipSharedLabelDoodadSkillAdjacent = 146,
|
|
162
|
+
GameTooltipSharedLabelAdjacentSkillBonus = 147,
|
|
163
|
+
GameTooltipSharedLabelGrowingSpeed = 148,
|
|
164
|
+
GameTooltipSharedLabelInsulation = 149,
|
|
165
|
+
GameTooltipSharedLabelStoredInsulation = 150,
|
|
166
|
+
GameTooltipSharedLabelPreservation = 151,
|
|
167
|
+
GameTooltipSharedLabelDurability = 152,
|
|
168
|
+
GameTooltipSharedDurabilityMagicalDamageReduction = 153,
|
|
169
|
+
GameTooltipSharedDurabilityMagicalDamageRegeneration = 154,
|
|
170
|
+
GameTooltipSharedLabelContents = 155,
|
|
171
|
+
GameTooltipSkill = 156,
|
|
172
|
+
GameTooltipSkillCurrent = 157,
|
|
173
|
+
GameTooltipSkillReputationImpact = 158,
|
|
174
|
+
GameTooltipSkillCanIncrease = 159,
|
|
175
|
+
GameTooltipSkillBonuses = 160,
|
|
176
|
+
GameTooltipSkillBonus = 161,
|
|
177
|
+
GameTooltipMilestone = 162,
|
|
178
|
+
GameTooltipMilestoneProgress = 163,
|
|
179
|
+
GameTooltipMilestoneDiscovered = 164,
|
|
180
|
+
GameTooltipMilestoneHintClickToUseAsTitle = 165,
|
|
181
|
+
GameTooltipMilestoneUsingAsTitle = 166,
|
|
182
|
+
GameTooltipSharedMagicalProperty = 167,
|
|
183
|
+
GameTooltipSharedMagicalPropertyOutOf = 168,
|
|
184
|
+
GameTooltipSharedLabel = 169,
|
|
185
|
+
GameTooltipSharedLabelDash = 170,
|
|
186
|
+
GameTooltipSharedLabelHead = 171,
|
|
187
|
+
GameTooltipSharedLabelTail = 172,
|
|
188
|
+
GameTooltipSharedLabelStart = 173,
|
|
189
|
+
GameTooltipSharedLabelEnd = 174,
|
|
190
|
+
GameTooltipSharedResistsAndVulnsLabelVulnerableTo = 175,
|
|
191
|
+
GameTooltipSharedResistsAndVulnsLabelResistantTo = 176,
|
|
192
|
+
GameTooltipSharedResistsAndVulnsLabelImmuneTo = 177,
|
|
193
|
+
GameTooltipSharedResistsAndVulnsLabelHealsFrom = 178,
|
|
194
|
+
GameTooltipSharedResistsAndVulnsDamageType = 179,
|
|
195
|
+
GameTooltipSharedResistsAndVulnsDamageTypeUnknown = 180,
|
|
196
|
+
GameTooltipIslandBiome = 181,
|
|
197
|
+
GameTooltipIslandSeed = 182,
|
|
198
|
+
GameTooltipIslandDaysSpent = 183,
|
|
199
|
+
GameTooltipIslandDaysSpentDaysUnit = 184,
|
|
200
|
+
GameTooltipIslandDaysSpentCumulative = 185,
|
|
201
|
+
GameTooltipIslandUndiscovered = 186,
|
|
202
|
+
GameTooltipIslandUnnamed = 187,
|
|
203
|
+
GameTooltipIslandSelf = 188,
|
|
204
|
+
GameTooltipIslandPlayers = 189,
|
|
205
|
+
GameTooltipIslandPorts = 190,
|
|
206
|
+
GameTooltipIslandNPCs = 191,
|
|
207
|
+
GameTooltipIslandModifiers = 192,
|
|
208
|
+
GameTooltipIslandMaps = 193,
|
|
209
|
+
GameTooltipIslandCoordinates = 194,
|
|
210
|
+
GameTooltipIslandCoordinatesLabel = 195,
|
|
211
|
+
GameTooltipNPCMerchantCredit = 196,
|
|
212
|
+
GameTooltipNPCMerchantNewInventory = 197,
|
|
213
|
+
GameTooltipNPCShipperNoItems = 198,
|
|
214
|
+
GameTooltipNPCShipperContainedItems = 199,
|
|
215
|
+
GameTooltipActionUndiscovered = 200,
|
|
216
|
+
GameTooltipEquipSlotOffHandDisabledTwoHandedOffHand = 201,
|
|
217
|
+
GameTooltipEquipSlotOffHandDisabledTwoHandedMainHand = 202,
|
|
218
|
+
GameTooltipStatAttackSectionMelee = 203,
|
|
219
|
+
GameTooltipStatAttackSectionRanged = 204,
|
|
220
|
+
GameTooltipStatAttackRange = 205,
|
|
221
|
+
GameTooltipStatAttackMultiplier = 206,
|
|
222
|
+
GameTooltipCreatureLabelTamed = 207,
|
|
223
|
+
GameTooltipCreatureLabelMood = 208,
|
|
224
|
+
GameTooltipCreatureLabelCommand = 209,
|
|
225
|
+
GameTooltipCreatureLabelCanPetIn = 210,
|
|
226
|
+
GameTooltipCreatureCanPet = 211,
|
|
227
|
+
GameTooltipCreatureLabelCanMilkIn = 212,
|
|
228
|
+
GameTooltipCreatureLabelCombatDifficulty = 213,
|
|
229
|
+
GameTooltipCreatureLabelAberrant = 214,
|
|
230
|
+
GameTooltipCreatureAberrantDescriptionShort = 215,
|
|
231
|
+
GameTooltipCreatureAberrantDescriptionExtra = 216,
|
|
232
|
+
GameTooltipCreatureAberrantDescriptionVerbose = 217,
|
|
233
|
+
GameTooltipCreatureProducingMilk = 218,
|
|
234
|
+
GameStatsStatAttack = 219,
|
|
235
|
+
GameStatsStatGeneric = 220,
|
|
236
|
+
GameStatsStatGenericWithMax = 221,
|
|
237
|
+
GameStatsStatbar = 222,
|
|
238
|
+
GameStatsStatHealthTooltip = 223,
|
|
239
|
+
GameStatsStatStaminaTooltip = 224,
|
|
240
|
+
GameStatsStatHungerTooltip = 225,
|
|
241
|
+
GameStatsStatThirstTooltip = 226,
|
|
242
|
+
GameStatsStatHealthStatusWarning = 227,
|
|
243
|
+
GameStatsStatStaminaStatusWarning = 228,
|
|
244
|
+
GameStatsStatHungerStatusWarning = 229,
|
|
245
|
+
GameStatsStatThirstStatusWarning = 230,
|
|
246
|
+
GameStatsStatWeightStatusWarning = 231,
|
|
247
|
+
GameStatsStatStaminaStatusBad = 232,
|
|
248
|
+
GameStatsStatHungerStatusBad = 233,
|
|
249
|
+
GameStatsStatThirstStatusBad = 234,
|
|
250
|
+
GameStatsStatWeightStatusBad = 235,
|
|
251
|
+
GameStatsStatReputationTooltipReputation = 236,
|
|
252
|
+
GameStatsStatReputationTooltipBenignity = 237,
|
|
253
|
+
GameStatsStatReputationTooltipMalignity = 238,
|
|
254
|
+
GameStatsStatReputationTooltipMalignant = 239,
|
|
255
|
+
GameStatsStatReputationTooltipBenignant = 240,
|
|
256
|
+
GameStatsStatReputationTooltipAverageReputation = 241,
|
|
257
|
+
GameStatsStatReputationTooltipScore = 242,
|
|
258
|
+
GameStatsStatReputationTooltipCivilizationScore = 243,
|
|
259
|
+
GameStatsStatReputationTooltipTurn = 244,
|
|
260
|
+
GameStatsStatReputationTooltipTicks = 245,
|
|
261
|
+
GameStatsStatWeightTooltip = 246,
|
|
262
|
+
GameMenuBarButtonTooltipBindable = 247,
|
|
263
|
+
GameMenuBarButtonTooltipSaveSize = 248,
|
|
264
|
+
GameMenuBarButtonTooltipSaveTurnsAgo = 249,
|
|
265
|
+
GameMenuBarButtonTooltipSaveLastTime = 250,
|
|
266
|
+
GameMenuBarButtonTooltipNotesUnread = 251,
|
|
267
|
+
GameMenuBarButtonTooltipMilestonesDisabled = 252,
|
|
268
|
+
GameMenuBarButtonTooltipQuestsDisabled = 253,
|
|
269
|
+
GameMenuBarContextMenuActionRemoveItem = 254,
|
|
270
|
+
GameMenuBarContextMenuActionInsertItem = 255,
|
|
271
|
+
GameMenuBarContextMenuActionReset = 256,
|
|
272
|
+
GameActionBarContextMenuDisplayBindings = 257,
|
|
273
|
+
GameActionBarContextMenuAutoSelectPrimaryUse = 258,
|
|
274
|
+
GameActionBarContextMenuConfigure = 259,
|
|
275
|
+
GameActionBarConfigurationDrawerTitle = 260,
|
|
276
|
+
GameActionBarConfigurationDrawerFooterDiscoveryHint = 261,
|
|
277
|
+
GameActionBarConfigurationDrawerFooterDiscoveryHintProgress = 262,
|
|
278
|
+
GameActionBarConfigurationDrawerSlotHintUse = 263,
|
|
279
|
+
GameActionBarConfigurationDrawerSlotHintToggle = 264,
|
|
280
|
+
GameActionBarConfigurationDrawerSlotHintToggleUseOnMove = 265,
|
|
281
|
+
GameActionBarConfigurationDrawerColumnTitleActions = 266,
|
|
282
|
+
GameActionBarConfigurationDrawerColumnTitleItemActions = 267,
|
|
283
|
+
GameActionBarConfigurationDrawerColumnTitleConfiguration = 268,
|
|
284
|
+
GameActionBarConfigurationDrawerHintSelectAnAction = 269,
|
|
285
|
+
GameActionBarConfigurationDrawerButtonEditBindings = 270,
|
|
286
|
+
GameActionBarConfigurationDrawerButtonClearSlot = 271,
|
|
287
|
+
GameActionBarConfigurationDrawerColumnTitleInapplicable = 272,
|
|
288
|
+
GameActionBarConfigurationDrawerButtonUseOnMove = 273,
|
|
289
|
+
GameActionBarConfigurationDrawerButtonUseOnMoveDescription = 274,
|
|
290
|
+
GameActionBarConfigurationDrawerHintDiscoverMore = 275,
|
|
291
|
+
GameActionBarConfigurationDrawerButtonUseExactItem = 276,
|
|
292
|
+
GameActionBarConfigurationDrawerButtonUseByTypeAndQuality = 277,
|
|
293
|
+
GameActionBarConfigurationDrawerButtonUseByType = 278,
|
|
294
|
+
GameActionBarConfigurationDrawerButtonUseAny = 279,
|
|
295
|
+
GameActionBarConfigurationDrawerButtonDone = 280,
|
|
296
|
+
GameActionBarConfigurationDrawerButtonCraftType = 281,
|
|
297
|
+
GameActionBarSlotTooltipHintUse = 282,
|
|
298
|
+
GameActionBarSlotTooltipHintConfigure = 283,
|
|
299
|
+
GameActionBarSlotTooltipHintUseOnMove = 284,
|
|
300
|
+
GameActionBarSlotTooltipHintUseSlottedItem = 285,
|
|
301
|
+
GameActionBarSlotTooltipHintClear = 286,
|
|
302
|
+
GameActionBarButtonToggleUseWhenMovingTooltip = 287,
|
|
303
|
+
GameMessagesButtonSend = 288,
|
|
304
|
+
GameMessagesContextMenuShowAsDialog = 289,
|
|
305
|
+
GameMessagesContextMenuClear = 290,
|
|
306
|
+
GameMessagesContextMenuCopy = 291,
|
|
307
|
+
GameMessagesContextMenuExport = 292,
|
|
308
|
+
GameMessagesFilter = 293,
|
|
309
|
+
GameMessagesFiltersEdit = 294,
|
|
310
|
+
GameMessagesNewNote = 295,
|
|
311
|
+
GameMessagesTurn = 296,
|
|
312
|
+
GameMessagesDedicatedServerBackup = 297,
|
|
313
|
+
GameMessagesDedicatedServerBackupLimitReached = 298,
|
|
314
|
+
GameMessagesPlaceholderChat = 299,
|
|
315
|
+
GameTileInspectionCannotSeeTile = 300,
|
|
316
|
+
MenuAboutTitle = 301,
|
|
317
|
+
MenuAboutDescription = 302,
|
|
318
|
+
MenuAboutGameDescription = 303,
|
|
319
|
+
MenuAboutSectionTeam = 304,
|
|
320
|
+
MenuAboutTeamMemberName = 305,
|
|
321
|
+
MenuAboutTeamMemberNickname = 306,
|
|
322
|
+
MenuAboutSectionContributors = 307,
|
|
323
|
+
MenuAboutSectionSpecialThanks = 308,
|
|
324
|
+
MenuAboutTextSpecialThanksTestorsAndDonators = 309,
|
|
325
|
+
MenuAboutSectionLibraries = 310,
|
|
326
|
+
MenuAboutSectionLibrariesDescription = 311,
|
|
327
|
+
MenuAboutLabelVersion = 312,
|
|
328
|
+
MenuAboutLabelVersionBuild = 313,
|
|
329
|
+
MenuAboutLabelVersionBuildTime = 314,
|
|
330
|
+
MenuBindings = 315,
|
|
331
|
+
MenuBindingsDescription = 316,
|
|
332
|
+
MenuBindingsTooltipBindConflicts = 317,
|
|
333
|
+
MenuBindingsManagedBindableGameActionBarUseSlot = 318,
|
|
334
|
+
MenuBindingsManagedBindableGameActionBarAssignSlot = 319,
|
|
335
|
+
MenuBindingsManagedBindableGameActionBarToggleUseOnMoveSlot = 320,
|
|
336
|
+
MenuChangelogTitle = 321,
|
|
337
|
+
MenuChangelogDescription = 322,
|
|
338
|
+
MenuChangelogHeadingUnchartedWaters = 323,
|
|
339
|
+
MenuChangelogFailedToLoadTitle = 324,
|
|
340
|
+
MenuChangelogFailedToLoadDescription = 325,
|
|
341
|
+
MenuChangelogHeadingChangeCount = 326,
|
|
342
|
+
MenuChangelogButtonCopyChangelog = 327,
|
|
343
|
+
MenuCharacterCreationButtonRandomizeName = 328,
|
|
344
|
+
MenuCharacterCreationButtonExportTooltip = 329,
|
|
345
|
+
MenuCharacterCreationButtonImportTooltip = 330,
|
|
346
|
+
MenuCharacterCreationButtonStartGame = 331,
|
|
347
|
+
MenuCharacterCreationButtonJoinGame = 332,
|
|
348
|
+
MenuCharacterCreationDescription = 333,
|
|
349
|
+
MenuCharacterCreationHeadingHairColor = 334,
|
|
350
|
+
MenuCharacterCreationHeadingHairStyle = 335,
|
|
351
|
+
MenuCharacterCreationHeadingSkinTone = 336,
|
|
352
|
+
MenuCharacterCreationLabelName = 337,
|
|
353
|
+
MenuCharacterCreationTitle = 338,
|
|
354
|
+
MenuCharacterCreationButtonRotateLeftTooltip = 339,
|
|
355
|
+
MenuCharacterCreationButtonRotateRightTooltip = 340,
|
|
356
|
+
MenuCharacterCreationButtonRandomizeTooltip = 341,
|
|
357
|
+
MenuCharacterSelectionButtonNewCharacter = 342,
|
|
358
|
+
MenuCharacterSelectionDescription = 343,
|
|
359
|
+
MenuCharacterSelectionHeadingNoCharacters = 344,
|
|
360
|
+
MenuCharacterSelectionTitle = 345,
|
|
361
|
+
MenuCharacterSelectionLabelLastUse = 346,
|
|
362
|
+
MenuCharacterSelectionLabelUseCount = 347,
|
|
363
|
+
MenuCharacterSelectionCharacterButtonDeleteTooltip = 348,
|
|
364
|
+
MenuCharacterSelectionCharacterButtonCustomizeTooltip = 349,
|
|
365
|
+
MenuMultiplayerDescription = 350,
|
|
366
|
+
MenuMultiplayerTitle = 351,
|
|
367
|
+
MenuMultiplayerButtonJoinById = 352,
|
|
368
|
+
MenuMultiplayerServerLabelReputation = 353,
|
|
369
|
+
MenuMultiplayerServerLabelDays = 354,
|
|
370
|
+
MenuMultiplayerServerLabelIsland = 355,
|
|
371
|
+
MenuMultiplayerButtonNewGame = 356,
|
|
372
|
+
MenuMultiplayerButtonLoadGame = 357,
|
|
373
|
+
MenuMultiplayerServerTooltipPVP = 358,
|
|
374
|
+
MenuMultiplayerServerTooltipModsLabel = 359,
|
|
375
|
+
MenuMultiplayerServerTooltipFriendsLabel = 360,
|
|
376
|
+
MenuMultiplayerServerPlayers = 361,
|
|
377
|
+
MenuMultiplayerServerLobbyType = 362,
|
|
378
|
+
MenuMultiplayerServerRegion = 363,
|
|
379
|
+
MenuMultiplayerServerHost = 364,
|
|
380
|
+
MenuMultiplayerServerVersion = 365,
|
|
381
|
+
MenuMultiplayerServerVersionUnknown = 366,
|
|
382
|
+
MenuMultiplayerServerDedicated = 367,
|
|
383
|
+
MenuMultiplayerHeadingPlayersOnline = 368,
|
|
384
|
+
MenuMultiplayerServerModInfo = 369,
|
|
385
|
+
MenuMultiplayerServerModUnableToLoad = 370,
|
|
386
|
+
MenuGameEndTitleDead = 371,
|
|
387
|
+
MenuGameEndTitleWon = 372,
|
|
388
|
+
MenuGameEndShareFacebook = 373,
|
|
389
|
+
MenuGameEndShareTwitter = 374,
|
|
390
|
+
MenuGameEndContinueAsGhost = 375,
|
|
391
|
+
MenuGameEndRespawnInCasualMode = 376,
|
|
392
|
+
MenuGameEndRespawnAsNewCharacter = 377,
|
|
393
|
+
MenuGameEndReturnToIsland = 378,
|
|
394
|
+
MenuGameEndExitToMenu = 379,
|
|
395
|
+
MenuHelpTitle = 380,
|
|
396
|
+
MenuHelpDescription = 381,
|
|
397
|
+
MenuHelpLabelSearch = 382,
|
|
398
|
+
MenuHighscoresTitle = 383,
|
|
399
|
+
MenuHighscoresDescription = 384,
|
|
400
|
+
MenuHighscoresDifficultyFilterAll = 385,
|
|
401
|
+
MenuHighscoresHighscoreLabelDifficulty = 386,
|
|
402
|
+
MenuHighscoresHighscoreLabelTurns = 387,
|
|
403
|
+
MenuHighscoresHighscoreLabelScore = 388,
|
|
404
|
+
MenuHighscoresHighscoreLabelPlace = 389,
|
|
405
|
+
MenuHighscoresHighscoreLabelDate = 390,
|
|
406
|
+
MenuHighscoresHighscoreLabelDeathBy = 391,
|
|
407
|
+
MenuHighscoresHighscoreTitle = 392,
|
|
408
|
+
MenuHighscoresCharacterNameUnknown = 393,
|
|
409
|
+
MenuHighscoresHighscoreReplayWithSettings = 394,
|
|
410
|
+
MenuLoadGameButtonSaveSlot = 395,
|
|
411
|
+
MenuLoadGameButtonNewGame = 396,
|
|
412
|
+
MenuLoadGameButtonNewGameButtonImportTooltip = 397,
|
|
413
|
+
MenuLoadGameDescription = 398,
|
|
414
|
+
MenuLoadGameSaveButtonDeleteTooltip = 399,
|
|
415
|
+
MenuLoadGameSaveButtonEditNameTooltip = 400,
|
|
416
|
+
MenuLoadGameSaveButtonExportTooltip = 401,
|
|
417
|
+
MenuLoadGameSaveTooltipLabelCreatedTime = 402,
|
|
418
|
+
MenuLoadGameSaveTooltipLabelSaveTime = 403,
|
|
419
|
+
MenuLoadGameSaveTooltipLabelGameMode = 404,
|
|
420
|
+
MenuLoadGameSaveTooltipLabelScore = 405,
|
|
421
|
+
MenuLoadGameSaveTooltipLabelSeed = 406,
|
|
422
|
+
MenuLoadGameSaveTooltipLabelTurns = 407,
|
|
423
|
+
MenuLoadGameSaveTooltipLabelMods = 408,
|
|
424
|
+
MenuLoadGameSaveTooltipLabelOriginalVersion = 409,
|
|
425
|
+
MenuLoadGameSaveTooltipMod = 410,
|
|
426
|
+
MenuLoadGameSaveTooltipNew = 411,
|
|
427
|
+
MenuLoadGameSaveTooltipCorrupted = 412,
|
|
428
|
+
MenuLoadGameSaveGame = 413,
|
|
429
|
+
MenuLoadGameSaveGameDescription = 414,
|
|
430
|
+
MenuLoadGameTitle = 415,
|
|
431
|
+
MenuLoadGameLabelSelected = 416,
|
|
432
|
+
MenuLoadGameButtonDeleteSelectedTooltip = 417,
|
|
433
|
+
MenuLoadGameImportSaveFailure = 418,
|
|
434
|
+
MenuMainButtonAbout = 419,
|
|
435
|
+
MenuMainButtonChangelog = 420,
|
|
436
|
+
MenuMainButtonMultiplayer = 421,
|
|
437
|
+
MenuMainButtonHighscores = 422,
|
|
438
|
+
MenuMainButtonLoadGame = 423,
|
|
439
|
+
MenuMainButtonMods = 424,
|
|
440
|
+
MenuMainButtonModsTooltipLabelEnabledMods = 425,
|
|
441
|
+
MenuMainButtonModsTooltipAndXOthers = 426,
|
|
442
|
+
MenuMainButtonModsAllDisabled = 427,
|
|
443
|
+
MenuMainButtonNewGame = 428,
|
|
444
|
+
MenuMainButtonNews = 429,
|
|
445
|
+
MenuMainButtonOptions = 430,
|
|
446
|
+
MenuMainButtonQuitGame = 431,
|
|
447
|
+
MenuModsWarningModsDisabledTitle = 432,
|
|
448
|
+
MenuModsWarningModsDisabledDescription = 433,
|
|
449
|
+
MenuModsButtonModdingGuide = 434,
|
|
450
|
+
MenuModsButtonOpenFolder = 435,
|
|
451
|
+
MenuModsButtonOpenWorkshop = 436,
|
|
452
|
+
MenuModsDescription = 437,
|
|
453
|
+
MenuModsTitle = 438,
|
|
454
|
+
MenuModsTooltipLabelAuthor = 439,
|
|
455
|
+
MenuModsTooltipLabelTags = 440,
|
|
456
|
+
MenuModsTooltipLabelDependencies = 441,
|
|
457
|
+
MenuModsTooltipLabelProvides = 442,
|
|
458
|
+
MenuModsTooltipLabelVersion = 443,
|
|
459
|
+
MenuModsTooltipLabelDescription = 444,
|
|
460
|
+
MenuModsTooltipLabelInstallDate = 445,
|
|
461
|
+
MenuModsTooltipLabelCreatedDate = 446,
|
|
462
|
+
MenuModsTooltipLabelLastUpdatedDate = 447,
|
|
463
|
+
MenuModsTooltipPreventsMilestoneUnlocks = 448,
|
|
464
|
+
MenuModsTooltipModOptions = 449,
|
|
465
|
+
MenuModsTooltipPublishMod = 450,
|
|
466
|
+
MenuModsTooltipModMoreInformation = 451,
|
|
467
|
+
MenuModsTooltipUninstallMod = 452,
|
|
468
|
+
MenuModsTooltipViewInSteamWorkshop = 453,
|
|
469
|
+
MenuModsTooltipViewGitHub = 454,
|
|
470
|
+
MenuModsTooltipOpenFolder = 455,
|
|
471
|
+
MenuModsButtonEditInternalMods = 456,
|
|
472
|
+
MenuModsSectionHeading = 457,
|
|
473
|
+
MenuModsSubmenuEditInternalModsTitle = 458,
|
|
474
|
+
MenuModsSubmenuEditInternalModsDescription = 459,
|
|
475
|
+
MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 460,
|
|
476
|
+
MenuNewGameButtonNext = 461,
|
|
477
|
+
MenuNewGameButtonStartServer = 462,
|
|
478
|
+
MenuNewGameDescription = 463,
|
|
479
|
+
MenuNewGameLabelEditName = 464,
|
|
480
|
+
MenuNewGameLabelEditSeed = 465,
|
|
481
|
+
MenuNewGamePlaceholderEditSeed = 466,
|
|
482
|
+
MenuNewGameTitle = 467,
|
|
483
|
+
MenuNewGameChoiceDifficulty = 468,
|
|
484
|
+
MenuNewGameChoiceSingleplayer = 469,
|
|
485
|
+
MenuNewGameChoiceSingleplayerDescription = 470,
|
|
486
|
+
MenuNewGameChoiceMultiplayer = 471,
|
|
487
|
+
MenuNewGameChoiceMultiplayerDescription = 472,
|
|
488
|
+
MenuNewGameChoiceTurnModeManual = 473,
|
|
489
|
+
MenuNewGameChoiceTurnModeManualDescription = 474,
|
|
490
|
+
MenuNewGameChoiceTurnModeRealTime = 475,
|
|
491
|
+
MenuNewGameChoiceTurnModeRealTimeDescription = 476,
|
|
492
|
+
MenuNewGameChoiceTurnModeSimulated = 477,
|
|
493
|
+
MenuNewGameChoiceTurnModeSimulatedDescription = 478,
|
|
494
|
+
MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 479,
|
|
495
|
+
MenuNewGameChoiceDifficultyChallengeDaily = 480,
|
|
496
|
+
MenuNewGameChoiceDifficultyChallengeDailyTooltip = 481,
|
|
497
|
+
MenuNewGameButtonMilestones = 482,
|
|
498
|
+
MenuNewGameButtonMilestonesDescription = 483,
|
|
499
|
+
MenuNewGameTabGameMode = 484,
|
|
500
|
+
MenuNewGameTabMultiplayer = 485,
|
|
501
|
+
MenuNewGameTabGameplayModifiers = 486,
|
|
502
|
+
MenuNewGameHeadingGameMode = 487,
|
|
503
|
+
MenuNewGameHeadingMultiplayer = 488,
|
|
504
|
+
MenuNewGameHeadingGameplayModifiers = 489,
|
|
505
|
+
MenuNewGameMilestoneModifiersUnlockableInMode = 490,
|
|
506
|
+
MenuNewGameChoiceClientsInheritHostModifiers = 491,
|
|
507
|
+
MenuNewGameChoiceClientsInheritHostModifiersDescription = 492,
|
|
508
|
+
MenuNewGameChoiceCustomModifiers = 493,
|
|
509
|
+
MenuNewGameChoiceCustomModifiersDescription = 494,
|
|
510
|
+
MenuMilestoneModifiersTitle = 495,
|
|
511
|
+
MenuMilestoneModifiersDescription = 496,
|
|
512
|
+
MenuCustomGameOptionsTitle = 497,
|
|
513
|
+
MenuCustomGameOptionsDescription = 498,
|
|
514
|
+
MenuCustomGameOptionsRespawnOnDeath = 499,
|
|
515
|
+
MenuCustomGameOptionsRespawnOnDeathDescription = 500,
|
|
516
|
+
MenuCustomGameOptionsUseUnlockedRecipes = 501,
|
|
517
|
+
MenuCustomGameOptionsStartingIslandBiome = 502,
|
|
518
|
+
MenuCustomGameOptionsApplyTravelingEffects = 503,
|
|
519
|
+
MenuCustomGameOptionsApplyTravelingEffectsDescription = 504,
|
|
520
|
+
MenuCustomGameOptionsCreaturesPeaceful = 505,
|
|
521
|
+
MenuCustomGameOptionsCreaturesAberrantSpawns = 506,
|
|
522
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 507,
|
|
523
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 508,
|
|
524
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 509,
|
|
525
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 510,
|
|
526
|
+
MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 511,
|
|
527
|
+
MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 512,
|
|
528
|
+
MenuCustomGameOptionsCreaturesAlwaysSpawn = 513,
|
|
529
|
+
MenuCustomGameOptionsCreaturesAllowSpawning = 514,
|
|
530
|
+
MenuCustomGameOptionsCreaturesSpawnLimit = 515,
|
|
531
|
+
MenuCustomGameOptionsCreaturesSpawnLimitDescription = 516,
|
|
532
|
+
MenuCustomGameOptionsCreatureNone = 517,
|
|
533
|
+
MenuCustomGameOptionsCreatureConfigure = 518,
|
|
534
|
+
MenuCustomGameOptionsBenignityInitial = 519,
|
|
535
|
+
MenuCustomGameOptionsBenignityMultiplier = 520,
|
|
536
|
+
MenuCustomGameOptionsBenignityMultiplierTooltip = 521,
|
|
537
|
+
MenuCustomGameOptionsMalignityInitial = 522,
|
|
538
|
+
MenuCustomGameOptionsMalignityMultiplier = 523,
|
|
539
|
+
MenuCustomGameOptionsMalignityMultiplierTooltip = 524,
|
|
540
|
+
MenuCustomGameOptionsStatMultiplier = 525,
|
|
541
|
+
MenuCustomGameOptionsStatMultiplierTooltip = 526,
|
|
542
|
+
MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 527,
|
|
543
|
+
MenuCustomGameOptionsHeadingGeneral = 528,
|
|
544
|
+
MenuCustomGameOptionsHeadingTravel = 529,
|
|
545
|
+
MenuCustomGameOptionsHeadingTime = 530,
|
|
546
|
+
MenuCustomGameOptionsHeadingStats = 531,
|
|
547
|
+
MenuCustomGameOptionsHeadingReputation = 532,
|
|
548
|
+
MenuCustomGameOptionsHeadingItems = 533,
|
|
549
|
+
MenuCustomGameOptionsHeadingCreatures = 534,
|
|
550
|
+
MenuCustomGameOptionsHeadingSkills = 535,
|
|
551
|
+
MenuCustomGameOptionsHeadingStatusEffects = 536,
|
|
552
|
+
MenuCustomGameOptionsEternalNight = 537,
|
|
553
|
+
MenuCustomGameOptionsEternalNightDescription = 538,
|
|
554
|
+
MenuCustomGameOptionsEternalDay = 539,
|
|
555
|
+
MenuCustomGameOptionsEternalDayDescription = 540,
|
|
556
|
+
MenuCustomGameOptionsTimeFrozen = 541,
|
|
557
|
+
MenuCustomGameOptionsTimeInitial = 542,
|
|
558
|
+
MenuCustomGameOptionsTimeDayLength = 543,
|
|
559
|
+
MenuCustomGameOptionsTimeDayLengthTooltip = 544,
|
|
560
|
+
MenuCustomGameOptionsTimeDayPercent = 545,
|
|
561
|
+
MenuCustomGameOptionsTimeDayPercentTooltip = 546,
|
|
562
|
+
MenuCustomGameOptionsStatStarting = 547,
|
|
563
|
+
MenuCustomGameOptionsStatMax = 548,
|
|
564
|
+
MenuCustomGameOptionsStatStartingDisplay = 549,
|
|
565
|
+
MenuCustomGameOptionsStatMaxDisplay = 550,
|
|
566
|
+
MenuCustomGameOptionsStatNoChange = 551,
|
|
567
|
+
MenuCustomGameOptionsStatBonus = 552,
|
|
568
|
+
MenuCustomGameOptionsStatBonusDisplay = 553,
|
|
569
|
+
MenuCustomGameOptionsStatusEffectPassChanceMultiplier = 554,
|
|
570
|
+
MenuCustomGameOptionsStatusEffectPassChanceMultiplierTooltip = 555,
|
|
571
|
+
MenuCustomGameOptionsStatusEffectStartWith = 556,
|
|
572
|
+
MenuCustomGameOptionsStatusEffectUntreatable = 557,
|
|
573
|
+
MenuCustomGameOptionsStatusEffectUntreatableTooltip = 558,
|
|
574
|
+
MenuCustomGameOptionsSkillInitialRandomCount = 559,
|
|
575
|
+
MenuCustomGameOptionsSkillInitialRandomCountDescription = 560,
|
|
576
|
+
MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 561,
|
|
577
|
+
MenuCustomGameOptionsSkillsGlobal = 562,
|
|
578
|
+
MenuCustomGameOptionsSkillNone = 563,
|
|
579
|
+
MenuCustomGameOptionsSkillConfigure = 564,
|
|
580
|
+
MenuCustomGameOptionsSkillInitial = 565,
|
|
581
|
+
MenuCustomGameOptionsSkillMultiplier = 566,
|
|
582
|
+
MenuCustomGameOptionsSkillMultiplierTooltip = 567,
|
|
583
|
+
MenuCustomGameOptionsRandomItems = 568,
|
|
584
|
+
MenuCustomGameOptionsRandomItemsDescription = 569,
|
|
585
|
+
MenuCustomGameOptionsItemDurability = 570,
|
|
586
|
+
MenuCustomGameOptionsItemDurabilityTooltip = 571,
|
|
587
|
+
MenuCustomGameOptionsItemDecay = 572,
|
|
588
|
+
MenuCustomGameOptionsItemDecayTooltip = 573,
|
|
589
|
+
MenuCustomGameOptionsExport = 574,
|
|
590
|
+
MenuCustomGameOptionsImport = 575,
|
|
591
|
+
MenuNewsDescription = 576,
|
|
592
|
+
MenuNewsHeadingSocial = 577,
|
|
593
|
+
MenuNewsTitle = 578,
|
|
594
|
+
MenuNewsHeadingUnableToLoad = 579,
|
|
595
|
+
MenuNewsButtonAllNews = 580,
|
|
596
|
+
MenuNewsButtonViewChangelog = 581,
|
|
597
|
+
MenuOptionsButtonDitherFogOfWar = 582,
|
|
598
|
+
MenuOptionsButtonHealthVignette = 583,
|
|
599
|
+
MenuOptionsButtonHealthVignetteTooltip = 584,
|
|
600
|
+
MenuOptionsButtonDisableCustomCursor = 585,
|
|
601
|
+
MenuOptionsButtonEnableSmoothZooming = 586,
|
|
602
|
+
MenuOptionsButtonDisplayArticleInObjectNames = 587,
|
|
603
|
+
MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 588,
|
|
604
|
+
MenuOptionsButtonFullscreen = 589,
|
|
605
|
+
MenuOptionsButtonCustomTitleBar = 590,
|
|
606
|
+
MenuOptionsButtonDeveloperMode = 591,
|
|
607
|
+
MenuOptionsButtonDeveloperModeContextMenu = 592,
|
|
608
|
+
MenuOptionsButtonReloadGame = 593,
|
|
609
|
+
MenuOptionsButtonReloadStylesheets = 594,
|
|
610
|
+
MenuOptionsButtonReloadVariableUIImages = 595,
|
|
611
|
+
MenuOptionsButtonExportGlobalSaveData = 596,
|
|
612
|
+
MenuOptionsButtonImportGlobalSaveData = 597,
|
|
613
|
+
MenuOptionsButtonSaveDataBackups = 598,
|
|
614
|
+
MenuOptionsButtonSaveDataBackupsTooltip = 599,
|
|
615
|
+
MenuOptionsButtonSaveDataClearAll = 600,
|
|
616
|
+
MenuOptionsButtonSaveDataClearCharacters = 601,
|
|
617
|
+
MenuOptionsButtonSaveDataClearHighscores = 602,
|
|
618
|
+
MenuOptionsButtonSaveDataClearMilestones = 603,
|
|
619
|
+
MenuOptionsButtonSaveDataClearOptions = 604,
|
|
620
|
+
MenuOptionsButtonSaveDataClearCraftingRecipes = 605,
|
|
621
|
+
MenuOptionsButtonSaveDataClearSaves = 606,
|
|
622
|
+
MenuOptionsButtonSkipSplash = 607,
|
|
623
|
+
MenuOptionsButtonToggleDevTools = 608,
|
|
624
|
+
MenuOptionsButtonOpenBackupsFolder = 609,
|
|
625
|
+
MenuOptionsButtonOpenLogsFolder = 610,
|
|
626
|
+
MenuOptionsButtonDropLocationFacing = 611,
|
|
627
|
+
MenuOptionsButtonDropLocationFeet = 612,
|
|
628
|
+
MenuOptionsButtonStartTraceRecording = 613,
|
|
629
|
+
MenuOptionsButtonStopTraceRecording = 614,
|
|
630
|
+
MenuOptionsButtonTracingRecordingtTooltip = 615,
|
|
631
|
+
MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 616,
|
|
632
|
+
MenuOptionsDescription = 617,
|
|
633
|
+
MenuOptionsHeadingAudio = 618,
|
|
634
|
+
MenuOptionsHeadingDeveloper = 619,
|
|
635
|
+
MenuOptionsHeadingGameplayOptions = 620,
|
|
636
|
+
MenuOptionsHeadingGameplayOptionsDescription = 621,
|
|
637
|
+
MenuOptionsHeadingGameplayOptionsButtonOpenDialog = 622,
|
|
638
|
+
MenuOptionsHeadingOtherOptions = 623,
|
|
639
|
+
MenuOptionsHeadingControls = 624,
|
|
640
|
+
MenuOptionsHeadingModOptions = 625,
|
|
641
|
+
MenuOptionsHeadingOther = 626,
|
|
642
|
+
MenuOptionsHeadingSaveData = 627,
|
|
643
|
+
MenuOptionsHeadingTooltipsTile = 628,
|
|
644
|
+
MenuOptionsHeadingVideo = 629,
|
|
645
|
+
MenuOptionsLabelInterfaceScale = 630,
|
|
646
|
+
MenuOptionsLabelHudWidth = 631,
|
|
647
|
+
MenuOptionsLabelTooltipDelay = 632,
|
|
648
|
+
MenuOptionsLabelDirectionTurnDelay = 633,
|
|
649
|
+
MenuOptionsLabelMouseTurnDelay = 634,
|
|
650
|
+
MenuOptionsLabelFontStyle = 635,
|
|
651
|
+
MenuOptionsTooltipTurnDelay = 636,
|
|
652
|
+
MenuOptionsTooltipMouseTurnDelay = 637,
|
|
653
|
+
MenuOptionsTooltipControlsFilter = 638,
|
|
654
|
+
MenuOptionsLabelVolumeEffects = 639,
|
|
655
|
+
MenuOptionsLabelVolumeMusic = 640,
|
|
656
|
+
MenuOptionsTabAudio = 641,
|
|
657
|
+
MenuOptionsTabDeveloper = 642,
|
|
658
|
+
MenuOptionsTabGameplay = 643,
|
|
659
|
+
MenuOptionsTabTooltips = 644,
|
|
660
|
+
MenuOptionsTabOther = 645,
|
|
661
|
+
MenuOptionsTabLanguage = 646,
|
|
662
|
+
MenuOptionsTabControls = 647,
|
|
663
|
+
MenuOptionsTabMods = 648,
|
|
664
|
+
MenuOptionsTabSaveData = 649,
|
|
665
|
+
MenuOptionsTabVideo = 650,
|
|
666
|
+
MenuOptionsTabPerformance = 651,
|
|
667
|
+
MenuOptionsHeadingPerformance = 652,
|
|
668
|
+
MenuOptionsTitle = 653,
|
|
669
|
+
MenuOptionsTooltipMusicNextTrack = 654,
|
|
670
|
+
MenuOptionsBindChoose = 655,
|
|
671
|
+
MenuOptionsBindChooseAdd = 656,
|
|
672
|
+
MenuOptionsBindButtonResetTooltip = 657,
|
|
673
|
+
MenuOptionsBindButtonDeleteTooltip = 658,
|
|
674
|
+
MenuOptionsBindButtonAddTooltip = 659,
|
|
675
|
+
MenuOptionsBindButtonAddMacroTooltip = 660,
|
|
676
|
+
MenuOptionsButtonUnlockAllMilestones = 661,
|
|
677
|
+
MenuOptionsButtonDiscoverAllActions = 662,
|
|
678
|
+
MenuOptionsButtonUnlockAllCraftingRecipes = 663,
|
|
679
|
+
MenuOptionsButtonAlternatingDirectionMovement = 664,
|
|
680
|
+
MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 665,
|
|
681
|
+
MenuOptionsButtonAlwaysShowMoreInformationTooltip = 666,
|
|
682
|
+
MenuOptionsButtonEnableLowPowerMode = 667,
|
|
683
|
+
MenuOptionsButtonEnableLowPowerModeTooltip = 668,
|
|
684
|
+
MenuOptionsButtonDisableAcrylicTransparency = 669,
|
|
685
|
+
MenuOptionsButtonDisableAcrylicTransparencyTooltip = 670,
|
|
686
|
+
MenuOptionsButtonDisableOverlaySupport = 671,
|
|
687
|
+
MenuOptionsButtonDisableOverlaySupportTooltip = 672,
|
|
688
|
+
MenuOptionsButtonDisableUIEffects = 673,
|
|
689
|
+
MenuOptionsButtonDisableUIEffectsTooltip = 674,
|
|
690
|
+
MenuOptionsButtonDisableUIOpacity = 675,
|
|
691
|
+
MenuOptionsButtonDisableUIOpacityTooltip = 676,
|
|
692
|
+
MenuOptionsButtonDisableMovementAnimations = 677,
|
|
693
|
+
MenuOptionsButtonDisableMovementAnimationsTooltip = 678,
|
|
694
|
+
MenuOptionsButtonAutoAttack = 679,
|
|
695
|
+
MenuOptionsButtonAutoAttackTooltip = 680,
|
|
696
|
+
MenuOptionsButtonAutoPickUp = 681,
|
|
697
|
+
MenuOptionsButtonAutoPickUpTooltip = 682,
|
|
698
|
+
MenuOptionsButtonAutoPickUpOnIdle = 683,
|
|
699
|
+
MenuOptionsButtonAutoPickUpOnIdleTooltip = 684,
|
|
700
|
+
MenuOptionsButtonDropOnDismantle = 685,
|
|
701
|
+
MenuOptionsButtonDropOnDismantleTooltip = 686,
|
|
702
|
+
MenuOptionsButtonDropOnDisassemble = 687,
|
|
703
|
+
MenuOptionsButtonDropOnDisassembleTooltip = 688,
|
|
704
|
+
MenuOptionsButtonDisableCraftingProtectedItems = 689,
|
|
705
|
+
MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 690,
|
|
706
|
+
MenuOptionsButtonDropOnGatherHarvest = 691,
|
|
707
|
+
MenuOptionsButtonDropOnGatherHarvestTooltip = 692,
|
|
708
|
+
MenuOptionsButtonKeepSortActive = 693,
|
|
709
|
+
MenuOptionsButtonKeepSortActiveTooltip = 694,
|
|
710
|
+
MenuOptionsButtonUseAdjacentContainers = 695,
|
|
711
|
+
MenuOptionsButtonUseAdjacentContainersTooltip = 696,
|
|
712
|
+
MenuOptionsButtonHideEquippedHeadgear = 697,
|
|
713
|
+
MenuOptionsButtonHideEquippedHeadgearTooltip = 698,
|
|
714
|
+
MenuOptionsButtonLeftHanded = 699,
|
|
715
|
+
MenuOptionsButtonLeftHandedTooltip = 700,
|
|
716
|
+
MenuOptionsButtonAutoSave = 701,
|
|
717
|
+
MenuOptionsRangeAutoSaveTimerLabel = 702,
|
|
718
|
+
MenuOptionsRangeAutoSaveTimerTurnsDisplay = 703,
|
|
719
|
+
MenuOptionsRangeAutoSaveTimerTimeDisplay = 704,
|
|
720
|
+
MenuOptionsButtonDropIntoContainers = 705,
|
|
721
|
+
MenuOptionsButtonDropIntoContainersTooltip = 706,
|
|
722
|
+
MenuOptionsButtonWarnOnDangerousActions = 707,
|
|
723
|
+
MenuOptionsButtonWarnOnDangerousActionsTooltip = 708,
|
|
724
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 709,
|
|
725
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 710,
|
|
726
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUse = 711,
|
|
727
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 712,
|
|
728
|
+
MenuOptionsHeadingWarnWhenBreakingItems = 713,
|
|
729
|
+
MenuOptionsButtonSaveDataClearBindings = 714,
|
|
730
|
+
MenuOptionsTooltipDialogOpacity = 715,
|
|
731
|
+
MenuOptionsLabelDialogOpacity = 716,
|
|
732
|
+
MenuOptionsDeveloperLogSourceFilterHeading = 717,
|
|
733
|
+
MenuOptionsDeveloperUIExperiments = 718,
|
|
734
|
+
MenuOptionsDeveloperUIExperimentsDescription = 719,
|
|
735
|
+
MenuOptionsAudioVolumeDisplay = 720,
|
|
736
|
+
MenuOptionsAudioInputSoundOnTyping = 721,
|
|
737
|
+
MenuOptionsMusicPlaylist = 722,
|
|
738
|
+
MenuOptionsButtonConfigureBindings = 723,
|
|
739
|
+
MenuOptionsButtonSaveCompression = 724,
|
|
740
|
+
MenuOptionsButtonSaveCompressionTooltip = 725,
|
|
741
|
+
MenuOptionsButtonSaveUIDataGlobally = 726,
|
|
742
|
+
MenuOptionsButtonSaveUIDataGloballyTooltip = 727,
|
|
743
|
+
MenuPauseButtonContinueGame = 728,
|
|
744
|
+
MenuPauseButtonReturnToGame = 729,
|
|
745
|
+
MenuPauseButtonOptions = 730,
|
|
746
|
+
MenuPauseButtonGameSettings = 731,
|
|
747
|
+
MenuPauseButtonPaused = 732,
|
|
748
|
+
MenuPauseButtonMultiplayer = 733,
|
|
749
|
+
MenuPauseButtonHelp = 734,
|
|
750
|
+
MenuPauseButtonTitleScreen = 735,
|
|
751
|
+
MenuPauseButtonStopServer = 736,
|
|
752
|
+
MenuPauseTooltipNotPaused = 737,
|
|
753
|
+
MenuPauseLabelPaused = 738,
|
|
754
|
+
MenuPauseLabelNotPaused = 739,
|
|
755
|
+
MenuModesTitle = 740,
|
|
756
|
+
MenuModesDescription = 741,
|
|
757
|
+
MenuMultiplayerOptionsTitle = 742,
|
|
758
|
+
MenuMultiplayerOptionsDescription = 743,
|
|
759
|
+
MenuMultiplayerOptionsOpenServer = 744,
|
|
760
|
+
MenuMultiplayerOptionsOpenServerDescription = 745,
|
|
761
|
+
MenuMultiplayerOptionsCopyGameCode = 746,
|
|
762
|
+
MenuMultiplayerOptionsCopyGameCodeTooltip = 747,
|
|
763
|
+
MenuMultiplayerOptionsInviteSteamFriends = 748,
|
|
764
|
+
MenuMultiplayerOptionsCheckConnectionHeading = 749,
|
|
765
|
+
MenuMultiplayerOptionsCheckConnectionParagraph = 750,
|
|
766
|
+
MenuMultiplayerOptionsCheckConnectionButton = 751,
|
|
767
|
+
MenuMultiplayerOptionsCheckConnectionResultUnknown = 752,
|
|
768
|
+
MenuMultiplayerOptionsCheckConnectionResultChecking = 753,
|
|
769
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 754,
|
|
770
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 755,
|
|
771
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 756,
|
|
772
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocket = 757,
|
|
773
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 758,
|
|
774
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 759,
|
|
775
|
+
MenuMultiplayerOptionsCheckConnectionResultSuccess = 760,
|
|
776
|
+
MenuJoinServerTitle = 761,
|
|
777
|
+
MenuJoinServerDescription = 762,
|
|
778
|
+
MenuJoinServerInputPlaceholder = 763,
|
|
779
|
+
MenuJoinServerChooseModifiersTitle = 764,
|
|
780
|
+
MenuJoinServerChooseModifiersDescription = 765,
|
|
781
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriends = 766,
|
|
782
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 767,
|
|
783
|
+
MenuSharedMultiplayerChoiceLobbyTypePublic = 768,
|
|
784
|
+
MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 769,
|
|
785
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivate = 770,
|
|
786
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 771,
|
|
787
|
+
MenuSharedMultiplayerChoicePVP = 772,
|
|
788
|
+
MenuSharedMultiplayerChoicePVPDescription = 773,
|
|
789
|
+
MenuSharedMultiplayerChoiceAllowTraveling = 774,
|
|
790
|
+
MenuSharedMultiplayerChoiceAllowTravelingDescription = 775,
|
|
791
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 776,
|
|
792
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 777,
|
|
793
|
+
MenuSharedMultiplayerDescription = 778,
|
|
794
|
+
MenuSharedMultiplayerMessageOfTheDay = 779,
|
|
795
|
+
MenuSharedMultiplayerMaxPlayers = 780,
|
|
796
|
+
MenuSharedRealTimeTickSpeedTooltip = 781,
|
|
797
|
+
MenuSharedRealTimeTickSpeedLabel = 782,
|
|
798
|
+
MenuSharedMaxTravelTimeLabel = 783,
|
|
799
|
+
MenuSharedMaxTravelTimeLabelTooltip = 784,
|
|
800
|
+
MenuSharedButtonDefault = 785,
|
|
801
|
+
MenuSharedValueSeconds = 786,
|
|
802
|
+
MenuSharedValueMillseconds = 787,
|
|
803
|
+
MenuSharedValueTurns = 788,
|
|
804
|
+
MenuSharedValuePercentage = 789,
|
|
805
|
+
MenuSharedMilestonesNotUnlockable = 790,
|
|
806
|
+
MenuSharedMilestonesNotUnlockableDescription = 791,
|
|
807
|
+
MenuSharedMilestonesNotUnlockableButtonShowMods = 792,
|
|
808
|
+
MenuSharedButtonDisableAll = 793,
|
|
809
|
+
MenuSharedButtonEnableAll = 794,
|
|
810
|
+
MenuSharedMilestoneModifiersSelected = 795,
|
|
811
|
+
MiscSortBy = 796,
|
|
812
|
+
MiscSortDirection = 797,
|
|
813
|
+
MiscFilter = 798,
|
|
814
|
+
MiscPlayerNameDefault = 799,
|
|
815
|
+
MiscPlayerNameServer = 800,
|
|
816
|
+
MiscSaveNameDefault = 801,
|
|
817
|
+
MiscSaveNameDailyChallenge = 802,
|
|
818
|
+
MiscSaveNameChallenge = 803,
|
|
819
|
+
MiscSaveVersionUnknown = 804,
|
|
820
|
+
MiscVersion = 805,
|
|
821
|
+
MiscVersionBuildInfoTooltip = 806,
|
|
822
|
+
MiscVersionUpdate = 807,
|
|
823
|
+
MiscTime = 808,
|
|
824
|
+
MiscTimeMeridiem = 809,
|
|
825
|
+
MiscError = 810,
|
|
826
|
+
MiscContextMenuCopyTooltip = 811,
|
|
827
|
+
MiscBindableNoBindings = 812,
|
|
828
|
+
MiscBindingIcon = 813,
|
|
829
|
+
MiscBindingIconThen = 814,
|
|
830
|
+
DifficultyOptionsPeaceful = 815,
|
|
831
|
+
DifficultyOptionsAberrantSpawnsDisabled = 816,
|
|
832
|
+
DifficultyOptionsAberrantSpawnsOnly = 817,
|
|
833
|
+
DifficultyOptionsCreatureSpawningDisabled = 818,
|
|
834
|
+
DifficultyOptionsCreatureAlwaysSpawns = 819,
|
|
835
|
+
DifficultyOptionsCreatureSpawnsDefault = 820,
|
|
836
|
+
DifficultyOptionsCreatureSpawnsAberrantOnly = 821,
|
|
837
|
+
DifficultyOptionsCreatureSpawnsNoAberrants = 822,
|
|
838
|
+
DifficultyOptionsSpawnLimit = 823,
|
|
839
|
+
DifficultyOptionsRespawn = 824,
|
|
840
|
+
DifficultyOptionsEternalNight = 825,
|
|
841
|
+
DifficultyOptionsEternalDay = 826,
|
|
842
|
+
DifficultyOptionsTimeInitial = 827,
|
|
843
|
+
DifficultyOptionsTimeFrozen = 828,
|
|
844
|
+
DifficultyOptionsTimeDayLength = 829,
|
|
845
|
+
DifficultyOptionsTimeDayPercent = 830,
|
|
846
|
+
DifficultyOptionsNoItems = 831,
|
|
847
|
+
DifficultyOptionsRecipes = 832,
|
|
848
|
+
DifficultyOptionsStartingIsland = 833,
|
|
849
|
+
DifficultyOptionsTravelingEffectsDisabled = 834,
|
|
850
|
+
DifficultyOptionsBenignityInitial = 835,
|
|
851
|
+
DifficultyOptionsBenignityMultiplier = 836,
|
|
852
|
+
DifficultyOptionsMalignityInitial = 837,
|
|
853
|
+
DifficultyOptionsMalignityMultiplier = 838,
|
|
854
|
+
DifficultyOptionsWeightBonus = 839,
|
|
855
|
+
DifficultyOptionsStatInitial = 840,
|
|
856
|
+
DifficultyOptionsStatMax = 841,
|
|
857
|
+
DifficultyOptionsStatMultiplier = 842,
|
|
858
|
+
DifficultyOptionsStatusEffectStartWith = 843,
|
|
859
|
+
DifficultyOptionsStatusEffectUntreatable = 844,
|
|
860
|
+
DifficultyOptionsStatusEffectPassChanceMultiplier = 845,
|
|
861
|
+
DifficultyOptionsNoRandomSkills = 846,
|
|
862
|
+
DifficultyOptionsSkillStartingCount = 847,
|
|
863
|
+
DifficultyOptionsSkillGainMultiplier = 848,
|
|
864
|
+
DifficultyOptionsSkillInitial = 849,
|
|
865
|
+
DifficultyOptionsStatusEffectPermanent = 850,
|
|
866
|
+
DifficultyOptionsStatusEffectRateMultiplier = 851,
|
|
867
|
+
DifficultyOptionsStatusEffectMultiplier = 852,
|
|
868
|
+
DifficultyOptionsItemDurabilityMultiplier = 853,
|
|
869
|
+
DifficultyOptionsItemDecayMultiplier = 854,
|
|
870
|
+
TabCrafting = 855,
|
|
871
|
+
TabDismantle = 856,
|
|
872
|
+
WindowTitleContainer = 857,
|
|
873
|
+
WindowTitleInventory = 858
|
|
869
874
|
}
|
|
870
875
|
export default UiTranslation;
|