-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
fdmprinter.def.json.pot
6002 lines (4500 loc) · 195 KB
/
fdmprinter.def.json.pot
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
#
msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2024-10-09 14:27+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgctxt "machine_settings label"
msgid "Machine"
msgstr ""
msgctxt "machine_settings description"
msgid "Machine specific settings"
msgstr ""
msgctxt "build_volume_fan_nr label"
msgid "Build volume fan number"
msgstr ""
msgctxt "build_volume_fan_nr description"
msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan"
msgstr ""
msgctxt "machine_name label"
msgid "Machine Type"
msgstr ""
msgctxt "machine_name description"
msgid "The name of your 3D printer model."
msgstr ""
msgctxt "machine_show_variants label"
msgid "Show Machine Variants"
msgstr ""
msgctxt "machine_show_variants description"
msgid "Whether to show the different variants of this machine, which are described in separate json files."
msgstr ""
msgctxt "machine_start_gcode label"
msgid "Start G-code"
msgstr ""
msgctxt "machine_start_gcode description"
msgid "G-code commands to be executed at the very start - separated by \n."
msgstr ""
msgctxt "machine_end_gcode label"
msgid "End G-code"
msgstr ""
msgctxt "machine_end_gcode description"
msgid "G-code commands to be executed at the very end - separated by \n."
msgstr ""
msgctxt "material_guid label"
msgid "Material GUID"
msgstr ""
msgctxt "material_guid description"
msgid "GUID of the material. This is set automatically."
msgstr ""
msgctxt "material_type label"
msgid "Material Type"
msgstr ""
msgctxt "material_type description"
msgid "The type of material used."
msgstr ""
msgctxt "material_brand label"
msgid "Material Brand"
msgstr ""
msgctxt "material_brand description"
msgid "The brand of material used."
msgstr ""
msgctxt "material_diameter label"
msgid "Diameter"
msgstr ""
msgctxt "material_diameter description"
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
msgstr ""
msgctxt "material_bed_temp_wait label"
msgid "Wait for Build Plate Heatup"
msgstr ""
msgctxt "material_bed_temp_wait description"
msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
msgstr ""
msgctxt "material_print_temp_wait label"
msgid "Wait for Nozzle Heatup"
msgstr ""
msgctxt "material_print_temp_wait description"
msgid "Whether to wait until the nozzle temperature is reached at the start."
msgstr ""
msgctxt "material_print_temp_prepend label"
msgid "Include Material Temperatures"
msgstr ""
msgctxt "material_print_temp_prepend description"
msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
msgstr ""
msgctxt "material_bed_temp_prepend label"
msgid "Include Build Plate Temperature"
msgstr ""
msgctxt "material_bed_temp_prepend description"
msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
msgstr ""
msgctxt "machine_width label"
msgid "Machine Width"
msgstr ""
msgctxt "machine_width description"
msgid "The width (X-direction) of the printable area."
msgstr ""
msgctxt "machine_depth label"
msgid "Machine Depth"
msgstr ""
msgctxt "machine_depth description"
msgid "The depth (Y-direction) of the printable area."
msgstr ""
msgctxt "machine_height label"
msgid "Machine Height"
msgstr ""
msgctxt "machine_height description"
msgid "The height (Z-direction) of the printable area."
msgstr ""
msgctxt "machine_shape label"
msgid "Build Plate Shape"
msgstr ""
msgctxt "machine_shape description"
msgid "The shape of the build plate without taking unprintable areas into account."
msgstr ""
msgctxt "machine_shape option rectangular"
msgid "Rectangular"
msgstr ""
msgctxt "machine_shape option elliptic"
msgid "Elliptic"
msgstr ""
msgctxt "machine_buildplate_type label"
msgid "Build Plate Material"
msgstr ""
msgctxt "machine_buildplate_type description"
msgid "The material of the build plate installed on the printer."
msgstr ""
msgctxt "machine_buildplate_type option glass"
msgid "Glass"
msgstr ""
msgctxt "machine_buildplate_type option aluminum"
msgid "Aluminum"
msgstr ""
msgctxt "machine_heated_bed label"
msgid "Has Heated Build Plate"
msgstr ""
msgctxt "machine_heated_bed description"
msgid "Whether the machine has a heated build plate present."
msgstr ""
msgctxt "machine_heated_build_volume label"
msgid "Has Build Volume Temperature Stabilization"
msgstr ""
msgctxt "machine_heated_build_volume description"
msgid "Whether the machine is able to stabilize the build volume temperature."
msgstr ""
msgctxt "machine_always_write_active_tool label"
msgid "Always Write Active Tool"
msgstr ""
msgctxt "machine_always_write_active_tool description"
msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
msgstr ""
msgctxt "machine_center_is_zero label"
msgid "Is Center Origin"
msgstr ""
msgctxt "machine_center_is_zero description"
msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
msgstr ""
msgctxt "machine_extruder_count label"
msgid "Number of Extruders"
msgstr ""
msgctxt "machine_extruder_count description"
msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
msgstr ""
msgctxt "extruders_enabled_count label"
msgid "Number of Extruders That Are Enabled"
msgstr ""
msgctxt "extruders_enabled_count description"
msgid "Number of extruder trains that are enabled; automatically set in software"
msgstr ""
msgctxt "machine_nozzle_tip_outer_diameter label"
msgid "Outer Nozzle Diameter"
msgstr ""
msgctxt "machine_nozzle_tip_outer_diameter description"
msgid "The outer diameter of the tip of the nozzle."
msgstr ""
msgctxt "machine_nozzle_expansion_angle label"
msgid "Nozzle Angle"
msgstr ""
msgctxt "machine_nozzle_expansion_angle description"
msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
msgstr ""
msgctxt "machine_heat_zone_length label"
msgid "Heat Zone Length"
msgstr ""
msgctxt "machine_heat_zone_length description"
msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
msgstr ""
msgctxt "machine_nozzle_temp_enabled label"
msgid "Enable Nozzle Temperature Control"
msgstr ""
msgctxt "machine_nozzle_temp_enabled description"
msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
msgstr ""
msgctxt "machine_nozzle_heat_up_speed label"
msgid "Heat Up Speed"
msgstr ""
msgctxt "machine_nozzle_heat_up_speed description"
msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
msgstr ""
msgctxt "machine_nozzle_cool_down_speed label"
msgid "Cool Down Speed"
msgstr ""
msgctxt "machine_nozzle_cool_down_speed description"
msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
msgstr ""
msgctxt "machine_min_cool_heat_time_window label"
msgid "Minimal Time Standby Temperature"
msgstr ""
msgctxt "machine_min_cool_heat_time_window description"
msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
msgstr ""
msgctxt "machine_gcode_flavor label"
msgid "G-code Flavor"
msgstr ""
msgctxt "machine_gcode_flavor description"
msgid "The type of g-code to be generated."
msgstr ""
msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
msgid "Marlin"
msgstr ""
msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
msgid "Marlin (Volumetric)"
msgstr ""
msgctxt "machine_gcode_flavor option RepRap (RepRap)"
msgid "RepRap"
msgstr ""
msgctxt "machine_gcode_flavor option UltiGCode"
msgid "Ultimaker 2"
msgstr ""
msgctxt "machine_gcode_flavor option Griffin"
msgid "Griffin"
msgstr ""
msgctxt "machine_gcode_flavor option Makerbot"
msgid "Makerbot"
msgstr ""
msgctxt "machine_gcode_flavor option BFB"
msgid "Bits from Bytes"
msgstr ""
msgctxt "machine_gcode_flavor option MACH3"
msgid "Mach3"
msgstr ""
msgctxt "machine_gcode_flavor option Repetier"
msgid "Repetier"
msgstr ""
msgctxt "machine_firmware_retract label"
msgid "Firmware Retraction"
msgstr ""
msgctxt "machine_firmware_retract description"
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
msgstr ""
msgctxt "machine_extruders_share_heater label"
msgid "Extruders Share Heater"
msgstr ""
msgctxt "machine_extruders_share_heater description"
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
msgstr ""
msgctxt "machine_extruders_share_nozzle label"
msgid "Extruders Share Nozzle"
msgstr ""
msgctxt "machine_extruders_share_nozzle description"
msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
msgstr ""
msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
msgid "Shared Nozzle Initial Retraction"
msgstr ""
msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
msgstr ""
msgctxt "machine_disallowed_areas label"
msgid "Disallowed Areas"
msgstr ""
msgctxt "machine_disallowed_areas description"
msgid "A list of polygons with areas the print head is not allowed to enter."
msgstr ""
msgctxt "nozzle_disallowed_areas label"
msgid "Nozzle Disallowed Areas"
msgstr ""
msgctxt "nozzle_disallowed_areas description"
msgid "A list of polygons with areas the nozzle is not allowed to enter."
msgstr ""
msgctxt "machine_head_with_fans_polygon label"
msgid "Machine Head & Fan Polygon"
msgstr ""
msgctxt "machine_head_with_fans_polygon description"
msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
msgstr ""
msgctxt "gantry_height label"
msgid "Gantry Height"
msgstr ""
msgctxt "gantry_height description"
msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
msgstr ""
msgctxt "machine_nozzle_id label"
msgid "Nozzle ID"
msgstr ""
msgctxt "machine_nozzle_id description"
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
msgstr ""
msgctxt "machine_nozzle_size label"
msgid "Nozzle Diameter"
msgstr ""
msgctxt "machine_nozzle_size description"
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
msgstr ""
msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder"
msgstr ""
msgctxt "machine_use_extruder_offset_to_offset_coords description"
msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
msgstr ""
msgctxt "extruder_prime_pos_z label"
msgid "Extruder Prime Z Position"
msgstr ""
msgctxt "extruder_prime_pos_z description"
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
msgstr ""
msgctxt "extruder_prime_pos_abs label"
msgid "Absolute Extruder Prime Position"
msgstr ""
msgctxt "extruder_prime_pos_abs description"
msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
msgstr ""
msgctxt "machine_max_feedrate_x label"
msgid "Maximum Speed X"
msgstr ""
msgctxt "machine_max_feedrate_x description"
msgid "The maximum speed for the motor of the X-direction."
msgstr ""
msgctxt "machine_max_feedrate_y label"
msgid "Maximum Speed Y"
msgstr ""
msgctxt "machine_max_feedrate_y description"
msgid "The maximum speed for the motor of the Y-direction."
msgstr ""
msgctxt "machine_max_feedrate_z label"
msgid "Maximum Speed Z"
msgstr ""
msgctxt "machine_max_feedrate_z description"
msgid "The maximum speed for the motor of the Z-direction."
msgstr ""
msgctxt "machine_max_feedrate_e label"
msgid "Maximum Speed E"
msgstr ""
msgctxt "machine_max_feedrate_e description"
msgid "The maximum speed of the filament."
msgstr ""
msgctxt "machine_max_acceleration_x label"
msgid "Maximum Acceleration X"
msgstr ""
msgctxt "machine_max_acceleration_x description"
msgid "Maximum acceleration for the motor of the X-direction"
msgstr ""
msgctxt "machine_max_acceleration_y label"
msgid "Maximum Acceleration Y"
msgstr ""
msgctxt "machine_max_acceleration_y description"
msgid "Maximum acceleration for the motor of the Y-direction."
msgstr ""
msgctxt "machine_max_acceleration_z label"
msgid "Maximum Acceleration Z"
msgstr ""
msgctxt "machine_max_acceleration_z description"
msgid "Maximum acceleration for the motor of the Z-direction."
msgstr ""
msgctxt "machine_max_acceleration_e label"
msgid "Maximum Filament Acceleration"
msgstr ""
msgctxt "machine_max_acceleration_e description"
msgid "Maximum acceleration for the motor of the filament."
msgstr ""
msgctxt "machine_acceleration label"
msgid "Default Acceleration"
msgstr ""
msgctxt "machine_acceleration description"
msgid "The default acceleration of print head movement."
msgstr ""
msgctxt "machine_max_jerk_xy label"
msgid "Default X-Y Jerk"
msgstr ""
msgctxt "machine_max_jerk_xy description"
msgid "Default jerk for movement in the horizontal plane."
msgstr ""
msgctxt "machine_max_jerk_z label"
msgid "Default Z Jerk"
msgstr ""
msgctxt "machine_max_jerk_z description"
msgid "Default jerk for the motor of the Z-direction."
msgstr ""
msgctxt "machine_max_jerk_e label"
msgid "Default Filament Jerk"
msgstr ""
msgctxt "machine_max_jerk_e description"
msgid "Default jerk for the motor of the filament."
msgstr ""
msgctxt "machine_steps_per_mm_x label"
msgid "Steps per Millimeter (X)"
msgstr ""
msgctxt "machine_steps_per_mm_x description"
msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
msgstr ""
msgctxt "machine_steps_per_mm_y label"
msgid "Steps per Millimeter (Y)"
msgstr ""
msgctxt "machine_steps_per_mm_y description"
msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
msgstr ""
msgctxt "machine_steps_per_mm_z label"
msgid "Steps per Millimeter (Z)"
msgstr ""
msgctxt "machine_steps_per_mm_z description"
msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
msgstr ""
msgctxt "machine_steps_per_mm_e label"
msgid "Steps per Millimeter (E)"
msgstr ""
msgctxt "machine_steps_per_mm_e description"
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
msgstr ""
msgctxt "machine_endstop_positive_direction_x label"
msgid "X Endstop in Positive Direction"
msgstr ""
msgctxt "machine_endstop_positive_direction_x description"
msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
msgstr ""
msgctxt "machine_endstop_positive_direction_y label"
msgid "Y Endstop in Positive Direction"
msgstr ""
msgctxt "machine_endstop_positive_direction_y description"
msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
msgstr ""
msgctxt "machine_endstop_positive_direction_z label"
msgid "Z Endstop in Positive Direction"
msgstr ""
msgctxt "machine_endstop_positive_direction_z description"
msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
msgstr ""
msgctxt "machine_minimum_feedrate label"
msgid "Minimum Feedrate"
msgstr ""
msgctxt "machine_minimum_feedrate description"
msgid "The minimal movement speed of the print head."
msgstr ""
msgctxt "machine_feeder_wheel_diameter label"
msgid "Feeder Wheel Diameter"
msgstr ""
msgctxt "machine_feeder_wheel_diameter description"
msgid "The diameter of the wheel that drives the material in the feeder."
msgstr ""
msgctxt "machine_scale_fan_speed_zero_to_one label"
msgid "Scale Fan Speed To 0-1"
msgstr ""
msgctxt "machine_scale_fan_speed_zero_to_one description"
msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
msgctxt "resolution label"
msgid "Quality"
msgstr ""
msgctxt "resolution description"
msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
msgstr ""
msgctxt "layer_height label"
msgid "Layer Height"
msgstr ""
msgctxt "layer_height description"
msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
msgstr ""
msgctxt "layer_height_0 label"
msgid "Initial Layer Height"
msgstr ""
msgctxt "layer_height_0 description"
msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
msgstr ""
msgctxt "line_width label"
msgid "Line Width"
msgstr ""
msgctxt "line_width description"
msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
msgstr ""
msgctxt "wall_line_width label"
msgid "Wall Line Width"
msgstr ""
msgctxt "wall_line_width description"
msgid "Width of a single wall line."
msgstr ""
msgctxt "wall_line_width_0 label"
msgid "Outer Wall Line Width"
msgstr ""
msgctxt "wall_line_width_0 description"
msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
msgstr ""
msgctxt "wall_line_width_x label"
msgid "Inner Wall(s) Line Width"
msgstr ""
msgctxt "wall_line_width_x description"
msgid "Width of a single wall line for all wall lines except the outermost one."
msgstr ""
msgctxt "skin_line_width label"
msgid "Top/Bottom Line Width"
msgstr ""
msgctxt "skin_line_width description"
msgid "Width of a single top/bottom line."
msgstr ""
msgctxt "infill_line_width label"
msgid "Infill Line Width"
msgstr ""
msgctxt "infill_line_width description"
msgid "Width of a single infill line."
msgstr ""
msgctxt "skirt_brim_line_width label"
msgid "Skirt/Brim Line Width"
msgstr ""
msgctxt "skirt_brim_line_width description"
msgid "Width of a single skirt or brim line."
msgstr ""
msgctxt "support_line_width label"
msgid "Support Line Width"
msgstr ""
msgctxt "support_line_width description"
msgid "Width of a single support structure line."
msgstr ""
msgctxt "support_interface_line_width label"
msgid "Support Interface Line Width"
msgstr ""
msgctxt "support_interface_line_width description"
msgid "Width of a single line of support roof or floor."
msgstr ""
msgctxt "support_roof_line_width label"
msgid "Support Roof Line Width"
msgstr ""
msgctxt "support_roof_line_width description"
msgid "Width of a single support roof line."
msgstr ""
msgctxt "support_bottom_line_width label"
msgid "Support Floor Line Width"
msgstr ""
msgctxt "support_bottom_line_width description"
msgid "Width of a single support floor line."
msgstr ""
msgctxt "prime_tower_line_width label"
msgid "Prime Tower Line Width"
msgstr ""
msgctxt "prime_tower_line_width description"
msgid "Width of a single prime tower line."
msgstr ""
msgctxt "initial_layer_line_width_factor label"
msgid "Initial Layer Line Width"
msgstr ""
msgctxt "initial_layer_line_width_factor description"
msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
msgstr ""
msgctxt "shell label"
msgid "Walls"
msgstr ""
msgctxt "shell description"
msgid "Shell"
msgstr ""
msgctxt "wall_extruder_nr label"
msgid "Wall Extruder"
msgstr ""
msgctxt "wall_extruder_nr description"
msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
msgstr ""
msgctxt "wall_0_extruder_nr label"
msgid "Outer Wall Extruder"
msgstr ""
msgctxt "wall_0_extruder_nr description"
msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
msgstr ""
msgctxt "wall_x_extruder_nr label"
msgid "Inner Wall Extruder"
msgstr ""
msgctxt "wall_x_extruder_nr description"
msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
msgstr ""
msgctxt "wall_thickness label"
msgid "Wall Thickness"
msgstr ""
msgctxt "wall_thickness description"
msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
msgstr ""
msgctxt "wall_line_count label"
msgid "Wall Line Count"
msgstr ""
msgctxt "wall_line_count description"
msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
msgstr ""
msgctxt "wall_transition_length label"
msgid "Wall Transition Length"
msgstr ""
msgctxt "wall_transition_length description"
msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
msgstr ""
msgctxt "wall_distribution_count label"
msgid "Wall Distribution Count"
msgstr ""
msgctxt "wall_distribution_count description"
msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
msgstr ""
msgctxt "wall_transition_angle label"
msgid "Wall Transitioning Threshold Angle"
msgstr ""
msgctxt "wall_transition_angle description"
msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
msgstr ""
msgctxt "wall_transition_filter_distance label"
msgid "Wall Transitioning Filter Distance"
msgstr ""
msgctxt "wall_transition_filter_distance description"
msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
msgstr ""
msgctxt "wall_transition_filter_deviation label"
msgid "Wall Transitioning Filter Margin"
msgstr ""
msgctxt "wall_transition_filter_deviation description"
msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
msgstr ""
msgctxt "wall_0_wipe_dist label"
msgid "Outer Wall Wipe Distance"
msgstr ""
msgctxt "wall_0_wipe_dist description"
msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
msgstr ""
msgctxt "wall_0_inset label"
msgid "Outer Wall Inset"
msgstr ""
msgctxt "wall_0_inset description"
msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
msgstr ""
msgctxt "optimize_wall_printing_order label"
msgid "Optimize Wall Printing Order"
msgstr ""
msgctxt "optimize_wall_printing_order description"
msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
msgstr ""
msgctxt "inset_direction label"
msgid "Wall Ordering"
msgstr ""
msgctxt "inset_direction description"
msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
msgstr ""
msgctxt "inset_direction option inside_out"
msgid "Inside To Outside"
msgstr ""
msgctxt "inset_direction option outside_in"
msgid "Outside To Inside"
msgstr ""
msgctxt "alternate_extra_perimeter label"
msgid "Alternate Extra Wall"
msgstr ""
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
msgstr ""
msgctxt "min_wall_line_width label"
msgid "Minimum Wall Line Width"
msgstr ""
msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr ""
msgctxt "min_even_wall_line_width label"
msgid "Minimum Even Wall Line Width"
msgstr ""
msgctxt "min_even_wall_line_width description"
msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
msgstr ""
msgctxt "min_odd_wall_line_width label"
msgid "Minimum Odd Wall Line Width"
msgstr ""
msgctxt "min_odd_wall_line_width description"
msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
msgstr ""
msgctxt "fill_outline_gaps label"
msgid "Print Thin Walls"
msgstr ""
msgctxt "fill_outline_gaps description"
msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
msgstr ""
msgctxt "min_feature_size label"
msgid "Minimum Feature Size"
msgstr ""
msgctxt "min_feature_size description"
msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
msgstr ""
msgctxt "min_bead_width label"
msgid "Minimum Thin Wall Line Width"
msgstr ""
msgctxt "min_bead_width description"
msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
msgstr ""
msgctxt "xy_offset label"
msgid "Horizontal Expansion"
msgstr ""
msgctxt "xy_offset description"
msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
msgstr ""
msgctxt "xy_offset_layer_0 label"
msgid "Initial Layer Horizontal Expansion"
msgstr ""
msgctxt "xy_offset_layer_0 description"
msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
msgstr ""
msgctxt "hole_xy_offset label"
msgid "Hole Horizontal Expansion"
msgstr ""
msgctxt "hole_xy_offset description"
msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
msgstr ""
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
msgctxt "z_seam_type label"
msgid "Z Seam Alignment"
msgstr ""
msgctxt "z_seam_type description"
msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
msgstr ""
msgctxt "z_seam_type option back"
msgid "User Specified"
msgstr ""
msgctxt "z_seam_type option shortest"
msgid "Shortest"
msgstr ""
msgctxt "z_seam_type option random"
msgid "Random"
msgstr ""
msgctxt "z_seam_type option sharpest_corner"
msgid "Sharpest Corner"
msgstr ""
msgctxt "z_seam_on_vertex label"
msgid "Z Seam On Vertex"
msgstr ""
msgctxt "z_seam_on_vertex description"
msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)"
msgstr ""
msgctxt "z_seam_position label"
msgid "Z Seam Position"