fdmprinter.def.json.po 255 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755
  1. # Cura
  2. # Copyright (C) 2018 Ultimaker
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2018.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 3.4\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2018-03-29 08:36+0200\n"
  11. "PO-Revision-Date: 2018-04-19 13:26+0900\n"
  12. "Last-Translator: Jinbuhm Kim <Jinbuhm.Kim@gmail.com>\n"
  13. "Language-Team: Jinbum Kim <Jinbuhm.Kim@gmail.com>, Korean <info@bothof.nl>\n"
  14. "Language: ko_KR\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=1; plural=0;\n"
  19. "X-Generator: Poedit 2.0.6\n"
  20. #: fdmprinter.def.json
  21. msgctxt "machine_settings label"
  22. msgid "Machine"
  23. msgstr "기기"
  24. #: fdmprinter.def.json
  25. msgctxt "machine_settings description"
  26. msgid "Machine specific settings"
  27. msgstr "기기 세부 설정"
  28. #: fdmprinter.def.json
  29. msgctxt "machine_name label"
  30. msgid "Machine Type"
  31. msgstr "기기 유형"
  32. #: fdmprinter.def.json
  33. msgctxt "machine_name description"
  34. msgid "The name of your 3D printer model."
  35. msgstr "3D 프린터 모델의 이름."
  36. #: fdmprinter.def.json
  37. msgctxt "machine_show_variants label"
  38. msgid "Show Machine Variants"
  39. msgstr "기기 세부 설정 표시"
  40. #: fdmprinter.def.json
  41. msgctxt "machine_show_variants description"
  42. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  43. msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부."
  44. #: fdmprinter.def.json
  45. msgctxt "machine_start_gcode label"
  46. msgid "Start G-code"
  47. msgstr "시작 GCode"
  48. #: fdmprinter.def.json
  49. msgctxt "machine_start_gcode description"
  50. msgid ""
  51. "G-code commands to be executed at the very start - separated by \n"
  52. "."
  53. msgstr "시작과 동시에형실행될 G 코드 명령어 \n."
  54. #: fdmprinter.def.json
  55. msgctxt "machine_end_gcode label"
  56. msgid "End G-code"
  57. msgstr "End GCode"
  58. #: fdmprinter.def.json
  59. msgctxt "machine_end_gcode description"
  60. msgid ""
  61. "G-code commands to be executed at the very end - separated by \n"
  62. "."
  63. msgstr "맨 마지막에 실행될 G 코드 명령 \n."
  64. #: fdmprinter.def.json
  65. msgctxt "material_guid label"
  66. msgid "Material GUID"
  67. msgstr "재료 GUID"
  68. #: fdmprinter.def.json
  69. msgctxt "material_guid description"
  70. msgid "GUID of the material. This is set automatically. "
  71. msgstr "재료의 GUID. 자동으로 설정됩니다. "
  72. #: fdmprinter.def.json
  73. msgctxt "material_bed_temp_wait label"
  74. msgid "Wait for Build Plate Heatup"
  75. msgstr "빌드 플레이트가 가열될 때까지 기다리십시오"
  76. #: fdmprinter.def.json
  77. msgctxt "material_bed_temp_wait description"
  78. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  79. msgstr "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부."
  80. #: fdmprinter.def.json
  81. msgctxt "material_print_temp_wait label"
  82. msgid "Wait for Nozzle Heatup"
  83. msgstr "노즐이 가열될 때까지 기다리기"
  84. #: fdmprinter.def.json
  85. msgctxt "material_print_temp_wait description"
  86. msgid "Whether to wait until the nozzle temperature is reached at the start."
  87. msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부."
  88. #: fdmprinter.def.json
  89. msgctxt "material_print_temp_prepend label"
  90. msgid "Include Material Temperatures"
  91. msgstr "재료의 온도 포함하기"
  92. #: fdmprinter.def.json
  93. msgctxt "material_print_temp_prepend description"
  94. 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."
  95. msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura는 이 설정을 자동으로 비활성화 합니다."
  96. #: fdmprinter.def.json
  97. msgctxt "material_bed_temp_prepend label"
  98. msgid "Include Build Plate Temperature"
  99. msgstr "빌드 플레이트 온도 포함"
  100. #: fdmprinter.def.json
  101. msgctxt "material_bed_temp_prepend description"
  102. msgid "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."
  103. msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura는 이 설정을 자동으로 비활성화 합니다."
  104. #: fdmprinter.def.json
  105. msgctxt "machine_width label"
  106. msgid "Machine Width"
  107. msgstr "기기 너비"
  108. #: fdmprinter.def.json
  109. msgctxt "machine_width description"
  110. msgid "The width (X-direction) of the printable area."
  111. msgstr "프린팅 가능 영역의 폭 (X 방향)."
  112. #: fdmprinter.def.json
  113. msgctxt "machine_depth label"
  114. msgid "Machine Depth"
  115. msgstr "기기 깊이"
  116. #: fdmprinter.def.json
  117. msgctxt "machine_depth description"
  118. msgid "The depth (Y-direction) of the printable area."
  119. msgstr "프린팅 가능 영역의 깊이 (Y 방향)"
  120. #: fdmprinter.def.json
  121. msgctxt "machine_shape label"
  122. msgid "Build Plate Shape"
  123. msgstr "빌드 플레이트 모양"
  124. #: fdmprinter.def.json
  125. msgctxt "machine_shape description"
  126. msgid "The shape of the build plate without taking unprintable areas into account."
  127. msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양."
  128. #: fdmprinter.def.json
  129. msgctxt "machine_shape option rectangular"
  130. msgid "Rectangular"
  131. msgstr "직사각형"
  132. #: fdmprinter.def.json
  133. msgctxt "machine_shape option elliptic"
  134. msgid "Elliptic"
  135. msgstr "타원"
  136. #: fdmprinter.def.json
  137. msgctxt "machine_buildplate_type label"
  138. msgid "Build Plate Material"
  139. msgstr "빌드 플레이트 재질"
  140. #: fdmprinter.def.json
  141. msgctxt "machine_buildplate_type description"
  142. msgid "The material of the build plate installed on the printer."
  143. msgstr "프린터에 설치된 빌드 플레이트의 재질."
  144. #: fdmprinter.def.json
  145. msgctxt "machine_buildplate_type option glass"
  146. msgid "Glass"
  147. msgstr "유리"
  148. #: fdmprinter.def.json
  149. msgctxt "machine_buildplate_type option aluminum"
  150. msgid "Aluminum"
  151. msgstr "알루미늄"
  152. #: fdmprinter.def.json
  153. msgctxt "machine_height label"
  154. msgid "Machine Height"
  155. msgstr "기기 높이"
  156. #: fdmprinter.def.json
  157. msgctxt "machine_height description"
  158. msgid "The height (Z-direction) of the printable area."
  159. msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다."
  160. #: fdmprinter.def.json
  161. msgctxt "machine_heated_bed label"
  162. msgid "Has Heated Build Plate"
  163. msgstr "히팅 빌드 플레이트가 있음"
  164. #: fdmprinter.def.json
  165. msgctxt "machine_heated_bed description"
  166. msgid "Whether the machine has a heated build plate present."
  167. msgstr "기기에 히팅 빌드 플레이트가 있는지 여부."
  168. #: fdmprinter.def.json
  169. msgctxt "machine_center_is_zero label"
  170. msgid "Is Center Origin"
  171. msgstr "센터 원점"
  172. #: fdmprinter.def.json
  173. msgctxt "machine_center_is_zero description"
  174. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  175. msgstr "프린터의 0 위치의 X/Y 좌표가 프린팅 가능 영역의 중앙에 있는지 여부."
  176. #: fdmprinter.def.json
  177. msgctxt "machine_extruder_count label"
  178. msgid "Number of Extruders"
  179. msgstr "익스트루더의 수"
  180. #: fdmprinter.def.json
  181. msgctxt "machine_extruder_count description"
  182. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  183. msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다."
  184. #: fdmprinter.def.json
  185. msgctxt "extruders_enabled_count label"
  186. msgid "Number of Extruders that are enabled"
  187. msgstr "활성화된 익스트루더의 수"
  188. #: fdmprinter.def.json
  189. msgctxt "extruders_enabled_count description"
  190. msgid "Number of extruder trains that are enabled; automatically set in software"
  191. msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정"
  192. #: fdmprinter.def.json
  193. msgctxt "machine_nozzle_tip_outer_diameter label"
  194. msgid "Outer nozzle diameter"
  195. msgstr "노즐의 외경"
  196. #: fdmprinter.def.json
  197. msgctxt "machine_nozzle_tip_outer_diameter description"
  198. msgid "The outer diameter of the tip of the nozzle."
  199. msgstr "노즐 끝의 외경."
  200. #: fdmprinter.def.json
  201. msgctxt "machine_nozzle_head_distance label"
  202. msgid "Nozzle length"
  203. msgstr "노즐 길이"
  204. #: fdmprinter.def.json
  205. msgctxt "machine_nozzle_head_distance description"
  206. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  207. msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다."
  208. #: fdmprinter.def.json
  209. msgctxt "machine_nozzle_expansion_angle label"
  210. msgid "Nozzle angle"
  211. msgstr "노즐 각도"
  212. #: fdmprinter.def.json
  213. msgctxt "machine_nozzle_expansion_angle description"
  214. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  215. msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다."
  216. #: fdmprinter.def.json
  217. msgctxt "machine_heat_zone_length label"
  218. msgid "Heat zone length"
  219. msgstr "가열 영역 길이"
  220. #: fdmprinter.def.json
  221. msgctxt "machine_heat_zone_length description"
  222. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  223. msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리."
  224. #: fdmprinter.def.json
  225. msgctxt "machine_filament_park_distance label"
  226. msgid "Filament Park Distance"
  227. msgstr "필라멘트 park 거리"
  228. #: fdmprinter.def.json
  229. msgctxt "machine_filament_park_distance description"
  230. msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  231. msgstr "익스트루더가 더 이상 사용되지 않을 때 필라멘트를 파킹 할 노즐의 끝에서부터의 거리."
  232. #: fdmprinter.def.json
  233. msgctxt "machine_nozzle_temp_enabled label"
  234. msgid "Enable Nozzle Temperature Control"
  235. msgstr "노즐 온도 조절 활성화"
  236. #: fdmprinter.def.json
  237. msgctxt "machine_nozzle_temp_enabled description"
  238. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  239. msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오."
  240. #: fdmprinter.def.json
  241. msgctxt "machine_nozzle_heat_up_speed label"
  242. msgid "Heat up speed"
  243. msgstr "가열 속도"
  244. #: fdmprinter.def.json
  245. msgctxt "machine_nozzle_heat_up_speed description"
  246. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  247. msgstr "노즐이 가열되는 속도 (°C/s)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다."
  248. #: fdmprinter.def.json
  249. msgctxt "machine_nozzle_cool_down_speed label"
  250. msgid "Cool down speed"
  251. msgstr "냉각 속도"
  252. #: fdmprinter.def.json
  253. msgctxt "machine_nozzle_cool_down_speed description"
  254. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  255. msgstr "노즐이 냉각되는 속도 (°C/s)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다."
  256. #: fdmprinter.def.json
  257. msgctxt "machine_min_cool_heat_time_window label"
  258. msgid "Minimal Time Standby Temperature"
  259. msgstr "최소 대기 시간"
  260. #: fdmprinter.def.json
  261. msgctxt "machine_min_cool_heat_time_window description"
  262. 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."
  263. msgstr "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다."
  264. #: fdmprinter.def.json
  265. msgctxt "machine_gcode_flavor label"
  266. msgid "G-code flavour"
  267. msgstr "Gcode 유형"
  268. #: fdmprinter.def.json
  269. msgctxt "machine_gcode_flavor description"
  270. msgid "The type of g-code to be generated."
  271. msgstr "생성 될 gcode의 유형."
  272. #: fdmprinter.def.json
  273. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  274. msgid "Marlin"
  275. msgstr "Marlin"
  276. #: fdmprinter.def.json
  277. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  278. msgid "Marlin (Volumetric)"
  279. msgstr "Marlin (부피 측정법)"
  280. #: fdmprinter.def.json
  281. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  282. msgid "RepRap"
  283. msgstr "RepRap"
  284. #: fdmprinter.def.json
  285. msgctxt "machine_gcode_flavor option UltiGCode"
  286. msgid "Ultimaker 2"
  287. msgstr "Ultimaker 2"
  288. #: fdmprinter.def.json
  289. msgctxt "machine_gcode_flavor option Griffin"
  290. msgid "Griffin"
  291. msgstr "Griffin"
  292. #: fdmprinter.def.json
  293. msgctxt "machine_gcode_flavor option Makerbot"
  294. msgid "Makerbot"
  295. msgstr "Makerbot"
  296. #: fdmprinter.def.json
  297. msgctxt "machine_gcode_flavor option BFB"
  298. msgid "Bits from Bytes"
  299. msgstr "Bits from Bytes"
  300. #: fdmprinter.def.json
  301. msgctxt "machine_gcode_flavor option MACH3"
  302. msgid "Mach3"
  303. msgstr "Mach3"
  304. #: fdmprinter.def.json
  305. msgctxt "machine_gcode_flavor option Repetier"
  306. msgid "Repetier"
  307. msgstr "Repetier"
  308. #: fdmprinter.def.json
  309. msgctxt "machine_firmware_retract label"
  310. msgid "Firmware Retraction"
  311. msgstr "펌웨어 리트렉션"
  312. #: fdmprinter.def.json
  313. msgctxt "machine_firmware_retract description"
  314. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  315. msgstr "재료를 리트렉션하는 G1 명령어에서 E 속성을 사용하는 대신 펌웨어 리트렉션 명령어(G10/G11)를 사용할 지 여부."
  316. #: fdmprinter.def.json
  317. msgctxt "machine_disallowed_areas label"
  318. msgid "Disallowed areas"
  319. msgstr "허용되지 않는 지역"
  320. #: fdmprinter.def.json
  321. msgctxt "machine_disallowed_areas description"
  322. msgid "A list of polygons with areas the print head is not allowed to enter."
  323. msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다."
  324. #: fdmprinter.def.json
  325. msgctxt "nozzle_disallowed_areas label"
  326. msgid "Nozzle Disallowed Areas"
  327. msgstr "노즐이 위치할 수 없는 구역"
  328. #: fdmprinter.def.json
  329. msgctxt "nozzle_disallowed_areas description"
  330. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  331. msgstr "노즐이 위치할 수 없는 구역의 목록입니다."
  332. #: fdmprinter.def.json
  333. msgctxt "machine_head_polygon label"
  334. msgid "Machine head polygon"
  335. msgstr "머신 헤드 폴리곤"
  336. #: fdmprinter.def.json
  337. msgctxt "machine_head_polygon description"
  338. msgid "A 2D silhouette of the print head (fan caps excluded)."
  339. msgstr "프린트 헤드의 2D 실루엣 (팬 캡 제외)."
  340. #: fdmprinter.def.json
  341. msgctxt "machine_head_with_fans_polygon label"
  342. msgid "Machine head & Fan polygon"
  343. msgstr "머신 헤드 및 팬 폴리곤"
  344. #: fdmprinter.def.json
  345. msgctxt "machine_head_with_fans_polygon description"
  346. msgid "A 2D silhouette of the print head (fan caps included)."
  347. msgstr "프린트 헤드의 2D 실루엣 (팬 뚜껑 포함)."
  348. #: fdmprinter.def.json
  349. msgctxt "gantry_height label"
  350. msgid "Gantry height"
  351. msgstr "갠트리 높이"
  352. #: fdmprinter.def.json
  353. msgctxt "gantry_height description"
  354. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  355. msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)."
  356. #: fdmprinter.def.json
  357. msgctxt "machine_nozzle_id label"
  358. msgid "Nozzle ID"
  359. msgstr "노즐 ID"
  360. #: fdmprinter.def.json
  361. msgctxt "machine_nozzle_id description"
  362. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  363. msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더의 노즐 ID."
  364. #: fdmprinter.def.json
  365. msgctxt "machine_nozzle_size label"
  366. msgid "Nozzle Diameter"
  367. msgstr "노즐 지름"
  368. #: fdmprinter.def.json
  369. msgctxt "machine_nozzle_size description"
  370. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  371. msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오."
  372. #: fdmprinter.def.json
  373. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  374. msgid "Offset With Extruder"
  375. msgstr "익스트루더로 오프셋"
  376. #: fdmprinter.def.json
  377. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  378. msgid "Apply the extruder offset to the coordinate system."
  379. msgstr "익스트루더 오프셋을 좌표계에 적용하십시오."
  380. #: fdmprinter.def.json
  381. msgctxt "extruder_prime_pos_z label"
  382. msgid "Extruder Prime Z Position"
  383. msgstr "익스트루더 프라임 Z 포지션"
  384. #: fdmprinter.def.json
  385. msgctxt "extruder_prime_pos_z description"
  386. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  387. msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다."
  388. #: fdmprinter.def.json
  389. msgctxt "extruder_prime_pos_abs label"
  390. msgid "Absolute Extruder Prime Position"
  391. msgstr "독립 익스트루더 프라임 포지션"
  392. #: fdmprinter.def.json
  393. msgctxt "extruder_prime_pos_abs description"
  394. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  395. msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다."
  396. #: fdmprinter.def.json
  397. msgctxt "machine_max_feedrate_x label"
  398. msgid "Maximum Speed X"
  399. msgstr "X 방향 최대 속도"
  400. #: fdmprinter.def.json
  401. msgctxt "machine_max_feedrate_x description"
  402. msgid "The maximum speed for the motor of the X-direction."
  403. msgstr "X 방향의 모터 최대 속도입니다."
  404. #: fdmprinter.def.json
  405. msgctxt "machine_max_feedrate_y label"
  406. msgid "Maximum Speed Y"
  407. msgstr "Y 방향 최대 속도"
  408. #: fdmprinter.def.json
  409. msgctxt "machine_max_feedrate_y description"
  410. msgid "The maximum speed for the motor of the Y-direction."
  411. msgstr "Y 방향 모터의 최대 속도입니다."
  412. #: fdmprinter.def.json
  413. msgctxt "machine_max_feedrate_z label"
  414. msgid "Maximum Speed Z"
  415. msgstr "Z 방향 최대 속도"
  416. #: fdmprinter.def.json
  417. msgctxt "machine_max_feedrate_z description"
  418. msgid "The maximum speed for the motor of the Z-direction."
  419. msgstr "Z 방향의 모터 최대 속도입니다."
  420. #: fdmprinter.def.json
  421. msgctxt "machine_max_feedrate_e label"
  422. msgid "Maximum Feedrate"
  423. msgstr "최대 이송 속도"
  424. #: fdmprinter.def.json
  425. msgctxt "machine_max_feedrate_e description"
  426. msgid "The maximum speed of the filament."
  427. msgstr "필라멘트의 최대 속도."
  428. #: fdmprinter.def.json
  429. msgctxt "machine_max_acceleration_x label"
  430. msgid "Maximum Acceleration X"
  431. msgstr "최대 가속도 X"
  432. #: fdmprinter.def.json
  433. msgctxt "machine_max_acceleration_x description"
  434. msgid "Maximum acceleration for the motor of the X-direction"
  435. msgstr "X 방향 모터의 최대 가속도"
  436. #: fdmprinter.def.json
  437. msgctxt "machine_max_acceleration_y label"
  438. msgid "Maximum Acceleration Y"
  439. msgstr "Y 방향 최대 가속도"
  440. #: fdmprinter.def.json
  441. msgctxt "machine_max_acceleration_y description"
  442. msgid "Maximum acceleration for the motor of the Y-direction."
  443. msgstr "Y 방향 모터의 최대 가속도."
  444. #: fdmprinter.def.json
  445. msgctxt "machine_max_acceleration_z label"
  446. msgid "Maximum Acceleration Z"
  447. msgstr "Z 방향 최대 가속도"
  448. #: fdmprinter.def.json
  449. msgctxt "machine_max_acceleration_z description"
  450. msgid "Maximum acceleration for the motor of the Z-direction."
  451. msgstr "Z 방향 모터의 최대 가속도."
  452. #: fdmprinter.def.json
  453. msgctxt "machine_max_acceleration_e label"
  454. msgid "Maximum Filament Acceleration"
  455. msgstr "최대 필라멘트 가속도"
  456. #: fdmprinter.def.json
  457. msgctxt "machine_max_acceleration_e description"
  458. msgid "Maximum acceleration for the motor of the filament."
  459. msgstr "필라멘트를 구동하는 모터의 최대 가속도."
  460. #: fdmprinter.def.json
  461. msgctxt "machine_acceleration label"
  462. msgid "Default Acceleration"
  463. msgstr "기본 가속도"
  464. #: fdmprinter.def.json
  465. msgctxt "machine_acceleration description"
  466. msgid "The default acceleration of print head movement."
  467. msgstr "프린트 헤드 이동시 기본 가속도."
  468. #: fdmprinter.def.json
  469. msgctxt "machine_max_jerk_xy label"
  470. msgid "Default X-Y Jerk"
  471. msgstr "기본 X-Y Jerk"
  472. #: fdmprinter.def.json
  473. msgctxt "machine_max_jerk_xy description"
  474. msgid "Default jerk for movement in the horizontal plane."
  475. msgstr "수평면에서의 이동을 위한 기본 Jerk."
  476. #: fdmprinter.def.json
  477. msgctxt "machine_max_jerk_z label"
  478. msgid "Default Z Jerk"
  479. msgstr "기본 Z Jerk"
  480. #: fdmprinter.def.json
  481. msgctxt "machine_max_jerk_z description"
  482. msgid "Default jerk for the motor of the Z-direction."
  483. msgstr "Z 방향 모터의 기본 Jerk."
  484. #: fdmprinter.def.json
  485. msgctxt "machine_max_jerk_e label"
  486. msgid "Default Filament Jerk"
  487. msgstr "기본 필라멘트 Jerk"
  488. #: fdmprinter.def.json
  489. msgctxt "machine_max_jerk_e description"
  490. msgid "Default jerk for the motor of the filament."
  491. msgstr "필라멘트를 구동하는 모터의 기본 Jerk."
  492. #: fdmprinter.def.json
  493. msgctxt "machine_steps_per_mm_x label"
  494. msgid "Steps per Millimeter (X)"
  495. msgstr "밀리미터 당 스텝 수 (X)"
  496. #: fdmprinter.def.json
  497. msgctxt "machine_steps_per_mm_x description"
  498. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  499. msgstr "X 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수."
  500. #: fdmprinter.def.json
  501. msgctxt "machine_steps_per_mm_y label"
  502. msgid "Steps per Millimeter (Y)"
  503. msgstr "밀리미터 당 스텝 수 (Y)"
  504. #: fdmprinter.def.json
  505. msgctxt "machine_steps_per_mm_y description"
  506. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  507. msgstr "Y 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수."
  508. #: fdmprinter.def.json
  509. msgctxt "machine_steps_per_mm_z label"
  510. msgid "Steps per Millimeter (Z)"
  511. msgstr "밀리미터 당 스텝 수 (Z)"
  512. #: fdmprinter.def.json
  513. msgctxt "machine_steps_per_mm_z description"
  514. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  515. msgstr "Z 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수."
  516. #: fdmprinter.def.json
  517. msgctxt "machine_steps_per_mm_e label"
  518. msgid "Steps per Millimeter (E)"
  519. msgstr "밀리미터 당 스텝 수 (E)"
  520. #: fdmprinter.def.json
  521. msgctxt "machine_steps_per_mm_e description"
  522. msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  523. msgstr "1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수."
  524. #: fdmprinter.def.json
  525. msgctxt "machine_endstop_positive_direction_x label"
  526. msgid "X Endstop in Positive Direction"
  527. msgstr "양의 방향 X 엔드 스톱"
  528. #: fdmprinter.def.json
  529. msgctxt "machine_endstop_positive_direction_x description"
  530. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  531. msgstr "X 축의 엔드 스톱이 양의 방향 (높은 X 좌표) 또는 음의 (낮은 X 좌표)인지 여부."
  532. #: fdmprinter.def.json
  533. msgctxt "machine_endstop_positive_direction_y label"
  534. msgid "Y Endstop in Positive Direction"
  535. msgstr "양의 방향 Y 엔드 스톱"
  536. #: fdmprinter.def.json
  537. msgctxt "machine_endstop_positive_direction_y description"
  538. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  539. msgstr "Y 축의 엔드 스톱이 양의 방향 (높은 Y 좌표) 또는 음의 (낮은 Y 좌표)인지 여부."
  540. #: fdmprinter.def.json
  541. msgctxt "machine_endstop_positive_direction_z label"
  542. msgid "Z Endstop in Positive Direction"
  543. msgstr "양의 방향 Z 엔드 스톱"
  544. #: fdmprinter.def.json
  545. msgctxt "machine_endstop_positive_direction_z description"
  546. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  547. msgstr "Z 축의 엔드 스톱이 양의 방향 (높은 Z 좌표) 또는 음의 (낮은 Z 좌표)인지 여부."
  548. #: fdmprinter.def.json
  549. msgctxt "machine_minimum_feedrate label"
  550. msgid "Minimum Feedrate"
  551. msgstr "최소 이송 속도"
  552. #: fdmprinter.def.json
  553. msgctxt "machine_minimum_feedrate description"
  554. msgid "The minimal movement speed of the print head."
  555. msgstr "프린트 헤드의 최소 이동 속도."
  556. #: fdmprinter.def.json
  557. msgctxt "machine_feeder_wheel_diameter label"
  558. msgid "Feeder Wheel Diameter"
  559. msgstr "피더 휠 지름"
  560. #: fdmprinter.def.json
  561. msgctxt "machine_feeder_wheel_diameter description"
  562. msgid "The diameter of the wheel that drives the material in the feeder."
  563. msgstr "피더에서 재료를 구동시키는 휠의 지름."
  564. #: fdmprinter.def.json
  565. msgctxt "resolution label"
  566. msgid "Quality"
  567. msgstr "품질"
  568. #: fdmprinter.def.json
  569. msgctxt "resolution description"
  570. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  571. msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다."
  572. #: fdmprinter.def.json
  573. msgctxt "layer_height label"
  574. msgid "Layer Height"
  575. msgstr "층 높이"
  576. #: fdmprinter.def.json
  577. msgctxt "layer_height description"
  578. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  579. msgstr "각 층의 높이 (mm)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다."
  580. #: fdmprinter.def.json
  581. msgctxt "layer_height_0 label"
  582. msgid "Initial Layer Height"
  583. msgstr "첫번째 레이어 높이"
  584. #: fdmprinter.def.json
  585. msgctxt "layer_height_0 description"
  586. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  587. msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다."
  588. #: fdmprinter.def.json
  589. msgctxt "line_width label"
  590. msgid "Line Width"
  591. msgstr "선의 두께"
  592. #: fdmprinter.def.json
  593. msgctxt "line_width description"
  594. 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."
  595. msgstr "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나이 값을 약간 줄이면 더 좋은 인 쇄를 생성 할 수 있습니다."
  596. #: fdmprinter.def.json
  597. msgctxt "wall_line_width label"
  598. msgid "Wall Line Width"
  599. msgstr "벽 선 너비"
  600. #: fdmprinter.def.json
  601. msgctxt "wall_line_width description"
  602. msgid "Width of a single wall line."
  603. msgstr "단일 벽 선의 너비입니다."
  604. #: fdmprinter.def.json
  605. msgctxt "wall_line_width_0 label"
  606. msgid "Outer Wall Line Width"
  607. msgstr "바깥 선 선폭"
  608. #: fdmprinter.def.json
  609. msgctxt "wall_line_width_0 description"
  610. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  611. msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다."
  612. #: fdmprinter.def.json
  613. msgctxt "wall_line_width_x label"
  614. msgid "Inner Wall(s) Line Width"
  615. msgstr "내부 벽 선 너비"
  616. #: fdmprinter.def.json
  617. msgctxt "wall_line_width_x description"
  618. msgid "Width of a single wall line for all wall lines except the outermost one."
  619. msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다."
  620. #: fdmprinter.def.json
  621. msgctxt "skin_line_width label"
  622. msgid "Top/Bottom Line Width"
  623. msgstr "상단/하단 라인 폭"
  624. #: fdmprinter.def.json
  625. msgctxt "skin_line_width description"
  626. msgid "Width of a single top/bottom line."
  627. msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다."
  628. #: fdmprinter.def.json
  629. msgctxt "infill_line_width label"
  630. msgid "Infill Line Width"
  631. msgstr "내부채움 선 폭"
  632. #: fdmprinter.def.json
  633. msgctxt "infill_line_width description"
  634. msgid "Width of a single infill line."
  635. msgstr "단일 내부채움 라인의 너비."
  636. #: fdmprinter.def.json
  637. msgctxt "skirt_brim_line_width label"
  638. msgid "Skirt/Brim Line Width"
  639. msgstr "스커트/브림 선 너비"
  640. #: fdmprinter.def.json
  641. msgctxt "skirt_brim_line_width description"
  642. msgid "Width of a single skirt or brim line."
  643. msgstr "단일 스커트 또는 브림의 너비."
  644. #: fdmprinter.def.json
  645. msgctxt "support_line_width label"
  646. msgid "Support Line Width"
  647. msgstr "서포트의 폭"
  648. #: fdmprinter.def.json
  649. msgctxt "support_line_width description"
  650. msgid "Width of a single support structure line."
  651. msgstr "단일 서포트 구조 선의 폭입니다."
  652. #: fdmprinter.def.json
  653. msgctxt "support_interface_line_width label"
  654. msgid "Support Interface Line Width"
  655. msgstr "서포트 인터페이스의 폭"
  656. #: fdmprinter.def.json
  657. msgctxt "support_interface_line_width description"
  658. msgid "Width of a single line of support roof or floor."
  659. msgstr "서포트의 지붕, 바닥의 폭."
  660. #: fdmprinter.def.json
  661. msgctxt "support_roof_line_width label"
  662. msgid "Support Roof Line Width"
  663. msgstr "서포트 루프 라인 폭"
  664. #: fdmprinter.def.json
  665. msgctxt "support_roof_line_width description"
  666. msgid "Width of a single support roof line."
  667. msgstr "단일 서포트 지붕 라인 폭."
  668. #: fdmprinter.def.json
  669. msgctxt "support_bottom_line_width label"
  670. msgid "Support Floor Line Width"
  671. msgstr "서포트 바닥 라인 폭"
  672. #: fdmprinter.def.json
  673. msgctxt "support_bottom_line_width description"
  674. msgid "Width of a single support floor line."
  675. msgstr "단일 서포트 플로어 라인의 폭."
  676. #: fdmprinter.def.json
  677. msgctxt "prime_tower_line_width label"
  678. msgid "Prime Tower Line Width"
  679. msgstr "프라임 타워 라인 폭"
  680. #: fdmprinter.def.json
  681. msgctxt "prime_tower_line_width description"
  682. msgid "Width of a single prime tower line."
  683. msgstr "단일 주요 타워 라인의 폭."
  684. #: fdmprinter.def.json
  685. msgctxt "initial_layer_line_width_factor label"
  686. msgid "Initial Layer Line Width"
  687. msgstr "초기 레이어 라인 폭"
  688. #: fdmprinter.def.json
  689. msgctxt "initial_layer_line_width_factor description"
  690. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  691. msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다."
  692. #: fdmprinter.def.json
  693. msgctxt "shell label"
  694. msgid "Shell"
  695. msgstr "외곽"
  696. #: fdmprinter.def.json
  697. msgctxt "shell description"
  698. msgid "Shell"
  699. msgstr "외곽"
  700. #: fdmprinter.def.json
  701. msgctxt "wall_extruder_nr label"
  702. msgid "Wall Extruder"
  703. msgstr "벽 익스트루더"
  704. #: fdmprinter.def.json
  705. msgctxt "wall_extruder_nr description"
  706. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  707. msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다."
  708. #: fdmprinter.def.json
  709. msgctxt "wall_0_extruder_nr label"
  710. msgid "Outer Wall Extruder"
  711. msgstr "외벽 익스트루더"
  712. #: fdmprinter.def.json
  713. msgctxt "wall_0_extruder_nr description"
  714. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  715. msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다."
  716. #: fdmprinter.def.json
  717. msgctxt "wall_x_extruder_nr label"
  718. msgid "Inner Wall Extruder"
  719. msgstr "내벽 익스트루더"
  720. #: fdmprinter.def.json
  721. msgctxt "wall_x_extruder_nr description"
  722. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  723. msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다."
  724. #: fdmprinter.def.json
  725. msgctxt "wall_thickness label"
  726. msgid "Wall Thickness"
  727. msgstr "벽 두께"
  728. #: fdmprinter.def.json
  729. msgctxt "wall_thickness description"
  730. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  731. msgstr "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다."
  732. #: fdmprinter.def.json
  733. msgctxt "wall_line_count label"
  734. msgid "Wall Line Count"
  735. msgstr "벽 라인의 수"
  736. #: fdmprinter.def.json
  737. msgctxt "wall_line_count description"
  738. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  739. msgstr "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다."
  740. #: fdmprinter.def.json
  741. msgctxt "wall_0_wipe_dist label"
  742. msgid "Outer Wall Wipe Distance"
  743. msgstr "외벽 이동 거리"
  744. #: fdmprinter.def.json
  745. msgctxt "wall_0_wipe_dist description"
  746. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  747. msgstr "Z 솔기를 더 잘 숨기기위해, 바깥 쪽 벽 뒤에 삽입되어 이동한 거리."
  748. #: fdmprinter.def.json
  749. msgctxt "roofing_extruder_nr label"
  750. msgid "Top Surface Skin Extruder"
  751. msgstr "상단 표면 익스트루더"
  752. #: fdmprinter.def.json
  753. msgctxt "roofing_extruder_nr description"
  754. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  755. msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다."
  756. #: fdmprinter.def.json
  757. msgctxt "roofing_layer_count label"
  758. msgid "Top Surface Skin Layers"
  759. msgstr "상단 표면 스킨 레이어"
  760. #: fdmprinter.def.json
  761. msgctxt "roofing_layer_count description"
  762. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  763. msgstr "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다."
  764. #: fdmprinter.def.json
  765. msgctxt "top_bottom_extruder_nr label"
  766. msgid "Top/Bottom Extruder"
  767. msgstr "상단/하단 익스트루더"
  768. #: fdmprinter.def.json
  769. msgctxt "top_bottom_extruder_nr description"
  770. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  771. msgstr "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다."
  772. #: fdmprinter.def.json
  773. msgctxt "top_bottom_thickness label"
  774. msgid "Top/Bottom Thickness"
  775. msgstr "상단/하단 두께"
  776. #: fdmprinter.def.json
  777. msgctxt "top_bottom_thickness description"
  778. 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."
  779. msgstr "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다."
  780. #: fdmprinter.def.json
  781. msgctxt "top_thickness label"
  782. msgid "Top Thickness"
  783. msgstr "상단 두께"
  784. #: fdmprinter.def.json
  785. msgctxt "top_thickness description"
  786. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  787. msgstr "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다."
  788. #: fdmprinter.def.json
  789. msgctxt "top_layers label"
  790. msgid "Top Layers"
  791. msgstr "상단 레이어"
  792. #: fdmprinter.def.json
  793. msgctxt "top_layers description"
  794. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  795. msgstr "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다."
  796. #: fdmprinter.def.json
  797. msgctxt "bottom_thickness label"
  798. msgid "Bottom Thickness"
  799. msgstr "바닥 두께"
  800. #: fdmprinter.def.json
  801. msgctxt "bottom_thickness description"
  802. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  803. msgstr "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다."
  804. #: fdmprinter.def.json
  805. msgctxt "bottom_layers label"
  806. msgid "Bottom Layers"
  807. msgstr "하단 레이어"
  808. #: fdmprinter.def.json
  809. msgctxt "bottom_layers description"
  810. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  811. msgstr "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다."
  812. #: fdmprinter.def.json
  813. msgctxt "top_bottom_pattern label"
  814. msgid "Top/Bottom Pattern"
  815. msgstr "상단/하단 패턴"
  816. #: fdmprinter.def.json
  817. msgctxt "top_bottom_pattern description"
  818. msgid "The pattern of the top/bottom layers."
  819. msgstr "상단/하단 레이어의 패턴."
  820. #: fdmprinter.def.json
  821. msgctxt "top_bottom_pattern option lines"
  822. msgid "Lines"
  823. msgstr "라인"
  824. #: fdmprinter.def.json
  825. msgctxt "top_bottom_pattern option concentric"
  826. msgid "Concentric"
  827. msgstr "동심원 형태"
  828. #: fdmprinter.def.json
  829. msgctxt "top_bottom_pattern option zigzag"
  830. msgid "Zig Zag"
  831. msgstr "지그재그"
  832. #: fdmprinter.def.json
  833. msgctxt "top_bottom_pattern_0 label"
  834. msgid "Bottom Pattern Initial Layer"
  835. msgstr "하단 패턴 초기 레이어"
  836. #: fdmprinter.def.json
  837. msgctxt "top_bottom_pattern_0 description"
  838. msgid "The pattern on the bottom of the print on the first layer."
  839. msgstr "첫 번째 레이어의 프린팅 아래쪽에있는 패턴입니다."
  840. #: fdmprinter.def.json
  841. msgctxt "top_bottom_pattern_0 option lines"
  842. msgid "Lines"
  843. msgstr "윤곽"
  844. #: fdmprinter.def.json
  845. msgctxt "top_bottom_pattern_0 option concentric"
  846. msgid "Concentric"
  847. msgstr "동심원의"
  848. #: fdmprinter.def.json
  849. msgctxt "top_bottom_pattern_0 option zigzag"
  850. msgid "Zig Zag"
  851. msgstr "지그재그"
  852. #: fdmprinter.def.json
  853. msgctxt "skin_angles label"
  854. msgid "Top/Bottom Line Directions"
  855. msgstr "상단/하단 라인 길 방향"
  856. #: fdmprinter.def.json
  857. msgctxt "skin_angles description"
  858. 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)."
  859. msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다."
  860. #: fdmprinter.def.json
  861. msgctxt "wall_0_inset label"
  862. msgid "Outer Wall Inset"
  863. msgstr "외벽 삽입"
  864. #: fdmprinter.def.json
  865. msgctxt "wall_0_inset description"
  866. 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."
  867. msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오."
  868. #: fdmprinter.def.json
  869. msgctxt "optimize_wall_printing_order label"
  870. msgid "Optimize Wall Printing Order"
  871. msgstr "벽면 프린팅 순서 명령 최적화"
  872. #: fdmprinter.def.json
  873. msgctxt "optimize_wall_printing_order description"
  874. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  875. msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화하십시오. 대부분의 부품은 이 기능을 사용하면 도움이 되지만, 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다."
  876. #: fdmprinter.def.json
  877. msgctxt "outer_inset_first label"
  878. msgid "Outer Before Inner Walls"
  879. msgstr "내벽 앞부분 바깥 쪽"
  880. #: fdmprinter.def.json
  881. msgctxt "outer_inset_first description"
  882. 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."
  883. msgstr "활성화 되었을 때 외부에서 내부로 벽을 프린팅합니다. 이것은 ABS와 같은 고점도 플라스틱을 사용할 때 X와 Y의 치수 정확도를 향상시키는 데 도움이 됩니다. 그러나 특히 오버행의 경우 표면 프린팅 품질을 떨어 뜨릴 수 있습니다."
  884. #: fdmprinter.def.json
  885. msgctxt "alternate_extra_perimeter label"
  886. msgid "Alternate Extra Wall"
  887. msgstr "대체 여분 벽"
  888. #: fdmprinter.def.json
  889. msgctxt "alternate_extra_perimeter description"
  890. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  891. msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다."
  892. #: fdmprinter.def.json
  893. msgctxt "travel_compensate_overlapping_walls_enabled label"
  894. msgid "Compensate Wall Overlaps"
  895. msgstr "벽 겹침 보정"
  896. #: fdmprinter.def.json
  897. msgctxt "travel_compensate_overlapping_walls_enabled description"
  898. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  899. msgstr "이미 벽이있는 곳에 프린팅중인 벽의 부분에 대한 흐름을 보정하십시오."
  900. #: fdmprinter.def.json
  901. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  902. msgid "Compensate Outer Wall Overlaps"
  903. msgstr "외벽 겹침 보정"
  904. #: fdmprinter.def.json
  905. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  906. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  907. msgstr "이미 벽이있는 곳에 프린팅되는 외벽 부분에 대한 흐름을 보정합니다."
  908. #: fdmprinter.def.json
  909. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  910. msgid "Compensate Inner Wall Overlaps"
  911. msgstr "내부 벽 겹침 보정"
  912. #: fdmprinter.def.json
  913. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  914. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  915. msgstr "이미 벽이있는 곳에 프린팅되는 내부 벽 부분에 대한 흐름을 보정하십시오."
  916. #: fdmprinter.def.json
  917. msgctxt "fill_perimeter_gaps label"
  918. msgid "Fill Gaps Between Walls"
  919. msgstr "벽 사이의 간격 채우기"
  920. #: fdmprinter.def.json
  921. msgctxt "fill_perimeter_gaps description"
  922. msgid "Fills the gaps between walls where no walls fit."
  923. msgstr "벽이 딱 맞지 않는 벽 사이의 간격을 채웁니다."
  924. #: fdmprinter.def.json
  925. msgctxt "fill_perimeter_gaps option nowhere"
  926. msgid "Nowhere"
  927. msgstr "아무데도"
  928. #: fdmprinter.def.json
  929. msgctxt "fill_perimeter_gaps option everywhere"
  930. msgid "Everywhere"
  931. msgstr "어디에나"
  932. #: fdmprinter.def.json
  933. msgctxt "filter_out_tiny_gaps label"
  934. msgid "Filter Out Tiny Gaps"
  935. msgstr "아주 작은 갭 필터 아웃"
  936. #: fdmprinter.def.json
  937. msgctxt "filter_out_tiny_gaps description"
  938. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  939. msgstr "아주 작은 갭을 필터 아웃하여 모델 외부의 얼룩을 줄입니다."
  940. #: fdmprinter.def.json
  941. msgctxt "fill_outline_gaps label"
  942. msgid "Print Thin Walls"
  943. msgstr "얇은 벽 프린팅"
  944. #: fdmprinter.def.json
  945. msgctxt "fill_outline_gaps description"
  946. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  947. msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오."
  948. #: fdmprinter.def.json
  949. msgctxt "xy_offset label"
  950. msgid "Horizontal Expansion"
  951. msgstr "수평 확장"
  952. #: fdmprinter.def.json
  953. msgctxt "xy_offset description"
  954. 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."
  955. msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다."
  956. #: fdmprinter.def.json
  957. msgctxt "xy_offset_layer_0 label"
  958. msgid "Initial Layer Horizontal Expansion"
  959. msgstr "첫번째 레이어 수평 확장"
  960. #: fdmprinter.def.json
  961. msgctxt "xy_offset_layer_0 description"
  962. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  963. msgstr "첫 번째 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 음수 값은 \"elephant's foot\"이라고 알려진 현상을 보완 할 수 있습니다."
  964. #: fdmprinter.def.json
  965. msgctxt "z_seam_type label"
  966. msgid "Z Seam Alignment"
  967. msgstr "Z Seam Alignment"
  968. #: fdmprinter.def.json
  969. msgctxt "z_seam_type description"
  970. 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."
  971. msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다."
  972. #: fdmprinter.def.json
  973. msgctxt "z_seam_type option back"
  974. msgid "User Specified"
  975. msgstr "사용자 지정"
  976. #: fdmprinter.def.json
  977. msgctxt "z_seam_type option shortest"
  978. msgid "Shortest"
  979. msgstr "최단경로"
  980. #: fdmprinter.def.json
  981. msgctxt "z_seam_type option random"
  982. msgid "Random"
  983. msgstr "랜덤"
  984. #: fdmprinter.def.json
  985. msgctxt "z_seam_type option sharpest_corner"
  986. msgid "Sharpest Corner"
  987. msgstr "날카로운 모서리"
  988. #: fdmprinter.def.json
  989. msgctxt "z_seam_x label"
  990. msgid "Z Seam X"
  991. msgstr "Z 솔기 X"
  992. #: fdmprinter.def.json
  993. msgctxt "z_seam_x description"
  994. msgid "The X coordinate of the position near where to start printing each part in a layer."
  995. msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다."
  996. #: fdmprinter.def.json
  997. msgctxt "z_seam_y label"
  998. msgid "Z Seam Y"
  999. msgstr "Z 솔기 Y"
  1000. #: fdmprinter.def.json
  1001. msgctxt "z_seam_y description"
  1002. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1003. msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다."
  1004. #: fdmprinter.def.json
  1005. msgctxt "z_seam_corner label"
  1006. msgid "Seam Corner Preference"
  1007. msgstr "솔기 코너 환경 설정"
  1008. #: fdmprinter.def.json
  1009. msgctxt "z_seam_corner description"
  1010. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner."
  1011. msgstr "모델 외곽선의 모서리가 솔기의 위치에 영향을 줄지 여부를 제어합니다. 이것은 코너가 솔기 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 솔기 숨기기는 이음새가 안쪽 모서리에서 발생할 가능성을 높입니다. 솔기 노출은 솔기이 외부 모서리에서 발생할 가능성을 높입니다. 솔기 숨기기 또는 노출은 솔기이 내부나 외부 모서리에서 발생할 가능성을 높입니다."
  1012. #: fdmprinter.def.json
  1013. msgctxt "z_seam_corner option z_seam_corner_none"
  1014. msgid "None"
  1015. msgstr "없음"
  1016. #: fdmprinter.def.json
  1017. msgctxt "z_seam_corner option z_seam_corner_inner"
  1018. msgid "Hide Seam"
  1019. msgstr "솔기 숨기기"
  1020. #: fdmprinter.def.json
  1021. msgctxt "z_seam_corner option z_seam_corner_outer"
  1022. msgid "Expose Seam"
  1023. msgstr "솔기 노출"
  1024. #: fdmprinter.def.json
  1025. msgctxt "z_seam_corner option z_seam_corner_any"
  1026. msgid "Hide or Expose Seam"
  1027. msgstr "솔기 숨기기 또는 노출"
  1028. #: fdmprinter.def.json
  1029. msgctxt "z_seam_relative label"
  1030. msgid "Z Seam Relative"
  1031. msgstr "상대적 Z 솔기"
  1032. #: fdmprinter.def.json
  1033. msgctxt "z_seam_relative description"
  1034. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  1035. msgstr "활성화 된 경우 z 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다."
  1036. #: fdmprinter.def.json
  1037. msgctxt "skin_no_small_gaps_heuristic label"
  1038. msgid "Ignore Small Z Gaps"
  1039. msgstr "작은 Z 간격 무시"
  1040. #: fdmprinter.def.json
  1041. msgctxt "skin_no_small_gaps_heuristic description"
  1042. 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."
  1043. msgstr "모델에 수직 간격이 작으면 이 좁은 공간에서 상단 및 하단 스킨을 생성하는 데 약 5%의 추가적인 계산시간을 소비 할 수 있습니다. 이 경우 설정을 해제하십시오."
  1044. #: fdmprinter.def.json
  1045. msgctxt "skin_outline_count label"
  1046. msgid "Extra Skin Wall Count"
  1047. msgstr "여분의 스킨 벽 수"
  1048. #: fdmprinter.def.json
  1049. msgctxt "skin_outline_count description"
  1050. 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."
  1051. msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다."
  1052. #: fdmprinter.def.json
  1053. msgctxt "ironing_enabled label"
  1054. msgid "Enable Ironing"
  1055. msgstr "다림질 사용"
  1056. #: fdmprinter.def.json
  1057. msgctxt "ironing_enabled description"
  1058. msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  1059. msgstr "상단 표면을 한 번 더 이동하지만 재료를 익스트루딩 시키지 않습니다. 이것은 맨 위의 플라스틱을 녹여 부드러운 표면을 만듭니다."
  1060. #: fdmprinter.def.json
  1061. msgctxt "ironing_only_highest_layer label"
  1062. msgid "Iron Only Highest Layer"
  1063. msgstr "최상위 레이어에 다림질"
  1064. #: fdmprinter.def.json
  1065. msgctxt "ironing_only_highest_layer description"
  1066. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  1067. msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다."
  1068. #: fdmprinter.def.json
  1069. msgctxt "ironing_pattern label"
  1070. msgid "Ironing Pattern"
  1071. msgstr "다림질 패턴"
  1072. #: fdmprinter.def.json
  1073. msgctxt "ironing_pattern description"
  1074. msgid "The pattern to use for ironing top surfaces."
  1075. msgstr "윗면을 다림질 할 때 사용하는 패턴."
  1076. #: fdmprinter.def.json
  1077. msgctxt "ironing_pattern option concentric"
  1078. msgid "Concentric"
  1079. msgstr "동심원"
  1080. #: fdmprinter.def.json
  1081. msgctxt "ironing_pattern option zigzag"
  1082. msgid "Zig Zag"
  1083. msgstr "지그재그"
  1084. #: fdmprinter.def.json
  1085. msgctxt "ironing_line_spacing label"
  1086. msgid "Ironing Line Spacing"
  1087. msgstr "다림질 라인 간격"
  1088. #: fdmprinter.def.json
  1089. msgctxt "ironing_line_spacing description"
  1090. msgid "The distance between the lines of ironing."
  1091. msgstr "다림질 라인 사이의 거리."
  1092. #: fdmprinter.def.json
  1093. msgctxt "ironing_flow label"
  1094. msgid "Ironing Flow"
  1095. msgstr "다림질 과정"
  1096. #: fdmprinter.def.json
  1097. msgctxt "ironing_flow description"
  1098. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  1099. msgstr "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 양. 노즐을 가득 채우면 윗면의 틈새가 채워서포트만 표면의 과도한 압출과 틈이 너무 많이 생깁니다."
  1100. #: fdmprinter.def.json
  1101. msgctxt "ironing_inset label"
  1102. msgid "Ironing Inset"
  1103. msgstr "다림질 삽입"
  1104. #: fdmprinter.def.json
  1105. msgctxt "ironing_inset description"
  1106. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  1107. msgstr "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다."
  1108. #: fdmprinter.def.json
  1109. msgctxt "speed_ironing label"
  1110. msgid "Ironing Speed"
  1111. msgstr "다림질 속도"
  1112. #: fdmprinter.def.json
  1113. msgctxt "speed_ironing description"
  1114. msgid "The speed at which to pass over the top surface."
  1115. msgstr "상단 표면을 통과하는 속도."
  1116. #: fdmprinter.def.json
  1117. msgctxt "acceleration_ironing label"
  1118. msgid "Ironing Acceleration"
  1119. msgstr "다림질 가속"
  1120. #: fdmprinter.def.json
  1121. msgctxt "acceleration_ironing description"
  1122. msgid "The acceleration with which ironing is performed."
  1123. msgstr "다림질이 수행되는 가속도."
  1124. #: fdmprinter.def.json
  1125. msgctxt "jerk_ironing label"
  1126. msgid "Ironing Jerk"
  1127. msgstr "다림질 저크(Jerk)"
  1128. #: fdmprinter.def.json
  1129. msgctxt "jerk_ironing description"
  1130. msgid "The maximum instantaneous velocity change while performing ironing."
  1131. msgstr "다림질을하는 동안 최대 순간 속도 변화."
  1132. #: fdmprinter.def.json
  1133. msgctxt "infill label"
  1134. msgid "Infill"
  1135. msgstr "내부채움"
  1136. #: fdmprinter.def.json
  1137. msgctxt "infill description"
  1138. msgid "Infill"
  1139. msgstr "내부채움"
  1140. #: fdmprinter.def.json
  1141. msgctxt "infill_extruder_nr label"
  1142. msgid "Infill Extruder"
  1143. msgstr "내부채움 익스트루더"
  1144. #: fdmprinter.def.json
  1145. msgctxt "infill_extruder_nr description"
  1146. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1147. msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다."
  1148. #: fdmprinter.def.json
  1149. msgctxt "infill_sparse_density label"
  1150. msgid "Infill Density"
  1151. msgstr "내부채움 밀도"
  1152. #: fdmprinter.def.json
  1153. msgctxt "infill_sparse_density description"
  1154. msgid "Adjusts the density of infill of the print."
  1155. msgstr "출력물의 내부채움을 조절합니다."
  1156. #: fdmprinter.def.json
  1157. msgctxt "infill_line_distance label"
  1158. msgid "Infill Line Distance"
  1159. msgstr "내부채움 선간 거리"
  1160. #: fdmprinter.def.json
  1161. msgctxt "infill_line_distance description"
  1162. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1163. msgstr "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다."
  1164. #: fdmprinter.def.json
  1165. msgctxt "infill_pattern label"
  1166. msgid "Infill Pattern"
  1167. msgstr "내부채움 패턴"
  1168. #: fdmprinter.def.json
  1169. msgctxt "infill_pattern description"
  1170. 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, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  1171. msgstr "프린트 내부채움 재료의 패턴입니다. 선과 지그재그 내부채움이 레이어를 하나 걸러서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 삼-육각형, 입방체, 옥텟, 쿼터 큐빅, 십자, 동심원 패턴이 레이어마다 프린팅됩니다. 입방체, 4분 입방체, 옥텟 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다."
  1172. #: fdmprinter.def.json
  1173. msgctxt "infill_pattern option grid"
  1174. msgid "Grid"
  1175. msgstr "그리드"
  1176. #: fdmprinter.def.json
  1177. msgctxt "infill_pattern option lines"
  1178. msgid "Lines"
  1179. msgstr "라인"
  1180. #: fdmprinter.def.json
  1181. msgctxt "infill_pattern option triangles"
  1182. msgid "Triangles"
  1183. msgstr "삼각형"
  1184. #: fdmprinter.def.json
  1185. msgctxt "infill_pattern option trihexagon"
  1186. msgid "Tri-Hexagon"
  1187. msgstr "삼-육각형"
  1188. #: fdmprinter.def.json
  1189. msgctxt "infill_pattern option cubic"
  1190. msgid "Cubic"
  1191. msgstr "입방체"
  1192. #: fdmprinter.def.json
  1193. msgctxt "infill_pattern option cubicsubdiv"
  1194. msgid "Cubic Subdivision"
  1195. msgstr "입방체 세분"
  1196. #: fdmprinter.def.json
  1197. msgctxt "infill_pattern option tetrahedral"
  1198. msgid "Octet"
  1199. msgstr "옥텟"
  1200. #: fdmprinter.def.json
  1201. msgctxt "infill_pattern option quarter_cubic"
  1202. msgid "Quarter Cubic"
  1203. msgstr "쿼터 큐빅"
  1204. #: fdmprinter.def.json
  1205. msgctxt "infill_pattern option concentric"
  1206. msgid "Concentric"
  1207. msgstr "동심원"
  1208. #: fdmprinter.def.json
  1209. msgctxt "infill_pattern option concentric_3d"
  1210. msgid "Concentric 3D"
  1211. msgstr "동심원 3D"
  1212. #: fdmprinter.def.json
  1213. msgctxt "infill_pattern option zigzag"
  1214. msgid "Zig Zag"
  1215. msgstr "지그재그"
  1216. #: fdmprinter.def.json
  1217. msgctxt "infill_pattern option cross"
  1218. msgid "Cross"
  1219. msgstr "십자형"
  1220. #: fdmprinter.def.json
  1221. msgctxt "infill_pattern option cross_3d"
  1222. msgid "Cross 3D"
  1223. msgstr "십자형 3D"
  1224. #: fdmprinter.def.json
  1225. msgctxt "zig_zaggify_infill label"
  1226. msgid "Connect Infill Lines"
  1227. msgstr "내부채움 선 연결"
  1228. #: fdmprinter.def.json
  1229. msgctxt "zig_zaggify_infill description"
  1230. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  1231. msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다."
  1232. #: fdmprinter.def.json
  1233. msgctxt "infill_angles label"
  1234. msgid "Infill Line Directions"
  1235. msgstr "내부채움 선 방향"
  1236. #: fdmprinter.def.json
  1237. msgctxt "infill_angles description"
  1238. 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)."
  1239. msgstr "사용할 라인 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호 안에 들어 있습니다. 기본값은 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용하는 빈 리스트입니다."
  1240. #: fdmprinter.def.json
  1241. msgctxt "infill_offset_x label"
  1242. msgid "Infill X Offset"
  1243. msgstr "내부채움 X 오프셋"
  1244. #: fdmprinter.def.json
  1245. msgctxt "infill_offset_x description"
  1246. msgid "The infill pattern is moved this distance along the X axis."
  1247. msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다."
  1248. #: fdmprinter.def.json
  1249. msgctxt "infill_offset_y label"
  1250. msgid "Infill Y Offset"
  1251. msgstr "내부채움 Y 오프셋"
  1252. #: fdmprinter.def.json
  1253. msgctxt "infill_offset_y description"
  1254. msgid "The infill pattern is moved this distance along the Y axis."
  1255. msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다."
  1256. #: fdmprinter.def.json
  1257. msgctxt "sub_div_rad_add label"
  1258. msgid "Cubic Subdivision Shell"
  1259. msgstr "입방 세분 쉘"
  1260. #: fdmprinter.def.json
  1261. msgctxt "sub_div_rad_add description"
  1262. 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."
  1263. msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다."
  1264. #: fdmprinter.def.json
  1265. msgctxt "infill_overlap label"
  1266. msgid "Infill Overlap Percentage"
  1267. msgstr "내부채움 오버랩 비율"
  1268. #: fdmprinter.def.json
  1269. msgctxt "infill_overlap description"
  1270. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  1271. msgstr "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다."
  1272. #: fdmprinter.def.json
  1273. msgctxt "infill_overlap_mm label"
  1274. msgid "Infill Overlap"
  1275. msgstr "내부채움 오버랩"
  1276. #: fdmprinter.def.json
  1277. msgctxt "infill_overlap_mm description"
  1278. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1279. msgstr "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다."
  1280. #: fdmprinter.def.json
  1281. msgctxt "skin_overlap label"
  1282. msgid "Skin Overlap Percentage"
  1283. msgstr "스킨 겹침 비율"
  1284. #: fdmprinter.def.json
  1285. msgctxt "skin_overlap description"
  1286. msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  1287. msgstr "스킨 라인 폭의 비율인 스킨과 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 스킨과 확실하게 체결됩니다. 이것은 스킨 라인과 가장 안쪽 벽과의 평균 라인 폭의 비율입니다."
  1288. #: fdmprinter.def.json
  1289. msgctxt "skin_overlap_mm label"
  1290. msgid "Skin Overlap"
  1291. msgstr "스킨 겹침"
  1292. #: fdmprinter.def.json
  1293. msgctxt "skin_overlap_mm description"
  1294. msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  1295. msgstr "스킨와 벽 사이의 겹침 정도. 약간 겹치면 벽이 스킨에 단단히 연결됩니다."
  1296. #: fdmprinter.def.json
  1297. msgctxt "infill_wipe_dist label"
  1298. msgid "Infill Wipe Distance"
  1299. msgstr "내부채움 거리"
  1300. #: fdmprinter.def.json
  1301. msgctxt "infill_wipe_dist description"
  1302. 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."
  1303. msgstr "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다."
  1304. #: fdmprinter.def.json
  1305. msgctxt "infill_sparse_thickness label"
  1306. msgid "Infill Layer Thickness"
  1307. msgstr "내부채움 층 두께"
  1308. #: fdmprinter.def.json
  1309. msgctxt "infill_sparse_thickness description"
  1310. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1311. msgstr "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다."
  1312. #: fdmprinter.def.json
  1313. msgctxt "gradual_infill_steps label"
  1314. msgid "Gradual Infill Steps"
  1315. msgstr "점진적인 내부채움 단계"
  1316. #: fdmprinter.def.json
  1317. msgctxt "gradual_infill_steps description"
  1318. 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."
  1319. msgstr "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다."
  1320. #: fdmprinter.def.json
  1321. msgctxt "gradual_infill_step_height label"
  1322. msgid "Gradual Infill Step Height"
  1323. msgstr "점진적인 내부채움 단계 높이"
  1324. #: fdmprinter.def.json
  1325. msgctxt "gradual_infill_step_height description"
  1326. msgid "The height of infill of a given density before switching to half the density."
  1327. msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이."
  1328. #: fdmprinter.def.json
  1329. msgctxt "infill_before_walls label"
  1330. msgid "Infill Before Walls"
  1331. msgstr "벽 앞에 내부채움"
  1332. #: fdmprinter.def.json
  1333. msgctxt "infill_before_walls description"
  1334. 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."
  1335. msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다."
  1336. #: fdmprinter.def.json
  1337. msgctxt "min_infill_area label"
  1338. msgid "Minimum Infill Area"
  1339. msgstr "최소 내부채움 지역"
  1340. #: fdmprinter.def.json
  1341. msgctxt "min_infill_area description"
  1342. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1343. msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)."
  1344. #: fdmprinter.def.json
  1345. msgctxt "infill_support_enabled label"
  1346. msgid "Infill Support"
  1347. msgstr "충진물 지지대"
  1348. #: fdmprinter.def.json
  1349. msgctxt "infill_support_enabled description"
  1350. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  1351. msgstr "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다."
  1352. #: fdmprinter.def.json
  1353. msgctxt "infill_support_angle label"
  1354. msgid "Infill Overhang Angle"
  1355. msgstr "충진물 오버행 각도"
  1356. #: fdmprinter.def.json
  1357. msgctxt "infill_support_angle description"
  1358. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  1359. msgstr "충진물이 추가되는 내부 오버행의 최소 각도. 0°에서는 개체가 충진물로 완전히 채워지지만, 90°에서는 충진물이 공급되지 않습니다."
  1360. #: fdmprinter.def.json
  1361. msgctxt "skin_preshrink label"
  1362. msgid "Skin Removal Width"
  1363. msgstr "스킨 제거 폭"
  1364. #: fdmprinter.def.json
  1365. msgctxt "skin_preshrink description"
  1366. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  1367. msgstr "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다."
  1368. #: fdmprinter.def.json
  1369. msgctxt "top_skin_preshrink label"
  1370. msgid "Top Skin Removal Width"
  1371. msgstr "상단 스킨 제거 폭"
  1372. #: fdmprinter.def.json
  1373. msgctxt "top_skin_preshrink description"
  1374. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  1375. msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다."
  1376. #: fdmprinter.def.json
  1377. msgctxt "bottom_skin_preshrink label"
  1378. msgid "Bottom Skin Removal Width"
  1379. msgstr "밑면 스킨 제거 폭"
  1380. #: fdmprinter.def.json
  1381. msgctxt "bottom_skin_preshrink description"
  1382. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  1383. msgstr "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다."
  1384. #: fdmprinter.def.json
  1385. msgctxt "expand_skins_expand_distance label"
  1386. msgid "Skin Expand Distance"
  1387. msgstr "스킨 확장 거리"
  1388. #: fdmprinter.def.json
  1389. msgctxt "expand_skins_expand_distance description"
  1390. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  1391. msgstr "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다."
  1392. #: fdmprinter.def.json
  1393. msgctxt "top_skin_expand_distance label"
  1394. msgid "Top Skin Expand Distance"
  1395. msgstr "윗면 스킨 확장 거리"
  1396. #: fdmprinter.def.json
  1397. msgctxt "top_skin_expand_distance description"
  1398. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  1399. msgstr "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다."
  1400. #: fdmprinter.def.json
  1401. msgctxt "bottom_skin_expand_distance label"
  1402. msgid "Bottom Skin Expand Distance"
  1403. msgstr "밑면 스킨 확장 거리"
  1404. #: fdmprinter.def.json
  1405. msgctxt "bottom_skin_expand_distance description"
  1406. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  1407. msgstr "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다."
  1408. #: fdmprinter.def.json
  1409. msgctxt "max_skin_angle_for_expansion label"
  1410. msgid "Maximum Skin Angle for Expansion"
  1411. msgstr "확장을 위한 최대 스킨 각"
  1412. #: fdmprinter.def.json
  1413. msgctxt "max_skin_angle_for_expansion description"
  1414. 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."
  1415. msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며, 90도의 각도는 수직입니다."
  1416. #: fdmprinter.def.json
  1417. msgctxt "min_skin_width_for_expansion label"
  1418. msgid "Minimum Skin Width for Expansion"
  1419. msgstr "확장을 위한 최소 스킨 폭"
  1420. #: fdmprinter.def.json
  1421. msgctxt "min_skin_width_for_expansion description"
  1422. 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."
  1423. msgstr "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다."
  1424. #: fdmprinter.def.json
  1425. msgctxt "material label"
  1426. msgid "Material"
  1427. msgstr "재료"
  1428. #: fdmprinter.def.json
  1429. msgctxt "material description"
  1430. msgid "Material"
  1431. msgstr "재료"
  1432. #: fdmprinter.def.json
  1433. msgctxt "default_material_print_temperature label"
  1434. msgid "Default Printing Temperature"
  1435. msgstr "기본 프린팅 온도"
  1436. #: fdmprinter.def.json
  1437. msgctxt "default_material_print_temperature description"
  1438. 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"
  1439. msgstr "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다"
  1440. #: fdmprinter.def.json
  1441. msgctxt "material_print_temperature label"
  1442. msgid "Printing Temperature"
  1443. msgstr "프린팅 온도"
  1444. #: fdmprinter.def.json
  1445. msgctxt "material_print_temperature description"
  1446. msgid "The temperature used for printing."
  1447. msgstr "프린팅에 사용되는 온도."
  1448. #: fdmprinter.def.json
  1449. msgctxt "material_print_temperature_layer_0 label"
  1450. msgid "Printing Temperature Initial Layer"
  1451. msgstr "첫번째 레이어의 프린팅 온도"
  1452. #: fdmprinter.def.json
  1453. msgctxt "material_print_temperature_layer_0 description"
  1454. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1455. msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다."
  1456. #: fdmprinter.def.json
  1457. msgctxt "material_initial_print_temperature label"
  1458. msgid "Initial Printing Temperature"
  1459. msgstr "초기 프린팅 온도"
  1460. #: fdmprinter.def.json
  1461. msgctxt "material_initial_print_temperature description"
  1462. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1463. msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도."
  1464. #: fdmprinter.def.json
  1465. msgctxt "material_final_print_temperature label"
  1466. msgid "Final Printing Temperature"
  1467. msgstr "최종 프린팅 온도"
  1468. #: fdmprinter.def.json
  1469. msgctxt "material_final_print_temperature description"
  1470. msgid "The temperature to which to already start cooling down just before the end of printing."
  1471. msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다."
  1472. #: fdmprinter.def.json
  1473. msgctxt "material_extrusion_cool_down_speed label"
  1474. msgid "Extrusion Cool Down Speed Modifier"
  1475. msgstr "압출 냉각 속도 조절기"
  1476. #: fdmprinter.def.json
  1477. msgctxt "material_extrusion_cool_down_speed description"
  1478. 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."
  1479. msgstr "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다."
  1480. #: fdmprinter.def.json
  1481. msgctxt "default_material_bed_temperature label"
  1482. msgid "Default Build Plate Temperature"
  1483. msgstr "기본 빌드 플레이트 온도"
  1484. #: fdmprinter.def.json
  1485. msgctxt "default_material_bed_temperature description"
  1486. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  1487. msgstr "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다"
  1488. #: fdmprinter.def.json
  1489. msgctxt "material_bed_temperature label"
  1490. msgid "Build Plate Temperature"
  1491. msgstr "빌드 플레이트 온도"
  1492. #: fdmprinter.def.json
  1493. msgctxt "material_bed_temperature description"
  1494. msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  1495. msgstr "플레이트를 가열하기 위해 사용되는 온도. 이것이 0이면, 베드 온도가 조정되지 않습니다."
  1496. #: fdmprinter.def.json
  1497. msgctxt "material_bed_temperature_layer_0 label"
  1498. msgid "Build Plate Temperature Initial Layer"
  1499. msgstr "초기 레이어의 빌드 플레이트 온도"
  1500. #: fdmprinter.def.json
  1501. msgctxt "material_bed_temperature_layer_0 description"
  1502. msgid "The temperature used for the heated build plate at the first layer."
  1503. msgstr "첫 번째 레이어에서 가열 된 빌드 플레이트에 사용되는 온도."
  1504. #: fdmprinter.def.json
  1505. msgctxt "material_diameter label"
  1506. msgid "Diameter"
  1507. msgstr "직경"
  1508. #: fdmprinter.def.json
  1509. msgctxt "material_diameter description"
  1510. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  1511. msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다."
  1512. #: fdmprinter.def.json
  1513. msgctxt "material_adhesion_tendency label"
  1514. msgid "Adhesion Tendency"
  1515. msgstr "점착 성항"
  1516. #: fdmprinter.def.json
  1517. msgctxt "material_adhesion_tendency description"
  1518. msgid "Surface adhesion tendency."
  1519. msgstr "표면에 점착되는 성항입니다."
  1520. #: fdmprinter.def.json
  1521. msgctxt "material_surface_energy label"
  1522. msgid "Surface Energy"
  1523. msgstr "서피스 에너지"
  1524. #: fdmprinter.def.json
  1525. msgctxt "material_surface_energy description"
  1526. msgid "Surface energy."
  1527. msgstr "표면의 에너지입니다."
  1528. #: fdmprinter.def.json
  1529. msgctxt "material_shrinkage_percentage label"
  1530. msgid "Shrinkage Ratio"
  1531. msgstr "수축률"
  1532. #: fdmprinter.def.json
  1533. msgctxt "material_shrinkage_percentage description"
  1534. msgid "Shrinkage ratio in percentage."
  1535. msgstr "수축 비율 퍼센트."
  1536. #: fdmprinter.def.json
  1537. msgctxt "material_flow label"
  1538. msgid "Flow"
  1539. msgstr "공급량"
  1540. #: fdmprinter.def.json
  1541. msgctxt "material_flow description"
  1542. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1543. msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다."
  1544. #: fdmprinter.def.json
  1545. msgctxt "material_flow_layer_0 label"
  1546. msgid "Initial Layer Flow"
  1547. msgstr "첫번째 레이어 압출량"
  1548. #: fdmprinter.def.json
  1549. msgctxt "material_flow_layer_0 description"
  1550. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1551. msgstr "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다."
  1552. #: fdmprinter.def.json
  1553. msgctxt "retraction_enable label"
  1554. msgid "Enable Retraction"
  1555. msgstr "리트렉션 활성화"
  1556. #: fdmprinter.def.json
  1557. msgctxt "retraction_enable description"
  1558. msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  1559. msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다. "
  1560. #: fdmprinter.def.json
  1561. msgctxt "retract_at_layer_change label"
  1562. msgid "Retract at Layer Change"
  1563. msgstr "레이어 변경시 리트렉션"
  1564. #: fdmprinter.def.json
  1565. msgctxt "retract_at_layer_change description"
  1566. msgid "Retract the filament when the nozzle is moving to the next layer."
  1567. msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다."
  1568. #: fdmprinter.def.json
  1569. msgctxt "retraction_amount label"
  1570. msgid "Retraction Distance"
  1571. msgstr "리트렉션 거리"
  1572. #: fdmprinter.def.json
  1573. msgctxt "retraction_amount description"
  1574. msgid "The length of material retracted during a retraction move."
  1575. msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다."
  1576. #: fdmprinter.def.json
  1577. msgctxt "retraction_speed label"
  1578. msgid "Retraction Speed"
  1579. msgstr "리트렉션 속도"
  1580. #: fdmprinter.def.json
  1581. msgctxt "retraction_speed description"
  1582. msgid "The speed at which the filament is retracted and primed during a retraction move."
  1583. msgstr "리트렉션 속도입니다."
  1584. #: fdmprinter.def.json
  1585. msgctxt "retraction_retract_speed label"
  1586. msgid "Retraction Retract Speed"
  1587. msgstr "리트렉션 속도"
  1588. #: fdmprinter.def.json
  1589. msgctxt "retraction_retract_speed description"
  1590. msgid "The speed at which the filament is retracted during a retraction move."
  1591. msgstr "리트렉션 속도입니다."
  1592. #: fdmprinter.def.json
  1593. msgctxt "retraction_prime_speed label"
  1594. msgid "Retraction Prime Speed"
  1595. msgstr "리트렉션 초기 속도"
  1596. #: fdmprinter.def.json
  1597. msgctxt "retraction_prime_speed description"
  1598. msgid "The speed at which the filament is primed during a retraction move."
  1599. msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다."
  1600. #: fdmprinter.def.json
  1601. msgctxt "retraction_extra_prime_amount label"
  1602. msgid "Retraction Extra Prime Amount"
  1603. msgstr "추가적인 리트렉션 정도"
  1604. #: fdmprinter.def.json
  1605. msgctxt "retraction_extra_prime_amount description"
  1606. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  1607. msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다."
  1608. #: fdmprinter.def.json
  1609. msgctxt "retraction_min_travel label"
  1610. msgid "Retraction Minimum Travel"
  1611. msgstr "리트렉션 최소 이동"
  1612. #: fdmprinter.def.json
  1613. msgctxt "retraction_min_travel description"
  1614. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  1615. msgstr "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 이것은 작은 영역에서 더 적은 리트렉션이 가능합니다."
  1616. #: fdmprinter.def.json
  1617. msgctxt "retraction_count_max label"
  1618. msgid "Maximum Retraction Count"
  1619. msgstr "최대 리트렉션 수"
  1620. #: fdmprinter.def.json
  1621. msgctxt "retraction_count_max description"
  1622. 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."
  1623. msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다."
  1624. #: fdmprinter.def.json
  1625. msgctxt "retraction_extrusion_window label"
  1626. msgid "Minimum Extrusion Distance Window"
  1627. msgstr "최소 압출 영역"
  1628. #: fdmprinter.def.json
  1629. msgctxt "retraction_extrusion_window description"
  1630. 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."
  1631. msgstr "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다."
  1632. #: fdmprinter.def.json
  1633. msgctxt "limit_support_retractions label"
  1634. msgid "Limit Support Retractions"
  1635. msgstr "지지대 후퇴 제한"
  1636. #: fdmprinter.def.json
  1637. msgctxt "limit_support_retractions description"
  1638. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  1639. msgstr "직선으로 지지대 사이를 이동하는 경우 후퇴는 불가능합니다. 이 설정을 사용하면 인쇄 시간은 절약할 수 있지만, 지지 구조물 내에 스트링이 과도하게 증가할 수 있습니다."
  1640. #: fdmprinter.def.json
  1641. msgctxt "material_standby_temperature label"
  1642. msgid "Standby Temperature"
  1643. msgstr "대기 온도"
  1644. #: fdmprinter.def.json
  1645. msgctxt "material_standby_temperature description"
  1646. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1647. msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도."
  1648. #: fdmprinter.def.json
  1649. msgctxt "switch_extruder_retraction_amount label"
  1650. msgid "Nozzle Switch Retraction Distance"
  1651. msgstr "노즐 스위치 리트렉션 거리"
  1652. #: fdmprinter.def.json
  1653. msgctxt "switch_extruder_retraction_amount description"
  1654. 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."
  1655. msgstr "리트렉션 양 : 리트렉션이 전혀없는 경우 0으로 설정합니다. 일반적으로 히팅 영역의 길이와 같아야합니다."
  1656. #: fdmprinter.def.json
  1657. msgctxt "switch_extruder_retraction_speeds label"
  1658. msgid "Nozzle Switch Retraction Speed"
  1659. msgstr "노즐 스위치 리트렉션 속도"
  1660. #: fdmprinter.def.json
  1661. msgctxt "switch_extruder_retraction_speeds description"
  1662. 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."
  1663. msgstr "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다."
  1664. #: fdmprinter.def.json
  1665. msgctxt "switch_extruder_retraction_speed label"
  1666. msgid "Nozzle Switch Retract Speed"
  1667. msgstr "노즐 스위치 후퇴 속도"
  1668. #: fdmprinter.def.json
  1669. msgctxt "switch_extruder_retraction_speed description"
  1670. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  1671. msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도."
  1672. #: fdmprinter.def.json
  1673. msgctxt "switch_extruder_prime_speed label"
  1674. msgid "Nozzle Switch Prime Speed"
  1675. msgstr "노즐 스위치 프라임 속도"
  1676. #: fdmprinter.def.json
  1677. msgctxt "switch_extruder_prime_speed description"
  1678. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  1679. msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도."
  1680. #: fdmprinter.def.json
  1681. msgctxt "speed label"
  1682. msgid "Speed"
  1683. msgstr "속도"
  1684. #: fdmprinter.def.json
  1685. msgctxt "speed description"
  1686. msgid "Speed"
  1687. msgstr "속도"
  1688. #: fdmprinter.def.json
  1689. msgctxt "speed_print label"
  1690. msgid "Print Speed"
  1691. msgstr "프린팅 속도"
  1692. #: fdmprinter.def.json
  1693. msgctxt "speed_print description"
  1694. msgid "The speed at which printing happens."
  1695. msgstr "프린팅 속도."
  1696. #: fdmprinter.def.json
  1697. msgctxt "speed_infill label"
  1698. msgid "Infill Speed"
  1699. msgstr "내부채움 속도"
  1700. #: fdmprinter.def.json
  1701. msgctxt "speed_infill description"
  1702. msgid "The speed at which infill is printed."
  1703. msgstr "내부채움이 프린팅되는 속도."
  1704. #: fdmprinter.def.json
  1705. msgctxt "speed_wall label"
  1706. msgid "Wall Speed"
  1707. msgstr "벽 속도"
  1708. #: fdmprinter.def.json
  1709. msgctxt "speed_wall description"
  1710. msgid "The speed at which the walls are printed."
  1711. msgstr "벽이 프린팅되는 속도입니다."
  1712. #: fdmprinter.def.json
  1713. msgctxt "speed_wall_0 label"
  1714. msgid "Outer Wall Speed"
  1715. msgstr "외벽 속도"
  1716. #: fdmprinter.def.json
  1717. msgctxt "speed_wall_0 description"
  1718. 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."
  1719. msgstr "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다."
  1720. #: fdmprinter.def.json
  1721. msgctxt "speed_wall_x label"
  1722. msgid "Inner Wall Speed"
  1723. msgstr "내벽 속도"
  1724. #: fdmprinter.def.json
  1725. msgctxt "speed_wall_x description"
  1726. 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."
  1727. msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다."
  1728. #: fdmprinter.def.json
  1729. msgctxt "speed_roofing label"
  1730. msgid "Top Surface Skin Speed"
  1731. msgstr "상단 표면 스킨 속도"
  1732. #: fdmprinter.def.json
  1733. msgctxt "speed_roofing description"
  1734. msgid "The speed at which top surface skin layers are printed."
  1735. msgstr "상단 표면 스킨 층이 프린팅되는 속도."
  1736. #: fdmprinter.def.json
  1737. msgctxt "speed_topbottom label"
  1738. msgid "Top/Bottom Speed"
  1739. msgstr "상단/하단 속도"
  1740. #: fdmprinter.def.json
  1741. msgctxt "speed_topbottom description"
  1742. msgid "The speed at which top/bottom layers are printed."
  1743. msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다."
  1744. #: fdmprinter.def.json
  1745. msgctxt "speed_support label"
  1746. msgid "Support Speed"
  1747. msgstr "서포트 속도"
  1748. #: fdmprinter.def.json
  1749. msgctxt "speed_support description"
  1750. 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."
  1751. msgstr "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다."
  1752. #: fdmprinter.def.json
  1753. msgctxt "speed_support_infill label"
  1754. msgid "Support Infill Speed"
  1755. msgstr "서포트 내부채움 속도"
  1756. #: fdmprinter.def.json
  1757. msgctxt "speed_support_infill description"
  1758. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1759. msgstr "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다."
  1760. #: fdmprinter.def.json
  1761. msgctxt "speed_support_interface label"
  1762. msgid "Support Interface Speed"
  1763. msgstr "서포트 인터페이스 속도"
  1764. #: fdmprinter.def.json
  1765. msgctxt "speed_support_interface description"
  1766. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1767. msgstr "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다."
  1768. #: fdmprinter.def.json
  1769. msgctxt "speed_support_roof label"
  1770. msgid "Support Roof Speed"
  1771. msgstr "서포트 상단 속도"
  1772. #: fdmprinter.def.json
  1773. msgctxt "speed_support_roof description"
  1774. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1775. msgstr "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다."
  1776. #: fdmprinter.def.json
  1777. msgctxt "speed_support_bottom label"
  1778. msgid "Support Floor Speed"
  1779. msgstr "서포트 바닥 속도"
  1780. #: fdmprinter.def.json
  1781. msgctxt "speed_support_bottom description"
  1782. 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."
  1783. msgstr "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다."
  1784. #: fdmprinter.def.json
  1785. msgctxt "speed_prime_tower label"
  1786. msgid "Prime Tower Speed"
  1787. msgstr "프라임 타워 속도"
  1788. #: fdmprinter.def.json
  1789. msgctxt "speed_prime_tower description"
  1790. 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."
  1791. msgstr "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다."
  1792. #: fdmprinter.def.json
  1793. msgctxt "speed_travel label"
  1794. msgid "Travel Speed"
  1795. msgstr "이동 속도"
  1796. #: fdmprinter.def.json
  1797. msgctxt "speed_travel description"
  1798. msgid "The speed at which travel moves are made."
  1799. msgstr "움직일때의 이동 속도."
  1800. #: fdmprinter.def.json
  1801. msgctxt "speed_layer_0 label"
  1802. msgid "Initial Layer Speed"
  1803. msgstr "초기 레이어 속도"
  1804. #: fdmprinter.def.json
  1805. msgctxt "speed_layer_0 description"
  1806. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1807. msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다."
  1808. #: fdmprinter.def.json
  1809. msgctxt "speed_print_layer_0 label"
  1810. msgid "Initial Layer Print Speed"
  1811. msgstr "초기 레이어 프린팅 속도"
  1812. #: fdmprinter.def.json
  1813. msgctxt "speed_print_layer_0 description"
  1814. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1815. msgstr "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다."
  1816. #: fdmprinter.def.json
  1817. msgctxt "speed_travel_layer_0 label"
  1818. msgid "Initial Layer Travel Speed"
  1819. msgstr "초기 레이어 이동 속도"
  1820. #: fdmprinter.def.json
  1821. msgctxt "speed_travel_layer_0 description"
  1822. 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."
  1823. msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다."
  1824. #: fdmprinter.def.json
  1825. msgctxt "skirt_brim_speed label"
  1826. msgid "Skirt/Brim Speed"
  1827. msgstr "스커트/브림 속도"
  1828. #: fdmprinter.def.json
  1829. msgctxt "skirt_brim_speed description"
  1830. 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."
  1831. msgstr "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다."
  1832. #: fdmprinter.def.json
  1833. msgctxt "max_feedrate_z_override label"
  1834. msgid "Maximum Z Speed"
  1835. msgstr "최대 Z 속도"
  1836. #: fdmprinter.def.json
  1837. msgctxt "max_feedrate_z_override description"
  1838. 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."
  1839. msgstr "빌드 플레이트가 움직이는 최대 속도. 이 값을 0으로 설정하면 프린팅시 최대 z 속도의 펌웨어 기본값이 사용됩니다."
  1840. #: fdmprinter.def.json
  1841. msgctxt "speed_slowdown_layers label"
  1842. msgid "Number of Slower Layers"
  1843. msgstr "느리게 프린팅할 레이어의 수"
  1844. #: fdmprinter.def.json
  1845. msgctxt "speed_slowdown_layers description"
  1846. 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."
  1847. msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다."
  1848. #: fdmprinter.def.json
  1849. msgctxt "speed_equalize_flow_enabled label"
  1850. msgid "Equalize Filament Flow"
  1851. msgstr "필라멘트 흐름 균일화"
  1852. #: fdmprinter.def.json
  1853. msgctxt "speed_equalize_flow_enabled description"
  1854. 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."
  1855. msgstr "일반 라인보다 얇게 프린팅하여 초당 압출되는 재료의 양이 동일하게 유지되도록 하십시오. 모델의 얇은 부분에는 설정에서 제공 한 것보다 작은 선 너비로 선이 프린팅되어야 할 수 있습니다. 이 설정은 이러한 선의 속도 변경을 제어합니다."
  1856. #: fdmprinter.def.json
  1857. msgctxt "speed_equalize_flow_max label"
  1858. msgid "Maximum Speed for Flow Equalization"
  1859. msgstr "압출량 균등화를위한 최대 속도"
  1860. #: fdmprinter.def.json
  1861. msgctxt "speed_equalize_flow_max description"
  1862. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  1863. msgstr "흐름을 균등하게 유지하기위해 조정되는 최대 프린팅 속도."
  1864. #: fdmprinter.def.json
  1865. msgctxt "acceleration_enabled label"
  1866. msgid "Enable Acceleration Control"
  1867. msgstr "가속 제어 활성화"
  1868. #: fdmprinter.def.json
  1869. msgctxt "acceleration_enabled description"
  1870. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1871. msgstr "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다."
  1872. #: fdmprinter.def.json
  1873. msgctxt "acceleration_print label"
  1874. msgid "Print Acceleration"
  1875. msgstr "프린팅 가속도"
  1876. #: fdmprinter.def.json
  1877. msgctxt "acceleration_print description"
  1878. msgid "The acceleration with which printing happens."
  1879. msgstr "프린팅 속도가 빨라집니다."
  1880. #: fdmprinter.def.json
  1881. msgctxt "acceleration_infill label"
  1882. msgid "Infill Acceleration"
  1883. msgstr "내부채움 가속도"
  1884. #: fdmprinter.def.json
  1885. msgctxt "acceleration_infill description"
  1886. msgid "The acceleration with which infill is printed."
  1887. msgstr "내부채움물이 프린팅되는 가속도."
  1888. #: fdmprinter.def.json
  1889. msgctxt "acceleration_wall label"
  1890. msgid "Wall Acceleration"
  1891. msgstr "벽 가속도"
  1892. #: fdmprinter.def.json
  1893. msgctxt "acceleration_wall description"
  1894. msgid "The acceleration with which the walls are printed."
  1895. msgstr "벽이 프린팅되는 가속도."
  1896. #: fdmprinter.def.json
  1897. msgctxt "acceleration_wall_0 label"
  1898. msgid "Outer Wall Acceleration"
  1899. msgstr "외벽 가속도"
  1900. #: fdmprinter.def.json
  1901. msgctxt "acceleration_wall_0 description"
  1902. msgid "The acceleration with which the outermost walls are printed."
  1903. msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다."
  1904. #: fdmprinter.def.json
  1905. msgctxt "acceleration_wall_x label"
  1906. msgid "Inner Wall Acceleration"
  1907. msgstr "내벽 가속도"
  1908. #: fdmprinter.def.json
  1909. msgctxt "acceleration_wall_x description"
  1910. msgid "The acceleration with which all inner walls are printed."
  1911. msgstr "모든 내부 벽이 프린팅되는 가속도입니다."
  1912. #: fdmprinter.def.json
  1913. msgctxt "acceleration_roofing label"
  1914. msgid "Top Surface Skin Acceleration"
  1915. msgstr "상단 표면 스킨 가속도"
  1916. #: fdmprinter.def.json
  1917. msgctxt "acceleration_roofing description"
  1918. msgid "The acceleration with which top surface skin layers are printed."
  1919. msgstr "상단 표면 스킨 층이 프린팅되는 가속도."
  1920. #: fdmprinter.def.json
  1921. msgctxt "acceleration_topbottom label"
  1922. msgid "Top/Bottom Acceleration"
  1923. msgstr "상단/하단 가속도"
  1924. #: fdmprinter.def.json
  1925. msgctxt "acceleration_topbottom description"
  1926. msgid "The acceleration with which top/bottom layers are printed."
  1927. msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다."
  1928. #: fdmprinter.def.json
  1929. msgctxt "acceleration_support label"
  1930. msgid "Support Acceleration"
  1931. msgstr "서포트 가속도"
  1932. #: fdmprinter.def.json
  1933. msgctxt "acceleration_support description"
  1934. msgid "The acceleration with which the support structure is printed."
  1935. msgstr "서포트 구조가 프린팅되는 가속도."
  1936. #: fdmprinter.def.json
  1937. msgctxt "acceleration_support_infill label"
  1938. msgid "Support Infill Acceleration"
  1939. msgstr "서포트 내부채움 가속도"
  1940. #: fdmprinter.def.json
  1941. msgctxt "acceleration_support_infill description"
  1942. msgid "The acceleration with which the infill of support is printed."
  1943. msgstr "서포트의 내부채움이 프린팅되는 가속도."
  1944. #: fdmprinter.def.json
  1945. msgctxt "acceleration_support_interface label"
  1946. msgid "Support Interface Acceleration"
  1947. msgstr "서포트 인터페이스 가속도"
  1948. #: fdmprinter.def.json
  1949. msgctxt "acceleration_support_interface description"
  1950. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1951. msgstr "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다."
  1952. #: fdmprinter.def.json
  1953. msgctxt "acceleration_support_roof label"
  1954. msgid "Support Roof Acceleration"
  1955. msgstr "서포트 상단 가속도"
  1956. #: fdmprinter.def.json
  1957. msgctxt "acceleration_support_roof description"
  1958. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1959. msgstr "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다."
  1960. #: fdmprinter.def.json
  1961. msgctxt "acceleration_support_bottom label"
  1962. msgid "Support Floor Acceleration"
  1963. msgstr "서포트 바닥 가속도"
  1964. #: fdmprinter.def.json
  1965. msgctxt "acceleration_support_bottom description"
  1966. 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."
  1967. msgstr "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다."
  1968. #: fdmprinter.def.json
  1969. msgctxt "acceleration_prime_tower label"
  1970. msgid "Prime Tower Acceleration"
  1971. msgstr "프라임 타워 가속"
  1972. #: fdmprinter.def.json
  1973. msgctxt "acceleration_prime_tower description"
  1974. msgid "The acceleration with which the prime tower is printed."
  1975. msgstr "프라임 타워가 프린팅되는 가속도."
  1976. #: fdmprinter.def.json
  1977. msgctxt "acceleration_travel label"
  1978. msgid "Travel Acceleration"
  1979. msgstr "이동 가속"
  1980. #: fdmprinter.def.json
  1981. msgctxt "acceleration_travel description"
  1982. msgid "The acceleration with which travel moves are made."
  1983. msgstr "헤드가 움직일때의 가속도."
  1984. #: fdmprinter.def.json
  1985. msgctxt "acceleration_layer_0 label"
  1986. msgid "Initial Layer Acceleration"
  1987. msgstr "초기 레이어 가속"
  1988. #: fdmprinter.def.json
  1989. msgctxt "acceleration_layer_0 description"
  1990. msgid "The acceleration for the initial layer."
  1991. msgstr "초기 레이어의 가속도입니다."
  1992. #: fdmprinter.def.json
  1993. msgctxt "acceleration_print_layer_0 label"
  1994. msgid "Initial Layer Print Acceleration"
  1995. msgstr "초기 레이어 프린팅 가속"
  1996. #: fdmprinter.def.json
  1997. msgctxt "acceleration_print_layer_0 description"
  1998. msgid "The acceleration during the printing of the initial layer."
  1999. msgstr "초기 레이어 프린팅 중 가속도."
  2000. #: fdmprinter.def.json
  2001. msgctxt "acceleration_travel_layer_0 label"
  2002. msgid "Initial Layer Travel Acceleration"
  2003. msgstr "초기 레이어 이동 가속도"
  2004. #: fdmprinter.def.json
  2005. msgctxt "acceleration_travel_layer_0 description"
  2006. msgid "The acceleration for travel moves in the initial layer."
  2007. msgstr "헤드가 초기 레이어에서 이동할 때의 가속도."
  2008. #: fdmprinter.def.json
  2009. msgctxt "acceleration_skirt_brim label"
  2010. msgid "Skirt/Brim Acceleration"
  2011. msgstr "Skirt/Brim 가속도"
  2012. #: fdmprinter.def.json
  2013. msgctxt "acceleration_skirt_brim description"
  2014. 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."
  2015. msgstr "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다."
  2016. #: fdmprinter.def.json
  2017. msgctxt "jerk_enabled label"
  2018. msgid "Enable Jerk Control"
  2019. msgstr "Jerk 컨트롤 사용"
  2020. #: fdmprinter.def.json
  2021. msgctxt "jerk_enabled description"
  2022. 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."
  2023. msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. Jerk를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다."
  2024. #: fdmprinter.def.json
  2025. msgctxt "jerk_print label"
  2026. msgid "Print Jerk"
  2027. msgstr "Jerk 프린팅"
  2028. #: fdmprinter.def.json
  2029. msgctxt "jerk_print description"
  2030. msgid "The maximum instantaneous velocity change of the print head."
  2031. msgstr "프린트 헤드의 최대 순간 속도 변화."
  2032. #: fdmprinter.def.json
  2033. msgctxt "jerk_infill label"
  2034. msgid "Infill Jerk"
  2035. msgstr "Jerk 내부채움"
  2036. #: fdmprinter.def.json
  2037. msgctxt "jerk_infill description"
  2038. msgid "The maximum instantaneous velocity change with which infill is printed."
  2039. msgstr "내부채움이 프린팅되는 최대 순간 속도 변화."
  2040. #: fdmprinter.def.json
  2041. msgctxt "jerk_wall label"
  2042. msgid "Wall Jerk"
  2043. msgstr "벽 Jerk"
  2044. #: fdmprinter.def.json
  2045. msgctxt "jerk_wall description"
  2046. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2047. msgstr "벽이 프린팅되는 최대 순간 속도 변화."
  2048. #: fdmprinter.def.json
  2049. msgctxt "jerk_wall_0 label"
  2050. msgid "Outer Wall Jerk"
  2051. msgstr "외벽 Jerk"
  2052. #: fdmprinter.def.json
  2053. msgctxt "jerk_wall_0 description"
  2054. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2055. msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화."
  2056. #: fdmprinter.def.json
  2057. msgctxt "jerk_wall_x label"
  2058. msgid "Inner Wall Jerk"
  2059. msgstr "내벽 Jerk"
  2060. #: fdmprinter.def.json
  2061. msgctxt "jerk_wall_x description"
  2062. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2063. msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화."
  2064. #: fdmprinter.def.json
  2065. msgctxt "jerk_roofing label"
  2066. msgid "Top Surface Skin Jerk"
  2067. msgstr "스킨 표면 Jerk"
  2068. #: fdmprinter.def.json
  2069. msgctxt "jerk_roofing description"
  2070. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2071. msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화."
  2072. #: fdmprinter.def.json
  2073. msgctxt "jerk_topbottom label"
  2074. msgid "Top/Bottom Jerk"
  2075. msgstr "위/아래 Jerk"
  2076. #: fdmprinter.def.json
  2077. msgctxt "jerk_topbottom description"
  2078. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2079. msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화."
  2080. #: fdmprinter.def.json
  2081. msgctxt "jerk_support label"
  2082. msgid "Support Jerk"
  2083. msgstr "서포트 Jerk"
  2084. #: fdmprinter.def.json
  2085. msgctxt "jerk_support description"
  2086. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2087. msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화."
  2088. #: fdmprinter.def.json
  2089. msgctxt "jerk_support_infill label"
  2090. msgid "Support Infill Jerk"
  2091. msgstr "서포트 내부채움 Jerk"
  2092. #: fdmprinter.def.json
  2093. msgctxt "jerk_support_infill description"
  2094. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2095. msgstr "서포트가 채워지는 최대 순간 속도 변화."
  2096. #: fdmprinter.def.json
  2097. msgctxt "jerk_support_interface label"
  2098. msgid "Support Interface Jerk"
  2099. msgstr "서포트 인터페이스 Jerk"
  2100. #: fdmprinter.def.json
  2101. msgctxt "jerk_support_interface description"
  2102. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2103. msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화."
  2104. #: fdmprinter.def.json
  2105. msgctxt "jerk_support_roof label"
  2106. msgid "Support Roof Jerk"
  2107. msgstr "서포트 위 Jerk"
  2108. #: fdmprinter.def.json
  2109. msgctxt "jerk_support_roof description"
  2110. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2111. msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화."
  2112. #: fdmprinter.def.json
  2113. msgctxt "jerk_support_bottom label"
  2114. msgid "Support Floor Jerk"
  2115. msgstr "서포트 바닥 Jerk"
  2116. #: fdmprinter.def.json
  2117. msgctxt "jerk_support_bottom description"
  2118. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2119. msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화."
  2120. #: fdmprinter.def.json
  2121. msgctxt "jerk_prime_tower label"
  2122. msgid "Prime Tower Jerk"
  2123. msgstr "프라임 타워 Jerk"
  2124. #: fdmprinter.def.json
  2125. msgctxt "jerk_prime_tower description"
  2126. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2127. msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화."
  2128. #: fdmprinter.def.json
  2129. msgctxt "jerk_travel label"
  2130. msgid "Travel Jerk"
  2131. msgstr "이동 Jerk"
  2132. #: fdmprinter.def.json
  2133. msgctxt "jerk_travel description"
  2134. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2135. msgstr "헤드가 이동하는 최대 순간 속도 변화."
  2136. #: fdmprinter.def.json
  2137. msgctxt "jerk_layer_0 label"
  2138. msgid "Initial Layer Jerk"
  2139. msgstr "초기 레이어 Jerk"
  2140. #: fdmprinter.def.json
  2141. msgctxt "jerk_layer_0 description"
  2142. msgid "The print maximum instantaneous velocity change for the initial layer."
  2143. msgstr "초기 레이어의 프린팅 최대 순간 속도 변화."
  2144. #: fdmprinter.def.json
  2145. msgctxt "jerk_print_layer_0 label"
  2146. msgid "Initial Layer Print Jerk"
  2147. msgstr "초기 레이어 프린팅 Jerk"
  2148. #: fdmprinter.def.json
  2149. msgctxt "jerk_print_layer_0 description"
  2150. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2151. msgstr "초기 층의 프린팅 중 최대 순간 속도 변화."
  2152. #: fdmprinter.def.json
  2153. msgctxt "jerk_travel_layer_0 label"
  2154. msgid "Initial Layer Travel Jerk"
  2155. msgstr "초기 레이어 이동 Jerk"
  2156. #: fdmprinter.def.json
  2157. msgctxt "jerk_travel_layer_0 description"
  2158. msgid "The acceleration for travel moves in the initial layer."
  2159. msgstr "헤드가 초기 레이어에서 이동할 때의 가속도."
  2160. #: fdmprinter.def.json
  2161. msgctxt "jerk_skirt_brim label"
  2162. msgid "Skirt/Brim Jerk"
  2163. msgstr "Skirt/Brim Jerk"
  2164. #: fdmprinter.def.json
  2165. msgctxt "jerk_skirt_brim description"
  2166. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2167. msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화."
  2168. #: fdmprinter.def.json
  2169. msgctxt "travel label"
  2170. msgid "Travel"
  2171. msgstr "이동"
  2172. #: fdmprinter.def.json
  2173. msgctxt "travel description"
  2174. msgid "travel"
  2175. msgstr "이동"
  2176. #: fdmprinter.def.json
  2177. msgctxt "retraction_combing label"
  2178. msgid "Combing Mode"
  2179. msgstr "Combing 모드"
  2180. #: fdmprinter.def.json
  2181. msgctxt "retraction_combing description"
  2182. 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."
  2183. msgstr "빗질은 여행 할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 여행 이동이 약간 더 길어 지지만 수축의 필요성은 줄어 듭니다. 빗질이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 infill 내에서만 빗질하여 상 / 하 피부 영역을 빗질하는 것을 피할 수 있습니다."
  2184. #: fdmprinter.def.json
  2185. msgctxt "retraction_combing option off"
  2186. msgid "Off"
  2187. msgstr "끔"
  2188. #: fdmprinter.def.json
  2189. msgctxt "retraction_combing option all"
  2190. msgid "All"
  2191. msgstr "모두"
  2192. #: fdmprinter.def.json
  2193. msgctxt "retraction_combing option noskin"
  2194. msgid "Not in Skin"
  2195. msgstr "스킨에 없음"
  2196. #: fdmprinter.def.json
  2197. msgctxt "retraction_combing_max_distance label"
  2198. msgid "Max Comb Distance With No Retract"
  2199. msgstr "수축이 없을 때 최대 빗질 거리"
  2200. #: fdmprinter.def.json
  2201. msgctxt "retraction_combing_max_distance description"
  2202. msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  2203. msgstr "0이 아닌 경우 이 거리보다 긴 빗질 이동은 후퇴를 사용합니다."
  2204. #: fdmprinter.def.json
  2205. msgctxt "travel_retract_before_outer_wall label"
  2206. msgid "Retract Before Outer Wall"
  2207. msgstr "외벽 전에 리트렉션"
  2208. #: fdmprinter.def.json
  2209. msgctxt "travel_retract_before_outer_wall description"
  2210. msgid "Always retract when moving to start an outer wall."
  2211. msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다."
  2212. #: fdmprinter.def.json
  2213. msgctxt "travel_avoid_other_parts label"
  2214. msgid "Avoid Printed Parts When Traveling"
  2215. msgstr "움직일 때 프린팅한 부분을 피하기"
  2216. #: fdmprinter.def.json
  2217. msgctxt "travel_avoid_other_parts description"
  2218. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2219. msgstr "노즐은 이동 할 때 이미 프린팅 된 부분을 피합니다. 이 옵션은 combing이 활성화 된 경우에만 사용할 수 있습니다."
  2220. #: fdmprinter.def.json
  2221. msgctxt "travel_avoid_supports label"
  2222. msgid "Avoid Supports When Traveling"
  2223. msgstr "이동하는 경우 지지대 피함"
  2224. #: fdmprinter.def.json
  2225. msgctxt "travel_avoid_supports description"
  2226. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2227. msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다."
  2228. #: fdmprinter.def.json
  2229. msgctxt "travel_avoid_distance label"
  2230. msgid "Travel Avoid Distance"
  2231. msgstr "이동중 피하는 거리"
  2232. #: fdmprinter.def.json
  2233. msgctxt "travel_avoid_distance description"
  2234. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2235. msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리."
  2236. #: fdmprinter.def.json
  2237. msgctxt "start_layers_at_same_position label"
  2238. msgid "Start Layers with the Same Part"
  2239. msgstr "같은 부분으로 레이어 시작"
  2240. #: fdmprinter.def.json
  2241. msgctxt "start_layers_at_same_position description"
  2242. 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."
  2243. msgstr "각 레이어에서 같은 지점 근처에서 개체를 프린팅, 새 레이어는 이전 레이어가 끝난 부분에서 프린팅을 하지 않는다.. 이것은 오버행 및 작은 부분을 개선하지만 프린팅 시간을 증가시킵니다."
  2244. #: fdmprinter.def.json
  2245. msgctxt "layer_start_x label"
  2246. msgid "Layer Start X"
  2247. msgstr "레이어 시작 X"
  2248. #: fdmprinter.def.json
  2249. msgctxt "layer_start_x description"
  2250. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2251. msgstr "각 레이어의 프린팅를 시작할 부분을 찾을 위치 근처의 X 좌표입니다."
  2252. #: fdmprinter.def.json
  2253. msgctxt "layer_start_y label"
  2254. msgid "Layer Start Y"
  2255. msgstr "레이어 시작 Y"
  2256. #: fdmprinter.def.json
  2257. msgctxt "layer_start_y description"
  2258. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2259. msgstr "각 레이어 프린팅를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다."
  2260. #: fdmprinter.def.json
  2261. msgctxt "retraction_hop_enabled label"
  2262. msgid "Z Hop When Retracted"
  2263. msgstr "리트렉션했을 때의 Z Hop"
  2264. #: fdmprinter.def.json
  2265. msgctxt "retraction_hop_enabled description"
  2266. 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."
  2267. msgstr "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 출력물에 부딪치지 않도록 합니다."
  2268. #: fdmprinter.def.json
  2269. msgctxt "retraction_hop_only_when_collides label"
  2270. msgid "Z Hop Only Over Printed Parts"
  2271. msgstr "프린팅 된 부분에만 Z Hop"
  2272. #: fdmprinter.def.json
  2273. msgctxt "retraction_hop_only_when_collides description"
  2274. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2275. msgstr "이동 시, 수평 이동으로 피할 수없는 출력물 위로 이동할 때만 Z 홉을 수행하십시오."
  2276. #: fdmprinter.def.json
  2277. msgctxt "retraction_hop label"
  2278. msgid "Z Hop Height"
  2279. msgstr "Z 홉 높이"
  2280. #: fdmprinter.def.json
  2281. msgctxt "retraction_hop description"
  2282. msgid "The height difference when performing a Z Hop."
  2283. msgstr "Z 홉을 수행 할 때의 높이 차이."
  2284. #: fdmprinter.def.json
  2285. msgctxt "retraction_hop_after_extruder_switch label"
  2286. msgid "Z Hop After Extruder Switch"
  2287. msgstr "익스트루더 스위치 후 Z 홉"
  2288. #: fdmprinter.def.json
  2289. msgctxt "retraction_hop_after_extruder_switch description"
  2290. 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."
  2291. msgstr "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다."
  2292. #: fdmprinter.def.json
  2293. msgctxt "cooling label"
  2294. msgid "Cooling"
  2295. msgstr "냉각"
  2296. #: fdmprinter.def.json
  2297. msgctxt "cooling description"
  2298. msgid "Cooling"
  2299. msgstr "냉각"
  2300. #: fdmprinter.def.json
  2301. msgctxt "cool_fan_enabled label"
  2302. msgid "Enable Print Cooling"
  2303. msgstr "프린팅 냉각 사용"
  2304. #: fdmprinter.def.json
  2305. msgctxt "cool_fan_enabled description"
  2306. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2307. msgstr "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다."
  2308. #: fdmprinter.def.json
  2309. msgctxt "cool_fan_speed label"
  2310. msgid "Fan Speed"
  2311. msgstr "팬 속도"
  2312. #: fdmprinter.def.json
  2313. msgctxt "cool_fan_speed description"
  2314. msgid "The speed at which the print cooling fans spin."
  2315. msgstr "프린팅 냉각 팬이 회전하는 속도입니다."
  2316. #: fdmprinter.def.json
  2317. msgctxt "cool_fan_speed_min label"
  2318. msgid "Regular Fan Speed"
  2319. msgstr "표준 팬 속도"
  2320. #: fdmprinter.def.json
  2321. msgctxt "cool_fan_speed_min description"
  2322. 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."
  2323. msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다."
  2324. #: fdmprinter.def.json
  2325. msgctxt "cool_fan_speed_max label"
  2326. msgid "Maximum Fan Speed"
  2327. msgstr "최대 팬 속도"
  2328. #: fdmprinter.def.json
  2329. msgctxt "cool_fan_speed_max description"
  2330. 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."
  2331. msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다."
  2332. #: fdmprinter.def.json
  2333. msgctxt "cool_min_layer_time_fan_speed_max label"
  2334. msgid "Regular/Maximum Fan Speed Threshold"
  2335. msgstr "표준/최대 팬 속도 임계 값"
  2336. #: fdmprinter.def.json
  2337. msgctxt "cool_min_layer_time_fan_speed_max description"
  2338. 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."
  2339. msgstr "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다."
  2340. #: fdmprinter.def.json
  2341. msgctxt "cool_fan_speed_0 label"
  2342. msgid "Initial Fan Speed"
  2343. msgstr "초기 팬 속도"
  2344. #: fdmprinter.def.json
  2345. msgctxt "cool_fan_speed_0 description"
  2346. 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."
  2347. msgstr "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다."
  2348. #: fdmprinter.def.json
  2349. msgctxt "cool_fan_full_at_height label"
  2350. msgid "Regular Fan Speed at Height"
  2351. msgstr "표준 팬 속도시의 높이"
  2352. #: fdmprinter.def.json
  2353. msgctxt "cool_fan_full_at_height description"
  2354. 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."
  2355. msgstr "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다."
  2356. #: fdmprinter.def.json
  2357. msgctxt "cool_fan_full_layer label"
  2358. msgid "Regular Fan Speed at Layer"
  2359. msgstr "표준 팬 속도시의 레이어"
  2360. #: fdmprinter.def.json
  2361. msgctxt "cool_fan_full_layer description"
  2362. 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."
  2363. msgstr "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다."
  2364. #: fdmprinter.def.json
  2365. msgctxt "cool_min_layer_time label"
  2366. msgid "Minimum Layer Time"
  2367. msgstr "최소 레이어 시간"
  2368. #: fdmprinter.def.json
  2369. msgctxt "cool_min_layer_time description"
  2370. 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."
  2371. msgstr "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다."
  2372. #: fdmprinter.def.json
  2373. msgctxt "cool_min_speed label"
  2374. msgid "Minimum Speed"
  2375. msgstr "최저 속도"
  2376. #: fdmprinter.def.json
  2377. msgctxt "cool_min_speed description"
  2378. 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."
  2379. msgstr "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다."
  2380. #: fdmprinter.def.json
  2381. msgctxt "cool_lift_head label"
  2382. msgid "Lift Head"
  2383. msgstr "리프트 헤드"
  2384. #: fdmprinter.def.json
  2385. msgctxt "cool_lift_head description"
  2386. 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."
  2387. msgstr "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다."
  2388. #: fdmprinter.def.json
  2389. msgctxt "support label"
  2390. msgid "Support"
  2391. msgstr "서포트"
  2392. #: fdmprinter.def.json
  2393. msgctxt "support description"
  2394. msgid "Support"
  2395. msgstr "서포트"
  2396. #: fdmprinter.def.json
  2397. msgctxt "support_enable label"
  2398. msgid "Generate Support"
  2399. msgstr "서포트 생성"
  2400. #: fdmprinter.def.json
  2401. msgctxt "support_enable description"
  2402. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2403. msgstr "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다."
  2404. #: fdmprinter.def.json
  2405. msgctxt "support_extruder_nr label"
  2406. msgid "Support Extruder"
  2407. msgstr "서포트 익스트루더"
  2408. #: fdmprinter.def.json
  2409. msgctxt "support_extruder_nr description"
  2410. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2411. msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다."
  2412. #: fdmprinter.def.json
  2413. msgctxt "support_infill_extruder_nr label"
  2414. msgid "Support Infill Extruder"
  2415. msgstr "서포트 내부채움 익스트루더"
  2416. #: fdmprinter.def.json
  2417. msgctxt "support_infill_extruder_nr description"
  2418. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2419. msgstr "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다."
  2420. #: fdmprinter.def.json
  2421. msgctxt "support_extruder_nr_layer_0 label"
  2422. msgid "First Layer Support Extruder"
  2423. msgstr "첫 번째 레이어 서포트 익스트루더"
  2424. #: fdmprinter.def.json
  2425. msgctxt "support_extruder_nr_layer_0 description"
  2426. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2427. msgstr "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다."
  2428. #: fdmprinter.def.json
  2429. msgctxt "support_interface_extruder_nr label"
  2430. msgid "Support Interface Extruder"
  2431. msgstr "서포트 인터페이스 익스트루더"
  2432. #: fdmprinter.def.json
  2433. msgctxt "support_interface_extruder_nr description"
  2434. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2435. msgstr "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다."
  2436. #: fdmprinter.def.json
  2437. msgctxt "support_roof_extruder_nr label"
  2438. msgid "Support Roof Extruder"
  2439. msgstr "서포트 지붕 익스트루더"
  2440. #: fdmprinter.def.json
  2441. msgctxt "support_roof_extruder_nr description"
  2442. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2443. msgstr "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다."
  2444. #: fdmprinter.def.json
  2445. msgctxt "support_bottom_extruder_nr label"
  2446. msgid "Support Floor Extruder"
  2447. msgstr "서포트 바닥 익스트루더"
  2448. #: fdmprinter.def.json
  2449. msgctxt "support_bottom_extruder_nr description"
  2450. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2451. msgstr "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다."
  2452. #: fdmprinter.def.json
  2453. msgctxt "support_type label"
  2454. msgid "Support Placement"
  2455. msgstr "서포트 배치"
  2456. #: fdmprinter.def.json
  2457. msgctxt "support_type description"
  2458. 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."
  2459. msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다."
  2460. #: fdmprinter.def.json
  2461. msgctxt "support_type option buildplate"
  2462. msgid "Touching Buildplate"
  2463. msgstr "빌드 플레이트 위"
  2464. #: fdmprinter.def.json
  2465. msgctxt "support_type option everywhere"
  2466. msgid "Everywhere"
  2467. msgstr "어디에나"
  2468. #: fdmprinter.def.json
  2469. msgctxt "support_angle label"
  2470. msgid "Support Overhang Angle"
  2471. msgstr "오버행 각도"
  2472. #: fdmprinter.def.json
  2473. msgctxt "support_angle description"
  2474. 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."
  2475. msgstr "서포트가 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 서포트가 생성되며 90 °는 지원하지 않습니다."
  2476. #: fdmprinter.def.json
  2477. msgctxt "support_pattern label"
  2478. msgid "Support Pattern"
  2479. msgstr "서포트 패턴"
  2480. #: fdmprinter.def.json
  2481. msgctxt "support_pattern description"
  2482. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2483. msgstr "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다."
  2484. #: fdmprinter.def.json
  2485. msgctxt "support_pattern option lines"
  2486. msgid "Lines"
  2487. msgstr "라인"
  2488. #: fdmprinter.def.json
  2489. msgctxt "support_pattern option grid"
  2490. msgid "Grid"
  2491. msgstr "격자"
  2492. #: fdmprinter.def.json
  2493. msgctxt "support_pattern option triangles"
  2494. msgid "Triangles"
  2495. msgstr "삼각형"
  2496. #: fdmprinter.def.json
  2497. msgctxt "support_pattern option concentric"
  2498. msgid "Concentric"
  2499. msgstr "동심원의"
  2500. #: fdmprinter.def.json
  2501. msgctxt "support_pattern option concentric_3d"
  2502. msgid "Concentric 3D"
  2503. msgstr "동심원 3D"
  2504. #: fdmprinter.def.json
  2505. msgctxt "support_pattern option zigzag"
  2506. msgid "Zig Zag"
  2507. msgstr "지그재그"
  2508. #: fdmprinter.def.json
  2509. msgctxt "support_pattern option cross"
  2510. msgid "Cross"
  2511. msgstr "십자"
  2512. #: fdmprinter.def.json
  2513. msgctxt "support_wall_count label"
  2514. msgid "Support Wall Line Count"
  2515. msgstr "지지대 벽 라인 카운트"
  2516. #: fdmprinter.def.json
  2517. msgctxt "support_wall_count description"
  2518. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2519. msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다."
  2520. #: fdmprinter.def.json
  2521. msgctxt "zig_zaggify_support label"
  2522. msgid "Connect Support Lines"
  2523. msgstr "서포트 선 연결"
  2524. #: fdmprinter.def.json
  2525. msgctxt "zig_zaggify_support description"
  2526. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  2527. msgstr "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다."
  2528. #: fdmprinter.def.json
  2529. msgctxt "support_connect_zigzags label"
  2530. msgid "Connect Support ZigZags"
  2531. msgstr "ZigZags 서포트 연결"
  2532. #: fdmprinter.def.json
  2533. msgctxt "support_connect_zigzags description"
  2534. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2535. msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다."
  2536. #: fdmprinter.def.json
  2537. msgctxt "support_infill_rate label"
  2538. msgid "Support Density"
  2539. msgstr "서포트 밀도"
  2540. #: fdmprinter.def.json
  2541. msgctxt "support_infill_rate description"
  2542. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2543. msgstr "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다."
  2544. #: fdmprinter.def.json
  2545. msgctxt "support_line_distance label"
  2546. msgid "Support Line Distance"
  2547. msgstr "서포트 선 거리"
  2548. #: fdmprinter.def.json
  2549. msgctxt "support_line_distance description"
  2550. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2551. msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다."
  2552. #: fdmprinter.def.json
  2553. msgctxt "support_z_distance label"
  2554. msgid "Support Z Distance"
  2555. msgstr "서포트 Z 거리"
  2556. #: fdmprinter.def.json
  2557. msgctxt "support_z_distance description"
  2558. 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."
  2559. msgstr "서포트 구조의 위/아래에서 프린팅까지의 거리. 이 틈새는 모형 프린팅 후 서포트를 제거하기 위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다."
  2560. #: fdmprinter.def.json
  2561. msgctxt "support_top_distance label"
  2562. msgid "Support Top Distance"
  2563. msgstr "서포트 상단 거리"
  2564. #: fdmprinter.def.json
  2565. msgctxt "support_top_distance description"
  2566. msgid "Distance from the top of the support to the print."
  2567. msgstr "서포트 상단에서 프린팅까지의 거리."
  2568. #: fdmprinter.def.json
  2569. msgctxt "support_bottom_distance label"
  2570. msgid "Support Bottom Distance"
  2571. msgstr "서포트 바닥 거리"
  2572. #: fdmprinter.def.json
  2573. msgctxt "support_bottom_distance description"
  2574. msgid "Distance from the print to the bottom of the support."
  2575. msgstr "출력물에서 서포트의 바닥까지의 거리."
  2576. #: fdmprinter.def.json
  2577. msgctxt "support_xy_distance label"
  2578. msgid "Support X/Y Distance"
  2579. msgstr "X/Y 서포트 거리"
  2580. #: fdmprinter.def.json
  2581. msgctxt "support_xy_distance description"
  2582. msgid "Distance of the support structure from the print in the X/Y directions."
  2583. msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리."
  2584. #: fdmprinter.def.json
  2585. msgctxt "support_xy_overrides_z label"
  2586. msgid "Support Distance Priority"
  2587. msgstr "서포트 거리 우선 순위"
  2588. #: fdmprinter.def.json
  2589. msgctxt "support_xy_overrides_z description"
  2590. 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."
  2591. msgstr "서포트 X/Y 거리가 서포트 Z 거리를 무시하는지 여부를 나타냅니다. X/Y가 Z를 오버라이드하면 X/Y 거리는 모델에서 서포트점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X/Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다."
  2592. #: fdmprinter.def.json
  2593. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2594. msgid "X/Y overrides Z"
  2595. msgstr "X/Y가 Z를 무시합니다"
  2596. #: fdmprinter.def.json
  2597. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2598. msgid "Z overrides X/Y"
  2599. msgstr "Z가 X/Y를 무시합니다"
  2600. #: fdmprinter.def.json
  2601. msgctxt "support_xy_distance_overhang label"
  2602. msgid "Minimum Support X/Y Distance"
  2603. msgstr "최소 서포트 X/Y 거리"
  2604. #: fdmprinter.def.json
  2605. msgctxt "support_xy_distance_overhang description"
  2606. msgid "Distance of the support structure from the overhang in the X/Y directions. "
  2607. msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리. "
  2608. #: fdmprinter.def.json
  2609. msgctxt "support_bottom_stair_step_height label"
  2610. msgid "Support Stair Step Height"
  2611. msgstr "계단 Step Height 서포트"
  2612. #: fdmprinter.def.json
  2613. msgctxt "support_bottom_stair_step_height description"
  2614. 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."
  2615. msgstr "모델에있는 서포트의 계단 모양 바닥의 계단 높이. 값이 낮으면 서포트를 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오."
  2616. #: fdmprinter.def.json
  2617. msgctxt "support_bottom_stair_step_width label"
  2618. msgid "Support Stair Step Maximum Width"
  2619. msgstr "서포트 계단 스텝 최대 폭"
  2620. #: fdmprinter.def.json
  2621. msgctxt "support_bottom_stair_step_width description"
  2622. 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."
  2623. msgstr "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다."
  2624. #: fdmprinter.def.json
  2625. msgctxt "support_join_distance label"
  2626. msgid "Support Join Distance"
  2627. msgstr "서포트 Join 거리"
  2628. #: fdmprinter.def.json
  2629. msgctxt "support_join_distance description"
  2630. 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."
  2631. msgstr "X/Y 방향으로서포트 구조물 사이의 최대 거리. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다."
  2632. #: fdmprinter.def.json
  2633. msgctxt "support_offset label"
  2634. msgid "Support Horizontal Expansion"
  2635. msgstr "수평 확장 서포트"
  2636. #: fdmprinter.def.json
  2637. msgctxt "support_offset description"
  2638. 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."
  2639. msgstr "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다."
  2640. #: fdmprinter.def.json
  2641. msgctxt "support_infill_sparse_thickness label"
  2642. msgid "Support Infill Layer Thickness"
  2643. msgstr "서포트 내부채움 레이어 두께"
  2644. #: fdmprinter.def.json
  2645. msgctxt "support_infill_sparse_thickness description"
  2646. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2647. msgstr "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다."
  2648. #: fdmprinter.def.json
  2649. msgctxt "gradual_support_infill_steps label"
  2650. msgid "Gradual Support Infill Steps"
  2651. msgstr "점진적 서포트 내부채움 단계"
  2652. #: fdmprinter.def.json
  2653. msgctxt "gradual_support_infill_steps description"
  2654. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  2655. msgstr "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다."
  2656. #: fdmprinter.def.json
  2657. msgctxt "gradual_support_infill_step_height label"
  2658. msgid "Gradual Support Infill Step Height"
  2659. msgstr "점진적 서포트 내부채움 단계 높이"
  2660. #: fdmprinter.def.json
  2661. msgctxt "gradual_support_infill_step_height description"
  2662. msgid "The height of support infill of a given density before switching to half the density."
  2663. msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이."
  2664. #: fdmprinter.def.json
  2665. msgctxt "support_interface_enable label"
  2666. msgid "Enable Support Interface"
  2667. msgstr "서포트 인터페이스 사용"
  2668. #: fdmprinter.def.json
  2669. msgctxt "support_interface_enable description"
  2670. 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."
  2671. msgstr "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다."
  2672. #: fdmprinter.def.json
  2673. msgctxt "support_roof_enable label"
  2674. msgid "Enable Support Roof"
  2675. msgstr "서포트 지붕 사용"
  2676. #: fdmprinter.def.json
  2677. msgctxt "support_roof_enable description"
  2678. 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."
  2679. msgstr "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다."
  2680. #: fdmprinter.def.json
  2681. msgctxt "support_bottom_enable label"
  2682. msgid "Enable Support Floor"
  2683. msgstr "서포트 바닥 사용"
  2684. #: fdmprinter.def.json
  2685. msgctxt "support_bottom_enable description"
  2686. 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."
  2687. msgstr "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다."
  2688. #: fdmprinter.def.json
  2689. msgctxt "support_interface_height label"
  2690. msgid "Support Interface Thickness"
  2691. msgstr "서포트 인터페이스 두께"
  2692. #: fdmprinter.def.json
  2693. msgctxt "support_interface_height description"
  2694. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2695. msgstr "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다."
  2696. #: fdmprinter.def.json
  2697. msgctxt "support_roof_height label"
  2698. msgid "Support Roof Thickness"
  2699. msgstr "서포트 지붕 두께"
  2700. #: fdmprinter.def.json
  2701. msgctxt "support_roof_height description"
  2702. 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."
  2703. msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다."
  2704. #: fdmprinter.def.json
  2705. msgctxt "support_bottom_height label"
  2706. msgid "Support Floor Thickness"
  2707. msgstr "서포트 바닥 두께"
  2708. #: fdmprinter.def.json
  2709. msgctxt "support_bottom_height description"
  2710. 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."
  2711. msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다."
  2712. #: fdmprinter.def.json
  2713. msgctxt "support_interface_skip_height label"
  2714. msgid "Support Interface Resolution"
  2715. msgstr "서포트 인터페이스 해상도"
  2716. #: fdmprinter.def.json
  2717. msgctxt "support_interface_skip_height description"
  2718. 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."
  2719. msgstr "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다."
  2720. #: fdmprinter.def.json
  2721. msgctxt "support_interface_density label"
  2722. msgid "Support Interface Density"
  2723. msgstr "서포트 인터페이스 밀도"
  2724. #: fdmprinter.def.json
  2725. msgctxt "support_interface_density description"
  2726. 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."
  2727. msgstr "서포트의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다."
  2728. #: fdmprinter.def.json
  2729. msgctxt "support_roof_density label"
  2730. msgid "Support Roof Density"
  2731. msgstr "서포트 지붕 밀도"
  2732. #: fdmprinter.def.json
  2733. msgctxt "support_roof_density description"
  2734. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2735. msgstr "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다."
  2736. #: fdmprinter.def.json
  2737. msgctxt "support_roof_line_distance label"
  2738. msgid "Support Roof Line Distance"
  2739. msgstr "서포트 지붕 선 거리"
  2740. #: fdmprinter.def.json
  2741. msgctxt "support_roof_line_distance description"
  2742. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2743. msgstr "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다."
  2744. #: fdmprinter.def.json
  2745. msgctxt "support_bottom_density label"
  2746. msgid "Support Floor Density"
  2747. msgstr "서포트 바닥 밀도"
  2748. #: fdmprinter.def.json
  2749. msgctxt "support_bottom_density description"
  2750. 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."
  2751. msgstr "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다."
  2752. #: fdmprinter.def.json
  2753. msgctxt "support_bottom_line_distance label"
  2754. msgid "Support Floor Line Distance"
  2755. msgstr "서포트 바닥 선 거리"
  2756. #: fdmprinter.def.json
  2757. msgctxt "support_bottom_line_distance description"
  2758. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2759. msgstr "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다."
  2760. #: fdmprinter.def.json
  2761. msgctxt "support_interface_pattern label"
  2762. msgid "Support Interface Pattern"
  2763. msgstr "서포트 인터페이스 패턴"
  2764. #: fdmprinter.def.json
  2765. msgctxt "support_interface_pattern description"
  2766. msgid "The pattern with which the interface of the support with the model is printed."
  2767. msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다."
  2768. #: fdmprinter.def.json
  2769. msgctxt "support_interface_pattern option lines"
  2770. msgid "Lines"
  2771. msgstr "라인"
  2772. #: fdmprinter.def.json
  2773. msgctxt "support_interface_pattern option grid"
  2774. msgid "Grid"
  2775. msgstr "그리드"
  2776. #: fdmprinter.def.json
  2777. msgctxt "support_interface_pattern option triangles"
  2778. msgid "Triangles"
  2779. msgstr "삼각형"
  2780. #: fdmprinter.def.json
  2781. msgctxt "support_interface_pattern option concentric"
  2782. msgid "Concentric"
  2783. msgstr "동심원의"
  2784. #: fdmprinter.def.json
  2785. msgctxt "support_interface_pattern option concentric_3d"
  2786. msgid "Concentric 3D"
  2787. msgstr "동심원 3D"
  2788. #: fdmprinter.def.json
  2789. msgctxt "support_interface_pattern option zigzag"
  2790. msgid "Zig Zag"
  2791. msgstr "지그재그"
  2792. #: fdmprinter.def.json
  2793. msgctxt "support_roof_pattern label"
  2794. msgid "Support Roof Pattern"
  2795. msgstr "서포트 지붕 패턴"
  2796. #: fdmprinter.def.json
  2797. msgctxt "support_roof_pattern description"
  2798. msgid "The pattern with which the roofs of the support are printed."
  2799. msgstr "서포트의 지붕이 프린팅되는 패턴."
  2800. #: fdmprinter.def.json
  2801. msgctxt "support_roof_pattern option lines"
  2802. msgid "Lines"
  2803. msgstr "라인"
  2804. #: fdmprinter.def.json
  2805. msgctxt "support_roof_pattern option grid"
  2806. msgid "Grid"
  2807. msgstr "그리드"
  2808. #: fdmprinter.def.json
  2809. msgctxt "support_roof_pattern option triangles"
  2810. msgid "Triangles"
  2811. msgstr "삼각형"
  2812. #: fdmprinter.def.json
  2813. msgctxt "support_roof_pattern option concentric"
  2814. msgid "Concentric"
  2815. msgstr "동심원의"
  2816. #: fdmprinter.def.json
  2817. msgctxt "support_roof_pattern option concentric_3d"
  2818. msgid "Concentric 3D"
  2819. msgstr "동심원의 3D"
  2820. #: fdmprinter.def.json
  2821. msgctxt "support_roof_pattern option zigzag"
  2822. msgid "Zig Zag"
  2823. msgstr "지그재그"
  2824. #: fdmprinter.def.json
  2825. msgctxt "support_bottom_pattern label"
  2826. msgid "Support Floor Pattern"
  2827. msgstr "서포트 바닥 패턴"
  2828. #: fdmprinter.def.json
  2829. msgctxt "support_bottom_pattern description"
  2830. msgid "The pattern with which the floors of the support are printed."
  2831. msgstr "서포트의 바닥이 프린팅되는 패턴."
  2832. #: fdmprinter.def.json
  2833. msgctxt "support_bottom_pattern option lines"
  2834. msgid "Lines"
  2835. msgstr "라인"
  2836. #: fdmprinter.def.json
  2837. msgctxt "support_bottom_pattern option grid"
  2838. msgid "Grid"
  2839. msgstr "그리드"
  2840. #: fdmprinter.def.json
  2841. msgctxt "support_bottom_pattern option triangles"
  2842. msgid "Triangles"
  2843. msgstr "삼각형"
  2844. #: fdmprinter.def.json
  2845. msgctxt "support_bottom_pattern option concentric"
  2846. msgid "Concentric"
  2847. msgstr "동심원의"
  2848. #: fdmprinter.def.json
  2849. msgctxt "support_bottom_pattern option concentric_3d"
  2850. msgid "Concentric 3D"
  2851. msgstr "동심원 3D"
  2852. #: fdmprinter.def.json
  2853. msgctxt "support_bottom_pattern option zigzag"
  2854. msgid "Zig Zag"
  2855. msgstr "지그재그"
  2856. #: fdmprinter.def.json
  2857. msgctxt "support_use_towers label"
  2858. msgid "Use Towers"
  2859. msgstr "타워 사용"
  2860. #: fdmprinter.def.json
  2861. msgctxt "support_use_towers description"
  2862. 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."
  2863. msgstr "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다."
  2864. #: fdmprinter.def.json
  2865. msgctxt "support_tower_diameter label"
  2866. msgid "Tower Diameter"
  2867. msgstr "타워 지름"
  2868. #: fdmprinter.def.json
  2869. msgctxt "support_tower_diameter description"
  2870. msgid "The diameter of a special tower."
  2871. msgstr "특수 타워의 지름."
  2872. #: fdmprinter.def.json
  2873. msgctxt "support_minimal_diameter label"
  2874. msgid "Minimum Diameter"
  2875. msgstr "최소 지름"
  2876. #: fdmprinter.def.json
  2877. msgctxt "support_minimal_diameter description"
  2878. msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2879. msgstr "특수 서포트 타워에 의해서 서포트 될 작은 영역의 X/Y 방향의 최소 직경."
  2880. #: fdmprinter.def.json
  2881. msgctxt "support_tower_roof_angle label"
  2882. msgid "Tower Roof Angle"
  2883. msgstr "타워 지붕 각도"
  2884. #: fdmprinter.def.json
  2885. msgctxt "support_tower_roof_angle description"
  2886. 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."
  2887. msgstr "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다."
  2888. #: fdmprinter.def.json
  2889. msgctxt "support_mesh_drop_down label"
  2890. msgid "Drop Down Support Mesh"
  2891. msgstr "드롭 다운 서포트 메쉬"
  2892. #: fdmprinter.def.json
  2893. msgctxt "support_mesh_drop_down description"
  2894. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2895. msgstr "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다."
  2896. #: fdmprinter.def.json
  2897. msgctxt "platform_adhesion label"
  2898. msgid "Build Plate Adhesion"
  2899. msgstr "빌드 플레이트 부착"
  2900. #: fdmprinter.def.json
  2901. msgctxt "platform_adhesion description"
  2902. msgid "Adhesion"
  2903. msgstr "부착"
  2904. #: fdmprinter.def.json
  2905. msgctxt "prime_blob_enable label"
  2906. msgid "Enable Prime Blob"
  2907. msgstr "프라임 블롭 활성화"
  2908. #: fdmprinter.def.json
  2909. msgctxt "prime_blob_enable description"
  2910. 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."
  2911. msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다."
  2912. #: fdmprinter.def.json
  2913. msgctxt "extruder_prime_pos_x label"
  2914. msgid "Extruder Prime X Position"
  2915. msgstr "익스트루더 프라임 X 위치"
  2916. #: fdmprinter.def.json
  2917. msgctxt "extruder_prime_pos_x description"
  2918. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2919. msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다."
  2920. #: fdmprinter.def.json
  2921. msgctxt "extruder_prime_pos_y label"
  2922. msgid "Extruder Prime Y Position"
  2923. msgstr "익스트루더 프라임 Y 위치"
  2924. #: fdmprinter.def.json
  2925. msgctxt "extruder_prime_pos_y description"
  2926. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2927. msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다."
  2928. #: fdmprinter.def.json
  2929. msgctxt "adhesion_type label"
  2930. msgid "Build Plate Adhesion Type"
  2931. msgstr "빌드 플레이트 고정 유형"
  2932. #: fdmprinter.def.json
  2933. msgctxt "adhesion_type description"
  2934. 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."
  2935. msgstr "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다."
  2936. #: fdmprinter.def.json
  2937. msgctxt "adhesion_type option skirt"
  2938. msgid "Skirt"
  2939. msgstr "스커트"
  2940. #: fdmprinter.def.json
  2941. msgctxt "adhesion_type option brim"
  2942. msgid "Brim"
  2943. msgstr "브림"
  2944. #: fdmprinter.def.json
  2945. msgctxt "adhesion_type option raft"
  2946. msgid "Raft"
  2947. msgstr "래프트"
  2948. #: fdmprinter.def.json
  2949. msgctxt "adhesion_type option none"
  2950. msgid "None"
  2951. msgstr "None"
  2952. #: fdmprinter.def.json
  2953. msgctxt "adhesion_extruder_nr label"
  2954. msgid "Build Plate Adhesion Extruder"
  2955. msgstr "빌드 플레이트 고정 익스트루더"
  2956. #: fdmprinter.def.json
  2957. msgctxt "adhesion_extruder_nr description"
  2958. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2959. msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다."
  2960. #: fdmprinter.def.json
  2961. msgctxt "skirt_line_count label"
  2962. msgid "Skirt Line Count"
  2963. msgstr "스커트 선 수"
  2964. #: fdmprinter.def.json
  2965. msgctxt "skirt_line_count description"
  2966. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2967. msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 0으로 설정하면 스커트가 비활성화됩니다."
  2968. #: fdmprinter.def.json
  2969. msgctxt "skirt_gap label"
  2970. msgid "Skirt Distance"
  2971. msgstr "스커트 거리"
  2972. #: fdmprinter.def.json
  2973. msgctxt "skirt_gap description"
  2974. msgid ""
  2975. "The horizontal distance between the skirt and the first layer of the print.\n"
  2976. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2977. msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다.\n이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다."
  2978. #: fdmprinter.def.json
  2979. msgctxt "skirt_brim_minimal_length label"
  2980. msgid "Skirt/Brim Minimum Length"
  2981. msgstr "스커트/브림 최소 길이"
  2982. #: fdmprinter.def.json
  2983. msgctxt "skirt_brim_minimal_length description"
  2984. 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."
  2985. msgstr "스커트 또는 브림의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 0으로 설정하면 무시됩니다."
  2986. #: fdmprinter.def.json
  2987. msgctxt "brim_width label"
  2988. msgid "Brim Width"
  2989. msgstr "브림 너비"
  2990. #: fdmprinter.def.json
  2991. msgctxt "brim_width description"
  2992. 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."
  2993. msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다."
  2994. #: fdmprinter.def.json
  2995. msgctxt "brim_line_count label"
  2996. msgid "Brim Line Count"
  2997. msgstr "브림 선 수"
  2998. #: fdmprinter.def.json
  2999. msgctxt "brim_line_count description"
  3000. 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."
  3001. msgstr "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다."
  3002. #: fdmprinter.def.json
  3003. msgctxt "brim_outside_only label"
  3004. msgid "Brim Only on Outside"
  3005. msgstr "밖에서만 브림 생성"
  3006. #: fdmprinter.def.json
  3007. msgctxt "brim_outside_only description"
  3008. 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."
  3009. msgstr "모델 바깥 쪽 브림에만 프린팅하십시오. 이렇게하면 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다."
  3010. #: fdmprinter.def.json
  3011. msgctxt "raft_margin label"
  3012. msgid "Raft Extra Margin"
  3013. msgstr "래프트 추가 여백"
  3014. #: fdmprinter.def.json
  3015. msgctxt "raft_margin description"
  3016. 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."
  3017. msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다."
  3018. #: fdmprinter.def.json
  3019. msgctxt "raft_smoothing label"
  3020. msgid "Raft Smoothing"
  3021. msgstr "래프트 부드럽게하기"
  3022. #: fdmprinter.def.json
  3023. msgctxt "raft_smoothing description"
  3024. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3025. msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다."
  3026. #: fdmprinter.def.json
  3027. msgctxt "raft_airgap label"
  3028. msgid "Raft Air Gap"
  3029. msgstr "래프트 에어 갭"
  3030. #: fdmprinter.def.json
  3031. msgctxt "raft_airgap description"
  3032. 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."
  3033. msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다."
  3034. #: fdmprinter.def.json
  3035. msgctxt "layer_0_z_overlap label"
  3036. msgid "Initial Layer Z Overlap"
  3037. msgstr "초기 레이어 Z 겹침"
  3038. #: fdmprinter.def.json
  3039. msgctxt "layer_0_z_overlap description"
  3040. 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."
  3041. msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다."
  3042. #: fdmprinter.def.json
  3043. msgctxt "raft_surface_layers label"
  3044. msgid "Raft Top Layers"
  3045. msgstr "래프트 탑 레이어"
  3046. #: fdmprinter.def.json
  3047. msgctxt "raft_surface_layers description"
  3048. 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."
  3049. msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다."
  3050. #: fdmprinter.def.json
  3051. msgctxt "raft_surface_thickness label"
  3052. msgid "Raft Top Layer Thickness"
  3053. msgstr "래프트 상단 레이어 두께"
  3054. #: fdmprinter.def.json
  3055. msgctxt "raft_surface_thickness description"
  3056. msgid "Layer thickness of the top raft layers."
  3057. msgstr "상단 래프트 레이어의 레이어 두께."
  3058. #: fdmprinter.def.json
  3059. msgctxt "raft_surface_line_width label"
  3060. msgid "Raft Top Line Width"
  3061. msgstr "래프트 상단 선 너비"
  3062. #: fdmprinter.def.json
  3063. msgctxt "raft_surface_line_width description"
  3064. 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."
  3065. msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다."
  3066. #: fdmprinter.def.json
  3067. msgctxt "raft_surface_line_spacing label"
  3068. msgid "Raft Top Spacing"
  3069. msgstr "래프트 상단 간격"
  3070. #: fdmprinter.def.json
  3071. msgctxt "raft_surface_line_spacing description"
  3072. 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."
  3073. msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다."
  3074. #: fdmprinter.def.json
  3075. msgctxt "raft_interface_thickness label"
  3076. msgid "Raft Middle Thickness"
  3077. msgstr "래프트 중간 두께"
  3078. #: fdmprinter.def.json
  3079. msgctxt "raft_interface_thickness description"
  3080. msgid "Layer thickness of the middle raft layer."
  3081. msgstr "중간 래프트 층의 층 두께."
  3082. #: fdmprinter.def.json
  3083. msgctxt "raft_interface_line_width label"
  3084. msgid "Raft Middle Line Width"
  3085. msgstr "래프트 중간 선 너비"
  3086. #: fdmprinter.def.json
  3087. msgctxt "raft_interface_line_width description"
  3088. 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."
  3089. msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다."
  3090. #: fdmprinter.def.json
  3091. msgctxt "raft_interface_line_spacing label"
  3092. msgid "Raft Middle Spacing"
  3093. msgstr "래프트 중간 간격"
  3094. #: fdmprinter.def.json
  3095. msgctxt "raft_interface_line_spacing description"
  3096. 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."
  3097. msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다."
  3098. #: fdmprinter.def.json
  3099. msgctxt "raft_base_thickness label"
  3100. msgid "Raft Base Thickness"
  3101. msgstr "래프트 기준 두께"
  3102. #: fdmprinter.def.json
  3103. msgctxt "raft_base_thickness description"
  3104. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3105. msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다."
  3106. #: fdmprinter.def.json
  3107. msgctxt "raft_base_line_width label"
  3108. msgid "Raft Base Line Width"
  3109. msgstr "래프트 기준 선 너비"
  3110. #: fdmprinter.def.json
  3111. msgctxt "raft_base_line_width description"
  3112. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3113. msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다."
  3114. #: fdmprinter.def.json
  3115. msgctxt "raft_base_line_spacing label"
  3116. msgid "Raft Line Spacing"
  3117. msgstr "래프트 선 간격"
  3118. #: fdmprinter.def.json
  3119. msgctxt "raft_base_line_spacing description"
  3120. 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."
  3121. msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다."
  3122. #: fdmprinter.def.json
  3123. msgctxt "raft_speed label"
  3124. msgid "Raft Print Speed"
  3125. msgstr "래프트 프린팅 속도"
  3126. #: fdmprinter.def.json
  3127. msgctxt "raft_speed description"
  3128. msgid "The speed at which the raft is printed."
  3129. msgstr "래프트가 프린팅되는 속도."
  3130. #: fdmprinter.def.json
  3131. msgctxt "raft_surface_speed label"
  3132. msgid "Raft Top Print Speed"
  3133. msgstr "래프트 상단 프린팅 속도"
  3134. #: fdmprinter.def.json
  3135. msgctxt "raft_surface_speed description"
  3136. msgid "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."
  3137. msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다."
  3138. #: fdmprinter.def.json
  3139. msgctxt "raft_interface_speed label"
  3140. msgid "Raft Middle Print Speed"
  3141. msgstr "래프트 중앙 프린팅 속도"
  3142. #: fdmprinter.def.json
  3143. msgctxt "raft_interface_speed description"
  3144. 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."
  3145. msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다."
  3146. #: fdmprinter.def.json
  3147. msgctxt "raft_base_speed label"
  3148. msgid "Raft Base Print Speed"
  3149. msgstr "래프트 기본 프린팅 속도"
  3150. #: fdmprinter.def.json
  3151. msgctxt "raft_base_speed description"
  3152. 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."
  3153. msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다."
  3154. #: fdmprinter.def.json
  3155. msgctxt "raft_acceleration label"
  3156. msgid "Raft Print Acceleration"
  3157. msgstr "래프트 프린팅 가속도"
  3158. #: fdmprinter.def.json
  3159. msgctxt "raft_acceleration description"
  3160. msgid "The acceleration with which the raft is printed."
  3161. msgstr "래프트가 프린팅되는 가속도."
  3162. #: fdmprinter.def.json
  3163. msgctxt "raft_surface_acceleration label"
  3164. msgid "Raft Top Print Acceleration"
  3165. msgstr "래프트 상단 프린팅 가속도"
  3166. #: fdmprinter.def.json
  3167. msgctxt "raft_surface_acceleration description"
  3168. msgid "The acceleration with which the top raft layers are printed."
  3169. msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다."
  3170. #: fdmprinter.def.json
  3171. msgctxt "raft_interface_acceleration label"
  3172. msgid "Raft Middle Print Acceleration"
  3173. msgstr "래프트 중앙 프린팅 가속도"
  3174. #: fdmprinter.def.json
  3175. msgctxt "raft_interface_acceleration description"
  3176. msgid "The acceleration with which the middle raft layer is printed."
  3177. msgstr "중간 래프트 층이 프린팅되는 가속도."
  3178. #: fdmprinter.def.json
  3179. msgctxt "raft_base_acceleration label"
  3180. msgid "Raft Base Print Acceleration"
  3181. msgstr "래프트 기본 프린팅 가속도"
  3182. #: fdmprinter.def.json
  3183. msgctxt "raft_base_acceleration description"
  3184. msgid "The acceleration with which the base raft layer is printed."
  3185. msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다."
  3186. #: fdmprinter.def.json
  3187. msgctxt "raft_jerk label"
  3188. msgid "Raft Print Jerk"
  3189. msgstr "래프트 프린팅 Jerk"
  3190. #: fdmprinter.def.json
  3191. msgctxt "raft_jerk description"
  3192. msgid "The jerk with which the raft is printed."
  3193. msgstr "래프트와 함께 프린팅되는 Jerk."
  3194. #: fdmprinter.def.json
  3195. msgctxt "raft_surface_jerk label"
  3196. msgid "Raft Top Print Jerk"
  3197. msgstr "래프트 상단 프린팅 Jerk"
  3198. #: fdmprinter.def.json
  3199. msgctxt "raft_surface_jerk description"
  3200. msgid "The jerk with which the top raft layers are printed."
  3201. msgstr "상단 래프트 레이어가 프린팅되는 Jerk."
  3202. #: fdmprinter.def.json
  3203. msgctxt "raft_interface_jerk label"
  3204. msgid "Raft Middle Print Jerk"
  3205. msgstr "래프트 중앙 프린팅 Jerk"
  3206. #: fdmprinter.def.json
  3207. msgctxt "raft_interface_jerk description"
  3208. msgid "The jerk with which the middle raft layer is printed."
  3209. msgstr "중간 래프트 층이 프린팅되는 Jerk."
  3210. #: fdmprinter.def.json
  3211. msgctxt "raft_base_jerk label"
  3212. msgid "Raft Base Print Jerk"
  3213. msgstr "래프트 기본 프린팅 Jerk"
  3214. #: fdmprinter.def.json
  3215. msgctxt "raft_base_jerk description"
  3216. msgid "The jerk with which the base raft layer is printed."
  3217. msgstr "기본 래프트 레이어가 프린팅되는 Jerk."
  3218. #: fdmprinter.def.json
  3219. msgctxt "raft_fan_speed label"
  3220. msgid "Raft Fan Speed"
  3221. msgstr "래프트 팬 속도"
  3222. #: fdmprinter.def.json
  3223. msgctxt "raft_fan_speed description"
  3224. msgid "The fan speed for the raft."
  3225. msgstr "래프트의 팬 속도."
  3226. #: fdmprinter.def.json
  3227. msgctxt "raft_surface_fan_speed label"
  3228. msgid "Raft Top Fan Speed"
  3229. msgstr "래프트 상단 팬 속도"
  3230. #: fdmprinter.def.json
  3231. msgctxt "raft_surface_fan_speed description"
  3232. msgid "The fan speed for the top raft layers."
  3233. msgstr "상단 래프트 레이어의 팬 속도입니다."
  3234. #: fdmprinter.def.json
  3235. msgctxt "raft_interface_fan_speed label"
  3236. msgid "Raft Middle Fan Speed"
  3237. msgstr "래프트 중앙 팬 속도"
  3238. #: fdmprinter.def.json
  3239. msgctxt "raft_interface_fan_speed description"
  3240. msgid "The fan speed for the middle raft layer."
  3241. msgstr "중간 래프트 레이어의 팬 속도입니다."
  3242. #: fdmprinter.def.json
  3243. msgctxt "raft_base_fan_speed label"
  3244. msgid "Raft Base Fan Speed"
  3245. msgstr "래프트 기본 팬 속도"
  3246. #: fdmprinter.def.json
  3247. msgctxt "raft_base_fan_speed description"
  3248. msgid "The fan speed for the base raft layer."
  3249. msgstr "기본 래프트 레이어의 팬 속도입니다."
  3250. #: fdmprinter.def.json
  3251. msgctxt "dual label"
  3252. msgid "Dual Extrusion"
  3253. msgstr "이중 압출"
  3254. #: fdmprinter.def.json
  3255. msgctxt "dual description"
  3256. msgid "Settings used for printing with multiple extruders."
  3257. msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다."
  3258. #: fdmprinter.def.json
  3259. msgctxt "prime_tower_enable label"
  3260. msgid "Enable Prime Tower"
  3261. msgstr "프라임 타워 사용"
  3262. #: fdmprinter.def.json
  3263. msgctxt "prime_tower_enable description"
  3264. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3265. msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오."
  3266. #: fdmprinter.def.json
  3267. msgctxt "prime_tower_circular label"
  3268. msgid "Circular Prime Tower"
  3269. msgstr "원형 프라임 타워"
  3270. #: fdmprinter.def.json
  3271. msgctxt "prime_tower_circular description"
  3272. msgid "Make the prime tower as a circular shape."
  3273. msgstr "프라임 타워를 원형으로 만들기."
  3274. #: fdmprinter.def.json
  3275. msgctxt "prime_tower_size label"
  3276. msgid "Prime Tower Size"
  3277. msgstr "프라임 타워 사이즈"
  3278. #: fdmprinter.def.json
  3279. msgctxt "prime_tower_size description"
  3280. msgid "The width of the prime tower."
  3281. msgstr "프라임 타워의 너비."
  3282. #: fdmprinter.def.json
  3283. msgctxt "prime_tower_min_volume label"
  3284. msgid "Prime Tower Minimum Volume"
  3285. msgstr "프라임 타워 최소 볼륨"
  3286. #: fdmprinter.def.json
  3287. msgctxt "prime_tower_min_volume description"
  3288. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3289. msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피."
  3290. #: fdmprinter.def.json
  3291. msgctxt "prime_tower_wall_thickness label"
  3292. msgid "Prime Tower Thickness"
  3293. msgstr "프라임 타워 두께"
  3294. #: fdmprinter.def.json
  3295. msgctxt "prime_tower_wall_thickness description"
  3296. 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."
  3297. msgstr "속이 빈 프라임 타워의 두께. 프라임 타워의 최소 볼륨의 절반보다 큰 두께는 조밀 한 소수 타워가 됩니다."
  3298. #: fdmprinter.def.json
  3299. msgctxt "prime_tower_position_x label"
  3300. msgid "Prime Tower X Position"
  3301. msgstr "프라임 타워 X 위치"
  3302. #: fdmprinter.def.json
  3303. msgctxt "prime_tower_position_x description"
  3304. msgid "The x coordinate of the position of the prime tower."
  3305. msgstr "프라임 타워 위치의 x 좌표입니다."
  3306. #: fdmprinter.def.json
  3307. msgctxt "prime_tower_position_y label"
  3308. msgid "Prime Tower Y Position"
  3309. msgstr "프라임 타워 Y 위치"
  3310. #: fdmprinter.def.json
  3311. msgctxt "prime_tower_position_y description"
  3312. msgid "The y coordinate of the position of the prime tower."
  3313. msgstr "프라임 타워 위치의 y 좌표입니다."
  3314. #: fdmprinter.def.json
  3315. msgctxt "prime_tower_flow label"
  3316. msgid "Prime Tower Flow"
  3317. msgstr "프라임 타워 압출량"
  3318. #: fdmprinter.def.json
  3319. msgctxt "prime_tower_flow description"
  3320. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  3321. msgstr "압출량 보정 : 압출된 재료의 양에 이 값을 곱합니다."
  3322. #: fdmprinter.def.json
  3323. msgctxt "prime_tower_wipe_enabled label"
  3324. msgid "Wipe Inactive Nozzle on Prime Tower"
  3325. msgstr "프라임 타워에서 비활성 노즐 닦기"
  3326. #: fdmprinter.def.json
  3327. msgctxt "prime_tower_wipe_enabled description"
  3328. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3329. msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다."
  3330. #: fdmprinter.def.json
  3331. msgctxt "dual_pre_wipe label"
  3332. msgid "Wipe Nozzle After Switch"
  3333. msgstr "전환 후 노즐 닦기"
  3334. #: fdmprinter.def.json
  3335. msgctxt "dual_pre_wipe description"
  3336. 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."
  3337. msgstr "익스트루더를 전환한 후, 프린팅을 한 노즐에서 흐르는 재료를 닦아냅니다. 이렇게 하면 흘러 나온 물질이 출력물의 표면 품질에 영향을 주지 않는 위치에서 천천히 닦아줍니다."
  3338. #: fdmprinter.def.json
  3339. msgctxt "prime_tower_purge_volume label"
  3340. msgid "Prime Tower Purge Volume"
  3341. msgstr "프라임 타워 퍼지 볼륨"
  3342. #: fdmprinter.def.json
  3343. msgctxt "prime_tower_purge_volume description"
  3344. msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  3345. msgstr "프라임 타워에서 닦을 때 제거 할 필라멘트의 양. 퍼지는 노즐이 작동하지 않을 때 새어 나온 필라멘트를 보정하는 데 유용합니다."
  3346. #: fdmprinter.def.json
  3347. msgctxt "ooze_shield_enabled label"
  3348. msgid "Enable Ooze Shield"
  3349. msgstr "Ooze 쉴드 사용"
  3350. #: fdmprinter.def.json
  3351. msgctxt "ooze_shield_enabled description"
  3352. 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."
  3353. msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다."
  3354. #: fdmprinter.def.json
  3355. msgctxt "ooze_shield_angle label"
  3356. msgid "Ooze Shield Angle"
  3357. msgstr "Ooze 쉴드 각"
  3358. #: fdmprinter.def.json
  3359. msgctxt "ooze_shield_angle description"
  3360. 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."
  3361. msgstr "Ooze 쉴드가 가질 최대 각도. 0도가 수직이고 90도가 수평입니다. 각도가 작으면 Ooze 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다."
  3362. #: fdmprinter.def.json
  3363. msgctxt "ooze_shield_dist label"
  3364. msgid "Ooze Shield Distance"
  3365. msgstr "Ooze 쉴드 거리"
  3366. #: fdmprinter.def.json
  3367. msgctxt "ooze_shield_dist description"
  3368. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3369. msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리."
  3370. #: fdmprinter.def.json
  3371. msgctxt "meshfix label"
  3372. msgid "Mesh Fixes"
  3373. msgstr "메쉬 수정"
  3374. #: fdmprinter.def.json
  3375. msgctxt "meshfix description"
  3376. msgid "category_fixes"
  3377. msgstr "카테고리 수정"
  3378. #: fdmprinter.def.json
  3379. msgctxt "meshfix_union_all label"
  3380. msgid "Union Overlapping Volumes"
  3381. msgstr "유니언 오버랩 볼륨"
  3382. #: fdmprinter.def.json
  3383. msgctxt "meshfix_union_all description"
  3384. 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."
  3385. msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다."
  3386. #: fdmprinter.def.json
  3387. msgctxt "meshfix_union_all_remove_holes label"
  3388. msgid "Remove All Holes"
  3389. msgstr "모든 구멍 제거"
  3390. #: fdmprinter.def.json
  3391. msgctxt "meshfix_union_all_remove_holes description"
  3392. 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."
  3393. msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다."
  3394. #: fdmprinter.def.json
  3395. msgctxt "meshfix_extensive_stitching label"
  3396. msgid "Extensive Stitching"
  3397. msgstr "광범위한 스티칭"
  3398. #: fdmprinter.def.json
  3399. msgctxt "meshfix_extensive_stitching description"
  3400. 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."
  3401. msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다."
  3402. #: fdmprinter.def.json
  3403. msgctxt "meshfix_keep_open_polygons label"
  3404. msgid "Keep Disconnected Faces"
  3405. msgstr "끊긴 면 유지"
  3406. #: fdmprinter.def.json
  3407. msgctxt "meshfix_keep_open_polygons description"
  3408. 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 g-code."
  3409. msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다."
  3410. #: fdmprinter.def.json
  3411. msgctxt "multiple_mesh_overlap label"
  3412. msgid "Merged Meshes Overlap"
  3413. msgstr "중복된 메쉬 합치기"
  3414. #: fdmprinter.def.json
  3415. msgctxt "multiple_mesh_overlap description"
  3416. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3417. msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다."
  3418. #: fdmprinter.def.json
  3419. msgctxt "carve_multiple_volumes label"
  3420. msgid "Remove Mesh Intersection"
  3421. msgstr "교차된 메쉬 제거"
  3422. #: fdmprinter.def.json
  3423. msgctxt "carve_multiple_volumes description"
  3424. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3425. msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다."
  3426. #: fdmprinter.def.json
  3427. msgctxt "alternate_carve_order label"
  3428. msgid "Alternate Mesh Removal"
  3429. msgstr "대체 메쉬 제거"
  3430. #: fdmprinter.def.json
  3431. msgctxt "alternate_carve_order description"
  3432. 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."
  3433. msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다."
  3434. #: fdmprinter.def.json
  3435. msgctxt "remove_empty_first_layers label"
  3436. msgid "Remove Empty First Layers"
  3437. msgstr "비어 있는 첫 번째 레이어 제거"
  3438. #: fdmprinter.def.json
  3439. msgctxt "remove_empty_first_layers description"
  3440. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  3441. msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다."
  3442. #: fdmprinter.def.json
  3443. msgctxt "blackmagic label"
  3444. msgid "Special Modes"
  3445. msgstr "특수 모드"
  3446. #: fdmprinter.def.json
  3447. msgctxt "blackmagic description"
  3448. msgid "category_blackmagic"
  3449. msgstr "블랙매직 카테고리"
  3450. #: fdmprinter.def.json
  3451. msgctxt "print_sequence label"
  3452. msgid "Print Sequence"
  3453. msgstr "프린팅 순서"
  3454. #: fdmprinter.def.json
  3455. msgctxt "print_sequence description"
  3456. 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."
  3457. msgstr "한 번에 한 레이어 씩 모든 모델을 프린팅할지 또는 한 모델이 완료 될 때까지 기다렸다가 다음 모델로 넘어갈 지 여부. 한 번에 한 가지 모드는 모든 모델이 분리되어 프린트 헤드가 중간에서 움직일 수 있고 모든 모델이 노즐과 X/Y 축 사이의 거리보다 낮은 경우에만 가능합니다."
  3458. #: fdmprinter.def.json
  3459. msgctxt "print_sequence option all_at_once"
  3460. msgid "All at Once"
  3461. msgstr "모두 한꺼번에"
  3462. #: fdmprinter.def.json
  3463. msgctxt "print_sequence option one_at_a_time"
  3464. msgid "One at a Time"
  3465. msgstr "한번에 하나씩"
  3466. #: fdmprinter.def.json
  3467. msgctxt "infill_mesh label"
  3468. msgid "Infill Mesh"
  3469. msgstr "메쉬 내부채움"
  3470. #: fdmprinter.def.json
  3471. msgctxt "infill_mesh description"
  3472. 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."
  3473. msgstr "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다."
  3474. #: fdmprinter.def.json
  3475. msgctxt "infill_mesh_order label"
  3476. msgid "Infill Mesh Order"
  3477. msgstr "메쉬 순서 내부채움"
  3478. #: fdmprinter.def.json
  3479. msgctxt "infill_mesh_order description"
  3480. 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."
  3481. msgstr "어떤 내부채움 메쉬가 다른 내부채움 메쉬의 내부에 있는지 결정합니다. 더 높은 차수의 내부채움 메쉬는 더 낮은 차수와 일반적인 메쉬로 내부채움 메쉬의 내부채움을 수정합니다."
  3482. #: fdmprinter.def.json
  3483. msgctxt "cutting_mesh label"
  3484. msgid "Cutting Mesh"
  3485. msgstr "커팅 메쉬"
  3486. #: fdmprinter.def.json
  3487. msgctxt "cutting_mesh description"
  3488. 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."
  3489. msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다."
  3490. #: fdmprinter.def.json
  3491. msgctxt "mold_enabled label"
  3492. msgid "Mold"
  3493. msgstr "몰드"
  3494. #: fdmprinter.def.json
  3495. msgctxt "mold_enabled description"
  3496. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3497. msgstr "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다."
  3498. #: fdmprinter.def.json
  3499. msgctxt "mold_width label"
  3500. msgid "Minimal Mold Width"
  3501. msgstr "최소 몰드 너비"
  3502. #: fdmprinter.def.json
  3503. msgctxt "mold_width description"
  3504. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  3505. msgstr "몰드의 바깥 쪽과 모델의 바깥 쪽 사이의 최소 거리입니다."
  3506. #: fdmprinter.def.json
  3507. msgctxt "mold_roof_height label"
  3508. msgid "Mold Roof Height"
  3509. msgstr "몰드 지붕 높이"
  3510. #: fdmprinter.def.json
  3511. msgctxt "mold_roof_height description"
  3512. msgid "The height above horizontal parts in your model which to print mold."
  3513. msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다."
  3514. #: fdmprinter.def.json
  3515. msgctxt "mold_angle label"
  3516. msgid "Mold Angle"
  3517. msgstr "몰드 각도"
  3518. #: fdmprinter.def.json
  3519. msgctxt "mold_angle description"
  3520. 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."
  3521. msgstr "몰드에 대해 생성 된 외벽의 오버행 각도입니다. 0도의 각은 금형의 외각을 수직으로 만들고 90도의 각은 모형의 외형을 모델의 외형으로 만듭니다."
  3522. #: fdmprinter.def.json
  3523. msgctxt "support_mesh label"
  3524. msgid "Support Mesh"
  3525. msgstr "서포트 메쉬"
  3526. #: fdmprinter.def.json
  3527. msgctxt "support_mesh description"
  3528. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3529. msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다."
  3530. #: fdmprinter.def.json
  3531. msgctxt "anti_overhang_mesh label"
  3532. msgid "Anti Overhang Mesh"
  3533. msgstr "안티 오버행 메쉬"
  3534. #: fdmprinter.def.json
  3535. msgctxt "anti_overhang_mesh description"
  3536. 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."
  3537. msgstr "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다."
  3538. #: fdmprinter.def.json
  3539. msgctxt "magic_mesh_surface_mode label"
  3540. msgid "Surface Mode"
  3541. msgstr "표면 모드"
  3542. #: fdmprinter.def.json
  3543. msgctxt "magic_mesh_surface_mode description"
  3544. 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."
  3545. msgstr "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다."
  3546. #: fdmprinter.def.json
  3547. msgctxt "magic_mesh_surface_mode option normal"
  3548. msgid "Normal"
  3549. msgstr "표준"
  3550. #: fdmprinter.def.json
  3551. msgctxt "magic_mesh_surface_mode option surface"
  3552. msgid "Surface"
  3553. msgstr "표면"
  3554. #: fdmprinter.def.json
  3555. msgctxt "magic_mesh_surface_mode option both"
  3556. msgid "Both"
  3557. msgstr "모두"
  3558. #: fdmprinter.def.json
  3559. msgctxt "magic_spiralize label"
  3560. msgid "Spiralize Outer Contour"
  3561. msgstr "외부 윤곽선을 나선형으로 만듦"
  3562. #: fdmprinter.def.json
  3563. msgctxt "magic_spiralize description"
  3564. 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."
  3565. msgstr "바깥 쪽 브림의 Z 이동을 부드럽게합니다. 이렇게 하면 출력물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다."
  3566. #: fdmprinter.def.json
  3567. msgctxt "smooth_spiralized_contours label"
  3568. msgid "Smooth Spiralized Contours"
  3569. msgstr "부드러운 나선형 윤곽"
  3570. #: fdmprinter.def.json
  3571. msgctxt "smooth_spiralized_contours description"
  3572. 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."
  3573. msgstr "나선형 윤곽선을 부드럽게하여 Z 솔기의 가시성을 줄입니다. (Z- 솔기는 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게하는 경향이 있습니다."
  3574. #: fdmprinter.def.json
  3575. msgctxt "relative_extrusion label"
  3576. msgid "Relative Extrusion"
  3577. msgstr "상대적 압출"
  3578. #: fdmprinter.def.json
  3579. msgctxt "relative_extrusion description"
  3580. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  3581. msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다."
  3582. #: fdmprinter.def.json
  3583. msgctxt "experimental label"
  3584. msgid "Experimental"
  3585. msgstr "실험적인"
  3586. #: fdmprinter.def.json
  3587. msgctxt "experimental description"
  3588. msgid "experimental!"
  3589. msgstr "실험적인!"
  3590. #: fdmprinter.def.json
  3591. msgctxt "support_tree_enable label"
  3592. msgid "Tree Support"
  3593. msgstr "트리구조 서포트"
  3594. #: fdmprinter.def.json
  3595. msgctxt "support_tree_enable description"
  3596. msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  3597. msgstr "가지가 달린 나무 모양의 서포트을 생성합니다. 이것이 재료 사용과 프린팅 시간을 줄여줄 수 있지만, 슬라이싱 시간이 상당히 늘어납니다."
  3598. #: fdmprinter.def.json
  3599. msgctxt "support_tree_angle label"
  3600. msgid "Tree Support Branch Angle"
  3601. msgstr "트리 서포트 브랜치 각도"
  3602. #: fdmprinter.def.json
  3603. msgctxt "support_tree_angle description"
  3604. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3605. msgstr "브랜치의 각도. 적은 각도를 사용하면 더 수직이 되어 더 안정됩니다. 높은 각도를 사용하면 더 많이 도달할 수 있습니다."
  3606. #: fdmprinter.def.json
  3607. msgctxt "support_tree_branch_distance label"
  3608. msgid "Tree Support Branch Distance"
  3609. msgstr "트리 서포트 브랜치 거리"
  3610. #: fdmprinter.def.json
  3611. msgctxt "support_tree_branch_distance description"
  3612. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  3613. msgstr "모델에 붙는 브랜치를 떨어뜨리는 거리. 이 거리를 짧게 하면 트리 서포트이 더 많은 접점에서 모델에 접촉하여, 오버행이 더 좋아지지만 서포트를 제거하기가 더 어렵게 됩니다."
  3614. #: fdmprinter.def.json
  3615. msgctxt "support_tree_branch_diameter label"
  3616. msgid "Tree Support Branch Diameter"
  3617. msgstr "트리 서포트 브랜치 직경"
  3618. #: fdmprinter.def.json
  3619. msgctxt "support_tree_branch_diameter description"
  3620. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3621. msgstr "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다."
  3622. #: fdmprinter.def.json
  3623. msgctxt "support_tree_branch_diameter_angle label"
  3624. msgid "Tree Support Branch Diameter Angle"
  3625. msgstr "트리 서포트 브랜치 직경 각도"
  3626. #: fdmprinter.def.json
  3627. msgctxt "support_tree_branch_diameter_angle description"
  3628. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  3629. msgstr "바닥면을 향할수록 점점 더 두꺼워짐에 따른 브랜치의 직경 각도. 이 각도가 0이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다."
  3630. #: fdmprinter.def.json
  3631. msgctxt "support_tree_collision_resolution label"
  3632. msgid "Tree Support Collision Resolution"
  3633. msgstr "트리 서포트 충돌 정밀도"
  3634. #: fdmprinter.def.json
  3635. msgctxt "support_tree_collision_resolution description"
  3636. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  3637. msgstr "모델에 부딪히는 것을 피하기 위해 충돌을 계산하는 정밀도. 이 값을 낮게 설정하면 실패도가 낮은 더 정확한 트리를 생성하지만, 슬라이싱 시간이 현격하게 늘어납니다."
  3638. #: fdmprinter.def.json
  3639. msgctxt "support_tree_wall_thickness label"
  3640. msgid "Tree Support Wall Thickness"
  3641. msgstr "트리 서포트 벽 두께"
  3642. #: fdmprinter.def.json
  3643. msgctxt "support_tree_wall_thickness description"
  3644. msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3645. msgstr "트리 서포트의 브랜치 벽의 두께. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다."
  3646. #: fdmprinter.def.json
  3647. msgctxt "support_tree_wall_count label"
  3648. msgid "Tree Support Wall Line Count"
  3649. msgstr "트리 서포트 벽 라인 카운트"
  3650. #: fdmprinter.def.json
  3651. msgctxt "support_tree_wall_count description"
  3652. msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3653. msgstr "트리 서포트의 브랜치 벽의 개수. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다."
  3654. #: fdmprinter.def.json
  3655. msgctxt "slicing_tolerance label"
  3656. msgid "Slicing Tolerance"
  3657. msgstr "슬라이싱 허용 오차"
  3658. #: fdmprinter.def.json
  3659. msgctxt "slicing_tolerance description"
  3660. msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  3661. msgstr "레이어를 대각선 방향으로 슬라이스하는 방법. 레이어 영역은 레이어의 중앙이 서피스와 교차하는 부분(중간)을 기준으로 생성됩니다. 또는 각 레이어에 레이어의 높이 전체의 볼륨에 들어가는 영역(배타적)이나 레이어 안의 어느 지점에 들어가는 영역(중복)이 있을 수 있습니다. 배타적은 가장 많은 디테일을 포함하고, 중복은 가장 잘 맞게 만들 수 있으며, 중간은 처리 시간이 가장 짧습니다."
  3662. #: fdmprinter.def.json
  3663. msgctxt "slicing_tolerance option middle"
  3664. msgid "Middle"
  3665. msgstr "중간"
  3666. #: fdmprinter.def.json
  3667. msgctxt "slicing_tolerance option exclusive"
  3668. msgid "Exclusive"
  3669. msgstr "배타적"
  3670. #: fdmprinter.def.json
  3671. msgctxt "slicing_tolerance option inclusive"
  3672. msgid "Inclusive"
  3673. msgstr "중복"
  3674. #: fdmprinter.def.json
  3675. msgctxt "roofing_line_width label"
  3676. msgid "Top Surface Skin Line Width"
  3677. msgstr "상단 표면 스킨 선 너비"
  3678. #: fdmprinter.def.json
  3679. msgctxt "roofing_line_width description"
  3680. msgid "Width of a single line of the areas at the top of the print."
  3681. msgstr "프린팅 상단 부분의 한 줄 너비."
  3682. #: fdmprinter.def.json
  3683. msgctxt "roofing_pattern label"
  3684. msgid "Top Surface Skin Pattern"
  3685. msgstr "탑 표면 스킨 패턴"
  3686. #: fdmprinter.def.json
  3687. msgctxt "roofing_pattern description"
  3688. msgid "The pattern of the top most layers."
  3689. msgstr "최상위 레이어의 패턴."
  3690. #: fdmprinter.def.json
  3691. msgctxt "roofing_pattern option lines"
  3692. msgid "Lines"
  3693. msgstr "윤곽"
  3694. #: fdmprinter.def.json
  3695. msgctxt "roofing_pattern option concentric"
  3696. msgid "Concentric"
  3697. msgstr "동심원의"
  3698. #: fdmprinter.def.json
  3699. msgctxt "roofing_pattern option zigzag"
  3700. msgid "Zig Zag"
  3701. msgstr "지그재그"
  3702. #: fdmprinter.def.json
  3703. msgctxt "roofing_angles label"
  3704. msgid "Top Surface Skin Line Directions"
  3705. msgstr "상단 표면 스킨 라인 방향"
  3706. #: fdmprinter.def.json
  3707. msgctxt "roofing_angles description"
  3708. msgid "A list of integer line directions to use when the top surface skin 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)."
  3709. msgstr "상단 표면 스킨 층이 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호로 묶여 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 리스트입니다."
  3710. #: fdmprinter.def.json
  3711. msgctxt "infill_enable_travel_optimization label"
  3712. msgid "Infill Travel Optimization"
  3713. msgstr "내부채움재 이동 최적화"
  3714. #: fdmprinter.def.json
  3715. msgctxt "infill_enable_travel_optimization description"
  3716. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  3717. msgstr "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다."
  3718. #: fdmprinter.def.json
  3719. msgctxt "material_flow_dependent_temperature label"
  3720. msgid "Auto Temperature"
  3721. msgstr "자동 온도"
  3722. #: fdmprinter.def.json
  3723. msgctxt "material_flow_dependent_temperature description"
  3724. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  3725. msgstr "해당 레이어의 평균 유속으로 각 레이어의 온도를 자동으로 변경."
  3726. #: fdmprinter.def.json
  3727. msgctxt "material_flow_temp_graph label"
  3728. msgid "Flow Temperature Graph"
  3729. msgstr "재료 공급 온도 그래프"
  3730. #: fdmprinter.def.json
  3731. msgctxt "material_flow_temp_graph description"
  3732. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3733. msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)."
  3734. #: fdmprinter.def.json
  3735. msgctxt "meshfix_maximum_resolution label"
  3736. msgid "Maximum Resolution"
  3737. msgstr "최대 해상도"
  3738. #: fdmprinter.def.json
  3739. msgctxt "meshfix_maximum_resolution description"
  3740. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  3741. msgstr "슬라이딩 후의 선분의 최소 크기입니다. 이 값을 높이면 메쉬의 해상도가 낮아집니다. 그러면 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다."
  3742. #: fdmprinter.def.json
  3743. msgctxt "meshfix_maximum_travel_resolution label"
  3744. msgid "Maximum Travel Resolution"
  3745. msgstr "최대 이동 해상도"
  3746. #: fdmprinter.def.json
  3747. msgctxt "meshfix_maximum_travel_resolution description"
  3748. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  3749. msgstr "슬라이딩 후의 이동 선분의 최소 크기입니다. 이 값을 높이면 코너에서 매끄럽게 이동하는 정도가 감소합니다. 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다."
  3750. #: fdmprinter.def.json
  3751. msgctxt "support_skip_some_zags label"
  3752. msgid "Break Up Support In Chunks"
  3753. msgstr "Chunk에서 서포트 중단"
  3754. #: fdmprinter.def.json
  3755. msgctxt "support_skip_some_zags description"
  3756. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  3757. msgstr "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다."
  3758. #: fdmprinter.def.json
  3759. msgctxt "support_skip_zag_per_mm label"
  3760. msgid "Support Chunk Size"
  3761. msgstr "서포트 Chunk 크기"
  3762. #: fdmprinter.def.json
  3763. msgctxt "support_skip_zag_per_mm description"
  3764. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3765. msgstr "서포트 구조를 쉽게 분리 할 수 있도록 N 밀리미터마다 서포트선 사이를 연결합니다."
  3766. #: fdmprinter.def.json
  3767. msgctxt "support_zag_skip_count label"
  3768. msgid "Support Chunk Line Count"
  3769. msgstr "Chunk 라인 카운트 서포트"
  3770. #: fdmprinter.def.json
  3771. msgctxt "support_zag_skip_count description"
  3772. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3773. msgstr "서포트 구조를 쉽게 분리할 수 있도록 모든 N 개의 연결 라인을 건너 뜁니다."
  3774. #: fdmprinter.def.json
  3775. msgctxt "draft_shield_enabled label"
  3776. msgid "Enable Draft Shield"
  3777. msgstr "드래프트 쉴드 사용"
  3778. #: fdmprinter.def.json
  3779. msgctxt "draft_shield_enabled description"
  3780. 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."
  3781. msgstr "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다."
  3782. #: fdmprinter.def.json
  3783. msgctxt "draft_shield_dist label"
  3784. msgid "Draft Shield X/Y Distance"
  3785. msgstr "드래프트 쉴드 X/Y 거리"
  3786. #: fdmprinter.def.json
  3787. msgctxt "draft_shield_dist description"
  3788. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3789. msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다."
  3790. #: fdmprinter.def.json
  3791. msgctxt "draft_shield_height_limitation label"
  3792. msgid "Draft Shield Limitation"
  3793. msgstr "드래프트 쉴드 제한"
  3794. #: fdmprinter.def.json
  3795. msgctxt "draft_shield_height_limitation description"
  3796. 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."
  3797. msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다."
  3798. #: fdmprinter.def.json
  3799. msgctxt "draft_shield_height_limitation option full"
  3800. msgid "Full"
  3801. msgstr "가득찬"
  3802. #: fdmprinter.def.json
  3803. msgctxt "draft_shield_height_limitation option limited"
  3804. msgid "Limited"
  3805. msgstr "제한된"
  3806. #: fdmprinter.def.json
  3807. msgctxt "draft_shield_height label"
  3808. msgid "Draft Shield Height"
  3809. msgstr "드래프트 쉴드 높이"
  3810. #: fdmprinter.def.json
  3811. msgctxt "draft_shield_height description"
  3812. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3813. msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다."
  3814. #: fdmprinter.def.json
  3815. msgctxt "conical_overhang_enabled label"
  3816. msgid "Make Overhang Printable"
  3817. msgstr "오버행이 프린팅되도록 설정"
  3818. #: fdmprinter.def.json
  3819. msgctxt "conical_overhang_enabled description"
  3820. 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."
  3821. msgstr "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다."
  3822. #: fdmprinter.def.json
  3823. msgctxt "conical_overhang_angle label"
  3824. msgid "Maximum Model Angle"
  3825. msgstr "최대 모델 각도"
  3826. #: fdmprinter.def.json
  3827. msgctxt "conical_overhang_angle description"
  3828. 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."
  3829. msgstr "프린팅 가능하게 된 후 오버행의 최대 각도. 0도의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. 90도는 모델을 변경하지 않습니다."
  3830. #: fdmprinter.def.json
  3831. msgctxt "coasting_enable label"
  3832. msgid "Enable Coasting"
  3833. msgstr "코스팅(Coasting) 사용"
  3834. #: fdmprinter.def.json
  3835. msgctxt "coasting_enable description"
  3836. 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."
  3837. msgstr "코스팅(Coasting)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다."
  3838. #: fdmprinter.def.json
  3839. msgctxt "coasting_volume label"
  3840. msgid "Coasting Volume"
  3841. msgstr "코스팅(Coasting) 양"
  3842. #: fdmprinter.def.json
  3843. msgctxt "coasting_volume description"
  3844. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3845. msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다."
  3846. #: fdmprinter.def.json
  3847. msgctxt "coasting_min_volume label"
  3848. msgid "Minimum Volume Before Coasting"
  3849. msgstr "코스팅(Coasting) 최소 양"
  3850. #: fdmprinter.def.json
  3851. msgctxt "coasting_min_volume description"
  3852. 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."
  3853. msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 양. 작은 압출 경로의 경우 보우덴 튜브에 가해지는 압력이 적기 때문에 코스팅(Coasting) 부피가 선형 적으로 조정됩니다. 이 값은 항상 코스팅(Coasting) 양보다 커야합니다."
  3854. #: fdmprinter.def.json
  3855. msgctxt "coasting_speed label"
  3856. msgid "Coasting Speed"
  3857. msgstr "코스팅(Coasting) 속도"
  3858. #: fdmprinter.def.json
  3859. msgctxt "coasting_speed description"
  3860. 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."
  3861. msgstr "코스팅(Coasting)시 이동 속도. 압출 경로의 속도에 상대적입니다. 코스팅(Coasting) 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100% 보다 약간 작은 값을 권합니다."
  3862. #: fdmprinter.def.json
  3863. msgctxt "skin_alternate_rotation label"
  3864. msgid "Alternate Skin Rotation"
  3865. msgstr "대체 스킨 회전"
  3866. #: fdmprinter.def.json
  3867. msgctxt "skin_alternate_rotation description"
  3868. 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."
  3869. msgstr "위쪽/아래쪽 레이어가 프린팅되는 방향을 바꿉니다. 보통 대각선으로 만 프린팅됩니다. 이 설정은 X 전용 및 Y 전용 방향을 추가합니다."
  3870. #: fdmprinter.def.json
  3871. msgctxt "cross_infill_pocket_size label"
  3872. msgid "Cross 3D Pocket Size"
  3873. msgstr "크로스 3D 포켓 크기"
  3874. #: fdmprinter.def.json
  3875. msgctxt "cross_infill_pocket_size description"
  3876. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3877. msgstr "패턴이 접촉되는 높이에서 크로스 3D 패턴의 4 방향 교차점에있는 포켓의 크기입니다."
  3878. #: fdmprinter.def.json
  3879. msgctxt "cross_infill_density_image label"
  3880. msgid "Cross Infill Density Image"
  3881. msgstr "교차 충진 밀도 이미지"
  3882. #: fdmprinter.def.json
  3883. msgctxt "cross_infill_density_image description"
  3884. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  3885. msgstr "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치."
  3886. #: fdmprinter.def.json
  3887. msgctxt "cross_support_density_image label"
  3888. msgid "Cross Fill Density Image for Support"
  3889. msgstr "지지대에 대한 교차 충진 밀도 이미지"
  3890. #: fdmprinter.def.json
  3891. msgctxt "cross_support_density_image description"
  3892. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3893. msgstr "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치."
  3894. #: fdmprinter.def.json
  3895. msgctxt "spaghetti_infill_enabled label"
  3896. msgid "Spaghetti Infill"
  3897. msgstr "스파게티 내부채움"
  3898. #: fdmprinter.def.json
  3899. msgctxt "spaghetti_infill_enabled description"
  3900. 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."
  3901. msgstr "필라멘트가 물체 내부에서 혼란스럽게 뒤 틀릴 수 있도록 필러를 너무 자주 프린팅합니다. 이렇게하면 프린팅 시간이 줄어들지만 예측할 수 없는 행동입니다."
  3902. #: fdmprinter.def.json
  3903. msgctxt "spaghetti_infill_stepped label"
  3904. msgid "Spaghetti Infill Stepping"
  3905. msgstr "스파게티 내부채움 단계"
  3906. #: fdmprinter.def.json
  3907. msgctxt "spaghetti_infill_stepped description"
  3908. msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  3909. msgstr "스파게티 필링을 단계별로 프린팅할지 또는 프린팅가 끝날 때 모든 필 필라멘트를 압출시킬지 여부."
  3910. #: fdmprinter.def.json
  3911. msgctxt "spaghetti_max_infill_angle label"
  3912. msgid "Spaghetti Maximum Infill Angle"
  3913. msgstr "스파게티 최대 내부채움 각"
  3914. #: fdmprinter.def.json
  3915. msgctxt "spaghetti_max_infill_angle description"
  3916. 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."
  3917. msgstr "최대 각도 w.r.t. 나중에 스파게티가 채워질 영역에 대한 프린팅 내부의 Z 축. 이 값을 낮추면 모델의 각진 부분이 각 레이어에 채워집니다."
  3918. #: fdmprinter.def.json
  3919. msgctxt "spaghetti_max_height label"
  3920. msgid "Spaghetti Infill Maximum Height"
  3921. msgstr "스파게티 내부채움 최대 높이"
  3922. #: fdmprinter.def.json
  3923. msgctxt "spaghetti_max_height description"
  3924. msgid "The maximum height of inside space which can be combined and filled from the top."
  3925. msgstr "상단에서 결합하여 채울 수 있는 내부 공간의 최대 높이입니다."
  3926. #: fdmprinter.def.json
  3927. msgctxt "spaghetti_inset label"
  3928. msgid "Spaghetti Inset"
  3929. msgstr "스파게티 삽입"
  3930. #: fdmprinter.def.json
  3931. msgctxt "spaghetti_inset description"
  3932. msgid "The offset from the walls from where the spaghetti infill will be printed."
  3933. msgstr "스파게티가 채워지는 벽의 오프셋."
  3934. #: fdmprinter.def.json
  3935. msgctxt "spaghetti_flow label"
  3936. msgid "Spaghetti Flow"
  3937. msgstr "스파게티 흐름"
  3938. #: fdmprinter.def.json
  3939. msgctxt "spaghetti_flow description"
  3940. 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."
  3941. msgstr "스파게티 내부채움의 밀도를 조정합니다. 내부채움 밀도는 스파게티 압출 량이 아니라 채워자는 패턴의 줄 간격 만 제어합니다."
  3942. #: fdmprinter.def.json
  3943. msgctxt "spaghetti_infill_extra_volume label"
  3944. msgid "Spaghetti Infill Extra Volume"
  3945. msgstr "스파게티 내부채움 추가 양"
  3946. #: fdmprinter.def.json
  3947. msgctxt "spaghetti_infill_extra_volume description"
  3948. msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  3949. msgstr "스파게티를 채울 때마다 압출되는 총 부피를 조정하는 보정 용어."
  3950. #: fdmprinter.def.json
  3951. msgctxt "support_conical_enabled label"
  3952. msgid "Enable Conical Support"
  3953. msgstr "원추형 서포트 사용"
  3954. #: fdmprinter.def.json
  3955. msgctxt "support_conical_enabled description"
  3956. msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  3957. msgstr "실험적 기능 : 오버행보다 하단에서 서포트 영역을 작게 만듭니다."
  3958. #: fdmprinter.def.json
  3959. msgctxt "support_conical_angle label"
  3960. msgid "Conical Support Angle"
  3961. msgstr "원추서포트 각"
  3962. #: fdmprinter.def.json
  3963. msgctxt "support_conical_angle description"
  3964. 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."
  3965. msgstr "원추형 서포트점의 기울기 각도입니다. 0도가 수직이고 90도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다."
  3966. #: fdmprinter.def.json
  3967. msgctxt "support_conical_min_width label"
  3968. msgid "Conical Support Minimum Width"
  3969. msgstr "원뿔형 서포트 최소 너비"
  3970. #: fdmprinter.def.json
  3971. msgctxt "support_conical_min_width description"
  3972. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3973. msgstr "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다."
  3974. #: fdmprinter.def.json
  3975. msgctxt "magic_fuzzy_skin_enabled label"
  3976. msgid "Fuzzy Skin"
  3977. msgstr "퍼지 스킨"
  3978. #: fdmprinter.def.json
  3979. msgctxt "magic_fuzzy_skin_enabled description"
  3980. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3981. msgstr "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다."
  3982. #: fdmprinter.def.json
  3983. msgctxt "magic_fuzzy_skin_thickness label"
  3984. msgid "Fuzzy Skin Thickness"
  3985. msgstr "퍼지 스킨 두께"
  3986. #: fdmprinter.def.json
  3987. msgctxt "magic_fuzzy_skin_thickness description"
  3988. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3989. msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다."
  3990. #: fdmprinter.def.json
  3991. msgctxt "magic_fuzzy_skin_point_density label"
  3992. msgid "Fuzzy Skin Density"
  3993. msgstr "퍼지 스킨 밀도"
  3994. #: fdmprinter.def.json
  3995. msgctxt "magic_fuzzy_skin_point_density description"
  3996. 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."
  3997. msgstr "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다."
  3998. #: fdmprinter.def.json
  3999. msgctxt "magic_fuzzy_skin_point_dist label"
  4000. msgid "Fuzzy Skin Point Distance"
  4001. msgstr "퍼지 스킨 포인트 거리"
  4002. #: fdmprinter.def.json
  4003. msgctxt "magic_fuzzy_skin_point_dist description"
  4004. 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."
  4005. msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다."
  4006. #: fdmprinter.def.json
  4007. msgctxt "flow_rate_max_extrusion_offset label"
  4008. msgid "Flow rate compensation max extrusion offset"
  4009. msgstr "압출 속도 보상 최대 압출 오프셋"
  4010. #: fdmprinter.def.json
  4011. msgctxt "flow_rate_max_extrusion_offset description"
  4012. msgid "The maximum distance in mm to compensate."
  4013. msgstr "최대 보상 거리입니다(단위: mm)."
  4014. #: fdmprinter.def.json
  4015. msgctxt "flow_rate_extrusion_offset_factor label"
  4016. msgid "Flow rate compensation factor"
  4017. msgstr "압출 속도 보상 배율"
  4018. #: fdmprinter.def.json
  4019. msgctxt "flow_rate_extrusion_offset_factor description"
  4020. msgid "The multiplication factor for the flow rate -> distance translation."
  4021. msgstr "압출 속도를 거리로 변환하는 증배율입니다."
  4022. #: fdmprinter.def.json
  4023. msgctxt "wireframe_enabled label"
  4024. msgid "Wire Printing"
  4025. msgstr "와이어 프린팅"
  4026. #: fdmprinter.def.json
  4027. msgctxt "wireframe_enabled description"
  4028. 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."
  4029. msgstr "외벽의 표면만 거미줄 같은 형태로 공중에서 프린팅합니다. 이것은 상향 및 대각선 하향 라인을 통해 연결된 Z 간격으로 모형의 윤곽을 수평으로 인쇄함으로써 구현됩니다."
  4030. #: fdmprinter.def.json
  4031. msgctxt "wireframe_height label"
  4032. msgid "WP Connection Height"
  4033. msgstr "WP 연결 높이"
  4034. #: fdmprinter.def.json
  4035. msgctxt "wireframe_height description"
  4036. 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."
  4037. msgstr "두 개의 수평 부분 사이의 상향 및 대각선 방향의 높이입니다. 이것은 네트 구조의 전체 밀도를 결정합니다. 와이어 프린팅에만 적용됩니다."
  4038. #: fdmprinter.def.json
  4039. msgctxt "wireframe_roof_inset label"
  4040. msgid "WP Roof Inset Distance"
  4041. msgstr "WP 지붕 인셋 거리"
  4042. #: fdmprinter.def.json
  4043. msgctxt "wireframe_roof_inset description"
  4044. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4045. msgstr "지붕에서 연결을 할 때 안쪽까지 윤곽선을 그립니다. 와이어 프린팅에만 적용됩니다."
  4046. #: fdmprinter.def.json
  4047. msgctxt "wireframe_printspeed label"
  4048. msgid "WP Speed"
  4049. msgstr "WP 속도"
  4050. #: fdmprinter.def.json
  4051. msgctxt "wireframe_printspeed description"
  4052. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4053. msgstr "재료를 압출 할 때 노즐이 움직이는 속도. 와이어 프린팅에만 적용됩니다."
  4054. #: fdmprinter.def.json
  4055. msgctxt "wireframe_printspeed_bottom label"
  4056. msgid "WP Bottom Printing Speed"
  4057. msgstr "WP 하단 프린팅 속도"
  4058. #: fdmprinter.def.json
  4059. msgctxt "wireframe_printspeed_bottom description"
  4060. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4061. msgstr "첫 번째 레이어 프린팅 속도. 와이어 프린팅에만 적용됩니다."
  4062. #: fdmprinter.def.json
  4063. msgctxt "wireframe_printspeed_up label"
  4064. msgid "WP Upward Printing Speed"
  4065. msgstr "WP 상향 프린팅 속도"
  4066. #: fdmprinter.def.json
  4067. msgctxt "wireframe_printspeed_up description"
  4068. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4069. msgstr "공중에서 위쪽으로 선을 프린팅하는 속도. 와이어 프린팅에만 적용됩니다."
  4070. #: fdmprinter.def.json
  4071. msgctxt "wireframe_printspeed_down label"
  4072. msgid "WP Downward Printing Speed"
  4073. msgstr "WP 하향 프린팅 속도"
  4074. #: fdmprinter.def.json
  4075. msgctxt "wireframe_printspeed_down description"
  4076. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4077. msgstr "대각선 방향으로 선을 프린팅하는 속도. 와이어 프린팅에만 적용됩니다."
  4078. #: fdmprinter.def.json
  4079. msgctxt "wireframe_printspeed_flat label"
  4080. msgid "WP Horizontal Printing Speed"
  4081. msgstr "WP 가로 프린팅 속도"
  4082. #: fdmprinter.def.json
  4083. msgctxt "wireframe_printspeed_flat description"
  4084. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4085. msgstr "모델의 수평 윤곽 프린팅 속도입니다. 와이어 프린팅에만 적용됩니다."
  4086. #: fdmprinter.def.json
  4087. msgctxt "wireframe_flow label"
  4088. msgid "WP Flow"
  4089. msgstr "WP 흐름"
  4090. #: fdmprinter.def.json
  4091. msgctxt "wireframe_flow description"
  4092. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4093. msgstr "압출량 보상 : 압출 된 재료의 양에 이 값을 곱합니다. 와이어 프린팅에만 적용됩니다."
  4094. #: fdmprinter.def.json
  4095. msgctxt "wireframe_flow_connection label"
  4096. msgid "WP Connection Flow"
  4097. msgstr "WP 연결 흐름"
  4098. #: fdmprinter.def.json
  4099. msgctxt "wireframe_flow_connection description"
  4100. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4101. msgstr "위 또는 아래로 이동할 때 압출량 보정. 와이어 프린팅에만 적용됩니다."
  4102. #: fdmprinter.def.json
  4103. msgctxt "wireframe_flow_flat label"
  4104. msgid "WP Flat Flow"
  4105. msgstr "WP 플랫 플로우"
  4106. #: fdmprinter.def.json
  4107. msgctxt "wireframe_flow_flat description"
  4108. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4109. msgstr "평평한 선을 프린팅 할 때 압출량 보정. 와이어 프린팅에만 적용됩니다."
  4110. #: fdmprinter.def.json
  4111. msgctxt "wireframe_top_delay label"
  4112. msgid "WP Top Delay"
  4113. msgstr "WP 상단 지연"
  4114. #: fdmprinter.def.json
  4115. msgctxt "wireframe_top_delay description"
  4116. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4117. msgstr "상향 라인이 강화 될 수 있도록 상향 이동 후 지연 시간. 와이어 프린팅에만 적용됩니다."
  4118. #: fdmprinter.def.json
  4119. msgctxt "wireframe_bottom_delay label"
  4120. msgid "WP Bottom Delay"
  4121. msgstr "WP 최저 지연"
  4122. #: fdmprinter.def.json
  4123. msgctxt "wireframe_bottom_delay description"
  4124. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4125. msgstr "하강 후 지연 시간. 와이어 프린팅에만 적용됩니다."
  4126. #: fdmprinter.def.json
  4127. msgctxt "wireframe_flat_delay label"
  4128. msgid "WP Flat Delay"
  4129. msgstr "WP 평탄한 지연"
  4130. #: fdmprinter.def.json
  4131. msgctxt "wireframe_flat_delay description"
  4132. 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."
  4133. msgstr "두 개의 수평 세그먼트 사이의 지연 시간. 이러한 지연을 도입하면 연결 지점에서 이전 레이어와의 접착력이 향상 될 수 있으며 너무 긴 지연으로 인해 처짐이 발생할 수 있습니다. 와이어 프린팅에만 적용됩니다."
  4134. #: fdmprinter.def.json
  4135. msgctxt "wireframe_up_half_speed label"
  4136. msgid "WP Ease Upward"
  4137. msgstr "WP 상향 조정"
  4138. #: fdmprinter.def.json
  4139. msgctxt "wireframe_up_half_speed description"
  4140. msgid ""
  4141. "Distance of an upward move which is extruded with half speed.\n"
  4142. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4143. msgstr "기본 속도의 반으로 압출 된 상향 이동 거리. 이로 인해 이전 레이어에 더 나은 접착력을 유발할 수 있지만 레이어에 있는 소재는 너무 많이 가열하지 않습니다. 와이어 프린팅에만 적용됩니다."
  4144. #: fdmprinter.def.json
  4145. msgctxt "wireframe_top_jump label"
  4146. msgid "WP Knot Size"
  4147. msgstr "WP 매듭 크기"
  4148. #: fdmprinter.def.json
  4149. msgctxt "wireframe_top_jump description"
  4150. 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."
  4151. msgstr "상향 선의 상단에 작은 매듭을 만들어 연속적인 수평 레이어에 연결할 수 있게 합니다. 와이어 프린팅에만 적용됩니다."
  4152. #: fdmprinter.def.json
  4153. msgctxt "wireframe_fall_down label"
  4154. msgid "WP Fall Down"
  4155. msgstr "WP Fall Down"
  4156. #: fdmprinter.def.json
  4157. msgctxt "wireframe_fall_down description"
  4158. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4159. msgstr "위쪽으로 밀어 낸 후 재료가 떨어지는 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다."
  4160. #: fdmprinter.def.json
  4161. msgctxt "wireframe_drag_along label"
  4162. msgid "WP Drag Along"
  4163. msgstr "WP 드래그를 따라"
  4164. #: fdmprinter.def.json
  4165. msgctxt "wireframe_drag_along description"
  4166. 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."
  4167. msgstr "대각선 방향으로 압출 된 압출부의 재료가 위쪽으로 밀어내는 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다."
  4168. #: fdmprinter.def.json
  4169. msgctxt "wireframe_strategy label"
  4170. msgid "WP Strategy"
  4171. msgstr "WP 전략"
  4172. #: fdmprinter.def.json
  4173. msgctxt "wireframe_strategy description"
  4174. 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."
  4175. msgstr "각 연결 지점에서 두 개의 연속 된 레이어가 연결되도록 하는 전략입니다. 리트렉션을 하면 상향 선이 올바른 위치에서 경화되지만 필라멘트가 갈릴 수 있습니다. 상향 선의 끝에 매듭을 만들어 연결 기회를 높이고 선을 차게 할 수 있습니다. 그러나 느린 프린팅 속도가 필요할 수 있습니다. 또 다른 전략은 상향 라인의 윗부분의 처짐을 보충하는 것입니다. 그러나 선은 항상 예측대로 떨어지지는 않습니다."
  4176. #: fdmprinter.def.json
  4177. msgctxt "wireframe_strategy option compensate"
  4178. msgid "Compensate"
  4179. msgstr "보상"
  4180. #: fdmprinter.def.json
  4181. msgctxt "wireframe_strategy option knot"
  4182. msgid "Knot"
  4183. msgstr "매듭"
  4184. #: fdmprinter.def.json
  4185. msgctxt "wireframe_strategy option retract"
  4186. msgid "Retract"
  4187. msgstr "리트렉트"
  4188. #: fdmprinter.def.json
  4189. msgctxt "wireframe_straight_before_down label"
  4190. msgid "WP Straighten Downward Lines"
  4191. msgstr "WP 직선화 하향 라인"
  4192. #: fdmprinter.def.json
  4193. msgctxt "wireframe_straight_before_down description"
  4194. 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."
  4195. msgstr "수평선 조각에 의해 덮여있는 비스듬한 하향 선의 백분율. 이렇게 하면 상향 선의 맨 위 지점이 처지는 것을 방지 할 수 있습니다. 와이어 프린팅에만 적용됩니다."
  4196. #: fdmprinter.def.json
  4197. msgctxt "wireframe_roof_fall_down label"
  4198. msgid "WP Roof Fall Down"
  4199. msgstr "WP 지붕 Fall Down"
  4200. #: fdmprinter.def.json
  4201. msgctxt "wireframe_roof_fall_down description"
  4202. 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."
  4203. msgstr "공중에서 프린팅된 수평 지붕 라인의 거리는 프린팅 될 때 떨어집니다. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다."
  4204. #: fdmprinter.def.json
  4205. msgctxt "wireframe_roof_drag_along label"
  4206. msgid "WP Roof Drag Along"
  4207. msgstr "WP 지붕 끌기"
  4208. #: fdmprinter.def.json
  4209. msgctxt "wireframe_roof_drag_along description"
  4210. 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."
  4211. msgstr "루프의 외곽 윤곽으로 돌아갈 때 끌린 내향 선의 끝 부분 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다."
  4212. #: fdmprinter.def.json
  4213. msgctxt "wireframe_roof_outer_delay label"
  4214. msgid "WP Roof Outer Delay"
  4215. msgstr "WP 지붕 외부 지연"
  4216. #: fdmprinter.def.json
  4217. msgctxt "wireframe_roof_outer_delay description"
  4218. 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."
  4219. msgstr "지붕이 될 구멍의 바깥 둘레에서의 시간. 시간이 길면 연결이 더 잘됩니다. 와이어 프린팅에만 적용됩니다."
  4220. #: fdmprinter.def.json
  4221. msgctxt "wireframe_nozzle_clearance label"
  4222. msgid "WP Nozzle Clearance"
  4223. msgstr "WP 노즐 유격"
  4224. #: fdmprinter.def.json
  4225. msgctxt "wireframe_nozzle_clearance description"
  4226. 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."
  4227. msgstr "노즐과 수평 아래쪽 라인 사이의 거리. 거리가 클수록 비스듬한 각도에서 비스듬히 아래쪽으로 선이 그어져 다음 층과의 연결이보다 적어집니다. 와이어 프린팅에만 적용됩니다."
  4228. #: fdmprinter.def.json
  4229. msgctxt "adaptive_layer_height_enabled label"
  4230. msgid "Use adaptive layers"
  4231. msgstr "어댑티브 레이어 사용"
  4232. #: fdmprinter.def.json
  4233. msgctxt "adaptive_layer_height_enabled description"
  4234. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4235. msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다."
  4236. #: fdmprinter.def.json
  4237. msgctxt "adaptive_layer_height_variation label"
  4238. msgid "Adaptive layers maximum variation"
  4239. msgstr "어댑티브 레이어 최대 변화"
  4240. #: fdmprinter.def.json
  4241. msgctxt "adaptive_layer_height_variation description"
  4242. msgid "The maximum allowed height different from the base layer height."
  4243. msgstr "기본 레이어 높이와 다른 최대 허용 높이."
  4244. #: fdmprinter.def.json
  4245. msgctxt "adaptive_layer_height_variation_step label"
  4246. msgid "Adaptive layers variation step size"
  4247. msgstr "어댑티브 레이어 변화 단계 크기"
  4248. #: fdmprinter.def.json
  4249. msgctxt "adaptive_layer_height_variation_step description"
  4250. msgid "The difference in height of the next layer height compared to the previous one."
  4251. msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이."
  4252. #: fdmprinter.def.json
  4253. msgctxt "adaptive_layer_height_threshold label"
  4254. msgid "Adaptive layers threshold"
  4255. msgstr "어댑티브 레이어 임계 값"
  4256. #: fdmprinter.def.json
  4257. msgctxt "adaptive_layer_height_threshold description"
  4258. msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  4259. msgstr "더 작은 레이어를 사용할지 여부에 대한 임계 값. 이 숫자는 레이어의 가장 급한 경사의 탄젠트와 비교됩니다."
  4260. #: fdmprinter.def.json
  4261. msgctxt "bridge_settings_enabled label"
  4262. msgid "Enable Bridge Settings"
  4263. msgstr "브릿지 설정 사용"
  4264. #: fdmprinter.def.json
  4265. msgctxt "bridge_settings_enabled description"
  4266. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4267. msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다."
  4268. #: fdmprinter.def.json
  4269. msgctxt "bridge_wall_min_length label"
  4270. msgid "Minimum Bridge Wall Length"
  4271. msgstr "최소 브리지 벽 길이"
  4272. #: fdmprinter.def.json
  4273. msgctxt "bridge_wall_min_length description"
  4274. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  4275. msgstr "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다."
  4276. #: fdmprinter.def.json
  4277. msgctxt "bridge_skin_support_threshold label"
  4278. msgid "Bridge Skin Support Threshold"
  4279. msgstr "브릿지 스킨 서포트 임계값"
  4280. #: fdmprinter.def.json
  4281. msgctxt "bridge_skin_support_threshold description"
  4282. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  4283. msgstr "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다."
  4284. #: fdmprinter.def.json
  4285. msgctxt "bridge_wall_max_overhang label"
  4286. msgid "Bridge Wall Max Overhang"
  4287. msgstr "브리지 벽 최대 오버행"
  4288. #: fdmprinter.def.json
  4289. msgctxt "bridge_wall_max_overhang description"
  4290. msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  4291. msgstr "브릿지 설정을 사용하여 벽을 인쇄하기 전에 벽 선 아래의 에어영역의 최대 허용 폭. 벽 선 너비의 백분율로 표시됩니다. 에어 갭이 이보다 넓은 경우 브리지 설정을 사용하여 벽 선이 인쇄됩니다. 그렇지 않으면 벽 선이 일반 설정을 사용하여 인쇄됩니다. 값이 낮을수록 브릿지 설정을 사용하여 오버행 된 벽 선이 인쇄 될 가능성이 높아집니다."
  4292. #: fdmprinter.def.json
  4293. msgctxt "bridge_wall_coast label"
  4294. msgid "Bridge Wall Coasting"
  4295. msgstr "브릿지 벽 코스팅(Coasting)"
  4296. #: fdmprinter.def.json
  4297. msgctxt "bridge_wall_coast description"
  4298. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  4299. msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다."
  4300. #: fdmprinter.def.json
  4301. msgctxt "bridge_wall_speed label"
  4302. msgid "Bridge Wall Speed"
  4303. msgstr "브릿지 벽 속도"
  4304. #: fdmprinter.def.json
  4305. msgctxt "bridge_wall_speed description"
  4306. msgid "The speed at which the bridge walls are printed."
  4307. msgstr "브릿지 벽이 프린팅되는 속도."
  4308. #: fdmprinter.def.json
  4309. msgctxt "bridge_wall_material_flow label"
  4310. msgid "Bridge Wall Flow"
  4311. msgstr "브리지 벽 압출량"
  4312. #: fdmprinter.def.json
  4313. msgctxt "bridge_wall_material_flow description"
  4314. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4315. msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다."
  4316. #: fdmprinter.def.json
  4317. msgctxt "bridge_skin_speed label"
  4318. msgid "Bridge Skin Speed"
  4319. msgstr "브릿지 스킨 속도"
  4320. #: fdmprinter.def.json
  4321. msgctxt "bridge_skin_speed description"
  4322. msgid "The speed at which bridge skin regions are printed."
  4323. msgstr "브릿지 스킨 층이 프린팅되는 속도."
  4324. #: fdmprinter.def.json
  4325. msgctxt "bridge_skin_material_flow label"
  4326. msgid "Bridge Skin Flow"
  4327. msgstr "브리지 스킨 압출량"
  4328. #: fdmprinter.def.json
  4329. msgctxt "bridge_skin_material_flow description"
  4330. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4331. msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다."
  4332. #: fdmprinter.def.json
  4333. msgctxt "bridge_skin_density label"
  4334. msgid "Bridge Skin Density"
  4335. msgstr "브릿지 스킨 밀도"
  4336. #: fdmprinter.def.json
  4337. msgctxt "bridge_skin_density description"
  4338. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4339. msgstr "브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다."
  4340. #: fdmprinter.def.json
  4341. msgctxt "bridge_fan_speed label"
  4342. msgid "Bridge Fan Speed"
  4343. msgstr "브릿지 팬 속도"
  4344. #: fdmprinter.def.json
  4345. msgctxt "bridge_fan_speed description"
  4346. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4347. msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율."
  4348. #: fdmprinter.def.json
  4349. msgctxt "bridge_enable_more_layers label"
  4350. msgid "Bridge Has Multiple Layers"
  4351. msgstr "여러 개의 레이어가있는 브릿지"
  4352. #: fdmprinter.def.json
  4353. msgctxt "bridge_enable_more_layers description"
  4354. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  4355. msgstr "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다."
  4356. #: fdmprinter.def.json
  4357. msgctxt "bridge_skin_speed_2 label"
  4358. msgid "Bridge Second Skin Speed"
  4359. msgstr "브릿지 두번째 스킨 속도"
  4360. #: fdmprinter.def.json
  4361. msgctxt "bridge_skin_speed_2 description"
  4362. msgid "Print speed to use when printing the second bridge skin layer."
  4363. msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도."
  4364. #: fdmprinter.def.json
  4365. msgctxt "bridge_skin_material_flow_2 label"
  4366. msgid "Bridge Second Skin Flow"
  4367. msgstr "브리지 두 번째 스킨 압출량"
  4368. #: fdmprinter.def.json
  4369. msgctxt "bridge_skin_material_flow_2 description"
  4370. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4371. msgstr "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다."
  4372. #: fdmprinter.def.json
  4373. msgctxt "bridge_skin_density_2 label"
  4374. msgid "Bridge Second Skin Density"
  4375. msgstr "브리지 두 번째 스킨 밀도"
  4376. #: fdmprinter.def.json
  4377. msgctxt "bridge_skin_density_2 description"
  4378. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4379. msgstr "두번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다."
  4380. #: fdmprinter.def.json
  4381. msgctxt "bridge_fan_speed_2 label"
  4382. msgid "Bridge Second Skin Fan Speed"
  4383. msgstr "브릿지 두번째 스킨 팬 속도"
  4384. #: fdmprinter.def.json
  4385. msgctxt "bridge_fan_speed_2 description"
  4386. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4387. msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율."
  4388. #: fdmprinter.def.json
  4389. msgctxt "bridge_skin_speed_3 label"
  4390. msgid "Bridge Third Skin Speed"
  4391. msgstr "브릿지 세번째 스킨 속도"
  4392. #: fdmprinter.def.json
  4393. msgctxt "bridge_skin_speed_3 description"
  4394. msgid "Print speed to use when printing the third bridge skin layer."
  4395. msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도."
  4396. #: fdmprinter.def.json
  4397. msgctxt "bridge_skin_material_flow_3 label"
  4398. msgid "Bridge Third Skin Flow"
  4399. msgstr "브리지 세 번째 스킨 압출량"
  4400. #: fdmprinter.def.json
  4401. msgctxt "bridge_skin_material_flow_3 description"
  4402. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4403. msgstr "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다."
  4404. #: fdmprinter.def.json
  4405. msgctxt "bridge_skin_density_3 label"
  4406. msgid "Bridge Third Skin Density"
  4407. msgstr "브릿지 세번째 스킨 밀도"
  4408. #: fdmprinter.def.json
  4409. msgctxt "bridge_skin_density_3 description"
  4410. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4411. msgstr "세번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다."
  4412. #: fdmprinter.def.json
  4413. msgctxt "bridge_fan_speed_3 label"
  4414. msgid "Bridge Third Skin Fan Speed"
  4415. msgstr "브릿지 세번째 스킨 팬 속도"
  4416. #: fdmprinter.def.json
  4417. msgctxt "bridge_fan_speed_3 description"
  4418. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4419. msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율."
  4420. #: fdmprinter.def.json
  4421. msgctxt "command_line_settings label"
  4422. msgid "Command Line Settings"
  4423. msgstr "커맨드 라인 설정"
  4424. #: fdmprinter.def.json
  4425. msgctxt "command_line_settings description"
  4426. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4427. msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다."
  4428. #: fdmprinter.def.json
  4429. msgctxt "center_object label"
  4430. msgid "Center Object"
  4431. msgstr "가운데 객체"
  4432. #: fdmprinter.def.json
  4433. msgctxt "center_object description"
  4434. 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."
  4435. msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간 (0,0)를 중심으로 할지 여부."
  4436. #: fdmprinter.def.json
  4437. msgctxt "mesh_position_x label"
  4438. msgid "Mesh Position X"
  4439. msgstr "메쉬 위치 X"
  4440. #: fdmprinter.def.json
  4441. msgctxt "mesh_position_x description"
  4442. msgid "Offset applied to the object in the x direction."
  4443. msgstr "x 방향으로 객체에 적용된 오프셋입니다."
  4444. #: fdmprinter.def.json
  4445. msgctxt "mesh_position_y label"
  4446. msgid "Mesh Position Y"
  4447. msgstr "메쉬 위치 Y"
  4448. #: fdmprinter.def.json
  4449. msgctxt "mesh_position_y description"
  4450. msgid "Offset applied to the object in the y direction."
  4451. msgstr "y 방향으로 객체에 적용된 오프셋입니다."
  4452. #: fdmprinter.def.json
  4453. msgctxt "mesh_position_z label"
  4454. msgid "Mesh Position Z"
  4455. msgstr "메쉬 위치 Z"
  4456. #: fdmprinter.def.json
  4457. msgctxt "mesh_position_z description"
  4458. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4459. msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다."
  4460. #: fdmprinter.def.json
  4461. msgctxt "mesh_rotation_matrix label"
  4462. msgid "Mesh Rotation Matrix"
  4463. msgstr "메쉬 회전 행렬"
  4464. #: fdmprinter.def.json
  4465. msgctxt "mesh_rotation_matrix description"
  4466. msgid "Transformation matrix to be applied to the model when loading it from file."
  4467. msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다."
  4468. #~ msgctxt "optimize_wall_printing_order description"
  4469. #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization."
  4470. #~ msgstr "리트렉션 및 이동 거리를 줄이도록 벽이 프린팅되는 순서를 최적화하십시오. 대부분 이 기능을 사용하면 도움이되지만, 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부에 관계없이 프린팅 시간을 비교하십시오."
  4471. #~ msgctxt "retraction_combing option noskin"
  4472. #~ msgid "No Skin"
  4473. #~ msgstr "스킨이 없음"
  4474. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  4475. #~ msgid "Alternate Cross 3D Pockets"
  4476. #~ msgstr "대체 교차 3D 포켓"
  4477. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  4478. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  4479. #~ msgstr "십자형 3D 패턴에서 4방향 교차점의 절반에만 포켓을 적용하고 패턴이 만지는 높이 사이의 포켓 위치를 교체합니다."
  4480. #~ msgctxt "infill_hollow label"
  4481. #~ msgid "Hollow Out Objects"
  4482. #~ msgstr "개체가 텅 빈 것"
  4483. #~ msgctxt "infill_hollow description"
  4484. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  4485. #~ msgstr "모든 내부채움을 제거하고 물체의 내부를 지탱할 수있게 합니다."
  4486. #~ msgctxt "adaptive_layer_height_variation description"
  4487. #~ msgid "The maximum allowed height different from the base layer height in mm."
  4488. #~ msgstr "기본 레이어 높이와 다른 최대 허용 높이 (mm)."
  4489. #~ msgctxt "center_object label"
  4490. #~ msgid "Center object"
  4491. #~ msgstr "가운데 객체"
  4492. #~ msgctxt "mesh_position_x label"
  4493. #~ msgid "Mesh position x"
  4494. #~ msgstr "메쉬 위치 x"
  4495. #~ msgctxt "mesh_position_y label"
  4496. #~ msgid "Mesh position y"
  4497. #~ msgstr "메쉬 위치 y"
  4498. #~ msgctxt "mesh_position_z label"
  4499. #~ msgid "Mesh position z"
  4500. #~ msgstr "메쉬 위치 z"
  4501. #~ msgctxt "machine_start_gcode label"
  4502. #~ msgid "Start GCode"
  4503. #~ msgstr "Start GCode"
  4504. #~ msgctxt "machine_start_gcode description"
  4505. #~ msgid ""
  4506. #~ "Gcode commands to be executed at the very start - separated by \n"
  4507. #~ "."
  4508. #~ msgstr ""
  4509. #~ "시작과 동시에 실행될 G 코드 명령어 \n"
  4510. #~ "."
  4511. #~ msgctxt "machine_end_gcode label"
  4512. #~ msgid "End GCode"
  4513. #~ msgstr "End GCode"
  4514. #~ msgctxt "machine_end_gcode description"
  4515. #~ msgid ""
  4516. #~ "Gcode commands to be executed at the very end - separated by \n"
  4517. #~ "."
  4518. #~ msgstr ""
  4519. #~ "맨 마지막에 실행될 G 코드 명령 \n"
  4520. #~ "."
  4521. #~ msgctxt "machine_gcode_flavor label"
  4522. #~ msgid "Gcode flavour"
  4523. #~ msgstr "Gcode flavour"
  4524. #~ msgctxt "machine_gcode_flavor description"
  4525. #~ msgid "The type of gcode to be generated."
  4526. #~ msgstr "생성 될 gcode의 유형."
  4527. #~ msgctxt "meshfix_keep_open_polygons description"
  4528. #~ 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."
  4529. #~ msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다."
  4530. #~ msgctxt "relative_extrusion description"
  4531. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  4532. #~ msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다."
  4533. #~ msgctxt "infill_offset_x description"
  4534. #~ msgid "The infill pattern is offset this distance along the X axis."
  4535. #~ msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다."
  4536. #~ msgctxt "infill_offset_y description"
  4537. #~ msgid "The infill pattern is offset this distance along the Y axis."
  4538. #~ msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다."
  4539. #~ msgctxt "infill_overlap description"
  4540. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  4541. #~ msgstr "내부채움재와 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다."
  4542. #~ msgctxt "skin_overlap description"
  4543. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  4544. #~ msgstr "선 두께의 백분율로 스킨과 벽 사이의 겹치는 정도입니다. 약간 겹치면 벽이 스킨에 단단히 연결됩니다. 이것은 스킨 라인과 가장 안쪽 벽의 평균 라인 폭의 백분율입니다."
  4545. #~ msgctxt "material_bed_temperature description"
  4546. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  4547. #~ msgstr "가열 된 빌드 플레이트에 사용되는 온도. 이 값이 0이면이 출력물에 베드가 가열되지 않습니다."
  4548. #~ msgctxt "wall_x_extruder_nr label"
  4549. #~ msgid "Inner Walls Extruder"
  4550. #~ msgstr "내벽 압출"
  4551. #~ msgctxt "infill_pattern description"
  4552. #~ 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, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  4553. #~ msgstr "출력물의 내부채움 패턴. 라인과 지그재그는 레이어별로 방향을 바꾸어 재료비를 줄입니다. 그리드, 삼각형, 큐빅, 옥텟, 쿼터 큐빅 및 동심원 패턴이 모든 레이어에 완전히 프린팅됩니다. 큐빅, 쿼터 큐빅 및 옥 테트 내부채움 각 레이어에 따라 변경되어 각 방향에 대해 보다 균등한 강도 분포를 제공합니다."
  4554. #~ msgctxt "zig_zaggify_infill description"
  4555. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  4556. #~ msgstr "내부 벽의 모양을 따르는 선을 사용하여 충전 패턴이 내부 벽과 만나는 끝을 연결하십시오. 이 설정을 사용하면 벽에 충전재가 잘 밀착되고 수직 표면의 품질에 영향을 줄 수 있습니다. 이 설정을 사용하지 않으면 사용되는 재료의 양이 줄어 듭니다."
  4557. #~ msgctxt "skirt_gap description"
  4558. #~ msgid ""
  4559. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  4560. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  4561. #~ msgstr "스커트와 출력물의 첫 번째 레이어 사이의 수평 거리입니다. 이것은 최소 거리이며, 여러 스커트 라인이 거리에서 바깥쪽으로 확장됩니다. "
  4562. #~ msgctxt "z_offset_layer_0 label"
  4563. #~ msgid "Initial Layer Z Offset"
  4564. #~ msgstr "초기 레이어 Z 오프셋"
  4565. #~ msgctxt "z_offset_layer_0 description"
  4566. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  4567. #~ msgstr "익스트루더는 이 양만큼 첫번때 층의 정상 높이로부터 오프셋된다. 양수(높임) 또는 음수(낮춤) 일 수 있습니다. 익스트루더를 약간 올리면 일부 필라멘트는 빌드 플레이트에 잘 밀착됩니다."
  4568. #~ msgctxt "z_offset_taper_layers label"
  4569. #~ msgid "Z Offset Taper Layers"
  4570. #~ msgstr "Z 오프셋 테이퍼 레이어"
  4571. #~ msgctxt "z_offset_taper_layers description"
  4572. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  4573. #~ msgstr "0이 아니면 Z 오프셋은 많은 레이어에서 0으로 줄어 듭니다. 값 0은 출력물의 모든 레이어에 대해 Z 오프셋이 일정하게 유지됨을 의미합니다."
  4574. #~ msgctxt "raft_smoothing description"
  4575. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  4576. #~ msgstr "이 설정은 뗏목 윤곽의 내부 모서리가 둥근 정도를 제어합니다. 안쪽 모서리는 여기에 주어진 값과 같은 반경을 가진 반원으로 반올림됩니다. 이 설정은 또한 뗏목 외곽선에서 그러한 원보다 작은 구멍을 제거합니다."
  4577. #~ msgctxt "infill_pattern description"
  4578. #~ 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."
  4579. #~ msgstr "프린트의 충전재 패턴. 라인과 지그는 매층에서 방향을 바꾸어 재료비를 줄입니다. 그리드, 삼각형, 큐빅, 사면체 및 동심원 패턴은 모든 레이어에 완전히 프린팅됩니다. 입방체 및 사면체 충전재는 각 방향마다 강도가 균등하게 분포되도록 모든 층을 변경합니다."
  4580. #~ msgctxt "expand_skins_into_infill description"
  4581. #~ 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."
  4582. #~ msgstr "평면의 상단 및/또는 하단 스킨 영역을 확장합니다. 기본적으로 스킨은 내부채움을 둘러싸는 벽 선 아래에서 멈 춥니다. 그러나 이는 내부채움 밀도가 낮을 때 나타나는 구멍으로 이어질 수 있습니다. 이 설정은 스킨을 벽 선 너머로 확장하여 다음 레이어의 필이 스킨에 놓이도록 합니다. "
  4583. #~ msgctxt "expand_upper_skins description"
  4584. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  4585. #~ msgstr "상단 스킨 영역 (위의 공기가 있는 영역)을 확장하여 위의 내부채움물을 지탱하도록하십시오."
  4586. #~ msgctxt "expand_lower_skins description"
  4587. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4588. #~ msgstr "아래 스킨 영역 (공기가 있는 부분)을 확장하여 위와 아래의 내부채움층으로 고정시킵니다."
  4589. #~ msgctxt "expand_skins_expand_distance description"
  4590. #~ 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."
  4591. #~ msgstr "스킨이 내부 채움 될 거리입니다. 기본 거리는 내부채움 선 사이의 간격을 메우기에 충분하며 내부채움 밀도가 낮을 때 벽과 만나는 스킨에 나타나는 구멍을 막습니다. 보통 거리가 짧아도 충분합니다. "
  4592. #~ msgctxt "support_skip_some_zags description"
  4593. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  4594. #~ msgstr "지그재그 연결을 건너 뛰면 서포트 구조를 쉽게 끊을 수 있습니다."
  4595. #~ msgctxt "support_zag_skip_count description"
  4596. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  4597. #~ msgstr "서포트 구조를 쉽게 깨뜨릴 수 있도록 N 개의 연결 라인마다 하나씩 건너 뜁니다."
  4598. #~ msgctxt "wall_thickness description"
  4599. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4600. #~ msgstr "외벽의 수평 방향의 두께. 이 값을 벽 선 너비로 나눈 값은 벽의 수를 정의합니다."
  4601. #~ msgctxt "skin_overlap description"
  4602. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  4603. #~ msgstr "스킨와 벽 사이의 겹침 정도입니다. 약간 겹치면 벽이 스킨에 단단히 연결됩니다."