-
Notifications
You must be signed in to change notification settings - Fork 11
/
english.milanguage
3912 lines (3912 loc) · 113 KB
/
english.milanguage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
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
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"description": "Mine-imator language file. Copy and rename this to begin creating your own translation.",
"file/": {
"language": "English",
"locale": "en-US",
"translator": "David, Nimi, mbanders, Swooplezz",
"forversion": "2.0.2 Community Build 1.0.0",
"lastchange": "2024.08.01"
},
"particle/": {
"default": "Default spawner",
"electric_spark": "Electric spark",
"explosion": "Explosion",
"firework_blast": "Firework blast",
"fountain_of_cakes": "Fountain of cakes",
"grass_explosion": "Grass explosion",
"high_fire": "High fire",
"huge_smoke": "Huge smoke",
"low_fire": "Low fire",
"potion_effect": "Potion effect",
"rain": "Rain",
"smoke": "Smoke",
"snow": "Snow",
"teleport": "Teleport",
"type/": {
"particle_1": "Particle 1",
"spark": "Spark",
"smoke": "Smoke",
"explosion": "Explosion",
"smoke_black": "Smoke (Black)",
"smoke_white": "Smoke (White)",
"flash": "Flash",
"cake": "Cake",
"flying_grass": "Flying grass",
"fire": "Fire",
"effect": "Effect",
"rain": "Rain",
"snow": "Snow",
"portal": "Portal"
}
},
"tooltip/": {
"sidemenuclose": "Close side menu",
"sidemenuopen": "Open side menu",
"showoptions": "Show options",
"hideoptions": "Hide options",
"remove": "Remove",
"pin": "Pin",
"changefolder": "Change folder",
"openfolder": "Open folder",
"downloadskin": "Download skin",
"pastekey": "Paste key",
"filterlist": "Filter list",
"lightgroup/": {
"new": "New light group",
"remove": "Remove light group"
},
"template/": {
"new": "New template",
"animate": "Create timeline from template",
"duplicate": "Duplicate template",
"remove": "Remove template"
},
"resource/": {
"new": "Add resource",
"remove": "Remove resource",
"reload": "Reload resource",
"replace": "Replace resource",
"open": "Open resource in external program",
"save": "Save resource"
},
"changeitem": "Change item",
"changeblock": "Change block",
"changemodel": "Change model",
"changeground": "Change ground",
"play": "Play",
"stop": "Stop",
"pause": "Pause",
"particles/": {
"spawn": "Spawn particles",
"clear": "Clear particles",
"import": "Import particles",
"export": "Export particles",
"add": "Add emitter",
"duplicate": "Duplicate emitter",
"delete": "Delete emitter",
"resetpreview": "Reset preview",
"random": "Use random values"
},
"tl/": {
"previouskeyframe": "Previous keyframe",
"nextkeyframe": "Next keyframe",
"previousframe": "Back 1 frame",
"nextframe": "Forward 1 frame",
"stop": "Stop",
"play": "Play",
"playregion": "Play at region",
"pause": "Pause",
"settings": "Timeline settings",
"disableloop": "Disable looping",
"enableloop": "Enable looping",
"enableseamlessloop": "Enable seamless looping",
"expand": "Expand",
"collapse": "Collapse",
"hide": "Hide",
"show": "Show",
"mute": "Mute",
"unmute": "Unmute",
"lock": "Lock",
"unlock": "Unlock",
"ghost": "Set ghost timeline",
"unghost": "Unset ghost timeline",
"filter": "Filter timelines",
"walk": "Create walk cycle",
"run": "Create run cycle",
"popout": "Open in new window",
"popin": "Close timeline window"
},
"customaccentcolor": "Custom accent color",
"editkeybind": "Edit keybind",
"languageadd": "Add language",
"languagefolder": "Open languages folder",
"viewlist": "List view",
"viewgrid": "Grid view",
"experimental": "This setting is experimental and is not fully supported.",
"settings/": {
"import": "Import settings",
"export": "Export settings",
"setdefault": "Set as default settings",
"reset": "Reset settings"
},
"linkeaseinout": "Link ease in/out",
"importwatermarkimage": "Import watermark image",
"resetwatermarkimage": "Reset watermark image"
},
"contextmenu/": {
"textbox/": {
"cut": "Cut",
"copy": "Copy",
"paste": "Paste",
"selectall": "Select all"
},
"value/": {
"cut": "Cut",
"copy": "Copy",
"paste": "Paste",
"reset": "Reset"
},
"group/": {
"copy": "Copy all values",
"paste": "Paste all values",
"reset": "Reset all values",
"copyglobalposition": "Copy global position",
"inverse": "Set inverse"
},
"tl/": {
"addfolder": "Add folder",
"selectkeyframes": "Select all keyframes",
"expandchildren": "Expand children",
"collapsechildren": "Collapse children",
"duplicate": "Duplicate",
"delete": "Delete",
"export": "Export objects",
"selectall": "Select all",
"expandall": "Expand all",
"collapseall": "Collapse all",
"keyframes/": {
"cut": "Cut keyframes",
"copy": "Copy keyframes",
"paste": "Paste keyframes",
"delete": "Delete keyframes",
"export": "Export keyframes",
"select": "Select keyframes...",
"select/": {
"before": "Before marker",
"after": "After marker",
"first": "First in timelines",
"last": "Last in timelines",
"region": "In selected region"
},
"walk": "Create walk cycle",
"run": "Create run cycle",
"transition": "Transition..."
},
"marker/": {
"add": "Add marker",
"edit": "Edit marker",
"delete": "Delete marker"
},
"colortag": "Color tag..."
},
"color/": {
"none": "None",
"0": "Red",
"1": "Orange",
"2": "Yellow",
"3": "Green",
"4": "Forest green",
"5": "Teal",
"6": "Blue",
"7": "Purple",
"8": "Pink"
},
"scaleseparate": "Separate scale",
"scalecombine": "Combine scale",
"bendsliders": "Display as sliders",
"bendwheels": "Display as wheels",
"restorekeybind": "Restore keybind",
"pathsetlength": "Set path length",
"setcolor": "Set color...",
"mixcolor": "Mix in color..."
},
"shortcut/": {
"select": "Select timeline",
"orbit": "Orbit view",
"pan": "Pan view",
"zoom": "Zoom",
"walk": "Walk navigation",
"forward": "Forward",
"left": "Left",
"back": "Back",
"right": "Right",
"ascend": "Ascend",
"descend": "Descend",
"faster": "Faster",
"slower": "Slower",
"rollforward": "Roll forward",
"rollback": "Roll back",
"rollreset": "Reset roll",
"reset": "Reset",
"scrollhorizontal": "Scroll horizontally",
"scrollvertical": "Scroll vertically",
"viewtimeline": "View timeline",
"tl/": {
"settime": "Set playback time",
"setregion": "Select playback region",
"keyframe/": {
"select": "Select keyframe",
"selectadd": "Select keyframe (Add)",
"selectgroup": "Group select keyframes",
"selectgroupadd": "Group select keyframes (Add)",
"deselect": "Deselect keyframes",
"deselectgroup": "Group deselect keyframes"
},
"timeline/": {
"select": "Select timeline",
"selectadd": "Select timeline (Add)",
"selectgroup": "Group select timelines",
"selectgroupadd": "Group select timelines (Add)",
"deselect": "Deselect timelines",
"deselectgroup": "Group deselect timelines"
}
},
"world/": {
"createselection": "Create selection",
"finishselection": "Finish selection",
"clearselection": "Clear selection",
"ignoreselection": "Ignore selection"
}
},
"startup/": {
"trial": "TRIAL",
"version": "v %1",
"newproject": "New project",
"browse": "Browse...",
"recentprojects": "Recent projects",
"loadingassets": "Loading assets",
"splashauthor": "Art by",
"sortby": "Sort by"
},
"welcome/": {
"caption": "Welcome to Mine-imator!",
"description": "You're in \"Simple mode\" and certain features will be hidden to help you get started learning Mine-imator. Advanced features can be unlocked by upgrading Mine-imator at a later time.",
"continue": "Continue"
},
"about/": {
"caption": "About",
"version": "Version %1",
"releasedate": ", released %1",
"minecraftpre": "Based on the game ",
"minecraft": "Minecraft",
"moddevelopment": "MOD DEVELOPMENT",
"mineimatorcreator": "MINE-IMATOR CREATOR",
"uibranding": "UI & BRANDING",
"betatesting": "BETA TESTING",
"specialthanks": "SPECIAL THANKS",
"site": "Visit Mine-imator's website",
"forums": "Visit the Mine-imator forums",
"twitter": "Visit Mine-imator's X (Twitter)",
"discord": "Join Mine-imator's Discord server",
"upgrade": "Upgrade",
"donate": "Donate"
},
"recent/": {
"lastopened": "Last opened",
"lastopened/": {
"recently": "Last opened recently",
"minutes": "Last opened %1 minutes ago",
"hours": "Last opened %1 hours ago",
"yesterday": "Last opened yesterday",
"days": "Last opened %1 days ago",
"lastweek": "Last opened last week",
"date": "Last opened %1.%2.%3",
"never": "Never opened",
"future": "Last opened in the future"
},
"none": "The projects you've opened recently will appear here!",
"searchnone": "No projects were found by that name.",
"searchcaption": "Search...",
"sortdatenewest": "Date (newest)",
"sortdateoldest": "Date (oldest)",
"sortnameaz": "Name (A-Z)",
"sortnameza": "Name (Z-A)",
"name": "Name",
"projects": "Recent projects"
},
"alert/": {
"newassets": "Minecraft %1 assets are available! Restart to download them.",
"projectcreated": "Project created!",
"projectcreatedview": "View folder",
"projectsaved": "Project saved successfully!",
"exportmovie": "Movie exporting finished!",
"exportmovieview": "View",
"exportmoviefolder": "Open folder",
"exportimage": "Render saved successfully!",
"exportimageview": "View",
"exportimagefolder": "Open folder",
"upgraded": "Level up! You are now using the Full version.",
"reloadobjects": "Reload affected objects to see setting changes.",
"restartprogram": "Restart Mine-imator to apply setting changes.",
"download": "Download",
"view": "View",
"rendersaved": "Render settings saved successfully!",
"close": "Close"
},
"error/": {
"loadassets": "The Minecraft assets could not be loaded. Try re-installing Mine-imator. See the log for details.",
"loadassetscaption": "Load assets error",
"newprojectaccess": "The project could not be saved in this location. Try another folder by clicking \"Change\".",
"newprojectaccesscaption": "New project error",
"filecorrupted": "The file has been corrupted or was created in a deprecated version of Mine-imator. See the log for more details. Try loading a backup file if one is available (change the filter in the file browser).",
"filecorruptedcaption": "Corrupted file error",
"openprojectzip": "No Mine-imator project could be found in this archive.",
"openprojectzipcaption": "Open project error",
"openprojectnewer": "This project was made using a newer version of Mine-imator. Update the program to load it.",
"openprojectnewercaption": "Open project error",
"openprojectexists": "The selected project can't be found.",
"openprojectexistscaption": "Open project error",
"openparticleszip": "No particle file could be found in this archive.",
"openparticleszipcaption": "Import particles error",
"openparticlesnewer": "These particles were made using a newer version of Mine-imator. Update the program to import them.",
"openparticlesnewercaption": "Import particles error",
"openassetzip": "The archive could not be loaded because it didn't contain any valid files.",
"openassetzipcaption": "Import asset error",
"openassetnewer": "This file was made using a newer version of Mine-imator. Update the program to import it.",
"openassetnewercaption": "Import asset error",
"openkeyframes": "No timeline selected to put the keyframes in! Select a timeline and try again.",
"openkeyframescaption": "Import asset error",
"loadmodel": "Could not load the model. See the log for details.",
"loadmodelcaption": "Load model error",
"loadschematic": "Could not read the schematic file. See the log for details.",
"loadschematiccaption": "Import schematic error",
"loadworld": "Could not import from world, it might be deleted or moved to another location.",
"loadworldcaption": "Import from world error",
"loadstructure": "Could not read the structure file. See the log for details.",
"loadstructurecaption": "Import structure error",
"unzippack": "Could not unzip the pack.",
"unzippackcaption": "Import pack error",
"loadaudio": "An error occurred when importing the audio file.",
"loadaudiocaption": "Import audio error",
"exportmovie": "An error occurred when exporting the movie. Check your render settings and make sure the target file isn't opened in another program. See the log for details.",
"exportmoviecaption": "Movie export error",
"loadmap": "An error occurred when importing the Minecraft map.",
"loadmapcaption": "Import Minecraft map error",
"upgrade": "Invalid key!",
"upgradecaption": "Upgrade error",
"downloadskinuser": "The user \"%1\" does not exist.",
"downloadskininternet": "Could not download skin, check your internet connection."
},
"question/": {
"confirmexit": "Save the changes made in %1 before quitting?",
"confirmnew": "Save the changes made in %1 before creating a new project?",
"confirmopen": "Save the changes made in %1 before opening another project?",
"save": "Save",
"dontsave": "Don't save",
"cancel": "Cancel",
"replace": "A resource with the name '%1' has already been added into the project. Do you want to replace it with the selected file?",
"buffersizewarning": "WARNING: This setting may or may not crash the program when rendering. Only proceed if you think your graphics card and RAM can handle it.\nContinue?",
"qualitywarning": "WARNING: This setting may or may not slow down Mine-imator to an unusable state. Only proceed if you think your graphics card can handle it.\nContinue?",
"stoprender": "Are you sure you want to stop rendering?",
"assetsnewer": "These assets require a newer version of Mine-imator to work. Go to the download page for Mine-imator?",
"unlimitedvalues": "WARNING: Values will be able to be set outside of their normal limits, which could crash the program, cause project corruption or other undefined behaviour depending on the value being changed.\nContinue?",
"restorecontrols": "Are you sure you want to restore all controls?",
"setasdefault": "Are you sure you want to set these settings as the default? This cannot be undone.",
"resetrender": "Are you sure you want to reset all render settings?"
},
"filedialog/": {
"open/": {
"image": "Images",
"imagecaption": "Open image or Minecraft map",
"imageorpack": "Images or Minecraft resource packs",
"imageorpackcaption": "Open image or resource pack",
"pack": "Minecraft resource packs",
"packcaption": "Open resource pack",
"sound": "Sounds",
"soundcaption": "Open sound",
"project": "Mine-imator projects",
"backup": "Mine-imator project backups",
"projectcaption": "Open project",
"scenery": "Minecraft scenery",
"scenerycaption": "Open Minecraft scenery",
"particles": "Particle files",
"particlecaption": "Open particle creator",
"font": "Font files",
"fontcaption": "Open font",
"asset": "Valid files",
"assetcaption": "Import asset",
"language": "Language files",
"languagecaption": "Load language",
"color": "Color files",
"colorcaption": "Import colors",
"model": "Model files",
"modelcaption": "Open model",
"render": "Mine-imator render settings",
"rendercaption": "Import render settings"
},
"save/": {
"moviemp4": "MP4 files",
"moviemov": "MOV files",
"moviewmv": "WMV files",
"moviepng": "PNG images",
"moviecaption": "Save movie",
"image": "Images",
"imagecaption": "Save image",
"particles": "Particle files",
"particlescaption": "Save particle creator",
"object": "Object files",
"objectcaption": "Save selected objects",
"keyframes": "Mine-imator keyframes",
"keyframescaption": "Save selected keyframes",
"color": "Color files",
"colorcaption": "Save colors",
"resourcecaption": "Save resource",
"projectcaption": "Save project folder",
"render": "Mine-imator render settings",
"rendercaption": "Save render settings"
}
},
"newassets/": {
"title": "Assets from Minecraft %1 are now available!",
"subtitle": "Download them now and start using them in your own projects!",
"changelog": "CHANGELOG",
"later": "Remind me later",
"download": "Download",
"downloading": "Downloading..."
},
"newproject/": {
"caption": "New project",
"name": "Project name",
"author": "Project author",
"description": "Project description",
"location": "Project location",
"namedefault": "New Project",
"create": "Create project"
},
"toolbar/": {
"file": "File",
"file/": {
"new": "New project...",
"open": "Open project",
"recent": "Open recent...",
"lastbackup": "Recover last backup",
"save": "Save project",
"saveas": "Save project as...",
"import": "Import asset...",
"worldimport": "Import from world..."
},
"edit": "Edit",
"edit/": {
"undo": "Undo",
"redo": "Redo",
"selectall": "Select all",
"duplicate": "Duplicate timeline",
"delete": "Delete timeline",
"hide": "Hide timeline",
"showhidden": "Show hidden",
"preferences": "Preferences..."
},
"render": "Render",
"render/": {
"image": "Render image...",
"animation": "Render animation..."
},
"view": "View",
"view/": {
"reset": "Reset work camera",
"secondaryview": "Show secondary view",
"shortcutsbar": "Show shortcuts bar",
"home": "Home screen",
"timeline/": {
"compact": "Compact timeline view",
"showmarkers": "Show timeline markers",
"playback": "Playback time",
"playback/": {
"timeseconds": "Show time in seconds",
"timeframes": "Show time in frames"
}
}
},
"help": "Help",
"help/": {
"about": "About Mine-imator...",
"tutorials": "Tutorials...",
"report": "Report a bug...",
"forums": "Visit the forums...",
"upgrade": "Upgrade"
},
"backup": "Backing up...",
"simplemode": "Simple mode enabled"
},
"type/": {
"char": "Character",
"scenery": "Scenery",
"item": "Item",
"block": "Block",
"spblock": "Special block",
"bodypart": "Character part",
"particles": "Particle spawner",
"text": "Text",
"cube": "Cube",
"sphere": "Sphere",
"cone": "Cone",
"cylinder": "Cylinder",
"surface": "Surface",
"pointlight": "Point light",
"spotlight": "Spot light",
"camera": "Camera",
"background": "Environment",
"audio": "Audio track",
"model": "Custom model",
"folder": "Folder",
"pack": "Resource pack",
"skin": "Skin",
"downloadskin": "Downloaded skin",
"itemsheet": "Item sheet",
"blocksheet": "Block sheet",
"particlesheet": "Particle sheet",
"texture": "Texture",
"font": "Font",
"sound": "Sound",
"shape": "Shape",
"lightsource": "Light source",
"fromworld": "Imported scenery",
"path": "Path",
"pathpoint": "Path point"
},
"workbenchcaption": "Workbench",
"bench/": {
"model": "Model",
"skin": "Skin",
"skinmaterial": "Material map",
"skinnormal": "Normal map",
"scenery": "Scenery",
"blocktex": "Texture",
"blocktexmaterial": "Material map",
"blocktexnormal": "Normal map",
"itemtex": "Image",
"itemtexmaterial": "Material map",
"itemtexnormal": "Normal map",
"item3d": "3D",
"itemfacecamera": "Face camera",
"itembounce": "Bounce",
"itemspin": "Spin",
"block": "Block",
"spblockmodel": "Block",
"spblocktex": "Texture",
"spblocktexmaterial": "Material map",
"spblocktexnormal": "Normal map",
"bodypart": "Body part",
"bodypartskin": "Skin",
"bodypartskinmaterial": "Material map",
"bodypartskinnormal": "Normal map",
"particlespreset": "Preset",
"textfont": "Font",
"text3d": "3D",
"textfacecamera": "Face camera",
"shapetype": "Shape",
"shapetex": "Texture",
"shapetexmaterial": "Material map",
"shapetexnormal": "Normal map",
"shapetexmap": "Mapped texture",
"shapetexmaptip": "Whether the faces of the shape should use parts of a texture image.",
"shapefacecamera": "Face camera",
"modeltex": "Texture",
"modeltexmaterial": "Material map",
"modeltexnormal": "Normal map",
"modelcolor": "Color",
"patterneditor": "Open pattern editor",
"armoreditor": "Open armor editor",
"lighttype": "Light type",
"create": "Create",
"createedit": "Create & edit",
"pointlighttip": "Point lights shine in all directions, like a lightbulb.",
"spotlighttip": "Spot lights emit a cone of light, like a flashlight.",
"cameratip": "A virtual camera the animation is seen through, with optional effects.",
"backgroundtip": "A timeline that can change the environment during the animation.",
"audiotip": "An audio track that can play sound files such as .mp3 and .wav in the animation.",
"pathtip": "A 3D path that can be used for moving objects and particles along. Paths are built by parenting path points."
},
"downloadskin/": {
"caption": "Download skin",
"username": "Username",
"downloading": "Downloading...",
"name": "Skin of %1",
"done": "Done"
},
"saveas/": {
"caption": "Save project as",
"save": "Save",
"copy": "%1 copy"
},
"export/": {
"samples": "Sample %1 of %2",
"frame": "Frame %1 of %2",
"timeleft": "%1 remaining",
"timeleft/": {
"and": "and",
"hour": "%1 hour",
"hours": "%1 hours",
"minute": "%1 minute",
"minutes": "%1 minutes",
"second": "%1 second",
"seconds": "%1 seconds"
},
"stop": "Hold Escape to cancel",
"loading": "%1% done",
"movie/": {
"title": "Exporting your movie...",
"caption": "Export movie",
"videosize": "Video size",
"videosizecustomwidth": "W",
"videosizecustomheight": "H",
"videosizecustomkeepaspectratio": "Keep aspect ratio",
"videosizecustomerror": "MP4 and MOV formats don't support odd-numbered video sizes.",
"format": "Format",
"format/": {
"mp4": "MP4",
"mov": "MOV",
"wmv": "WMV",
"png": "PNG sequence"
},
"videoquality": "Video quality",
"videoquality/": {
"verylow": "Very low",
"low": "Low",
"medium": "Medium",
"high": "High",
"best": "Best",
"custom": "Custom"
},
"bitrate": "Bit rate",
"framerate": "Framerate",
"framerate/": {
"custom": "Custom"
},
"framespersecond": "Frames per second",
"includeaudio": "Include audio",
"removebackground": "Remove background",
"blendmodewarning": "Custom blend modes on objects may not render correctly.",
"includehidden": "Include hidden objects",
"highquality": "High quality rendering",
"watermark": "Show watermark",
"save": "Save"
},
"image/": {
"title": "Exporting your image...",
"caption": "Export image",
"imagesize": "Image size",
"imagesizecustomwidth": "W",
"imagesizecustomheight": "H",
"imagesizecustomkeepaspectratio": "Keep aspect ratio",
"includehidden": "Include hidden objects",
"removebackground": "Remove background",
"blendmodewarning": "Custom blend modes on objects may not render correctly.",
"highquality": "High quality rendering",
"watermark": "Show watermark",
"save": "Save",
"cancel": "Cancel"
}
},
"upgrade/": {
"caption": "Upgrade",
"info": "You are currently using the trial version of Mine-imator. To unlock more advanced features, get an upgrade key from the link below, and enter it here.",
"page0": "Watermark can be customized.",
"page1": "Unlock \"Advanced mode\" and get access to all available features.",
"page2": "Customize your own render settings in projects.",
"continue": "Upgrade"
},
"advanced/": {
"caption": "Advanced mode",
"info": "You're currently in \"Simple mode\". Enabling \"Advanced mode\" unlocks more features, however it's not recommended for new users still learning the basics.",
"enable": "Enable",
"notnow": "Not now"
},
"modelbench/": {
"caption": "Try out Modelbench Community Build!",
"info": "Create custom models for your projects with Modelbench CB, the free and easy to use modeling tool for Mine-imator CB!",
"download": "Get Modelbench CB",
"notnow": "Not now",
"dontshow": "Don't show again"
},
"patterneditor/": {
"caption": "Pattern editor",
"addlayer": "Add layer",
"layer": "%1 %2",
"base": "%1 Base",
"layers": "LAYERS",
"colors": "COLORS",
"patterns": "PATTERNS",
"done": "Done",
"cancel": "Cancel",
"patterns/": {
"base": "Base",
"border": "Bordure",
"bricks": "Field Masoned",
"circle": "Roundel",
"creeper": "Creeper Charge",
"cross": "Saltire",
"curly_border": "Bordure Indented",
"diagonal_left": "Per Bend Sinister",
"diagonal_right": "Per Bend",
"diagonal_up_left": "Per Bend Inverted",
"diagonal_up_right": "Per Bend Sinister Inverted",
"flow": "Flow",
"flower": "Flower Charge",
"gradient": "Gradient",
"gradient_up": "Base Gradient",
"guster": "Guster",
"half_horizontal": "Per Fess",
"half_horizontal_bottom": "Per Fess Inverted",
"half_vertical": "Per Pale",
"half_vertical_right": "Per Pale Inverted",
"mojang": "Thing",
"rhombus": "Lozenge",
"skull": "Skull Charge",
"small_stripes": "Paly",
"square_bottom_left": "Base Dexter Canton",
"square_bottom_right": "Base Sinister Canton",
"square_top_left": "Chief Dexter Canton",
"square_top_right": "Chief Sinister Canton",
"straight_cross": "Cross",
"stripe_bottom": "Base",
"stripe_center": "Pale",
"stripe_downleft": "Bend Sinister",
"stripe_downright": "Bend",
"stripe_left": "Pale Dexter",
"stripe_middle": "Fess",
"stripe_right": "Pale Sinister",
"stripe_top": "Chief",
"triangle_bottom": "Chevron",
"triangle_top": "Inverted Chevron",
"triangles_bottom": "Base Indented",
"triangles_top": "Chief Indented",
"globe": "Globe",
"piglin": "Snout"
}
},
"armoreditor/": {
"caption": "Armor editor",
"helmet": "Helmet",
"chestplate": "Chestplate",
"leggings": "Leggings",
"boots": "Boots",
"patternhelmet": "Pattern",
"patternchestplate": "Pattern",
"patternleggings": "Pattern",
"patternboots": "Pattern",
"pattern/": {
"none": "None",
"bolt": "Bolt",
"coast": "Coast",
"dune": "Dune",
"eye": "Eye",
"flow": "Flow",
"host": "Host",
"raiser": "Raiser",
"rib": "Rib",
"sentry": "Sentry",
"shaper": "Shaper",
"silence": "Silence",
"snout": "Snout",
"spire": "Spire",
"tide": "Tide",
"vex": "Vex",
"ward": "Ward",
"wayfinder": "Wayfinder",
"wild": "Wild"
},
"materialhelmet": "Material",
"materialchestplate": "Material",
"materialleggings": "Material",
"materialboots": "Material",
"material/": {
"none": "None",
"amethyst": "Amethyst",
"copper": "Copper",
"diamond": "Diamond",
"emerald": "Emerald",
"gold": "Gold",
"iron": "Iron",
"lapis": "Lapis",
"netherite": "Netherite",
"quartz": "Quartz",
"redstone": "Redstone"
}
},
"loading/": {
"caption": "Loading...",
"resources": "Importing resources...",
"percent": "(%1% Done)"
},
"view/": {
"workbenchtip": "Open workbench",
"tool/": {
"selecttip": "Select tool",
"movetip": "Move tool",
"rotatetip": "Rotate tool",
"scaletip": "Scale tool",
"bendtip": "Bend tool",
"transformtip": "Transform tool"
},
"mode/": {
"flat": "Flat mode",
"shaded": "Shaded mode",
"render": "Render mode",
"pass": "Render pass",
"pass/": {
"combined": "Combined",
"depth": "Depth (24bit)",
"normal": "Normal",
"material": "Material",
"diffuse": "Diffuse",
"specular": "Specular",
"ao": "Ambient occlusion",
"shadows": "Shadows",
"indirect": "Indirect",
"indirectshadows": "Indirect & shadows",
"reflections": "Reflections"
}
},
"camera/": {
"work": "Work camera",
"main": "Main camera",
"active": "Active camera (%1)",
"selected": "Selected camera (%1)"
},
"grid/": {
"rows": "Rows",
"columns": "Columns"
},
"overlay/": {
"controls": "View controls",
"shapes": "Timeline shapes",
"guides": "Timeline guides",
"guidestip": "Enable visual representations of camera frustums, spotlight cones, etc. upon selection."
},
"snap/": {
"move": "Move",
"rotate": "Rotate",
"scale": "Scale",
"absolute": "Absolute snapping",
"absolutetip": "Snap values to a grid, instead of relative to the current value.",
"enable": "Enable snapping",
"disable": "Disable snapping"
},
"close": "Close view",
"popout": "Open in new window",
"popin": "Close view window",
"secondenable": "Enable secondary viewport",
"seconddisable": "Disable secondary viewport",
"particlesenable": "Enable particles",
"particlesdisable": "Disable particles",
"effectsenable": "Enable camera effects",
"effectsdisable": "Disable camera effects",
"gridenable": "Enable grid overlay",
"griddisable": "Disable grid overlay",
"aspectratioenable": "Enable aspect ratio",
"aspectratiodisable": "Disable aspect ratio",
"overlaysenable": "Enable overlays",
"overlaysdisable": "Disable overlays",
"renderpass": "Render pass: %1",
"renderfps": "%1 FPS (%2/%3 samples)",
"rendertime": "Rendered in %1 seconds",
"workcamera": "Work camera",
"activecamera": "Active camera (%1)",
"selectedcamera": "Selected camera (%1)"
},
"tab/": {
"projectproperties": "Project properties",
"timeline": "Timeline",
"charmodel": "Character model for %1",
"block": "Block for %1",
"item": "Item for %1",
"bodypart": "Body part for %1",
"particles": "Particle editor for %1",
"ground": "Ground",
"timelineeditor": "%1 properties",
"frameeditor": "%1 (Frame %2)",
"settings": "Preferences"
},
"key/": {
"left": "Left",
"right": "Right",
"up": "Up",
"down": "Down",
"enter": "Enter",
"escape": "Escape",
"space": "Space",
"shift": "Shift",
"leftshift": "Left shift",
"rightshift": "Right shift",
"alt": "Alt",
"leftalt": "Left alt",
"rightalt": "Right alt",
"control": "Ctrl",
"leftcontrol": "Left control",
"rightcontrol": "Right control",
"backspace": "Backspace",
"tab": "Tab",
"home": "Home",
"end": "End",
"delete": "Delete",
"insert": "Insert",
"pageup": "Page up",
"pagedown": "Page down",
"pause": "Pause",
"printscreen": "Printscreen"
},
"column/": {
"lgname": "Name",
"libname": "Name",
"libtype": "Type",
"libinstances": "Instances",
"charname": "Name",
"blockname": "Name",
"spblockname": "Name",
"bodypartmodelname": "Name",
"particleeditortypename": "Name",
"particleeditortypekind": "Kind",
"particleeditortyperate": "Spawn rate",
"resname": "Name",
"restype": "Type",
"rescount": "Use count",
"particlepresetname": "Name",
"blockfilter": "Name"
},
"list/": {
"search": "Search...",
"browse": "Browse...",
"none": "None",
"default": "Default (%1)"
},
"swatch/": {
"dye": "DYES",
"dye/": {
"white": "White",
"orange": "Orange",
"magenta": "Magenta",
"light_blue": "Light Blue",
"yellow": "Yellow",
"lime": "Lime",
"pink": "Pink",
"gray": "Gray",
"light_gray": "Light Gray",
"cyan": "Cyan",
"purple": "Purple",
"blue": "Blue",
"brown": "Brown",
"green": "Green",
"red": "Red",
"black": "Black"
},
"text": "TEXT",
"text/": {
"black": "Black",
"dark_blue": "Dark Blue",
"dark_green": "Dark Green",
"dark_aqua": "Dark Aqua",
"dark_red": "Dark Red",
"dark_purple": "Dark Purple",
"gold": "Gold",
"gray": "Gray",
"dark_gray": "Dark Gray",
"blue": "Blue",
"green": "Green",
"aqua": "Aqua",
"red": "Red",
"light_purple": "Light Purple",
"yellow": "Yellow",
"white": "White",