123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362 |
- # Cura JSON setting files
- # Copyright (C) 2017 Ultimaker
- # This file is distributed under the same license as the Cura package.
- # Ruben Dulek <r.dulek@ultimaker.com>, 2017.
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: Cura 2.6\n"
- "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
- "POT-Creation-Date: 2017-05-30 15:32+0000\n"
- "PO-Revision-Date: 2017-06-23 16:16+0900\n"
- "Last-Translator: None\n"
- "Language-Team: None\n"
- "Language: ko\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=1; plural=0;\n"
- "X-Generator: Poedit 2.0.2\n"
- #: fdmprinter.def.json
- msgctxt "machine_settings label"
- msgid "Machine"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_settings description"
- msgid "Machine specific settings"
- msgstr "기계 별 설정 "
- #: fdmprinter.def.json
- msgctxt "machine_name label"
- msgid "Machine Type"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_name description"
- msgid "The name of your 3D printer model."
- msgstr "3D 프린터 모델의 이름입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_show_variants label"
- msgid "Show machine variants"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_show_variants description"
- msgid "Whether to show the different variants of this machine, which are described in separate json files."
- msgstr "별도의 json 파일에 설명 된이 기계의 다양한 변형을 표시할지 여부 "
- #: fdmprinter.def.json
- msgctxt "machine_start_gcode label"
- msgid "Start GCode"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_start_gcode description"
- msgid ""
- "Gcode commands to be executed at the very start - separated by \n"
- "."
- msgstr "G 시작과 동시에 실행될 코드 명령어 "
- #: fdmprinter.def.json
- msgctxt "machine_end_gcode label"
- msgid "End GCode"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_end_gcode description"
- msgid ""
- "Gcode commands to be executed at the very end - separated by \n"
- "."
- msgstr "G 맨 마지막에 실행될 코드 명령 "
- #: fdmprinter.def.json
- msgctxt "material_guid label"
- msgid "Material GUID"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_guid description"
- msgid "GUID of the material. This is set automatically. "
- msgstr "재료의 GUID. 자동으로 설정됩니다. "
- #: fdmprinter.def.json
- msgctxt "material_bed_temp_wait label"
- msgid "Wait for build plate heatup"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_bed_temp_wait description"
- msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
- msgstr "시작 시, 빌드 플레이트 온도에 도달 할 때까지 대기하라는 명령을 삽입할지 여부 "
- #: fdmprinter.def.json
- msgctxt "material_print_temp_wait label"
- msgid "Wait for nozzle heatup"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_print_temp_wait description"
- msgid "Whether to wait until the nozzle temperature is reached at the start."
- msgstr "시작 시, 노즐 온도에 도달 할 때까지 대기할지 여부 "
- #: fdmprinter.def.json
- msgctxt "material_print_temp_prepend label"
- msgid "Include material temperatures"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_print_temp_prepend description"
- msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
- msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura 프론트 엔드는이 설정을 자동으로 비활성화합니다. "
- #: fdmprinter.def.json
- msgctxt "material_bed_temp_prepend label"
- msgid "Include build plate temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_bed_temp_prepend description"
- msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
- msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura 프론트는이 설정을 자동으로 비활성화합니다. "
- #: fdmprinter.def.json
- msgctxt "machine_width label"
- msgid "Machine width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_width description"
- msgid "The width (X-direction) of the printable area."
- msgstr "인쇄 가능 영역의 폭 (X 방향) "
- #: fdmprinter.def.json
- msgctxt "machine_depth label"
- msgid "Machine depth"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_depth description"
- msgid "The depth (Y-direction) of the printable area."
- msgstr "인쇄 가능 영역의 깊이 (Y 방향) "
- #: fdmprinter.def.json
- msgctxt "machine_shape label"
- msgid "Build plate shape"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_shape description"
- msgid "The shape of the build plate without taking unprintable areas into account."
- msgstr "인쇄 할 수없는 영역을 고려하지 않고 빌드 플레이트의 모양 "
- #: fdmprinter.def.json
- msgctxt "machine_shape option rectangular"
- msgid "Rectangular"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_shape option elliptic"
- msgid "Elliptic"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_height label"
- msgid "Machine height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_height description"
- msgid "The height (Z-direction) of the printable area."
- msgstr "인쇄 가능 영역의 높이 (Z 방향)입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_heated_bed label"
- msgid "Has heated build plate"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_heated_bed description"
- msgid "Whether the machine has a heated build plate present."
- msgstr "기계에 가열 된 빌드 플레이트가 있는지 여부 "
- #: fdmprinter.def.json
- msgctxt "machine_center_is_zero label"
- msgid "Is center origin"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_center_is_zero description"
- msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
- msgstr "프린터의 \"0\" 위치의 X / Y 좌표가 인쇄 가능 영역의 중앙에 있는지 여부 "
- #: fdmprinter.def.json
- msgctxt "machine_extruder_count label"
- msgid "Number of Extruders"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_extruder_count description"
- msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
- msgstr "압출기 열차의 수. 압출기 트레인은 피더, 보우 덴 튜브 및 노즐의 조합입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_tip_outer_diameter label"
- msgid "Outer nozzle diameter"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_tip_outer_diameter description"
- msgid "The outer diameter of the tip of the nozzle."
- msgstr "노즐 끝의 외경 "
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_head_distance label"
- msgid "Nozzle length"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_head_distance description"
- msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
- msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_expansion_angle label"
- msgid "Nozzle angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_expansion_angle description"
- msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
- msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_heat_zone_length label"
- msgid "Heat zone length"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_heat_zone_length description"
- msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
- msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리 "
- #: fdmprinter.def.json
- msgctxt "machine_filament_park_distance label"
- msgid "Filament Park Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_filament_park_distance description"
- msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
- msgstr "압출기가 더 이상 사용되지 않을 때 필라멘트를 파킹 할 노즐의 끝에서부터의 거리 "
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_temp_enabled label"
- msgid "Enable Nozzle Temperature Control"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_temp_enabled description"
- msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
- msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면이 기능을 끄십시오 "
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_heat_up_speed label"
- msgid "Heat up speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_heat_up_speed description"
- msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
- msgstr "노즐이 가열되는 속도 (° C / s)는 일반적인 인쇄 온도와 대기 온도의 창에서 평균을냅니다. "
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_cool_down_speed label"
- msgid "Cool down speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_cool_down_speed description"
- msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
- msgstr "노즐이 냉각되는 속도 (° C / s)는 일반적인 인쇄 온도 및 대기 온도의 창에서 평균화됩니다. "
- #: fdmprinter.def.json
- msgctxt "machine_min_cool_heat_time_window label"
- msgid "Minimal Time Standby Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_min_cool_heat_time_window description"
- msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
- msgstr "노즐이 냉각되기 전에 압출기가 비활성이어야하는 최소 시간. 이 시간보다 오래 압출기를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor label"
- msgid "Gcode flavour"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor description"
- msgid "The type of gcode to be generated."
- msgstr "생성 될 gcode 유형입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
- msgid "RepRap (Marlin/Sprinter)"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
- msgid "RepRap (Volumetric)"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option UltiGCode"
- msgid "Ultimaker 2"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option Griffin"
- msgid "Griffin"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option Makerbot"
- msgid "Makerbot"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option BFB"
- msgid "Bits from Bytes"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option MACH3"
- msgid "Mach3"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_gcode_flavor option Repetier"
- msgid "Repetier"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_disallowed_areas label"
- msgid "Disallowed areas"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_disallowed_areas description"
- msgid "A list of polygons with areas the print head is not allowed to enter."
- msgstr "인쇄 헤드가있는 영역이있는 다각형 목록입니다. "
- #: fdmprinter.def.json
- msgctxt "nozzle_disallowed_areas label"
- msgid "Nozzle Disallowed Areas"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "nozzle_disallowed_areas description"
- msgid "A list of polygons with areas the nozzle is not allowed to enter."
- msgstr "노즐이 들어갈 수없는 영역이있는 다각형 목록입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_head_polygon label"
- msgid "Machine head polygon"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_head_polygon description"
- msgid "A 2D silhouette of the print head (fan caps excluded)."
- msgstr "프린트 헤드의 2D 실루엣 (팬 캡 제외). "
- #: fdmprinter.def.json
- msgctxt "machine_head_with_fans_polygon label"
- msgid "Machine head & Fan polygon"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_head_with_fans_polygon description"
- msgid "A 2D silhouette of the print head (fan caps included)."
- msgstr "프린트 헤드의 2D 실루엣 (팬 뚜껑 포함). "
- #: fdmprinter.def.json
- msgctxt "gantry_height label"
- msgid "Gantry height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "gantry_height description"
- msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
- msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축). "
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_size label"
- msgid "Nozzle Diameter"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_nozzle_size description"
- msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
- msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때이 설정을 변경하십시오. "
- #: fdmprinter.def.json
- msgctxt "machine_use_extruder_offset_to_offset_coords label"
- msgid "Offset With Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_use_extruder_offset_to_offset_coords description"
- msgid "Apply the extruder offset to the coordinate system."
- msgstr "압출기 오프셋을 좌표계에 적용하십시오. "
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_z label"
- msgid "Extruder Prime Z Position"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_z description"
- msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
- msgstr "인쇄가 시작될 때 노즐이 끝나는 위치의 Z 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_abs label"
- msgid "Absolute Extruder Prime Position"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_abs description"
- msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
- msgstr "헤드의 마지막으로 알려진 위치에 상대적이 아닌 압출기의 주요 위치를 절대 위치로 만듭니다. "
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_x label"
- msgid "Maximum Speed X"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_x description"
- msgid "The maximum speed for the motor of the X-direction."
- msgstr "X 방향의 모터 최대 속도입니다."
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_y label"
- msgid "Maximum Speed Y"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_y description"
- msgid "The maximum speed for the motor of the Y-direction."
- msgstr "Y 방향 모터의 최대 속도입니다."
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_z label"
- msgid "Maximum Speed Z"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_z description"
- msgid "The maximum speed for the motor of the Z-direction."
- msgstr "Z 방향의 모터 최대 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_e label"
- msgid "Maximum Feedrate"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_feedrate_e description"
- msgid "The maximum speed of the filament."
- msgstr "필라멘트의 최대 속도. "
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_x label"
- msgid "Maximum Acceleration X"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_x description"
- msgid "Maximum acceleration for the motor of the X-direction"
- msgstr "X 방향 모터의 최대 가속도. "
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_y label"
- msgid "Maximum Acceleration Y"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_y description"
- msgid "Maximum acceleration for the motor of the Y-direction."
- msgstr "Y 방향 모터의 최대 가속도. "
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_z label"
- msgid "Maximum Acceleration Z"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_z description"
- msgid "Maximum acceleration for the motor of the Z-direction."
- msgstr "Z 방향 모터의 최대 가속도. "
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_e label"
- msgid "Maximum Filament Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_acceleration_e description"
- msgid "Maximum acceleration for the motor of the filament."
- msgstr "필라멘트의 모터에 대한 최대 가속도. "
- #: fdmprinter.def.json
- msgctxt "machine_acceleration label"
- msgid "Default Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_acceleration description"
- msgid "The default acceleration of print head movement."
- msgstr "프린트 헤드 이동의 기본 가속. "
- #: fdmprinter.def.json
- msgctxt "machine_max_jerk_xy label"
- msgid "Default X-Y Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_jerk_xy description"
- msgid "Default jerk for movement in the horizontal plane."
- msgstr "수평면에서의 이동을위한 기본 저크. "
- #: fdmprinter.def.json
- msgctxt "machine_max_jerk_z label"
- msgid "Default Z Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_jerk_z description"
- msgid "Default jerk for the motor of the Z-direction."
- msgstr "Z 방향 모터의 기본 저크. "
- #: fdmprinter.def.json
- msgctxt "machine_max_jerk_e label"
- msgid "Default Filament Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_max_jerk_e description"
- msgid "Default jerk for the motor of the filament."
- msgstr "필라멘트 모터의 기본 저크. "
- #: fdmprinter.def.json
- msgctxt "machine_minimum_feedrate label"
- msgid "Minimum Feedrate"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "machine_minimum_feedrate description"
- msgid "The minimal movement speed of the print head."
- msgstr "프린트 헤드의 최소 이동 속도. "
- #: fdmprinter.def.json
- msgctxt "resolution label"
- msgid "Quality"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "resolution description"
- msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
- msgstr "인쇄물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 인쇄 시간)에 큰 영향을 미칩니다. "
- #: fdmprinter.def.json
- msgctxt "layer_height label"
- msgid "Layer Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "layer_height description"
- msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
- msgstr "각 층의 높이 (mm)입니다. 값이 높을수록 해상도가 낮을수록 인쇄 속도가 빨라지고 값이 낮을수록 해상도가 높을수록 인쇄 속도가 느려집니다. "
- #: fdmprinter.def.json
- msgctxt "layer_height_0 label"
- msgid "Initial Layer Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "layer_height_0 description"
- msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
- msgstr "초기 레이어의 높이 (mm)입니다. 두꺼운 초기 레이어는 빌드 플레이트에 쉽게 접착합니다. "
- #: fdmprinter.def.json
- msgctxt "line_width label"
- msgid "Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "line_width description"
- msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
- msgstr "한 줄의 너비. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나이 값을 약간 줄이면 더 좋은 인 쇄를 생성 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "wall_line_width label"
- msgid "Wall Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wall_line_width description"
- msgid "Width of a single wall line."
- msgstr "단일 벽 선의 너비입니다. "
- #: fdmprinter.def.json
- msgctxt "wall_line_width_0 label"
- msgid "Outer Wall Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wall_line_width_0 description"
- msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
- msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 인쇄 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "wall_line_width_x label"
- msgid "Inner Wall(s) Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wall_line_width_x description"
- msgid "Width of a single wall line for all wall lines except the outermost one."
- msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다. "
- #: fdmprinter.def.json
- msgctxt "skin_line_width label"
- msgid "Top/Bottom Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_line_width description"
- msgid "Width of a single top/bottom line."
- msgstr "단일 위쪽 / 아래쪽 선의 너비입니다. "
- #: fdmprinter.def.json
- msgctxt "infill_line_width label"
- msgid "Infill Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_line_width description"
- msgid "Width of a single infill line."
- msgstr "단일 infill 라인의 너비. "
- #: fdmprinter.def.json
- msgctxt "skirt_brim_line_width label"
- msgid "Skirt/Brim Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skirt_brim_line_width description"
- msgid "Width of a single skirt or brim line."
- msgstr "단일 스커트 또는 고리 선의 너비. "
- #: fdmprinter.def.json
- msgctxt "support_line_width label"
- msgid "Support Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_line_width description"
- msgid "Width of a single support structure line."
- msgstr "단일 지원 구조 선의 너비입니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_line_width label"
- msgid "Support Interface Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_line_width description"
- msgid "Width of a single line of support roof or floor."
- msgstr "지붕 또는 바닥을지지하는 한 줄의 폭. "
- #: fdmprinter.def.json
- msgctxt "support_roof_line_width label"
- msgid "Support Roof Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_line_width description"
- msgid "Width of a single support roof line."
- msgstr "단일 지원 지붕 선의 너비. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_line_width label"
- msgid "Support Floor Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_line_width description"
- msgid "Width of a single support floor line."
- msgstr "단일 지원 플로어 라인의 너비. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_line_width label"
- msgid "Prime Tower Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_line_width description"
- msgid "Width of a single prime tower line."
- msgstr "단일 주요 타워 선의 너비. "
- #: fdmprinter.def.json
- msgctxt "shell label"
- msgid "Shell"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "shell description"
- msgid "Shell"
- msgstr "껍질 "
- #: fdmprinter.def.json
- msgctxt "wall_thickness label"
- msgid "Wall Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wall_thickness description"
- msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
- msgstr "외벽의 수평 방향의 두께. 이 값을 벽 선 너비로 나눈 값은 벽의 수를 정의합니다. "
- #: fdmprinter.def.json
- msgctxt "wall_line_count label"
- msgid "Wall Line Count"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wall_line_count description"
- msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
- msgstr "벽의 수. 벽 두께로 계산할 때이 값은 정수로 반올림됩니다. "
- #: fdmprinter.def.json
- msgctxt "wall_0_wipe_dist label"
- msgid "Outer Wall Wipe Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wall_0_wipe_dist description"
- msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
- msgstr "바깥 쪽 벽 뒤에 삽입 된 이동 거리. Z 솔기를 더 잘 숨 깁니다. "
- #: fdmprinter.def.json
- msgctxt "top_bottom_thickness label"
- msgid "Top/Bottom Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_thickness description"
- msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
- msgstr "인쇄물의 상단 / 하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽 / 아래쪽 레이어의 수를 정의합니다. "
- #: fdmprinter.def.json
- msgctxt "top_thickness label"
- msgid "Top Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_thickness description"
- msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
- msgstr "인쇄물의 상단 레이어의 두께입니다. 이 값을 레이어 높이로 나눈 값은 최상위 레이어 수를 정의합니다. "
- #: fdmprinter.def.json
- msgctxt "top_layers label"
- msgid "Top Layers"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_layers description"
- msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
- msgstr "인쇄물의 상단 레이어의 두께입니다. 이 값과 레이어 값을 최상위 레이어로 정의하십시오. "
- #: fdmprinter.def.json
- msgctxt "bottom_thickness label"
- msgid "Bottom Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "bottom_thickness description"
- msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
- msgstr "인쇄물의 아래쪽 레이어의 두께입니다. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수를 정의합니다. "
- #: fdmprinter.def.json
- msgctxt "bottom_layers label"
- msgid "Bottom Layers"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "bottom_layers description"
- msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
- msgstr "아래층의 수. 바닥 두께로 계산할 때이 값은 정수로 반올림됩니다. "
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern label"
- msgid "Top/Bottom Pattern"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern description"
- msgid "The pattern of the top/bottom layers."
- msgstr "상단 / 하단 레이어의 패턴. "
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern option lines"
- msgid "Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern option concentric"
- msgid "Concentric"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern option zigzag"
- msgid "Zig Zag"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern_0 label"
- msgid "Bottom Pattern Initial Layer"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern_0 description"
- msgid "The pattern on the bottom of the print on the first layer."
- msgstr "첫 번째 레이어의 인쇄 아래쪽에있는 패턴입니다. "
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern_0 option lines"
- msgid "Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern_0 option concentric"
- msgid "Concentric"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "top_bottom_pattern_0 option zigzag"
- msgid "Zig Zag"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_angles label"
- msgid "Top/Bottom Line Directions"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_angles description"
- msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
- msgstr "상단 / 하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 목록입니다. 목록의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 목록의 끝에 도달하면 처음부터 다시 시작됩니다. 목록 항목은 쉼표로 구분되며 전체 목록은 대괄호 안에 들어 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 목록입니다. "
- #: fdmprinter.def.json
- msgctxt "wall_0_inset label"
- msgid "Outer Wall Inset"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wall_0_inset description"
- msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
- msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 인쇄 된 경우이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오. "
- #: fdmprinter.def.json
- msgctxt "outer_inset_first label"
- msgid "Outer Before Inner Walls"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "outer_inset_first description"
- msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
- msgstr "사용 가능한 경우 외부에서 내부로 벽을 인쇄합니다. 이것은 ABS와 같은 고점도 플라스틱을 사용할 때 X와 Y의 치수 정확도를 향상시키는 데 도움이됩니다. 그러나 외 표면 인쇄 품질을 떨어 뜨릴 수 있습니다 (특히 오버행시). "
- #: fdmprinter.def.json
- msgctxt "alternate_extra_perimeter label"
- msgid "Alternate Extra Wall"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "alternate_extra_perimeter description"
- msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
- msgstr "다른 모든 레이어에 여분의 벽을 인쇄합니다. 이렇게하면 충전물이이 여분의 벽 사이에 끼어 더 강하게 인쇄됩니다. "
- #: fdmprinter.def.json
- msgctxt "travel_compensate_overlapping_walls_enabled label"
- msgid "Compensate Wall Overlaps"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel_compensate_overlapping_walls_enabled description"
- msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
- msgstr "이미 벽이있는 곳에 인쇄중인 벽의 부분에 대한 흐름을 보정하십시오. "
- #: fdmprinter.def.json
- msgctxt "travel_compensate_overlapping_walls_0_enabled label"
- msgid "Compensate Outer Wall Overlaps"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel_compensate_overlapping_walls_0_enabled description"
- msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
- msgstr "이미 벽이있는 곳에 인쇄되는 외벽 부분에 대한 흐름을 보정합니다. "
- #: fdmprinter.def.json
- msgctxt "travel_compensate_overlapping_walls_x_enabled label"
- msgid "Compensate Inner Wall Overlaps"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel_compensate_overlapping_walls_x_enabled description"
- msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
- msgstr "이미 벽이있는 곳에 인쇄되는 내부 벽 부분에 대한 흐름을 보정하십시오. "
- #: fdmprinter.def.json
- msgctxt "fill_perimeter_gaps label"
- msgid "Fill Gaps Between Walls"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "fill_perimeter_gaps description"
- msgid "Fills the gaps between walls where no walls fit."
- msgstr "벽이 딱 맞지 않는 벽 사이의 간격을 채 웁니다. "
- #: fdmprinter.def.json
- msgctxt "fill_perimeter_gaps option nowhere"
- msgid "Nowhere"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "fill_perimeter_gaps option everywhere"
- msgid "Everywhere"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "xy_offset label"
- msgid "Horizontal Expansion"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "xy_offset description"
- msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
- msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 너무 큰 구멍을 보완 할 수 있습니다. 음수 값은 너무 작은 구멍을 보완 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "z_seam_type label"
- msgid "Z Seam Alignment"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "z_seam_type description"
- msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
- msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 인쇄물에 표시 될 수 있습니다. 사용자 지정 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로 시작시 부정확성은 눈에 띄지 않습니다. 최단 경로를 취할 때 인쇄가 빨라집니다. "
- #: fdmprinter.def.json
- msgctxt "z_seam_type option back"
- msgid "User Specified"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "z_seam_type option shortest"
- msgid "Shortest"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "z_seam_type option random"
- msgid "Random"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "z_seam_x label"
- msgid "Z Seam X"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "z_seam_x description"
- msgid "The X coordinate of the position near where to start printing each part in a layer."
- msgstr "레이어의 각 파트 인쇄를 시작할 위치 근처의 X 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "z_seam_y label"
- msgid "Z Seam Y"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "z_seam_y description"
- msgid "The Y coordinate of the position near where to start printing each part in a layer."
- msgstr "레이어의 각 부분을 인쇄 할 위치 근처의 위치에 대한 Y 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "skin_no_small_gaps_heuristic label"
- msgid "Ignore Small Z Gaps"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_no_small_gaps_heuristic description"
- msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
- msgstr "모델에 수직 간격이 작 으면이 좁은 공간에서 상단 및 하단 스킨을 생성하는 데 약 5 %의 추가 계산 시간을 소비 할 수 있습니다. 이 경우 설정을 해제하십시오. "
- #: fdmprinter.def.json
- msgctxt "infill label"
- msgid "Infill"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill description"
- msgid "Infill"
- msgstr "충진 "
- #: fdmprinter.def.json
- msgctxt "infill_sparse_density label"
- msgid "Infill Density"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_sparse_density description"
- msgid "Adjusts the density of infill of the print."
- msgstr "인쇄물의 충진율를 조절합니다."
- #: fdmprinter.def.json
- msgctxt "infill_line_distance label"
- msgid "Infill Line Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_line_distance description"
- msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
- msgstr "인쇄 된 충진 선 사이의 거리. 이 설정은 충전 밀도 및 충전 선 너비로 계산됩니다. "
- #: fdmprinter.def.json
- msgctxt "infill_pattern label"
- msgid "Infill Pattern"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern description"
- msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
- msgstr "프린트의 충전재 패턴. 라인과 지그는 대체 층에서 스필 방향을 바꾸어 재료비를 줄입니다. 그리드, 삼각형, 큐빅, 사면체 및 동심원 패턴은 모든 레이어에 완전히 인쇄됩니다. 입방체 및 사면체 충전재는 각 방향마다 강도가 균등하게 분포되도록 모든 층을 변경합니다. "
- #: fdmprinter.def.json
- msgctxt "infill_pattern option grid"
- msgid "Grid"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option lines"
- msgid "Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option triangles"
- msgid "Triangles"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option cubic"
- msgid "Cubic"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option cubicsubdiv"
- msgid "Cubic Subdivision"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option tetrahedral"
- msgid "Tetrahedral"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option concentric"
- msgid "Concentric"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option concentric_3d"
- msgid "Concentric 3D"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_pattern option zigzag"
- msgid "Zig Zag"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_angles label"
- msgid "Infill Line Directions"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_angles description"
- msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
- msgstr "사용할 정수선 방향 목록. 목록의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 목록의 끝에 도달하면 처음부터 다시 시작됩니다. 목록 항목은 쉼표로 구분되며 전체 목록은 대괄호 안에 들어 있습니다. 기본값은 전통적인 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용한다는 의미의 빈 목록입니다. "
- #: fdmprinter.def.json
- msgctxt "spaghetti_infill_enabled label"
- msgid "Spaghetti Infill"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "spaghetti_infill_enabled description"
- msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
- msgstr "필라멘트가 물체 내부에서 혼란스럽게 뒤 틀릴 수 있도록 필러를 너무 자주 인쇄하십시오. 이렇게하면 인쇄 시간이 줄어들지 만 예측할 수없는 행동입니다. "
- #: fdmprinter.def.json
- msgctxt "spaghetti_max_infill_angle label"
- msgid "Spaghetti Maximum Infill Angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "spaghetti_max_infill_angle description"
- msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
- msgstr "최대 각도 w.r.t. 나중에 스파게티가 채워질 영역에 대한 인쇄 내부의 Z 축. 이 값을 낮추면 모델의 각진 부분이 각 레이어에 채워집니다. "
- #: fdmprinter.def.json
- msgctxt "spaghetti_max_height label"
- msgid "Spaghetti Infill Maximum Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "spaghetti_max_height description"
- msgid "The maximum height of inside space which can be combined and filled from the top."
- msgstr "상단에서 결합하여 채울 수있는 내부 공간의 최대 높이입니다. "
- #: fdmprinter.def.json
- msgctxt "spaghetti_inset label"
- msgid "Spaghetti Inset"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "spaghetti_inset description"
- msgid "The offset from the walls from where the spaghetti infill will be printed."
- msgstr "스파게티가 채워지는 벽의 오프셋. "
- #: fdmprinter.def.json
- msgctxt "spaghetti_flow label"
- msgid "Spaghetti Flow"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "spaghetti_flow description"
- msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
- msgstr "스파게티 주입 물의 밀도를 조정합니다. Infill Density는 스파게티 필링의 돌출 량이 아니라 채우기 패턴의 줄 간격 만 제어합니다. "
- #: fdmprinter.def.json
- msgctxt "sub_div_rad_add label"
- msgid "Cubic Subdivision Shell"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "sub_div_rad_add description"
- msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
- msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다. "
- #: fdmprinter.def.json
- msgctxt "infill_overlap label"
- msgid "Infill Overlap Percentage"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_overlap description"
- msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
- msgstr "충진재와 벽 사이의 겹침 정도. 약간 겹치면 벽이 충전재에 단단히 연결됩니다."
- #: fdmprinter.def.json
- msgctxt "infill_overlap_mm label"
- msgid "Infill Overlap"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_overlap_mm description"
- msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
- msgstr "충진재와 벽 사이의 겹침 정도. 약간 겹치면 벽이 충전재에 단단히 연결됩니다. "
- #: fdmprinter.def.json
- msgctxt "skin_overlap label"
- msgid "Skin Overlap Percentage"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_overlap description"
- msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
- msgstr "피부와 벽 사이의 겹침 정도입니다. 약간 겹치면 벽이 피부에 단단히 연결됩니다. "
- #: fdmprinter.def.json
- msgctxt "skin_overlap_mm label"
- msgid "Skin Overlap"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_overlap_mm description"
- msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
- msgstr "피부와 벽 사이의 겹침 정도입니다. 약간 겹치면 벽이 피부에 단단히 연결됩니다. "
- #: fdmprinter.def.json
- msgctxt "infill_wipe_dist label"
- msgid "Infill Wipe Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_wipe_dist description"
- msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
- msgstr "각 충진 라인 다음에 삽입 된 이동 이동 거리. infill 스틱을 벽에 더 잘 붙이게합니다. 이 옵션은 충전재 겹침과 유사하지만 압출이없고 충전 선의 한쪽 끝에서만 사용됩니다."
- #: fdmprinter.def.json
- msgctxt "infill_sparse_thickness label"
- msgid "Infill Layer Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_sparse_thickness description"
- msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
- msgstr "충진물 층의 두께. 이 값은 항상 레이어 높이의 배수 여야하며 반올림됩니다. "
- #: fdmprinter.def.json
- msgctxt "gradual_infill_steps label"
- msgid "Gradual Infill Steps"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "gradual_infill_steps description"
- msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
- msgstr "상면 아래로 갈 때 충진 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 충진율 농도가 더 높은 밀도를 갖습니다. "
- #: fdmprinter.def.json
- msgctxt "gradual_infill_step_height label"
- msgid "Gradual Infill Step Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "gradual_infill_step_height description"
- msgid "The height of infill of a given density before switching to half the density."
- msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 infill 높이. "
- #: fdmprinter.def.json
- msgctxt "infill_before_walls label"
- msgid "Infill Before Walls"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_before_walls description"
- msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
- msgstr "벽을 인쇄하기 전에 충진물을 인쇄하십시오. 벽을 먼저 인쇄하면 벽이 더 정확해질 수 있지만 돌출이 더 많이 인쇄됩니다. 충진재를 먼저 인쇄하면 더 튼튼한 벽이 생기지 만 충전물 패턴이 때로 표면을 통해 보일 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "min_infill_area label"
- msgid "Minimum Infill Area"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "min_infill_area description"
- msgid "Don't generate areas of infill smaller than this (use skin instead)."
- msgstr "이보다 작은 충진물 영역을 생성하지 마십시오 (대신 스킨 사용). "
- #: fdmprinter.def.json
- msgctxt "expand_skins_into_infill label"
- msgid "Expand Skins Into Infill"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "expand_skins_into_infill description"
- msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
- msgstr "평면의 상단 및 / 또는 하단 스킨 영역을 확장합니다. 기본적으로 스필은 충진을 둘러싸는 벽 선 아래에서 멈 춥니 다. 그러나 이는 충진 밀도가 낮을 때 나타나는 구멍으로 이어질 수 있습니다. 이 설정은 스킨을 벽 선 너머로 확장하여 다음 레이어의 필이 피부에 놓 이도록합니다. "
- #: fdmprinter.def.json
- msgctxt "expand_upper_skins label"
- msgid "Expand Top Skins Into Infill"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "expand_upper_skins description"
- msgid "Expand the top skin areas (areas with air above) so that they support infill above."
- msgstr "상단 피부 영역 (위의 공기가있는 영역)을 확장하여 위의 충진물을 지탱하도록하십시오. "
- #: fdmprinter.def.json
- msgctxt "expand_lower_skins label"
- msgid "Expand Bottom Skins Into Infill"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "expand_lower_skins description"
- msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
- msgstr "아래 피부 영역 (공기가있는 부분)을 확장하여 위와 아래의 충진층으로 고정시킵니다. "
- #: fdmprinter.def.json
- msgctxt "expand_skins_expand_distance label"
- msgid "Skin Expand Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "expand_skins_expand_distance description"
- msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
- msgstr "스킨이 충진 될 거리입니다. 기본 거리는 충진 선 사이의 간격을 메우기에 충분하며 충진 밀도가 낮을 때 벽과 만나는 스킨에 나타나는 구멍을 막습니다. 거리가 짧으면 충분합니다. "
- #: fdmprinter.def.json
- msgctxt "max_skin_angle_for_expansion label"
- msgid "Maximum Skin Angle for Expansion"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "max_skin_angle_for_expansion description"
- msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
- msgstr "이 설정보다 큰 각도로 객체의 상단 및 / 또는 하단 표면은 위쪽 / 아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. \"0\" 도의 각도는 수평이며, 90 도의 각도는 수직입니다. "
- #: fdmprinter.def.json
- msgctxt "min_skin_width_for_expansion label"
- msgid "Minimum Skin Width for Expansion"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "min_skin_width_for_expansion description"
- msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
- msgstr "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. "
- #: fdmprinter.def.json
- msgctxt "material label"
- msgid "Material"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material description"
- msgid "Material"
- msgstr "재료 "
- #: fdmprinter.def.json
- msgctxt "material_flow_dependent_temperature label"
- msgid "Auto Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_flow_dependent_temperature description"
- msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
- msgstr "해당 레이어의 평균 유속으로 각 레이어의 온도를 자동으로 변경하십시오. "
- #: fdmprinter.def.json
- msgctxt "default_material_print_temperature label"
- msgid "Default Printing Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "default_material_print_temperature description"
- msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
- msgstr "인쇄에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 여야합니다. 다른 모든 인쇄 온도는이 값을 기준으로 오프셋을 사용해야합니다. "
- #: fdmprinter.def.json
- msgctxt "material_print_temperature label"
- msgid "Printing Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_print_temperature description"
- msgid "The temperature used for printing."
- msgstr "인쇄에 사용되는 온도. "
- #: fdmprinter.def.json
- msgctxt "material_print_temperature_layer_0 label"
- msgid "Printing Temperature Initial Layer"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_print_temperature_layer_0 description"
- msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
- msgstr "첫 번째 레이어 인쇄에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 \"0\"으로 설정합니다. "
- #: fdmprinter.def.json
- msgctxt "material_initial_print_temperature label"
- msgid "Initial Printing Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_initial_print_temperature description"
- msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
- msgstr "인쇄가 이미 시작될 수있는 인쇄 온도까지 가열하는 동안 최소 온도. "
- #: fdmprinter.def.json
- msgctxt "material_final_print_temperature label"
- msgid "Final Printing Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_final_print_temperature description"
- msgid "The temperature to which to already start cooling down just before the end of printing."
- msgstr "인쇄 종료 직전에 이미 냉각이 시작될 온도입니다. "
- #: fdmprinter.def.json
- msgctxt "material_flow_temp_graph label"
- msgid "Flow Temperature Graph"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_flow_temp_graph description"
- msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
- msgstr "데이터 흐름 (mm3 / 초) - 온도 (섭씨). "
- #: fdmprinter.def.json
- msgctxt "material_extrusion_cool_down_speed label"
- msgid "Extrusion Cool Down Speed Modifier"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_extrusion_cool_down_speed description"
- msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
- msgstr "압출하는 동안 노즐이 냉각되는 추가 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "material_bed_temperature label"
- msgid "Build Plate Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_bed_temperature description"
- msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
- msgstr "가열 된 빌드 플레이트에 사용되는 온도. 이 값이 0이면이 인쇄물에 침대가 가열되지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "material_bed_temperature_layer_0 label"
- msgid "Build Plate Temperature Initial Layer"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_bed_temperature_layer_0 description"
- msgid "The temperature used for the heated build plate at the first layer."
- msgstr "첫 번째 레이어에서 가열 된 빌드 플레이트에 사용되는 온도. "
- #: fdmprinter.def.json
- msgctxt "material_diameter label"
- msgid "Diameter"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_diameter description"
- msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
- msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다. "
- #: fdmprinter.def.json
- msgctxt "material_flow label"
- msgid "Flow"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_flow description"
- msgid "Flow compensation: the amount of material extruded is multiplied by this value."
- msgstr "유량 보상 : 압출 된 재료의 양에이 값을 곱합니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_enable label"
- msgid "Enable Retraction"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_enable description"
- msgid "Retract the filament when the nozzle is moving over a non-printed area. "
- msgstr "노즐이 인쇄되지 않은 영역 위로 움직일 때 필라멘트를 잡아 당깁니다. "
- #: fdmprinter.def.json
- msgctxt "retract_at_layer_change label"
- msgid "Retract at Layer Change"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retract_at_layer_change description"
- msgid "Retract the filament when the nozzle is moving to the next layer."
- msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 후퇴시킵니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_amount label"
- msgid "Retraction Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_amount description"
- msgid "The length of material retracted during a retraction move."
- msgstr "후퇴 이동 중에 수축 된 재료의 길이입니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_speed label"
- msgid "Retraction Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_speed description"
- msgid "The speed at which the filament is retracted and primed during a retraction move."
- msgstr "후퇴 이동 중에 필라멘트가 수축되고 프라이밍되는 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_retract_speed label"
- msgid "Retraction Retract Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_retract_speed description"
- msgid "The speed at which the filament is retracted during a retraction move."
- msgstr "후퇴 이동 중에 필라멘트가 후퇴하는 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_prime_speed label"
- msgid "Retraction Prime Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_prime_speed description"
- msgid "The speed at which the filament is primed during a retraction move."
- msgstr "후퇴 이동 중에 필라멘트가 프라이밍되는 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_extra_prime_amount label"
- msgid "Retraction Extra Prime Amount"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_extra_prime_amount description"
- msgid "Some material can ooze away during a travel move, which can be compensated for here."
- msgstr "여행 중에 이동할 수있는 물질이 있습니다.이 물질은 여기에서 보상받을 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_min_travel label"
- msgid "Retraction Minimum Travel"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_min_travel description"
- msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
- msgstr "수축이 일어나기 위해 필요한 최소한의 이동 거리. 이렇게하면 작은 영역에서 더 적은 수축을 얻을 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_count_max label"
- msgid "Maximum Retraction Count"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_count_max description"
- msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
- msgstr "이 설정은 최소 돌출 거리 창 내에서 발생하는 후퇴 수를 제한합니다. 이 창 내에서 더 이상의 철회는 무시됩니다. 이렇게하면 필라멘트를 평평하게하고 연삭 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 후퇴하지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_extrusion_window label"
- msgid "Minimum Extrusion Distance Window"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_extrusion_window description"
- msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
- msgstr "최대 후퇴 횟수가 시행되는 창입니다. 이 값은 수축 거리와 거의 같아야하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다. "
- #: fdmprinter.def.json
- msgctxt "material_standby_temperature label"
- msgid "Standby Temperature"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "material_standby_temperature description"
- msgid "The temperature of the nozzle when another nozzle is currently used for printing."
- msgstr "다른 노즐이 현재 인쇄에 사용되는 경우의 노즐 온도. "
- #: fdmprinter.def.json
- msgctxt "switch_extruder_retraction_amount label"
- msgid "Nozzle Switch Retraction Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "switch_extruder_retraction_amount description"
- msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
- msgstr "수축 양 : 수축이 전혀없는 경우 0으로 설정합니다. 일반적으로 열 영역의 길이와 같아야합니다. "
- #: fdmprinter.def.json
- msgctxt "switch_extruder_retraction_speeds label"
- msgid "Nozzle Switch Retraction Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "switch_extruder_retraction_speeds description"
- msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
- msgstr "필라멘트가 수축되는 속도입니다. 후퇴 속도가 빠르면 빠르지 만 후퇴 속도가 높으면 필라멘트 연삭으로 이어질 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "switch_extruder_retraction_speed label"
- msgid "Nozzle Switch Retract Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "switch_extruder_retraction_speed description"
- msgid "The speed at which the filament is retracted during a nozzle switch retract."
- msgstr "노즐 스위치가 들어갈 때 필라멘트가 후퇴하는 속도. "
- #: fdmprinter.def.json
- msgctxt "switch_extruder_prime_speed label"
- msgid "Nozzle Switch Prime Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "switch_extruder_prime_speed description"
- msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
- msgstr "노즐 스위치 수축 후 필라멘트가 뒤로 밀리는 속도. "
- #: fdmprinter.def.json
- msgctxt "speed label"
- msgid "Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed description"
- msgid "Speed"
- msgstr "속도 "
- #: fdmprinter.def.json
- msgctxt "speed_print label"
- msgid "Print Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_print description"
- msgid "The speed at which printing happens."
- msgstr "인쇄 속도. "
- #: fdmprinter.def.json
- msgctxt "speed_infill label"
- msgid "Infill Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_infill description"
- msgid "The speed at which infill is printed."
- msgstr "충진물이 인쇄되는 속도. "
- #: fdmprinter.def.json
- msgctxt "speed_wall label"
- msgid "Wall Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_wall description"
- msgid "The speed at which the walls are printed."
- msgstr "벽이 인쇄되는 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "speed_wall_0 label"
- msgid "Outer Wall Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_wall_0 description"
- msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
- msgstr "가장 바깥 쪽 벽이 인쇄되는 속도입니다. 외벽을 더 낮은 속도로 인쇄하면 최종 피부 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다. "
- #: fdmprinter.def.json
- msgctxt "speed_wall_x label"
- msgid "Inner Wall Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_wall_x description"
- msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
- msgstr "모든 내부 벽이 인쇄되는 속도입니다. 내벽을 외벽보다 빠르게 인쇄하면 인쇄 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다. "
- #: fdmprinter.def.json
- msgctxt "speed_topbottom label"
- msgid "Top/Bottom Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_topbottom description"
- msgid "The speed at which top/bottom layers are printed."
- msgstr "위쪽 / 아래쪽 레이어가 인쇄되는 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "speed_support label"
- msgid "Support Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_support description"
- msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
- msgstr "지지 구조가 인쇄되는 속도입니다. 고속 인쇄 지원은 인쇄 시간을 크게 단축시킵니다. 지지 구조체의 표면 품질은 인쇄 후에 제거되므로 중요하지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "speed_support_infill label"
- msgid "Support Infill Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_support_infill description"
- msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
- msgstr "지지대의 충전물이 인쇄되는 속도. infill을 저속으로 인쇄하면 안정성이 향상됩니다. "
- #: fdmprinter.def.json
- msgctxt "speed_support_interface label"
- msgid "Support Interface Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_support_interface description"
- msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
- msgstr "지지대의 지붕과 바닥이 인쇄되는 속도. 인쇄 속도를 느리게하면 돌출 품질이 향상 될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "speed_support_roof label"
- msgid "Support Roof Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_support_roof description"
- msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
- msgstr "지지대의 지붕이 인쇄되는 속도입니다. 인쇄 속도를 느리게하면 돌출 품질이 향상 될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "speed_support_bottom label"
- msgid "Support Floor Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_support_bottom description"
- msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
- msgstr "지지대 바닥 인쇄 속도. 더 낮은 속도로 인쇄하면 모델 상단의 지지력이 향상됩니다. "
- #: fdmprinter.def.json
- msgctxt "speed_prime_tower label"
- msgid "Prime Tower Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_prime_tower description"
- msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
- msgstr "프라임 타워가 인쇄되는 속도. 프라임 타워를 더 천천히 인쇄하면 다른 필라멘트 사이의 접착력이 차선적일 때보다 안정적으로 만들 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "speed_travel label"
- msgid "Travel Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_travel description"
- msgid "The speed at which travel moves are made."
- msgstr "움직일때의 이동 속도."
- #: fdmprinter.def.json
- msgctxt "speed_layer_0 label"
- msgid "Initial Layer Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_layer_0 description"
- msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
- msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다. "
- #: fdmprinter.def.json
- msgctxt "speed_print_layer_0 label"
- msgid "Initial Layer Print Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_print_layer_0 description"
- msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
- msgstr "초기 레이어의 인쇄 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다. "
- #: fdmprinter.def.json
- msgctxt "speed_travel_layer_0 label"
- msgid "Initial Layer Travel Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_travel_layer_0 description"
- msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
- msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 인쇄 된 부품을 빌드 플레이트에서 빼내는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 인쇄 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "skirt_brim_speed label"
- msgid "Skirt/Brim Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skirt_brim_speed description"
- msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
- msgstr "스커트와 가장자리가 인쇄되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트 나 가장자리를 다른 속도로 인쇄하려고 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "max_feedrate_z_override label"
- msgid "Maximum Z Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "max_feedrate_z_override description"
- msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
- msgstr "빌드 플레이트가 움직이는 최대 속도. 이 값을 0으로 설정하면 인쇄시 최대 z 속도의 펌웨어 기본값이 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "speed_slowdown_layers label"
- msgid "Number of Slower Layers"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_slowdown_layers description"
- msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
- msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 인쇄되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 인쇄물의 전체 성공률을 향상시킵니다. 속도는이 층 위로 점진적으로 증가합니다. "
- #: fdmprinter.def.json
- msgctxt "speed_equalize_flow_enabled label"
- msgid "Equalize Filament Flow"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_equalize_flow_enabled description"
- msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
- msgstr "일반 라인보다 얇게 인쇄하여 초당 압출되는 재료의 양이 동일하게 유지되도록하십시오. 모델의 얇은 부분에는 설정에서 제공 한 것보다 작은 선 너비로 선이 인쇄되어야 할 수 있습니다. 이 설정은 이러한 선의 속도 변경을 제어합니다. "
- #: fdmprinter.def.json
- msgctxt "speed_equalize_flow_max label"
- msgid "Maximum Speed for Flow Equalization"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "speed_equalize_flow_max description"
- msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
- msgstr "인쇄 속도를 조정할 때 최대 인쇄 속도로 흐름을 균등하게 유지합니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_enabled label"
- msgid "Enable Acceleration Control"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_enabled description"
- msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
- msgstr "프린트 헤드 가속도를 조정할 수 있습니다. 가속도를 높이면 인쇄 품질을 저하시키면서 인쇄 시간을 줄일 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_print label"
- msgid "Print Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_print description"
- msgid "The acceleration with which printing happens."
- msgstr "인쇄 속도가 빨라집니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_infill label"
- msgid "Infill Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_infill description"
- msgid "The acceleration with which infill is printed."
- msgstr "충진물이 인쇄되는 가속도. "
- #: fdmprinter.def.json
- msgctxt "acceleration_wall label"
- msgid "Wall Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_wall description"
- msgid "The acceleration with which the walls are printed."
- msgstr "벽이 가속되는 가속도. "
- #: fdmprinter.def.json
- msgctxt "acceleration_wall_0 label"
- msgid "Outer Wall Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_wall_0 description"
- msgid "The acceleration with which the outermost walls are printed."
- msgstr "가장 바깥 쪽 벽이 인쇄되는 가속도입니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_wall_x label"
- msgid "Inner Wall Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_wall_x description"
- msgid "The acceleration with which all inner walls are printed."
- msgstr "모든 내부 벽이 인쇄되는 가속도입니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_topbottom label"
- msgid "Top/Bottom Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_topbottom description"
- msgid "The acceleration with which top/bottom layers are printed."
- msgstr "위쪽 / 아래쪽 레이어가 인쇄되는 가속도입니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_support label"
- msgid "Support Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_support description"
- msgid "The acceleration with which the support structure is printed."
- msgstr "지지 구조가 인쇄되는 가속도. "
- #: fdmprinter.def.json
- msgctxt "acceleration_support_infill label"
- msgid "Support Infill Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_support_infill description"
- msgid "The acceleration with which the infill of support is printed."
- msgstr "지지대의 충전물이 인쇄되는 가속도. "
- #: fdmprinter.def.json
- msgctxt "acceleration_support_interface label"
- msgid "Support Interface Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_support_interface description"
- msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
- msgstr "지지대의 지붕과 바닥이 인쇄되는 가속도. 낮은 가속도로 인쇄하면 돌출 품질이 향상 될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_support_roof label"
- msgid "Support Roof Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_support_roof description"
- msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
- msgstr "지지대의 지붕이 인쇄되는 가속도. 낮은 가속도로 인쇄하면 돌출 품질이 향상 될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_support_bottom label"
- msgid "Support Floor Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_support_bottom description"
- msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
- msgstr "지면의 가속도가 인쇄됩니다. 보다 낮은 가속도로 인쇄하면 모델 상단에 지지력을 향상시킬 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_prime_tower label"
- msgid "Prime Tower Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_prime_tower description"
- msgid "The acceleration with which the prime tower is printed."
- msgstr "프라임 타워가 인쇄되는 가속도. "
- #: fdmprinter.def.json
- msgctxt "acceleration_travel label"
- msgid "Travel Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_travel description"
- msgid "The acceleration with which travel moves are made."
- msgstr "여행이 움직이는 가속도가 만들어집니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_layer_0 label"
- msgid "Initial Layer Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_layer_0 description"
- msgid "The acceleration for the initial layer."
- msgstr "초기 레이어의 가속도입니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_print_layer_0 label"
- msgid "Initial Layer Print Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_print_layer_0 description"
- msgid "The acceleration during the printing of the initial layer."
- msgstr "초기 레이어 인쇄 중 가속도. "
- #: fdmprinter.def.json
- msgctxt "acceleration_travel_layer_0 label"
- msgid "Initial Layer Travel Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_travel_layer_0 description"
- msgid "The acceleration for travel moves in the initial layer."
- msgstr "이동 가속도는 초기 레이어에서 이동합니다. "
- #: fdmprinter.def.json
- msgctxt "acceleration_skirt_brim label"
- msgid "Skirt/Brim Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "acceleration_skirt_brim description"
- msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
- msgstr "치마와 가장자리가 인쇄되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 지지만 때로는 스커트 나 테두리를 다른 가속으로 인쇄하려고 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "jerk_enabled label"
- msgid "Enable Jerk Control"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_enabled description"
- msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
- msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. 저크를 높이면 인쇄 품질을 저하시키면서 인쇄 시간을 줄일 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "jerk_print label"
- msgid "Print Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_print description"
- msgid "The maximum instantaneous velocity change of the print head."
- msgstr "프린트 헤드의 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_infill label"
- msgid "Infill Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_infill description"
- msgid "The maximum instantaneous velocity change with which infill is printed."
- msgstr "충진물이 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_wall label"
- msgid "Wall Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_wall description"
- msgid "The maximum instantaneous velocity change with which the walls are printed."
- msgstr "벽이 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_wall_0 label"
- msgid "Outer Wall Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_wall_0 description"
- msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
- msgstr "가장 바깥 쪽 벽이 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_wall_x label"
- msgid "Inner Wall Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_wall_x description"
- msgid "The maximum instantaneous velocity change with which all inner walls are printed."
- msgstr "모든 내부 벽이 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_topbottom label"
- msgid "Top/Bottom Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_topbottom description"
- msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
- msgstr "상단 / 하단 레이어가 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_support label"
- msgid "Support Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_support description"
- msgid "The maximum instantaneous velocity change with which the support structure is printed."
- msgstr "지지 구조가 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_support_infill label"
- msgid "Support Infill Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_support_infill description"
- msgid "The maximum instantaneous velocity change with which the infill of support is printed."
- msgstr "지지대가 채워지는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_support_interface label"
- msgid "Support Interface Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_support_interface description"
- msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
- msgstr "지지대의 지붕과 바닥이 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_support_roof label"
- msgid "Support Roof Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_support_roof description"
- msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
- msgstr "지지대의 지붕이 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_support_bottom label"
- msgid "Support Floor Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_support_bottom description"
- msgid "The maximum instantaneous velocity change with which the floors of support are printed."
- msgstr "지지대의 바닥이 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_prime_tower label"
- msgid "Prime Tower Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_prime_tower description"
- msgid "The maximum instantaneous velocity change with which the prime tower is printed."
- msgstr "프라임 타워가 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_travel label"
- msgid "Travel Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_travel description"
- msgid "The maximum instantaneous velocity change with which travel moves are made."
- msgstr "이동이 이동하는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_layer_0 label"
- msgid "Initial Layer Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_layer_0 description"
- msgid "The print maximum instantaneous velocity change for the initial layer."
- msgstr "초기 레이어의 인쇄 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_print_layer_0 label"
- msgid "Initial Layer Print Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_print_layer_0 description"
- msgid "The maximum instantaneous velocity change during the printing of the initial layer."
- msgstr "초기 층의 인쇄 중 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "jerk_travel_layer_0 label"
- msgid "Initial Layer Travel Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_travel_layer_0 description"
- msgid "The acceleration for travel moves in the initial layer."
- msgstr "이동 가속도는 초기 레이어에서 이동합니다. "
- #: fdmprinter.def.json
- msgctxt "jerk_skirt_brim label"
- msgid "Skirt/Brim Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "jerk_skirt_brim description"
- msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
- msgstr "스커트와 고리가 인쇄되는 최대 순간 속도 변화. "
- #: fdmprinter.def.json
- msgctxt "travel label"
- msgid "Travel"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel description"
- msgid "travel"
- msgstr "이동 "
- #: fdmprinter.def.json
- msgctxt "retraction_combing label"
- msgid "Combing Mode"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_combing description"
- msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
- msgstr "빗질은 여행 할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 여행 이동이 약간 더 길어 지지만 수축의 필요성은 줄어 듭니다. 빗질이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 infill 내에서만 빗질하여 상 / 하 피부 영역을 빗질하는 것을 피할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_combing option off"
- msgid "Off"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_combing option all"
- msgid "All"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_combing option noskin"
- msgid "No Skin"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel_retract_before_outer_wall label"
- msgid "Retract Before Outer Wall"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel_retract_before_outer_wall description"
- msgid "Always retract when moving to start an outer wall."
- msgstr "외벽을 시작하기 위해 이동할 때 항상 후퇴합니다. "
- #: fdmprinter.def.json
- msgctxt "travel_avoid_other_parts label"
- msgid "Avoid Printed Parts When Traveling"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel_avoid_other_parts description"
- msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
- msgstr "노즐은 여행 할 때 이미 인쇄 된 부품을 피합니다. 이 옵션은 빗질이 활성화 된 경우에만 사용할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "travel_avoid_distance label"
- msgid "Travel Avoid Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "travel_avoid_distance description"
- msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
- msgstr "이동 중에 피할 때 노즐과 이미 인쇄 된 부분 사이의 거리. "
- #: fdmprinter.def.json
- msgctxt "start_layers_at_same_position label"
- msgid "Start Layers with the Same Part"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "start_layers_at_same_position description"
- msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
- msgstr "각 레이어에서 같은 지점 근처에 개체를 인쇄하는 것으로 시작하여 이전 레이어가 끝난 부분을 인쇄하여 새 레이어를 시작하지 마십시오. 이것은 오버행 (overhangs) 및 작은 부품을 개선하지만 인쇄 시간을 증가시킵니다. "
- #: fdmprinter.def.json
- msgctxt "layer_start_x label"
- msgid "Layer Start X"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "layer_start_x description"
- msgid "The X coordinate of the position near where to find the part to start printing each layer."
- msgstr "각 레이어의 인쇄를 시작할 부분을 찾을 위치 근처의 X 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "layer_start_y label"
- msgid "Layer Start Y"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "layer_start_y description"
- msgid "The Y coordinate of the position near where to find the part to start printing each layer."
- msgstr "각 레이어 인쇄를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_hop_enabled label"
- msgid "Z Hop When Retracted"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_hop_enabled description"
- msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
- msgstr "수축이 완료 될 때마다 빌드 플레이트가 내려져 노즐과 인쇄물 사이에 여유 공간이 생깁니다. 이동 이동 중에 노즐이 인쇄물에 부딪치지 않도록하여 인쇄판을 노크 할 기회를 줄입니다. "
- #: fdmprinter.def.json
- msgctxt "retraction_hop_only_when_collides label"
- msgid "Z Hop Only Over Printed Parts"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_hop_only_when_collides description"
- msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
- msgstr "이동 시, 인쇄물을 피함으로써 수평 이동으로 피할 수없는 인쇄물 위로 이동할 때만 Z 홉을 수행하십시오."
- #: fdmprinter.def.json
- msgctxt "retraction_hop label"
- msgid "Z Hop Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_hop description"
- msgid "The height difference when performing a Z Hop."
- msgstr "Z 홉을 수행 할 때의 높이 차이. "
- #: fdmprinter.def.json
- msgctxt "retraction_hop_after_extruder_switch label"
- msgid "Z Hop After Extruder Switch"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "retraction_hop_after_extruder_switch description"
- msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
- msgstr "기계가 하나의 압출기에서 다른 압출기로 전환 된 후, 빌드 플레이트가 하강되어 노즐과 인쇄물 사이에 간극이 생깁니다. 이렇게하면 노즐이 인쇄물의 외부에 흘러 나올 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "cooling label"
- msgid "Cooling"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cooling description"
- msgid "Cooling"
- msgstr "냉각 "
- #: fdmprinter.def.json
- msgctxt "cool_fan_enabled label"
- msgid "Enable Print Cooling"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_fan_enabled description"
- msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
- msgstr "인쇄 중에 인쇄 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 인쇄 품질을 향상시킵니다. "
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed label"
- msgid "Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed description"
- msgid "The speed at which the print cooling fans spin."
- msgstr "인쇄 냉각 팬이 회전하는 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed_min label"
- msgid "Regular Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed_min description"
- msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
- msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계 값보다 빠르게 인쇄되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다. "
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed_max label"
- msgid "Maximum Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed_max description"
- msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
- msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 일반 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다. "
- #: fdmprinter.def.json
- msgctxt "cool_min_layer_time_fan_speed_max label"
- msgid "Regular/Maximum Fan Speed Threshold"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_min_layer_time_fan_speed_max description"
- msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
- msgstr "정규 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 인쇄되는 레이어는 일반 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다. "
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed_0 label"
- msgid "Initial Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_fan_speed_0 description"
- msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
- msgstr "인쇄 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 일반 팬 속도에 해당하는 레이어까지 점차 증가합니다. "
- #: fdmprinter.def.json
- msgctxt "cool_fan_full_at_height label"
- msgid "Regular Fan Speed at Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_fan_full_at_height description"
- msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
- msgstr "일반 팬 속도로 팬이 회전하는 높이입니다. 아래의 레이어에서 팬 속도는 초기 팬 속도에서 정규 팬 속도로 점차 증가합니다. "
- #: fdmprinter.def.json
- msgctxt "cool_fan_full_layer label"
- msgid "Regular Fan Speed at Layer"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_fan_full_layer description"
- msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
- msgstr "팬이 일반 팬 속도로 회전하는 레이어입니다. 높이의 일반 팬 속도를 설정하면이 값이 계산되고 정수로 반올림됩니다. "
- #: fdmprinter.def.json
- msgctxt "cool_min_layer_time label"
- msgid "Minimum Layer Time"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_min_layer_time description"
- msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
- msgstr "레이어에 소요 된 최소 시간입니다. 이렇게하면 프린터가 느려지고 적어도 한 번에 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 인쇄하기 전에 인쇄물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "cool_min_speed label"
- msgid "Minimum Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_min_speed description"
- msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
- msgstr "최소 레이어 시간으로 인해 속도가 느려지 긴하지만 최소 인쇄 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 인쇄 품질이 나빠질 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "cool_lift_head label"
- msgid "Lift Head"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cool_lift_head description"
- msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
- msgstr "최소한의 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 인쇄물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 여분의 시간을 기다리십시오. "
- #: fdmprinter.def.json
- msgctxt "support label"
- msgid "Support"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support description"
- msgid "Support"
- msgstr "지지구조 "
- #: fdmprinter.def.json
- msgctxt "support_enable label"
- msgid "Generate Support"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_enable description"
- msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
- msgstr "돌출부가있는 모델 부분을 지원하는 구조를 생성합니다. 이러한 구조가 없으면 이러한 부분이 인쇄 중에 붕괴됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_extruder_nr label"
- msgid "Support Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_extruder_nr description"
- msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
- msgstr "지지체 인쇄에 사용할 압출기 트레인. 이것은 다중 압출에 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_infill_extruder_nr label"
- msgid "Support Infill Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_infill_extruder_nr description"
- msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
- msgstr "지지대의 충전물을 인쇄하는 데 사용할 압출기 트레인. 이것은 다중 압출에 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_extruder_nr_layer_0 label"
- msgid "First Layer Support Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_extruder_nr_layer_0 description"
- msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
- msgstr "제 1 층의 지지체 충전 용 인쇄에 사용되는 압출기 트레인. 이것은 다중 압출에 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_extruder_nr label"
- msgid "Support Interface Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_extruder_nr description"
- msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
- msgstr "지지대의 지붕과 바닥을 인쇄 할 때 사용하는 압출기 트레인. 이것은 다중 압출에 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_roof_extruder_nr label"
- msgid "Support Roof Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_extruder_nr description"
- msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
- msgstr "지지대의 지붕을 인쇄 할 때 사용하는 압출기 트레인. 이것은 다중 압출에 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_extruder_nr label"
- msgid "Support Floor Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_extruder_nr description"
- msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
- msgstr "지지대의 바닥을 인쇄하는 데 사용할 압출기 트레인. 이것은 다중 압출에 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_type label"
- msgid "Support Placement"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_type description"
- msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
- msgstr "지지 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 지원 구조가 인쇄됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_type option buildplate"
- msgid "Touching Buildplate"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_type option everywhere"
- msgid "Everywhere"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_angle label"
- msgid "Support Overhang Angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_angle description"
- msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
- msgstr "지원이 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 지원되며 90 °는 지원하지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "support_pattern label"
- msgid "Support Pattern"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_pattern description"
- msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
- msgstr "프린트의지지 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_pattern option lines"
- msgid "Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_pattern option grid"
- msgid "Grid"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_pattern option triangles"
- msgid "Triangles"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_pattern option concentric"
- msgid "Concentric"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_pattern option concentric_3d"
- msgid "Concentric 3D"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_pattern option zigzag"
- msgid "Zig Zag"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_connect_zigzags label"
- msgid "Connect Support ZigZags"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_connect_zigzags description"
- msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
- msgstr "지그재그를 연결하십시오. 이것은 지그재그지지 구조의 강도를 증가시킵니다. "
- #: fdmprinter.def.json
- msgctxt "support_infill_rate label"
- msgid "Support Density"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_infill_rate description"
- msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
- msgstr "지지 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 지지만 지지체를 제거하기가 더 어렵습니다. "
- #: fdmprinter.def.json
- msgctxt "support_line_distance label"
- msgid "Support Line Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_line_distance description"
- msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
- msgstr "인쇄 된지지 구조 선 사이의 거리. 이 설정은 지원 밀도로 계산됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_z_distance label"
- msgid "Support Z Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_z_distance description"
- msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
- msgstr "지지 구조의 위 / 아래에서 인쇄까지의 거리. 이 틈새는 모형 인쇄 후 지지대를 제거하기위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_top_distance label"
- msgid "Support Top Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_top_distance description"
- msgid "Distance from the top of the support to the print."
- msgstr "지원 상단에서 인쇄까지의 거리. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_distance label"
- msgid "Support Bottom Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_distance description"
- msgid "Distance from the print to the bottom of the support."
- msgstr "인쇄물에서 지지대의 바닥까지의 거리. "
- #: fdmprinter.def.json
- msgctxt "support_xy_distance label"
- msgid "Support X/Y Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_xy_distance description"
- msgid "Distance of the support structure from the print in the X/Y directions."
- msgstr "X / Y 방향에서 인쇄물로부터지지 구조까지의 거리. "
- #: fdmprinter.def.json
- msgctxt "support_xy_overrides_z label"
- msgid "Support Distance Priority"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_xy_overrides_z description"
- msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
- msgstr "지원 X / Y 거리가지지 Z 거리를 무시하는지 여부를 나타냅니다. X / Y가 Z를 오버라이드하면 X / Y 거리는 모델에서 지지점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X / Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_xy_overrides_z option xy_overrides_z"
- msgid "X/Y overrides Z"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_xy_overrides_z option z_overrides_xy"
- msgid "Z overrides X/Y"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_xy_distance_overhang label"
- msgid "Minimum Support X/Y Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_xy_distance_overhang description"
- msgid "Distance of the support structure from the overhang in the X/Y directions. "
- msgstr "X / Y 방향에서 오버행으로부터지지 구조까지의 거리. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_stair_step_height label"
- msgid "Support Stair Step Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_stair_step_height description"
- msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
- msgstr "모델에있는 지지대의 계단 모양 바닥의 계단 높이. 값이 낮 으면 지원을 제거하기가 어려워 지지만 값이 너무 높으면 불안정한 지원 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_stair_step_width label"
- msgid "Support Stair Step Maximum Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_stair_step_width description"
- msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
- msgstr "모델에있는 지지대의 계단 모양 바닥의 최대 폭. 값이 낮 으면 지원을 제거하기가 어려워 지지만 값이 너무 높으면 불안정한 지원 구조가 생길 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_join_distance label"
- msgid "Support Join Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_join_distance description"
- msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
- msgstr "X / Y 방향으로지지 구조물 사이의 최대 거리. 별도의 구조가이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다. "
- #: fdmprinter.def.json
- msgctxt "support_offset label"
- msgid "Support Horizontal Expansion"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_offset description"
- msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
- msgstr "각 레이어의 모든 지원 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 지원 영역이 원활 해지며보다 견고한 지원을받을 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_enable label"
- msgid "Enable Support Interface"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_enable description"
- msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
- msgstr "모델과 지원 사이에 조밀 한 인터페이스를 생성하십시오. 이렇게하면 모델이 인쇄 된 지원 맨 위의 스킨과 모델의 위에있는 지원 맨 아래에 스킨이 만들어집니다. "
- #: fdmprinter.def.json
- msgctxt "support_roof_enable label"
- msgid "Enable Support Roof"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_enable description"
- msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
- msgstr "지지대 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_enable label"
- msgid "Enable Support Floor"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_enable description"
- msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
- msgstr "지지대 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_height label"
- msgid "Support Interface Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_height description"
- msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
- msgstr "밑면 또는 상단의 모델과 접촉하는 지지점의 인터페이스 두께입니다. "
- #: fdmprinter.def.json
- msgctxt "support_roof_height label"
- msgid "Support Roof Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_height description"
- msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
- msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_height label"
- msgid "Support Floor Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_height description"
- msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
- msgstr "지지 층의 두께. 이것은 지지대가 놓여있는 모델의 상단에 인쇄되는 조밀 한 층의 수를 제어합니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_skip_height label"
- msgid "Support Interface Resolution"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_skip_height description"
- msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
- msgstr "지원 모델의 위와 아래에 모델이 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 지원 인터페이스가 있어야하는 곳에서는 정상적인 지원이 인쇄 될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_density label"
- msgid "Support Interface Density"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_density description"
- msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
- msgstr "지지 구조의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 지지만 지지체를 제거하기가 더 어렵습니다. "
- #: fdmprinter.def.json
- msgctxt "support_roof_density label"
- msgid "Support Roof Density"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_density description"
- msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
- msgstr "지지 구조의 지붕의 밀도. 값이 높을수록 오버행이 좋아 지지만 지지체를 제거하기가 더 어렵습니다. "
- #: fdmprinter.def.json
- msgctxt "support_roof_line_distance label"
- msgid "Support Roof Line Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_line_distance description"
- msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
- msgstr "인쇄 된 지붕 루프 사이의 거리. 이 설정은지지 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_density label"
- msgid "Support Floor Density"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_density description"
- msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
- msgstr "지지 구조체의 바닥 밀도. 값이 높을수록 지지대가 모델 위에 더 잘 접착됩니다. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_line_distance label"
- msgid "Support Floor Line Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_line_distance description"
- msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
- msgstr "인쇄 된지지 플로어 사이의 거리. 이 설정은 Support Floor Density로 계산되지만 별도로 조정할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern label"
- msgid "Support Interface Pattern"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern description"
- msgid "The pattern with which the interface of the support with the model is printed."
- msgstr "모델과 지원 인터페이스를 인쇄하는 패턴입니다. "
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern option lines"
- msgid "Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern option grid"
- msgid "Grid"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern option triangles"
- msgid "Triangles"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern option concentric"
- msgid "Concentric"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern option concentric_3d"
- msgid "Concentric 3D"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_interface_pattern option zigzag"
- msgid "Zig Zag"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern label"
- msgid "Support Roof Pattern"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern description"
- msgid "The pattern with which the roofs of the support are printed."
- msgstr "지지대의 지붕이 인쇄되는 패턴. "
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern option lines"
- msgid "Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern option grid"
- msgid "Grid"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern option triangles"
- msgid "Triangles"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern option concentric"
- msgid "Concentric"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern option concentric_3d"
- msgid "Concentric 3D"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_roof_pattern option zigzag"
- msgid "Zig Zag"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern label"
- msgid "Support Floor Pattern"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern description"
- msgid "The pattern with which the floors of the support are printed."
- msgstr "받침대의 바닥이 인쇄되는 패턴. "
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern option lines"
- msgid "Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern option grid"
- msgid "Grid"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern option triangles"
- msgid "Triangles"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern option concentric"
- msgid "Concentric"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern option concentric_3d"
- msgid "Concentric 3D"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_bottom_pattern option zigzag"
- msgid "Zig Zag"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_use_towers label"
- msgid "Use Towers"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_use_towers description"
- msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
- msgstr "작은 돌출 부분을 지원하기 위해 특수한 탑을 사용하십시오. 이 타워들은 그들이 지원하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다. "
- #: fdmprinter.def.json
- msgctxt "support_tower_diameter label"
- msgid "Tower Diameter"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_tower_diameter description"
- msgid "The diameter of a special tower."
- msgstr "특수 타워의 지름. "
- #: fdmprinter.def.json
- msgctxt "support_minimal_diameter label"
- msgid "Minimum Diameter"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_minimal_diameter description"
- msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
- msgstr "특수 지지대에 의해지지 될 작은 영역의 X / Y 방향의 최소 직경. "
- #: fdmprinter.def.json
- msgctxt "support_tower_roof_angle label"
- msgid "Tower Roof Angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_tower_roof_angle description"
- msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
- msgstr "타워 옥상의 각도입니다. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다. "
- #: fdmprinter.def.json
- msgctxt "platform_adhesion label"
- msgid "Build Plate Adhesion"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "platform_adhesion description"
- msgid "Adhesion"
- msgstr "부착 "
- #: fdmprinter.def.json
- msgctxt "prime_blob_enable label"
- msgid "Enable Prime Blob"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_blob_enable description"
- msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
- msgstr "인쇄하기 전에 얼룩으로 필라멘트를 프라이밍할지 여부. 이 설정을 켜면 인쇄하기 전에 압출기가 노즐에서 재료를 준비 할 수 있습니다. 가장자리 또는 스커트 인쇄는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다. "
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_x label"
- msgid "Extruder Prime X Position"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_x description"
- msgid "The X coordinate of the position where the nozzle primes at the start of printing."
- msgstr "인쇄가 시작될 때 노즐이 끝내는 위치의 X 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_y label"
- msgid "Extruder Prime Y Position"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "extruder_prime_pos_y description"
- msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
- msgstr "인쇄가 시작될 때 노즐이 끝내는 위치의 Y 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "adhesion_type label"
- msgid "Build Plate Adhesion Type"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "adhesion_type description"
- msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
- msgstr "귀하의 압출 및 빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 치마는 모델 주변에 인쇄 된 선이지만 모델에는 연결되어 있지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "adhesion_type option skirt"
- msgid "Skirt"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "adhesion_type option brim"
- msgid "Brim"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "adhesion_type option raft"
- msgid "Raft"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "adhesion_type option none"
- msgid "None"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "adhesion_extruder_nr label"
- msgid "Build Plate Adhesion Extruder"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "adhesion_extruder_nr description"
- msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
- msgstr "스커트 / 가장자리 / 래프트 인쇄에 사용하는 압출기 트레인. 이것은 다중 압출에 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "skirt_line_count label"
- msgid "Skirt Line Count"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skirt_line_count description"
- msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
- msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 \"0\"으로 설정하면 스커트가 비활성화됩니다. "
- #: fdmprinter.def.json
- msgctxt "skirt_gap label"
- msgid "Skirt Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skirt_gap description"
- msgid ""
- "The horizontal distance between the skirt and the first layer of the print.\n"
- "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
- msgstr "스커트와 인쇄물의 첫 번째 레이어 사이의 수평 거리입니다. 이것은 최소 거리이며, 여러 스커트 라인이이 거리에서 바깥쪽으로 확장됩니다. "
- #: fdmprinter.def.json
- msgctxt "skirt_brim_minimal_length label"
- msgid "Skirt/Brim Minimum Length"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skirt_brim_minimal_length description"
- msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
- msgstr "스커트 또는 고리의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 줄 수를 \"0\"으로 설정하면 무시됩니다."
- #: fdmprinter.def.json
- msgctxt "brim_width label"
- msgid "Brim Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "brim_width description"
- msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
- msgstr "모델에서 가장 바깥 쪽 가장자리까지의 거리입니다. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 인쇄 영역도 감소시킵니다. "
- #: fdmprinter.def.json
- msgctxt "brim_line_count label"
- msgid "Brim Line Count"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "brim_line_count description"
- msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
- msgstr "가장자리에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다. "
- #: fdmprinter.def.json
- msgctxt "brim_outside_only label"
- msgid "Brim Only on Outside"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "brim_outside_only description"
- msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
- msgstr "모델 바깥 쪽 가장자리에만 인쇄하십시오. 이렇게하면 나중에 제거해야하는 가장자리의 양이 줄어들지 만 침대 접착력은 그렇게 많이 줄어들지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "raft_margin label"
- msgid "Raft Extra Margin"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_margin description"
- msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
- msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 뗏목 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 인쇄물을 적게 차지하면서 더 강력한 래프트가 만들어집니다. "
- #: fdmprinter.def.json
- msgctxt "raft_airgap label"
- msgid "Raft Air Gap"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_airgap description"
- msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
- msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "layer_0_z_overlap label"
- msgid "Initial Layer Z Overlap"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "layer_0_z_overlap description"
- msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
- msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록하십시오. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다 "
- #: fdmprinter.def.json
- msgctxt "raft_surface_layers label"
- msgid "Raft Top Layers"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_layers description"
- msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
- msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2 층은 1보다 부드러운 표면을 만듭니다. "
- #: fdmprinter.def.json
- msgctxt "raft_surface_thickness label"
- msgid "Raft Top Layer Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_thickness description"
- msgid "Layer thickness of the top raft layers."
- msgstr "상단 래프트 레이어의 레이어 두께. "
- #: fdmprinter.def.json
- msgctxt "raft_surface_line_width label"
- msgid "Raft Top Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_line_width description"
- msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
- msgstr "래프트의 윗면에있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "raft_surface_line_spacing label"
- msgid "Raft Top Spacing"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_line_spacing description"
- msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
- msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다. "
- #: fdmprinter.def.json
- msgctxt "raft_interface_thickness label"
- msgid "Raft Middle Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_interface_thickness description"
- msgid "Layer thickness of the middle raft layer."
- msgstr "중간 래프트 층의 층 두께. "
- #: fdmprinter.def.json
- msgctxt "raft_interface_line_width label"
- msgid "Raft Middle Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_interface_line_width description"
- msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
- msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다. "
- #: fdmprinter.def.json
- msgctxt "raft_interface_line_spacing label"
- msgid "Raft Middle Spacing"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_interface_line_spacing description"
- msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
- msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을지지 할만큼 충분히 촘촘해야합니다. "
- #: fdmprinter.def.json
- msgctxt "raft_base_thickness label"
- msgid "Raft Base Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_base_thickness description"
- msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
- msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다. "
- #: fdmprinter.def.json
- msgctxt "raft_base_line_width label"
- msgid "Raft Base Line Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_base_line_width description"
- msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
- msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선이어야합니다. "
- #: fdmprinter.def.json
- msgctxt "raft_base_line_spacing label"
- msgid "Raft Line Spacing"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_base_line_spacing description"
- msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
- msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "raft_speed label"
- msgid "Raft Print Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_speed description"
- msgid "The speed at which the raft is printed."
- msgstr "래프트가 인쇄되는 속도. "
- #: fdmprinter.def.json
- msgctxt "raft_surface_speed label"
- msgid "Raft Top Print Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_speed description"
- msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
- msgstr "상단 래프트 레이어가 인쇄되는 속도입니다. 이 노즐은 조금 더 느리게 인쇄해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "raft_interface_speed label"
- msgid "Raft Middle Print Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_interface_speed description"
- msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
- msgstr "중간 래프트 층이 인쇄되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 인쇄되어야합니다. "
- #: fdmprinter.def.json
- msgctxt "raft_base_speed label"
- msgid "Raft Base Print Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_base_speed description"
- msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
- msgstr "기본 래프트 레이어가 인쇄되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 인쇄되어야합니다. "
- #: fdmprinter.def.json
- msgctxt "raft_acceleration label"
- msgid "Raft Print Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_acceleration description"
- msgid "The acceleration with which the raft is printed."
- msgstr "래프트가 인쇄되는 가속도. "
- #: fdmprinter.def.json
- msgctxt "raft_surface_acceleration label"
- msgid "Raft Top Print Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_acceleration description"
- msgid "The acceleration with which the top raft layers are printed."
- msgstr "상단 래프트 레이어가 인쇄되는 가속도입니다. "
- #: fdmprinter.def.json
- msgctxt "raft_interface_acceleration label"
- msgid "Raft Middle Print Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_interface_acceleration description"
- msgid "The acceleration with which the middle raft layer is printed."
- msgstr "중간 래프트 층이 인쇄되는 가속도. "
- #: fdmprinter.def.json
- msgctxt "raft_base_acceleration label"
- msgid "Raft Base Print Acceleration"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_base_acceleration description"
- msgid "The acceleration with which the base raft layer is printed."
- msgstr "기본 래프트 레이어가 인쇄되는 가속도입니다. "
- #: fdmprinter.def.json
- msgctxt "raft_jerk label"
- msgid "Raft Print Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_jerk description"
- msgid "The jerk with which the raft is printed."
- msgstr "래프트와 함께 인쇄되는 저크. "
- #: fdmprinter.def.json
- msgctxt "raft_surface_jerk label"
- msgid "Raft Top Print Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_jerk description"
- msgid "The jerk with which the top raft layers are printed."
- msgstr "상단 래프트 레이어가 인쇄되는 저크. "
- #: fdmprinter.def.json
- msgctxt "raft_interface_jerk label"
- msgid "Raft Middle Print Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_interface_jerk description"
- msgid "The jerk with which the middle raft layer is printed."
- msgstr "중간 래프트 층이 인쇄되는 저크. "
- #: fdmprinter.def.json
- msgctxt "raft_base_jerk label"
- msgid "Raft Base Print Jerk"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_base_jerk description"
- msgid "The jerk with which the base raft layer is printed."
- msgstr "기본 래프트 레이어가 인쇄되는 저크. "
- #: fdmprinter.def.json
- msgctxt "raft_fan_speed label"
- msgid "Raft Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_fan_speed description"
- msgid "The fan speed for the raft."
- msgstr "래프트의 팬 속도. "
- #: fdmprinter.def.json
- msgctxt "raft_surface_fan_speed label"
- msgid "Raft Top Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_surface_fan_speed description"
- msgid "The fan speed for the top raft layers."
- msgstr "상단 래프트 레이어의 팬 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "raft_interface_fan_speed label"
- msgid "Raft Middle Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_interface_fan_speed description"
- msgid "The fan speed for the middle raft layer."
- msgstr "중간 래프트 레이어의 팬 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "raft_base_fan_speed label"
- msgid "Raft Base Fan Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "raft_base_fan_speed description"
- msgid "The fan speed for the base raft layer."
- msgstr "기본 래프트 레이어의 팬 속도입니다. "
- #: fdmprinter.def.json
- msgctxt "dual label"
- msgid "Dual Extrusion"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "dual description"
- msgid "Settings used for printing with multiple extruders."
- msgstr "여러 압출기로 인쇄 할 때 사용되는 설정입니다. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_enable label"
- msgid "Enable Prime Tower"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_enable description"
- msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
- msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 인쇄 옆에 타워를 인쇄하십시오. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_size label"
- msgid "Prime Tower Size"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_size description"
- msgid "The width of the prime tower."
- msgstr "프라임 타워의 너비."
- #: fdmprinter.def.json
- msgctxt "prime_tower_min_volume label"
- msgid "Prime Tower Minimum Volume"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_min_volume description"
- msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
- msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_wall_thickness label"
- msgid "Prime Tower Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_wall_thickness description"
- msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
- msgstr "속이 빈 프라임 타워의 두께. 프라임 타워의 최소 볼륨의 절반보다 큰 두께는 조밀 한 소수 타워가됩니다. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_position_x label"
- msgid "Prime Tower X Position"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_position_x description"
- msgid "The x coordinate of the position of the prime tower."
- msgstr "프라임 타워 위치의 x 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_position_y label"
- msgid "Prime Tower Y Position"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_position_y description"
- msgid "The y coordinate of the position of the prime tower."
- msgstr "프라임 타워 위치의 y 좌표입니다. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_flow label"
- msgid "Prime Tower Flow"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_flow description"
- msgid "Flow compensation: the amount of material extruded is multiplied by this value."
- msgstr "유량 보상 : 압출 된 재료의 양에이 값을 곱합니다. "
- #: fdmprinter.def.json
- msgctxt "prime_tower_wipe_enabled label"
- msgid "Wipe Inactive Nozzle on Prime Tower"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "prime_tower_wipe_enabled description"
- msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
- msgstr "하나의 노즐로 프라임 타워를 인쇄 한 후, 다른 타워의 흙먼지 물질을 프라임 타워에서 닦아냅니다. "
- #: fdmprinter.def.json
- msgctxt "dual_pre_wipe label"
- msgid "Wipe Nozzle After Switch"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "dual_pre_wipe description"
- msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
- msgstr "압출기를 전환 한 후, 인쇄 된 첫 번째 것을 노즐에서 닦아 낸 물질을 닦아냅니다. 이렇게하면 흘러 나온 물질이 인쇄물의 표면 품질에 가장 해를 입히는 곳에서 안전한 천천히 닦아줍니다. "
- #: fdmprinter.def.json
- msgctxt "ooze_shield_enabled label"
- msgid "Enable Ooze Shield"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "ooze_shield_enabled description"
- msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
- msgstr "외장 방음 장치를 사용하십시오. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이있는 모델 주위에 쉘이 생깁니다. "
- #: fdmprinter.def.json
- msgctxt "ooze_shield_angle label"
- msgid "Ooze Shield Angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "ooze_shield_angle description"
- msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
- msgstr "방패망의 한 부분이 가질 최대 각도입니다. \"0\"도가 수직이고 \"90\"도가 수평입니다. 각도가 작 으면 방풍망이 덜 파손되지만 재료는 더 많습니다. "
- #: fdmprinter.def.json
- msgctxt "ooze_shield_dist label"
- msgid "Ooze Shield Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "ooze_shield_dist description"
- msgid "Distance of the ooze shield from the print, in the X/Y directions."
- msgstr "X / Y 방향으로 인쇄물에서 방패망까지의 거리. "
- #: fdmprinter.def.json
- msgctxt "meshfix label"
- msgid "Mesh Fixes"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "meshfix description"
- msgid "category_fixes"
- msgstr "카테고리 수정 "
- #: fdmprinter.def.json
- msgctxt "meshfix_union_all label"
- msgid "Union Overlapping Volumes"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "meshfix_union_all description"
- msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
- msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 인쇄하십시오. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "meshfix_union_all_remove_holes label"
- msgid "Remove All Holes"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "meshfix_union_all_remove_holes description"
- msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
- msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다. "
- #: fdmprinter.def.json
- msgctxt "meshfix_extensive_stitching label"
- msgid "Extensive Stitching"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "meshfix_extensive_stitching description"
- msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
- msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "meshfix_keep_open_polygons label"
- msgid "Keep Disconnected Faces"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "meshfix_keep_open_polygons description"
- msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
- msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수없는 파트가 유지됩니다. 이 옵션은 다른 모든 것이 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야합니다. "
- #: fdmprinter.def.json
- msgctxt "multiple_mesh_overlap label"
- msgid "Merged Meshes Overlap"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "multiple_mesh_overlap description"
- msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
- msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다. "
- #: fdmprinter.def.json
- msgctxt "carve_multiple_volumes label"
- msgid "Remove Mesh Intersection"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "carve_multiple_volumes description"
- msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
- msgstr "여러 메시가 서로 겹치는 영역을 제거하십시오. 병합 된 이중 물체가 서로 중첩되는 경우이 값이 사용될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "alternate_carve_order label"
- msgid "Alternate Mesh Removal"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "alternate_carve_order description"
- msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
- msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽 히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다. "
- #: fdmprinter.def.json
- msgctxt "blackmagic label"
- msgid "Special Modes"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "blackmagic description"
- msgid "category_blackmagic"
- msgstr "블랙매직 카테고리 "
- #: fdmprinter.def.json
- msgctxt "print_sequence label"
- msgid "Print Sequence"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "print_sequence description"
- msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
- msgstr "한 번에 한 레이어 씩 모든 모델을 인쇄할지 또는 한 모델이 완료 될 때까지 기다렸다가 다음 모델로 넘어갈 지 여부. 한 번에 한 가지 모드는 모든 모델이 분리되어 전체 프린트 헤드가 중간에서 움직일 수 있고 모든 모델이 노즐과 X / Y 축 사이의 거리보다 낮은 경우에만 가능합니다. "
- #: fdmprinter.def.json
- msgctxt "print_sequence option all_at_once"
- msgid "All at Once"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "print_sequence option one_at_a_time"
- msgid "One at a Time"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_mesh label"
- msgid "Infill Mesh"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_mesh description"
- msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
- msgstr "관련 메쉬를 사용하여 겹치는 다른 메쉬의 충진율을 수정하십시오. 다른 메쉬의 충진 영역을 본 메쉬의 영역으로 대체합니다. 본 메쉬에 하나의 벽과 상단 / 밑바닥 스킨만을 인쇄하는 것이 좋습니다. "
- #: fdmprinter.def.json
- msgctxt "infill_mesh_order label"
- msgid "Infill Mesh Order"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_mesh_order description"
- msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
- msgstr "어떤 충진 메쉬가 다른 충진 메쉬의 충진 내부에 있는지 결정합니다. 더 높은 차수의 충진 메쉬는 더 낮은 차수와 일반적인 메쉬로 충진 메쉬의 충진을 수정합니다. "
- #: fdmprinter.def.json
- msgctxt "cutting_mesh label"
- msgid "Cutting Mesh"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "cutting_mesh description"
- msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
- msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한하십시오. 이 기능을 사용하면 다른 설정과 전체 압출기로 하나의 메쉬 인쇄 영역을 만들 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "mold_enabled label"
- msgid "Mold"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mold_enabled description"
- msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
- msgstr "모형을 모형으로 인쇄하여 모형에 모형과 유사한 모형을 만들 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "mold_width label"
- msgid "Minimal Mold Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mold_width description"
- msgid "The minimal distance between the ouside of the mold and the outside of the model."
- msgstr "몰드의 바깥 쪽과 모델의 바깥 쪽 사이의 최소 거리입니다. "
- #: fdmprinter.def.json
- msgctxt "mold_roof_height label"
- msgid "Mold Roof Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mold_roof_height description"
- msgid "The height above horizontal parts in your model which to print mold."
- msgstr "모델의 수평 부분 위의 높이로 금형을 인쇄합니다. "
- #: fdmprinter.def.json
- msgctxt "mold_angle label"
- msgid "Mold Angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mold_angle description"
- msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
- msgstr "몰드에 대해 생성 된 외벽의 돌출 각도입니다. \"0\"도의 각은 금형의 외각을 수직으로 만들고 \"90\"도의 각은 모형의 외형을 모델의 외형으로 만듭니다. "
- #: fdmprinter.def.json
- msgctxt "support_mesh label"
- msgid "Support Mesh"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_mesh description"
- msgid "Use this mesh to specify support areas. This can be used to generate support structure."
- msgstr "본 메시를 사용하여 지원 영역을 지정하십시오. 이것은 지원 구조를 생성하는 데 사용할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "support_mesh_drop_down label"
- msgid "Drop Down Support Mesh"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_mesh_drop_down description"
- msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
- msgstr "지지 메쉬 아래의 모든 부분을 지원하여지지 메쉬에 돌출이 없어야 합니다. "
- #: fdmprinter.def.json
- msgctxt "anti_overhang_mesh label"
- msgid "Anti Overhang Mesh"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "anti_overhang_mesh description"
- msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
- msgstr "본 메쉬를 사용하여 모델에서 돌출부로 감지 할 부분을 지정합니다. 이것은 원하지 않는 지원 구조를 제거하는 데 사용될 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "magic_mesh_surface_mode label"
- msgid "Surface Mode"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_mesh_surface_mode description"
- msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
- msgstr "모델을 표면 만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급하십시오. 일반 인쇄 모드는 동봉 된 볼륨 만 인쇄합니다. \"표면\"은 아무런 충전물없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 인쇄합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 인쇄합니다. "
- #: fdmprinter.def.json
- msgctxt "magic_mesh_surface_mode option normal"
- msgid "Normal"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_mesh_surface_mode option surface"
- msgid "Surface"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_mesh_surface_mode option both"
- msgid "Both"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_spiralize label"
- msgid "Spiralize Outer Contour"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_spiralize description"
- msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
- msgstr "스파이럴 라이즈는 바깥 쪽 가장자리의 Z 이동을 부드럽게합니다. 이렇게하면 인쇄물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 인쇄합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어있을 때만 활성화 해야 합니다. "
- #: fdmprinter.def.json
- msgctxt "smooth_spiralized_contours label"
- msgid "Smooth Spiralized Contours"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "smooth_spiralized_contours description"
- msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
- msgstr "나선형 윤곽선을 부드럽게하여 Z 솔기의 가시성을 줄이십시오 (Z- 솔기는 인쇄물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게하는 경향이 있습니다. "
- #: fdmprinter.def.json
- msgctxt "experimental label"
- msgid "Experimental"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "experimental description"
- msgid "experimental!"
- msgstr "실험적인 "
- #: fdmprinter.def.json
- msgctxt "draft_shield_enabled label"
- msgid "Enable Draft Shield"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "draft_shield_enabled description"
- msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
- msgstr "이렇게하면 모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기와 차폐를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다. "
- #: fdmprinter.def.json
- msgctxt "draft_shield_dist label"
- msgid "Draft Shield X/Y Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "draft_shield_dist description"
- msgid "Distance of the draft shield from the print, in the X/Y directions."
- msgstr "X / Y 방향으로 인쇄에서 드래프트 쉴드까지의 거리입니다. "
- #: fdmprinter.def.json
- msgctxt "draft_shield_height_limitation label"
- msgid "Draft Shield Limitation"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "draft_shield_height_limitation description"
- msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
- msgstr "드래프트 쉴드의 높이를 설정하십시오. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 인쇄하도록 선택하십시오. "
- #: fdmprinter.def.json
- msgctxt "draft_shield_height_limitation option full"
- msgid "Full"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "draft_shield_height_limitation option limited"
- msgid "Limited"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "draft_shield_height label"
- msgid "Draft Shield Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "draft_shield_height description"
- msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
- msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 인쇄되지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "conical_overhang_enabled label"
- msgid "Make Overhang Printable"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "conical_overhang_enabled description"
- msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
- msgstr "최소 지원이 필요하도록 인쇄 된 모델의 형상을 변경하십시오. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다. "
- #: fdmprinter.def.json
- msgctxt "conical_overhang_angle label"
- msgid "Maximum Model Angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "conical_overhang_angle description"
- msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
- msgstr "오버행 각도가 인쇄 가능하게 된 후 최대 각도. \"0\"도 각의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. \"90\"도 각은 모델을 변경하지 않습니다. "
- #: fdmprinter.def.json
- msgctxt "coasting_enable label"
- msgid "Enable Coasting"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "coasting_enable description"
- msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
- msgstr "코스팅(Coasting)은 돌출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출 된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 인쇄하는 데 사용됩니다. "
- #: fdmprinter.def.json
- msgctxt "coasting_volume label"
- msgid "Coasting Volume"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "coasting_volume description"
- msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
- msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다. "
- #: fdmprinter.def.json
- msgctxt "coasting_min_volume label"
- msgid "Minimum Volume Before Coasting"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "coasting_min_volume description"
- msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
- msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 볼륨. 작은 압출 경로의 경우 보우 덴 튜브에 가해지는 압력이 적기 때문에 연안 부피가 선형 적으로 조정됩니다. 이 값은 항상 Coasting Volume보다 커야합니다. "
- #: fdmprinter.def.json
- msgctxt "coasting_speed label"
- msgid "Coasting Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "coasting_speed description"
- msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
- msgstr "코스팅(Coasting) 시, 이동 속도. 돌출 경로의 속도에 상대적입니다. 해안 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100 %보다 약간 작은 값을 권합니다. "
- #: fdmprinter.def.json
- msgctxt "skin_outline_count label"
- msgid "Extra Skin Wall Count"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_outline_count description"
- msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
- msgstr "위쪽 / 아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 충진재로 시작하는 지붕이 향상됩니다. "
- #: fdmprinter.def.json
- msgctxt "skin_alternate_rotation label"
- msgid "Alternate Skin Rotation"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "skin_alternate_rotation description"
- msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
- msgstr "위쪽 / 아래쪽 레이어가 인쇄되는 방향을 바꿉니다. 보통 대각선으로 만 인쇄됩니다. 이 설정은 X 전용 및 Y 전용 방향을 추가합니다. "
- #: fdmprinter.def.json
- msgctxt "support_conical_enabled label"
- msgid "Enable Conical Support"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_conical_enabled description"
- msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
- msgstr "실험적 기능 : 오버행보다 하단에서 지원 영역을 작게 만듭니다. "
- #: fdmprinter.def.json
- msgctxt "support_conical_angle label"
- msgid "Conical Support Angle"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_conical_angle description"
- msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
- msgstr "원추형 지지점의 기울기 각도입니다. \"0\"도가 수직이고 \"90\"도가 수평입니다. 각도가 작 으면 지지대가 더 튼튼 해지지 만 더 많은 재질로 구성됩니다. 음수 각도는 받침대의 받침대가 상단보다 넓게 만듭니다. "
- #: fdmprinter.def.json
- msgctxt "support_conical_min_width label"
- msgid "Conical Support Minimum Width"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "support_conical_min_width description"
- msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
- msgstr "원추형지지 영역의베이스가 축소되는 최소 너비. 폭이 좁 으면 불안정한지지 구조가 생길 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "infill_hollow label"
- msgid "Hollow Out Objects"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "infill_hollow description"
- msgid "Remove all infill and make the inside of the object eligible for support."
- msgstr "모든 충진재를 제거하고 물체의 내부를 지탱할 수있게하십시오. "
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_enabled label"
- msgid "Fuzzy Skin"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_enabled description"
- msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
- msgstr "외벽을 인쇄하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿 해 보입니다. "
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_thickness label"
- msgid "Fuzzy Skin Thickness"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_thickness description"
- msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
- msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로이를 외벽 너비 아래로 유지하는 것이 좋습니다. "
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_point_density label"
- msgid "Fuzzy Skin Density"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_point_density description"
- msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
- msgstr "레이어의 각 다각형에 도입 된 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다. "
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_point_dist label"
- msgid "Fuzzy Skin Point Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "magic_fuzzy_skin_point_dist description"
- msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
- msgstr "각 선분에 도입 된 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려 지므로 높은 부드러움으로 인해 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_enabled label"
- msgid "Wire Printing"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_enabled description"
- msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
- msgstr "얇은 공기 중에서 인쇄하는 스파 스 웨브 구조로 외부 표면 만 인쇄하십시오. 이것은 상향 및 대각선 방향으로 연결되어있는 주어진 Z 간격으로 모델의 윤곽을 수평으로 인쇄함으로써 실현됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_height label"
- msgid "WP Connection Height"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_height description"
- msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
- msgstr "두 개의 수평 부분 사이의 상향 및 대각선 방향의 높이입니다. 이것은 네트 구조의 전체 밀도를 결정합니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_inset label"
- msgid "WP Roof Inset Distance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_inset description"
- msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
- msgstr "지붕에서 연결을 할 때 안쪽까지 윤곽선을 그립니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed label"
- msgid "WP Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed description"
- msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
- msgstr "재료를 압출 할 때 노즐이 움직이는 속도. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_bottom label"
- msgid "WP Bottom Printing Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_bottom description"
- msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
- msgstr "빌드 플랫폼을 만지는 유일한 레이어 인 첫 번째 레이어 인쇄 속도. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_up label"
- msgid "WP Upward Printing Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_up description"
- msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
- msgstr "얇은 공기 속에서 위쪽으로 선을 인쇄하는 속도. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_down label"
- msgid "WP Downward Printing Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_down description"
- msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
- msgstr "대각선 방향으로 선을 인쇄하는 속도. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_flat label"
- msgid "WP Horizontal Printing Speed"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_printspeed_flat description"
- msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
- msgstr "모델의 수평 윤곽 인쇄 속도입니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_flow label"
- msgid "WP Flow"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_flow description"
- msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
- msgstr "유량 보상 : 압출 된 재료의 양에이 값을 곱합니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_flow_connection label"
- msgid "WP Connection Flow"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_flow_connection description"
- msgid "Flow compensation when going up or down. Only applies to Wire Printing."
- msgstr "위 또는 아래로 이동할 때 유량 보정. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_flow_flat label"
- msgid "WP Flat Flow"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_flow_flat description"
- msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
- msgstr "평평한 선을 인쇄 할 때 유량 보정. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_top_delay label"
- msgid "WP Top Delay"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_top_delay description"
- msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
- msgstr "상향 라인이 강화 될 수 있도록 상향 이동 후 지연 시간. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_bottom_delay label"
- msgid "WP Bottom Delay"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_bottom_delay description"
- msgid "Delay time after a downward move. Only applies to Wire Printing."
- msgstr "하강 후 지연 시간. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_flat_delay label"
- msgid "WP Flat Delay"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_flat_delay description"
- msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
- msgstr "두 개의 수평 세그먼트 사이의 지연 시간. 이러한 지연을 도입하면 연결 지점에서 이전 레이어와의 접착력이 향상 될 수 있으며 너무 긴 지연으로 인해 처짐이 발생할 수 있습니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_up_half_speed label"
- msgid "WP Ease Upward"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_up_half_speed description"
- msgid ""
- "Distance of an upward move which is extruded with half speed.\n"
- "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
- msgstr "기본 속도의 반으로 돌출 된 상향 이동 거리. 이로 인해 이전 레이어에 더 나은 접착력을 유발할 수 있지만 레이어에있는 소재는 너무 많이 가열하지 않습니다. 와이어 인쇄에만 적용됩니다."
- #: fdmprinter.def.json
- msgctxt "wireframe_top_jump label"
- msgid "WP Knot Size"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_top_jump description"
- msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
- msgstr "상향 선의 상단에 작은 매듭을 만들어 연속적인 수평 레이어에 연결할 수있는 기회를 얻습니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_fall_down label"
- msgid "WP Fall Down"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_fall_down description"
- msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
- msgstr "위쪽으로 밀어 낸 후 재료가 떨어지는 거리. 이 거리는 보상됩니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_drag_along label"
- msgid "WP Drag Along"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_drag_along description"
- msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
- msgstr "대각선 방향으로 돌출 된 돌출부의 재료가 위쪽으로 밀어내는 거리. 이 거리는 보상됩니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_strategy label"
- msgid "WP Strategy"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_strategy description"
- msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
- msgstr "각 연결 지점에서 두 개의 연속 된 레이어가 연결되도록하는 전략입니다. 후퇴를하면 상향 선이 올바른 위치에서 경화되지만 필라멘트 연삭이 발생할 수 있습니다. 상향 선의 끝에 매듭을 만들어 연결 기회를 높이고 선을 차게 할 수 있습니다. 그러나 느린 인쇄 속도가 필요할 수 있습니다. 또 다른 전략은 상향 라인의 윗부분의 처짐을 보충하는 것입니다. 그러나 선은 항상 예측대로 떨어지지는 않습니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_strategy option compensate"
- msgid "Compensate"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_strategy option knot"
- msgid "Knot"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_strategy option retract"
- msgid "Retract"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_straight_before_down label"
- msgid "WP Straighten Downward Lines"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_straight_before_down description"
- msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
- msgstr "수평선 조각에 의해 덮여있는 비스듬히 하향 선의 백분율. 이렇게하면 상향 선의 맨 위 지점이 처지는 것을 방지 할 수 있습니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_fall_down label"
- msgid "WP Roof Fall Down"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_fall_down description"
- msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
- msgstr "수평 지붕 라인이 '얇은 공기 안에'인쇄 된 거리는 인쇄 될 때 떨어집니다. 이 거리는 보상됩니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_drag_along label"
- msgid "WP Roof Drag Along"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_drag_along description"
- msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
- msgstr "루프의 외곽 윤곽으로 돌아갈 때 끌린 내향 선의 끝 부분 거리. 이 거리는 보상됩니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_outer_delay label"
- msgid "WP Roof Outer Delay"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_roof_outer_delay description"
- msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
- msgstr "지붕이 될 구멍의 바깥 둘레에서 보낸 시간. 긴 시간은 더 나은 연결을 보장 할 수 있습니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "wireframe_nozzle_clearance label"
- msgid "WP Nozzle Clearance"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "wireframe_nozzle_clearance description"
- msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
- msgstr "노즐과 수평 아래쪽 라인 사이의 거리. 클리어런스가 클수록 비스듬한 각도에서 비스듬히 아래쪽으로 선이 그어져 다음 층과의 연결이보다 적어집니다. 와이어 인쇄에만 적용됩니다. "
- #: fdmprinter.def.json
- msgctxt "command_line_settings label"
- msgid "Command Line Settings"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "command_line_settings description"
- msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
- msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다. "
- #: fdmprinter.def.json
- msgctxt "center_object label"
- msgid "Center object"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "center_object description"
- msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
- msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간, (0,0)에 객체를 중심에 맞출어야 할지의 여부 "
- #: fdmprinter.def.json
- msgctxt "mesh_position_x label"
- msgid "Mesh position x"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mesh_position_x description"
- msgid "Offset applied to the object in the x direction."
- msgstr "x 방향으로 객체에 적용된 오프셋입니다. "
- #: fdmprinter.def.json
- msgctxt "mesh_position_y label"
- msgid "Mesh position y"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mesh_position_y description"
- msgid "Offset applied to the object in the y direction."
- msgstr "y 방향으로 객체에 적용된 오프셋입니다. "
- #: fdmprinter.def.json
- msgctxt "mesh_position_z label"
- msgid "Mesh position z"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mesh_position_z description"
- msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
- msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다. "
- #: fdmprinter.def.json
- msgctxt "mesh_rotation_matrix label"
- msgid "Mesh Rotation Matrix"
- msgstr ""
- #: fdmprinter.def.json
- msgctxt "mesh_rotation_matrix description"
- msgid "Transformation matrix to be applied to the model when loading it from file."
- msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다. "
|