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 "์Šคํ‚จ์™€ ๋ฒฝ ์‚ฌ์ด์˜ ๊ฒน์นจ ์ •๋„์ž…๋‹ˆ๋‹ค. ์•ฝ๊ฐ„ ๊ฒน์น˜๋ฉด ๋ฒฝ์ด ์Šคํ‚จ์— ๋‹จ๋‹จํžˆ ์—ฐ๊ฒฐ๋ฉ๋‹ˆ๋‹ค."