Slic3rPE_en.po 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: \n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2018-02-28 13:53+0100\n"
  6. "PO-Revision-Date: 2018-02-28 14:13+0100\n"
  7. "Last-Translator: Oleksandra Iushchenko <yusanka@gmail.com>\n"
  8. "Language-Team: \n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "X-Generator: Poedit 2.0.6\n"
  13. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  14. "Language: en\n"
  15. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:39
  16. msgid "Shape"
  17. msgstr "Shape"
  18. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:46
  19. msgid "Rectangular"
  20. msgstr "Rectangular"
  21. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:50
  22. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1191
  23. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:408
  24. msgid "Size"
  25. msgstr "Size"
  26. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:51
  27. msgid "Size in X and Y of the rectangular plate."
  28. msgstr "Size in X and Y of the rectangular plate."
  29. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:57
  30. msgid "Origin"
  31. msgstr "Origin"
  32. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:58
  33. msgid ""
  34. "Distance of the 0,0 G-code coordinate from the front left corner of the "
  35. "rectangle."
  36. msgstr ""
  37. "Distance of the 0,0 G-code coordinate from the front left corner of the "
  38. "rectangle."
  39. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:62
  40. msgid "Circular"
  41. msgstr "Circular"
  42. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:65
  43. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:129
  44. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:200
  45. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:211
  46. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:325
  47. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:336
  48. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:355
  49. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:434
  50. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:781
  51. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:801
  52. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:860
  53. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:878
  54. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:896
  55. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1044
  56. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1052
  57. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1094
  58. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1103
  59. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1113
  60. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1121
  61. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1129
  62. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1215
  63. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1421
  64. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1491
  65. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1527
  66. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1704
  67. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1711
  68. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1718
  69. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1727
  70. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1737
  71. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1747
  72. msgid "mm"
  73. msgstr "mm"
  74. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:66
  75. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:431
  76. msgid "Diameter"
  77. msgstr "Diameter"
  78. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:67
  79. msgid ""
  80. "Diameter of the print bed. It is assumed that origin (0,0) is located in the "
  81. "center."
  82. msgstr ""
  83. "Diameter of the print bed. It is assumed that origin (0,0) is located in the "
  84. "center."
  85. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:71
  86. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:150
  87. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:92
  88. msgid "Custom"
  89. msgstr "Custom"
  90. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:75
  91. msgid "Load shape from STL..."
  92. msgstr "Load shape from STL..."
  93. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:120
  94. msgid "Settings"
  95. msgstr "Settings"
  96. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
  97. msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
  98. msgstr "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
  99. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:315
  100. msgid "Error! "
  101. msgstr "Error! "
  102. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:324
  103. msgid "The selected file contains no geometry."
  104. msgstr "The selected file contains no geometry."
  105. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:328
  106. msgid ""
  107. "The selected file contains several disjoint areas. This is not supported."
  108. msgstr ""
  109. "The selected file contains several disjoint areas. This is not supported."
  110. #: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.hpp:42
  111. msgid "Bed Shape"
  112. msgstr "Bed Shape"
  113. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:224
  114. msgid "Array of language names and identifiers should have the same size."
  115. msgstr "Array of language names and identifiers should have the same size."
  116. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:235
  117. msgid "Select the language"
  118. msgstr "Select the language"
  119. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:235
  120. msgid "Language"
  121. msgstr "Language"
  122. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:300
  123. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:170
  124. msgid "Default"
  125. msgstr "Default"
  126. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:325
  127. msgid "Change Application Language"
  128. msgstr "Change Application Language"
  129. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:332
  130. msgid "Application will be restarted"
  131. msgstr "Application will be restarted"
  132. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:332
  133. msgid "Attention!"
  134. msgstr "Attention!"
  135. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:339
  136. msgid "&Localization"
  137. msgstr "&Localization"
  138. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:488
  139. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:470
  140. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1300
  141. msgid "Error"
  142. msgstr "Error"
  143. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:493
  144. msgid "Notice"
  145. msgstr "Notice"
  146. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:498
  147. msgid "GLUquadricObjPtr | Attempt to free unreferenced scalar"
  148. msgstr "GLUquadricObjPtr | Attempt to free unreferenced scalar"
  149. #: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:500
  150. msgid "Warning"
  151. msgstr "Warning"
  152. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:50
  153. msgid "Save current "
  154. msgstr "Save current "
  155. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:51
  156. msgid "Delete this preset"
  157. msgstr "Delete this preset"
  158. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:313
  159. msgid "Layers and perimeters"
  160. msgstr "Layers and perimeters"
  161. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:314
  162. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:777
  163. msgid "Layer height"
  164. msgstr "Layer height"
  165. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:318
  166. msgid "Vertical shells"
  167. msgstr "Vertical shells"
  168. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
  169. msgid "Horizontal shells"
  170. msgstr "Horizontal shells"
  171. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:330
  172. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1314
  173. msgid "Solid layers"
  174. msgstr "Solid layers"
  175. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:335
  176. msgid "Quality (slower slicing)"
  177. msgstr "Quality (slower slicing)"
  178. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:342
  179. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:356
  180. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:449
  181. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:452
  182. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:831
  183. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1113
  184. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:107
  185. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:208
  186. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:736
  187. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1733
  188. msgid "Advanced"
  189. msgstr "Advanced"
  190. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:346
  191. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:347
  192. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:664
  193. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:87
  194. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:247
  195. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:488
  196. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:502
  197. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:540
  198. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:681
  199. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:691
  200. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:709
  201. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:727
  202. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:746
  203. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1263
  204. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1280
  205. msgid "Infill"
  206. msgstr "Infill"
  207. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:352
  208. msgid "Reducing printing time"
  209. msgstr "Reducing printing time"
  210. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:364
  211. msgid "Skirt and brim"
  212. msgstr "Skirt and brim"
  213. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:365
  214. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:146
  215. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:88
  216. msgid "Skirt"
  217. msgstr "Skirt"
  218. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:371
  219. msgid "Brim"
  220. msgstr "Brim"
  221. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:374
  222. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:375
  223. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:191
  224. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1030
  225. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1380
  226. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1387
  227. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1399
  228. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1409
  229. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1417
  230. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1432
  231. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1453
  232. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1464
  233. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1480
  234. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1489
  235. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1498
  236. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1509
  237. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1525
  238. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1533
  239. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1534
  240. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1543
  241. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1551
  242. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1565
  243. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:147
  244. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:89
  245. msgid "Support material"
  246. msgstr "Support material"
  247. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:380
  248. msgid "Raft"
  249. msgstr "Raft"
  250. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:384
  251. msgid "Options for support material and raft"
  252. msgstr "Options for support material and raft"
  253. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:398
  254. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:118
  255. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:278
  256. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:635
  257. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:747
  258. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:979
  259. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1201
  260. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1251
  261. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1302
  262. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1625
  263. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:71
  264. msgid "Speed"
  265. msgstr "Speed"
  266. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:399
  267. msgid "Speed for print moves"
  268. msgstr "Speed for print moves"
  269. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:411
  270. msgid "Speed for non-print moves"
  271. msgstr "Speed for non-print moves"
  272. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:414
  273. msgid "Modifiers"
  274. msgstr "Modifiers"
  275. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:417
  276. msgid "Acceleration control (advanced)"
  277. msgstr "Acceleration control (advanced)"
  278. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:424
  279. msgid "Autospeed (advanced)"
  280. msgstr "Autospeed (advanced)"
  281. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:430
  282. msgid "Multiple Extruders"
  283. msgstr "Multiple Extruders"
  284. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:431
  285. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:966
  286. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:308
  287. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:702
  288. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:958
  289. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1272
  290. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1445
  291. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1471
  292. msgid "Extruders"
  293. msgstr "Extruders"
  294. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:438
  295. msgid "Ooze prevention"
  296. msgstr "Ooze prevention"
  297. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:442
  298. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:149
  299. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:91
  300. msgid "Wipe tower"
  301. msgstr "Wipe tower"
  302. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:453
  303. msgid "Extrusion width"
  304. msgstr "Extrusion width"
  305. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:463
  306. msgid "Overlap"
  307. msgstr "Overlap"
  308. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
  309. msgid "Flow"
  310. msgstr "Flow"
  311. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:469
  312. msgid "Other"
  313. msgstr "Other"
  314. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:476
  315. msgid "Output options"
  316. msgstr "Output options"
  317. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:477
  318. msgid "Sequential printing"
  319. msgstr "Sequential printing"
  320. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:479
  321. msgid "Extruder clearance (mm)"
  322. msgstr "Extruder clearance (mm)"
  323. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:488
  324. msgid "Output file"
  325. msgstr "Output file"
  326. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:494
  327. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1001
  328. msgid "Post-processing scripts"
  329. msgstr "Post-processing scripts"
  330. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:500
  331. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:501
  332. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:859
  333. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:860
  334. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1156
  335. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1157
  336. msgid "Notes"
  337. msgstr "Notes"
  338. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:507
  339. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:867
  340. msgid "Dependencies"
  341. msgstr "Dependencies"
  342. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:508
  343. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:868
  344. msgid "Profile dependencies"
  345. msgstr "Profile dependencies"
  346. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:509
  347. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:869
  348. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1668
  349. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:143
  350. msgid "Compatible printers"
  351. msgstr "Compatible printers"
  352. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:533
  353. #, no-c-format
  354. msgid ""
  355. "The Spiral Vase mode requires:\n"
  356. "- one perimeter\n"
  357. "- no top solid layers\n"
  358. "- 0% fill density\n"
  359. "- no support material\n"
  360. "- no ensure_vertical_shell_thickness\n"
  361. "\n"
  362. "Shall I adjust those settings in order to enable Spiral Vase?"
  363. msgstr ""
  364. "The Spiral Vase mode requires:\n"
  365. "- one perimeter\n"
  366. "- no top solid layers\n"
  367. "- 0% fill density\n"
  368. "- no support material\n"
  369. "- no ensure_vertical_shell_thickness\n"
  370. "\n"
  371. "Shall I adjust those settings in order to enable Spiral Vase?"
  372. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:540
  373. msgid "Spiral Vase"
  374. msgstr "Spiral Vase"
  375. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:560
  376. msgid ""
  377. "The Wipe Tower currently supports only:\n"
  378. "- first layer height 0.2mm\n"
  379. "- layer height from 0.15mm to 0.35mm\n"
  380. "\n"
  381. "Shall I adjust those settings in order to enable the Wipe Tower?"
  382. msgstr ""
  383. "The Wipe Tower currently supports only:\n"
  384. "- first layer height 0.2mm\n"
  385. "- layer height from 0.15mm to 0.35mm\n"
  386. "\n"
  387. "Shall I adjust those settings in order to enable the Wipe Tower?"
  388. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:564
  389. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:585
  390. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:602
  391. msgid "Wipe Tower"
  392. msgstr "Wipe Tower"
  393. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:581
  394. msgid ""
  395. "The Wipe Tower currently supports the non-soluble supports only\n"
  396. "if they are printed with the current extruder without triggering a tool "
  397. "change.\n"
  398. "(both support_material_extruder and support_material_interface_extruder need "
  399. "to be set to 0).\n"
  400. "\n"
  401. "Shall I adjust those settings in order to enable the Wipe Tower?"
  402. msgstr ""
  403. "The Wipe Tower currently supports the non-soluble supports only\n"
  404. "if they are printed with the current extruder without triggering a tool "
  405. "change.\n"
  406. "(both support_material_extruder and support_material_interface_extruder need "
  407. "to be set to 0).\n"
  408. "\n"
  409. "Shall I adjust those settings in order to enable the Wipe Tower?"
  410. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:599
  411. msgid ""
  412. "For the Wipe Tower to work with the soluble supports, the support layers\n"
  413. "need to be synchronized with the object layers.\n"
  414. "\n"
  415. "Shall I synchronize support layers in order to enable the Wipe Tower?"
  416. msgstr ""
  417. "For the Wipe Tower to work with the soluble supports, the support layers\n"
  418. "need to be synchronized with the object layers.\n"
  419. "\n"
  420. "Shall I synchronize support layers in order to enable the Wipe Tower?"
  421. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:617
  422. msgid ""
  423. "Supports work better, if the following feature is enabled:\n"
  424. "- Detect bridging perimeters\n"
  425. "\n"
  426. "Shall I adjust those settings for supports?"
  427. msgstr ""
  428. "Supports work better, if the following feature is enabled:\n"
  429. "- Detect bridging perimeters\n"
  430. "\n"
  431. "Shall I adjust those settings for supports?"
  432. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:620
  433. msgid "Support Generator"
  434. msgstr "Support Generator"
  435. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:662
  436. msgid "The "
  437. msgstr "The "
  438. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:662
  439. #, no-c-format
  440. msgid ""
  441. " infill pattern is not supposed to work at 100% density.\n"
  442. "\n"
  443. "Shall I switch to rectilinear fill pattern?"
  444. msgstr ""
  445. " infill pattern is not supposed to work at 100% density.\n"
  446. "\n"
  447. "Shall I switch to rectilinear fill pattern?"
  448. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:786
  449. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:787
  450. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:368
  451. msgid "Filament"
  452. msgstr "Filament"
  453. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:794
  454. msgid "Temperature "
  455. msgstr "Temperature "
  456. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:795
  457. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1234
  458. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:307
  459. msgid "Extruder"
  460. msgstr "Extruder"
  461. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:800
  462. msgid "Bed"
  463. msgstr "Bed"
  464. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:805
  465. msgid "Cooling"
  466. msgstr "Cooling"
  467. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:806
  468. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:922
  469. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1695
  470. msgid "Enable"
  471. msgstr "Enable"
  472. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:817
  473. msgid "Fan settings"
  474. msgstr "Fan settings"
  475. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:818
  476. msgid "Fan speed"
  477. msgstr "Fan speed"
  478. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:826
  479. msgid "Cooling thresholds"
  480. msgstr "Cooling thresholds"
  481. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:832
  482. msgid "Filament properties"
  483. msgstr "Filament properties"
  484. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:836
  485. msgid "Print speed override"
  486. msgstr "Print speed override"
  487. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:846
  488. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1119
  489. msgid "Custom G-code"
  490. msgstr "Custom G-code"
  491. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:847
  492. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1120
  493. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1342
  494. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1357
  495. msgid "Start G-code"
  496. msgstr "Start G-code"
  497. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:853
  498. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1126
  499. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:217
  500. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:227
  501. msgid "End G-code"
  502. msgstr "End G-code"
  503. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:937
  504. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:11
  505. msgid "General"
  506. msgstr "General"
  507. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:938
  508. msgid "Size and coordinates"
  509. msgstr "Size and coordinates"
  510. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:940
  511. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:34
  512. msgid "Bed shape"
  513. msgstr "Bed shape"
  514. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:942
  515. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1637
  516. msgid " Set "
  517. msgstr " Set "
  518. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:962
  519. msgid "Capabilities"
  520. msgstr "Capabilities"
  521. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:967
  522. msgid "Number of extruders of the printer."
  523. msgstr "Number of extruders of the printer."
  524. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
  525. msgid "USB/Serial connection"
  526. msgstr "USB/Serial connection"
  527. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:990
  528. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1193
  529. msgid "Serial port"
  530. msgstr "Serial port"
  531. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
  532. msgid "Rescan serial ports"
  533. msgstr "Rescan serial ports"
  534. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1004
  535. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1072
  536. msgid "Test"
  537. msgstr "Test"
  538. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1017
  539. msgid "Connection to printer works correctly."
  540. msgstr "Connection to printer works correctly."
  541. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1017
  542. msgid "Success!"
  543. msgstr "Success!"
  544. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
  545. msgid "Connection failed."
  546. msgstr "Connection failed."
  547. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1032
  548. msgid "OctoPrint upload"
  549. msgstr "OctoPrint upload"
  550. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1035
  551. msgid " Browse "
  552. msgstr " Browse "
  553. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1110
  554. msgid "Firmware"
  555. msgstr "Firmware"
  556. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1132
  557. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:48
  558. msgid "Before layer change G-code"
  559. msgstr "Before layer change G-code"
  560. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
  561. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
  562. msgid "After layer change G-code"
  563. msgstr "After layer change G-code"
  564. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1144
  565. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1602
  566. msgid "Tool change G-code"
  567. msgstr "Tool change G-code"
  568. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1150
  569. msgid "Between objects G-code (for sequential printing)"
  570. msgstr "Between objects G-code (for sequential printing)"
  571. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1187
  572. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:400
  573. #, c-format
  574. msgid "Extruder %d"
  575. msgstr "Extruder %d"
  576. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1194
  577. msgid "Layer height limits"
  578. msgstr "Layer height limits"
  579. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
  580. msgid "Position (for multi-extruder printers)"
  581. msgstr "Position (for multi-extruder printers)"
  582. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1202
  583. msgid "Retraction"
  584. msgstr "Retraction"
  585. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1205
  586. msgid "Only lift Z"
  587. msgstr "Only lift Z"
  588. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1218
  589. msgid ""
  590. "Retraction when tool is disabled (advanced settings for multi-extruder "
  591. "setups)"
  592. msgstr ""
  593. "Retraction when tool is disabled (advanced settings for multi-extruder "
  594. "setups)"
  595. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1222
  596. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:150
  597. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2125
  598. msgid "Preview"
  599. msgstr "Preview"
  600. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1312
  601. msgid ""
  602. "The Wipe option is not available when using the Firmware Retraction mode.\n"
  603. "\n"
  604. "Shall I disable it in order to enable Firmware Retraction?"
  605. msgstr ""
  606. "The Wipe option is not available when using the Firmware Retraction mode.\n"
  607. "\n"
  608. "Shall I disable it in order to enable Firmware Retraction?"
  609. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
  610. msgid "Firmware Retraction"
  611. msgstr "Firmware Retraction"
  612. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1469
  613. msgid "Default "
  614. msgstr "Default "
  615. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1469
  616. msgid " preset"
  617. msgstr " preset"
  618. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1470
  619. msgid " preset\n"
  620. msgstr " preset\n"
  621. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1488
  622. msgid ""
  623. "\n"
  624. "\n"
  625. "is not compatible with printer\n"
  626. msgstr ""
  627. "\n"
  628. "\n"
  629. "is not compatible with printer\n"
  630. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1488
  631. msgid ""
  632. "\n"
  633. "\n"
  634. "and it has the following unsaved changes:"
  635. msgstr ""
  636. "\n"
  637. "\n"
  638. "and it has the following unsaved changes:"
  639. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1489
  640. msgid ""
  641. "\n"
  642. "\n"
  643. "has the following unsaved changes:"
  644. msgstr ""
  645. "\n"
  646. "\n"
  647. "has the following unsaved changes:"
  648. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1491
  649. msgid ""
  650. "\n"
  651. "\n"
  652. "Discard changes and continue anyway?"
  653. msgstr ""
  654. "\n"
  655. "\n"
  656. "Discard changes and continue anyway?"
  657. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1492
  658. msgid "Unsaved Changes"
  659. msgstr "Unsaved Changes"
  660. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1560
  661. msgid "The supplied name is empty. It can't be saved."
  662. msgstr "The supplied name is empty. It can't be saved."
  663. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1580
  664. msgid "remove"
  665. msgstr "remove"
  666. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1580
  667. msgid "delete"
  668. msgstr "delete"
  669. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1581
  670. msgid "Are you sure you want to "
  671. msgstr "Are you sure you want to "
  672. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1581
  673. msgid " the selected preset?"
  674. msgstr " the selected preset?"
  675. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1582
  676. msgid "Remove"
  677. msgstr "Remove"
  678. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1582
  679. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:178
  680. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:196
  681. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2021
  682. msgid "Delete"
  683. msgstr "Delete"
  684. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1583
  685. msgid " Preset"
  686. msgstr " Preset"
  687. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1636
  688. msgid "All"
  689. msgstr "All"
  690. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1667
  691. msgid "Select the printers this profile is compatible with."
  692. msgstr "Select the printers this profile is compatible with."
  693. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1751
  694. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
  695. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1645
  696. msgid "Save "
  697. msgstr "Save "
  698. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1751
  699. msgid " as:"
  700. msgstr " as:"
  701. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1785
  702. msgid ""
  703. "The supplied name is not valid; the following characters are not allowed:"
  704. msgstr ""
  705. "The supplied name is not valid; the following characters are not allowed:"
  706. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1788
  707. msgid "The supplied name is not available."
  708. msgstr "The supplied name is not available."
  709. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:182
  710. msgid "Print Settings"
  711. msgstr "Print Settings"
  712. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:202
  713. msgid "Filament Settings"
  714. msgstr "Filament Settings"
  715. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:228
  716. msgid "Printer Settings"
  717. msgstr "Printer Settings"
  718. #: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:248
  719. msgid "Save preset"
  720. msgstr "Save preset"
  721. #: c:\src\Slic3r\xs\src\slic3r\GUI\Field.cpp:42
  722. msgid "default"
  723. msgstr "default"
  724. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:26
  725. #, c-format
  726. msgid ""
  727. "If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
  728. "will be reduced so that no less than %ds are spent on that layer (however, "
  729. "speed will never be reduced below %dmm/s)."
  730. msgstr ""
  731. "If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
  732. "will be reduced so that no less than %ds are spent on that layer (however, "
  733. "speed will never be reduced below %dmm/s)."
  734. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:30
  735. #, c-format
  736. msgid ""
  737. "\n"
  738. "If estimated layer time is greater, but still below ~%ds, fan will run at a "
  739. "proportionally decreasing speed between %d%% and %d%%."
  740. msgstr ""
  741. "\n"
  742. "If estimated layer time is greater, but still below ~%ds, fan will run at a "
  743. "proportionally decreasing speed between %d%% and %d%%."
  744. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:34
  745. msgid ""
  746. "\n"
  747. "During the other layers, fan "
  748. msgstr ""
  749. "\n"
  750. "During the other layers, fan "
  751. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:36
  752. msgid "Fan "
  753. msgstr "Fan "
  754. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:41
  755. #, c-format
  756. msgid "will always run at %d%% "
  757. msgstr "will always run at %d%% "
  758. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:44
  759. #, c-format
  760. msgid "except for the first %d layers"
  761. msgstr "except for the first %d layers"
  762. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:48
  763. msgid "except for the first layer"
  764. msgstr "except for the first layer"
  765. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:50
  766. msgid "will be turned off."
  767. msgstr "will be turned off."
  768. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:151
  769. msgid "external perimeters"
  770. msgstr "external perimeters"
  771. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:160
  772. msgid "perimeters"
  773. msgstr "perimeters"
  774. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:169
  775. msgid "infill"
  776. msgstr "infill"
  777. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:179
  778. msgid "solid infill"
  779. msgstr "solid infill"
  780. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:187
  781. msgid "top solid infill"
  782. msgstr "top solid infill"
  783. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:198
  784. msgid "support"
  785. msgstr "support"
  786. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:208
  787. msgid "support interface"
  788. msgstr "support interface"
  789. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
  790. msgid "First layer volumetric"
  791. msgstr "First layer volumetric"
  792. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
  793. msgid "Bridging volumetric"
  794. msgstr "Bridging volumetric"
  795. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
  796. msgid "Volumetric"
  797. msgstr "Volumetric"
  798. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:215
  799. msgid " flow rate is maximized "
  800. msgstr " flow rate is maximized "
  801. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:218
  802. msgid "by the print profile maximum"
  803. msgstr "by the print profile maximum"
  804. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:219
  805. msgid "when printing "
  806. msgstr "when printing "
  807. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:220
  808. msgid " with a volumetric rate "
  809. msgstr " with a volumetric rate "
  810. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:224
  811. #, c-format
  812. msgid "%3.2f mm³/s"
  813. msgstr "%3.2f mm³/s"
  814. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:226
  815. #, c-format
  816. msgid " at filament speed %3.2f mm/s."
  817. msgstr " at filament speed %3.2f mm/s."
  818. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:245
  819. msgid ""
  820. "Recommended object thin wall thickness: Not available due to invalid layer "
  821. "height."
  822. msgstr ""
  823. "Recommended object thin wall thickness: Not available due to invalid layer "
  824. "height."
  825. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:262
  826. #, c-format
  827. msgid "Recommended object thin wall thickness for layer height %.2f and "
  828. msgstr "Recommended object thin wall thickness for layer height %.2f and "
  829. #: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:269
  830. #, c-format
  831. msgid "%d lines: %.2lf mm"
  832. msgstr "%d lines: %.2lf mm"
  833. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.hpp:17
  834. msgid "Preferences"
  835. msgstr "Preferences"
  836. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:27
  837. msgid "Remember output directory"
  838. msgstr "Remember output directory"
  839. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:29
  840. msgid ""
  841. "If this is enabled, Slic3r will prompt the last output directory instead of "
  842. "the one containing the input files."
  843. msgstr ""
  844. "If this is enabled, Slic3r will prompt the last output directory instead of "
  845. "the one containing the input files."
  846. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:35
  847. msgid "Auto-center parts"
  848. msgstr "Auto-center parts"
  849. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:37
  850. msgid ""
  851. "If this is enabled, Slic3r will auto-center objects around the print bed "
  852. "center."
  853. msgstr ""
  854. "If this is enabled, Slic3r will auto-center objects around the print bed "
  855. "center."
  856. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:43
  857. msgid "Background processing"
  858. msgstr "Background processing"
  859. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:45
  860. msgid ""
  861. "If this is enabled, Slic3r will pre-process objects as soon as they're "
  862. "loaded in order to save time when exporting G-code."
  863. msgstr ""
  864. "If this is enabled, Slic3r will pre-process objects as soon as they're "
  865. "loaded in order to save time when exporting G-code."
  866. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:51
  867. msgid "Disable USB/serial connection"
  868. msgstr "Disable USB/serial connection"
  869. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:53
  870. msgid ""
  871. "Disable communication with the printer over a serial / USB cable. This "
  872. "simplifies the user interface in case the printer is never attached to the "
  873. "computer."
  874. msgstr ""
  875. "Disable communication with the printer over a serial / USB cable. This "
  876. "simplifies the user interface in case the printer is never attached to the "
  877. "computer."
  878. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:59
  879. msgid "Suppress \" - default - \" presets"
  880. msgstr "Suppress \" - default - \" presets"
  881. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:61
  882. msgid ""
  883. "Suppress \" - default - \" presets in the Print / Filament / Printer "
  884. "selections once there are any other valid presets available."
  885. msgstr ""
  886. "Suppress \" - default - \" presets in the Print / Filament / Printer "
  887. "selections once there are any other valid presets available."
  888. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:67
  889. msgid "Show incompatible print and filament presets"
  890. msgstr "Show incompatible print and filament presets"
  891. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:69
  892. msgid ""
  893. "When checked, the print and filament presets are shown in the preset editor "
  894. "even if they are marked as incompatible with the active printer"
  895. msgstr ""
  896. "When checked, the print and filament presets are shown in the preset editor "
  897. "even if they are marked as incompatible with the active printer"
  898. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:75
  899. msgid "Use legacy OpenGL 1.1 rendering"
  900. msgstr "Use legacy OpenGL 1.1 rendering"
  901. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:77
  902. msgid ""
  903. "If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
  904. "try to check this checkbox. This will disable the layer height editing and "
  905. "anti aliasing, so it is likely better to upgrade your graphics driver."
  906. msgstr ""
  907. "If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
  908. "try to check this checkbox. This will disable the layer height editing and "
  909. "anti aliasing, so it is likely better to upgrade your graphics driver."
  910. #: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:101
  911. msgid "You need to restart Slic3r to make the changes effective."
  912. msgstr "You need to restart Slic3r to make the changes effective."
  913. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:26
  914. msgid "Avoid crossing perimeters"
  915. msgstr "Avoid crossing perimeters"
  916. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:27
  917. msgid ""
  918. "Optimize travel moves in order to minimize the crossing of perimeters. This "
  919. "is mostly useful with Bowden extruders which suffer from oozing. This "
  920. "feature slows down both the print and the G-code generation."
  921. msgstr ""
  922. "Optimize travel moves in order to minimize the crossing of perimeters. This "
  923. "is mostly useful with Bowden extruders which suffer from oozing. This "
  924. "feature slows down both the print and the G-code generation."
  925. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:38
  926. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1572
  927. msgid "Other layers"
  928. msgstr "Other layers"
  929. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:39
  930. msgid ""
  931. "Bed temperature for layers after the first one. Set this to zero to disable "
  932. "bed temperature control commands in the output."
  933. msgstr ""
  934. "Bed temperature for layers after the first one. Set this to zero to disable "
  935. "bed temperature control commands in the output."
  936. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:42
  937. msgid "Bed temperature"
  938. msgstr "Bed temperature"
  939. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:49
  940. msgid ""
  941. "This custom code is inserted at every layer change, right before the Z move. "
  942. "Note that you can use placeholder variables for all Slic3r settings as well "
  943. "as [layer_num] and [layer_z]."
  944. msgstr ""
  945. "This custom code is inserted at every layer change, right before the Z move. "
  946. "Note that you can use placeholder variables for all Slic3r settings as well "
  947. "as [layer_num] and [layer_z]."
  948. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:59
  949. msgid "Between objects G-code"
  950. msgstr "Between objects G-code"
  951. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:60
  952. msgid ""
  953. "This code is inserted between objects when using sequential printing. By "
  954. "default extruder and bed temperature are reset using non-wait command; "
  955. "however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
  956. "will not add temperature commands. Note that you can use placeholder "
  957. "variables for all Slic3r settings, so you can put a \"M109 "
  958. "S[first_layer_temperature]\" command wherever you want."
  959. msgstr ""
  960. "This code is inserted between objects when using sequential printing. By "
  961. "default extruder and bed temperature are reset using non-wait command; "
  962. "however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
  963. "will not add temperature commands. Note that you can use placeholder "
  964. "variables for all Slic3r settings, so you can put a \"M109 "
  965. "S[first_layer_temperature]\" command wherever you want."
  966. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:68
  967. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:370
  968. msgid "Bottom"
  969. msgstr "Bottom"
  970. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:69
  971. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:239
  972. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:290
  973. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:298
  974. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:604
  975. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:762
  976. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:778
  977. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:941
  978. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:989
  979. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1152
  980. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1583
  981. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1639
  982. msgid "Layers and Perimeters"
  983. msgstr "Layers and Perimeters"
  984. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:70
  985. msgid "Number of solid layers to generate on bottom surfaces."
  986. msgstr "Number of solid layers to generate on bottom surfaces."
  987. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:72
  988. msgid "Bottom solid layers"
  989. msgstr "Bottom solid layers"
  990. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:77
  991. msgid "Bridge"
  992. msgstr "Bridge"
  993. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:78
  994. msgid ""
  995. "This is the acceleration your printer will use for bridges. Set zero to "
  996. "disable acceleration control for bridges."
  997. msgstr ""
  998. "This is the acceleration your printer will use for bridges. Set zero to "
  999. "disable acceleration control for bridges."
  1000. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:80
  1001. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:174
  1002. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:576
  1003. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:684
  1004. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:952
  1005. msgid "mm/s²"
  1006. msgstr "mm/s²"
  1007. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:86
  1008. msgid "Bridging angle"
  1009. msgstr "Bridging angle"
  1010. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:88
  1011. msgid ""
  1012. "Bridging angle override. If left to zero, the bridging angle will be "
  1013. "calculated automatically. Otherwise the provided angle will be used for all "
  1014. "bridges. Use 180° for zero angle."
  1015. msgstr ""
  1016. "Bridging angle override. If left to zero, the bridging angle will be "
  1017. "calculated automatically. Otherwise the provided angle will be used for all "
  1018. "bridges. Use 180° for zero angle."
  1019. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:91
  1020. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:492
  1021. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1170
  1022. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1181
  1023. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1401
  1024. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1557
  1025. msgid "°"
  1026. msgstr "°"
  1027. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:97
  1028. msgid "Bridges fan speed"
  1029. msgstr "Bridges fan speed"
  1030. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:98
  1031. msgid "This fan speed is enforced during all bridges and overhangs."
  1032. msgstr "This fan speed is enforced during all bridges and overhangs."
  1033. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:99
  1034. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:504
  1035. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:789
  1036. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:850
  1037. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1060
  1038. msgid "%"
  1039. msgstr "%"
  1040. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:106
  1041. msgid "Bridge flow ratio"
  1042. msgstr "Bridge flow ratio"
  1043. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:108
  1044. msgid ""
  1045. "This factor affects the amount of plastic for bridging. You can decrease it "
  1046. "slightly to pull the extrudates and prevent sagging, although default "
  1047. "settings are usually good and you should experiment with cooling (use a fan) "
  1048. "before tweaking this."
  1049. msgstr ""
  1050. "This factor affects the amount of plastic for bridging. You can decrease it "
  1051. "slightly to pull the extrudates and prevent sagging, although default "
  1052. "settings are usually good and you should experiment with cooling (use a fan) "
  1053. "before tweaking this."
  1054. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:117
  1055. msgid "Bridges"
  1056. msgstr "Bridges"
  1057. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:119
  1058. msgid "Speed for printing bridges."
  1059. msgstr "Speed for printing bridges."
  1060. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:120
  1061. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:638
  1062. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:749
  1063. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:811
  1064. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:868
  1065. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:981
  1066. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1137
  1067. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1146
  1068. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1536
  1069. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1649
  1070. msgid "mm/s"
  1071. msgstr "mm/s"
  1072. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:127
  1073. msgid "Brim width"
  1074. msgstr "Brim width"
  1075. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:128
  1076. msgid ""
  1077. "Horizontal width of the brim that will be printed around each object on the "
  1078. "first layer."
  1079. msgstr ""
  1080. "Horizontal width of the brim that will be printed around each object on the "
  1081. "first layer."
  1082. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:135
  1083. msgid "Clip multi-part objects"
  1084. msgstr "Clip multi-part objects"
  1085. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:136
  1086. msgid ""
  1087. "When printing multi-material objects, this settings will make slic3r to clip "
  1088. "the overlapping object parts one by the other (2nd part will be clipped by "
  1089. "the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
  1090. msgstr ""
  1091. "When printing multi-material objects, this settings will make slic3r to clip "
  1092. "the overlapping object parts one by the other (2nd part will be clipped by "
  1093. "the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
  1094. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:147
  1095. msgid "Compatible printers condition"
  1096. msgstr "Compatible printers condition"
  1097. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:148
  1098. msgid ""
  1099. "A boolean expression using the configuration values of an active printer "
  1100. "profile. If this expression evaluates to true, this profile is considered "
  1101. "compatible with the active printer profile."
  1102. msgstr ""
  1103. "A boolean expression using the configuration values of an active printer "
  1104. "profile. If this expression evaluates to true, this profile is considered "
  1105. "compatible with the active printer profile."
  1106. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:154
  1107. msgid "Complete individual objects"
  1108. msgstr "Complete individual objects"
  1109. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:155
  1110. msgid ""
  1111. "When printing multiple objects or copies, this feature will complete each "
  1112. "object before moving onto next one (and starting it from its bottom layer). "
  1113. "This feature is useful to avoid the risk of ruined prints. Slic3r should "
  1114. "warn and prevent you from extruder collisions, but beware."
  1115. msgstr ""
  1116. "When printing multiple objects or copies, this feature will complete each "
  1117. "object before moving onto next one (and starting it from its bottom layer). "
  1118. "This feature is useful to avoid the risk of ruined prints. Slic3r should "
  1119. "warn and prevent you from extruder collisions, but beware."
  1120. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:163
  1121. msgid "Enable auto cooling"
  1122. msgstr "Enable auto cooling"
  1123. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:164
  1124. msgid ""
  1125. "This flag enables the automatic cooling logic that adjusts print speed and "
  1126. "fan speed according to layer printing time."
  1127. msgstr ""
  1128. "This flag enables the automatic cooling logic that adjusts print speed and "
  1129. "fan speed according to layer printing time."
  1130. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:171
  1131. msgid ""
  1132. "This is the acceleration your printer will be reset to after the role-"
  1133. "specific acceleration values are used (perimeter/infill). Set zero to "
  1134. "prevent resetting acceleration at all."
  1135. msgstr ""
  1136. "This is the acceleration your printer will be reset to after the role-"
  1137. "specific acceleration values are used (perimeter/infill). Set zero to "
  1138. "prevent resetting acceleration at all."
  1139. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:180
  1140. msgid "Disable fan for the first"
  1141. msgstr "Disable fan for the first"
  1142. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:181
  1143. msgid ""
  1144. "You can set this to a positive value to disable fan at all during the first "
  1145. "layers, so that it does not make adhesion worse."
  1146. msgstr ""
  1147. "You can set this to a positive value to disable fan at all during the first "
  1148. "layers, so that it does not make adhesion worse."
  1149. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:183
  1150. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:694
  1151. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1033
  1152. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1224
  1153. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1285
  1154. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1437
  1155. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1482
  1156. msgid "layers"
  1157. msgstr "layers"
  1158. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:190
  1159. msgid "Don't support bridges"
  1160. msgstr "Don't support bridges"
  1161. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:192
  1162. msgid ""
  1163. "Experimental option for preventing support material from being generated "
  1164. "under bridged areas."
  1165. msgstr ""
  1166. "Experimental option for preventing support material from being generated "
  1167. "under bridged areas."
  1168. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:198
  1169. msgid "Distance between copies"
  1170. msgstr "Distance between copies"
  1171. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:199
  1172. msgid "Distance used for the auto-arrange feature of the plater."
  1173. msgstr "Distance used for the auto-arrange feature of the plater."
  1174. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:207
  1175. msgid "Elephant foot compensation"
  1176. msgstr "Elephant foot compensation"
  1177. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:209
  1178. msgid ""
  1179. "The first layer will be shrunk in the XY plane by the configured value to "
  1180. "compensate for the 1st layer squish aka an Elephant Foot effect."
  1181. msgstr ""
  1182. "The first layer will be shrunk in the XY plane by the configured value to "
  1183. "compensate for the 1st layer squish aka an Elephant Foot effect."
  1184. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:218
  1185. msgid ""
  1186. "This end procedure is inserted at the end of the output file. Note that you "
  1187. "can use placeholder variables for all Slic3r settings."
  1188. msgstr ""
  1189. "This end procedure is inserted at the end of the output file. Note that you "
  1190. "can use placeholder variables for all Slic3r settings."
  1191. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:228
  1192. msgid ""
  1193. "This end procedure is inserted at the end of the output file, before the "
  1194. "printer end gcode. Note that you can use placeholder variables for all "
  1195. "Slic3r settings. If you have multiple extruders, the gcode is processed in "
  1196. "extruder order."
  1197. msgstr ""
  1198. "This end procedure is inserted at the end of the output file, before the "
  1199. "printer end gcode. Note that you can use placeholder variables for all "
  1200. "Slic3r settings. If you have multiple extruders, the gcode is processed in "
  1201. "extruder order."
  1202. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:238
  1203. msgid "Ensure vertical shell thickness"
  1204. msgstr "Ensure vertical shell thickness"
  1205. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:240
  1206. msgid ""
  1207. "Add solid infill near sloping surfaces to guarantee the vertical shell "
  1208. "thickness (top+bottom solid layers)."
  1209. msgstr ""
  1210. "Add solid infill near sloping surfaces to guarantee the vertical shell "
  1211. "thickness (top+bottom solid layers)."
  1212. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:246
  1213. msgid "Top/bottom fill pattern"
  1214. msgstr "Top/bottom fill pattern"
  1215. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:248
  1216. msgid ""
  1217. "Fill pattern for top/bottom infill. This only affects the external visible "
  1218. "layer, and not its adjacent solid shells."
  1219. msgstr ""
  1220. "Fill pattern for top/bottom infill. This only affects the external visible "
  1221. "layer, and not its adjacent solid shells."
  1222. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:267
  1223. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:277
  1224. msgid "External perimeters"
  1225. msgstr "External perimeters"
  1226. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:268
  1227. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:377
  1228. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:592
  1229. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:710
  1230. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:967
  1231. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1292
  1232. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1454
  1233. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1614
  1234. msgid "Extrusion Width"
  1235. msgstr "Extrusion Width"
  1236. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:269
  1237. msgid ""
  1238. "Set this to a non-zero value to set a manual extrusion width for external "
  1239. "perimeters. If left zero, default extrusion width will be used if set, "
  1240. "otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
  1241. "(for example 200%), it will be computed over layer height."
  1242. msgstr ""
  1243. "Set this to a non-zero value to set a manual extrusion width for external "
  1244. "perimeters. If left zero, default extrusion width will be used if set, "
  1245. "otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
  1246. "(for example 200%), it will be computed over layer height."
  1247. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:272
  1248. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:597
  1249. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:715
  1250. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:972
  1251. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1296
  1252. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1458
  1253. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1619
  1254. msgid "mm or % (leave 0 for default)"
  1255. msgstr "mm or % (leave 0 for default)"
  1256. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:279
  1257. msgid ""
  1258. "This separate setting will affect the speed of external perimeters (the "
  1259. "visible ones). If expressed as percentage (for example: 80%) it will be "
  1260. "calculated on the perimeters speed setting above. Set to zero for auto."
  1261. msgstr ""
  1262. "This separate setting will affect the speed of external perimeters (the "
  1263. "visible ones). If expressed as percentage (for example: 80%) it will be "
  1264. "calculated on the perimeters speed setting above. Set to zero for auto."
  1265. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:282
  1266. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:619
  1267. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1255
  1268. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1306
  1269. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1501
  1270. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1631
  1271. msgid "mm/s or %"
  1272. msgstr "mm/s or %"
  1273. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:289
  1274. msgid "External perimeters first"
  1275. msgstr "External perimeters first"
  1276. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:291
  1277. msgid ""
  1278. "Print contour perimeters from the outermost one to the innermost one instead "
  1279. "of the default inverse order."
  1280. msgstr ""
  1281. "Print contour perimeters from the outermost one to the innermost one instead "
  1282. "of the default inverse order."
  1283. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:297
  1284. msgid "Extra perimeters if needed"
  1285. msgstr "Extra perimeters if needed"
  1286. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:299
  1287. #, no-c-format
  1288. msgid ""
  1289. "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
  1290. "keeps adding perimeters, until more than 70% of the loop immediately above "
  1291. "is supported."
  1292. msgstr ""
  1293. "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
  1294. "keeps adding perimeters, until more than 70% of the loop immediately above "
  1295. "is supported."
  1296. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:309
  1297. msgid ""
  1298. "The extruder to use (unless more specific extruder settings are specified). "
  1299. "This value overrides perimeter and infill extruders, but not the support "
  1300. "extruders."
  1301. msgstr ""
  1302. "The extruder to use (unless more specific extruder settings are specified). "
  1303. "This value overrides perimeter and infill extruders, but not the support "
  1304. "extruders."
  1305. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:320
  1306. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:69
  1307. msgid "Height"
  1308. msgstr "Height"
  1309. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:321
  1310. msgid ""
  1311. "Set this to the vertical distance between your nozzle tip and (usually) the "
  1312. "X carriage rods. In other words, this is the height of the clearance "
  1313. "cylinder around your extruder, and it represents the maximum depth the "
  1314. "extruder can peek before colliding with other printed objects."
  1315. msgstr ""
  1316. "Set this to the vertical distance between your nozzle tip and (usually) the "
  1317. "X carriage rods. In other words, this is the height of the clearance "
  1318. "cylinder around your extruder, and it represents the maximum depth the "
  1319. "extruder can peek before colliding with other printed objects."
  1320. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:331
  1321. msgid "Radius"
  1322. msgstr "Radius"
  1323. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:332
  1324. msgid ""
  1325. "Set this to the clearance radius around your extruder. If the extruder is "
  1326. "not centered, choose the largest value for safety. This setting is used to "
  1327. "check for collisions and to display the graphical preview in the plater."
  1328. msgstr ""
  1329. "Set this to the clearance radius around your extruder. If the extruder is "
  1330. "not centered, choose the largest value for safety. This setting is used to "
  1331. "check for collisions and to display the graphical preview in the plater."
  1332. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:342
  1333. msgid "Extruder Color"
  1334. msgstr "Extruder Color"
  1335. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:343
  1336. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:406
  1337. msgid "This is only used in the Slic3r interface as a visual help."
  1338. msgstr "This is only used in the Slic3r interface as a visual help."
  1339. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:350
  1340. msgid "Extruder offset"
  1341. msgstr "Extruder offset"
  1342. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:351
  1343. msgid ""
  1344. "If your firmware doesn't handle the extruder displacement you need the G-"
  1345. "code to take it into account. This option lets you specify the displacement "
  1346. "of each extruder with respect to the first one. It expects positive "
  1347. "coordinates (they will be subtracted from the XY coordinate)."
  1348. msgstr ""
  1349. "If your firmware doesn't handle the extruder displacement you need the G-"
  1350. "code to take it into account. This option lets you specify the displacement "
  1351. "of each extruder with respect to the first one. It expects positive "
  1352. "coordinates (they will be subtracted from the XY coordinate)."
  1353. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:360
  1354. msgid "Extrusion axis"
  1355. msgstr "Extrusion axis"
  1356. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:361
  1357. msgid ""
  1358. "Use this option to set the axis letter associated to your printer's extruder "
  1359. "(usually E but some printers use A)."
  1360. msgstr ""
  1361. "Use this option to set the axis letter associated to your printer's extruder "
  1362. "(usually E but some printers use A)."
  1363. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:367
  1364. msgid "Extrusion multiplier"
  1365. msgstr "Extrusion multiplier"
  1366. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:368
  1367. msgid ""
  1368. "This factor changes the amount of flow proportionally. You may need to tweak "
  1369. "this setting to get nice surface finish and correct single wall widths. "
  1370. "Usual values are between 0.9 and 1.1. If you think you need to change this "
  1371. "more, check filament diameter and your firmware E steps."
  1372. msgstr ""
  1373. "This factor changes the amount of flow proportionally. You may need to tweak "
  1374. "this setting to get nice surface finish and correct single wall widths. "
  1375. "Usual values are between 0.9 and 1.1. If you think you need to change this "
  1376. "more, check filament diameter and your firmware E steps."
  1377. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:376
  1378. msgid "Default extrusion width"
  1379. msgstr "Default extrusion width"
  1380. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:378
  1381. msgid ""
  1382. "Set this to a non-zero value to allow a manual extrusion width. If left to "
  1383. "zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
  1384. "tooltips for perimeter extrusion width, infill extrusion width etc). If "
  1385. "expressed as percentage (for example: 230%), it will be computed over layer "
  1386. "height."
  1387. msgstr ""
  1388. "Set this to a non-zero value to allow a manual extrusion width. If left to "
  1389. "zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
  1390. "tooltips for perimeter extrusion width, infill extrusion width etc). If "
  1391. "expressed as percentage (for example: 230%), it will be computed over layer "
  1392. "height."
  1393. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:382
  1394. msgid "mm or % (leave 0 for auto)"
  1395. msgstr "mm or % (leave 0 for auto)"
  1396. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:387
  1397. msgid "Keep fan always on"
  1398. msgstr "Keep fan always on"
  1399. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:388
  1400. msgid ""
  1401. "If this is enabled, fan will never be disabled and will be kept running at "
  1402. "least at its minimum speed. Useful for PLA, harmful for ABS."
  1403. msgstr ""
  1404. "If this is enabled, fan will never be disabled and will be kept running at "
  1405. "least at its minimum speed. Useful for PLA, harmful for ABS."
  1406. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:394
  1407. msgid "Enable fan if layer print time is below"
  1408. msgstr "Enable fan if layer print time is below"
  1409. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:395
  1410. msgid ""
  1411. "If layer print time is estimated below this number of seconds, fan will be "
  1412. "enabled and its speed will be calculated by interpolating the minimum and "
  1413. "maximum speeds."
  1414. msgstr ""
  1415. "If layer print time is estimated below this number of seconds, fan will be "
  1416. "enabled and its speed will be calculated by interpolating the minimum and "
  1417. "maximum speeds."
  1418. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:397
  1419. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1242
  1420. msgid "approximate seconds"
  1421. msgstr "approximate seconds"
  1422. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:405
  1423. msgid "Color"
  1424. msgstr "Color"
  1425. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:412
  1426. msgid "Filament notes"
  1427. msgstr "Filament notes"
  1428. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:413
  1429. msgid "You can put your notes regarding the filament here."
  1430. msgstr "You can put your notes regarding the filament here."
  1431. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:421
  1432. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:817
  1433. msgid "Max volumetric speed"
  1434. msgstr "Max volumetric speed"
  1435. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:422
  1436. msgid ""
  1437. "Maximum volumetric speed allowed for this filament. Limits the maximum "
  1438. "volumetric speed of a print to the minimum of print and filament volumetric "
  1439. "speed. Set to zero for no limit."
  1440. msgstr ""
  1441. "Maximum volumetric speed allowed for this filament. Limits the maximum "
  1442. "volumetric speed of a print to the minimum of print and filament volumetric "
  1443. "speed. Set to zero for no limit."
  1444. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:425
  1445. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:820
  1446. msgid "mm³/s"
  1447. msgstr "mm³/s"
  1448. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:432
  1449. msgid ""
  1450. "Enter your filament diameter here. Good precision is required, so use a "
  1451. "caliper and do multiple measurements along the filament, then compute the "
  1452. "average."
  1453. msgstr ""
  1454. "Enter your filament diameter here. Good precision is required, so use a "
  1455. "caliper and do multiple measurements along the filament, then compute the "
  1456. "average."
  1457. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:440
  1458. msgid "Density"
  1459. msgstr "Density"
  1460. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:441
  1461. msgid ""
  1462. "Enter your filament density here. This is only for statistical information. "
  1463. "A decent way is to weigh a known length of filament and compute the ratio of "
  1464. "the length to volume. Better is to calculate the volume directly through "
  1465. "displacement."
  1466. msgstr ""
  1467. "Enter your filament density here. This is only for statistical information. "
  1468. "A decent way is to weigh a known length of filament and compute the ratio of "
  1469. "the length to volume. Better is to calculate the volume directly through "
  1470. "displacement."
  1471. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:444
  1472. msgid "g/cm³"
  1473. msgstr "g/cm³"
  1474. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:450
  1475. msgid "Filament type"
  1476. msgstr "Filament type"
  1477. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:451
  1478. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1002
  1479. msgid ""
  1480. "If you want to process the output G-code through custom scripts, just list "
  1481. "their absolute paths here. Separate multiple scripts with a semicolon. "
  1482. "Scripts will be passed the absolute path to the G-code file as the first "
  1483. "argument, and they can access the Slic3r config settings by reading "
  1484. "environment variables."
  1485. msgstr ""
  1486. "If you want to process the output G-code through custom scripts, just list "
  1487. "their absolute paths here. Separate multiple scripts with a semicolon. "
  1488. "Scripts will be passed the absolute path to the G-code file as the first "
  1489. "argument, and they can access the Slic3r config settings by reading "
  1490. "environment variables."
  1491. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:470
  1492. msgid "Soluble material"
  1493. msgstr "Soluble material"
  1494. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:471
  1495. msgid "Soluble material is most likely used for a soluble support."
  1496. msgstr "Soluble material is most likely used for a soluble support."
  1497. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:476
  1498. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:450
  1499. msgid "Cost"
  1500. msgstr "Cost"
  1501. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:477
  1502. msgid ""
  1503. "Enter your filament cost per kg here. This is only for statistical "
  1504. "information."
  1505. msgstr ""
  1506. "Enter your filament cost per kg here. This is only for statistical "
  1507. "information."
  1508. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:478
  1509. msgid "money/kg"
  1510. msgstr "money/kg"
  1511. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:487
  1512. msgid "Fill angle"
  1513. msgstr "Fill angle"
  1514. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:489
  1515. msgid ""
  1516. "Default base angle for infill orientation. Cross-hatching will be applied to "
  1517. "this. Bridges will be infilled using the best direction Slic3r can detect, "
  1518. "so this setting does not affect them."
  1519. msgstr ""
  1520. "Default base angle for infill orientation. Cross-hatching will be applied to "
  1521. "this. Bridges will be infilled using the best direction Slic3r can detect, "
  1522. "so this setting does not affect them."
  1523. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:501
  1524. msgid "Fill density"
  1525. msgstr "Fill density"
  1526. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:503
  1527. #, no-c-format
  1528. msgid "Density of internal infill, expressed in the range 0% - 100%."
  1529. msgstr "Density of internal infill, expressed in the range 0% - 100%."
  1530. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:539
  1531. msgid "Fill pattern"
  1532. msgstr "Fill pattern"
  1533. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:541
  1534. msgid "Fill pattern for general low-density infill."
  1535. msgstr "Fill pattern for general low-density infill."
  1536. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:573
  1537. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:582
  1538. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:591
  1539. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:625
  1540. msgid "First layer"
  1541. msgstr "First layer"
  1542. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:574
  1543. msgid ""
  1544. "This is the acceleration your printer will use for first layer. Set zero to "
  1545. "disable acceleration control for first layer."
  1546. msgstr ""
  1547. "This is the acceleration your printer will use for first layer. Set zero to "
  1548. "disable acceleration control for first layer."
  1549. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:583
  1550. msgid ""
  1551. "Heated build plate temperature for the first layer. Set this to zero to "
  1552. "disable bed temperature control commands in the output."
  1553. msgstr ""
  1554. "Heated build plate temperature for the first layer. Set this to zero to "
  1555. "disable bed temperature control commands in the output."
  1556. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:593
  1557. msgid ""
  1558. "Set this to a non-zero value to set a manual extrusion width for first "
  1559. "layer. You can use this to force fatter extrudates for better adhesion. If "
  1560. "expressed as percentage (for example 120%) it will be computed over first "
  1561. "layer height. If set to zero, it will use the default extrusion width."
  1562. msgstr ""
  1563. "Set this to a non-zero value to set a manual extrusion width for first "
  1564. "layer. You can use this to force fatter extrudates for better adhesion. If "
  1565. "expressed as percentage (for example 120%) it will be computed over first "
  1566. "layer height. If set to zero, it will use the default extrusion width."
  1567. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:603
  1568. msgid "First layer height"
  1569. msgstr "First layer height"
  1570. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:605
  1571. msgid ""
  1572. "When printing with very low layer heights, you might still want to print a "
  1573. "thicker bottom layer to improve adhesion and tolerance for non perfect build "
  1574. "plates. This can be expressed as an absolute value or as a percentage (for "
  1575. "example: 150%) over the default layer height."
  1576. msgstr ""
  1577. "When printing with very low layer heights, you might still want to print a "
  1578. "thicker bottom layer to improve adhesion and tolerance for non perfect build "
  1579. "plates. This can be expressed as an absolute value or as a percentage (for "
  1580. "example: 150%) over the default layer height."
  1581. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:609
  1582. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:740
  1583. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1390
  1584. msgid "mm or %"
  1585. msgstr "mm or %"
  1586. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:615
  1587. msgid "First layer speed"
  1588. msgstr "First layer speed"
  1589. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:616
  1590. msgid ""
  1591. "If expressed as absolute value in mm/s, this speed will be applied to all "
  1592. "the print moves of the first layer, regardless of their type. If expressed "
  1593. "as a percentage (for example: 40%) it will scale the default speeds."
  1594. msgstr ""
  1595. "If expressed as absolute value in mm/s, this speed will be applied to all "
  1596. "the print moves of the first layer, regardless of their type. If expressed "
  1597. "as a percentage (for example: 40%) it will scale the default speeds."
  1598. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:626
  1599. msgid ""
  1600. "Extruder temperature for first layer. If you want to control temperature "
  1601. "manually during print, set this to zero to disable temperature control "
  1602. "commands in the output file."
  1603. msgstr ""
  1604. "Extruder temperature for first layer. If you want to control temperature "
  1605. "manually during print, set this to zero to disable temperature control "
  1606. "commands in the output file."
  1607. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:634
  1608. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:145
  1609. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:87
  1610. msgid "Gap fill"
  1611. msgstr "Gap fill"
  1612. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:636
  1613. msgid ""
  1614. "Speed for filling small gaps using short zigzag moves. Keep this reasonably "
  1615. "low to avoid too much shaking and resonance issues. Set zero to disable gaps "
  1616. "filling."
  1617. msgstr ""
  1618. "Speed for filling small gaps using short zigzag moves. Keep this reasonably "
  1619. "low to avoid too much shaking and resonance issues. Set zero to disable gaps "
  1620. "filling."
  1621. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:644
  1622. msgid "Verbose G-code"
  1623. msgstr "Verbose G-code"
  1624. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:645
  1625. msgid ""
  1626. "Enable this to get a commented G-code file, with each line explained by a "
  1627. "descriptive text. If you print from SD card, the additional weight of the "
  1628. "file could make your firmware slow down."
  1629. msgstr ""
  1630. "Enable this to get a commented G-code file, with each line explained by a "
  1631. "descriptive text. If you print from SD card, the additional weight of the "
  1632. "file could make your firmware slow down."
  1633. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:652
  1634. msgid "G-code flavor"
  1635. msgstr "G-code flavor"
  1636. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:653
  1637. msgid ""
  1638. "Some G/M-code commands, including temperature control and others, are not "
  1639. "universal. Set this option to your printer's firmware to get a compatible "
  1640. "output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
  1641. "extrusion value at all."
  1642. msgstr ""
  1643. "Some G/M-code commands, including temperature control and others, are not "
  1644. "universal. Set this option to your printer's firmware to get a compatible "
  1645. "output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
  1646. "extrusion value at all."
  1647. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:682
  1648. msgid ""
  1649. "This is the acceleration your printer will use for infill. Set zero to "
  1650. "disable acceleration control for infill."
  1651. msgstr ""
  1652. "This is the acceleration your printer will use for infill. Set zero to "
  1653. "disable acceleration control for infill."
  1654. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:690
  1655. msgid "Combine infill every"
  1656. msgstr "Combine infill every"
  1657. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:692
  1658. msgid ""
  1659. "This feature allows to combine infill and speed up your print by extruding "
  1660. "thicker infill layers while preserving thin perimeters, thus accuracy."
  1661. msgstr ""
  1662. "This feature allows to combine infill and speed up your print by extruding "
  1663. "thicker infill layers while preserving thin perimeters, thus accuracy."
  1664. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:696
  1665. msgid "Combine infill every n layers"
  1666. msgstr "Combine infill every n layers"
  1667. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:701
  1668. msgid "Infill extruder"
  1669. msgstr "Infill extruder"
  1670. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:703
  1671. msgid "The extruder to use when printing infill."
  1672. msgstr "The extruder to use when printing infill."
  1673. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:711
  1674. msgid ""
  1675. "Set this to a non-zero value to set a manual extrusion width for infill. If "
  1676. "left zero, default extrusion width will be used if set, otherwise 1.125 x "
  1677. "nozzle diameter will be used. You may want to use fatter extrudates to speed "
  1678. "up the infill and make your parts stronger. If expressed as percentage (for "
  1679. "example 90%) it will be computed over layer height."
  1680. msgstr ""
  1681. "Set this to a non-zero value to set a manual extrusion width for infill. If "
  1682. "left zero, default extrusion width will be used if set, otherwise 1.125 x "
  1683. "nozzle diameter will be used. You may want to use fatter extrudates to speed "
  1684. "up the infill and make your parts stronger. If expressed as percentage (for "
  1685. "example 90%) it will be computed over layer height."
  1686. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:720
  1687. msgid "Infill before perimeters"
  1688. msgstr "Infill before perimeters"
  1689. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:721
  1690. msgid ""
  1691. "This option will switch the print order of perimeters and infill, making the "
  1692. "latter first."
  1693. msgstr ""
  1694. "This option will switch the print order of perimeters and infill, making the "
  1695. "latter first."
  1696. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:726
  1697. msgid "Only infill where needed"
  1698. msgstr "Only infill where needed"
  1699. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:728
  1700. msgid ""
  1701. "This option will limit infill to the areas actually needed for supporting "
  1702. "ceilings (it will act as internal support material). If enabled, slows down "
  1703. "the G-code generation due to the multiple checks involved."
  1704. msgstr ""
  1705. "This option will limit infill to the areas actually needed for supporting "
  1706. "ceilings (it will act as internal support material). If enabled, slows down "
  1707. "the G-code generation due to the multiple checks involved."
  1708. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:735
  1709. msgid "Infill/perimeters overlap"
  1710. msgstr "Infill/perimeters overlap"
  1711. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:737
  1712. msgid ""
  1713. "This setting applies an additional overlap between infill and perimeters for "
  1714. "better bonding. Theoretically this shouldn't be needed, but backlash might "
  1715. "cause gaps. If expressed as percentage (example: 15%) it is calculated over "
  1716. "perimeter extrusion width."
  1717. msgstr ""
  1718. "This setting applies an additional overlap between infill and perimeters for "
  1719. "better bonding. Theoretically this shouldn't be needed, but backlash might "
  1720. "cause gaps. If expressed as percentage (example: 15%) it is calculated over "
  1721. "perimeter extrusion width."
  1722. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:748
  1723. msgid "Speed for printing the internal fill. Set to zero for auto."
  1724. msgstr "Speed for printing the internal fill. Set to zero for auto."
  1725. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:757
  1726. msgid "Interface shells"
  1727. msgstr "Interface shells"
  1728. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:758
  1729. msgid ""
  1730. "Force the generation of solid shells between adjacent materials/volumes. "
  1731. "Useful for multi-extruder prints with translucent materials or manual "
  1732. "soluble support material."
  1733. msgstr ""
  1734. "Force the generation of solid shells between adjacent materials/volumes. "
  1735. "Useful for multi-extruder prints with translucent materials or manual "
  1736. "soluble support material."
  1737. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:767
  1738. msgid ""
  1739. "This custom code is inserted at every layer change, right after the Z move "
  1740. "and before the extruder moves to the first layer point. Note that you can "
  1741. "use placeholder variables for all Slic3r settings as well as [layer_num] and "
  1742. "[layer_z]."
  1743. msgstr ""
  1744. "This custom code is inserted at every layer change, right after the Z move "
  1745. "and before the extruder moves to the first layer point. Note that you can "
  1746. "use placeholder variables for all Slic3r settings as well as [layer_num] and "
  1747. "[layer_z]."
  1748. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:779
  1749. msgid ""
  1750. "This setting controls the height (and thus the total number) of the slices/"
  1751. "layers. Thinner layers give better accuracy but take more time to print."
  1752. msgstr ""
  1753. "This setting controls the height (and thus the total number) of the slices/"
  1754. "layers. Thinner layers give better accuracy but take more time to print."
  1755. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:787
  1756. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:796
  1757. msgid "Max"
  1758. msgstr "Max"
  1759. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:788
  1760. msgid "This setting represents the maximum speed of your fan."
  1761. msgstr "This setting represents the maximum speed of your fan."
  1762. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:797
  1763. #, no-c-format
  1764. msgid ""
  1765. "This is the highest printable layer height for this extruder, used to cap "
  1766. "the variable layer height and support layer height. Maximum recommended "
  1767. "layer height is 75% of the extrusion width to achieve reasonable inter-layer "
  1768. "adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
  1769. msgstr ""
  1770. "This is the highest printable layer height for this extruder, used to cap "
  1771. "the variable layer height and support layer height. Maximum recommended "
  1772. "layer height is 75% of the extrusion width to achieve reasonable inter-layer "
  1773. "adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
  1774. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:807
  1775. msgid "Max print speed"
  1776. msgstr "Max print speed"
  1777. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:808
  1778. msgid ""
  1779. "When setting other speed settings to 0 Slic3r will autocalculate the optimal "
  1780. "speed in order to keep constant extruder pressure. This experimental setting "
  1781. "is used to set the highest print speed you want to allow."
  1782. msgstr ""
  1783. "When setting other speed settings to 0 Slic3r will autocalculate the optimal "
  1784. "speed in order to keep constant extruder pressure. This experimental setting "
  1785. "is used to set the highest print speed you want to allow."
  1786. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:818
  1787. msgid ""
  1788. "This experimental setting is used to set the maximum volumetric speed your "
  1789. "extruder supports."
  1790. msgstr ""
  1791. "This experimental setting is used to set the maximum volumetric speed your "
  1792. "extruder supports."
  1793. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:826
  1794. msgid "Max volumetric slope positive"
  1795. msgstr "Max volumetric slope positive"
  1796. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:827
  1797. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:838
  1798. msgid ""
  1799. "This experimental setting is used to limit the speed of change in extrusion "
  1800. "rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
  1801. "of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
  1802. "s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
  1803. msgstr ""
  1804. "This experimental setting is used to limit the speed of change in extrusion "
  1805. "rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
  1806. "of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
  1807. "s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
  1808. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:831
  1809. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:842
  1810. msgid "mm³/s²"
  1811. msgstr "mm³/s²"
  1812. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:837
  1813. msgid "Max volumetric slope negative"
  1814. msgstr "Max volumetric slope negative"
  1815. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:848
  1816. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:857
  1817. msgid "Min"
  1818. msgstr "Min"
  1819. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:849
  1820. msgid "This setting represents the minimum PWM your fan needs to work."
  1821. msgstr "This setting represents the minimum PWM your fan needs to work."
  1822. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:858
  1823. msgid ""
  1824. "This is the lowest printable layer height for this extruder and limits the "
  1825. "resolution for variable layer height. Typical values are between 0.05 mm and "
  1826. "0.1 mm."
  1827. msgstr ""
  1828. "This is the lowest printable layer height for this extruder and limits the "
  1829. "resolution for variable layer height. Typical values are between 0.05 mm and "
  1830. "0.1 mm."
  1831. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:866
  1832. msgid "Min print speed"
  1833. msgstr "Min print speed"
  1834. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:867
  1835. msgid "Slic3r will not scale speed down below this speed."
  1836. msgstr "Slic3r will not scale speed down below this speed."
  1837. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:874
  1838. msgid "Minimum extrusion length"
  1839. msgstr "Minimum extrusion length"
  1840. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:875
  1841. msgid ""
  1842. "Generate no less than the number of skirt loops required to consume the "
  1843. "specified amount of filament on the bottom layer. For multi-extruder "
  1844. "machines, this minimum applies to each extruder."
  1845. msgstr ""
  1846. "Generate no less than the number of skirt loops required to consume the "
  1847. "specified amount of filament on the bottom layer. For multi-extruder "
  1848. "machines, this minimum applies to each extruder."
  1849. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:884
  1850. msgid "Configuration notes"
  1851. msgstr "Configuration notes"
  1852. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:885
  1853. msgid ""
  1854. "You can put here your personal notes. This text will be added to the G-code "
  1855. "header comments."
  1856. msgstr ""
  1857. "You can put here your personal notes. This text will be added to the G-code "
  1858. "header comments."
  1859. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:894
  1860. msgid "Nozzle diameter"
  1861. msgstr "Nozzle diameter"
  1862. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:895
  1863. msgid ""
  1864. "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
  1865. msgstr ""
  1866. "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
  1867. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:901
  1868. msgid "API Key"
  1869. msgstr "API Key"
  1870. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:902
  1871. msgid ""
  1872. "Slic3r can upload G-code files to OctoPrint. This field should contain the "
  1873. "API Key required for authentication."
  1874. msgstr ""
  1875. "Slic3r can upload G-code files to OctoPrint. This field should contain the "
  1876. "API Key required for authentication."
  1877. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:908
  1878. msgid "Host or IP"
  1879. msgstr "Host or IP"
  1880. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:909
  1881. msgid ""
  1882. "Slic3r can upload G-code files to OctoPrint. This field should contain the "
  1883. "hostname or IP address of the OctoPrint instance."
  1884. msgstr ""
  1885. "Slic3r can upload G-code files to OctoPrint. This field should contain the "
  1886. "hostname or IP address of the OctoPrint instance."
  1887. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:915
  1888. msgid "Only retract when crossing perimeters"
  1889. msgstr "Only retract when crossing perimeters"
  1890. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:916
  1891. msgid ""
  1892. "Disables retraction when the travel path does not exceed the upper layer's "
  1893. "perimeters (and thus any ooze will be probably invisible)."
  1894. msgstr ""
  1895. "Disables retraction when the travel path does not exceed the upper layer's "
  1896. "perimeters (and thus any ooze will be probably invisible)."
  1897. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:923
  1898. msgid ""
  1899. "This option will drop the temperature of the inactive extruders to prevent "
  1900. "oozing. It will enable a tall skirt automatically and move extruders outside "
  1901. "such skirt when changing temperatures."
  1902. msgstr ""
  1903. "This option will drop the temperature of the inactive extruders to prevent "
  1904. "oozing. It will enable a tall skirt automatically and move extruders outside "
  1905. "such skirt when changing temperatures."
  1906. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:930
  1907. msgid "Output filename format"
  1908. msgstr "Output filename format"
  1909. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:931
  1910. msgid ""
  1911. "You can use all configuration options as variables inside this template. For "
  1912. "example: [layer_height], [fill_density] etc. You can also use [timestamp], "
  1913. "[year], [month], [day], [hour], [minute], [second], [version], "
  1914. "[input_filename], [input_filename_base]."
  1915. msgstr ""
  1916. "You can use all configuration options as variables inside this template. For "
  1917. "example: [layer_height], [fill_density] etc. You can also use [timestamp], "
  1918. "[year], [month], [day], [hour], [minute], [second], [version], "
  1919. "[input_filename], [input_filename_base]."
  1920. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:940
  1921. msgid "Detect bridging perimeters"
  1922. msgstr "Detect bridging perimeters"
  1923. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:942
  1924. msgid ""
  1925. "Experimental option to adjust flow for overhangs (bridge flow will be used), "
  1926. "to apply bridge speed to them and enable fan."
  1927. msgstr ""
  1928. "Experimental option to adjust flow for overhangs (bridge flow will be used), "
  1929. "to apply bridge speed to them and enable fan."
  1930. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:948
  1931. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:966
  1932. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:978
  1933. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:988
  1934. msgid "Perimeters"
  1935. msgstr "Perimeters"
  1936. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:949
  1937. msgid ""
  1938. "This is the acceleration your printer will use for perimeters. A high value "
  1939. "like 9000 usually gives good results if your hardware is up to the job. Set "
  1940. "zero to disable acceleration control for perimeters."
  1941. msgstr ""
  1942. "This is the acceleration your printer will use for perimeters. A high value "
  1943. "like 9000 usually gives good results if your hardware is up to the job. Set "
  1944. "zero to disable acceleration control for perimeters."
  1945. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:957
  1946. msgid "Perimeter extruder"
  1947. msgstr "Perimeter extruder"
  1948. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:959
  1949. msgid ""
  1950. "The extruder to use when printing perimeters and brim. First extruder is 1."
  1951. msgstr ""
  1952. "The extruder to use when printing perimeters and brim. First extruder is 1."
  1953. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:968
  1954. msgid ""
  1955. "Set this to a non-zero value to set a manual extrusion width for perimeters. "
  1956. "You may want to use thinner extrudates to get more accurate surfaces. If "
  1957. "left zero, default extrusion width will be used if set, otherwise 1.125 x "
  1958. "nozzle diameter will be used. If expressed as percentage (for example 200%) "
  1959. "it will be computed over layer height."
  1960. msgstr ""
  1961. "Set this to a non-zero value to set a manual extrusion width for perimeters. "
  1962. "You may want to use thinner extrudates to get more accurate surfaces. If "
  1963. "left zero, default extrusion width will be used if set, otherwise 1.125 x "
  1964. "nozzle diameter will be used. If expressed as percentage (for example 200%) "
  1965. "it will be computed over layer height."
  1966. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:980
  1967. msgid ""
  1968. "Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
  1969. msgstr ""
  1970. "Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
  1971. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:990
  1972. msgid ""
  1973. "This option sets the number of perimeters to generate for each layer. Note "
  1974. "that Slic3r may increase this number automatically when it detects sloping "
  1975. "surfaces which benefit from a higher number of perimeters if the Extra "
  1976. "Perimeters option is enabled."
  1977. msgstr ""
  1978. "This option sets the number of perimeters to generate for each layer. Note "
  1979. "that Slic3r may increase this number automatically when it detects sloping "
  1980. "surfaces which benefit from a higher number of perimeters if the Extra "
  1981. "Perimeters option is enabled."
  1982. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:994
  1983. msgid "(minimum)"
  1984. msgstr "(minimum)"
  1985. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1014
  1986. msgid "Printer notes"
  1987. msgstr "Printer notes"
  1988. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1015
  1989. msgid "You can put your notes regarding the printer here."
  1990. msgstr "You can put your notes regarding the printer here."
  1991. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1029
  1992. msgid "Raft layers"
  1993. msgstr "Raft layers"
  1994. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1031
  1995. msgid ""
  1996. "The object will be raised by this number of layers, and support material "
  1997. "will be generated under it."
  1998. msgstr ""
  1999. "The object will be raised by this number of layers, and support material "
  2000. "will be generated under it."
  2001. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1039
  2002. msgid "Resolution"
  2003. msgstr "Resolution"
  2004. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
  2005. msgid ""
  2006. "Minimum detail resolution, used to simplify the input file for speeding up "
  2007. "the slicing job and reducing memory usage. High-resolution models often "
  2008. "carry more detail than printers can render. Set to zero to disable any "
  2009. "simplification and use full resolution from input."
  2010. msgstr ""
  2011. "Minimum detail resolution, used to simplify the input file for speeding up "
  2012. "the slicing job and reducing memory usage. High-resolution models often "
  2013. "carry more detail than printers can render. Set to zero to disable any "
  2014. "simplification and use full resolution from input."
  2015. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
  2016. msgid "Minimum travel after retraction"
  2017. msgstr "Minimum travel after retraction"
  2018. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1051
  2019. msgid ""
  2020. "Retraction is not triggered when travel moves are shorter than this length."
  2021. msgstr ""
  2022. "Retraction is not triggered when travel moves are shorter than this length."
  2023. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1057
  2024. msgid "Retract amount before wipe"
  2025. msgstr "Retract amount before wipe"
  2026. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1058
  2027. msgid ""
  2028. "With bowden extruders, it may be wise to do some amount of quick retract "
  2029. "before doing the wipe movement."
  2030. msgstr ""
  2031. "With bowden extruders, it may be wise to do some amount of quick retract "
  2032. "before doing the wipe movement."
  2033. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1065
  2034. msgid "Retract on layer change"
  2035. msgstr "Retract on layer change"
  2036. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1066
  2037. msgid "This flag enforces a retraction whenever a Z move is done."
  2038. msgstr "This flag enforces a retraction whenever a Z move is done."
  2039. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1071
  2040. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1080
  2041. msgid "Length"
  2042. msgstr "Length"
  2043. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1072
  2044. msgid "Retraction Length"
  2045. msgstr "Retraction Length"
  2046. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1073
  2047. msgid ""
  2048. "When retraction is triggered, filament is pulled back by the specified "
  2049. "amount (the length is measured on raw filament, before it enters the "
  2050. "extruder)."
  2051. msgstr ""
  2052. "When retraction is triggered, filament is pulled back by the specified "
  2053. "amount (the length is measured on raw filament, before it enters the "
  2054. "extruder)."
  2055. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1075
  2056. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1085
  2057. msgid "mm (zero to disable)"
  2058. msgstr "mm (zero to disable)"
  2059. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1081
  2060. msgid "Retraction Length (Toolchange)"
  2061. msgstr "Retraction Length (Toolchange)"
  2062. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1082
  2063. msgid ""
  2064. "When retraction is triggered before changing tool, filament is pulled back "
  2065. "by the specified amount (the length is measured on raw filament, before it "
  2066. "enters the extruder)."
  2067. msgstr ""
  2068. "When retraction is triggered before changing tool, filament is pulled back "
  2069. "by the specified amount (the length is measured on raw filament, before it "
  2070. "enters the extruder)."
  2071. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1090
  2072. msgid "Lift Z"
  2073. msgstr "Lift Z"
  2074. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1091
  2075. msgid ""
  2076. "If you set this to a positive value, Z is quickly raised every time a "
  2077. "retraction is triggered. When using multiple extruders, only the setting for "
  2078. "the first extruder will be considered."
  2079. msgstr ""
  2080. "If you set this to a positive value, Z is quickly raised every time a "
  2081. "retraction is triggered. When using multiple extruders, only the setting for "
  2082. "the first extruder will be considered."
  2083. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1099
  2084. msgid "Above Z"
  2085. msgstr "Above Z"
  2086. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1100
  2087. msgid "Only lift Z above"
  2088. msgstr "Only lift Z above"
  2089. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1101
  2090. msgid ""
  2091. "If you set this to a positive value, Z lift will only take place above the "
  2092. "specified absolute Z. You can tune this setting for skipping lift on the "
  2093. "first layers."
  2094. msgstr ""
  2095. "If you set this to a positive value, Z lift will only take place above the "
  2096. "specified absolute Z. You can tune this setting for skipping lift on the "
  2097. "first layers."
  2098. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1108
  2099. msgid "Below Z"
  2100. msgstr "Below Z"
  2101. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1109
  2102. msgid "Only lift Z below"
  2103. msgstr "Only lift Z below"
  2104. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1110
  2105. msgid ""
  2106. "If you set this to a positive value, Z lift will only take place below the "
  2107. "specified absolute Z. You can tune this setting for limiting lift to the "
  2108. "first layers."
  2109. msgstr ""
  2110. "If you set this to a positive value, Z lift will only take place below the "
  2111. "specified absolute Z. You can tune this setting for limiting lift to the "
  2112. "first layers."
  2113. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1118
  2114. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1126
  2115. msgid "Extra length on restart"
  2116. msgstr "Extra length on restart"
  2117. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1119
  2118. msgid ""
  2119. "When the retraction is compensated after the travel move, the extruder will "
  2120. "push this additional amount of filament. This setting is rarely needed."
  2121. msgstr ""
  2122. "When the retraction is compensated after the travel move, the extruder will "
  2123. "push this additional amount of filament. This setting is rarely needed."
  2124. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1127
  2125. msgid ""
  2126. "When the retraction is compensated after changing tool, the extruder will "
  2127. "push this additional amount of filament."
  2128. msgstr ""
  2129. "When the retraction is compensated after changing tool, the extruder will "
  2130. "push this additional amount of filament."
  2131. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1134
  2132. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1135
  2133. msgid "Retraction Speed"
  2134. msgstr "Retraction Speed"
  2135. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1136
  2136. msgid "The speed for retractions (it only applies to the extruder motor)."
  2137. msgstr "The speed for retractions (it only applies to the extruder motor)."
  2138. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1142
  2139. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1143
  2140. msgid "Deretraction Speed"
  2141. msgstr "Deretraction Speed"
  2142. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1144
  2143. msgid ""
  2144. "The speed for loading of a filament into extruder after retraction (it only "
  2145. "applies to the extruder motor). If left to zero, the retraction speed is "
  2146. "used."
  2147. msgstr ""
  2148. "The speed for loading of a filament into extruder after retraction (it only "
  2149. "applies to the extruder motor). If left to zero, the retraction speed is "
  2150. "used."
  2151. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1151
  2152. msgid "Seam position"
  2153. msgstr "Seam position"
  2154. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1153
  2155. msgid "Position of perimeters starting points."
  2156. msgstr "Position of perimeters starting points."
  2157. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1169
  2158. msgid "Direction"
  2159. msgstr "Direction"
  2160. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1171
  2161. msgid "Preferred direction of the seam"
  2162. msgstr "Preferred direction of the seam"
  2163. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1172
  2164. msgid "Seam preferred direction"
  2165. msgstr "Seam preferred direction"
  2166. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1180
  2167. msgid "Jitter"
  2168. msgstr "Jitter"
  2169. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1182
  2170. msgid "Seam preferred direction jitter"
  2171. msgstr "Seam preferred direction jitter"
  2172. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1183
  2173. msgid "Preferred direction of the seam - jitter"
  2174. msgstr "Preferred direction of the seam - jitter"
  2175. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1194
  2176. msgid "USB/serial port for printer connection."
  2177. msgstr "USB/serial port for printer connection."
  2178. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1202
  2179. msgid "Serial port speed"
  2180. msgstr "Serial port speed"
  2181. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1203
  2182. msgid "Speed (baud) of USB/serial port for printer connection."
  2183. msgstr "Speed (baud) of USB/serial port for printer connection."
  2184. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1212
  2185. msgid "Distance from object"
  2186. msgstr "Distance from object"
  2187. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1213
  2188. msgid ""
  2189. "Distance between skirt and object(s). Set this to zero to attach the skirt "
  2190. "to the object(s) and get a brim for better adhesion."
  2191. msgstr ""
  2192. "Distance between skirt and object(s). Set this to zero to attach the skirt "
  2193. "to the object(s) and get a brim for better adhesion."
  2194. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1221
  2195. msgid "Skirt height"
  2196. msgstr "Skirt height"
  2197. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1222
  2198. msgid ""
  2199. "Height of skirt expressed in layers. Set this to a tall value to use skirt "
  2200. "as a shield against drafts."
  2201. msgstr ""
  2202. "Height of skirt expressed in layers. Set this to a tall value to use skirt "
  2203. "as a shield against drafts."
  2204. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1229
  2205. msgid "Loops (minimum)"
  2206. msgstr "Loops (minimum)"
  2207. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1230
  2208. msgid "Skirt Loops"
  2209. msgstr "Skirt Loops"
  2210. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1231
  2211. msgid ""
  2212. "Number of loops for the skirt. If the Minimum Extrusion Length option is "
  2213. "set, the number of loops might be greater than the one configured here. Set "
  2214. "this to zero to disable skirt completely."
  2215. msgstr ""
  2216. "Number of loops for the skirt. If the Minimum Extrusion Length option is "
  2217. "set, the number of loops might be greater than the one configured here. Set "
  2218. "this to zero to disable skirt completely."
  2219. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1239
  2220. msgid "Slow down if layer print time is below"
  2221. msgstr "Slow down if layer print time is below"
  2222. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1240
  2223. msgid ""
  2224. "If layer print time is estimated below this number of seconds, print moves "
  2225. "speed will be scaled down to extend duration to this value."
  2226. msgstr ""
  2227. "If layer print time is estimated below this number of seconds, print moves "
  2228. "speed will be scaled down to extend duration to this value."
  2229. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1250
  2230. msgid "Small perimeters"
  2231. msgstr "Small perimeters"
  2232. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1252
  2233. msgid ""
  2234. "This separate setting will affect the speed of perimeters having radius <= "
  2235. "6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
  2236. "be calculated on the perimeters speed setting above. Set to zero for auto."
  2237. msgstr ""
  2238. "This separate setting will affect the speed of perimeters having radius <= "
  2239. "6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
  2240. "be calculated on the perimeters speed setting above. Set to zero for auto."
  2241. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1262
  2242. msgid "Solid infill threshold area"
  2243. msgstr "Solid infill threshold area"
  2244. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1264
  2245. msgid ""
  2246. "Force solid infill for regions having a smaller area than the specified "
  2247. "threshold."
  2248. msgstr ""
  2249. "Force solid infill for regions having a smaller area than the specified "
  2250. "threshold."
  2251. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1265
  2252. msgid "mm²"
  2253. msgstr "mm²"
  2254. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1271
  2255. msgid "Solid infill extruder"
  2256. msgstr "Solid infill extruder"
  2257. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1273
  2258. msgid "The extruder to use when printing solid infill."
  2259. msgstr "The extruder to use when printing solid infill."
  2260. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1279
  2261. msgid "Solid infill every"
  2262. msgstr "Solid infill every"
  2263. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1281
  2264. msgid ""
  2265. "This feature allows to force a solid layer every given number of layers. "
  2266. "Zero to disable. You can set this to any value (for example 9999); Slic3r "
  2267. "will automatically choose the maximum possible number of layers to combine "
  2268. "according to nozzle diameter and layer height."
  2269. msgstr ""
  2270. "This feature allows to force a solid layer every given number of layers. "
  2271. "Zero to disable. You can set this to any value (for example 9999); Slic3r "
  2272. "will automatically choose the maximum possible number of layers to combine "
  2273. "according to nozzle diameter and layer height."
  2274. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1291
  2275. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1301
  2276. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:142
  2277. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:84
  2278. msgid "Solid infill"
  2279. msgstr "Solid infill"
  2280. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1293
  2281. msgid ""
  2282. "Set this to a non-zero value to set a manual extrusion width for infill for "
  2283. "solid surfaces. If left zero, default extrusion width will be used if set, "
  2284. "otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
  2285. "(for example 90%) it will be computed over layer height."
  2286. msgstr ""
  2287. "Set this to a non-zero value to set a manual extrusion width for infill for "
  2288. "solid surfaces. If left zero, default extrusion width will be used if set, "
  2289. "otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
  2290. "(for example 90%) it will be computed over layer height."
  2291. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1303
  2292. msgid ""
  2293. "Speed for printing solid regions (top/bottom/internal horizontal shells). "
  2294. "This can be expressed as a percentage (for example: 80%) over the default "
  2295. "infill speed above. Set to zero for auto."
  2296. msgstr ""
  2297. "Speed for printing solid regions (top/bottom/internal horizontal shells). "
  2298. "This can be expressed as a percentage (for example: 80%) over the default "
  2299. "infill speed above. Set to zero for auto."
  2300. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1315
  2301. msgid "Number of solid layers to generate on top and bottom surfaces."
  2302. msgstr "Number of solid layers to generate on top and bottom surfaces."
  2303. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1322
  2304. msgid "Spiral vase"
  2305. msgstr "Spiral vase"
  2306. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1323
  2307. msgid ""
  2308. "This feature will raise Z gradually while printing a single-walled object in "
  2309. "order to remove any visible seam. This option requires a single perimeter, "
  2310. "no infill, no top solid layers and no support material. You can still set "
  2311. "any number of bottom solid layers as well as skirt/brim loops. It won't work "
  2312. "when printing more than an object."
  2313. msgstr ""
  2314. "This feature will raise Z gradually while printing a single-walled object in "
  2315. "order to remove any visible seam. This option requires a single perimeter, "
  2316. "no infill, no top solid layers and no support material. You can still set "
  2317. "any number of bottom solid layers as well as skirt/brim loops. It won't work "
  2318. "when printing more than an object."
  2319. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1332
  2320. msgid "Temperature variation"
  2321. msgstr "Temperature variation"
  2322. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1333
  2323. msgid ""
  2324. "Temperature difference to be applied when an extruder is not active. Enables "
  2325. "a full-height \"sacrificial\" skirt on which the nozzles are periodically "
  2326. "wiped."
  2327. msgstr ""
  2328. "Temperature difference to be applied when an extruder is not active. Enables "
  2329. "a full-height \"sacrificial\" skirt on which the nozzles are periodically "
  2330. "wiped."
  2331. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1343
  2332. msgid ""
  2333. "This start procedure is inserted at the beginning, after bed has reached the "
  2334. "target temperature and extruder just started heating, and before extruder "
  2335. "has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
  2336. "such commands will not be prepended automatically so you're free to "
  2337. "customize the order of heating commands and other custom actions. Note that "
  2338. "you can use placeholder variables for all Slic3r settings, so you can put a "
  2339. "\"M109 S[first_layer_temperature]\" command wherever you want."
  2340. msgstr ""
  2341. "This start procedure is inserted at the beginning, after bed has reached the "
  2342. "target temperature and extruder just started heating, and before extruder "
  2343. "has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
  2344. "such commands will not be prepended automatically so you're free to "
  2345. "customize the order of heating commands and other custom actions. Note that "
  2346. "you can use placeholder variables for all Slic3r settings, so you can put a "
  2347. "\"M109 S[first_layer_temperature]\" command wherever you want."
  2348. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1358
  2349. msgid ""
  2350. "This start procedure is inserted at the beginning, after any printer start "
  2351. "gcode. This is used to override settings for a specific filament. If Slic3r "
  2352. "detects M104, M109, M140 or M190 in your custom codes, such commands will "
  2353. "not be prepended automatically so you're free to customize the order of "
  2354. "heating commands and other custom actions. Note that you can use placeholder "
  2355. "variables for all Slic3r settings, so you can put a \"M109 "
  2356. "S[first_layer_temperature]\" command wherever you want. If you have multiple "
  2357. "extruders, the gcode is processed in extruder order."
  2358. msgstr ""
  2359. "This start procedure is inserted at the beginning, after any printer start "
  2360. "gcode. This is used to override settings for a specific filament. If Slic3r "
  2361. "detects M104, M109, M140 or M190 in your custom codes, such commands will "
  2362. "not be prepended automatically so you're free to customize the order of "
  2363. "heating commands and other custom actions. Note that you can use placeholder "
  2364. "variables for all Slic3r settings, so you can put a \"M109 "
  2365. "S[first_layer_temperature]\" command wherever you want. If you have multiple "
  2366. "extruders, the gcode is processed in extruder order."
  2367. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1373
  2368. msgid "Single Extruder Multi Material"
  2369. msgstr "Single Extruder Multi Material"
  2370. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1374
  2371. msgid "The printer multiplexes filaments into a single hot end."
  2372. msgstr "The printer multiplexes filaments into a single hot end."
  2373. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1379
  2374. msgid "Generate support material"
  2375. msgstr "Generate support material"
  2376. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1381
  2377. msgid "Enable support material generation."
  2378. msgstr "Enable support material generation."
  2379. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1386
  2380. msgid "XY separation between an object and its support"
  2381. msgstr "XY separation between an object and its support"
  2382. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1388
  2383. msgid ""
  2384. "XY separation between an object and its support. If expressed as percentage "
  2385. "(for example 50%), it will be calculated over external perimeter width."
  2386. msgstr ""
  2387. "XY separation between an object and its support. If expressed as percentage "
  2388. "(for example 50%), it will be calculated over external perimeter width."
  2389. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1398
  2390. msgid "Pattern angle"
  2391. msgstr "Pattern angle"
  2392. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1400
  2393. msgid ""
  2394. "Use this setting to rotate the support material pattern on the horizontal "
  2395. "plane."
  2396. msgstr ""
  2397. "Use this setting to rotate the support material pattern on the horizontal "
  2398. "plane."
  2399. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1408
  2400. msgid "Support on build plate only"
  2401. msgstr "Support on build plate only"
  2402. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1410
  2403. msgid ""
  2404. "Only create support if it lies on a build plate. Don't create support on a "
  2405. "print."
  2406. msgstr ""
  2407. "Only create support if it lies on a build plate. Don't create support on a "
  2408. "print."
  2409. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1416
  2410. msgid "Contact Z distance"
  2411. msgstr "Contact Z distance"
  2412. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1418
  2413. msgid ""
  2414. "The vertical distance between object and support material interface. Setting "
  2415. "this to 0 will also prevent Slic3r from using bridge flow and speed for the "
  2416. "first object layer."
  2417. msgstr ""
  2418. "The vertical distance between object and support material interface. Setting "
  2419. "this to 0 will also prevent Slic3r from using bridge flow and speed for the "
  2420. "first object layer."
  2421. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1431
  2422. msgid "Enforce support for the first"
  2423. msgstr "Enforce support for the first"
  2424. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1433
  2425. msgid ""
  2426. "Generate support material for the specified number of layers counting from "
  2427. "bottom, regardless of whether normal support material is enabled or not and "
  2428. "regardless of any angle threshold. This is useful for getting more adhesion "
  2429. "of objects having a very thin or poor footprint on the build plate."
  2430. msgstr ""
  2431. "Generate support material for the specified number of layers counting from "
  2432. "bottom, regardless of whether normal support material is enabled or not and "
  2433. "regardless of any angle threshold. This is useful for getting more adhesion "
  2434. "of objects having a very thin or poor footprint on the build plate."
  2435. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1439
  2436. msgid "Enforce support for the first n layers"
  2437. msgstr "Enforce support for the first n layers"
  2438. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1444
  2439. msgid "Support material/raft/skirt extruder"
  2440. msgstr "Support material/raft/skirt extruder"
  2441. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1446
  2442. msgid ""
  2443. "The extruder to use when printing support material, raft and skirt (1+, 0 to "
  2444. "use the current extruder to minimize tool changes)."
  2445. msgstr ""
  2446. "The extruder to use when printing support material, raft and skirt (1+, 0 to "
  2447. "use the current extruder to minimize tool changes)."
  2448. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1455
  2449. msgid ""
  2450. "Set this to a non-zero value to set a manual extrusion width for support "
  2451. "material. If left zero, default extrusion width will be used if set, "
  2452. "otherwise nozzle diameter will be used. If expressed as percentage (for "
  2453. "example 90%) it will be computed over layer height."
  2454. msgstr ""
  2455. "Set this to a non-zero value to set a manual extrusion width for support "
  2456. "material. If left zero, default extrusion width will be used if set, "
  2457. "otherwise nozzle diameter will be used. If expressed as percentage (for "
  2458. "example 90%) it will be computed over layer height."
  2459. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1463
  2460. msgid "Interface loops"
  2461. msgstr "Interface loops"
  2462. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1465
  2463. msgid ""
  2464. "Cover the top contact layer of the supports with loops. Disabled by default."
  2465. msgstr ""
  2466. "Cover the top contact layer of the supports with loops. Disabled by default."
  2467. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1470
  2468. msgid "Support material/raft interface extruder"
  2469. msgstr "Support material/raft interface extruder"
  2470. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1472
  2471. msgid ""
  2472. "The extruder to use when printing support material interface (1+, 0 to use "
  2473. "the current extruder to minimize tool changes). This affects raft too."
  2474. msgstr ""
  2475. "The extruder to use when printing support material interface (1+, 0 to use "
  2476. "the current extruder to minimize tool changes). This affects raft too."
  2477. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1479
  2478. msgid "Interface layers"
  2479. msgstr "Interface layers"
  2480. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1481
  2481. msgid ""
  2482. "Number of interface layers to insert between the object(s) and support "
  2483. "material."
  2484. msgstr ""
  2485. "Number of interface layers to insert between the object(s) and support "
  2486. "material."
  2487. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1488
  2488. msgid "Interface pattern spacing"
  2489. msgstr "Interface pattern spacing"
  2490. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1490
  2491. msgid "Spacing between interface lines. Set zero to get a solid interface."
  2492. msgstr "Spacing between interface lines. Set zero to get a solid interface."
  2493. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1497
  2494. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:148
  2495. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:90
  2496. msgid "Support material interface"
  2497. msgstr "Support material interface"
  2498. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1499
  2499. msgid ""
  2500. "Speed for printing support material interface layers. If expressed as "
  2501. "percentage (for example 50%) it will be calculated over support material "
  2502. "speed."
  2503. msgstr ""
  2504. "Speed for printing support material interface layers. If expressed as "
  2505. "percentage (for example 50%) it will be calculated over support material "
  2506. "speed."
  2507. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1508
  2508. msgid "Pattern"
  2509. msgstr "Pattern"
  2510. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1510
  2511. msgid "Pattern used to generate support material."
  2512. msgstr "Pattern used to generate support material."
  2513. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1524
  2514. msgid "Pattern spacing"
  2515. msgstr "Pattern spacing"
  2516. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1526
  2517. msgid "Spacing between support material lines."
  2518. msgstr "Spacing between support material lines."
  2519. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1535
  2520. msgid "Speed for printing support material."
  2521. msgstr "Speed for printing support material."
  2522. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1542
  2523. msgid "Synchronize with object layers"
  2524. msgstr "Synchronize with object layers"
  2525. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1544
  2526. msgid ""
  2527. "Synchronize support layers with the object print layers. This is useful with "
  2528. "multi-material printers, where the extruder switch is expensive."
  2529. msgstr ""
  2530. "Synchronize support layers with the object print layers. This is useful with "
  2531. "multi-material printers, where the extruder switch is expensive."
  2532. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1550
  2533. msgid "Overhang threshold"
  2534. msgstr "Overhang threshold"
  2535. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1552
  2536. msgid ""
  2537. "Support material will not be generated for overhangs whose slope angle (90° "
  2538. "= vertical) is above the given threshold. In other words, this value "
  2539. "represent the most horizontal slope (measured from the horizontal plane) "
  2540. "that you can print without support material. Set to zero for automatic "
  2541. "detection (recommended)."
  2542. msgstr ""
  2543. "Support material will not be generated for overhangs whose slope angle (90° "
  2544. "= vertical) is above the given threshold. In other words, this value "
  2545. "represent the most horizontal slope (measured from the horizontal plane) "
  2546. "that you can print without support material. Set to zero for automatic "
  2547. "detection (recommended)."
  2548. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1564
  2549. msgid "With sheath around the support"
  2550. msgstr "With sheath around the support"
  2551. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1566
  2552. msgid ""
  2553. "Add a sheath (a single perimeter line) around the base support. This makes "
  2554. "the support more reliable, but also more difficult to remove."
  2555. msgstr ""
  2556. "Add a sheath (a single perimeter line) around the base support. This makes "
  2557. "the support more reliable, but also more difficult to remove."
  2558. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1573
  2559. msgid ""
  2560. "Extruder temperature for layers after the first one. Set this to zero to "
  2561. "disable temperature control commands in the output."
  2562. msgstr ""
  2563. "Extruder temperature for layers after the first one. Set this to zero to "
  2564. "disable temperature control commands in the output."
  2565. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1576
  2566. msgid "Temperature"
  2567. msgstr "Temperature"
  2568. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1582
  2569. msgid "Detect thin walls"
  2570. msgstr "Detect thin walls"
  2571. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1584
  2572. msgid ""
  2573. "Detect single-width walls (parts where two extrusions don't fit and we need "
  2574. "to collapse them into a single trace)."
  2575. msgstr ""
  2576. "Detect single-width walls (parts where two extrusions don't fit and we need "
  2577. "to collapse them into a single trace)."
  2578. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1590
  2579. msgid "Threads"
  2580. msgstr "Threads"
  2581. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1591
  2582. msgid ""
  2583. "Threads are used to parallelize long-running tasks. Optimal threads number "
  2584. "is slightly above the number of available cores/processors."
  2585. msgstr ""
  2586. "Threads are used to parallelize long-running tasks. Optimal threads number "
  2587. "is slightly above the number of available cores/processors."
  2588. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1603
  2589. msgid ""
  2590. "This custom code is inserted right before every extruder change. Note that "
  2591. "you can use placeholder variables for all Slic3r settings as well as "
  2592. "[previous_extruder] and [next_extruder]."
  2593. msgstr ""
  2594. "This custom code is inserted right before every extruder change. Note that "
  2595. "you can use placeholder variables for all Slic3r settings as well as "
  2596. "[previous_extruder] and [next_extruder]."
  2597. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1613
  2598. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1624
  2599. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:143
  2600. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:85
  2601. msgid "Top solid infill"
  2602. msgstr "Top solid infill"
  2603. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1615
  2604. msgid ""
  2605. "Set this to a non-zero value to set a manual extrusion width for infill for "
  2606. "top surfaces. You may want to use thinner extrudates to fill all narrow "
  2607. "regions and get a smoother finish. If left zero, default extrusion width "
  2608. "will be used if set, otherwise nozzle diameter will be used. If expressed as "
  2609. "percentage (for example 90%) it will be computed over layer height."
  2610. msgstr ""
  2611. "Set this to a non-zero value to set a manual extrusion width for infill for "
  2612. "top surfaces. You may want to use thinner extrudates to fill all narrow "
  2613. "regions and get a smoother finish. If left zero, default extrusion width "
  2614. "will be used if set, otherwise nozzle diameter will be used. If expressed as "
  2615. "percentage (for example 90%) it will be computed over layer height."
  2616. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1626
  2617. msgid ""
  2618. "Speed for printing top solid layers (it only applies to the uppermost "
  2619. "external layers and not to their internal solid layers). You may want to "
  2620. "slow down this to get a nicer surface finish. This can be expressed as a "
  2621. "percentage (for example: 80%) over the solid infill speed above. Set to zero "
  2622. "for auto."
  2623. msgstr ""
  2624. "Speed for printing top solid layers (it only applies to the uppermost "
  2625. "external layers and not to their internal solid layers). You may want to "
  2626. "slow down this to get a nicer surface finish. This can be expressed as a "
  2627. "percentage (for example: 80%) over the solid infill speed above. Set to zero "
  2628. "for auto."
  2629. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1638
  2630. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:369
  2631. msgid "Top"
  2632. msgstr "Top"
  2633. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1640
  2634. msgid "Number of solid layers to generate on top surfaces."
  2635. msgstr "Number of solid layers to generate on top surfaces."
  2636. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1642
  2637. msgid "Top solid layers"
  2638. msgstr "Top solid layers"
  2639. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1647
  2640. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:95
  2641. msgid "Travel"
  2642. msgstr "Travel"
  2643. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1648
  2644. msgid "Speed for travel moves (jumps between distant extrusion points)."
  2645. msgstr "Speed for travel moves (jumps between distant extrusion points)."
  2646. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1656
  2647. msgid "Use firmware retraction"
  2648. msgstr "Use firmware retraction"
  2649. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1657
  2650. msgid ""
  2651. "This experimental setting uses G10 and G11 commands to have the firmware "
  2652. "handle the retraction. This is only supported in recent Marlin."
  2653. msgstr ""
  2654. "This experimental setting uses G10 and G11 commands to have the firmware "
  2655. "handle the retraction. This is only supported in recent Marlin."
  2656. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1663
  2657. msgid "Use relative E distances"
  2658. msgstr "Use relative E distances"
  2659. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1664
  2660. msgid ""
  2661. "If your firmware requires relative E values, check this, otherwise leave it "
  2662. "unchecked. Most firmwares use absolute values."
  2663. msgstr ""
  2664. "If your firmware requires relative E values, check this, otherwise leave it "
  2665. "unchecked. Most firmwares use absolute values."
  2666. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1670
  2667. msgid "Use volumetric E"
  2668. msgstr "Use volumetric E"
  2669. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1671
  2670. msgid ""
  2671. "This experimental setting uses outputs the E values in cubic millimeters "
  2672. "instead of linear millimeters. If your firmware doesn't already know "
  2673. "filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
  2674. "T0' in your start G-code in order to turn volumetric mode on and use the "
  2675. "filament diameter associated to the filament selected in Slic3r. This is "
  2676. "only supported in recent Marlin."
  2677. msgstr ""
  2678. "This experimental setting uses outputs the E values in cubic millimeters "
  2679. "instead of linear millimeters. If your firmware doesn't already know "
  2680. "filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
  2681. "T0' in your start G-code in order to turn volumetric mode on and use the "
  2682. "filament diameter associated to the filament selected in Slic3r. This is "
  2683. "only supported in recent Marlin."
  2684. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1681
  2685. msgid "Enable variable layer height feature"
  2686. msgstr "Enable variable layer height feature"
  2687. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1682
  2688. msgid ""
  2689. "Some printers or printer setups may have difficulties printing with a "
  2690. "variable layer height. Enabled by default."
  2691. msgstr ""
  2692. "Some printers or printer setups may have difficulties printing with a "
  2693. "variable layer height. Enabled by default."
  2694. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1688
  2695. msgid "Wipe while retracting"
  2696. msgstr "Wipe while retracting"
  2697. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1689
  2698. msgid ""
  2699. "This flag will move the nozzle while retracting to minimize the possible "
  2700. "blob on leaky extruders."
  2701. msgstr ""
  2702. "This flag will move the nozzle while retracting to minimize the possible "
  2703. "blob on leaky extruders."
  2704. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1696
  2705. msgid ""
  2706. "Multi material printers may need to prime or purge extruders on tool "
  2707. "changes. Extrude the excess material into the wipe tower."
  2708. msgstr ""
  2709. "Multi material printers may need to prime or purge extruders on tool "
  2710. "changes. Extrude the excess material into the wipe tower."
  2711. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1702
  2712. msgid "Position X"
  2713. msgstr "Position X"
  2714. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1703
  2715. msgid "X coordinate of the left front corner of a wipe tower"
  2716. msgstr "X coordinate of the left front corner of a wipe tower"
  2717. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1709
  2718. msgid "Position Y"
  2719. msgstr "Position Y"
  2720. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1710
  2721. msgid "Y coordinate of the left front corner of a wipe tower"
  2722. msgstr "Y coordinate of the left front corner of a wipe tower"
  2723. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1716
  2724. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:70
  2725. msgid "Width"
  2726. msgstr "Width"
  2727. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1717
  2728. msgid "Width of a wipe tower"
  2729. msgstr "Width of a wipe tower"
  2730. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1723
  2731. msgid "Per color change depth"
  2732. msgstr "Per color change depth"
  2733. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1724
  2734. msgid ""
  2735. "Depth of a wipe color per color change. For N colors, there will be maximum "
  2736. "(N-1) tool switches performed, therefore the total depth of the wipe tower "
  2737. "will be (N-1) times this value."
  2738. msgstr ""
  2739. "Depth of a wipe color per color change. For N colors, there will be maximum "
  2740. "(N-1) tool switches performed, therefore the total depth of the wipe tower "
  2741. "will be (N-1) times this value."
  2742. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1732
  2743. msgid "XY Size Compensation"
  2744. msgstr "XY Size Compensation"
  2745. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1734
  2746. msgid ""
  2747. "The object will be grown/shrunk in the XY plane by the configured value "
  2748. "(negative = inwards, positive = outwards). This might be useful for fine-"
  2749. "tuning hole sizes."
  2750. msgstr ""
  2751. "The object will be grown/shrunk in the XY plane by the configured value "
  2752. "(negative = inwards, positive = outwards). This might be useful for fine-"
  2753. "tuning hole sizes."
  2754. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1742
  2755. msgid "Z offset"
  2756. msgstr "Z offset"
  2757. #: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1743
  2758. msgid ""
  2759. "This value will be added (or subtracted) from all the Z coordinates in the "
  2760. "output G-code. It is used to compensate for bad Z endstop position: for "
  2761. "example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
  2762. "print bed, set this to -0.3 (or fix your endstop)."
  2763. msgstr ""
  2764. "This value will be added (or subtracted) from all the Z coordinates in the "
  2765. "output G-code. It is used to compensate for bad Z endstop position: for "
  2766. "example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
  2767. "print bed, set this to -0.3 (or fix your endstop)."
  2768. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:137
  2769. msgid "None"
  2770. msgstr "None"
  2771. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:138
  2772. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:80
  2773. msgid "Perimeter"
  2774. msgstr "Perimeter"
  2775. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:139
  2776. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:81
  2777. msgid "External perimeter"
  2778. msgstr "External perimeter"
  2779. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:140
  2780. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:82
  2781. msgid "Overhang perimeter"
  2782. msgstr "Overhang perimeter"
  2783. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:141
  2784. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:83
  2785. msgid "Internal infill"
  2786. msgstr "Internal infill"
  2787. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:144
  2788. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:86
  2789. msgid "Bridge infill"
  2790. msgstr "Bridge infill"
  2791. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:151
  2792. msgid "Mixed"
  2793. msgstr "Mixed"
  2794. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:330
  2795. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:68
  2796. msgid "Feature type"
  2797. msgstr "Feature type"
  2798. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:332
  2799. msgid "Height (mm)"
  2800. msgstr "Height (mm)"
  2801. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:334
  2802. msgid "Width (mm)"
  2803. msgstr "Width (mm)"
  2804. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:336
  2805. msgid "Speed (mm/s)"
  2806. msgstr "Speed (mm/s)"
  2807. #: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:338
  2808. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:72
  2809. msgid "Tool"
  2810. msgstr "Tool"
  2811. #: c:\src\Slic3r\lib\Slic3r\GUI.pm:286
  2812. msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
  2813. msgstr "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
  2814. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:66
  2815. msgid "Version "
  2816. msgstr "Version "
  2817. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:66
  2818. msgid ""
  2819. " - Remember to check for updates at http://github.com/supermerill/slic3r/releases"
  2820. msgstr ""
  2821. " - Remember to check for updates at http://github.com/supermerill/slic3r/releases"
  2822. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:118
  2823. msgid "Plater"
  2824. msgstr "Plater"
  2825. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:120
  2826. msgid "Controller"
  2827. msgstr "Controller"
  2828. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:192
  2829. msgid "No Bonjour device found"
  2830. msgstr "No Bonjour device found"
  2831. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:192
  2832. msgid "Device Browser"
  2833. msgstr "Device Browser"
  2834. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:211
  2835. msgid "Connection to OctoPrint works correctly."
  2836. msgstr "Connection to OctoPrint works correctly."
  2837. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:214
  2838. msgid "I wasn't able to connect to OctoPrint ("
  2839. msgstr "I wasn't able to connect to OctoPrint ("
  2840. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:215
  2841. msgid "). Check hostname and OctoPrint version (at least 1.1.0 is required)."
  2842. msgstr "). Check hostname and OctoPrint version (at least 1.1.0 is required)."
  2843. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
  2844. msgid "Open STL/OBJ/AMF…\tCtrl+O"
  2845. msgstr "Open STL/OBJ/AMF…\tCtrl+O"
  2846. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
  2847. msgid "Open a model"
  2848. msgstr "Open a model"
  2849. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:254
  2850. msgid "&Load Config…\tCtrl+L"
  2851. msgstr "&Load Config…\tCtrl+L"
  2852. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:254
  2853. msgid "Load exported configuration file"
  2854. msgstr "Load exported configuration file"
  2855. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
  2856. msgid "&Export Config…\tCtrl+E"
  2857. msgstr "&Export Config…\tCtrl+E"
  2858. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
  2859. msgid "Export current configuration to file"
  2860. msgstr "Export current configuration to file"
  2861. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:260
  2862. msgid "&Load Config Bundle…"
  2863. msgstr "&Load Config Bundle…"
  2864. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:260
  2865. msgid "Load presets from a bundle"
  2866. msgstr "Load presets from a bundle"
  2867. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:263
  2868. msgid "&Export Config Bundle…"
  2869. msgstr "&Export Config Bundle…"
  2870. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:263
  2871. msgid "Export all presets to file"
  2872. msgstr "Export all presets to file"
  2873. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:268
  2874. msgid "Q&uick Slice…\tCtrl+U"
  2875. msgstr "Q&uick Slice…\tCtrl+U"
  2876. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:268
  2877. msgid "Slice a file into a G-code"
  2878. msgstr "Slice a file into a G-code"
  2879. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:274
  2880. msgid "Quick Slice and Save &As…\tCtrl+Alt+U"
  2881. msgstr "Quick Slice and Save &As…\tCtrl+Alt+U"
  2882. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:274
  2883. msgid "Slice a file into a G-code, save as"
  2884. msgstr "Slice a file into a G-code, save as"
  2885. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:280
  2886. msgid "&Repeat Last Quick Slice\tCtrl+Shift+U"
  2887. msgstr "&Repeat Last Quick Slice\tCtrl+Shift+U"
  2888. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:280
  2889. msgid "Repeat last quick slice"
  2890. msgstr "Repeat last quick slice"
  2891. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:287
  2892. msgid "Slice to SV&G…\tCtrl+G"
  2893. msgstr "Slice to SV&G…\tCtrl+G"
  2894. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:287
  2895. msgid "Slice file to a multi-layer SVG"
  2896. msgstr "Slice file to a multi-layer SVG"
  2897. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:291
  2898. msgid "(&Re)Slice Now\tCtrl+S"
  2899. msgstr "(&Re)Slice Now\tCtrl+S"
  2900. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:291
  2901. msgid "Start new slicing process"
  2902. msgstr "Start new slicing process"
  2903. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:294
  2904. msgid "Repair STL file…"
  2905. msgstr "Repair STL file…"
  2906. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:294
  2907. msgid "Automatically repair an STL file"
  2908. msgstr "Automatically repair an STL file"
  2909. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:299
  2910. msgid "Preferences…\tCtrl+,"
  2911. msgstr "Preferences…\tCtrl+,"
  2912. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:299
  2913. msgid "Application preferences"
  2914. msgstr "Application preferences"
  2915. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:304
  2916. msgid "&Quit"
  2917. msgstr "&Quit"
  2918. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:304
  2919. msgid "Quit Slic3r"
  2920. msgstr "Quit Slic3r"
  2921. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:314
  2922. msgid "Export G-code..."
  2923. msgstr "Export G-code..."
  2924. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:314
  2925. msgid "Export current plate as G-code"
  2926. msgstr "Export current plate as G-code"
  2927. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:317
  2928. msgid "Export plate as STL..."
  2929. msgstr "Export plate as STL..."
  2930. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:317
  2931. msgid "Export current plate as STL"
  2932. msgstr "Export current plate as STL"
  2933. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:320
  2934. msgid "Export plate as AMF..."
  2935. msgstr "Export plate as AMF..."
  2936. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:320
  2937. msgid "Export current plate as AMF"
  2938. msgstr "Export current plate as AMF"
  2939. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:323
  2940. msgid "Export plate as 3MF..."
  2941. msgstr "Export plate as 3MF..."
  2942. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:323
  2943. msgid "Export current plate as 3MF"
  2944. msgstr "Export current plate as 3MF"
  2945. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:336
  2946. msgid "Select &Plater Tab\tCtrl+1"
  2947. msgstr "Select &Plater Tab\tCtrl+1"
  2948. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:336
  2949. msgid "Show the plater"
  2950. msgstr "Show the plater"
  2951. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:342
  2952. msgid "Select &Controller Tab\tCtrl+T"
  2953. msgstr "Select &Controller Tab\tCtrl+T"
  2954. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:342
  2955. msgid "Show the printer controller"
  2956. msgstr "Show the printer controller"
  2957. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:350
  2958. msgid "Select P&rint Settings Tab\tCtrl+2"
  2959. msgstr "Select P&rint Settings Tab\tCtrl+2"
  2960. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:350
  2961. msgid "Show the print settings"
  2962. msgstr "Show the print settings"
  2963. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:353
  2964. msgid "Select &Filament Settings Tab\tCtrl+3"
  2965. msgstr "Select &Filament Settings Tab\tCtrl+3"
  2966. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:353
  2967. msgid "Show the filament settings"
  2968. msgstr "Show the filament settings"
  2969. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:356
  2970. msgid "Select Print&er Settings Tab\tCtrl+4"
  2971. msgstr "Select Print&er Settings Tab\tCtrl+4"
  2972. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:356
  2973. msgid "Show the printer settings"
  2974. msgstr "Show the printer settings"
  2975. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:368
  2976. msgid "Iso"
  2977. msgstr "Iso"
  2978. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:368
  2979. msgid "Iso View"
  2980. msgstr "Iso View"
  2981. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:369
  2982. msgid "Top View"
  2983. msgstr "Top View"
  2984. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:370
  2985. msgid "Bottom View"
  2986. msgstr "Bottom View"
  2987. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:371
  2988. msgid "Front"
  2989. msgstr "Front"
  2990. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:371
  2991. msgid "Front View"
  2992. msgstr "Front View"
  2993. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
  2994. msgid "Rear"
  2995. msgstr "Rear"
  2996. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
  2997. msgid "Rear View"
  2998. msgstr "Rear View"
  2999. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:373
  3000. msgid "Left"
  3001. msgstr "Left"
  3002. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:373
  3003. msgid "Left View"
  3004. msgstr "Left View"
  3005. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:374
  3006. msgid "Right"
  3007. msgstr "Right"
  3008. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:374
  3009. msgid "Right View"
  3010. msgstr "Right View"
  3011. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:380
  3012. msgid "&Configuration "
  3013. msgstr "&Configuration "
  3014. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:380
  3015. msgid "Run Configuration "
  3016. msgstr "Run Configuration "
  3017. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
  3018. msgid "Prusa 3D Drivers"
  3019. msgstr "Prusa 3D Drivers"
  3020. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
  3021. msgid "Open the Prusa3D drivers download page in your browser"
  3022. msgstr "Open the Prusa3D drivers download page in your browser"
  3023. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:388
  3024. msgid "Slic3r++ Releases"
  3025. msgstr "Slic3r++ Releases"
  3026. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:388
  3027. msgid "Open the Slic3r++ releases page in your browser"
  3028. msgstr "Open the Slic3r++ releases page in your browser"
  3029. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:395
  3030. msgid "Slic3r &Website"
  3031. msgstr "Slic3r &Website"
  3032. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:395
  3033. msgid "Open the Slic3r website in your browser"
  3034. msgstr "Open the Slic3r website in your browser"
  3035. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:398
  3036. msgid "Slic3r &Manual"
  3037. msgstr "Slic3r &Manual"
  3038. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:398
  3039. msgid "Open the Slic3r manual in your browser"
  3040. msgstr "Open the Slic3r manual in your browser"
  3041. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:402
  3042. msgid "System Info"
  3043. msgstr "System Info"
  3044. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:402
  3045. msgid "Show system information"
  3046. msgstr "Show system information"
  3047. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:405
  3048. msgid "Report an Issue"
  3049. msgstr "Report an Issue"
  3050. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:405
  3051. msgid "Report an issue on the Slic3r Slic3r++"
  3052. msgstr "Report an issue on the Slic3r Slic3r++"
  3053. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
  3054. msgid "&About Slic3r"
  3055. msgstr "&About Slic3r"
  3056. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
  3057. msgid "Show about dialog"
  3058. msgstr "Show about dialog"
  3059. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:418
  3060. msgid "&File"
  3061. msgstr "&File"
  3062. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:419
  3063. msgid "&Plater"
  3064. msgstr "&Plater"
  3065. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:420
  3066. msgid "&Object"
  3067. msgstr "&Object"
  3068. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:421
  3069. msgid "&Window"
  3070. msgstr "&Window"
  3071. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:422
  3072. msgid "&View"
  3073. msgstr "&View"
  3074. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:426
  3075. msgid "&Help"
  3076. msgstr "&Help"
  3077. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:457
  3078. msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
  3079. msgstr "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
  3080. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:469
  3081. msgid "No previously sliced file."
  3082. msgstr "No previously sliced file."
  3083. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:474
  3084. msgid "Previously sliced file ("
  3085. msgstr "Previously sliced file ("
  3086. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:474
  3087. msgid ") not found."
  3088. msgstr ") not found."
  3089. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:475
  3090. msgid "File Not Found"
  3091. msgstr "File Not Found"
  3092. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
  3093. msgid "SVG"
  3094. msgstr "SVG"
  3095. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
  3096. msgid "G-code"
  3097. msgstr "G-code"
  3098. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
  3099. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1645
  3100. msgid " file as:"
  3101. msgstr " file as:"
  3102. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:528
  3103. msgid "Slicing…"
  3104. msgstr "Slicing…"
  3105. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:528
  3106. msgid "Processing "
  3107. msgstr "Processing "
  3108. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:548
  3109. msgid " was successfully sliced."
  3110. msgstr " was successfully sliced."
  3111. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:550
  3112. msgid "Slicing Done!"
  3113. msgstr "Slicing Done!"
  3114. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:566
  3115. msgid "Select the STL file to repair:"
  3116. msgstr "Select the STL file to repair:"
  3117. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
  3118. msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
  3119. msgstr "Save OBJ file (less prone to coordinate errors than STL) as:"
  3120. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:594
  3121. msgid "Your file was repaired."
  3122. msgstr "Your file was repaired."
  3123. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:594
  3124. msgid "Repair"
  3125. msgstr "Repair"
  3126. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:605
  3127. msgid "Save configuration as:"
  3128. msgstr "Save configuration as:"
  3129. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:623
  3130. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:667
  3131. msgid "Select configuration to load:"
  3132. msgstr "Select configuration to load:"
  3133. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:646
  3134. msgid "Save presets bundle as:"
  3135. msgstr "Save presets bundle as:"
  3136. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:687
  3137. #, perl-format
  3138. msgid "%d presets successfully imported."
  3139. msgstr "%d presets successfully imported."
  3140. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:749
  3141. msgid "You have unsaved changes "
  3142. msgstr "You have unsaved changes "
  3143. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:749
  3144. msgid ". Discard changes and continue anyway?"
  3145. msgstr ". Discard changes and continue anyway?"
  3146. #: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:750
  3147. msgid "Unsaved Presets"
  3148. msgstr "Unsaved Presets"
  3149. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:104
  3150. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2124
  3151. msgid "3D"
  3152. msgstr "3D"
  3153. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:138
  3154. msgid "2D"
  3155. msgstr "2D"
  3156. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:157
  3157. msgid "Layers"
  3158. msgstr "Layers"
  3159. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:177
  3160. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:195
  3161. msgid "Add…"
  3162. msgstr "Add…"
  3163. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:179
  3164. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:197
  3165. msgid "Delete All"
  3166. msgstr "Delete All"
  3167. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:180
  3168. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:198
  3169. msgid "Arrange"
  3170. msgstr "Arrange"
  3171. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:182
  3172. msgid "More"
  3173. msgstr "More"
  3174. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:183
  3175. msgid "Fewer"
  3176. msgstr "Fewer"
  3177. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:185
  3178. msgid "45° ccw"
  3179. msgstr "45° ccw"
  3180. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:186
  3181. msgid "45° cw"
  3182. msgstr "45° cw"
  3183. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:187
  3184. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:203
  3185. msgid "Scale…"
  3186. msgstr "Scale…"
  3187. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:188
  3188. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:204
  3189. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2099
  3190. msgid "Split"
  3191. msgstr "Split"
  3192. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:189
  3193. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:205
  3194. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
  3195. msgid "Cut…"
  3196. msgstr "Cut…"
  3197. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:191
  3198. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:206
  3199. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2106
  3200. msgid "Settings…"
  3201. msgstr "Settings…"
  3202. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:192
  3203. msgid "Layer Editing"
  3204. msgstr "Layer Editing"
  3205. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:207
  3206. msgid "Layer editing"
  3207. msgstr "Layer editing"
  3208. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:220
  3209. msgid "Name"
  3210. msgstr "Name"
  3211. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:221
  3212. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:900
  3213. msgid "Copies"
  3214. msgstr "Copies"
  3215. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:222
  3216. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
  3217. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
  3218. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2068
  3219. msgid "Scale"
  3220. msgstr "Scale"
  3221. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:236
  3222. msgid "Export G-code…"
  3223. msgstr "Export G-code…"
  3224. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:237
  3225. msgid "Slice now"
  3226. msgstr "Slice now"
  3227. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:238
  3228. msgid "Print…"
  3229. msgstr "Print…"
  3230. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:239
  3231. msgid "Send to printer"
  3232. msgstr "Send to printer"
  3233. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:240
  3234. msgid "Export STL…"
  3235. msgstr "Export STL…"
  3236. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:367
  3237. msgid "Print settings"
  3238. msgstr "Print settings"
  3239. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:369
  3240. msgid "Printer"
  3241. msgstr "Printer"
  3242. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:398
  3243. msgid "Info"
  3244. msgstr "Info"
  3245. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:409
  3246. msgid "Volume"
  3247. msgstr "Volume"
  3248. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:410
  3249. msgid "Facets"
  3250. msgstr "Facets"
  3251. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:411
  3252. msgid "Materials"
  3253. msgstr "Materials"
  3254. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:412
  3255. msgid "Manifold"
  3256. msgstr "Manifold"
  3257. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:438
  3258. msgid "Sliced Info"
  3259. msgstr "Sliced Info"
  3260. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:447
  3261. msgid "Used Filament (m)"
  3262. msgstr "Used Filament (m)"
  3263. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:448
  3264. msgid "Used Filament (mm³)"
  3265. msgstr "Used Filament (mm³)"
  3266. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:449
  3267. msgid "Used Filament (g)"
  3268. msgstr "Used Filament (g)"
  3269. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:451
  3270. msgid "Estimated printing time"
  3271. msgstr "Estimated printing time"
  3272. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:629
  3273. msgid "Loading…"
  3274. msgstr "Loading…"
  3275. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:629
  3276. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:643
  3277. msgid "Processing input file\n"
  3278. msgstr "Processing input file\n"
  3279. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:663
  3280. msgid ""
  3281. "This file contains several objects positioned at multiple heights. Instead "
  3282. "of considering them as multiple objects, should I consider\n"
  3283. "this file as a single object having multiple parts?\n"
  3284. msgstr ""
  3285. "This file contains several objects positioned at multiple heights. Instead "
  3286. "of considering them as multiple objects, should I consider\n"
  3287. "this file as a single object having multiple parts?\n"
  3288. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:666
  3289. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:683
  3290. msgid "Multi-part object detected"
  3291. msgstr "Multi-part object detected"
  3292. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:680
  3293. msgid ""
  3294. "Multiple objects were loaded for a multi-material printer.\n"
  3295. "Instead of considering them as multiple objects, should I consider\n"
  3296. "these files to represent a single object having multiple parts?\n"
  3297. msgstr ""
  3298. "Multiple objects were loaded for a multi-material printer.\n"
  3299. "Instead of considering them as multiple objects, should I consider\n"
  3300. "these files to represent a single object having multiple parts?\n"
  3301. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:692
  3302. msgid "Loaded "
  3303. msgstr "Loaded "
  3304. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:744
  3305. msgid ""
  3306. "Your object appears to be too large, so it was automatically scaled down to "
  3307. "fit your print bed."
  3308. msgstr ""
  3309. "Your object appears to be too large, so it was automatically scaled down to "
  3310. "fit your print bed."
  3311. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:745
  3312. msgid "Object too large?"
  3313. msgstr "Object too large?"
  3314. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:900
  3315. msgid "Enter the number of copies of the selected object:"
  3316. msgstr "Enter the number of copies of the selected object:"
  3317. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:927
  3318. msgid ""
  3319. "\n"
  3320. "Non-positive value."
  3321. msgstr ""
  3322. "\n"
  3323. "Non-positive value."
  3324. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:928
  3325. msgid ""
  3326. "\n"
  3327. "Not a numeric value."
  3328. msgstr ""
  3329. "\n"
  3330. "Not a numeric value."
  3331. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:929
  3332. msgid "Slic3r Error"
  3333. msgstr "Slic3r Error"
  3334. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
  3335. msgid "Enter the rotation angle:"
  3336. msgstr "Enter the rotation angle:"
  3337. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
  3338. msgid "Rotate around "
  3339. msgstr "Rotate around "
  3340. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
  3341. msgid "Invalid rotation angle entered"
  3342. msgstr "Invalid rotation angle entered"
  3343. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1030
  3344. #, perl-format
  3345. msgid "Enter the new size for the selected object (print bed: %smm):"
  3346. msgstr "Enter the new size for the selected object (print bed: %smm):"
  3347. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
  3348. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
  3349. msgid "Scale along "
  3350. msgstr "Scale along "
  3351. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
  3352. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
  3353. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
  3354. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
  3355. msgid "Invalid scaling value entered"
  3356. msgstr "Invalid scaling value entered"
  3357. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
  3358. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
  3359. #, no-perl-format
  3360. msgid "Enter the scale % for the selected object:"
  3361. msgstr "Enter the scale % for the selected object:"
  3362. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
  3363. msgid "Enter the new max size for the selected object:"
  3364. msgstr "Enter the new max size for the selected object:"
  3365. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1112
  3366. msgid ""
  3367. "The selected object can't be split because it contains more than one volume/"
  3368. "material."
  3369. msgstr ""
  3370. "The selected object can't be split because it contains more than one volume/"
  3371. "material."
  3372. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1121
  3373. msgid ""
  3374. "The selected object couldn't be split because it contains only one part."
  3375. msgstr ""
  3376. "The selected object couldn't be split because it contains only one part."
  3377. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1286
  3378. msgid "Slicing cancelled"
  3379. msgstr "Slicing cancelled"
  3380. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1300
  3381. msgid "Another export job is currently running."
  3382. msgstr "Another export job is currently running."
  3383. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1445
  3384. msgid "File added to print queue"
  3385. msgstr "File added to print queue"
  3386. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1448
  3387. msgid "Sending G-code file to the OctoPrint server..."
  3388. msgstr "Sending G-code file to the OctoPrint server..."
  3389. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1451
  3390. msgid "G-code file exported to "
  3391. msgstr "G-code file exported to "
  3392. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1454
  3393. msgid "Export failed"
  3394. msgstr "Export failed"
  3395. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1524
  3396. msgid "G-code file successfully uploaded to the OctoPrint server"
  3397. msgstr "G-code file successfully uploaded to the OctoPrint server"
  3398. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1526
  3399. msgid "Error while uploading to the OctoPrint server: "
  3400. msgstr "Error while uploading to the OctoPrint server: "
  3401. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
  3402. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
  3403. msgid "STL file exported to "
  3404. msgstr "STL file exported to "
  3405. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1592
  3406. msgid "AMF file exported to "
  3407. msgstr "AMF file exported to "
  3408. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1596
  3409. msgid "Error exporting AMF file "
  3410. msgstr "Error exporting AMF file "
  3411. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1608
  3412. msgid "3MF file exported to "
  3413. msgstr "3MF file exported to "
  3414. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1612
  3415. msgid "Error exporting 3MF file "
  3416. msgstr "Error exporting 3MF file "
  3417. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1958
  3418. #, perl-format
  3419. msgid "%d (%d shells)"
  3420. msgstr "%d (%d shells)"
  3421. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1960
  3422. #, perl-format
  3423. msgid "Auto-repaired (%d errors)"
  3424. msgstr "Auto-repaired (%d errors)"
  3425. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1965
  3426. #, perl-format
  3427. msgid ""
  3428. "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
  3429. "facets reversed, %d backwards edges"
  3430. msgstr ""
  3431. "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
  3432. "facets reversed, %d backwards edges"
  3433. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1970
  3434. msgid "Yes"
  3435. msgstr "Yes"
  3436. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2021
  3437. msgid "Remove the selected object"
  3438. msgstr "Remove the selected object"
  3439. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2024
  3440. msgid "Increase copies"
  3441. msgstr "Increase copies"
  3442. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2024
  3443. msgid "Place one more copy of the selected object"
  3444. msgstr "Place one more copy of the selected object"
  3445. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2027
  3446. msgid "Decrease copies"
  3447. msgstr "Decrease copies"
  3448. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2027
  3449. msgid "Remove one copy of the selected object"
  3450. msgstr "Remove one copy of the selected object"
  3451. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2030
  3452. msgid "Set number of copies…"
  3453. msgstr "Set number of copies…"
  3454. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2030
  3455. msgid "Change the number of copies of the selected object"
  3456. msgstr "Change the number of copies of the selected object"
  3457. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
  3458. msgid "Rotate 45° clockwise"
  3459. msgstr "Rotate 45° clockwise"
  3460. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
  3461. msgid "Rotate the selected object by 45° clockwise"
  3462. msgstr "Rotate the selected object by 45° clockwise"
  3463. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2037
  3464. msgid "Rotate 45° counter-clockwise"
  3465. msgstr "Rotate 45° counter-clockwise"
  3466. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2037
  3467. msgid "Rotate the selected object by 45° counter-clockwise"
  3468. msgstr "Rotate the selected object by 45° counter-clockwise"
  3469. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2042
  3470. msgid "Rotate"
  3471. msgstr "Rotate"
  3472. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2042
  3473. msgid "Rotate the selected object by an arbitrary angle"
  3474. msgstr "Rotate the selected object by an arbitrary angle"
  3475. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
  3476. msgid "Around X axis…"
  3477. msgstr "Around X axis…"
  3478. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
  3479. msgid "Rotate the selected object by an arbitrary angle around X axis"
  3480. msgstr "Rotate the selected object by an arbitrary angle around X axis"
  3481. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2047
  3482. msgid "Around Y axis…"
  3483. msgstr "Around Y axis…"
  3484. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2047
  3485. msgid "Rotate the selected object by an arbitrary angle around Y axis"
  3486. msgstr "Rotate the selected object by an arbitrary angle around Y axis"
  3487. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2050
  3488. msgid "Around Z axis…"
  3489. msgstr "Around Z axis…"
  3490. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2050
  3491. msgid "Rotate the selected object by an arbitrary angle around Z axis"
  3492. msgstr "Rotate the selected object by an arbitrary angle around Z axis"
  3493. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2055
  3494. msgid "Mirror"
  3495. msgstr "Mirror"
  3496. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2055
  3497. msgid "Mirror the selected object"
  3498. msgstr "Mirror the selected object"
  3499. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2057
  3500. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2073
  3501. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2089
  3502. msgid "Along X axis…"
  3503. msgstr "Along X axis…"
  3504. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2057
  3505. msgid "Mirror the selected object along the X axis"
  3506. msgstr "Mirror the selected object along the X axis"
  3507. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2060
  3508. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2076
  3509. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2092
  3510. msgid "Along Y axis…"
  3511. msgstr "Along Y axis…"
  3512. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2060
  3513. msgid "Mirror the selected object along the Y axis"
  3514. msgstr "Mirror the selected object along the Y axis"
  3515. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2063
  3516. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2079
  3517. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2095
  3518. msgid "Along Z axis…"
  3519. msgstr "Along Z axis…"
  3520. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2063
  3521. msgid "Mirror the selected object along the Z axis"
  3522. msgstr "Mirror the selected object along the Z axis"
  3523. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2068
  3524. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2084
  3525. msgid "Scale the selected object along a single axis"
  3526. msgstr "Scale the selected object along a single axis"
  3527. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2070
  3528. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2086
  3529. msgid "Uniformly…"
  3530. msgstr "Uniformly…"
  3531. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2070
  3532. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2086
  3533. msgid "Scale the selected object along the XYZ axes"
  3534. msgstr "Scale the selected object along the XYZ axes"
  3535. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2073
  3536. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2089
  3537. msgid "Scale the selected object along the X axis"
  3538. msgstr "Scale the selected object along the X axis"
  3539. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2076
  3540. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2092
  3541. msgid "Scale the selected object along the Y axis"
  3542. msgstr "Scale the selected object along the Y axis"
  3543. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2079
  3544. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2095
  3545. msgid "Scale the selected object along the Z axis"
  3546. msgstr "Scale the selected object along the Z axis"
  3547. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2084
  3548. msgid "Scale to size"
  3549. msgstr "Scale to size"
  3550. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2099
  3551. msgid "Split the selected object into individual parts"
  3552. msgstr "Split the selected object into individual parts"
  3553. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
  3554. msgid "Open the 3D cutting tool"
  3555. msgstr "Open the 3D cutting tool"
  3556. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2106
  3557. msgid "Open the object editor dialog"
  3558. msgstr "Open the object editor dialog"
  3559. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2110
  3560. msgid "Reload from Disk"
  3561. msgstr "Reload from Disk"
  3562. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2110
  3563. msgid "Reload the selected file from Disk"
  3564. msgstr "Reload the selected file from Disk"
  3565. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2113
  3566. msgid "Export object as STL…"
  3567. msgstr "Export object as STL…"
  3568. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2113
  3569. msgid "Export this single object as STL file"
  3570. msgstr "Export this single object as STL file"
  3571. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\2D.pm:131
  3572. msgid "What do you want to print today? ™"
  3573. msgstr "What do you want to print today? ™"
  3574. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\2D.pm:132
  3575. msgid "Drag your objects here"
  3576. msgstr "Drag your objects here"
  3577. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:63
  3578. msgid "1 Layer"
  3579. msgstr "1 Layer"
  3580. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:65
  3581. msgid "View"
  3582. msgstr "View"
  3583. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:75
  3584. msgid "Show"
  3585. msgstr "Show"
  3586. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:78
  3587. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:79
  3588. msgid "Feature types"
  3589. msgstr "Feature types"
  3590. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:96
  3591. msgid "Retractions"
  3592. msgstr "Retractions"
  3593. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:97
  3594. msgid "Unretractions"
  3595. msgstr "Unretractions"
  3596. #: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:98
  3597. msgid "Shells"
  3598. msgstr "Shells"