fdmprinter.def.json.pot 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055
  1. #, fuzzy
  2. msgid ""
  3. msgstr ""
  4. "Project-Id-Version: Uranium json setting files\n"
  5. "Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
  6. "POT-Creation-Date: 2017-05-30 15:32+0000\n"
  7. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  8. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  9. "Language-Team: LANGUAGE\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. #: fdmprinter.def.json
  14. msgctxt "machine_settings label"
  15. msgid "Machine"
  16. msgstr ""
  17. #: fdmprinter.def.json
  18. msgctxt "machine_settings description"
  19. msgid "Machine specific settings"
  20. msgstr ""
  21. #: fdmprinter.def.json
  22. msgctxt "machine_name label"
  23. msgid "Machine Type"
  24. msgstr ""
  25. #: fdmprinter.def.json
  26. msgctxt "machine_name description"
  27. msgid "The name of your 3D printer model."
  28. msgstr ""
  29. #: fdmprinter.def.json
  30. msgctxt "machine_show_variants label"
  31. msgid "Show machine variants"
  32. msgstr ""
  33. #: fdmprinter.def.json
  34. msgctxt "machine_show_variants description"
  35. msgid ""
  36. "Whether to show the different variants of this machine, which are described "
  37. "in separate json files."
  38. msgstr ""
  39. #: fdmprinter.def.json
  40. msgctxt "machine_start_gcode label"
  41. msgid "Start GCode"
  42. msgstr ""
  43. #: fdmprinter.def.json
  44. msgctxt "machine_start_gcode description"
  45. msgid ""
  46. "Gcode commands to be executed at the very start - separated by \n"
  47. "."
  48. msgstr ""
  49. #: fdmprinter.def.json
  50. msgctxt "machine_end_gcode label"
  51. msgid "End GCode"
  52. msgstr ""
  53. #: fdmprinter.def.json
  54. msgctxt "machine_end_gcode description"
  55. msgid ""
  56. "Gcode commands to be executed at the very end - separated by \n"
  57. "."
  58. msgstr ""
  59. #: fdmprinter.def.json
  60. msgctxt "material_guid label"
  61. msgid "Material GUID"
  62. msgstr ""
  63. #: fdmprinter.def.json
  64. msgctxt "material_guid description"
  65. msgid "GUID of the material. This is set automatically. "
  66. msgstr ""
  67. #: fdmprinter.def.json
  68. msgctxt "material_bed_temp_wait label"
  69. msgid "Wait for build plate heatup"
  70. msgstr ""
  71. #: fdmprinter.def.json
  72. msgctxt "material_bed_temp_wait description"
  73. msgid ""
  74. "Whether to insert a command to wait until the build plate temperature is "
  75. "reached at the start."
  76. msgstr ""
  77. #: fdmprinter.def.json
  78. msgctxt "material_print_temp_wait label"
  79. msgid "Wait for nozzle heatup"
  80. msgstr ""
  81. #: fdmprinter.def.json
  82. msgctxt "material_print_temp_wait description"
  83. msgid "Whether to wait until the nozzle temperature is reached at the start."
  84. msgstr ""
  85. #: fdmprinter.def.json
  86. msgctxt "material_print_temp_prepend label"
  87. msgid "Include material temperatures"
  88. msgstr ""
  89. #: fdmprinter.def.json
  90. msgctxt "material_print_temp_prepend description"
  91. msgid ""
  92. "Whether to include nozzle temperature commands at the start of the gcode. "
  93. "When the start_gcode already contains nozzle temperature commands Cura "
  94. "frontend will automatically disable this setting."
  95. msgstr ""
  96. #: fdmprinter.def.json
  97. msgctxt "material_bed_temp_prepend label"
  98. msgid "Include build plate temperature"
  99. msgstr ""
  100. #: fdmprinter.def.json
  101. msgctxt "material_bed_temp_prepend description"
  102. msgid ""
  103. "Whether to include build plate temperature commands at the start of the "
  104. "gcode. When the start_gcode already contains build plate temperature "
  105. "commands Cura frontend will automatically disable this setting."
  106. msgstr ""
  107. #: fdmprinter.def.json
  108. msgctxt "machine_width label"
  109. msgid "Machine width"
  110. msgstr ""
  111. #: fdmprinter.def.json
  112. msgctxt "machine_width description"
  113. msgid "The width (X-direction) of the printable area."
  114. msgstr ""
  115. #: fdmprinter.def.json
  116. msgctxt "machine_depth label"
  117. msgid "Machine depth"
  118. msgstr ""
  119. #: fdmprinter.def.json
  120. msgctxt "machine_depth description"
  121. msgid "The depth (Y-direction) of the printable area."
  122. msgstr ""
  123. #: fdmprinter.def.json
  124. msgctxt "machine_shape label"
  125. msgid "Build plate shape"
  126. msgstr ""
  127. #: fdmprinter.def.json
  128. msgctxt "machine_shape description"
  129. msgid ""
  130. "The shape of the build plate without taking unprintable areas into account."
  131. msgstr ""
  132. #: fdmprinter.def.json
  133. msgctxt "machine_shape option rectangular"
  134. msgid "Rectangular"
  135. msgstr ""
  136. #: fdmprinter.def.json
  137. msgctxt "machine_shape option elliptic"
  138. msgid "Elliptic"
  139. msgstr ""
  140. #: fdmprinter.def.json
  141. msgctxt "machine_height label"
  142. msgid "Machine height"
  143. msgstr ""
  144. #: fdmprinter.def.json
  145. msgctxt "machine_height description"
  146. msgid "The height (Z-direction) of the printable area."
  147. msgstr ""
  148. #: fdmprinter.def.json
  149. msgctxt "machine_heated_bed label"
  150. msgid "Has heated build plate"
  151. msgstr ""
  152. #: fdmprinter.def.json
  153. msgctxt "machine_heated_bed description"
  154. msgid "Whether the machine has a heated build plate present."
  155. msgstr ""
  156. #: fdmprinter.def.json
  157. msgctxt "machine_center_is_zero label"
  158. msgid "Is center origin"
  159. msgstr ""
  160. #: fdmprinter.def.json
  161. msgctxt "machine_center_is_zero description"
  162. msgid ""
  163. "Whether the X/Y coordinates of the zero position of the printer is at the "
  164. "center of the printable area."
  165. msgstr ""
  166. #: fdmprinter.def.json
  167. msgctxt "machine_extruder_count label"
  168. msgid "Number of Extruders"
  169. msgstr ""
  170. #: fdmprinter.def.json
  171. msgctxt "machine_extruder_count description"
  172. msgid ""
  173. "Number of extruder trains. An extruder train is the combination of a feeder, "
  174. "bowden tube, and nozzle."
  175. msgstr ""
  176. #: fdmprinter.def.json
  177. msgctxt "machine_nozzle_tip_outer_diameter label"
  178. msgid "Outer nozzle diameter"
  179. msgstr ""
  180. #: fdmprinter.def.json
  181. msgctxt "machine_nozzle_tip_outer_diameter description"
  182. msgid "The outer diameter of the tip of the nozzle."
  183. msgstr ""
  184. #: fdmprinter.def.json
  185. msgctxt "machine_nozzle_head_distance label"
  186. msgid "Nozzle length"
  187. msgstr ""
  188. #: fdmprinter.def.json
  189. msgctxt "machine_nozzle_head_distance description"
  190. msgid ""
  191. "The height difference between the tip of the nozzle and the lowest part of "
  192. "the print head."
  193. msgstr ""
  194. #: fdmprinter.def.json
  195. msgctxt "machine_nozzle_expansion_angle label"
  196. msgid "Nozzle angle"
  197. msgstr ""
  198. #: fdmprinter.def.json
  199. msgctxt "machine_nozzle_expansion_angle description"
  200. msgid ""
  201. "The angle between the horizontal plane and the conical part right above the "
  202. "tip of the nozzle."
  203. msgstr ""
  204. #: fdmprinter.def.json
  205. msgctxt "machine_heat_zone_length label"
  206. msgid "Heat zone length"
  207. msgstr ""
  208. #: fdmprinter.def.json
  209. msgctxt "machine_heat_zone_length description"
  210. msgid ""
  211. "The distance from the tip of the nozzle in which heat from the nozzle is "
  212. "transferred to the filament."
  213. msgstr ""
  214. #: fdmprinter.def.json
  215. msgctxt "machine_filament_park_distance label"
  216. msgid "Filament Park Distance"
  217. msgstr ""
  218. #: fdmprinter.def.json
  219. msgctxt "machine_filament_park_distance description"
  220. msgid ""
  221. "The distance from the tip of the nozzle where to park the filament when an "
  222. "extruder is no longer used."
  223. msgstr ""
  224. #: fdmprinter.def.json
  225. msgctxt "machine_nozzle_temp_enabled label"
  226. msgid "Enable Nozzle Temperature Control"
  227. msgstr ""
  228. #: fdmprinter.def.json
  229. msgctxt "machine_nozzle_temp_enabled description"
  230. msgid ""
  231. "Whether to control temperature from Cura. Turn this off to control nozzle "
  232. "temperature from outside of Cura."
  233. msgstr ""
  234. #: fdmprinter.def.json
  235. msgctxt "machine_nozzle_heat_up_speed label"
  236. msgid "Heat up speed"
  237. msgstr ""
  238. #: fdmprinter.def.json
  239. msgctxt "machine_nozzle_heat_up_speed description"
  240. msgid ""
  241. "The speed (°C/s) by which the nozzle heats up averaged over the window of "
  242. "normal printing temperatures and the standby temperature."
  243. msgstr ""
  244. #: fdmprinter.def.json
  245. msgctxt "machine_nozzle_cool_down_speed label"
  246. msgid "Cool down speed"
  247. msgstr ""
  248. #: fdmprinter.def.json
  249. msgctxt "machine_nozzle_cool_down_speed description"
  250. msgid ""
  251. "The speed (°C/s) by which the nozzle cools down averaged over the window of "
  252. "normal printing temperatures and the standby temperature."
  253. msgstr ""
  254. #: fdmprinter.def.json
  255. msgctxt "machine_min_cool_heat_time_window label"
  256. msgid "Minimal Time Standby Temperature"
  257. msgstr ""
  258. #: fdmprinter.def.json
  259. msgctxt "machine_min_cool_heat_time_window description"
  260. msgid ""
  261. "The minimal time an extruder has to be inactive before the nozzle is cooled. "
  262. "Only when an extruder is not used for longer than this time will it be "
  263. "allowed to cool down to the standby temperature."
  264. msgstr ""
  265. #: fdmprinter.def.json
  266. msgctxt "machine_gcode_flavor label"
  267. msgid "Gcode flavour"
  268. msgstr ""
  269. #: fdmprinter.def.json
  270. msgctxt "machine_gcode_flavor description"
  271. msgid "The type of gcode to be generated."
  272. msgstr ""
  273. #: fdmprinter.def.json
  274. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  275. msgid "RepRap (Marlin/Sprinter)"
  276. msgstr ""
  277. #: fdmprinter.def.json
  278. msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  279. msgid "RepRap (Volumetric)"
  280. msgstr ""
  281. #: fdmprinter.def.json
  282. msgctxt "machine_gcode_flavor option UltiGCode"
  283. msgid "Ultimaker 2"
  284. msgstr ""
  285. #: fdmprinter.def.json
  286. msgctxt "machine_gcode_flavor option Griffin"
  287. msgid "Griffin"
  288. msgstr ""
  289. #: fdmprinter.def.json
  290. msgctxt "machine_gcode_flavor option Makerbot"
  291. msgid "Makerbot"
  292. msgstr ""
  293. #: fdmprinter.def.json
  294. msgctxt "machine_gcode_flavor option BFB"
  295. msgid "Bits from Bytes"
  296. msgstr ""
  297. #: fdmprinter.def.json
  298. msgctxt "machine_gcode_flavor option MACH3"
  299. msgid "Mach3"
  300. msgstr ""
  301. #: fdmprinter.def.json
  302. msgctxt "machine_gcode_flavor option Repetier"
  303. msgid "Repetier"
  304. msgstr ""
  305. #: fdmprinter.def.json
  306. msgctxt "machine_disallowed_areas label"
  307. msgid "Disallowed areas"
  308. msgstr ""
  309. #: fdmprinter.def.json
  310. msgctxt "machine_disallowed_areas description"
  311. msgid "A list of polygons with areas the print head is not allowed to enter."
  312. msgstr ""
  313. #: fdmprinter.def.json
  314. msgctxt "nozzle_disallowed_areas label"
  315. msgid "Nozzle Disallowed Areas"
  316. msgstr ""
  317. #: fdmprinter.def.json
  318. msgctxt "nozzle_disallowed_areas description"
  319. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  320. msgstr ""
  321. #: fdmprinter.def.json
  322. msgctxt "machine_head_polygon label"
  323. msgid "Machine head polygon"
  324. msgstr ""
  325. #: fdmprinter.def.json
  326. msgctxt "machine_head_polygon description"
  327. msgid "A 2D silhouette of the print head (fan caps excluded)."
  328. msgstr ""
  329. #: fdmprinter.def.json
  330. msgctxt "machine_head_with_fans_polygon label"
  331. msgid "Machine head & Fan polygon"
  332. msgstr ""
  333. #: fdmprinter.def.json
  334. msgctxt "machine_head_with_fans_polygon description"
  335. msgid "A 2D silhouette of the print head (fan caps included)."
  336. msgstr ""
  337. #: fdmprinter.def.json
  338. msgctxt "gantry_height label"
  339. msgid "Gantry height"
  340. msgstr ""
  341. #: fdmprinter.def.json
  342. msgctxt "gantry_height description"
  343. msgid ""
  344. "The height difference between the tip of the nozzle and the gantry system (X "
  345. "and Y axes)."
  346. msgstr ""
  347. #: fdmprinter.def.json
  348. msgctxt "machine_nozzle_size label"
  349. msgid "Nozzle Diameter"
  350. msgstr ""
  351. #: fdmprinter.def.json
  352. msgctxt "machine_nozzle_size description"
  353. msgid ""
  354. "The inner diameter of the nozzle. Change this setting when using a non-"
  355. "standard nozzle size."
  356. msgstr ""
  357. #: fdmprinter.def.json
  358. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  359. msgid "Offset With Extruder"
  360. msgstr ""
  361. #: fdmprinter.def.json
  362. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  363. msgid "Apply the extruder offset to the coordinate system."
  364. msgstr ""
  365. #: fdmprinter.def.json
  366. msgctxt "extruder_prime_pos_z label"
  367. msgid "Extruder Prime Z Position"
  368. msgstr ""
  369. #: fdmprinter.def.json
  370. msgctxt "extruder_prime_pos_z description"
  371. msgid ""
  372. "The Z coordinate of the position where the nozzle primes at the start of "
  373. "printing."
  374. msgstr ""
  375. #: fdmprinter.def.json
  376. msgctxt "extruder_prime_pos_abs label"
  377. msgid "Absolute Extruder Prime Position"
  378. msgstr ""
  379. #: fdmprinter.def.json
  380. msgctxt "extruder_prime_pos_abs description"
  381. msgid ""
  382. "Make the extruder prime position absolute rather than relative to the last-"
  383. "known location of the head."
  384. msgstr ""
  385. #: fdmprinter.def.json
  386. msgctxt "machine_max_feedrate_x label"
  387. msgid "Maximum Speed X"
  388. msgstr ""
  389. #: fdmprinter.def.json
  390. msgctxt "machine_max_feedrate_x description"
  391. msgid "The maximum speed for the motor of the X-direction."
  392. msgstr ""
  393. #: fdmprinter.def.json
  394. msgctxt "machine_max_feedrate_y label"
  395. msgid "Maximum Speed Y"
  396. msgstr ""
  397. #: fdmprinter.def.json
  398. msgctxt "machine_max_feedrate_y description"
  399. msgid "The maximum speed for the motor of the Y-direction."
  400. msgstr ""
  401. #: fdmprinter.def.json
  402. msgctxt "machine_max_feedrate_z label"
  403. msgid "Maximum Speed Z"
  404. msgstr ""
  405. #: fdmprinter.def.json
  406. msgctxt "machine_max_feedrate_z description"
  407. msgid "The maximum speed for the motor of the Z-direction."
  408. msgstr ""
  409. #: fdmprinter.def.json
  410. msgctxt "machine_max_feedrate_e label"
  411. msgid "Maximum Feedrate"
  412. msgstr ""
  413. #: fdmprinter.def.json
  414. msgctxt "machine_max_feedrate_e description"
  415. msgid "The maximum speed of the filament."
  416. msgstr ""
  417. #: fdmprinter.def.json
  418. msgctxt "machine_max_acceleration_x label"
  419. msgid "Maximum Acceleration X"
  420. msgstr ""
  421. #: fdmprinter.def.json
  422. msgctxt "machine_max_acceleration_x description"
  423. msgid "Maximum acceleration for the motor of the X-direction"
  424. msgstr ""
  425. #: fdmprinter.def.json
  426. msgctxt "machine_max_acceleration_y label"
  427. msgid "Maximum Acceleration Y"
  428. msgstr ""
  429. #: fdmprinter.def.json
  430. msgctxt "machine_max_acceleration_y description"
  431. msgid "Maximum acceleration for the motor of the Y-direction."
  432. msgstr ""
  433. #: fdmprinter.def.json
  434. msgctxt "machine_max_acceleration_z label"
  435. msgid "Maximum Acceleration Z"
  436. msgstr ""
  437. #: fdmprinter.def.json
  438. msgctxt "machine_max_acceleration_z description"
  439. msgid "Maximum acceleration for the motor of the Z-direction."
  440. msgstr ""
  441. #: fdmprinter.def.json
  442. msgctxt "machine_max_acceleration_e label"
  443. msgid "Maximum Filament Acceleration"
  444. msgstr ""
  445. #: fdmprinter.def.json
  446. msgctxt "machine_max_acceleration_e description"
  447. msgid "Maximum acceleration for the motor of the filament."
  448. msgstr ""
  449. #: fdmprinter.def.json
  450. msgctxt "machine_acceleration label"
  451. msgid "Default Acceleration"
  452. msgstr ""
  453. #: fdmprinter.def.json
  454. msgctxt "machine_acceleration description"
  455. msgid "The default acceleration of print head movement."
  456. msgstr ""
  457. #: fdmprinter.def.json
  458. msgctxt "machine_max_jerk_xy label"
  459. msgid "Default X-Y Jerk"
  460. msgstr ""
  461. #: fdmprinter.def.json
  462. msgctxt "machine_max_jerk_xy description"
  463. msgid "Default jerk for movement in the horizontal plane."
  464. msgstr ""
  465. #: fdmprinter.def.json
  466. msgctxt "machine_max_jerk_z label"
  467. msgid "Default Z Jerk"
  468. msgstr ""
  469. #: fdmprinter.def.json
  470. msgctxt "machine_max_jerk_z description"
  471. msgid "Default jerk for the motor of the Z-direction."
  472. msgstr ""
  473. #: fdmprinter.def.json
  474. msgctxt "machine_max_jerk_e label"
  475. msgid "Default Filament Jerk"
  476. msgstr ""
  477. #: fdmprinter.def.json
  478. msgctxt "machine_max_jerk_e description"
  479. msgid "Default jerk for the motor of the filament."
  480. msgstr ""
  481. #: fdmprinter.def.json
  482. msgctxt "machine_minimum_feedrate label"
  483. msgid "Minimum Feedrate"
  484. msgstr ""
  485. #: fdmprinter.def.json
  486. msgctxt "machine_minimum_feedrate description"
  487. msgid "The minimal movement speed of the print head."
  488. msgstr ""
  489. #: fdmprinter.def.json
  490. msgctxt "resolution label"
  491. msgid "Quality"
  492. msgstr ""
  493. #: fdmprinter.def.json
  494. msgctxt "resolution description"
  495. msgid ""
  496. "All settings that influence the resolution of the print. These settings have "
  497. "a large impact on the quality (and print time)"
  498. msgstr ""
  499. #: fdmprinter.def.json
  500. msgctxt "layer_height label"
  501. msgid "Layer Height"
  502. msgstr ""
  503. #: fdmprinter.def.json
  504. msgctxt "layer_height description"
  505. msgid ""
  506. "The height of each layer in mm. Higher values produce faster prints in lower "
  507. "resolution, lower values produce slower prints in higher resolution."
  508. msgstr ""
  509. #: fdmprinter.def.json
  510. msgctxt "layer_height_0 label"
  511. msgid "Initial Layer Height"
  512. msgstr ""
  513. #: fdmprinter.def.json
  514. msgctxt "layer_height_0 description"
  515. msgid ""
  516. "The height of the initial layer in mm. A thicker initial layer makes "
  517. "adhesion to the build plate easier."
  518. msgstr ""
  519. #: fdmprinter.def.json
  520. msgctxt "line_width label"
  521. msgid "Line Width"
  522. msgstr ""
  523. #: fdmprinter.def.json
  524. msgctxt "line_width description"
  525. msgid ""
  526. "Width of a single line. Generally, the width of each line should correspond "
  527. "to the width of the nozzle. However, slightly reducing this value could "
  528. "produce better prints."
  529. msgstr ""
  530. #: fdmprinter.def.json
  531. msgctxt "wall_line_width label"
  532. msgid "Wall Line Width"
  533. msgstr ""
  534. #: fdmprinter.def.json
  535. msgctxt "wall_line_width description"
  536. msgid "Width of a single wall line."
  537. msgstr ""
  538. #: fdmprinter.def.json
  539. msgctxt "wall_line_width_0 label"
  540. msgid "Outer Wall Line Width"
  541. msgstr ""
  542. #: fdmprinter.def.json
  543. msgctxt "wall_line_width_0 description"
  544. msgid ""
  545. "Width of the outermost wall line. By lowering this value, higher levels of "
  546. "detail can be printed."
  547. msgstr ""
  548. #: fdmprinter.def.json
  549. msgctxt "wall_line_width_x label"
  550. msgid "Inner Wall(s) Line Width"
  551. msgstr ""
  552. #: fdmprinter.def.json
  553. msgctxt "wall_line_width_x description"
  554. msgid ""
  555. "Width of a single wall line for all wall lines except the outermost one."
  556. msgstr ""
  557. #: fdmprinter.def.json
  558. msgctxt "skin_line_width label"
  559. msgid "Top/Bottom Line Width"
  560. msgstr ""
  561. #: fdmprinter.def.json
  562. msgctxt "skin_line_width description"
  563. msgid "Width of a single top/bottom line."
  564. msgstr ""
  565. #: fdmprinter.def.json
  566. msgctxt "infill_line_width label"
  567. msgid "Infill Line Width"
  568. msgstr ""
  569. #: fdmprinter.def.json
  570. msgctxt "infill_line_width description"
  571. msgid "Width of a single infill line."
  572. msgstr ""
  573. #: fdmprinter.def.json
  574. msgctxt "skirt_brim_line_width label"
  575. msgid "Skirt/Brim Line Width"
  576. msgstr ""
  577. #: fdmprinter.def.json
  578. msgctxt "skirt_brim_line_width description"
  579. msgid "Width of a single skirt or brim line."
  580. msgstr ""
  581. #: fdmprinter.def.json
  582. msgctxt "support_line_width label"
  583. msgid "Support Line Width"
  584. msgstr ""
  585. #: fdmprinter.def.json
  586. msgctxt "support_line_width description"
  587. msgid "Width of a single support structure line."
  588. msgstr ""
  589. #: fdmprinter.def.json
  590. msgctxt "support_interface_line_width label"
  591. msgid "Support Interface Line Width"
  592. msgstr ""
  593. #: fdmprinter.def.json
  594. msgctxt "support_interface_line_width description"
  595. msgid "Width of a single line of support roof or floor."
  596. msgstr ""
  597. #: fdmprinter.def.json
  598. msgctxt "support_roof_line_width label"
  599. msgid "Support Roof Line Width"
  600. msgstr ""
  601. #: fdmprinter.def.json
  602. msgctxt "support_roof_line_width description"
  603. msgid "Width of a single support roof line."
  604. msgstr ""
  605. #: fdmprinter.def.json
  606. msgctxt "support_bottom_line_width label"
  607. msgid "Support Floor Line Width"
  608. msgstr ""
  609. #: fdmprinter.def.json
  610. msgctxt "support_bottom_line_width description"
  611. msgid "Width of a single support floor line."
  612. msgstr ""
  613. #: fdmprinter.def.json
  614. msgctxt "prime_tower_line_width label"
  615. msgid "Prime Tower Line Width"
  616. msgstr ""
  617. #: fdmprinter.def.json
  618. msgctxt "prime_tower_line_width description"
  619. msgid "Width of a single prime tower line."
  620. msgstr ""
  621. #: fdmprinter.def.json
  622. msgctxt "shell label"
  623. msgid "Shell"
  624. msgstr ""
  625. #: fdmprinter.def.json
  626. msgctxt "shell description"
  627. msgid "Shell"
  628. msgstr ""
  629. #: fdmprinter.def.json
  630. msgctxt "wall_thickness label"
  631. msgid "Wall Thickness"
  632. msgstr ""
  633. #: fdmprinter.def.json
  634. msgctxt "wall_thickness description"
  635. msgid ""
  636. "The thickness of the outside walls in the horizontal direction. This value "
  637. "divided by the wall line width defines the number of walls."
  638. msgstr ""
  639. #: fdmprinter.def.json
  640. msgctxt "wall_line_count label"
  641. msgid "Wall Line Count"
  642. msgstr ""
  643. #: fdmprinter.def.json
  644. msgctxt "wall_line_count description"
  645. msgid ""
  646. "The number of walls. When calculated by the wall thickness, this value is "
  647. "rounded to a whole number."
  648. msgstr ""
  649. #: fdmprinter.def.json
  650. msgctxt "wall_0_wipe_dist label"
  651. msgid "Outer Wall Wipe Distance"
  652. msgstr ""
  653. #: fdmprinter.def.json
  654. msgctxt "wall_0_wipe_dist description"
  655. msgid ""
  656. "Distance of a travel move inserted after the outer wall, to hide the Z seam "
  657. "better."
  658. msgstr ""
  659. #: fdmprinter.def.json
  660. msgctxt "top_bottom_thickness label"
  661. msgid "Top/Bottom Thickness"
  662. msgstr ""
  663. #: fdmprinter.def.json
  664. msgctxt "top_bottom_thickness description"
  665. msgid ""
  666. "The thickness of the top/bottom layers in the print. This value divided by "
  667. "the layer height defines the number of top/bottom layers."
  668. msgstr ""
  669. #: fdmprinter.def.json
  670. msgctxt "top_thickness label"
  671. msgid "Top Thickness"
  672. msgstr ""
  673. #: fdmprinter.def.json
  674. msgctxt "top_thickness description"
  675. msgid ""
  676. "The thickness of the top layers in the print. This value divided by the "
  677. "layer height defines the number of top layers."
  678. msgstr ""
  679. #: fdmprinter.def.json
  680. msgctxt "top_layers label"
  681. msgid "Top Layers"
  682. msgstr ""
  683. #: fdmprinter.def.json
  684. msgctxt "top_layers description"
  685. msgid ""
  686. "The number of top layers. When calculated by the top thickness, this value "
  687. "is rounded to a whole number."
  688. msgstr ""
  689. #: fdmprinter.def.json
  690. msgctxt "bottom_thickness label"
  691. msgid "Bottom Thickness"
  692. msgstr ""
  693. #: fdmprinter.def.json
  694. msgctxt "bottom_thickness description"
  695. msgid ""
  696. "The thickness of the bottom layers in the print. This value divided by the "
  697. "layer height defines the number of bottom layers."
  698. msgstr ""
  699. #: fdmprinter.def.json
  700. msgctxt "bottom_layers label"
  701. msgid "Bottom Layers"
  702. msgstr ""
  703. #: fdmprinter.def.json
  704. msgctxt "bottom_layers description"
  705. msgid ""
  706. "The number of bottom layers. When calculated by the bottom thickness, this "
  707. "value is rounded to a whole number."
  708. msgstr ""
  709. #: fdmprinter.def.json
  710. msgctxt "top_bottom_pattern label"
  711. msgid "Top/Bottom Pattern"
  712. msgstr ""
  713. #: fdmprinter.def.json
  714. msgctxt "top_bottom_pattern description"
  715. msgid "The pattern of the top/bottom layers."
  716. msgstr ""
  717. #: fdmprinter.def.json
  718. msgctxt "top_bottom_pattern option lines"
  719. msgid "Lines"
  720. msgstr ""
  721. #: fdmprinter.def.json
  722. msgctxt "top_bottom_pattern option concentric"
  723. msgid "Concentric"
  724. msgstr ""
  725. #: fdmprinter.def.json
  726. msgctxt "top_bottom_pattern option zigzag"
  727. msgid "Zig Zag"
  728. msgstr ""
  729. #: fdmprinter.def.json
  730. msgctxt "top_bottom_pattern_0 label"
  731. msgid "Bottom Pattern Initial Layer"
  732. msgstr ""
  733. #: fdmprinter.def.json
  734. msgctxt "top_bottom_pattern_0 description"
  735. msgid "The pattern on the bottom of the print on the first layer."
  736. msgstr ""
  737. #: fdmprinter.def.json
  738. msgctxt "top_bottom_pattern_0 option lines"
  739. msgid "Lines"
  740. msgstr ""
  741. #: fdmprinter.def.json
  742. msgctxt "top_bottom_pattern_0 option concentric"
  743. msgid "Concentric"
  744. msgstr ""
  745. #: fdmprinter.def.json
  746. msgctxt "top_bottom_pattern_0 option zigzag"
  747. msgid "Zig Zag"
  748. msgstr ""
  749. #: fdmprinter.def.json
  750. msgctxt "skin_angles label"
  751. msgid "Top/Bottom Line Directions"
  752. msgstr ""
  753. #: fdmprinter.def.json
  754. msgctxt "skin_angles description"
  755. msgid ""
  756. "A list of integer line directions to use when the top/bottom layers use the "
  757. "lines or zig zag pattern. Elements from the list are used sequentially as "
  758. "the layers progress and when the end of the list is reached, it starts at "
  759. "the beginning again. The list items are separated by commas and the whole "
  760. "list is contained in square brackets. Default is an empty list which means "
  761. "use the traditional default angles (45 and 135 degrees)."
  762. msgstr ""
  763. #: fdmprinter.def.json
  764. msgctxt "wall_0_inset label"
  765. msgid "Outer Wall Inset"
  766. msgstr ""
  767. #: fdmprinter.def.json
  768. msgctxt "wall_0_inset description"
  769. msgid ""
  770. "Inset applied to the path of the outer wall. If the outer wall is smaller "
  771. "than the nozzle, and printed after the inner walls, use this offset to get "
  772. "the hole in the nozzle to overlap with the inner walls instead of the "
  773. "outside of the model."
  774. msgstr ""
  775. #: fdmprinter.def.json
  776. msgctxt "outer_inset_first label"
  777. msgid "Outer Before Inner Walls"
  778. msgstr ""
  779. #: fdmprinter.def.json
  780. msgctxt "outer_inset_first description"
  781. msgid ""
  782. "Prints walls in order of outside to inside when enabled. This can help "
  783. "improve dimensional accuracy in X and Y when using a high viscosity plastic "
  784. "like ABS; however it can decrease outer surface print quality, especially on "
  785. "overhangs."
  786. msgstr ""
  787. #: fdmprinter.def.json
  788. msgctxt "alternate_extra_perimeter label"
  789. msgid "Alternate Extra Wall"
  790. msgstr ""
  791. #: fdmprinter.def.json
  792. msgctxt "alternate_extra_perimeter description"
  793. msgid ""
  794. "Prints an extra wall at every other layer. This way infill gets caught "
  795. "between these extra walls, resulting in stronger prints."
  796. msgstr ""
  797. #: fdmprinter.def.json
  798. msgctxt "travel_compensate_overlapping_walls_enabled label"
  799. msgid "Compensate Wall Overlaps"
  800. msgstr ""
  801. #: fdmprinter.def.json
  802. msgctxt "travel_compensate_overlapping_walls_enabled description"
  803. msgid ""
  804. "Compensate the flow for parts of a wall being printed where there is already "
  805. "a wall in place."
  806. msgstr ""
  807. #: fdmprinter.def.json
  808. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  809. msgid "Compensate Outer Wall Overlaps"
  810. msgstr ""
  811. #: fdmprinter.def.json
  812. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  813. msgid ""
  814. "Compensate the flow for parts of an outer wall being printed where there is "
  815. "already a wall in place."
  816. msgstr ""
  817. #: fdmprinter.def.json
  818. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  819. msgid "Compensate Inner Wall Overlaps"
  820. msgstr ""
  821. #: fdmprinter.def.json
  822. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  823. msgid ""
  824. "Compensate the flow for parts of an inner wall being printed where there is "
  825. "already a wall in place."
  826. msgstr ""
  827. #: fdmprinter.def.json
  828. msgctxt "fill_perimeter_gaps label"
  829. msgid "Fill Gaps Between Walls"
  830. msgstr ""
  831. #: fdmprinter.def.json
  832. msgctxt "fill_perimeter_gaps description"
  833. msgid "Fills the gaps between walls where no walls fit."
  834. msgstr ""
  835. #: fdmprinter.def.json
  836. msgctxt "fill_perimeter_gaps option nowhere"
  837. msgid "Nowhere"
  838. msgstr ""
  839. #: fdmprinter.def.json
  840. msgctxt "fill_perimeter_gaps option everywhere"
  841. msgid "Everywhere"
  842. msgstr ""
  843. #: fdmprinter.def.json
  844. msgctxt "xy_offset label"
  845. msgid "Horizontal Expansion"
  846. msgstr ""
  847. #: fdmprinter.def.json
  848. msgctxt "xy_offset description"
  849. msgid ""
  850. "Amount of offset applied to all polygons in each layer. Positive values can "
  851. "compensate for too big holes; negative values can compensate for too small "
  852. "holes."
  853. msgstr ""
  854. #: fdmprinter.def.json
  855. msgctxt "z_seam_type label"
  856. msgid "Z Seam Alignment"
  857. msgstr ""
  858. #: fdmprinter.def.json
  859. msgctxt "z_seam_type description"
  860. msgid ""
  861. "Starting point of each path in a layer. When paths in consecutive layers "
  862. "start at the same point a vertical seam may show on the print. When aligning "
  863. "these near a user specified location, the seam is easiest to remove. When "
  864. "placed randomly the inaccuracies at the paths' start will be less "
  865. "noticeable. When taking the shortest path the print will be quicker."
  866. msgstr ""
  867. #: fdmprinter.def.json
  868. msgctxt "z_seam_type option back"
  869. msgid "User Specified"
  870. msgstr ""
  871. #: fdmprinter.def.json
  872. msgctxt "z_seam_type option shortest"
  873. msgid "Shortest"
  874. msgstr ""
  875. #: fdmprinter.def.json
  876. msgctxt "z_seam_type option random"
  877. msgid "Random"
  878. msgstr ""
  879. #: fdmprinter.def.json
  880. msgctxt "z_seam_x label"
  881. msgid "Z Seam X"
  882. msgstr ""
  883. #: fdmprinter.def.json
  884. msgctxt "z_seam_x description"
  885. msgid ""
  886. "The X coordinate of the position near where to start printing each part in a "
  887. "layer."
  888. msgstr ""
  889. #: fdmprinter.def.json
  890. msgctxt "z_seam_y label"
  891. msgid "Z Seam Y"
  892. msgstr ""
  893. #: fdmprinter.def.json
  894. msgctxt "z_seam_y description"
  895. msgid ""
  896. "The Y coordinate of the position near where to start printing each part in a "
  897. "layer."
  898. msgstr ""
  899. #: fdmprinter.def.json
  900. msgctxt "skin_no_small_gaps_heuristic label"
  901. msgid "Ignore Small Z Gaps"
  902. msgstr ""
  903. #: fdmprinter.def.json
  904. msgctxt "skin_no_small_gaps_heuristic description"
  905. msgid ""
  906. "When the model has small vertical gaps, about 5% extra computation time can "
  907. "be spent on generating top and bottom skin in these narrow spaces. In such "
  908. "case, disable the setting."
  909. msgstr ""
  910. #: fdmprinter.def.json
  911. msgctxt "infill label"
  912. msgid "Infill"
  913. msgstr ""
  914. #: fdmprinter.def.json
  915. msgctxt "infill description"
  916. msgid "Infill"
  917. msgstr ""
  918. #: fdmprinter.def.json
  919. msgctxt "infill_sparse_density label"
  920. msgid "Infill Density"
  921. msgstr ""
  922. #: fdmprinter.def.json
  923. msgctxt "infill_sparse_density description"
  924. msgid "Adjusts the density of infill of the print."
  925. msgstr ""
  926. #: fdmprinter.def.json
  927. msgctxt "infill_line_distance label"
  928. msgid "Infill Line Distance"
  929. msgstr ""
  930. #: fdmprinter.def.json
  931. msgctxt "infill_line_distance description"
  932. msgid ""
  933. "Distance between the printed infill lines. This setting is calculated by the "
  934. "infill density and the infill line width."
  935. msgstr ""
  936. #: fdmprinter.def.json
  937. msgctxt "infill_pattern label"
  938. msgid "Infill Pattern"
  939. msgstr ""
  940. #: fdmprinter.def.json
  941. msgctxt "infill_pattern description"
  942. msgid ""
  943. "The pattern of the infill material of the print. The line and zig zag infill "
  944. "swap direction on alternate layers, reducing material cost. The grid, "
  945. "triangle, cubic, tetrahedral and concentric patterns are fully printed every "
  946. "layer. Cubic and tetrahedral infill change with every layer to provide a "
  947. "more equal distribution of strength over each direction."
  948. msgstr ""
  949. #: fdmprinter.def.json
  950. msgctxt "infill_pattern option grid"
  951. msgid "Grid"
  952. msgstr ""
  953. #: fdmprinter.def.json
  954. msgctxt "infill_pattern option lines"
  955. msgid "Lines"
  956. msgstr ""
  957. #: fdmprinter.def.json
  958. msgctxt "infill_pattern option triangles"
  959. msgid "Triangles"
  960. msgstr ""
  961. #: fdmprinter.def.json
  962. msgctxt "infill_pattern option cubic"
  963. msgid "Cubic"
  964. msgstr ""
  965. #: fdmprinter.def.json
  966. msgctxt "infill_pattern option cubicsubdiv"
  967. msgid "Cubic Subdivision"
  968. msgstr ""
  969. #: fdmprinter.def.json
  970. msgctxt "infill_pattern option tetrahedral"
  971. msgid "Tetrahedral"
  972. msgstr ""
  973. #: fdmprinter.def.json
  974. msgctxt "infill_pattern option concentric"
  975. msgid "Concentric"
  976. msgstr ""
  977. #: fdmprinter.def.json
  978. msgctxt "infill_pattern option concentric_3d"
  979. msgid "Concentric 3D"
  980. msgstr ""
  981. #: fdmprinter.def.json
  982. msgctxt "infill_pattern option zigzag"
  983. msgid "Zig Zag"
  984. msgstr ""
  985. #: fdmprinter.def.json
  986. msgctxt "infill_angles label"
  987. msgid "Infill Line Directions"
  988. msgstr ""
  989. #: fdmprinter.def.json
  990. msgctxt "infill_angles description"
  991. msgid ""
  992. "A list of integer line directions to use. Elements from the list are used "
  993. "sequentially as the layers progress and when the end of the list is reached, "
  994. "it starts at the beginning again. The list items are separated by commas and "
  995. "the whole list is contained in square brackets. Default is an empty list "
  996. "which means use the traditional default angles (45 and 135 degrees for the "
  997. "lines and zig zag patterns and 45 degrees for all other patterns)."
  998. msgstr ""
  999. #: fdmprinter.def.json
  1000. msgctxt "spaghetti_infill_enabled label"
  1001. msgid "Spaghetti Infill"
  1002. msgstr ""
  1003. #: fdmprinter.def.json
  1004. msgctxt "spaghetti_infill_enabled description"
  1005. msgid ""
  1006. "Print the infill every so often, so that the filament will curl up "
  1007. "chaotically inside the object. This reduces print time, but the behaviour is "
  1008. "rather unpredictable."
  1009. msgstr ""
  1010. #: fdmprinter.def.json
  1011. msgctxt "spaghetti_max_infill_angle label"
  1012. msgid "Spaghetti Maximum Infill Angle"
  1013. msgstr ""
  1014. #: fdmprinter.def.json
  1015. msgctxt "spaghetti_max_infill_angle description"
  1016. msgid ""
  1017. "The maximum angle w.r.t. the Z axis of the inside of the print for areas "
  1018. "which are to be filled with spaghetti infill afterwards. Lowering this value "
  1019. "causes more angled parts in your model to be filled on each layer."
  1020. msgstr ""
  1021. #: fdmprinter.def.json
  1022. msgctxt "spaghetti_max_height label"
  1023. msgid "Spaghetti Infill Maximum Height"
  1024. msgstr ""
  1025. #: fdmprinter.def.json
  1026. msgctxt "spaghetti_max_height description"
  1027. msgid ""
  1028. "The maximum height of inside space which can be combined and filled from the "
  1029. "top."
  1030. msgstr ""
  1031. #: fdmprinter.def.json
  1032. msgctxt "spaghetti_inset label"
  1033. msgid "Spaghetti Inset"
  1034. msgstr ""
  1035. #: fdmprinter.def.json
  1036. msgctxt "spaghetti_inset description"
  1037. msgid ""
  1038. "The offset from the walls from where the spaghetti infill will be printed."
  1039. msgstr ""
  1040. #: fdmprinter.def.json
  1041. msgctxt "spaghetti_flow label"
  1042. msgid "Spaghetti Flow"
  1043. msgstr ""
  1044. #: fdmprinter.def.json
  1045. msgctxt "spaghetti_flow description"
  1046. msgid ""
  1047. "Adjusts the density of the spaghetti infill. Note that the Infill Density "
  1048. "only controls the line spacing of the filling pattern, not the amount of "
  1049. "extrusion for spaghetti infill."
  1050. msgstr ""
  1051. #: fdmprinter.def.json
  1052. msgctxt "sub_div_rad_add label"
  1053. msgid "Cubic Subdivision Shell"
  1054. msgstr ""
  1055. #: fdmprinter.def.json
  1056. msgctxt "sub_div_rad_add description"
  1057. msgid ""
  1058. "An addition to the radius from the center of each cube to check for the "
  1059. "boundary of the model, as to decide whether this cube should be subdivided. "
  1060. "Larger values lead to a thicker shell of small cubes near the boundary of "
  1061. "the model."
  1062. msgstr ""
  1063. #: fdmprinter.def.json
  1064. msgctxt "infill_overlap label"
  1065. msgid "Infill Overlap Percentage"
  1066. msgstr ""
  1067. #: fdmprinter.def.json
  1068. msgctxt "infill_overlap description"
  1069. msgid ""
  1070. "The amount of overlap between the infill and the walls. A slight overlap "
  1071. "allows the walls to connect firmly to the infill."
  1072. msgstr ""
  1073. #: fdmprinter.def.json
  1074. msgctxt "infill_overlap_mm label"
  1075. msgid "Infill Overlap"
  1076. msgstr ""
  1077. #: fdmprinter.def.json
  1078. msgctxt "infill_overlap_mm description"
  1079. msgid ""
  1080. "The amount of overlap between the infill and the walls. A slight overlap "
  1081. "allows the walls to connect firmly to the infill."
  1082. msgstr ""
  1083. #: fdmprinter.def.json
  1084. msgctxt "skin_overlap label"
  1085. msgid "Skin Overlap Percentage"
  1086. msgstr ""
  1087. #: fdmprinter.def.json
  1088. msgctxt "skin_overlap description"
  1089. msgid ""
  1090. "The amount of overlap between the skin and the walls. A slight overlap "
  1091. "allows the walls to connect firmly to the skin."
  1092. msgstr ""
  1093. #: fdmprinter.def.json
  1094. msgctxt "skin_overlap_mm label"
  1095. msgid "Skin Overlap"
  1096. msgstr ""
  1097. #: fdmprinter.def.json
  1098. msgctxt "skin_overlap_mm description"
  1099. msgid ""
  1100. "The amount of overlap between the skin and the walls. A slight overlap "
  1101. "allows the walls to connect firmly to the skin."
  1102. msgstr ""
  1103. #: fdmprinter.def.json
  1104. msgctxt "infill_wipe_dist label"
  1105. msgid "Infill Wipe Distance"
  1106. msgstr ""
  1107. #: fdmprinter.def.json
  1108. msgctxt "infill_wipe_dist description"
  1109. msgid ""
  1110. "Distance of a travel move inserted after every infill line, to make the "
  1111. "infill stick to the walls better. This option is similar to infill overlap, "
  1112. "but without extrusion and only on one end of the infill line."
  1113. msgstr ""
  1114. #: fdmprinter.def.json
  1115. msgctxt "infill_sparse_thickness label"
  1116. msgid "Infill Layer Thickness"
  1117. msgstr ""
  1118. #: fdmprinter.def.json
  1119. msgctxt "infill_sparse_thickness description"
  1120. msgid ""
  1121. "The thickness per layer of infill material. This value should always be a "
  1122. "multiple of the layer height and is otherwise rounded."
  1123. msgstr ""
  1124. #: fdmprinter.def.json
  1125. msgctxt "gradual_infill_steps label"
  1126. msgid "Gradual Infill Steps"
  1127. msgstr ""
  1128. #: fdmprinter.def.json
  1129. msgctxt "gradual_infill_steps description"
  1130. msgid ""
  1131. "Number of times to reduce the infill density by half when getting further "
  1132. "below top surfaces. Areas which are closer to top surfaces get a higher "
  1133. "density, up to the Infill Density."
  1134. msgstr ""
  1135. #: fdmprinter.def.json
  1136. msgctxt "gradual_infill_step_height label"
  1137. msgid "Gradual Infill Step Height"
  1138. msgstr ""
  1139. #: fdmprinter.def.json
  1140. msgctxt "gradual_infill_step_height description"
  1141. msgid ""
  1142. "The height of infill of a given density before switching to half the density."
  1143. msgstr ""
  1144. #: fdmprinter.def.json
  1145. msgctxt "infill_before_walls label"
  1146. msgid "Infill Before Walls"
  1147. msgstr ""
  1148. #: fdmprinter.def.json
  1149. msgctxt "infill_before_walls description"
  1150. msgid ""
  1151. "Print the infill before printing the walls. Printing the walls first may "
  1152. "lead to more accurate walls, but overhangs print worse. Printing the infill "
  1153. "first leads to sturdier walls, but the infill pattern might sometimes show "
  1154. "through the surface."
  1155. msgstr ""
  1156. #: fdmprinter.def.json
  1157. msgctxt "min_infill_area label"
  1158. msgid "Minimum Infill Area"
  1159. msgstr ""
  1160. #: fdmprinter.def.json
  1161. msgctxt "min_infill_area description"
  1162. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1163. msgstr ""
  1164. #: fdmprinter.def.json
  1165. msgctxt "expand_skins_into_infill label"
  1166. msgid "Expand Skins Into Infill"
  1167. msgstr ""
  1168. #: fdmprinter.def.json
  1169. msgctxt "expand_skins_into_infill description"
  1170. msgid ""
  1171. "Expand skin areas of top and/or bottom skin of flat surfaces. By default, "
  1172. "skins stop under the wall lines that surround infill but this can lead to "
  1173. "holes appearing when the infill density is low. This setting extends the "
  1174. "skins beyond the wall lines so that the infill on the next layer rests on "
  1175. "skin."
  1176. msgstr ""
  1177. #: fdmprinter.def.json
  1178. msgctxt "expand_upper_skins label"
  1179. msgid "Expand Top Skins Into Infill"
  1180. msgstr ""
  1181. #: fdmprinter.def.json
  1182. msgctxt "expand_upper_skins description"
  1183. msgid ""
  1184. "Expand the top skin areas (areas with air above) so that they support infill "
  1185. "above."
  1186. msgstr ""
  1187. #: fdmprinter.def.json
  1188. msgctxt "expand_lower_skins label"
  1189. msgid "Expand Bottom Skins Into Infill"
  1190. msgstr ""
  1191. #: fdmprinter.def.json
  1192. msgctxt "expand_lower_skins description"
  1193. msgid ""
  1194. "Expand the bottom skin areas (areas with air below) so that they are "
  1195. "anchored by the infill layers above and below."
  1196. msgstr ""
  1197. #: fdmprinter.def.json
  1198. msgctxt "expand_skins_expand_distance label"
  1199. msgid "Skin Expand Distance"
  1200. msgstr ""
  1201. #: fdmprinter.def.json
  1202. msgctxt "expand_skins_expand_distance description"
  1203. msgid ""
  1204. "The distance the skins are expanded into the infill. The default distance is "
  1205. "enough to bridge the gap between the infill lines and will stop holes "
  1206. "appearing in the skin where it meets the wall when the infill density is "
  1207. "low. A smaller distance will often be sufficient."
  1208. msgstr ""
  1209. #: fdmprinter.def.json
  1210. msgctxt "max_skin_angle_for_expansion label"
  1211. msgid "Maximum Skin Angle for Expansion"
  1212. msgstr ""
  1213. #: fdmprinter.def.json
  1214. msgctxt "max_skin_angle_for_expansion description"
  1215. msgid ""
  1216. "Top and/or bottom surfaces of your object with an angle larger than this "
  1217. "setting, won't have their top/bottom skin expanded. This avoids expanding "
  1218. "the narrow skin areas that are created when the model surface has a near "
  1219. "vertical slope. An angle of 0° is horizontal, while an angle of 90° is "
  1220. "vertical."
  1221. msgstr ""
  1222. #: fdmprinter.def.json
  1223. msgctxt "min_skin_width_for_expansion label"
  1224. msgid "Minimum Skin Width for Expansion"
  1225. msgstr ""
  1226. #: fdmprinter.def.json
  1227. msgctxt "min_skin_width_for_expansion description"
  1228. msgid ""
  1229. "Skin areas narrower than this are not expanded. This avoids expanding the "
  1230. "narrow skin areas that are created when the model surface has a slope close "
  1231. "to the vertical."
  1232. msgstr ""
  1233. #: fdmprinter.def.json
  1234. msgctxt "material label"
  1235. msgid "Material"
  1236. msgstr ""
  1237. #: fdmprinter.def.json
  1238. msgctxt "material description"
  1239. msgid "Material"
  1240. msgstr ""
  1241. #: fdmprinter.def.json
  1242. msgctxt "material_flow_dependent_temperature label"
  1243. msgid "Auto Temperature"
  1244. msgstr ""
  1245. #: fdmprinter.def.json
  1246. msgctxt "material_flow_dependent_temperature description"
  1247. msgid ""
  1248. "Change the temperature for each layer automatically with the average flow "
  1249. "speed of that layer."
  1250. msgstr ""
  1251. #: fdmprinter.def.json
  1252. msgctxt "default_material_print_temperature label"
  1253. msgid "Default Printing Temperature"
  1254. msgstr ""
  1255. #: fdmprinter.def.json
  1256. msgctxt "default_material_print_temperature description"
  1257. msgid ""
  1258. "The default temperature used for printing. This should be the \"base\" "
  1259. "temperature of a material. All other print temperatures should use offsets "
  1260. "based on this value"
  1261. msgstr ""
  1262. #: fdmprinter.def.json
  1263. msgctxt "material_print_temperature label"
  1264. msgid "Printing Temperature"
  1265. msgstr ""
  1266. #: fdmprinter.def.json
  1267. msgctxt "material_print_temperature description"
  1268. msgid "The temperature used for printing."
  1269. msgstr ""
  1270. #: fdmprinter.def.json
  1271. msgctxt "material_print_temperature_layer_0 label"
  1272. msgid "Printing Temperature Initial Layer"
  1273. msgstr ""
  1274. #: fdmprinter.def.json
  1275. msgctxt "material_print_temperature_layer_0 description"
  1276. msgid ""
  1277. "The temperature used for printing the first layer. Set at 0 to disable "
  1278. "special handling of the initial layer."
  1279. msgstr ""
  1280. #: fdmprinter.def.json
  1281. msgctxt "material_initial_print_temperature label"
  1282. msgid "Initial Printing Temperature"
  1283. msgstr ""
  1284. #: fdmprinter.def.json
  1285. msgctxt "material_initial_print_temperature description"
  1286. msgid ""
  1287. "The minimal temperature while heating up to the Printing Temperature at "
  1288. "which printing can already start."
  1289. msgstr ""
  1290. #: fdmprinter.def.json
  1291. msgctxt "material_final_print_temperature label"
  1292. msgid "Final Printing Temperature"
  1293. msgstr ""
  1294. #: fdmprinter.def.json
  1295. msgctxt "material_final_print_temperature description"
  1296. msgid ""
  1297. "The temperature to which to already start cooling down just before the end "
  1298. "of printing."
  1299. msgstr ""
  1300. #: fdmprinter.def.json
  1301. msgctxt "material_flow_temp_graph label"
  1302. msgid "Flow Temperature Graph"
  1303. msgstr ""
  1304. #: fdmprinter.def.json
  1305. msgctxt "material_flow_temp_graph description"
  1306. msgid ""
  1307. "Data linking material flow (in mm3 per second) to temperature (degrees "
  1308. "Celsius)."
  1309. msgstr ""
  1310. #: fdmprinter.def.json
  1311. msgctxt "material_extrusion_cool_down_speed label"
  1312. msgid "Extrusion Cool Down Speed Modifier"
  1313. msgstr ""
  1314. #: fdmprinter.def.json
  1315. msgctxt "material_extrusion_cool_down_speed description"
  1316. msgid ""
  1317. "The extra speed by which the nozzle cools while extruding. The same value is "
  1318. "used to signify the heat up speed lost when heating up while extruding."
  1319. msgstr ""
  1320. #: fdmprinter.def.json
  1321. msgctxt "material_bed_temperature label"
  1322. msgid "Build Plate Temperature"
  1323. msgstr ""
  1324. #: fdmprinter.def.json
  1325. msgctxt "material_bed_temperature description"
  1326. msgid ""
  1327. "The temperature used for the heated build plate. If this is 0, the bed will "
  1328. "not heat up for this print."
  1329. msgstr ""
  1330. #: fdmprinter.def.json
  1331. msgctxt "material_bed_temperature_layer_0 label"
  1332. msgid "Build Plate Temperature Initial Layer"
  1333. msgstr ""
  1334. #: fdmprinter.def.json
  1335. msgctxt "material_bed_temperature_layer_0 description"
  1336. msgid "The temperature used for the heated build plate at the first layer."
  1337. msgstr ""
  1338. #: fdmprinter.def.json
  1339. msgctxt "material_diameter label"
  1340. msgid "Diameter"
  1341. msgstr ""
  1342. #: fdmprinter.def.json
  1343. msgctxt "material_diameter description"
  1344. msgid ""
  1345. "Adjusts the diameter of the filament used. Match this value with the "
  1346. "diameter of the used filament."
  1347. msgstr ""
  1348. #: fdmprinter.def.json
  1349. msgctxt "material_flow label"
  1350. msgid "Flow"
  1351. msgstr ""
  1352. #: fdmprinter.def.json
  1353. msgctxt "material_flow description"
  1354. msgid ""
  1355. "Flow compensation: the amount of material extruded is multiplied by this "
  1356. "value."
  1357. msgstr ""
  1358. #: fdmprinter.def.json
  1359. msgctxt "retraction_enable label"
  1360. msgid "Enable Retraction"
  1361. msgstr ""
  1362. #: fdmprinter.def.json
  1363. msgctxt "retraction_enable description"
  1364. msgid ""
  1365. "Retract the filament when the nozzle is moving over a non-printed area. "
  1366. msgstr ""
  1367. #: fdmprinter.def.json
  1368. msgctxt "retract_at_layer_change label"
  1369. msgid "Retract at Layer Change"
  1370. msgstr ""
  1371. #: fdmprinter.def.json
  1372. msgctxt "retract_at_layer_change description"
  1373. msgid "Retract the filament when the nozzle is moving to the next layer."
  1374. msgstr ""
  1375. #: fdmprinter.def.json
  1376. msgctxt "retraction_amount label"
  1377. msgid "Retraction Distance"
  1378. msgstr ""
  1379. #: fdmprinter.def.json
  1380. msgctxt "retraction_amount description"
  1381. msgid "The length of material retracted during a retraction move."
  1382. msgstr ""
  1383. #: fdmprinter.def.json
  1384. msgctxt "retraction_speed label"
  1385. msgid "Retraction Speed"
  1386. msgstr ""
  1387. #: fdmprinter.def.json
  1388. msgctxt "retraction_speed description"
  1389. msgid ""
  1390. "The speed at which the filament is retracted and primed during a retraction "
  1391. "move."
  1392. msgstr ""
  1393. #: fdmprinter.def.json
  1394. msgctxt "retraction_retract_speed label"
  1395. msgid "Retraction Retract Speed"
  1396. msgstr ""
  1397. #: fdmprinter.def.json
  1398. msgctxt "retraction_retract_speed description"
  1399. msgid "The speed at which the filament is retracted during a retraction move."
  1400. msgstr ""
  1401. #: fdmprinter.def.json
  1402. msgctxt "retraction_prime_speed label"
  1403. msgid "Retraction Prime Speed"
  1404. msgstr ""
  1405. #: fdmprinter.def.json
  1406. msgctxt "retraction_prime_speed description"
  1407. msgid "The speed at which the filament is primed during a retraction move."
  1408. msgstr ""
  1409. #: fdmprinter.def.json
  1410. msgctxt "retraction_extra_prime_amount label"
  1411. msgid "Retraction Extra Prime Amount"
  1412. msgstr ""
  1413. #: fdmprinter.def.json
  1414. msgctxt "retraction_extra_prime_amount description"
  1415. msgid ""
  1416. "Some material can ooze away during a travel move, which can be compensated "
  1417. "for here."
  1418. msgstr ""
  1419. #: fdmprinter.def.json
  1420. msgctxt "retraction_min_travel label"
  1421. msgid "Retraction Minimum Travel"
  1422. msgstr ""
  1423. #: fdmprinter.def.json
  1424. msgctxt "retraction_min_travel description"
  1425. msgid ""
  1426. "The minimum distance of travel needed for a retraction to happen at all. "
  1427. "This helps to get fewer retractions in a small area."
  1428. msgstr ""
  1429. #: fdmprinter.def.json
  1430. msgctxt "retraction_count_max label"
  1431. msgid "Maximum Retraction Count"
  1432. msgstr ""
  1433. #: fdmprinter.def.json
  1434. msgctxt "retraction_count_max description"
  1435. msgid ""
  1436. "This setting limits the number of retractions occurring within the minimum "
  1437. "extrusion distance window. Further retractions within this window will be "
  1438. "ignored. This avoids retracting repeatedly on the same piece of filament, as "
  1439. "that can flatten the filament and cause grinding issues."
  1440. msgstr ""
  1441. #: fdmprinter.def.json
  1442. msgctxt "retraction_extrusion_window label"
  1443. msgid "Minimum Extrusion Distance Window"
  1444. msgstr ""
  1445. #: fdmprinter.def.json
  1446. msgctxt "retraction_extrusion_window description"
  1447. msgid ""
  1448. "The window in which the maximum retraction count is enforced. This value "
  1449. "should be approximately the same as the retraction distance, so that "
  1450. "effectively the number of times a retraction passes the same patch of "
  1451. "material is limited."
  1452. msgstr ""
  1453. #: fdmprinter.def.json
  1454. msgctxt "material_standby_temperature label"
  1455. msgid "Standby Temperature"
  1456. msgstr ""
  1457. #: fdmprinter.def.json
  1458. msgctxt "material_standby_temperature description"
  1459. msgid ""
  1460. "The temperature of the nozzle when another nozzle is currently used for "
  1461. "printing."
  1462. msgstr ""
  1463. #: fdmprinter.def.json
  1464. msgctxt "switch_extruder_retraction_amount label"
  1465. msgid "Nozzle Switch Retraction Distance"
  1466. msgstr ""
  1467. #: fdmprinter.def.json
  1468. msgctxt "switch_extruder_retraction_amount description"
  1469. msgid ""
  1470. "The amount of retraction: Set at 0 for no retraction at all. This should "
  1471. "generally be the same as the length of the heat zone."
  1472. msgstr ""
  1473. #: fdmprinter.def.json
  1474. msgctxt "switch_extruder_retraction_speeds label"
  1475. msgid "Nozzle Switch Retraction Speed"
  1476. msgstr ""
  1477. #: fdmprinter.def.json
  1478. msgctxt "switch_extruder_retraction_speeds description"
  1479. msgid ""
  1480. "The speed at which the filament is retracted. A higher retraction speed "
  1481. "works better, but a very high retraction speed can lead to filament grinding."
  1482. msgstr ""
  1483. #: fdmprinter.def.json
  1484. msgctxt "switch_extruder_retraction_speed label"
  1485. msgid "Nozzle Switch Retract Speed"
  1486. msgstr ""
  1487. #: fdmprinter.def.json
  1488. msgctxt "switch_extruder_retraction_speed description"
  1489. msgid ""
  1490. "The speed at which the filament is retracted during a nozzle switch retract."
  1491. msgstr ""
  1492. #: fdmprinter.def.json
  1493. msgctxt "switch_extruder_prime_speed label"
  1494. msgid "Nozzle Switch Prime Speed"
  1495. msgstr ""
  1496. #: fdmprinter.def.json
  1497. msgctxt "switch_extruder_prime_speed description"
  1498. msgid ""
  1499. "The speed at which the filament is pushed back after a nozzle switch "
  1500. "retraction."
  1501. msgstr ""
  1502. #: fdmprinter.def.json
  1503. msgctxt "speed label"
  1504. msgid "Speed"
  1505. msgstr ""
  1506. #: fdmprinter.def.json
  1507. msgctxt "speed description"
  1508. msgid "Speed"
  1509. msgstr ""
  1510. #: fdmprinter.def.json
  1511. msgctxt "speed_print label"
  1512. msgid "Print Speed"
  1513. msgstr ""
  1514. #: fdmprinter.def.json
  1515. msgctxt "speed_print description"
  1516. msgid "The speed at which printing happens."
  1517. msgstr ""
  1518. #: fdmprinter.def.json
  1519. msgctxt "speed_infill label"
  1520. msgid "Infill Speed"
  1521. msgstr ""
  1522. #: fdmprinter.def.json
  1523. msgctxt "speed_infill description"
  1524. msgid "The speed at which infill is printed."
  1525. msgstr ""
  1526. #: fdmprinter.def.json
  1527. msgctxt "speed_wall label"
  1528. msgid "Wall Speed"
  1529. msgstr ""
  1530. #: fdmprinter.def.json
  1531. msgctxt "speed_wall description"
  1532. msgid "The speed at which the walls are printed."
  1533. msgstr ""
  1534. #: fdmprinter.def.json
  1535. msgctxt "speed_wall_0 label"
  1536. msgid "Outer Wall Speed"
  1537. msgstr ""
  1538. #: fdmprinter.def.json
  1539. msgctxt "speed_wall_0 description"
  1540. msgid ""
  1541. "The speed at which the outermost walls are printed. Printing the outer wall "
  1542. "at a lower speed improves the final skin quality. However, having a large "
  1543. "difference between the inner wall speed and the outer wall speed will affect "
  1544. "quality in a negative way."
  1545. msgstr ""
  1546. #: fdmprinter.def.json
  1547. msgctxt "speed_wall_x label"
  1548. msgid "Inner Wall Speed"
  1549. msgstr ""
  1550. #: fdmprinter.def.json
  1551. msgctxt "speed_wall_x description"
  1552. msgid ""
  1553. "The speed at which all inner walls are printed. Printing the inner wall "
  1554. "faster than the outer wall will reduce printing time. It works well to set "
  1555. "this in between the outer wall speed and the infill speed."
  1556. msgstr ""
  1557. #: fdmprinter.def.json
  1558. msgctxt "speed_topbottom label"
  1559. msgid "Top/Bottom Speed"
  1560. msgstr ""
  1561. #: fdmprinter.def.json
  1562. msgctxt "speed_topbottom description"
  1563. msgid "The speed at which top/bottom layers are printed."
  1564. msgstr ""
  1565. #: fdmprinter.def.json
  1566. msgctxt "speed_support label"
  1567. msgid "Support Speed"
  1568. msgstr ""
  1569. #: fdmprinter.def.json
  1570. msgctxt "speed_support description"
  1571. msgid ""
  1572. "The speed at which the support structure is printed. Printing support at "
  1573. "higher speeds can greatly reduce printing time. The surface quality of the "
  1574. "support structure is not important since it is removed after printing."
  1575. msgstr ""
  1576. #: fdmprinter.def.json
  1577. msgctxt "speed_support_infill label"
  1578. msgid "Support Infill Speed"
  1579. msgstr ""
  1580. #: fdmprinter.def.json
  1581. msgctxt "speed_support_infill description"
  1582. msgid ""
  1583. "The speed at which the infill of support is printed. Printing the infill at "
  1584. "lower speeds improves stability."
  1585. msgstr ""
  1586. #: fdmprinter.def.json
  1587. msgctxt "speed_support_interface label"
  1588. msgid "Support Interface Speed"
  1589. msgstr ""
  1590. #: fdmprinter.def.json
  1591. msgctxt "speed_support_interface description"
  1592. msgid ""
  1593. "The speed at which the roofs and floors of support are printed. Printing "
  1594. "them at lower speeds can improve overhang quality."
  1595. msgstr ""
  1596. #: fdmprinter.def.json
  1597. msgctxt "speed_support_roof label"
  1598. msgid "Support Roof Speed"
  1599. msgstr ""
  1600. #: fdmprinter.def.json
  1601. msgctxt "speed_support_roof description"
  1602. msgid ""
  1603. "The speed at which the roofs of support are printed. Printing them at lower "
  1604. "speeds can improve overhang quality."
  1605. msgstr ""
  1606. #: fdmprinter.def.json
  1607. msgctxt "speed_support_bottom label"
  1608. msgid "Support Floor Speed"
  1609. msgstr ""
  1610. #: fdmprinter.def.json
  1611. msgctxt "speed_support_bottom description"
  1612. msgid ""
  1613. "The speed at which the floor of support is printed. Printing it at lower "
  1614. "speed can improve adhesion of support on top of your model."
  1615. msgstr ""
  1616. #: fdmprinter.def.json
  1617. msgctxt "speed_prime_tower label"
  1618. msgid "Prime Tower Speed"
  1619. msgstr ""
  1620. #: fdmprinter.def.json
  1621. msgctxt "speed_prime_tower description"
  1622. msgid ""
  1623. "The speed at which the prime tower is printed. Printing the prime tower "
  1624. "slower can make it more stable when the adhesion between the different "
  1625. "filaments is suboptimal."
  1626. msgstr ""
  1627. #: fdmprinter.def.json
  1628. msgctxt "speed_travel label"
  1629. msgid "Travel Speed"
  1630. msgstr ""
  1631. #: fdmprinter.def.json
  1632. msgctxt "speed_travel description"
  1633. msgid "The speed at which travel moves are made."
  1634. msgstr ""
  1635. #: fdmprinter.def.json
  1636. msgctxt "speed_layer_0 label"
  1637. msgid "Initial Layer Speed"
  1638. msgstr ""
  1639. #: fdmprinter.def.json
  1640. msgctxt "speed_layer_0 description"
  1641. msgid ""
  1642. "The speed for the initial layer. A lower value is advised to improve "
  1643. "adhesion to the build plate."
  1644. msgstr ""
  1645. #: fdmprinter.def.json
  1646. msgctxt "speed_print_layer_0 label"
  1647. msgid "Initial Layer Print Speed"
  1648. msgstr ""
  1649. #: fdmprinter.def.json
  1650. msgctxt "speed_print_layer_0 description"
  1651. msgid ""
  1652. "The speed of printing for the initial layer. A lower value is advised to "
  1653. "improve adhesion to the build plate."
  1654. msgstr ""
  1655. #: fdmprinter.def.json
  1656. msgctxt "speed_travel_layer_0 label"
  1657. msgid "Initial Layer Travel Speed"
  1658. msgstr ""
  1659. #: fdmprinter.def.json
  1660. msgctxt "speed_travel_layer_0 description"
  1661. msgid ""
  1662. "The speed of travel moves in the initial layer. A lower value is advised to "
  1663. "prevent pulling previously printed parts away from the build plate. The "
  1664. "value of this setting can automatically be calculated from the ratio between "
  1665. "the Travel Speed and the Print Speed."
  1666. msgstr ""
  1667. #: fdmprinter.def.json
  1668. msgctxt "skirt_brim_speed label"
  1669. msgid "Skirt/Brim Speed"
  1670. msgstr ""
  1671. #: fdmprinter.def.json
  1672. msgctxt "skirt_brim_speed description"
  1673. msgid ""
  1674. "The speed at which the skirt and brim are printed. Normally this is done at "
  1675. "the initial layer speed, but sometimes you might want to print the skirt or "
  1676. "brim at a different speed."
  1677. msgstr ""
  1678. #: fdmprinter.def.json
  1679. msgctxt "max_feedrate_z_override label"
  1680. msgid "Maximum Z Speed"
  1681. msgstr ""
  1682. #: fdmprinter.def.json
  1683. msgctxt "max_feedrate_z_override description"
  1684. msgid ""
  1685. "The maximum speed with which the build plate is moved. Setting this to zero "
  1686. "causes the print to use the firmware defaults for the maximum z speed."
  1687. msgstr ""
  1688. #: fdmprinter.def.json
  1689. msgctxt "speed_slowdown_layers label"
  1690. msgid "Number of Slower Layers"
  1691. msgstr ""
  1692. #: fdmprinter.def.json
  1693. msgctxt "speed_slowdown_layers description"
  1694. msgid ""
  1695. "The first few layers are printed slower than the rest of the model, to get "
  1696. "better adhesion to the build plate and improve the overall success rate of "
  1697. "prints. The speed is gradually increased over these layers."
  1698. msgstr ""
  1699. #: fdmprinter.def.json
  1700. msgctxt "speed_equalize_flow_enabled label"
  1701. msgid "Equalize Filament Flow"
  1702. msgstr ""
  1703. #: fdmprinter.def.json
  1704. msgctxt "speed_equalize_flow_enabled description"
  1705. msgid ""
  1706. "Print thinner than normal lines faster so that the amount of material "
  1707. "extruded per second remains the same. Thin pieces in your model might "
  1708. "require lines printed with smaller line width than provided in the settings. "
  1709. "This setting controls the speed changes for such lines."
  1710. msgstr ""
  1711. #: fdmprinter.def.json
  1712. msgctxt "speed_equalize_flow_max label"
  1713. msgid "Maximum Speed for Flow Equalization"
  1714. msgstr ""
  1715. #: fdmprinter.def.json
  1716. msgctxt "speed_equalize_flow_max description"
  1717. msgid ""
  1718. "Maximum print speed when adjusting the print speed in order to equalize flow."
  1719. msgstr ""
  1720. #: fdmprinter.def.json
  1721. msgctxt "acceleration_enabled label"
  1722. msgid "Enable Acceleration Control"
  1723. msgstr ""
  1724. #: fdmprinter.def.json
  1725. msgctxt "acceleration_enabled description"
  1726. msgid ""
  1727. "Enables adjusting the print head acceleration. Increasing the accelerations "
  1728. "can reduce printing time at the cost of print quality."
  1729. msgstr ""
  1730. #: fdmprinter.def.json
  1731. msgctxt "acceleration_print label"
  1732. msgid "Print Acceleration"
  1733. msgstr ""
  1734. #: fdmprinter.def.json
  1735. msgctxt "acceleration_print description"
  1736. msgid "The acceleration with which printing happens."
  1737. msgstr ""
  1738. #: fdmprinter.def.json
  1739. msgctxt "acceleration_infill label"
  1740. msgid "Infill Acceleration"
  1741. msgstr ""
  1742. #: fdmprinter.def.json
  1743. msgctxt "acceleration_infill description"
  1744. msgid "The acceleration with which infill is printed."
  1745. msgstr ""
  1746. #: fdmprinter.def.json
  1747. msgctxt "acceleration_wall label"
  1748. msgid "Wall Acceleration"
  1749. msgstr ""
  1750. #: fdmprinter.def.json
  1751. msgctxt "acceleration_wall description"
  1752. msgid "The acceleration with which the walls are printed."
  1753. msgstr ""
  1754. #: fdmprinter.def.json
  1755. msgctxt "acceleration_wall_0 label"
  1756. msgid "Outer Wall Acceleration"
  1757. msgstr ""
  1758. #: fdmprinter.def.json
  1759. msgctxt "acceleration_wall_0 description"
  1760. msgid "The acceleration with which the outermost walls are printed."
  1761. msgstr ""
  1762. #: fdmprinter.def.json
  1763. msgctxt "acceleration_wall_x label"
  1764. msgid "Inner Wall Acceleration"
  1765. msgstr ""
  1766. #: fdmprinter.def.json
  1767. msgctxt "acceleration_wall_x description"
  1768. msgid "The acceleration with which all inner walls are printed."
  1769. msgstr ""
  1770. #: fdmprinter.def.json
  1771. msgctxt "acceleration_topbottom label"
  1772. msgid "Top/Bottom Acceleration"
  1773. msgstr ""
  1774. #: fdmprinter.def.json
  1775. msgctxt "acceleration_topbottom description"
  1776. msgid "The acceleration with which top/bottom layers are printed."
  1777. msgstr ""
  1778. #: fdmprinter.def.json
  1779. msgctxt "acceleration_support label"
  1780. msgid "Support Acceleration"
  1781. msgstr ""
  1782. #: fdmprinter.def.json
  1783. msgctxt "acceleration_support description"
  1784. msgid "The acceleration with which the support structure is printed."
  1785. msgstr ""
  1786. #: fdmprinter.def.json
  1787. msgctxt "acceleration_support_infill label"
  1788. msgid "Support Infill Acceleration"
  1789. msgstr ""
  1790. #: fdmprinter.def.json
  1791. msgctxt "acceleration_support_infill description"
  1792. msgid "The acceleration with which the infill of support is printed."
  1793. msgstr ""
  1794. #: fdmprinter.def.json
  1795. msgctxt "acceleration_support_interface label"
  1796. msgid "Support Interface Acceleration"
  1797. msgstr ""
  1798. #: fdmprinter.def.json
  1799. msgctxt "acceleration_support_interface description"
  1800. msgid ""
  1801. "The acceleration with which the roofs and floors of support are printed. "
  1802. "Printing them at lower acceleration can improve overhang quality."
  1803. msgstr ""
  1804. #: fdmprinter.def.json
  1805. msgctxt "acceleration_support_roof label"
  1806. msgid "Support Roof Acceleration"
  1807. msgstr ""
  1808. #: fdmprinter.def.json
  1809. msgctxt "acceleration_support_roof description"
  1810. msgid ""
  1811. "The acceleration with which the roofs of support are printed. Printing them "
  1812. "at lower acceleration can improve overhang quality."
  1813. msgstr ""
  1814. #: fdmprinter.def.json
  1815. msgctxt "acceleration_support_bottom label"
  1816. msgid "Support Floor Acceleration"
  1817. msgstr ""
  1818. #: fdmprinter.def.json
  1819. msgctxt "acceleration_support_bottom description"
  1820. msgid ""
  1821. "The acceleration with which the floors of support are printed. Printing them "
  1822. "at lower acceleration can improve adhesion of support on top of your model."
  1823. msgstr ""
  1824. #: fdmprinter.def.json
  1825. msgctxt "acceleration_prime_tower label"
  1826. msgid "Prime Tower Acceleration"
  1827. msgstr ""
  1828. #: fdmprinter.def.json
  1829. msgctxt "acceleration_prime_tower description"
  1830. msgid "The acceleration with which the prime tower is printed."
  1831. msgstr ""
  1832. #: fdmprinter.def.json
  1833. msgctxt "acceleration_travel label"
  1834. msgid "Travel Acceleration"
  1835. msgstr ""
  1836. #: fdmprinter.def.json
  1837. msgctxt "acceleration_travel description"
  1838. msgid "The acceleration with which travel moves are made."
  1839. msgstr ""
  1840. #: fdmprinter.def.json
  1841. msgctxt "acceleration_layer_0 label"
  1842. msgid "Initial Layer Acceleration"
  1843. msgstr ""
  1844. #: fdmprinter.def.json
  1845. msgctxt "acceleration_layer_0 description"
  1846. msgid "The acceleration for the initial layer."
  1847. msgstr ""
  1848. #: fdmprinter.def.json
  1849. msgctxt "acceleration_print_layer_0 label"
  1850. msgid "Initial Layer Print Acceleration"
  1851. msgstr ""
  1852. #: fdmprinter.def.json
  1853. msgctxt "acceleration_print_layer_0 description"
  1854. msgid "The acceleration during the printing of the initial layer."
  1855. msgstr ""
  1856. #: fdmprinter.def.json
  1857. msgctxt "acceleration_travel_layer_0 label"
  1858. msgid "Initial Layer Travel Acceleration"
  1859. msgstr ""
  1860. #: fdmprinter.def.json
  1861. msgctxt "acceleration_travel_layer_0 description"
  1862. msgid "The acceleration for travel moves in the initial layer."
  1863. msgstr ""
  1864. #: fdmprinter.def.json
  1865. msgctxt "acceleration_skirt_brim label"
  1866. msgid "Skirt/Brim Acceleration"
  1867. msgstr ""
  1868. #: fdmprinter.def.json
  1869. msgctxt "acceleration_skirt_brim description"
  1870. msgid ""
  1871. "The acceleration with which the skirt and brim are printed. Normally this is "
  1872. "done with the initial layer acceleration, but sometimes you might want to "
  1873. "print the skirt or brim at a different acceleration."
  1874. msgstr ""
  1875. #: fdmprinter.def.json
  1876. msgctxt "jerk_enabled label"
  1877. msgid "Enable Jerk Control"
  1878. msgstr ""
  1879. #: fdmprinter.def.json
  1880. msgctxt "jerk_enabled description"
  1881. msgid ""
  1882. "Enables adjusting the jerk of print head when the velocity in the X or Y "
  1883. "axis changes. Increasing the jerk can reduce printing time at the cost of "
  1884. "print quality."
  1885. msgstr ""
  1886. #: fdmprinter.def.json
  1887. msgctxt "jerk_print label"
  1888. msgid "Print Jerk"
  1889. msgstr ""
  1890. #: fdmprinter.def.json
  1891. msgctxt "jerk_print description"
  1892. msgid "The maximum instantaneous velocity change of the print head."
  1893. msgstr ""
  1894. #: fdmprinter.def.json
  1895. msgctxt "jerk_infill label"
  1896. msgid "Infill Jerk"
  1897. msgstr ""
  1898. #: fdmprinter.def.json
  1899. msgctxt "jerk_infill description"
  1900. msgid "The maximum instantaneous velocity change with which infill is printed."
  1901. msgstr ""
  1902. #: fdmprinter.def.json
  1903. msgctxt "jerk_wall label"
  1904. msgid "Wall Jerk"
  1905. msgstr ""
  1906. #: fdmprinter.def.json
  1907. msgctxt "jerk_wall description"
  1908. msgid ""
  1909. "The maximum instantaneous velocity change with which the walls are printed."
  1910. msgstr ""
  1911. #: fdmprinter.def.json
  1912. msgctxt "jerk_wall_0 label"
  1913. msgid "Outer Wall Jerk"
  1914. msgstr ""
  1915. #: fdmprinter.def.json
  1916. msgctxt "jerk_wall_0 description"
  1917. msgid ""
  1918. "The maximum instantaneous velocity change with which the outermost walls are "
  1919. "printed."
  1920. msgstr ""
  1921. #: fdmprinter.def.json
  1922. msgctxt "jerk_wall_x label"
  1923. msgid "Inner Wall Jerk"
  1924. msgstr ""
  1925. #: fdmprinter.def.json
  1926. msgctxt "jerk_wall_x description"
  1927. msgid ""
  1928. "The maximum instantaneous velocity change with which all inner walls are "
  1929. "printed."
  1930. msgstr ""
  1931. #: fdmprinter.def.json
  1932. msgctxt "jerk_topbottom label"
  1933. msgid "Top/Bottom Jerk"
  1934. msgstr ""
  1935. #: fdmprinter.def.json
  1936. msgctxt "jerk_topbottom description"
  1937. msgid ""
  1938. "The maximum instantaneous velocity change with which top/bottom layers are "
  1939. "printed."
  1940. msgstr ""
  1941. #: fdmprinter.def.json
  1942. msgctxt "jerk_support label"
  1943. msgid "Support Jerk"
  1944. msgstr ""
  1945. #: fdmprinter.def.json
  1946. msgctxt "jerk_support description"
  1947. msgid ""
  1948. "The maximum instantaneous velocity change with which the support structure "
  1949. "is printed."
  1950. msgstr ""
  1951. #: fdmprinter.def.json
  1952. msgctxt "jerk_support_infill label"
  1953. msgid "Support Infill Jerk"
  1954. msgstr ""
  1955. #: fdmprinter.def.json
  1956. msgctxt "jerk_support_infill description"
  1957. msgid ""
  1958. "The maximum instantaneous velocity change with which the infill of support "
  1959. "is printed."
  1960. msgstr ""
  1961. #: fdmprinter.def.json
  1962. msgctxt "jerk_support_interface label"
  1963. msgid "Support Interface Jerk"
  1964. msgstr ""
  1965. #: fdmprinter.def.json
  1966. msgctxt "jerk_support_interface description"
  1967. msgid ""
  1968. "The maximum instantaneous velocity change with which the roofs and floors of "
  1969. "support are printed."
  1970. msgstr ""
  1971. #: fdmprinter.def.json
  1972. msgctxt "jerk_support_roof label"
  1973. msgid "Support Roof Jerk"
  1974. msgstr ""
  1975. #: fdmprinter.def.json
  1976. msgctxt "jerk_support_roof description"
  1977. msgid ""
  1978. "The maximum instantaneous velocity change with which the roofs of support "
  1979. "are printed."
  1980. msgstr ""
  1981. #: fdmprinter.def.json
  1982. msgctxt "jerk_support_bottom label"
  1983. msgid "Support Floor Jerk"
  1984. msgstr ""
  1985. #: fdmprinter.def.json
  1986. msgctxt "jerk_support_bottom description"
  1987. msgid ""
  1988. "The maximum instantaneous velocity change with which the floors of support "
  1989. "are printed."
  1990. msgstr ""
  1991. #: fdmprinter.def.json
  1992. msgctxt "jerk_prime_tower label"
  1993. msgid "Prime Tower Jerk"
  1994. msgstr ""
  1995. #: fdmprinter.def.json
  1996. msgctxt "jerk_prime_tower description"
  1997. msgid ""
  1998. "The maximum instantaneous velocity change with which the prime tower is "
  1999. "printed."
  2000. msgstr ""
  2001. #: fdmprinter.def.json
  2002. msgctxt "jerk_travel label"
  2003. msgid "Travel Jerk"
  2004. msgstr ""
  2005. #: fdmprinter.def.json
  2006. msgctxt "jerk_travel description"
  2007. msgid ""
  2008. "The maximum instantaneous velocity change with which travel moves are made."
  2009. msgstr ""
  2010. #: fdmprinter.def.json
  2011. msgctxt "jerk_layer_0 label"
  2012. msgid "Initial Layer Jerk"
  2013. msgstr ""
  2014. #: fdmprinter.def.json
  2015. msgctxt "jerk_layer_0 description"
  2016. msgid "The print maximum instantaneous velocity change for the initial layer."
  2017. msgstr ""
  2018. #: fdmprinter.def.json
  2019. msgctxt "jerk_print_layer_0 label"
  2020. msgid "Initial Layer Print Jerk"
  2021. msgstr ""
  2022. #: fdmprinter.def.json
  2023. msgctxt "jerk_print_layer_0 description"
  2024. msgid ""
  2025. "The maximum instantaneous velocity change during the printing of the initial "
  2026. "layer."
  2027. msgstr ""
  2028. #: fdmprinter.def.json
  2029. msgctxt "jerk_travel_layer_0 label"
  2030. msgid "Initial Layer Travel Jerk"
  2031. msgstr ""
  2032. #: fdmprinter.def.json
  2033. msgctxt "jerk_travel_layer_0 description"
  2034. msgid "The acceleration for travel moves in the initial layer."
  2035. msgstr ""
  2036. #: fdmprinter.def.json
  2037. msgctxt "jerk_skirt_brim label"
  2038. msgid "Skirt/Brim Jerk"
  2039. msgstr ""
  2040. #: fdmprinter.def.json
  2041. msgctxt "jerk_skirt_brim description"
  2042. msgid ""
  2043. "The maximum instantaneous velocity change with which the skirt and brim are "
  2044. "printed."
  2045. msgstr ""
  2046. #: fdmprinter.def.json
  2047. msgctxt "travel label"
  2048. msgid "Travel"
  2049. msgstr ""
  2050. #: fdmprinter.def.json
  2051. msgctxt "travel description"
  2052. msgid "travel"
  2053. msgstr ""
  2054. #: fdmprinter.def.json
  2055. msgctxt "retraction_combing label"
  2056. msgid "Combing Mode"
  2057. msgstr ""
  2058. #: fdmprinter.def.json
  2059. msgctxt "retraction_combing description"
  2060. msgid ""
  2061. "Combing keeps the nozzle within already printed areas when traveling. This "
  2062. "results in slightly longer travel moves but reduces the need for "
  2063. "retractions. If combing is off, the material will retract and the nozzle "
  2064. "moves in a straight line to the next point. It is also possible to avoid "
  2065. "combing over top/bottom skin areas by combing within the infill only."
  2066. msgstr ""
  2067. #: fdmprinter.def.json
  2068. msgctxt "retraction_combing option off"
  2069. msgid "Off"
  2070. msgstr ""
  2071. #: fdmprinter.def.json
  2072. msgctxt "retraction_combing option all"
  2073. msgid "All"
  2074. msgstr ""
  2075. #: fdmprinter.def.json
  2076. msgctxt "retraction_combing option noskin"
  2077. msgid "No Skin"
  2078. msgstr ""
  2079. #: fdmprinter.def.json
  2080. msgctxt "travel_retract_before_outer_wall label"
  2081. msgid "Retract Before Outer Wall"
  2082. msgstr ""
  2083. #: fdmprinter.def.json
  2084. msgctxt "travel_retract_before_outer_wall description"
  2085. msgid "Always retract when moving to start an outer wall."
  2086. msgstr ""
  2087. #: fdmprinter.def.json
  2088. msgctxt "travel_avoid_other_parts label"
  2089. msgid "Avoid Printed Parts When Traveling"
  2090. msgstr ""
  2091. #: fdmprinter.def.json
  2092. msgctxt "travel_avoid_other_parts description"
  2093. msgid ""
  2094. "The nozzle avoids already printed parts when traveling. This option is only "
  2095. "available when combing is enabled."
  2096. msgstr ""
  2097. #: fdmprinter.def.json
  2098. msgctxt "travel_avoid_distance label"
  2099. msgid "Travel Avoid Distance"
  2100. msgstr ""
  2101. #: fdmprinter.def.json
  2102. msgctxt "travel_avoid_distance description"
  2103. msgid ""
  2104. "The distance between the nozzle and already printed parts when avoiding "
  2105. "during travel moves."
  2106. msgstr ""
  2107. #: fdmprinter.def.json
  2108. msgctxt "start_layers_at_same_position label"
  2109. msgid "Start Layers with the Same Part"
  2110. msgstr ""
  2111. #: fdmprinter.def.json
  2112. msgctxt "start_layers_at_same_position description"
  2113. msgid ""
  2114. "In each layer start with printing the object near the same point, so that we "
  2115. "don't start a new layer with printing the piece which the previous layer "
  2116. "ended with. This makes for better overhangs and small parts, but increases "
  2117. "printing time."
  2118. msgstr ""
  2119. #: fdmprinter.def.json
  2120. msgctxt "layer_start_x label"
  2121. msgid "Layer Start X"
  2122. msgstr ""
  2123. #: fdmprinter.def.json
  2124. msgctxt "layer_start_x description"
  2125. msgid ""
  2126. "The X coordinate of the position near where to find the part to start "
  2127. "printing each layer."
  2128. msgstr ""
  2129. #: fdmprinter.def.json
  2130. msgctxt "layer_start_y label"
  2131. msgid "Layer Start Y"
  2132. msgstr ""
  2133. #: fdmprinter.def.json
  2134. msgctxt "layer_start_y description"
  2135. msgid ""
  2136. "The Y coordinate of the position near where to find the part to start "
  2137. "printing each layer."
  2138. msgstr ""
  2139. #: fdmprinter.def.json
  2140. msgctxt "retraction_hop_enabled label"
  2141. msgid "Z Hop When Retracted"
  2142. msgstr ""
  2143. #: fdmprinter.def.json
  2144. msgctxt "retraction_hop_enabled description"
  2145. msgid ""
  2146. "Whenever a retraction is done, the build plate is lowered to create "
  2147. "clearance between the nozzle and the print. It prevents the nozzle from "
  2148. "hitting the print during travel moves, reducing the chance to knock the "
  2149. "print from the build plate."
  2150. msgstr ""
  2151. #: fdmprinter.def.json
  2152. msgctxt "retraction_hop_only_when_collides label"
  2153. msgid "Z Hop Only Over Printed Parts"
  2154. msgstr ""
  2155. #: fdmprinter.def.json
  2156. msgctxt "retraction_hop_only_when_collides description"
  2157. msgid ""
  2158. "Only perform a Z Hop when moving over printed parts which cannot be avoided "
  2159. "by horizontal motion by Avoid Printed Parts when Traveling."
  2160. msgstr ""
  2161. #: fdmprinter.def.json
  2162. msgctxt "retraction_hop label"
  2163. msgid "Z Hop Height"
  2164. msgstr ""
  2165. #: fdmprinter.def.json
  2166. msgctxt "retraction_hop description"
  2167. msgid "The height difference when performing a Z Hop."
  2168. msgstr ""
  2169. #: fdmprinter.def.json
  2170. msgctxt "retraction_hop_after_extruder_switch label"
  2171. msgid "Z Hop After Extruder Switch"
  2172. msgstr ""
  2173. #: fdmprinter.def.json
  2174. msgctxt "retraction_hop_after_extruder_switch description"
  2175. msgid ""
  2176. "After the machine switched from one extruder to the other, the build plate "
  2177. "is lowered to create clearance between the nozzle and the print. This "
  2178. "prevents the nozzle from leaving oozed material on the outside of a print."
  2179. msgstr ""
  2180. #: fdmprinter.def.json
  2181. msgctxt "cooling label"
  2182. msgid "Cooling"
  2183. msgstr ""
  2184. #: fdmprinter.def.json
  2185. msgctxt "cooling description"
  2186. msgid "Cooling"
  2187. msgstr ""
  2188. #: fdmprinter.def.json
  2189. msgctxt "cool_fan_enabled label"
  2190. msgid "Enable Print Cooling"
  2191. msgstr ""
  2192. #: fdmprinter.def.json
  2193. msgctxt "cool_fan_enabled description"
  2194. msgid ""
  2195. "Enables the print cooling fans while printing. The fans improve print "
  2196. "quality on layers with short layer times and bridging / overhangs."
  2197. msgstr ""
  2198. #: fdmprinter.def.json
  2199. msgctxt "cool_fan_speed label"
  2200. msgid "Fan Speed"
  2201. msgstr ""
  2202. #: fdmprinter.def.json
  2203. msgctxt "cool_fan_speed description"
  2204. msgid "The speed at which the print cooling fans spin."
  2205. msgstr ""
  2206. #: fdmprinter.def.json
  2207. msgctxt "cool_fan_speed_min label"
  2208. msgid "Regular Fan Speed"
  2209. msgstr ""
  2210. #: fdmprinter.def.json
  2211. msgctxt "cool_fan_speed_min description"
  2212. msgid ""
  2213. "The speed at which the fans spin before hitting the threshold. When a layer "
  2214. "prints faster than the threshold, the fan speed gradually inclines towards "
  2215. "the maximum fan speed."
  2216. msgstr ""
  2217. #: fdmprinter.def.json
  2218. msgctxt "cool_fan_speed_max label"
  2219. msgid "Maximum Fan Speed"
  2220. msgstr ""
  2221. #: fdmprinter.def.json
  2222. msgctxt "cool_fan_speed_max description"
  2223. msgid ""
  2224. "The speed at which the fans spin on the minimum layer time. The fan speed "
  2225. "gradually increases between the regular fan speed and maximum fan speed when "
  2226. "the threshold is hit."
  2227. msgstr ""
  2228. #: fdmprinter.def.json
  2229. msgctxt "cool_min_layer_time_fan_speed_max label"
  2230. msgid "Regular/Maximum Fan Speed Threshold"
  2231. msgstr ""
  2232. #: fdmprinter.def.json
  2233. msgctxt "cool_min_layer_time_fan_speed_max description"
  2234. msgid ""
  2235. "The layer time which sets the threshold between regular fan speed and "
  2236. "maximum fan speed. Layers that print slower than this time use regular fan "
  2237. "speed. For faster layers the fan speed gradually increases towards the "
  2238. "maximum fan speed."
  2239. msgstr ""
  2240. #: fdmprinter.def.json
  2241. msgctxt "cool_fan_speed_0 label"
  2242. msgid "Initial Fan Speed"
  2243. msgstr ""
  2244. #: fdmprinter.def.json
  2245. msgctxt "cool_fan_speed_0 description"
  2246. msgid ""
  2247. "The speed at which the fans spin at the start of the print. In subsequent "
  2248. "layers the fan speed is gradually increased up to the layer corresponding to "
  2249. "Regular Fan Speed at Height."
  2250. msgstr ""
  2251. #: fdmprinter.def.json
  2252. msgctxt "cool_fan_full_at_height label"
  2253. msgid "Regular Fan Speed at Height"
  2254. msgstr ""
  2255. #: fdmprinter.def.json
  2256. msgctxt "cool_fan_full_at_height description"
  2257. msgid ""
  2258. "The height at which the fans spin on regular fan speed. At the layers below "
  2259. "the fan speed gradually increases from Initial Fan Speed to Regular Fan "
  2260. "Speed."
  2261. msgstr ""
  2262. #: fdmprinter.def.json
  2263. msgctxt "cool_fan_full_layer label"
  2264. msgid "Regular Fan Speed at Layer"
  2265. msgstr ""
  2266. #: fdmprinter.def.json
  2267. msgctxt "cool_fan_full_layer description"
  2268. msgid ""
  2269. "The layer at which the fans spin on regular fan speed. If regular fan speed "
  2270. "at height is set, this value is calculated and rounded to a whole number."
  2271. msgstr ""
  2272. #: fdmprinter.def.json
  2273. msgctxt "cool_min_layer_time label"
  2274. msgid "Minimum Layer Time"
  2275. msgstr ""
  2276. #: fdmprinter.def.json
  2277. msgctxt "cool_min_layer_time description"
  2278. msgid ""
  2279. "The minimum time spent in a layer. This forces the printer to slow down, to "
  2280. "at least spend the time set here in one layer. This allows the printed "
  2281. "material to cool down properly before printing the next layer. Layers may "
  2282. "still take shorter than the minimal layer time if Lift Head is disabled and "
  2283. "if the Minimum Speed would otherwise be violated."
  2284. msgstr ""
  2285. #: fdmprinter.def.json
  2286. msgctxt "cool_min_speed label"
  2287. msgid "Minimum Speed"
  2288. msgstr ""
  2289. #: fdmprinter.def.json
  2290. msgctxt "cool_min_speed description"
  2291. msgid ""
  2292. "The minimum print speed, despite slowing down due to the minimum layer time. "
  2293. "When the printer would slow down too much, the pressure in the nozzle would "
  2294. "be too low and result in bad print quality."
  2295. msgstr ""
  2296. #: fdmprinter.def.json
  2297. msgctxt "cool_lift_head label"
  2298. msgid "Lift Head"
  2299. msgstr ""
  2300. #: fdmprinter.def.json
  2301. msgctxt "cool_lift_head description"
  2302. msgid ""
  2303. "When the minimum speed is hit because of minimum layer time, lift the head "
  2304. "away from the print and wait the extra time until the minimum layer time is "
  2305. "reached."
  2306. msgstr ""
  2307. #: fdmprinter.def.json
  2308. msgctxt "support label"
  2309. msgid "Support"
  2310. msgstr ""
  2311. #: fdmprinter.def.json
  2312. msgctxt "support description"
  2313. msgid "Support"
  2314. msgstr ""
  2315. #: fdmprinter.def.json
  2316. msgctxt "support_enable label"
  2317. msgid "Generate Support"
  2318. msgstr ""
  2319. #: fdmprinter.def.json
  2320. msgctxt "support_enable description"
  2321. msgid ""
  2322. "Generate structures to support parts of the model which have overhangs. "
  2323. "Without these structures, such parts would collapse during printing."
  2324. msgstr ""
  2325. #: fdmprinter.def.json
  2326. msgctxt "support_extruder_nr label"
  2327. msgid "Support Extruder"
  2328. msgstr ""
  2329. #: fdmprinter.def.json
  2330. msgctxt "support_extruder_nr description"
  2331. msgid ""
  2332. "The extruder train to use for printing the support. This is used in multi-"
  2333. "extrusion."
  2334. msgstr ""
  2335. #: fdmprinter.def.json
  2336. msgctxt "support_infill_extruder_nr label"
  2337. msgid "Support Infill Extruder"
  2338. msgstr ""
  2339. #: fdmprinter.def.json
  2340. msgctxt "support_infill_extruder_nr description"
  2341. msgid ""
  2342. "The extruder train to use for printing the infill of the support. This is "
  2343. "used in multi-extrusion."
  2344. msgstr ""
  2345. #: fdmprinter.def.json
  2346. msgctxt "support_extruder_nr_layer_0 label"
  2347. msgid "First Layer Support Extruder"
  2348. msgstr ""
  2349. #: fdmprinter.def.json
  2350. msgctxt "support_extruder_nr_layer_0 description"
  2351. msgid ""
  2352. "The extruder train to use for printing the first layer of support infill. "
  2353. "This is used in multi-extrusion."
  2354. msgstr ""
  2355. #: fdmprinter.def.json
  2356. msgctxt "support_interface_extruder_nr label"
  2357. msgid "Support Interface Extruder"
  2358. msgstr ""
  2359. #: fdmprinter.def.json
  2360. msgctxt "support_interface_extruder_nr description"
  2361. msgid ""
  2362. "The extruder train to use for printing the roofs and floors of the support. "
  2363. "This is used in multi-extrusion."
  2364. msgstr ""
  2365. #: fdmprinter.def.json
  2366. msgctxt "support_roof_extruder_nr label"
  2367. msgid "Support Roof Extruder"
  2368. msgstr ""
  2369. #: fdmprinter.def.json
  2370. msgctxt "support_roof_extruder_nr description"
  2371. msgid ""
  2372. "The extruder train to use for printing the roofs of the support. This is "
  2373. "used in multi-extrusion."
  2374. msgstr ""
  2375. #: fdmprinter.def.json
  2376. msgctxt "support_bottom_extruder_nr label"
  2377. msgid "Support Floor Extruder"
  2378. msgstr ""
  2379. #: fdmprinter.def.json
  2380. msgctxt "support_bottom_extruder_nr description"
  2381. msgid ""
  2382. "The extruder train to use for printing the floors of the support. This is "
  2383. "used in multi-extrusion."
  2384. msgstr ""
  2385. #: fdmprinter.def.json
  2386. msgctxt "support_type label"
  2387. msgid "Support Placement"
  2388. msgstr ""
  2389. #: fdmprinter.def.json
  2390. msgctxt "support_type description"
  2391. msgid ""
  2392. "Adjusts the placement of the support structures. The placement can be set to "
  2393. "touching build plate or everywhere. When set to everywhere the support "
  2394. "structures will also be printed on the model."
  2395. msgstr ""
  2396. #: fdmprinter.def.json
  2397. msgctxt "support_type option buildplate"
  2398. msgid "Touching Buildplate"
  2399. msgstr ""
  2400. #: fdmprinter.def.json
  2401. msgctxt "support_type option everywhere"
  2402. msgid "Everywhere"
  2403. msgstr ""
  2404. #: fdmprinter.def.json
  2405. msgctxt "support_angle label"
  2406. msgid "Support Overhang Angle"
  2407. msgstr ""
  2408. #: fdmprinter.def.json
  2409. msgctxt "support_angle description"
  2410. msgid ""
  2411. "The minimum angle of overhangs for which support is added. At a value of 0° "
  2412. "all overhangs are supported, 90° will not provide any support."
  2413. msgstr ""
  2414. #: fdmprinter.def.json
  2415. msgctxt "support_pattern label"
  2416. msgid "Support Pattern"
  2417. msgstr ""
  2418. #: fdmprinter.def.json
  2419. msgctxt "support_pattern description"
  2420. msgid ""
  2421. "The pattern of the support structures of the print. The different options "
  2422. "available result in sturdy or easy to remove support."
  2423. msgstr ""
  2424. #: fdmprinter.def.json
  2425. msgctxt "support_pattern option lines"
  2426. msgid "Lines"
  2427. msgstr ""
  2428. #: fdmprinter.def.json
  2429. msgctxt "support_pattern option grid"
  2430. msgid "Grid"
  2431. msgstr ""
  2432. #: fdmprinter.def.json
  2433. msgctxt "support_pattern option triangles"
  2434. msgid "Triangles"
  2435. msgstr ""
  2436. #: fdmprinter.def.json
  2437. msgctxt "support_pattern option concentric"
  2438. msgid "Concentric"
  2439. msgstr ""
  2440. #: fdmprinter.def.json
  2441. msgctxt "support_pattern option concentric_3d"
  2442. msgid "Concentric 3D"
  2443. msgstr ""
  2444. #: fdmprinter.def.json
  2445. msgctxt "support_pattern option zigzag"
  2446. msgid "Zig Zag"
  2447. msgstr ""
  2448. #: fdmprinter.def.json
  2449. msgctxt "support_connect_zigzags label"
  2450. msgid "Connect Support ZigZags"
  2451. msgstr ""
  2452. #: fdmprinter.def.json
  2453. msgctxt "support_connect_zigzags description"
  2454. msgid ""
  2455. "Connect the ZigZags. This will increase the strength of the zig zag support "
  2456. "structure."
  2457. msgstr ""
  2458. #: fdmprinter.def.json
  2459. msgctxt "support_infill_rate label"
  2460. msgid "Support Density"
  2461. msgstr ""
  2462. #: fdmprinter.def.json
  2463. msgctxt "support_infill_rate description"
  2464. msgid ""
  2465. "Adjusts the density of the support structure. A higher value results in "
  2466. "better overhangs, but the supports are harder to remove."
  2467. msgstr ""
  2468. #: fdmprinter.def.json
  2469. msgctxt "support_line_distance label"
  2470. msgid "Support Line Distance"
  2471. msgstr ""
  2472. #: fdmprinter.def.json
  2473. msgctxt "support_line_distance description"
  2474. msgid ""
  2475. "Distance between the printed support structure lines. This setting is "
  2476. "calculated by the support density."
  2477. msgstr ""
  2478. #: fdmprinter.def.json
  2479. msgctxt "support_z_distance label"
  2480. msgid "Support Z Distance"
  2481. msgstr ""
  2482. #: fdmprinter.def.json
  2483. msgctxt "support_z_distance description"
  2484. msgid ""
  2485. "Distance from the top/bottom of the support structure to the print. This gap "
  2486. "provides clearance to remove the supports after the model is printed. This "
  2487. "value is rounded up to a multiple of the layer height."
  2488. msgstr ""
  2489. #: fdmprinter.def.json
  2490. msgctxt "support_top_distance label"
  2491. msgid "Support Top Distance"
  2492. msgstr ""
  2493. #: fdmprinter.def.json
  2494. msgctxt "support_top_distance description"
  2495. msgid "Distance from the top of the support to the print."
  2496. msgstr ""
  2497. #: fdmprinter.def.json
  2498. msgctxt "support_bottom_distance label"
  2499. msgid "Support Bottom Distance"
  2500. msgstr ""
  2501. #: fdmprinter.def.json
  2502. msgctxt "support_bottom_distance description"
  2503. msgid "Distance from the print to the bottom of the support."
  2504. msgstr ""
  2505. #: fdmprinter.def.json
  2506. msgctxt "support_xy_distance label"
  2507. msgid "Support X/Y Distance"
  2508. msgstr ""
  2509. #: fdmprinter.def.json
  2510. msgctxt "support_xy_distance description"
  2511. msgid "Distance of the support structure from the print in the X/Y directions."
  2512. msgstr ""
  2513. #: fdmprinter.def.json
  2514. msgctxt "support_xy_overrides_z label"
  2515. msgid "Support Distance Priority"
  2516. msgstr ""
  2517. #: fdmprinter.def.json
  2518. msgctxt "support_xy_overrides_z description"
  2519. msgid ""
  2520. "Whether the Support X/Y Distance overrides the Support Z Distance or vice "
  2521. "versa. When X/Y overrides Z the X/Y distance can push away the support from "
  2522. "the model, influencing the actual Z distance to the overhang. We can disable "
  2523. "this by not applying the X/Y distance around overhangs."
  2524. msgstr ""
  2525. #: fdmprinter.def.json
  2526. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2527. msgid "X/Y overrides Z"
  2528. msgstr ""
  2529. #: fdmprinter.def.json
  2530. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2531. msgid "Z overrides X/Y"
  2532. msgstr ""
  2533. #: fdmprinter.def.json
  2534. msgctxt "support_xy_distance_overhang label"
  2535. msgid "Minimum Support X/Y Distance"
  2536. msgstr ""
  2537. #: fdmprinter.def.json
  2538. msgctxt "support_xy_distance_overhang description"
  2539. msgid ""
  2540. "Distance of the support structure from the overhang in the X/Y directions. "
  2541. msgstr ""
  2542. #: fdmprinter.def.json
  2543. msgctxt "support_bottom_stair_step_height label"
  2544. msgid "Support Stair Step Height"
  2545. msgstr ""
  2546. #: fdmprinter.def.json
  2547. msgctxt "support_bottom_stair_step_height description"
  2548. msgid ""
  2549. "The height of the steps of the stair-like bottom of support resting on the "
  2550. "model. A low value makes the support harder to remove, but too high values "
  2551. "can lead to unstable support structures. Set to zero to turn off the stair-"
  2552. "like behaviour."
  2553. msgstr ""
  2554. #: fdmprinter.def.json
  2555. msgctxt "support_bottom_stair_step_width label"
  2556. msgid "Support Stair Step Maximum Width"
  2557. msgstr ""
  2558. #: fdmprinter.def.json
  2559. msgctxt "support_bottom_stair_step_width description"
  2560. msgid ""
  2561. "The maximum width of the steps of the stair-like bottom of support resting "
  2562. "on the model. A low value makes the support harder to remove, but too high "
  2563. "values can lead to unstable support structures."
  2564. msgstr ""
  2565. #: fdmprinter.def.json
  2566. msgctxt "support_join_distance label"
  2567. msgid "Support Join Distance"
  2568. msgstr ""
  2569. #: fdmprinter.def.json
  2570. msgctxt "support_join_distance description"
  2571. msgid ""
  2572. "The maximum distance between support structures in the X/Y directions. When "
  2573. "seperate structures are closer together than this value, the structures "
  2574. "merge into one."
  2575. msgstr ""
  2576. #: fdmprinter.def.json
  2577. msgctxt "support_offset label"
  2578. msgid "Support Horizontal Expansion"
  2579. msgstr ""
  2580. #: fdmprinter.def.json
  2581. msgctxt "support_offset description"
  2582. msgid ""
  2583. "Amount of offset applied to all support polygons in each layer. Positive "
  2584. "values can smooth out the support areas and result in more sturdy support."
  2585. msgstr ""
  2586. #: fdmprinter.def.json
  2587. msgctxt "support_interface_enable label"
  2588. msgid "Enable Support Interface"
  2589. msgstr ""
  2590. #: fdmprinter.def.json
  2591. msgctxt "support_interface_enable description"
  2592. msgid ""
  2593. "Generate a dense interface between the model and the support. This will "
  2594. "create a skin at the top of the support on which the model is printed and at "
  2595. "the bottom of the support, where it rests on the model."
  2596. msgstr ""
  2597. #: fdmprinter.def.json
  2598. msgctxt "support_roof_enable label"
  2599. msgid "Enable Support Roof"
  2600. msgstr ""
  2601. #: fdmprinter.def.json
  2602. msgctxt "support_roof_enable description"
  2603. msgid ""
  2604. "Generate a dense slab of material between the top of support and the model. "
  2605. "This will create a skin between the model and support."
  2606. msgstr ""
  2607. #: fdmprinter.def.json
  2608. msgctxt "support_bottom_enable label"
  2609. msgid "Enable Support Floor"
  2610. msgstr ""
  2611. #: fdmprinter.def.json
  2612. msgctxt "support_bottom_enable description"
  2613. msgid ""
  2614. "Generate a dense slab of material between the bottom of the support and the "
  2615. "model. This will create a skin between the model and support."
  2616. msgstr ""
  2617. #: fdmprinter.def.json
  2618. msgctxt "support_interface_height label"
  2619. msgid "Support Interface Thickness"
  2620. msgstr ""
  2621. #: fdmprinter.def.json
  2622. msgctxt "support_interface_height description"
  2623. msgid ""
  2624. "The thickness of the interface of the support where it touches with the "
  2625. "model on the bottom or the top."
  2626. msgstr ""
  2627. #: fdmprinter.def.json
  2628. msgctxt "support_roof_height label"
  2629. msgid "Support Roof Thickness"
  2630. msgstr ""
  2631. #: fdmprinter.def.json
  2632. msgctxt "support_roof_height description"
  2633. msgid ""
  2634. "The thickness of the support roofs. This controls the amount of dense layers "
  2635. "at the top of the support on which the model rests."
  2636. msgstr ""
  2637. #: fdmprinter.def.json
  2638. msgctxt "support_bottom_height label"
  2639. msgid "Support Floor Thickness"
  2640. msgstr ""
  2641. #: fdmprinter.def.json
  2642. msgctxt "support_bottom_height description"
  2643. msgid ""
  2644. "The thickness of the support floors. This controls the number of dense "
  2645. "layers that are printed on top of places of a model on which support rests."
  2646. msgstr ""
  2647. #: fdmprinter.def.json
  2648. msgctxt "support_interface_skip_height label"
  2649. msgid "Support Interface Resolution"
  2650. msgstr ""
  2651. #: fdmprinter.def.json
  2652. msgctxt "support_interface_skip_height description"
  2653. msgid ""
  2654. "When checking where there's model above and below the support, take steps of "
  2655. "the given height. Lower values will slice slower, while higher values may "
  2656. "cause normal support to be printed in some places where there should have "
  2657. "been support interface."
  2658. msgstr ""
  2659. #: fdmprinter.def.json
  2660. msgctxt "support_interface_density label"
  2661. msgid "Support Interface Density"
  2662. msgstr ""
  2663. #: fdmprinter.def.json
  2664. msgctxt "support_interface_density description"
  2665. msgid ""
  2666. "Adjusts the density of the roofs and floors of the support structure. A "
  2667. "higher value results in better overhangs, but the supports are harder to "
  2668. "remove."
  2669. msgstr ""
  2670. #: fdmprinter.def.json
  2671. msgctxt "support_roof_density label"
  2672. msgid "Support Roof Density"
  2673. msgstr ""
  2674. #: fdmprinter.def.json
  2675. msgctxt "support_roof_density description"
  2676. msgid ""
  2677. "The density of the roofs of the support structure. A higher value results in "
  2678. "better overhangs, but the supports are harder to remove."
  2679. msgstr ""
  2680. #: fdmprinter.def.json
  2681. msgctxt "support_roof_line_distance label"
  2682. msgid "Support Roof Line Distance"
  2683. msgstr ""
  2684. #: fdmprinter.def.json
  2685. msgctxt "support_roof_line_distance description"
  2686. msgid ""
  2687. "Distance between the printed support roof lines. This setting is calculated "
  2688. "by the Support Roof Density, but can be adjusted separately."
  2689. msgstr ""
  2690. #: fdmprinter.def.json
  2691. msgctxt "support_bottom_density label"
  2692. msgid "Support Floor Density"
  2693. msgstr ""
  2694. #: fdmprinter.def.json
  2695. msgctxt "support_bottom_density description"
  2696. msgid ""
  2697. "The density of the floors of the support structure. A higher value results "
  2698. "in better adhesion of the support on top of the model."
  2699. msgstr ""
  2700. #: fdmprinter.def.json
  2701. msgctxt "support_bottom_line_distance label"
  2702. msgid "Support Floor Line Distance"
  2703. msgstr ""
  2704. #: fdmprinter.def.json
  2705. msgctxt "support_bottom_line_distance description"
  2706. msgid ""
  2707. "Distance between the printed support floor lines. This setting is calculated "
  2708. "by the Support Floor Density, but can be adjusted separately."
  2709. msgstr ""
  2710. #: fdmprinter.def.json
  2711. msgctxt "support_interface_pattern label"
  2712. msgid "Support Interface Pattern"
  2713. msgstr ""
  2714. #: fdmprinter.def.json
  2715. msgctxt "support_interface_pattern description"
  2716. msgid ""
  2717. "The pattern with which the interface of the support with the model is "
  2718. "printed."
  2719. msgstr ""
  2720. #: fdmprinter.def.json
  2721. msgctxt "support_interface_pattern option lines"
  2722. msgid "Lines"
  2723. msgstr ""
  2724. #: fdmprinter.def.json
  2725. msgctxt "support_interface_pattern option grid"
  2726. msgid "Grid"
  2727. msgstr ""
  2728. #: fdmprinter.def.json
  2729. msgctxt "support_interface_pattern option triangles"
  2730. msgid "Triangles"
  2731. msgstr ""
  2732. #: fdmprinter.def.json
  2733. msgctxt "support_interface_pattern option concentric"
  2734. msgid "Concentric"
  2735. msgstr ""
  2736. #: fdmprinter.def.json
  2737. msgctxt "support_interface_pattern option concentric_3d"
  2738. msgid "Concentric 3D"
  2739. msgstr ""
  2740. #: fdmprinter.def.json
  2741. msgctxt "support_interface_pattern option zigzag"
  2742. msgid "Zig Zag"
  2743. msgstr ""
  2744. #: fdmprinter.def.json
  2745. msgctxt "support_roof_pattern label"
  2746. msgid "Support Roof Pattern"
  2747. msgstr ""
  2748. #: fdmprinter.def.json
  2749. msgctxt "support_roof_pattern description"
  2750. msgid "The pattern with which the roofs of the support are printed."
  2751. msgstr ""
  2752. #: fdmprinter.def.json
  2753. msgctxt "support_roof_pattern option lines"
  2754. msgid "Lines"
  2755. msgstr ""
  2756. #: fdmprinter.def.json
  2757. msgctxt "support_roof_pattern option grid"
  2758. msgid "Grid"
  2759. msgstr ""
  2760. #: fdmprinter.def.json
  2761. msgctxt "support_roof_pattern option triangles"
  2762. msgid "Triangles"
  2763. msgstr ""
  2764. #: fdmprinter.def.json
  2765. msgctxt "support_roof_pattern option concentric"
  2766. msgid "Concentric"
  2767. msgstr ""
  2768. #: fdmprinter.def.json
  2769. msgctxt "support_roof_pattern option concentric_3d"
  2770. msgid "Concentric 3D"
  2771. msgstr ""
  2772. #: fdmprinter.def.json
  2773. msgctxt "support_roof_pattern option zigzag"
  2774. msgid "Zig Zag"
  2775. msgstr ""
  2776. #: fdmprinter.def.json
  2777. msgctxt "support_bottom_pattern label"
  2778. msgid "Support Floor Pattern"
  2779. msgstr ""
  2780. #: fdmprinter.def.json
  2781. msgctxt "support_bottom_pattern description"
  2782. msgid "The pattern with which the floors of the support are printed."
  2783. msgstr ""
  2784. #: fdmprinter.def.json
  2785. msgctxt "support_bottom_pattern option lines"
  2786. msgid "Lines"
  2787. msgstr ""
  2788. #: fdmprinter.def.json
  2789. msgctxt "support_bottom_pattern option grid"
  2790. msgid "Grid"
  2791. msgstr ""
  2792. #: fdmprinter.def.json
  2793. msgctxt "support_bottom_pattern option triangles"
  2794. msgid "Triangles"
  2795. msgstr ""
  2796. #: fdmprinter.def.json
  2797. msgctxt "support_bottom_pattern option concentric"
  2798. msgid "Concentric"
  2799. msgstr ""
  2800. #: fdmprinter.def.json
  2801. msgctxt "support_bottom_pattern option concentric_3d"
  2802. msgid "Concentric 3D"
  2803. msgstr ""
  2804. #: fdmprinter.def.json
  2805. msgctxt "support_bottom_pattern option zigzag"
  2806. msgid "Zig Zag"
  2807. msgstr ""
  2808. #: fdmprinter.def.json
  2809. msgctxt "support_use_towers label"
  2810. msgid "Use Towers"
  2811. msgstr ""
  2812. #: fdmprinter.def.json
  2813. msgctxt "support_use_towers description"
  2814. msgid ""
  2815. "Use specialized towers to support tiny overhang areas. These towers have a "
  2816. "larger diameter than the region they support. Near the overhang the towers' "
  2817. "diameter decreases, forming a roof."
  2818. msgstr ""
  2819. #: fdmprinter.def.json
  2820. msgctxt "support_tower_diameter label"
  2821. msgid "Tower Diameter"
  2822. msgstr ""
  2823. #: fdmprinter.def.json
  2824. msgctxt "support_tower_diameter description"
  2825. msgid "The diameter of a special tower."
  2826. msgstr ""
  2827. #: fdmprinter.def.json
  2828. msgctxt "support_minimal_diameter label"
  2829. msgid "Minimum Diameter"
  2830. msgstr ""
  2831. #: fdmprinter.def.json
  2832. msgctxt "support_minimal_diameter description"
  2833. msgid ""
  2834. "Minimum diameter in the X/Y directions of a small area which is to be "
  2835. "supported by a specialized support tower."
  2836. msgstr ""
  2837. #: fdmprinter.def.json
  2838. msgctxt "support_tower_roof_angle label"
  2839. msgid "Tower Roof Angle"
  2840. msgstr ""
  2841. #: fdmprinter.def.json
  2842. msgctxt "support_tower_roof_angle description"
  2843. msgid ""
  2844. "The angle of a rooftop of a tower. A higher value results in pointed tower "
  2845. "roofs, a lower value results in flattened tower roofs."
  2846. msgstr ""
  2847. #: fdmprinter.def.json
  2848. msgctxt "platform_adhesion label"
  2849. msgid "Build Plate Adhesion"
  2850. msgstr ""
  2851. #: fdmprinter.def.json
  2852. msgctxt "platform_adhesion description"
  2853. msgid "Adhesion"
  2854. msgstr ""
  2855. #: fdmprinter.def.json
  2856. msgctxt "prime_blob_enable label"
  2857. msgid "Enable Prime Blob"
  2858. msgstr ""
  2859. #: fdmprinter.def.json
  2860. msgctxt "prime_blob_enable description"
  2861. msgid ""
  2862. "Whether to prime the filament with a blob before printing. Turning this "
  2863. "setting on will ensure that the extruder will have material ready at the "
  2864. "nozzle before printing. Printing Brim or Skirt can act like priming too, in "
  2865. "which case turning this setting off saves some time."
  2866. msgstr ""
  2867. #: fdmprinter.def.json
  2868. msgctxt "extruder_prime_pos_x label"
  2869. msgid "Extruder Prime X Position"
  2870. msgstr ""
  2871. #: fdmprinter.def.json
  2872. msgctxt "extruder_prime_pos_x description"
  2873. msgid ""
  2874. "The X coordinate of the position where the nozzle primes at the start of "
  2875. "printing."
  2876. msgstr ""
  2877. #: fdmprinter.def.json
  2878. msgctxt "extruder_prime_pos_y label"
  2879. msgid "Extruder Prime Y Position"
  2880. msgstr ""
  2881. #: fdmprinter.def.json
  2882. msgctxt "extruder_prime_pos_y description"
  2883. msgid ""
  2884. "The Y coordinate of the position where the nozzle primes at the start of "
  2885. "printing."
  2886. msgstr ""
  2887. #: fdmprinter.def.json
  2888. msgctxt "adhesion_type label"
  2889. msgid "Build Plate Adhesion Type"
  2890. msgstr ""
  2891. #: fdmprinter.def.json
  2892. msgctxt "adhesion_type description"
  2893. msgid ""
  2894. "Different options that help to improve both priming your extrusion and "
  2895. "adhesion to the build plate. Brim adds a single layer flat area around the "
  2896. "base of your model to prevent warping. Raft adds a thick grid with a roof "
  2897. "below the model. Skirt is a line printed around the model, but not connected "
  2898. "to the model."
  2899. msgstr ""
  2900. #: fdmprinter.def.json
  2901. msgctxt "adhesion_type option skirt"
  2902. msgid "Skirt"
  2903. msgstr ""
  2904. #: fdmprinter.def.json
  2905. msgctxt "adhesion_type option brim"
  2906. msgid "Brim"
  2907. msgstr ""
  2908. #: fdmprinter.def.json
  2909. msgctxt "adhesion_type option raft"
  2910. msgid "Raft"
  2911. msgstr ""
  2912. #: fdmprinter.def.json
  2913. msgctxt "adhesion_type option none"
  2914. msgid "None"
  2915. msgstr ""
  2916. #: fdmprinter.def.json
  2917. msgctxt "adhesion_extruder_nr label"
  2918. msgid "Build Plate Adhesion Extruder"
  2919. msgstr ""
  2920. #: fdmprinter.def.json
  2921. msgctxt "adhesion_extruder_nr description"
  2922. msgid ""
  2923. "The extruder train to use for printing the skirt/brim/raft. This is used in "
  2924. "multi-extrusion."
  2925. msgstr ""
  2926. #: fdmprinter.def.json
  2927. msgctxt "skirt_line_count label"
  2928. msgid "Skirt Line Count"
  2929. msgstr ""
  2930. #: fdmprinter.def.json
  2931. msgctxt "skirt_line_count description"
  2932. msgid ""
  2933. "Multiple skirt lines help to prime your extrusion better for small models. "
  2934. "Setting this to 0 will disable the skirt."
  2935. msgstr ""
  2936. #: fdmprinter.def.json
  2937. msgctxt "skirt_gap label"
  2938. msgid "Skirt Distance"
  2939. msgstr ""
  2940. #: fdmprinter.def.json
  2941. msgctxt "skirt_gap description"
  2942. msgid ""
  2943. "The horizontal distance between the skirt and the first layer of the print.\n"
  2944. "This is the minimum distance, multiple skirt lines will extend outwards from "
  2945. "this distance."
  2946. msgstr ""
  2947. #: fdmprinter.def.json
  2948. msgctxt "skirt_brim_minimal_length label"
  2949. msgid "Skirt/Brim Minimum Length"
  2950. msgstr ""
  2951. #: fdmprinter.def.json
  2952. msgctxt "skirt_brim_minimal_length description"
  2953. msgid ""
  2954. "The minimum length of the skirt or brim. If this length is not reached by "
  2955. "all skirt or brim lines together, more skirt or brim lines will be added "
  2956. "until the minimum length is reached. Note: If the line count is set to 0 "
  2957. "this is ignored."
  2958. msgstr ""
  2959. #: fdmprinter.def.json
  2960. msgctxt "brim_width label"
  2961. msgid "Brim Width"
  2962. msgstr ""
  2963. #: fdmprinter.def.json
  2964. msgctxt "brim_width description"
  2965. msgid ""
  2966. "The distance from the model to the outermost brim line. A larger brim "
  2967. "enhances adhesion to the build plate, but also reduces the effective print "
  2968. "area."
  2969. msgstr ""
  2970. #: fdmprinter.def.json
  2971. msgctxt "brim_line_count label"
  2972. msgid "Brim Line Count"
  2973. msgstr ""
  2974. #: fdmprinter.def.json
  2975. msgctxt "brim_line_count description"
  2976. msgid ""
  2977. "The number of lines used for a brim. More brim lines enhance adhesion to the "
  2978. "build plate, but also reduces the effective print area."
  2979. msgstr ""
  2980. #: fdmprinter.def.json
  2981. msgctxt "brim_outside_only label"
  2982. msgid "Brim Only on Outside"
  2983. msgstr ""
  2984. #: fdmprinter.def.json
  2985. msgctxt "brim_outside_only description"
  2986. msgid ""
  2987. "Only print the brim on the outside of the model. This reduces the amount of "
  2988. "brim you need to remove afterwards, while it doesn't reduce the bed adhesion "
  2989. "that much."
  2990. msgstr ""
  2991. #: fdmprinter.def.json
  2992. msgctxt "raft_margin label"
  2993. msgid "Raft Extra Margin"
  2994. msgstr ""
  2995. #: fdmprinter.def.json
  2996. msgctxt "raft_margin description"
  2997. msgid ""
  2998. "If the raft is enabled, this is the extra raft area around the model which "
  2999. "is also given a raft. Increasing this margin will create a stronger raft "
  3000. "while using more material and leaving less area for your print."
  3001. msgstr ""
  3002. #: fdmprinter.def.json
  3003. msgctxt "raft_airgap label"
  3004. msgid "Raft Air Gap"
  3005. msgstr ""
  3006. #: fdmprinter.def.json
  3007. msgctxt "raft_airgap description"
  3008. msgid ""
  3009. "The gap between the final raft layer and the first layer of the model. Only "
  3010. "the first layer is raised by this amount to lower the bonding between the "
  3011. "raft layer and the model. Makes it easier to peel off the raft."
  3012. msgstr ""
  3013. #: fdmprinter.def.json
  3014. msgctxt "layer_0_z_overlap label"
  3015. msgid "Initial Layer Z Overlap"
  3016. msgstr ""
  3017. #: fdmprinter.def.json
  3018. msgctxt "layer_0_z_overlap description"
  3019. msgid ""
  3020. "Make the first and second layer of the model overlap in the Z direction to "
  3021. "compensate for the filament lost in the airgap. All models above the first "
  3022. "model layer will be shifted down by this amount."
  3023. msgstr ""
  3024. #: fdmprinter.def.json
  3025. msgctxt "raft_surface_layers label"
  3026. msgid "Raft Top Layers"
  3027. msgstr ""
  3028. #: fdmprinter.def.json
  3029. msgctxt "raft_surface_layers description"
  3030. msgid ""
  3031. "The number of top layers on top of the 2nd raft layer. These are fully "
  3032. "filled layers that the model sits on. 2 layers result in a smoother top "
  3033. "surface than 1."
  3034. msgstr ""
  3035. #: fdmprinter.def.json
  3036. msgctxt "raft_surface_thickness label"
  3037. msgid "Raft Top Layer Thickness"
  3038. msgstr ""
  3039. #: fdmprinter.def.json
  3040. msgctxt "raft_surface_thickness description"
  3041. msgid "Layer thickness of the top raft layers."
  3042. msgstr ""
  3043. #: fdmprinter.def.json
  3044. msgctxt "raft_surface_line_width label"
  3045. msgid "Raft Top Line Width"
  3046. msgstr ""
  3047. #: fdmprinter.def.json
  3048. msgctxt "raft_surface_line_width description"
  3049. msgid ""
  3050. "Width of the lines in the top surface of the raft. These can be thin lines "
  3051. "so that the top of the raft becomes smooth."
  3052. msgstr ""
  3053. #: fdmprinter.def.json
  3054. msgctxt "raft_surface_line_spacing label"
  3055. msgid "Raft Top Spacing"
  3056. msgstr ""
  3057. #: fdmprinter.def.json
  3058. msgctxt "raft_surface_line_spacing description"
  3059. msgid ""
  3060. "The distance between the raft lines for the top raft layers. The spacing "
  3061. "should be equal to the line width, so that the surface is solid."
  3062. msgstr ""
  3063. #: fdmprinter.def.json
  3064. msgctxt "raft_interface_thickness label"
  3065. msgid "Raft Middle Thickness"
  3066. msgstr ""
  3067. #: fdmprinter.def.json
  3068. msgctxt "raft_interface_thickness description"
  3069. msgid "Layer thickness of the middle raft layer."
  3070. msgstr ""
  3071. #: fdmprinter.def.json
  3072. msgctxt "raft_interface_line_width label"
  3073. msgid "Raft Middle Line Width"
  3074. msgstr ""
  3075. #: fdmprinter.def.json
  3076. msgctxt "raft_interface_line_width description"
  3077. msgid ""
  3078. "Width of the lines in the middle raft layer. Making the second layer extrude "
  3079. "more causes the lines to stick to the build plate."
  3080. msgstr ""
  3081. #: fdmprinter.def.json
  3082. msgctxt "raft_interface_line_spacing label"
  3083. msgid "Raft Middle Spacing"
  3084. msgstr ""
  3085. #: fdmprinter.def.json
  3086. msgctxt "raft_interface_line_spacing description"
  3087. msgid ""
  3088. "The distance between the raft lines for the middle raft layer. The spacing "
  3089. "of the middle should be quite wide, while being dense enough to support the "
  3090. "top raft layers."
  3091. msgstr ""
  3092. #: fdmprinter.def.json
  3093. msgctxt "raft_base_thickness label"
  3094. msgid "Raft Base Thickness"
  3095. msgstr ""
  3096. #: fdmprinter.def.json
  3097. msgctxt "raft_base_thickness description"
  3098. msgid ""
  3099. "Layer thickness of the base raft layer. This should be a thick layer which "
  3100. "sticks firmly to the printer build plate."
  3101. msgstr ""
  3102. #: fdmprinter.def.json
  3103. msgctxt "raft_base_line_width label"
  3104. msgid "Raft Base Line Width"
  3105. msgstr ""
  3106. #: fdmprinter.def.json
  3107. msgctxt "raft_base_line_width description"
  3108. msgid ""
  3109. "Width of the lines in the base raft layer. These should be thick lines to "
  3110. "assist in build plate adhesion."
  3111. msgstr ""
  3112. #: fdmprinter.def.json
  3113. msgctxt "raft_base_line_spacing label"
  3114. msgid "Raft Line Spacing"
  3115. msgstr ""
  3116. #: fdmprinter.def.json
  3117. msgctxt "raft_base_line_spacing description"
  3118. msgid ""
  3119. "The distance between the raft lines for the base raft layer. Wide spacing "
  3120. "makes for easy removal of the raft from the build plate."
  3121. msgstr ""
  3122. #: fdmprinter.def.json
  3123. msgctxt "raft_speed label"
  3124. msgid "Raft Print Speed"
  3125. msgstr ""
  3126. #: fdmprinter.def.json
  3127. msgctxt "raft_speed description"
  3128. msgid "The speed at which the raft is printed."
  3129. msgstr ""
  3130. #: fdmprinter.def.json
  3131. msgctxt "raft_surface_speed label"
  3132. msgid "Raft Top Print Speed"
  3133. msgstr ""
  3134. #: fdmprinter.def.json
  3135. msgctxt "raft_surface_speed description"
  3136. msgid ""
  3137. "The speed at which the top raft layers are printed. These should be printed "
  3138. "a bit slower, so that the nozzle can slowly smooth out adjacent surface "
  3139. "lines."
  3140. msgstr ""
  3141. #: fdmprinter.def.json
  3142. msgctxt "raft_interface_speed label"
  3143. msgid "Raft Middle Print Speed"
  3144. msgstr ""
  3145. #: fdmprinter.def.json
  3146. msgctxt "raft_interface_speed description"
  3147. msgid ""
  3148. "The speed at which the middle raft layer is printed. This should be printed "
  3149. "quite slowly, as the volume of material coming out of the nozzle is quite "
  3150. "high."
  3151. msgstr ""
  3152. #: fdmprinter.def.json
  3153. msgctxt "raft_base_speed label"
  3154. msgid "Raft Base Print Speed"
  3155. msgstr ""
  3156. #: fdmprinter.def.json
  3157. msgctxt "raft_base_speed description"
  3158. msgid ""
  3159. "The speed at which the base raft layer is printed. This should be printed "
  3160. "quite slowly, as the volume of material coming out of the nozzle is quite "
  3161. "high."
  3162. msgstr ""
  3163. #: fdmprinter.def.json
  3164. msgctxt "raft_acceleration label"
  3165. msgid "Raft Print Acceleration"
  3166. msgstr ""
  3167. #: fdmprinter.def.json
  3168. msgctxt "raft_acceleration description"
  3169. msgid "The acceleration with which the raft is printed."
  3170. msgstr ""
  3171. #: fdmprinter.def.json
  3172. msgctxt "raft_surface_acceleration label"
  3173. msgid "Raft Top Print Acceleration"
  3174. msgstr ""
  3175. #: fdmprinter.def.json
  3176. msgctxt "raft_surface_acceleration description"
  3177. msgid "The acceleration with which the top raft layers are printed."
  3178. msgstr ""
  3179. #: fdmprinter.def.json
  3180. msgctxt "raft_interface_acceleration label"
  3181. msgid "Raft Middle Print Acceleration"
  3182. msgstr ""
  3183. #: fdmprinter.def.json
  3184. msgctxt "raft_interface_acceleration description"
  3185. msgid "The acceleration with which the middle raft layer is printed."
  3186. msgstr ""
  3187. #: fdmprinter.def.json
  3188. msgctxt "raft_base_acceleration label"
  3189. msgid "Raft Base Print Acceleration"
  3190. msgstr ""
  3191. #: fdmprinter.def.json
  3192. msgctxt "raft_base_acceleration description"
  3193. msgid "The acceleration with which the base raft layer is printed."
  3194. msgstr ""
  3195. #: fdmprinter.def.json
  3196. msgctxt "raft_jerk label"
  3197. msgid "Raft Print Jerk"
  3198. msgstr ""
  3199. #: fdmprinter.def.json
  3200. msgctxt "raft_jerk description"
  3201. msgid "The jerk with which the raft is printed."
  3202. msgstr ""
  3203. #: fdmprinter.def.json
  3204. msgctxt "raft_surface_jerk label"
  3205. msgid "Raft Top Print Jerk"
  3206. msgstr ""
  3207. #: fdmprinter.def.json
  3208. msgctxt "raft_surface_jerk description"
  3209. msgid "The jerk with which the top raft layers are printed."
  3210. msgstr ""
  3211. #: fdmprinter.def.json
  3212. msgctxt "raft_interface_jerk label"
  3213. msgid "Raft Middle Print Jerk"
  3214. msgstr ""
  3215. #: fdmprinter.def.json
  3216. msgctxt "raft_interface_jerk description"
  3217. msgid "The jerk with which the middle raft layer is printed."
  3218. msgstr ""
  3219. #: fdmprinter.def.json
  3220. msgctxt "raft_base_jerk label"
  3221. msgid "Raft Base Print Jerk"
  3222. msgstr ""
  3223. #: fdmprinter.def.json
  3224. msgctxt "raft_base_jerk description"
  3225. msgid "The jerk with which the base raft layer is printed."
  3226. msgstr ""
  3227. #: fdmprinter.def.json
  3228. msgctxt "raft_fan_speed label"
  3229. msgid "Raft Fan Speed"
  3230. msgstr ""
  3231. #: fdmprinter.def.json
  3232. msgctxt "raft_fan_speed description"
  3233. msgid "The fan speed for the raft."
  3234. msgstr ""
  3235. #: fdmprinter.def.json
  3236. msgctxt "raft_surface_fan_speed label"
  3237. msgid "Raft Top Fan Speed"
  3238. msgstr ""
  3239. #: fdmprinter.def.json
  3240. msgctxt "raft_surface_fan_speed description"
  3241. msgid "The fan speed for the top raft layers."
  3242. msgstr ""
  3243. #: fdmprinter.def.json
  3244. msgctxt "raft_interface_fan_speed label"
  3245. msgid "Raft Middle Fan Speed"
  3246. msgstr ""
  3247. #: fdmprinter.def.json
  3248. msgctxt "raft_interface_fan_speed description"
  3249. msgid "The fan speed for the middle raft layer."
  3250. msgstr ""
  3251. #: fdmprinter.def.json
  3252. msgctxt "raft_base_fan_speed label"
  3253. msgid "Raft Base Fan Speed"
  3254. msgstr ""
  3255. #: fdmprinter.def.json
  3256. msgctxt "raft_base_fan_speed description"
  3257. msgid "The fan speed for the base raft layer."
  3258. msgstr ""
  3259. #: fdmprinter.def.json
  3260. msgctxt "dual label"
  3261. msgid "Dual Extrusion"
  3262. msgstr ""
  3263. #: fdmprinter.def.json
  3264. msgctxt "dual description"
  3265. msgid "Settings used for printing with multiple extruders."
  3266. msgstr ""
  3267. #: fdmprinter.def.json
  3268. msgctxt "prime_tower_enable label"
  3269. msgid "Enable Prime Tower"
  3270. msgstr ""
  3271. #: fdmprinter.def.json
  3272. msgctxt "prime_tower_enable description"
  3273. msgid ""
  3274. "Print a tower next to the print which serves to prime the material after "
  3275. "each nozzle switch."
  3276. msgstr ""
  3277. #: fdmprinter.def.json
  3278. msgctxt "prime_tower_size label"
  3279. msgid "Prime Tower Size"
  3280. msgstr ""
  3281. #: fdmprinter.def.json
  3282. msgctxt "prime_tower_size description"
  3283. msgid "The width of the prime tower."
  3284. msgstr ""
  3285. #: fdmprinter.def.json
  3286. msgctxt "prime_tower_min_volume label"
  3287. msgid "Prime Tower Minimum Volume"
  3288. msgstr ""
  3289. #: fdmprinter.def.json
  3290. msgctxt "prime_tower_min_volume description"
  3291. msgid ""
  3292. "The minimum volume for each layer of the prime tower in order to purge "
  3293. "enough material."
  3294. msgstr ""
  3295. #: fdmprinter.def.json
  3296. msgctxt "prime_tower_wall_thickness label"
  3297. msgid "Prime Tower Thickness"
  3298. msgstr ""
  3299. #: fdmprinter.def.json
  3300. msgctxt "prime_tower_wall_thickness description"
  3301. msgid ""
  3302. "The thickness of the hollow prime tower. A thickness larger than half the "
  3303. "Prime Tower Minimum Volume will result in a dense prime tower."
  3304. msgstr ""
  3305. #: fdmprinter.def.json
  3306. msgctxt "prime_tower_position_x label"
  3307. msgid "Prime Tower X Position"
  3308. msgstr ""
  3309. #: fdmprinter.def.json
  3310. msgctxt "prime_tower_position_x description"
  3311. msgid "The x coordinate of the position of the prime tower."
  3312. msgstr ""
  3313. #: fdmprinter.def.json
  3314. msgctxt "prime_tower_position_y label"
  3315. msgid "Prime Tower Y Position"
  3316. msgstr ""
  3317. #: fdmprinter.def.json
  3318. msgctxt "prime_tower_position_y description"
  3319. msgid "The y coordinate of the position of the prime tower."
  3320. msgstr ""
  3321. #: fdmprinter.def.json
  3322. msgctxt "prime_tower_flow label"
  3323. msgid "Prime Tower Flow"
  3324. msgstr ""
  3325. #: fdmprinter.def.json
  3326. msgctxt "prime_tower_flow description"
  3327. msgid ""
  3328. "Flow compensation: the amount of material extruded is multiplied by this "
  3329. "value."
  3330. msgstr ""
  3331. #: fdmprinter.def.json
  3332. msgctxt "prime_tower_wipe_enabled label"
  3333. msgid "Wipe Inactive Nozzle on Prime Tower"
  3334. msgstr ""
  3335. #: fdmprinter.def.json
  3336. msgctxt "prime_tower_wipe_enabled description"
  3337. msgid ""
  3338. "After printing the prime tower with one nozzle, wipe the oozed material from "
  3339. "the other nozzle off on the prime tower."
  3340. msgstr ""
  3341. #: fdmprinter.def.json
  3342. msgctxt "dual_pre_wipe label"
  3343. msgid "Wipe Nozzle After Switch"
  3344. msgstr ""
  3345. #: fdmprinter.def.json
  3346. msgctxt "dual_pre_wipe description"
  3347. msgid ""
  3348. "After switching extruder, wipe the oozed material off of the nozzle on the "
  3349. "first thing printed. This performs a safe slow wipe move at a place where "
  3350. "the oozed material causes least harm to the surface quality of your print."
  3351. msgstr ""
  3352. #: fdmprinter.def.json
  3353. msgctxt "ooze_shield_enabled label"
  3354. msgid "Enable Ooze Shield"
  3355. msgstr ""
  3356. #: fdmprinter.def.json
  3357. msgctxt "ooze_shield_enabled description"
  3358. msgid ""
  3359. "Enable exterior ooze shield. This will create a shell around the model which "
  3360. "is likely to wipe a second nozzle if it's at the same height as the first "
  3361. "nozzle."
  3362. msgstr ""
  3363. #: fdmprinter.def.json
  3364. msgctxt "ooze_shield_angle label"
  3365. msgid "Ooze Shield Angle"
  3366. msgstr ""
  3367. #: fdmprinter.def.json
  3368. msgctxt "ooze_shield_angle description"
  3369. msgid ""
  3370. "The maximum angle a part in the ooze shield will have. With 0 degrees being "
  3371. "vertical, and 90 degrees being horizontal. A smaller angle leads to less "
  3372. "failed ooze shields, but more material."
  3373. msgstr ""
  3374. #: fdmprinter.def.json
  3375. msgctxt "ooze_shield_dist label"
  3376. msgid "Ooze Shield Distance"
  3377. msgstr ""
  3378. #: fdmprinter.def.json
  3379. msgctxt "ooze_shield_dist description"
  3380. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3381. msgstr ""
  3382. #: fdmprinter.def.json
  3383. msgctxt "meshfix label"
  3384. msgid "Mesh Fixes"
  3385. msgstr ""
  3386. #: fdmprinter.def.json
  3387. msgctxt "meshfix description"
  3388. msgid "category_fixes"
  3389. msgstr ""
  3390. #: fdmprinter.def.json
  3391. msgctxt "meshfix_union_all label"
  3392. msgid "Union Overlapping Volumes"
  3393. msgstr ""
  3394. #: fdmprinter.def.json
  3395. msgctxt "meshfix_union_all description"
  3396. msgid ""
  3397. "Ignore the internal geometry arising from overlapping volumes within a mesh "
  3398. "and print the volumes as one. This may cause unintended internal cavities to "
  3399. "disappear."
  3400. msgstr ""
  3401. #: fdmprinter.def.json
  3402. msgctxt "meshfix_union_all_remove_holes label"
  3403. msgid "Remove All Holes"
  3404. msgstr ""
  3405. #: fdmprinter.def.json
  3406. msgctxt "meshfix_union_all_remove_holes description"
  3407. msgid ""
  3408. "Remove the holes in each layer and keep only the outside shape. This will "
  3409. "ignore any invisible internal geometry. However, it also ignores layer holes "
  3410. "which can be viewed from above or below."
  3411. msgstr ""
  3412. #: fdmprinter.def.json
  3413. msgctxt "meshfix_extensive_stitching label"
  3414. msgid "Extensive Stitching"
  3415. msgstr ""
  3416. #: fdmprinter.def.json
  3417. msgctxt "meshfix_extensive_stitching description"
  3418. msgid ""
  3419. "Extensive stitching tries to stitch up open holes in the mesh by closing the "
  3420. "hole with touching polygons. This option can introduce a lot of processing "
  3421. "time."
  3422. msgstr ""
  3423. #: fdmprinter.def.json
  3424. msgctxt "meshfix_keep_open_polygons label"
  3425. msgid "Keep Disconnected Faces"
  3426. msgstr ""
  3427. #: fdmprinter.def.json
  3428. msgctxt "meshfix_keep_open_polygons description"
  3429. msgid ""
  3430. "Normally Cura tries to stitch up small holes in the mesh and remove parts of "
  3431. "a layer with big holes. Enabling this option keeps those parts which cannot "
  3432. "be stitched. This option should be used as a last resort option when "
  3433. "everything else fails to produce proper GCode."
  3434. msgstr ""
  3435. #: fdmprinter.def.json
  3436. msgctxt "multiple_mesh_overlap label"
  3437. msgid "Merged Meshes Overlap"
  3438. msgstr ""
  3439. #: fdmprinter.def.json
  3440. msgctxt "multiple_mesh_overlap description"
  3441. msgid ""
  3442. "Make meshes which are touching each other overlap a bit. This makes them "
  3443. "bond together better."
  3444. msgstr ""
  3445. #: fdmprinter.def.json
  3446. msgctxt "carve_multiple_volumes label"
  3447. msgid "Remove Mesh Intersection"
  3448. msgstr ""
  3449. #: fdmprinter.def.json
  3450. msgctxt "carve_multiple_volumes description"
  3451. msgid ""
  3452. "Remove areas where multiple meshes are overlapping with each other. This may "
  3453. "be used if merged dual material objects overlap with each other."
  3454. msgstr ""
  3455. #: fdmprinter.def.json
  3456. msgctxt "alternate_carve_order label"
  3457. msgid "Alternate Mesh Removal"
  3458. msgstr ""
  3459. #: fdmprinter.def.json
  3460. msgctxt "alternate_carve_order description"
  3461. msgid ""
  3462. "Switch to which mesh intersecting volumes will belong with every layer, so "
  3463. "that the overlapping meshes become interwoven. Turning this setting off will "
  3464. "cause one of the meshes to obtain all of the volume in the overlap, while it "
  3465. "is removed from the other meshes."
  3466. msgstr ""
  3467. #: fdmprinter.def.json
  3468. msgctxt "blackmagic label"
  3469. msgid "Special Modes"
  3470. msgstr ""
  3471. #: fdmprinter.def.json
  3472. msgctxt "blackmagic description"
  3473. msgid "category_blackmagic"
  3474. msgstr ""
  3475. #: fdmprinter.def.json
  3476. msgctxt "print_sequence label"
  3477. msgid "Print Sequence"
  3478. msgstr ""
  3479. #: fdmprinter.def.json
  3480. msgctxt "print_sequence description"
  3481. msgid ""
  3482. "Whether to print all models one layer at a time or to wait for one model to "
  3483. "finish, before moving on to the next. One at a time mode is only possible if "
  3484. "all models are separated in such a way that the whole print head can move in "
  3485. "between and all models are lower than the distance between the nozzle and "
  3486. "the X/Y axes."
  3487. msgstr ""
  3488. #: fdmprinter.def.json
  3489. msgctxt "print_sequence option all_at_once"
  3490. msgid "All at Once"
  3491. msgstr ""
  3492. #: fdmprinter.def.json
  3493. msgctxt "print_sequence option one_at_a_time"
  3494. msgid "One at a Time"
  3495. msgstr ""
  3496. #: fdmprinter.def.json
  3497. msgctxt "infill_mesh label"
  3498. msgid "Infill Mesh"
  3499. msgstr ""
  3500. #: fdmprinter.def.json
  3501. msgctxt "infill_mesh description"
  3502. msgid ""
  3503. "Use this mesh to modify the infill of other meshes with which it overlaps. "
  3504. "Replaces infill regions of other meshes with regions for this mesh. It's "
  3505. "suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  3506. msgstr ""
  3507. #: fdmprinter.def.json
  3508. msgctxt "infill_mesh_order label"
  3509. msgid "Infill Mesh Order"
  3510. msgstr ""
  3511. #: fdmprinter.def.json
  3512. msgctxt "infill_mesh_order description"
  3513. msgid ""
  3514. "Determines which infill mesh is inside the infill of another infill mesh. An "
  3515. "infill mesh with a higher order will modify the infill of infill meshes with "
  3516. "lower order and normal meshes."
  3517. msgstr ""
  3518. #: fdmprinter.def.json
  3519. msgctxt "cutting_mesh label"
  3520. msgid "Cutting Mesh"
  3521. msgstr ""
  3522. #: fdmprinter.def.json
  3523. msgctxt "cutting_mesh description"
  3524. msgid ""
  3525. "Limit the volume of this mesh to within other meshes. You can use this to "
  3526. "make certain areas of one mesh print with different settings and with a "
  3527. "whole different extruder."
  3528. msgstr ""
  3529. #: fdmprinter.def.json
  3530. msgctxt "mold_enabled label"
  3531. msgid "Mold"
  3532. msgstr ""
  3533. #: fdmprinter.def.json
  3534. msgctxt "mold_enabled description"
  3535. msgid ""
  3536. "Print models as a mold, which can be cast in order to get a model which "
  3537. "resembles the models on the build plate."
  3538. msgstr ""
  3539. #: fdmprinter.def.json
  3540. msgctxt "mold_width label"
  3541. msgid "Minimal Mold Width"
  3542. msgstr ""
  3543. #: fdmprinter.def.json
  3544. msgctxt "mold_width description"
  3545. msgid ""
  3546. "The minimal distance between the ouside of the mold and the outside of the "
  3547. "model."
  3548. msgstr ""
  3549. #: fdmprinter.def.json
  3550. msgctxt "mold_roof_height label"
  3551. msgid "Mold Roof Height"
  3552. msgstr ""
  3553. #: fdmprinter.def.json
  3554. msgctxt "mold_roof_height description"
  3555. msgid "The height above horizontal parts in your model which to print mold."
  3556. msgstr ""
  3557. #: fdmprinter.def.json
  3558. msgctxt "mold_angle label"
  3559. msgid "Mold Angle"
  3560. msgstr ""
  3561. #: fdmprinter.def.json
  3562. msgctxt "mold_angle description"
  3563. msgid ""
  3564. "The angle of overhang of the outer walls created for the mold. 0° will make "
  3565. "the outer shell of the mold vertical, while 90° will make the outside of the "
  3566. "model follow the contour of the model."
  3567. msgstr ""
  3568. #: fdmprinter.def.json
  3569. msgctxt "support_mesh label"
  3570. msgid "Support Mesh"
  3571. msgstr ""
  3572. #: fdmprinter.def.json
  3573. msgctxt "support_mesh description"
  3574. msgid ""
  3575. "Use this mesh to specify support areas. This can be used to generate support "
  3576. "structure."
  3577. msgstr ""
  3578. #: fdmprinter.def.json
  3579. msgctxt "support_mesh_drop_down label"
  3580. msgid "Drop Down Support Mesh"
  3581. msgstr ""
  3582. #: fdmprinter.def.json
  3583. msgctxt "support_mesh_drop_down description"
  3584. msgid ""
  3585. "Make support everywhere below the support mesh, so that there's no overhang "
  3586. "in the support mesh."
  3587. msgstr ""
  3588. #: fdmprinter.def.json
  3589. msgctxt "anti_overhang_mesh label"
  3590. msgid "Anti Overhang Mesh"
  3591. msgstr ""
  3592. #: fdmprinter.def.json
  3593. msgctxt "anti_overhang_mesh description"
  3594. msgid ""
  3595. "Use this mesh to specify where no part of the model should be detected as "
  3596. "overhang. This can be used to remove unwanted support structure."
  3597. msgstr ""
  3598. #: fdmprinter.def.json
  3599. msgctxt "magic_mesh_surface_mode label"
  3600. msgid "Surface Mode"
  3601. msgstr ""
  3602. #: fdmprinter.def.json
  3603. msgctxt "magic_mesh_surface_mode description"
  3604. msgid ""
  3605. "Treat the model as a surface only, a volume, or volumes with loose surfaces. "
  3606. "The normal print mode only prints enclosed volumes. \"Surface\" prints a "
  3607. "single wall tracing the mesh surface with no infill and no top/bottom skin. "
  3608. "\"Both\" prints enclosed volumes like normal and any remaining polygons as "
  3609. "surfaces."
  3610. msgstr ""
  3611. #: fdmprinter.def.json
  3612. msgctxt "magic_mesh_surface_mode option normal"
  3613. msgid "Normal"
  3614. msgstr ""
  3615. #: fdmprinter.def.json
  3616. msgctxt "magic_mesh_surface_mode option surface"
  3617. msgid "Surface"
  3618. msgstr ""
  3619. #: fdmprinter.def.json
  3620. msgctxt "magic_mesh_surface_mode option both"
  3621. msgid "Both"
  3622. msgstr ""
  3623. #: fdmprinter.def.json
  3624. msgctxt "magic_spiralize label"
  3625. msgid "Spiralize Outer Contour"
  3626. msgstr ""
  3627. #: fdmprinter.def.json
  3628. msgctxt "magic_spiralize description"
  3629. msgid ""
  3630. "Spiralize smooths out the Z move of the outer edge. This will create a "
  3631. "steady Z increase over the whole print. This feature turns a solid model "
  3632. "into a single walled print with a solid bottom. This feature should only be "
  3633. "enabled when each layer only contains a single part."
  3634. msgstr ""
  3635. #: fdmprinter.def.json
  3636. msgctxt "smooth_spiralized_contours label"
  3637. msgid "Smooth Spiralized Contours"
  3638. msgstr ""
  3639. #: fdmprinter.def.json
  3640. msgctxt "smooth_spiralized_contours description"
  3641. msgid ""
  3642. "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-"
  3643. "seam should be barely visible on the print but will still be visible in the "
  3644. "layer view). Note that smoothing will tend to blur fine surface details."
  3645. msgstr ""
  3646. #: fdmprinter.def.json
  3647. msgctxt "experimental label"
  3648. msgid "Experimental"
  3649. msgstr ""
  3650. #: fdmprinter.def.json
  3651. msgctxt "experimental description"
  3652. msgid "experimental!"
  3653. msgstr ""
  3654. #: fdmprinter.def.json
  3655. msgctxt "draft_shield_enabled label"
  3656. msgid "Enable Draft Shield"
  3657. msgstr ""
  3658. #: fdmprinter.def.json
  3659. msgctxt "draft_shield_enabled description"
  3660. msgid ""
  3661. "This will create a wall around the model, which traps (hot) air and shields "
  3662. "against exterior airflow. Especially useful for materials which warp easily."
  3663. msgstr ""
  3664. #: fdmprinter.def.json
  3665. msgctxt "draft_shield_dist label"
  3666. msgid "Draft Shield X/Y Distance"
  3667. msgstr ""
  3668. #: fdmprinter.def.json
  3669. msgctxt "draft_shield_dist description"
  3670. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3671. msgstr ""
  3672. #: fdmprinter.def.json
  3673. msgctxt "draft_shield_height_limitation label"
  3674. msgid "Draft Shield Limitation"
  3675. msgstr ""
  3676. #: fdmprinter.def.json
  3677. msgctxt "draft_shield_height_limitation description"
  3678. msgid ""
  3679. "Set the height of the draft shield. Choose to print the draft shield at the "
  3680. "full height of the model or at a limited height."
  3681. msgstr ""
  3682. #: fdmprinter.def.json
  3683. msgctxt "draft_shield_height_limitation option full"
  3684. msgid "Full"
  3685. msgstr ""
  3686. #: fdmprinter.def.json
  3687. msgctxt "draft_shield_height_limitation option limited"
  3688. msgid "Limited"
  3689. msgstr ""
  3690. #: fdmprinter.def.json
  3691. msgctxt "draft_shield_height label"
  3692. msgid "Draft Shield Height"
  3693. msgstr ""
  3694. #: fdmprinter.def.json
  3695. msgctxt "draft_shield_height description"
  3696. msgid ""
  3697. "Height limitation of the draft shield. Above this height no draft shield "
  3698. "will be printed."
  3699. msgstr ""
  3700. #: fdmprinter.def.json
  3701. msgctxt "conical_overhang_enabled label"
  3702. msgid "Make Overhang Printable"
  3703. msgstr ""
  3704. #: fdmprinter.def.json
  3705. msgctxt "conical_overhang_enabled description"
  3706. msgid ""
  3707. "Change the geometry of the printed model such that minimal support is "
  3708. "required. Steep overhangs will become shallow overhangs. Overhanging areas "
  3709. "will drop down to become more vertical."
  3710. msgstr ""
  3711. #: fdmprinter.def.json
  3712. msgctxt "conical_overhang_angle label"
  3713. msgid "Maximum Model Angle"
  3714. msgstr ""
  3715. #: fdmprinter.def.json
  3716. msgctxt "conical_overhang_angle description"
  3717. msgid ""
  3718. "The maximum angle of overhangs after the they have been made printable. At a "
  3719. "value of 0° all overhangs are replaced by a piece of model connected to the "
  3720. "build plate, 90° will not change the model in any way."
  3721. msgstr ""
  3722. #: fdmprinter.def.json
  3723. msgctxt "coasting_enable label"
  3724. msgid "Enable Coasting"
  3725. msgstr ""
  3726. #: fdmprinter.def.json
  3727. msgctxt "coasting_enable description"
  3728. msgid ""
  3729. "Coasting replaces the last part of an extrusion path with a travel path. The "
  3730. "oozed material is used to print the last piece of the extrusion path in "
  3731. "order to reduce stringing."
  3732. msgstr ""
  3733. #: fdmprinter.def.json
  3734. msgctxt "coasting_volume label"
  3735. msgid "Coasting Volume"
  3736. msgstr ""
  3737. #: fdmprinter.def.json
  3738. msgctxt "coasting_volume description"
  3739. msgid ""
  3740. "The volume otherwise oozed. This value should generally be close to the "
  3741. "nozzle diameter cubed."
  3742. msgstr ""
  3743. #: fdmprinter.def.json
  3744. msgctxt "coasting_min_volume label"
  3745. msgid "Minimum Volume Before Coasting"
  3746. msgstr ""
  3747. #: fdmprinter.def.json
  3748. msgctxt "coasting_min_volume description"
  3749. msgid ""
  3750. "The smallest volume an extrusion path should have before allowing coasting. "
  3751. "For smaller extrusion paths, less pressure has been built up in the bowden "
  3752. "tube and so the coasted volume is scaled linearly. This value should always "
  3753. "be larger than the Coasting Volume."
  3754. msgstr ""
  3755. #: fdmprinter.def.json
  3756. msgctxt "coasting_speed label"
  3757. msgid "Coasting Speed"
  3758. msgstr ""
  3759. #: fdmprinter.def.json
  3760. msgctxt "coasting_speed description"
  3761. msgid ""
  3762. "The speed by which to move during coasting, relative to the speed of the "
  3763. "extrusion path. A value slightly under 100% is advised, since during the "
  3764. "coasting move the pressure in the bowden tube drops."
  3765. msgstr ""
  3766. #: fdmprinter.def.json
  3767. msgctxt "skin_outline_count label"
  3768. msgid "Extra Skin Wall Count"
  3769. msgstr ""
  3770. #: fdmprinter.def.json
  3771. msgctxt "skin_outline_count description"
  3772. msgid ""
  3773. "Replaces the outermost part of the top/bottom pattern with a number of "
  3774. "concentric lines. Using one or two lines improves roofs that start on infill "
  3775. "material."
  3776. msgstr ""
  3777. #: fdmprinter.def.json
  3778. msgctxt "skin_alternate_rotation label"
  3779. msgid "Alternate Skin Rotation"
  3780. msgstr ""
  3781. #: fdmprinter.def.json
  3782. msgctxt "skin_alternate_rotation description"
  3783. msgid ""
  3784. "Alternate the direction in which the top/bottom layers are printed. Normally "
  3785. "they are printed diagonally only. This setting adds the X-only and Y-only "
  3786. "directions."
  3787. msgstr ""
  3788. #: fdmprinter.def.json
  3789. msgctxt "support_conical_enabled label"
  3790. msgid "Enable Conical Support"
  3791. msgstr ""
  3792. #: fdmprinter.def.json
  3793. msgctxt "support_conical_enabled description"
  3794. msgid ""
  3795. "Experimental feature: Make support areas smaller at the bottom than at the "
  3796. "overhang."
  3797. msgstr ""
  3798. #: fdmprinter.def.json
  3799. msgctxt "support_conical_angle label"
  3800. msgid "Conical Support Angle"
  3801. msgstr ""
  3802. #: fdmprinter.def.json
  3803. msgctxt "support_conical_angle description"
  3804. msgid ""
  3805. "The angle of the tilt of conical support. With 0 degrees being vertical, and "
  3806. "90 degrees being horizontal. Smaller angles cause the support to be more "
  3807. "sturdy, but consist of more material. Negative angles cause the base of the "
  3808. "support to be wider than the top."
  3809. msgstr ""
  3810. #: fdmprinter.def.json
  3811. msgctxt "support_conical_min_width label"
  3812. msgid "Conical Support Minimum Width"
  3813. msgstr ""
  3814. #: fdmprinter.def.json
  3815. msgctxt "support_conical_min_width description"
  3816. msgid ""
  3817. "Minimum width to which the base of the conical support area is reduced. "
  3818. "Small widths can lead to unstable support structures."
  3819. msgstr ""
  3820. #: fdmprinter.def.json
  3821. msgctxt "infill_hollow label"
  3822. msgid "Hollow Out Objects"
  3823. msgstr ""
  3824. #: fdmprinter.def.json
  3825. msgctxt "infill_hollow description"
  3826. msgid ""
  3827. "Remove all infill and make the inside of the object eligible for support."
  3828. msgstr ""
  3829. #: fdmprinter.def.json
  3830. msgctxt "magic_fuzzy_skin_enabled label"
  3831. msgid "Fuzzy Skin"
  3832. msgstr ""
  3833. #: fdmprinter.def.json
  3834. msgctxt "magic_fuzzy_skin_enabled description"
  3835. msgid ""
  3836. "Randomly jitter while printing the outer wall, so that the surface has a "
  3837. "rough and fuzzy look."
  3838. msgstr ""
  3839. #: fdmprinter.def.json
  3840. msgctxt "magic_fuzzy_skin_thickness label"
  3841. msgid "Fuzzy Skin Thickness"
  3842. msgstr ""
  3843. #: fdmprinter.def.json
  3844. msgctxt "magic_fuzzy_skin_thickness description"
  3845. msgid ""
  3846. "The width within which to jitter. It's advised to keep this below the outer "
  3847. "wall width, since the inner walls are unaltered."
  3848. msgstr ""
  3849. #: fdmprinter.def.json
  3850. msgctxt "magic_fuzzy_skin_point_density label"
  3851. msgid "Fuzzy Skin Density"
  3852. msgstr ""
  3853. #: fdmprinter.def.json
  3854. msgctxt "magic_fuzzy_skin_point_density description"
  3855. msgid ""
  3856. "The average density of points introduced on each polygon in a layer. Note "
  3857. "that the original points of the polygon are discarded, so a low density "
  3858. "results in a reduction of the resolution."
  3859. msgstr ""
  3860. #: fdmprinter.def.json
  3861. msgctxt "magic_fuzzy_skin_point_dist label"
  3862. msgid "Fuzzy Skin Point Distance"
  3863. msgstr ""
  3864. #: fdmprinter.def.json
  3865. msgctxt "magic_fuzzy_skin_point_dist description"
  3866. msgid ""
  3867. "The average distance between the random points introduced on each line "
  3868. "segment. Note that the original points of the polygon are discarded, so a "
  3869. "high smoothness results in a reduction of the resolution. This value must be "
  3870. "higher than half the Fuzzy Skin Thickness."
  3871. msgstr ""
  3872. #: fdmprinter.def.json
  3873. msgctxt "wireframe_enabled label"
  3874. msgid "Wire Printing"
  3875. msgstr ""
  3876. #: fdmprinter.def.json
  3877. msgctxt "wireframe_enabled description"
  3878. msgid ""
  3879. "Print only the outside surface with a sparse webbed structure, printing 'in "
  3880. "thin air'. This is realized by horizontally printing the contours of the "
  3881. "model at given Z intervals which are connected via upward and diagonally "
  3882. "downward lines."
  3883. msgstr ""
  3884. #: fdmprinter.def.json
  3885. msgctxt "wireframe_height label"
  3886. msgid "WP Connection Height"
  3887. msgstr ""
  3888. #: fdmprinter.def.json
  3889. msgctxt "wireframe_height description"
  3890. msgid ""
  3891. "The height of the upward and diagonally downward lines between two "
  3892. "horizontal parts. This determines the overall density of the net structure. "
  3893. "Only applies to Wire Printing."
  3894. msgstr ""
  3895. #: fdmprinter.def.json
  3896. msgctxt "wireframe_roof_inset label"
  3897. msgid "WP Roof Inset Distance"
  3898. msgstr ""
  3899. #: fdmprinter.def.json
  3900. msgctxt "wireframe_roof_inset description"
  3901. msgid ""
  3902. "The distance covered when making a connection from a roof outline inward. "
  3903. "Only applies to Wire Printing."
  3904. msgstr ""
  3905. #: fdmprinter.def.json
  3906. msgctxt "wireframe_printspeed label"
  3907. msgid "WP Speed"
  3908. msgstr ""
  3909. #: fdmprinter.def.json
  3910. msgctxt "wireframe_printspeed description"
  3911. msgid ""
  3912. "Speed at which the nozzle moves when extruding material. Only applies to "
  3913. "Wire Printing."
  3914. msgstr ""
  3915. #: fdmprinter.def.json
  3916. msgctxt "wireframe_printspeed_bottom label"
  3917. msgid "WP Bottom Printing Speed"
  3918. msgstr ""
  3919. #: fdmprinter.def.json
  3920. msgctxt "wireframe_printspeed_bottom description"
  3921. msgid ""
  3922. "Speed of printing the first layer, which is the only layer touching the "
  3923. "build platform. Only applies to Wire Printing."
  3924. msgstr ""
  3925. #: fdmprinter.def.json
  3926. msgctxt "wireframe_printspeed_up label"
  3927. msgid "WP Upward Printing Speed"
  3928. msgstr ""
  3929. #: fdmprinter.def.json
  3930. msgctxt "wireframe_printspeed_up description"
  3931. msgid ""
  3932. "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  3933. msgstr ""
  3934. #: fdmprinter.def.json
  3935. msgctxt "wireframe_printspeed_down label"
  3936. msgid "WP Downward Printing Speed"
  3937. msgstr ""
  3938. #: fdmprinter.def.json
  3939. msgctxt "wireframe_printspeed_down description"
  3940. msgid ""
  3941. "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  3942. msgstr ""
  3943. #: fdmprinter.def.json
  3944. msgctxt "wireframe_printspeed_flat label"
  3945. msgid "WP Horizontal Printing Speed"
  3946. msgstr ""
  3947. #: fdmprinter.def.json
  3948. msgctxt "wireframe_printspeed_flat description"
  3949. msgid ""
  3950. "Speed of printing the horizontal contours of the model. Only applies to Wire "
  3951. "Printing."
  3952. msgstr ""
  3953. #: fdmprinter.def.json
  3954. msgctxt "wireframe_flow label"
  3955. msgid "WP Flow"
  3956. msgstr ""
  3957. #: fdmprinter.def.json
  3958. msgctxt "wireframe_flow description"
  3959. msgid ""
  3960. "Flow compensation: the amount of material extruded is multiplied by this "
  3961. "value. Only applies to Wire Printing."
  3962. msgstr ""
  3963. #: fdmprinter.def.json
  3964. msgctxt "wireframe_flow_connection label"
  3965. msgid "WP Connection Flow"
  3966. msgstr ""
  3967. #: fdmprinter.def.json
  3968. msgctxt "wireframe_flow_connection description"
  3969. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  3970. msgstr ""
  3971. #: fdmprinter.def.json
  3972. msgctxt "wireframe_flow_flat label"
  3973. msgid "WP Flat Flow"
  3974. msgstr ""
  3975. #: fdmprinter.def.json
  3976. msgctxt "wireframe_flow_flat description"
  3977. msgid ""
  3978. "Flow compensation when printing flat lines. Only applies to Wire Printing."
  3979. msgstr ""
  3980. #: fdmprinter.def.json
  3981. msgctxt "wireframe_top_delay label"
  3982. msgid "WP Top Delay"
  3983. msgstr ""
  3984. #: fdmprinter.def.json
  3985. msgctxt "wireframe_top_delay description"
  3986. msgid ""
  3987. "Delay time after an upward move, so that the upward line can harden. Only "
  3988. "applies to Wire Printing."
  3989. msgstr ""
  3990. #: fdmprinter.def.json
  3991. msgctxt "wireframe_bottom_delay label"
  3992. msgid "WP Bottom Delay"
  3993. msgstr ""
  3994. #: fdmprinter.def.json
  3995. msgctxt "wireframe_bottom_delay description"
  3996. msgid "Delay time after a downward move. Only applies to Wire Printing."
  3997. msgstr ""
  3998. #: fdmprinter.def.json
  3999. msgctxt "wireframe_flat_delay label"
  4000. msgid "WP Flat Delay"
  4001. msgstr ""
  4002. #: fdmprinter.def.json
  4003. msgctxt "wireframe_flat_delay description"
  4004. msgid ""
  4005. "Delay time between two horizontal segments. Introducing such a delay can "
  4006. "cause better adhesion to previous layers at the connection points, while too "
  4007. "long delays cause sagging. Only applies to Wire Printing."
  4008. msgstr ""
  4009. #: fdmprinter.def.json
  4010. msgctxt "wireframe_up_half_speed label"
  4011. msgid "WP Ease Upward"
  4012. msgstr ""
  4013. #: fdmprinter.def.json
  4014. msgctxt "wireframe_up_half_speed description"
  4015. msgid ""
  4016. "Distance of an upward move which is extruded with half speed.\n"
  4017. "This can cause better adhesion to previous layers, while not heating the "
  4018. "material in those layers too much. Only applies to Wire Printing."
  4019. msgstr ""
  4020. #: fdmprinter.def.json
  4021. msgctxt "wireframe_top_jump label"
  4022. msgid "WP Knot Size"
  4023. msgstr ""
  4024. #: fdmprinter.def.json
  4025. msgctxt "wireframe_top_jump description"
  4026. msgid ""
  4027. "Creates a small knot at the top of an upward line, so that the consecutive "
  4028. "horizontal layer has a better chance to connect to it. Only applies to Wire "
  4029. "Printing."
  4030. msgstr ""
  4031. #: fdmprinter.def.json
  4032. msgctxt "wireframe_fall_down label"
  4033. msgid "WP Fall Down"
  4034. msgstr ""
  4035. #: fdmprinter.def.json
  4036. msgctxt "wireframe_fall_down description"
  4037. msgid ""
  4038. "Distance with which the material falls down after an upward extrusion. This "
  4039. "distance is compensated for. Only applies to Wire Printing."
  4040. msgstr ""
  4041. #: fdmprinter.def.json
  4042. msgctxt "wireframe_drag_along label"
  4043. msgid "WP Drag Along"
  4044. msgstr ""
  4045. #: fdmprinter.def.json
  4046. msgctxt "wireframe_drag_along description"
  4047. msgid ""
  4048. "Distance with which the material of an upward extrusion is dragged along "
  4049. "with the diagonally downward extrusion. This distance is compensated for. "
  4050. "Only applies to Wire Printing."
  4051. msgstr ""
  4052. #: fdmprinter.def.json
  4053. msgctxt "wireframe_strategy label"
  4054. msgid "WP Strategy"
  4055. msgstr ""
  4056. #: fdmprinter.def.json
  4057. msgctxt "wireframe_strategy description"
  4058. msgid ""
  4059. "Strategy for making sure two consecutive layers connect at each connection "
  4060. "point. Retraction lets the upward lines harden in the right position, but "
  4061. "may cause filament grinding. A knot can be made at the end of an upward line "
  4062. "to heighten the chance of connecting to it and to let the line cool; "
  4063. "however, it may require slow printing speeds. Another strategy is to "
  4064. "compensate for the sagging of the top of an upward line; however, the lines "
  4065. "won't always fall down as predicted."
  4066. msgstr ""
  4067. #: fdmprinter.def.json
  4068. msgctxt "wireframe_strategy option compensate"
  4069. msgid "Compensate"
  4070. msgstr ""
  4071. #: fdmprinter.def.json
  4072. msgctxt "wireframe_strategy option knot"
  4073. msgid "Knot"
  4074. msgstr ""
  4075. #: fdmprinter.def.json
  4076. msgctxt "wireframe_strategy option retract"
  4077. msgid "Retract"
  4078. msgstr ""
  4079. #: fdmprinter.def.json
  4080. msgctxt "wireframe_straight_before_down label"
  4081. msgid "WP Straighten Downward Lines"
  4082. msgstr ""
  4083. #: fdmprinter.def.json
  4084. msgctxt "wireframe_straight_before_down description"
  4085. msgid ""
  4086. "Percentage of a diagonally downward line which is covered by a horizontal "
  4087. "line piece. This can prevent sagging of the top most point of upward lines. "
  4088. "Only applies to Wire Printing."
  4089. msgstr ""
  4090. #: fdmprinter.def.json
  4091. msgctxt "wireframe_roof_fall_down label"
  4092. msgid "WP Roof Fall Down"
  4093. msgstr ""
  4094. #: fdmprinter.def.json
  4095. msgctxt "wireframe_roof_fall_down description"
  4096. msgid ""
  4097. "The distance which horizontal roof lines printed 'in thin air' fall down "
  4098. "when being printed. This distance is compensated for. Only applies to Wire "
  4099. "Printing."
  4100. msgstr ""
  4101. #: fdmprinter.def.json
  4102. msgctxt "wireframe_roof_drag_along label"
  4103. msgid "WP Roof Drag Along"
  4104. msgstr ""
  4105. #: fdmprinter.def.json
  4106. msgctxt "wireframe_roof_drag_along description"
  4107. msgid ""
  4108. "The distance of the end piece of an inward line which gets dragged along "
  4109. "when going back to the outer outline of the roof. This distance is "
  4110. "compensated for. Only applies to Wire Printing."
  4111. msgstr ""
  4112. #: fdmprinter.def.json
  4113. msgctxt "wireframe_roof_outer_delay label"
  4114. msgid "WP Roof Outer Delay"
  4115. msgstr ""
  4116. #: fdmprinter.def.json
  4117. msgctxt "wireframe_roof_outer_delay description"
  4118. msgid ""
  4119. "Time spent at the outer perimeters of hole which is to become a roof. Longer "
  4120. "times can ensure a better connection. Only applies to Wire Printing."
  4121. msgstr ""
  4122. #: fdmprinter.def.json
  4123. msgctxt "wireframe_nozzle_clearance label"
  4124. msgid "WP Nozzle Clearance"
  4125. msgstr ""
  4126. #: fdmprinter.def.json
  4127. msgctxt "wireframe_nozzle_clearance description"
  4128. msgid ""
  4129. "Distance between the nozzle and horizontally downward lines. Larger "
  4130. "clearance results in diagonally downward lines with a less steep angle, "
  4131. "which in turn results in less upward connections with the next layer. Only "
  4132. "applies to Wire Printing."
  4133. msgstr ""
  4134. #: fdmprinter.def.json
  4135. msgctxt "command_line_settings label"
  4136. msgid "Command Line Settings"
  4137. msgstr ""
  4138. #: fdmprinter.def.json
  4139. msgctxt "command_line_settings description"
  4140. msgid ""
  4141. "Settings which are only used if CuraEngine isn't called from the Cura "
  4142. "frontend."
  4143. msgstr ""
  4144. #: fdmprinter.def.json
  4145. msgctxt "center_object label"
  4146. msgid "Center object"
  4147. msgstr ""
  4148. #: fdmprinter.def.json
  4149. msgctxt "center_object description"
  4150. msgid ""
  4151. "Whether to center the object on the middle of the build platform (0,0), "
  4152. "instead of using the coordinate system in which the object was saved."
  4153. msgstr ""
  4154. #: fdmprinter.def.json
  4155. msgctxt "mesh_position_x label"
  4156. msgid "Mesh position x"
  4157. msgstr ""
  4158. #: fdmprinter.def.json
  4159. msgctxt "mesh_position_x description"
  4160. msgid "Offset applied to the object in the x direction."
  4161. msgstr ""
  4162. #: fdmprinter.def.json
  4163. msgctxt "mesh_position_y label"
  4164. msgid "Mesh position y"
  4165. msgstr ""
  4166. #: fdmprinter.def.json
  4167. msgctxt "mesh_position_y description"
  4168. msgid "Offset applied to the object in the y direction."
  4169. msgstr ""
  4170. #: fdmprinter.def.json
  4171. msgctxt "mesh_position_z label"
  4172. msgid "Mesh position z"
  4173. msgstr ""
  4174. #: fdmprinter.def.json
  4175. msgctxt "mesh_position_z description"
  4176. msgid ""
  4177. "Offset applied to the object in the z direction. With this you can perform "
  4178. "what was used to be called 'Object Sink'."
  4179. msgstr ""
  4180. #: fdmprinter.def.json
  4181. msgctxt "mesh_rotation_matrix label"
  4182. msgid "Mesh Rotation Matrix"
  4183. msgstr ""
  4184. #: fdmprinter.def.json
  4185. msgctxt "mesh_rotation_matrix description"
  4186. msgid ""
  4187. "Transformation matrix to be applied to the model when loading it from file."
  4188. msgstr ""