cura.po 170 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: ko_KR\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=1; plural=0;\n"
  14. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  15. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  16. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  17. msgctxt "@action:label"
  18. msgid "%1 & material"
  19. msgstr "%1 & 재료"
  20. msgctxt "@action:label"
  21. msgid "%1 out of %2"
  22. msgstr "1 out of %2"
  23. msgctxt "@action:label"
  24. msgid "%1 override"
  25. msgid_plural "%1 overrides"
  26. msgstr[0] "%1 무시"
  27. msgctxt "@action:label"
  28. msgid "%1, %2 override"
  29. msgid_plural "%1, %2 overrides"
  30. msgstr[0] "%1, %2 무시"
  31. msgctxt "@label g for grams"
  32. msgid "%1g"
  33. msgstr "%1g"
  34. msgctxt "@label m for meter"
  35. msgid "%1m"
  36. msgstr "%1m"
  37. msgctxt "@action:inmenu menubar:printer"
  38. msgid "&Add Printer..."
  39. msgstr "프린터 추가..."
  40. msgctxt "@action:inmenu menubar:view"
  41. msgid "&Camera position"
  42. msgstr "카메라 위치(&C)"
  43. msgctxt "@action:inmenu menubar:profile"
  44. msgid "&Create profile from current settings/overrides..."
  45. msgstr "현재 설정으로 프로파일 생성..."
  46. msgctxt "@action:inmenu menubar:profile"
  47. msgid "&Discard current changes"
  48. msgstr "현재 변경 사항 무시"
  49. msgctxt "@title:menu menubar:toplevel"
  50. msgid "&Edit"
  51. msgstr "편집(&E)"
  52. msgctxt "@title:menu menubar:file"
  53. msgid "&Export..."
  54. msgstr "내보내기(&E)..."
  55. msgctxt "@title:menu menubar:toplevel"
  56. msgid "&File"
  57. msgstr "파일"
  58. msgctxt "@action:inmenu menubar:edit"
  59. msgid "&Group Models"
  60. msgstr "모델 그룹화"
  61. msgctxt "@title:menu menubar:toplevel"
  62. msgid "&Help"
  63. msgstr "도움말(&H)"
  64. msgctxt "@title:menu"
  65. msgid "&Material"
  66. msgstr "재료(&M)"
  67. msgctxt "@action:inmenu menubar:edit"
  68. msgid "&Merge Models"
  69. msgstr "모델 합치기"
  70. msgctxt "@action:inmenu"
  71. msgid "&Multiply Model..."
  72. msgstr "모델 복제..."
  73. msgctxt "@action:inmenu menubar:file"
  74. msgid "&New Project..."
  75. msgstr "새로운 프로젝트..."
  76. msgctxt "@action:inmenu menubar:file"
  77. msgid "&Open File(s)..."
  78. msgstr "파일 열기..."
  79. msgctxt "@title:menu menubar:settings"
  80. msgid "&Printer"
  81. msgstr "프린터(&P)"
  82. msgctxt "@action:inmenu menubar:file"
  83. msgid "&Quit"
  84. msgstr "종료(&Q)"
  85. msgctxt "@action:inmenu menubar:edit"
  86. msgid "&Redo"
  87. msgstr "다시하기(&R)"
  88. msgctxt "@title:menu menubar:file"
  89. msgid "&Save Project..."
  90. msgstr "프로젝트 저장(&S)..."
  91. msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'"
  92. msgid "&Save Universal Cura Project..."
  93. msgstr "&범용 Cura 프로젝트 저장..."
  94. msgctxt "@title:menu menubar:toplevel"
  95. msgid "&Settings"
  96. msgstr "설정"
  97. msgctxt "@action:inmenu menubar:edit"
  98. msgid "&Undo"
  99. msgstr "되돌리기(&U)"
  100. msgctxt "@action:inmenu menubar:profile"
  101. msgid "&Update profile with current settings/overrides"
  102. msgstr "현재 설정으로로 프로파일 업데이트"
  103. msgctxt "@title:menu menubar:toplevel"
  104. msgid "&View"
  105. msgstr "보기(&V)"
  106. msgctxt "@label"
  107. msgid "*You will need to restart the application for these changes to have effect."
  108. msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재시작해야 합니다."
  109. msgctxt "@text"
  110. msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community"
  111. msgstr "- 재료 설정 및 Marketplace 플러그인 추가"
  112. "- 재료 설정과 플러그인 백업 및 동기화"
  113. "- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기"
  114. msgctxt "@heading"
  115. msgid "-- incomplete --"
  116. msgstr "-- 미완료 --"
  117. msgctxt "@action:label"
  118. msgid "1mm Transmittance (%)"
  119. msgstr "1mm의 투과율(%)"
  120. msgctxt "@info:title"
  121. msgid "3D Model Assistant"
  122. msgstr "3D 모델 도우미"
  123. msgctxt "@action:inmenu menubar:view"
  124. msgid "3D View"
  125. msgstr "3D 보기"
  126. msgctxt "@info:tooltip"
  127. msgid "3D View"
  128. msgstr "3D 보기"
  129. msgctxt "@item:inlistbox"
  130. msgid "3MF File"
  131. msgstr "3MF 파일"
  132. msgctxt "@error:zip"
  133. msgid "3MF Writer plug-in is corrupt."
  134. msgstr "3MF 기록기 플러그인이 손상되었습니다."
  135. msgctxt "@item:inlistbox"
  136. msgid "3MF file"
  137. msgstr "3MF 파일"
  138. msgctxt "@info, %1 is the name of the custom profile"
  139. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  140. msgstr "<b>%1</b>개의 사용자 정의 프로파일을 활성화하고 일부 설정을 덮어썼습니다."
  141. msgctxt "@info, %1 is the name of the custom profile"
  142. msgid "<b>%1</b> custom profile is overriding some settings."
  143. msgstr "<b>%1</b>개의 사용자 정의 프로파일이 일부 설정을 무시합니다."
  144. msgctxt "@label %i will be replaced with a profile name"
  145. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  146. msgstr "<b>사용자 지정 프로필에는 사용자가 변경한 설정만 저장됩니다.</b><br/>이를 지원하는 재료의 경우 새 사용자 지정 프로필은 <b>%1</b>의 속성을 상속합니다."
  147. msgctxt "@label OpenGL renderer"
  148. msgid "<li>OpenGL Renderer: {renderer}</li>"
  149. msgstr "<li>OpenGL Renderer: {renderer}</li>"
  150. msgctxt "@label OpenGL vendor"
  151. msgid "<li>OpenGL Vendor: {vendor}</li>"
  152. msgstr "<li>OpenGL 공급업체: {vendor}</li>"
  153. msgctxt "@label OpenGL version"
  154. msgid "<li>OpenGL Version: {version}</li>"
  155. msgstr "<li>OpenGL 버전: {version}</li>"
  156. msgctxt "@label crash message"
  157. msgid "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n "
  158. msgstr "<p><b>치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오</p></b>"
  159. " <p>&quot;보고서 전송&quot; 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다</p>"
  160. " "
  161. msgctxt "@label crash message"
  162. msgid "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n <p>Backups can be found in the configuration folder.</p>\n <p>Please send us this Crash Report to fix the problem.</p>\n "
  163. msgstr "<p> <b> 죄송합니다, UltiMaker Cura가 정상적이지 않습니다. &lt;/ p&gt; &lt;/ b&gt;"
  164. "                     <p> 시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. &lt;/ p&gt;"
  165. "                     <p> 백업은 설정 폴더에서 찾을 수 있습니다. &lt;/ p&gt;"
  166. "                     <p> 문제를 해결하기 위해이 오류 보고서를 보내주십시오. &lt;/ p&gt;"
  167. " "
  168. msgctxt "@info:status"
  169. msgid "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n<p>{model_names}</p>\n<p>Find out how to ensure the best possible print quality and reliability.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  170. msgstr "<p>하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.</p>"
  171. "<p>{model_names}</p>"
  172. "<p>인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.</p>"
  173. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">인쇄 품질 가이드 보기</a></p>"
  174. msgctxt "@label"
  175. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  176. msgstr "USB 인쇄가 진행 중입니다. Cura를 닫으면 인쇄도 중단됩니다. 계속하시겠습니까?"
  177. msgctxt "info:status"
  178. msgid "A cloud connection is not available for a printer"
  179. msgid_plural "A cloud connection is not available for some printers"
  180. msgstr[0] "A cloud connection is not available for some printers"
  181. msgctxt "@text"
  182. msgid "A highly dense and strong part but at a slower print time. Great for functional parts."
  183. msgstr "밀도가 높고 견고한 부품이지만 출력 시간이 더 느립니다. 기능적인 부품에 적합합니다."
  184. msgctxt "@message"
  185. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  186. msgstr "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다."
  187. msgctxt "@item:inlistbox"
  188. msgid "AMF File"
  189. msgstr "AMF 파일"
  190. msgctxt "@label"
  191. msgid "Abort"
  192. msgstr "중단"
  193. msgctxt "@label"
  194. msgid "Abort Print"
  195. msgstr "프린팅 중단"
  196. msgctxt "@window:title"
  197. msgid "Abort print"
  198. msgstr "프린팅 중단"
  199. msgctxt "@label:status"
  200. msgid "Aborted"
  201. msgstr "중단됨"
  202. msgctxt "@label"
  203. msgid "Aborting..."
  204. msgstr "중지 중..."
  205. msgctxt "@label:status"
  206. msgid "Aborting..."
  207. msgstr "중지 중..."
  208. msgctxt "@title:window The argument is the application name."
  209. msgid "About %1"
  210. msgstr "%1 정보"
  211. msgctxt "@action:inmenu menubar:help"
  212. msgid "About..."
  213. msgstr "소개..."
  214. msgctxt "@button"
  215. msgid "Accept"
  216. msgstr "동의"
  217. msgctxt "@label"
  218. msgid "Account synced"
  219. msgstr "계정 동기화됨"
  220. msgctxt "@label:status"
  221. msgid "Action required"
  222. msgstr "조치가 필요함"
  223. msgctxt "@action:button"
  224. msgid "Activate"
  225. msgstr "활성화"
  226. msgctxt "@label"
  227. msgid "Active print"
  228. msgstr "활성화된 프린트"
  229. msgctxt "@action:button"
  230. msgid "Add"
  231. msgstr "추가"
  232. msgctxt "@button"
  233. msgid "Add"
  234. msgstr "추가"
  235. msgctxt "@action:button"
  236. msgid "Add New"
  237. msgstr "새로 추가"
  238. msgctxt "@title:window"
  239. msgid "Add Printer"
  240. msgstr "프린터 추가"
  241. msgctxt "@button"
  242. msgid "Add UltiMaker printer via Digital Factory"
  243. msgstr "Digital Factory를 통해 UltiMaker 프린터 추가"
  244. msgctxt "@label"
  245. msgid "Add a Cloud printer"
  246. msgstr "클라우드 프린터 추가"
  247. msgctxt "@label"
  248. msgid "Add a networked printer"
  249. msgstr "네트워크 프린터 추가"
  250. msgctxt "@label"
  251. msgid "Add a non-networked printer"
  252. msgstr "비 네트워크 프린터 추가"
  253. msgctxt "@action"
  254. msgid "Add a script"
  255. msgstr "스크립트 추가"
  256. msgctxt "@option:check"
  257. msgid "Add icon to system tray *"
  258. msgstr "시스템 트레이에 아이콘 추가 *"
  259. msgctxt "@button"
  260. msgid "Add local printer"
  261. msgstr "로컬 프린터 추가"
  262. msgctxt "@option:check"
  263. msgid "Add machine prefix to job name"
  264. msgstr "작업 이름에 기기 접두어 추가"
  265. msgctxt "@text"
  266. msgid "Add material settings and plugins from the Marketplace"
  267. msgstr "재료 설정 및 Marketplace 플러그인 추가"
  268. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  269. msgid "Add more materials from Marketplace"
  270. msgstr "마켓플레이스에서 더 많은 재료 추가"
  271. msgctxt "@button"
  272. msgid "Add printer"
  273. msgstr "프린터 추가"
  274. msgctxt "@label"
  275. msgid "Add printer"
  276. msgstr "프린터 추가"
  277. msgctxt "@label"
  278. msgid "Add printer by IP"
  279. msgstr "IP로 프린터 추가"
  280. msgctxt "@label"
  281. msgid "Add printer by IP address"
  282. msgstr "IP 주소로 프린터 추가"
  283. msgctxt "@button"
  284. msgid "Add printer manually"
  285. msgstr "수동으로 프린터 추가"
  286. msgctxt "info:status Filled in with printer name and printer model."
  287. msgid "Adding printer {name} ({model}) from your account"
  288. msgstr "사용자 계정에서 프린터 {name}({model}) 추가"
  289. msgctxt "@label"
  290. msgid "Address"
  291. msgstr "주소"
  292. msgctxt "@label"
  293. msgid "Adhesion"
  294. msgstr "부착"
  295. msgctxt "@label"
  296. msgid "Adhesion Information"
  297. msgstr "접착 정보"
  298. msgctxt "@label"
  299. msgid "Adjusts the density of infill of the print."
  300. msgstr "출력물의 내부채움을 조절합니다."
  301. msgctxt "support_type description"
  302. 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."
  303. msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다."
  304. msgctxt "@label Header for list of settings."
  305. msgid "Affected By"
  306. msgstr "영향을 받다"
  307. msgctxt "@label Header for list of settings."
  308. msgid "Affects"
  309. msgstr "영향"
  310. msgctxt "@button"
  311. msgid "Agree"
  312. msgstr "동의"
  313. msgctxt "@item:inlistbox"
  314. msgid "All Files (*)"
  315. msgstr "모든 파일 (*)"
  316. msgctxt "@item:inlistbox"
  317. msgid "All Supported Types ({0})"
  318. msgstr "지원되는 모든 유형 ({0})"
  319. msgctxt "@text:window"
  320. msgid "Allow sending anonymous data"
  321. msgstr "익명 데이터 전송 허용"
  322. msgctxt "@option:discardOrKeep"
  323. msgid "Always ask me this"
  324. msgstr "항상 묻기"
  325. msgctxt "@option:openProject"
  326. msgid "Always ask me this"
  327. msgstr "항상 묻기"
  328. msgctxt "@option:discardOrKeep"
  329. msgid "Always discard changed settings"
  330. msgstr "항상 변경된 설정 삭제"
  331. msgctxt "@option:openProject"
  332. msgid "Always import models"
  333. msgstr "항상 모델 가져 오기"
  334. msgctxt "@option:openProject"
  335. msgid "Always open as a project"
  336. msgstr "항상 프로젝트로 열기"
  337. msgctxt "@option:discardOrKeep"
  338. msgid "Always transfer changed settings to new profile"
  339. msgstr "항상 변경된 설정을 새 프로파일로 전송"
  340. msgctxt "@info:tooltip"
  341. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  342. msgstr "단위가 밀리미터가 아닌 미터 단위 인 경우 모델이 매우 작게 나타날 수 있습니다. 이 모델을 확대할까요?"
  343. msgctxt "@label"
  344. msgid "Annealing"
  345. msgstr "어닐링"
  346. msgctxt "@label"
  347. msgid "Anonymous"
  348. msgstr "익명"
  349. msgctxt "@option:radio"
  350. msgid "Anonymous crash reports"
  351. msgstr "익명 충돌 보고"
  352. msgctxt "@label Description for application component"
  353. msgid "Application framework"
  354. msgstr "애플리케이션 프레임 워크"
  355. msgctxt "@title:column"
  356. msgid "Applies on"
  357. msgstr "적용 대상:"
  358. msgctxt "@label"
  359. msgid "Apply Extruder offsets to GCode"
  360. msgstr "익스트루더 오프셋을 GCode에 적용"
  361. msgctxt "@info:title"
  362. msgid "Are you ready for cloud printing?"
  363. msgstr "클라우드 프린팅이 준비되었습니까?"
  364. msgctxt "@label %1 is the name of a print job."
  365. msgid "Are you sure you want to abort %1?"
  366. msgstr "%1(을)를 정말로 중지하시겠습니까?"
  367. msgctxt "@label"
  368. msgid "Are you sure you want to abort the print?"
  369. msgstr "프린팅를 중단 하시겠습니까?"
  370. msgctxt "@label %1 is the name of a print job."
  371. msgid "Are you sure you want to delete %1?"
  372. msgstr "%1(을)를 삭제하시겠습니까?"
  373. msgctxt "@dialog:info"
  374. msgid "Are you sure you want to delete this backup? This cannot be undone."
  375. msgstr "이 백업을 삭제하시겠습니까? 이 작업을 완료할 수 없습니다."
  376. msgctxt "@label %1 is the application name"
  377. msgid "Are you sure you want to exit %1?"
  378. msgstr "%1을(를) 정말로 종료하시겠습니까?"
  379. msgctxt "@label %1 is the name of a print job."
  380. msgid "Are you sure you want to move %1 to the top of the queue?"
  381. msgstr "%1(을)를 대기열의 맨 위로 이동하시겠습니까?"
  382. msgctxt "@message {printer_name} is replaced with the name of the printer"
  383. msgid "Are you sure you want to remove {printer_name} temporarily?"
  384. msgstr "일시적으로 {printer_name}을(를) 제거하시겠습니까?"
  385. msgctxt "@info:question"
  386. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  387. msgstr "새 프로젝트를 시작 하시겠습니까? 빌드 플레이트 및 저장하지 않은 설정이 지워집니다."
  388. msgctxt "@label (%1 is object name)"
  389. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  390. msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!"
  391. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  392. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  393. msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다."
  394. msgctxt "@action:inmenu menubar:edit"
  395. msgid "Arrange All Models"
  396. msgstr "모든 모델 정렬"
  397. msgctxt "@action:inmenu menubar:edit"
  398. msgid "Arrange All Models in a grid"
  399. msgstr "모든 모델을 그리드에 정렬하기"
  400. msgctxt "@action:inmenu menubar:edit"
  401. msgid "Arrange Selection"
  402. msgstr "배열 선택"
  403. msgctxt "@label:button"
  404. msgid "Ask a question"
  405. msgstr "질문하기"
  406. msgctxt "@checkbox:description"
  407. msgid "Auto Backup"
  408. msgstr "자동 백업"
  409. msgctxt "@checkbox:description"
  410. msgid "Automatically create a backup each day that Cura is started."
  411. msgstr "Cura가 시작되는 날마다 자동으로 백업을 생성하십시오."
  412. msgctxt "@option:check"
  413. msgid "Automatically drop models to the build plate"
  414. msgstr "모델을 빌드 플레이트에 자동으로 놓기"
  415. msgctxt "@action:button"
  416. msgid "Automatically upgrade Firmware"
  417. msgstr "펌웨어 자동 업그레이드"
  418. msgctxt "@label"
  419. msgid "Available networked printers"
  420. msgstr "사용 가능한 네트워크 프린터"
  421. msgctxt "@item:inlistbox"
  422. msgid "BMP Image"
  423. msgstr "BMP 이미지"
  424. msgctxt "@button"
  425. msgid "Back"
  426. msgstr "뒤로"
  427. msgctxt "@button:tooltip"
  428. msgid "Back"
  429. msgstr "뒤로"
  430. msgctxt "@info:title"
  431. msgid "Backup"
  432. msgstr "백업"
  433. msgctxt "@button"
  434. msgid "Backup Now"
  435. msgstr "지금 백업"
  436. msgctxt "@action:button"
  437. msgid "Backup and Reset Configuration"
  438. msgstr "백업 및 리셋 설정"
  439. msgctxt "@text"
  440. msgid "Backup and sync your material settings and plugins"
  441. msgstr "재료 설정과 플러그인 백업 및 동기화"
  442. msgctxt "@description"
  443. msgid "Backup and synchronize your Cura settings."
  444. msgstr "Cura 설정을 백업, 동기화하십시오."
  445. msgctxt "@info:title"
  446. msgid "Backups"
  447. msgstr "백업"
  448. msgctxt "@label"
  449. msgid "Balanced"
  450. msgstr "균형"
  451. msgctxt "@action:label"
  452. msgid "Base (mm)"
  453. msgstr "바닥 (mm)"
  454. msgctxt "@action:inmenu menubar:view"
  455. msgid "Bottom View"
  456. msgstr "하단 뷰"
  457. msgctxt "@label"
  458. msgid "Brand"
  459. msgstr "상표"
  460. msgctxt "@title"
  461. msgid "Build Plate Leveling"
  462. msgstr "빌드 플레이트 레벨링"
  463. msgctxt "@info:title"
  464. msgid "Build Volume"
  465. msgstr "출력물 크기"
  466. msgctxt "@label"
  467. msgid "Build plate"
  468. msgstr "빌드 플레이트"
  469. msgctxt "@label"
  470. msgid "Build plate shape"
  471. msgstr "빌드 플레이트 모양"
  472. msgctxt "@label"
  473. msgid "Bundled Materials"
  474. msgstr "번들 재료"
  475. msgctxt "@label"
  476. msgid "Bundled Plugins"
  477. msgstr "번들 플러그인"
  478. msgctxt "@button"
  479. msgid "Buy spool"
  480. msgstr "스풀 구입"
  481. msgctxt "@label Is followed by the name of an author"
  482. msgid "By"
  483. msgstr "사용"
  484. msgctxt "@label Description for application dependency"
  485. msgid "C/C++ Binding library"
  486. msgstr "C/C ++ 바인딩 라이브러리"
  487. msgctxt "@item:inlistbox"
  488. msgid "COLLADA Digital Asset Exchange"
  489. msgstr "COLLADA Digital Asset Exchange"
  490. msgctxt "@info:status"
  491. msgid "Calculated"
  492. msgstr "계산된"
  493. msgctxt "@window:text"
  494. msgid "Camera navigation:"
  495. msgstr "카메라 탐색:"
  496. msgctxt "@window:text"
  497. msgid "Camera rendering:"
  498. msgstr "카메라 렌더링:"
  499. msgctxt "@action:inmenu menubar:view"
  500. msgid "Camera view"
  501. msgstr "카메라 뷰"
  502. msgctxt "@info:title"
  503. msgid "Can't Find Location"
  504. msgstr "위치를 찾을 수 없음"
  505. msgctxt "@info:title"
  506. msgid "Can't Open Project File"
  507. msgstr "프로젝트 파일 열 수 없음"
  508. msgctxt "@label"
  509. msgid "Can't connect to your UltiMaker printer?"
  510. msgstr "UltiMaker 프린터로 연결할 수 없습니까?"
  511. msgctxt "@info:status Don't translate the XML tags <filename>!"
  512. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  513. msgstr "프린터가 추가되기 전 <filename>{0}</filename>에서 프로파일을 가져올 수 없습니다."
  514. msgctxt "@info:status"
  515. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  516. msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다."
  517. msgctxt "@info:error"
  518. msgid "Can't write to UFP file:"
  519. msgstr "UFP 파일에 쓸 수 없음:"
  520. msgctxt "@action:button"
  521. msgid "Cancel"
  522. msgstr "취소"
  523. msgctxt "@button"
  524. msgid "Cancel"
  525. msgstr "취소"
  526. msgctxt "@button Cancel pre-heating"
  527. msgid "Cancel"
  528. msgstr "취소"
  529. msgctxt "@option:check"
  530. msgid "Caution message in g-code reader"
  531. msgstr "g-code 리더의 주의 메시지"
  532. msgctxt "@action:inmenu"
  533. msgid "Ce&nter Model on Platform"
  534. msgstr "플랫폼중심에 모델 위치하기"
  535. msgctxt "@action:inmenu menubar:edit"
  536. msgid "Center Selected"
  537. msgstr "선택 항목 가운데 정렬"
  538. msgctxt "@action:button"
  539. msgid "Center camera when item is selected"
  540. msgstr "항목을 선택하면 카메라를 중앙에 위치"
  541. msgctxt "@info:tooltip"
  542. msgid "Change active post-processing scripts."
  543. msgstr "활성 사후 처리 스크립트를 변경하십시오."
  544. msgctxt "@label"
  545. msgid "Change material %1 from %2 to %3."
  546. msgstr "재료 %1을(를) %2에서 %3(으)로 변경합니다."
  547. msgctxt "@label"
  548. msgid "Change print core %1 from %2 to %3."
  549. msgstr "PrintCore %1을(를) %2에서 %3(으)로 변경합니다."
  550. msgctxt "@info:title"
  551. msgid "Changes detected from your UltiMaker account"
  552. msgstr "UltiMaker 계정에서 변경 사항이 감지되었습니다"
  553. msgctxt "@title"
  554. msgid "Changes from your account"
  555. msgstr "계정의 변경 사항"
  556. msgctxt "@label:textbox"
  557. msgid "Check all"
  558. msgstr "모두 확인"
  559. msgctxt "@button"
  560. msgid "Check for account updates"
  561. msgstr "계정 업데이트 확인"
  562. msgctxt "@option:check"
  563. msgid "Check for updates on start"
  564. msgstr "시작시 업데이트 확인"
  565. msgctxt "@label"
  566. msgid "Checking..."
  567. msgstr "확인 중..."
  568. msgctxt "@label"
  569. msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  570. msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다."
  571. msgctxt "@action:inmenu menubar:edit"
  572. msgid "Clear Build Plate"
  573. msgstr "빌드 플레이트 지우기"
  574. msgctxt "@option:check"
  575. msgid "Clear buildplate before loading model into the single instance"
  576. msgstr "모델을 단일 인스턴스로 로드하기 전에 빌드 플레이트 지우기"
  577. msgctxt "@text"
  578. msgid "Click the export material archive button."
  579. msgstr "재료 아카이브 내보내기 버튼을 클릭합니다."
  580. msgctxt "@action:button"
  581. msgid "Close"
  582. msgstr "닫기"
  583. msgctxt "@title:window %1 is the application name"
  584. msgid "Closing %1"
  585. msgstr "%1 닫기"
  586. msgctxt "@action:inmenu"
  587. msgid "Collapse All Categories"
  588. msgstr "모든 카테고리 붕괴"
  589. msgctxt "@label"
  590. msgid "Color"
  591. msgstr "색깔"
  592. msgctxt "@action:label"
  593. msgid "Color Model"
  594. msgstr "색상 모델"
  595. msgctxt "@label"
  596. msgid "Color scheme"
  597. msgstr "색 구성표"
  598. msgctxt "@info"
  599. msgid "Compare and save."
  600. msgstr "비교하고 저장합니다."
  601. msgctxt "@label"
  602. msgid "Compatibility Mode"
  603. msgstr "호환 모드"
  604. msgctxt "@label Description for application dependency"
  605. msgid "Compatibility between Python 2 and 3"
  606. msgstr "Python 2 및 3 간의 호환성"
  607. msgctxt "@title:label"
  608. msgid "Compatible Printers"
  609. msgstr "호환 가능한 프린터"
  610. msgctxt "@label"
  611. msgid "Compatible material diameter"
  612. msgstr "호환되는 재료의 직경"
  613. msgctxt "@header"
  614. msgid "Compatible printers"
  615. msgstr "호환 가능한 프린터"
  616. msgctxt "@header"
  617. msgid "Compatible support materials"
  618. msgstr "호환 서포트 재료"
  619. msgctxt "@header"
  620. msgid "Compatible with Material Station"
  621. msgstr "Material Station과 호환 가능"
  622. msgctxt "@item:inlistbox"
  623. msgid "Compressed COLLADA Digital Asset Exchange"
  624. msgstr "Compressed COLLADA Digital Asset Exchange"
  625. msgctxt "@item:inlistbox"
  626. msgid "Compressed G-code File"
  627. msgstr "압축된 G-code 파일"
  628. msgctxt "@title:window"
  629. msgid "Configuration Changes"
  630. msgstr "구성 변경"
  631. msgctxt "@error"
  632. msgid "Configuration not supported"
  633. msgstr "지원되지 않는 설정"
  634. msgctxt "@header"
  635. msgid "Configurations"
  636. msgstr "구성"
  637. msgctxt "@label"
  638. msgid "Configurations"
  639. msgstr "구성"
  640. msgctxt "@action:inmenu"
  641. msgid "Configure Cura..."
  642. msgstr "Cura 구성 ..."
  643. msgctxt "@info:tooltip"
  644. msgid "Configure Per Model Settings"
  645. msgstr "모델 별 설정 구성"
  646. msgctxt "@action"
  647. msgid "Configure group"
  648. msgstr "그룹 설정"
  649. msgctxt "@action:menu"
  650. msgid "Configure setting visibility..."
  651. msgstr "설정 보기..."
  652. msgctxt "@title:window"
  653. msgid "Confirm Diameter Change"
  654. msgstr "직경 변경 확인"
  655. msgctxt "@title:window"
  656. msgid "Confirm Remove"
  657. msgstr "제거 확인"
  658. msgctxt "@action:button"
  659. msgid "Connect"
  660. msgstr "연결"
  661. msgctxt "@button"
  662. msgid "Connect"
  663. msgstr "연결"
  664. msgctxt "@title:window"
  665. msgid "Connect to Networked Printer"
  666. msgstr "네트워크 프린터에 연결"
  667. msgctxt "@action"
  668. msgid "Connect via Network"
  669. msgstr "네트워크를 통해 연결"
  670. msgctxt "@info:status"
  671. msgid "Connected over the network"
  672. msgstr "네트워크를 통해 연결됨"
  673. msgctxt "@label"
  674. msgid "Connected printers"
  675. msgstr "연결된 프린터"
  676. msgctxt "@info:status"
  677. msgid "Connected via USB"
  678. msgstr "USB를 통해 연결"
  679. msgctxt "@info:status"
  680. msgid "Connected via cloud"
  681. msgstr "Cloud를 통해 연결됨"
  682. msgctxt "@tooltip:button"
  683. msgid "Consult the UltiMaker Community."
  684. msgstr "UltiMaker 커뮤니티에 문의하십시오."
  685. msgctxt "@title:window"
  686. msgid "Convert Image"
  687. msgstr "이미지 변환"
  688. msgctxt "@label"
  689. msgid "Cooling Fan Number"
  690. msgstr "냉각 팬 번호"
  691. msgctxt "@action:menu"
  692. msgid "Copy all changed values to all extruders"
  693. msgstr "변경된 사항을 모든 익스트루더에 복사"
  694. msgctxt "@action:inmenu menubar:edit"
  695. msgid "Copy to clipboard"
  696. msgstr "클립보드에 복사"
  697. msgctxt "@action:menu"
  698. msgid "Copy value to all extruders"
  699. msgstr "모든 익스트루더에 값 복사"
  700. msgctxt "@label"
  701. msgid "Cost per Meter"
  702. msgstr "미터 당 비용"
  703. msgctxt "@info"
  704. msgid "Could not access update information."
  705. msgstr "업데이트 정보에 액세스 할 수 없습니다."
  706. msgctxt "@label"
  707. msgid "Could not connect to device."
  708. msgstr "장치에 연결할 수 없습니다."
  709. msgctxt "@info:backup_failed"
  710. msgid "Could not create archive from user data directory: {}"
  711. msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}"
  712. msgctxt "@info:status Don't translate the tag {device}!"
  713. msgid "Could not find a file name when trying to write to {device}."
  714. msgstr "{device} 장치에 쓸 때 파일 이름을 찾을 수 없습니다."
  715. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  716. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  717. msgstr "재료를 가져올 수 없습니다"
  718. msgctxt "@info:error"
  719. msgid "Could not interpret the server's response."
  720. msgstr "서버의 응답을 해석할 수 없습니다."
  721. msgctxt "@error:load"
  722. msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin."
  723. msgstr "GCodeWriter 플러그인을 불러올 수 없습니다. 플러그인을 다시 활성화해보세요."
  724. msgctxt "@info:error"
  725. msgid "Could not reach Marketplace."
  726. msgstr "마켓플레이스에 도달할 수 없습니다."
  727. msgctxt "@message"
  728. msgid "Could not read response."
  729. msgstr "응답을 읽을 수 없습니다."
  730. msgctxt "@message:text"
  731. msgid "Could not save material archive to {}:"
  732. msgstr "재료 아카이브를 {}에 저장할 수 없음:"
  733. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  734. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  735. msgstr "<filename>{0}</filename>: <message>{1}</message> 에 저장할 수 없습니다"
  736. msgctxt "@info:status"
  737. msgid "Could not save to removable drive {0}: {1}"
  738. msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :"
  739. msgctxt "@info:text"
  740. msgid "Could not upload the data to the printer."
  741. msgstr "데이터를 프린터로 업로드할 수 없음."
  742. msgctxt "@info:plugin_failed"
  743. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process."
  744. msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}"
  745. "프로세스를 실행할 권한이 없습니다."
  746. msgctxt "@info:plugin_failed"
  747. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)"
  748. msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}"
  749. "운영 체제가 이를 차단하고 있습니다(바이러스 백신?)"
  750. msgctxt "@info:plugin_failed"
  751. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable"
  752. msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}"
  753. "리소스를 일시적으로 사용할 수 없습니다"
  754. msgctxt "@title:window"
  755. msgid "Crash Report"
  756. msgstr "충돌 보고서"
  757. msgctxt "@title:window"
  758. msgid "Create Profile"
  759. msgstr "프로파일 생성하기"
  760. msgctxt "@text"
  761. msgid "Create a free UltiMaker Account"
  762. msgstr "UltiMaker 계정 무료 생성"
  763. msgctxt "@button"
  764. msgid "Create a free UltiMaker account"
  765. msgstr "UltiMaker 계정 무료 생성"
  766. msgctxt "@info:tooltip"
  767. msgid "Create a volume in which supports are not printed."
  768. msgstr "서포트가 프린팅되지 않는 볼륨을 만듭니다."
  769. msgctxt "@action:ComboBox Save settings in a new profile"
  770. msgid "Create new"
  771. msgstr "새로 만들기"
  772. msgctxt "@action:button"
  773. msgid "Create new"
  774. msgstr "새로 만들기"
  775. msgctxt "@button"
  776. msgid "Create new"
  777. msgstr "새로 만들기"
  778. msgctxt "@action:tooltip"
  779. msgid "Create new profile from current settings/overrides"
  780. msgstr "현재 설정/재정의로부터 새 프로파일 만들기"
  781. msgctxt "@tooltip:button"
  782. msgid "Create print projects in Digital Library."
  783. msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오."
  784. msgctxt "@info:backup_status"
  785. msgid "Creating your backup..."
  786. msgstr "백업 생성 중..."
  787. msgctxt "@item:inlistbox"
  788. msgid "Cura 15.04 profiles"
  789. msgstr "Cura 15.04 프로파일"
  790. msgctxt "@title:window"
  791. msgid "Cura Backups"
  792. msgstr "Cura 백업"
  793. msgctxt "@item:inlistbox"
  794. msgid "Cura Profile"
  795. msgstr "Cura 프로파일"
  796. msgctxt "@item:inlistbox"
  797. msgid "Cura Project 3MF file"
  798. msgstr "Cura 프로젝트 3MF 파일"
  799. msgctxt "@backuplist:label"
  800. msgid "Cura Version"
  801. msgstr "Cura 버전"
  802. msgctxt "@title:window"
  803. msgid "Cura can't start"
  804. msgstr "큐라를 시작할 수 없습니다"
  805. msgctxt "@info:status"
  806. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  807. msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다."
  808. msgctxt "@info:credit"
  809. msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:"
  810. msgstr "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다."
  811. "Cura는 다음의 오픈 소스 프로젝트를 사용합니다:"
  812. msgctxt "@label"
  813. msgid "Cura language"
  814. msgstr "Cura 언어"
  815. msgctxt "@label Cura version number"
  816. msgid "Cura version"
  817. msgstr "Cura 버전"
  818. msgctxt "@label"
  819. msgid "Currency:"
  820. msgstr "통화:"
  821. msgctxt "@title:column"
  822. msgid "Current"
  823. msgstr "현재 설정"
  824. msgctxt "@title:column"
  825. msgid "Current changes"
  826. msgstr "현재 변경 사항"
  827. msgctxt "@header"
  828. msgid "Custom"
  829. msgstr "사용자 정의"
  830. msgctxt "@label"
  831. msgid "Custom"
  832. msgstr "사용자 정의"
  833. msgctxt "@title:tab"
  834. msgid "Custom"
  835. msgstr "사용자 정의"
  836. msgctxt "@label"
  837. msgid "Custom Material"
  838. msgstr "사용자 정의 소재"
  839. msgctxt "@label"
  840. msgid "Custom profile"
  841. msgstr "사용자 정의 프로파일"
  842. msgctxt "@info"
  843. msgid "Custom profile name:"
  844. msgstr "사용자 지정 프로필 이름:"
  845. msgctxt "@label"
  846. msgid "Custom profiles"
  847. msgstr "사용자 정의 프로파일"
  848. msgctxt "@label:header"
  849. msgid "Custom profiles"
  850. msgstr "사용자 정의 프로파일"
  851. msgctxt "@action:inmenu menubar:edit"
  852. msgid "Cut"
  853. msgstr "자르기"
  854. msgctxt "@item:inlistbox"
  855. msgid "Cutting mesh"
  856. msgstr "커팅 메쉬"
  857. msgctxt "@item:inlistbox"
  858. msgid "Darker is higher"
  859. msgstr "어두울수록 높음"
  860. msgctxt "@info:title"
  861. msgid "Data Sent"
  862. msgstr "데이터 전송 됨"
  863. msgctxt "@label Description for application dependency"
  864. msgid "Data interchange format"
  865. msgstr "데이터 교환 형식"
  866. msgctxt "@button"
  867. msgid "Decline"
  868. msgstr "거절"
  869. msgctxt "@button"
  870. msgid "Decline and close"
  871. msgstr "거절 및 닫기"
  872. msgctxt "@button"
  873. msgid "Decline and remove from account"
  874. msgstr "계정에서 거절 및 제거"
  875. msgctxt "@info:No intent profile selected"
  876. msgid "Default"
  877. msgstr "기본값"
  878. msgctxt "@window:text"
  879. msgid "Default behavior for changed setting values when switching to a different profile: "
  880. msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 "
  881. msgctxt "@info:tooltip"
  882. msgid "Default behavior when opening a project file"
  883. msgstr "프로젝트 파일을 열 때 기본 동작"
  884. msgctxt "@window:text"
  885. msgid "Default behavior when opening a project file: "
  886. msgstr "프로젝트 파일을 열 때 기본 동작 "
  887. msgctxt "@action:button"
  888. msgid "Defaults"
  889. msgstr "기본값"
  890. msgctxt "@label"
  891. msgid "Defines the thickness of your part side walls, roof and floor."
  892. msgstr "부품 측벽, 지붕 및 바닥의 두께를 정의합니다."
  893. msgctxt "@label"
  894. msgid "Delete"
  895. msgstr "삭제"
  896. msgctxt "@dialog:title"
  897. msgid "Delete Backup"
  898. msgstr "백업 삭제"
  899. msgctxt "@action:inmenu"
  900. msgid "Delete Model"
  901. msgstr "모델 삭제"
  902. msgctxt "@action:inmenu menubar:edit"
  903. msgid "Delete Selected"
  904. msgstr "선택 항목 삭제"
  905. msgctxt "@window:title"
  906. msgid "Delete print job"
  907. msgstr "인쇄 작업 삭제"
  908. msgctxt "@label"
  909. msgid "Density"
  910. msgstr "밀도"
  911. msgctxt "@label Description for development tool"
  912. msgid "Dependency and package manager"
  913. msgstr "의존성 및 패키지 관리자"
  914. msgctxt "@action:label"
  915. msgid "Depth (mm)"
  916. msgstr "깊이 (mm)"
  917. msgctxt "@action:label"
  918. msgid "Derivative from"
  919. msgstr "다음에서 파생"
  920. msgctxt "@header"
  921. msgid "Description"
  922. msgstr "설명"
  923. msgctxt "@label"
  924. msgid "Description"
  925. msgstr "설명"
  926. msgctxt "@action:button"
  927. msgid "Details"
  928. msgstr "세부 사항"
  929. msgctxt "@label"
  930. msgid "Diameter"
  931. msgstr "직경"
  932. msgctxt "@button"
  933. msgid "Disable"
  934. msgstr "해제됨"
  935. msgctxt "@action:inmenu"
  936. msgid "Disable Extruder"
  937. msgstr "익스트루더 사용하지 않음"
  938. msgctxt "@option:discardOrKeep"
  939. msgid "Discard and never ask again"
  940. msgstr "최소하고 다시 묻지않기"
  941. msgctxt "@action:button"
  942. msgid "Discard changes"
  943. msgstr "변경 사항 삭제"
  944. msgctxt "@action:button"
  945. msgid "Discard current changes"
  946. msgstr "현재 변경 사항 삭제"
  947. msgctxt "@title:window"
  948. msgid "Discard or Keep changes"
  949. msgstr "변경 사항 삭제 또는 유지"
  950. msgctxt "@button"
  951. msgid "Dismiss"
  952. msgstr "취소"
  953. msgctxt "@label"
  954. msgid "Display Name"
  955. msgstr "표시 이름"
  956. msgctxt "@option:check"
  957. msgid "Display model errors"
  958. msgstr "모델 오류 표시"
  959. msgctxt "@option:check"
  960. msgid "Display overhang"
  961. msgstr "오버행 표시"
  962. msgctxt "@info:option_text"
  963. msgid "Do not show this message again"
  964. msgstr "다시 메시지 표시 안 함"
  965. msgctxt "@info:generic"
  966. msgid "Do you want to sync material and software packages with your account?"
  967. msgstr "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?"
  968. msgctxt "@action:label"
  969. msgid "Don't show project summary on save again"
  970. msgstr "프로젝트 요약을 다시 저장하지 마십시오"
  971. msgctxt "@action:menu"
  972. msgid "Don't show this setting"
  973. msgstr "이 설정을 표시하지 않음"
  974. msgctxt "@label"
  975. msgid "Don't support overlaps"
  976. msgstr "오버랩 지원 안함"
  977. msgctxt "@button"
  978. msgid "Done"
  979. msgstr "완료"
  980. msgctxt "@button"
  981. msgid "Downgrade"
  982. msgstr "다운그레이드"
  983. msgctxt "@button"
  984. msgid "Downgrading..."
  985. msgstr "다운그레이드 중..."
  986. msgctxt "@label"
  987. msgid "Draft"
  988. msgstr "초안"
  989. msgctxt "@action:inmenu menubar:edit"
  990. msgid "Drop All Models to buildplate"
  991. msgstr "모든 모델을 빌드 플레이트에 놓기"
  992. msgctxt "@action:button"
  993. msgid "Duplicate"
  994. msgstr "복제"
  995. msgctxt "@title:window"
  996. msgid "Duplicate Profile"
  997. msgstr "프로파일 복제하기"
  998. msgctxt "@backup_limit_info"
  999. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1000. msgstr "미리 보기 단계 중에는 보이는 백업 5개로 제한됩니다. 기존 백업을 보려면 백업을 제거하십시오."
  1001. msgctxt "@title:menu menubar:toplevel"
  1002. msgid "E&xtensions"
  1003. msgstr "확장 프로그램(&X)"
  1004. msgctxt "@action:button"
  1005. msgid "Edit"
  1006. msgstr "편집"
  1007. msgctxt "@action:button"
  1008. msgid "Eject"
  1009. msgstr "꺼내기"
  1010. msgctxt "@action"
  1011. msgid "Eject removable device {0}"
  1012. msgstr "이동식 장치 {0} 꺼내기"
  1013. msgctxt "@info:status"
  1014. msgid "Ejected {0}. You can now safely remove the drive."
  1015. msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다."
  1016. msgctxt "@label"
  1017. msgid "Empty"
  1018. msgstr "비어 있음"
  1019. msgctxt "@button"
  1020. msgid "Enable"
  1021. msgstr "실행됨"
  1022. msgctxt "@action:inmenu"
  1023. msgid "Enable Extruder"
  1024. msgstr "익스트루더 사용"
  1025. msgctxt "@label"
  1026. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default."
  1027. msgstr "브림 또는 래프트 인쇄를 활성화합니다. 이렇게 하면 나중에 잘라내기 쉬운 객체 주변이나 아래에 평평한 영역이 추가됩니다. 비활성화하면 기본적으로 객체 주위에 스커트가 생깁니다."
  1028. msgctxt "@label"
  1029. msgid "Enabled"
  1030. msgstr "실행됨"
  1031. msgctxt "@title:label"
  1032. msgid "End G-code"
  1033. msgstr "End GCode"
  1034. msgctxt "@label"
  1035. msgid "End-to-end solution for fused filament 3D printing."
  1036. msgstr "3D 프린팅을 위한 엔드 투 엔트 솔루션."
  1037. msgctxt "@info:title"
  1038. msgid "EnginePlugin"
  1039. msgstr "EnginePlugin"
  1040. msgctxt "@label"
  1041. msgid "Engineering"
  1042. msgstr "엔지니어링"
  1043. msgctxt "@option:check"
  1044. msgid "Ensure models are kept apart"
  1045. msgstr "모델이 분리되어 있는지 확인"
  1046. msgctxt "@label"
  1047. msgid "Enter the IP address of your printer on the network."
  1048. msgstr "네트워크에 있는 프린터의 IP 주소를 입력하십시오."
  1049. msgctxt "@text"
  1050. msgid "Enter your printer's IP address."
  1051. msgstr "프린터의 IP 주소를 입력하십시오."
  1052. msgctxt "@info:title"
  1053. msgid "Error"
  1054. msgstr "오류"
  1055. msgctxt "@title:groupbox"
  1056. msgid "Error traceback"
  1057. msgstr "오류 추적"
  1058. msgctxt "@label"
  1059. msgid "Estimated time left"
  1060. msgstr "예상 남은 시간"
  1061. msgctxt "@action:inmenu"
  1062. msgid "Exit Full Screen"
  1063. msgstr "전체 화면 종료"
  1064. msgctxt "@label"
  1065. msgid "Experimental"
  1066. msgstr "실험적 설정"
  1067. msgctxt "@action:button"
  1068. msgid "Export"
  1069. msgstr "내보내기"
  1070. msgctxt "@title:window"
  1071. msgid "Export All Materials"
  1072. msgstr "모든 재료 내보내기"
  1073. msgctxt "@title:window"
  1074. msgid "Export Material"
  1075. msgstr "재료 내보내기"
  1076. msgctxt "@title:window"
  1077. msgid "Export Profile"
  1078. msgstr "프로파일 내보내기"
  1079. msgctxt "@action:inmenu menubar:file"
  1080. msgid "Export Selection..."
  1081. msgstr "내보내기 선택..."
  1082. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  1083. msgid "Export Universal Cura Project"
  1084. msgstr "범용 Cura 프로젝트 내보내기"
  1085. msgctxt "@button"
  1086. msgid "Export material archive"
  1087. msgstr "재료 아카이브 내보내기"
  1088. msgctxt "@info:title"
  1089. msgid "Export succeeded"
  1090. msgstr "내보내기 완료"
  1091. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1092. msgid "Exported profile to <filename>{0}</filename>"
  1093. msgstr "프로파일을 <filename>{0}</filename> 에 내보냅니다"
  1094. msgctxt "@tooltip:button"
  1095. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1096. msgstr "플러그인 및 재료 프로파일을 사용하여 UltiMaker Cura를 확장하십시오."
  1097. msgctxt "@label"
  1098. msgid "Extruder"
  1099. msgstr "익스트루더"
  1100. msgctxt "@action:label"
  1101. msgid "Extruder %1"
  1102. msgstr "%1익스트루더"
  1103. msgctxt "@title:label"
  1104. msgid "Extruder End G-code"
  1105. msgstr "익스트루더 종료 Gcode"
  1106. msgctxt "@label"
  1107. msgid "Extruder End G-code duration"
  1108. msgstr "압출기 종료 G-코드 지속 시간"
  1109. msgctxt "@title:label"
  1110. msgid "Extruder Start G-code"
  1111. msgstr "익스트루더 시작 Gcode"
  1112. msgctxt "@label"
  1113. msgid "Extruder Start G-code duration"
  1114. msgstr "압출기 시작 G-코드 지속 시간"
  1115. msgctxt "@label"
  1116. msgid "Extruder {0}"
  1117. msgstr "압출기 {0}"
  1118. msgctxt "@info:title"
  1119. msgid "Extruder(s) Disabled"
  1120. msgstr "익스트루더 비활성화됨"
  1121. msgctxt "@label:status"
  1122. msgid "Failed"
  1123. msgstr "실패"
  1124. msgctxt "@text:error"
  1125. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1126. msgstr "일부 프린터와 재료를 동기화하기 위한 Digital Factory 연결에 실패했습니다."
  1127. msgctxt "@text:error"
  1128. msgid "Failed to connect to Digital Factory."
  1129. msgstr "Digital Factory 연결에 실패했습니다."
  1130. msgctxt "@text:error"
  1131. msgid "Failed to create archive of materials to sync with printers."
  1132. msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다."
  1133. msgctxt "@info:status"
  1134. msgid "Failed to eject {0}. Another program may be using the drive."
  1135. msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다."
  1136. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1137. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1138. msgstr "재료를 내보내는데 실패했습니다"
  1139. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1140. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1141. msgstr "프로파일을 <filename>{0}</filename>: <message>{1}</message>로 내보내는데 실패했습니다"
  1142. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1143. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1144. msgstr "프로파일을 <filename>{0}</filename>로 내보내지 못했습니다. Writer 플러그인이 오류를 보고했습니다."
  1145. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1146. msgid "Failed to import profile from <filename>{0}</filename>:"
  1147. msgstr "<filename>{0}</filename>에서 프로파일을 가져오지 못했습니다:"
  1148. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1149. msgid "Failed to import profile from <filename>{0}</filename>:"
  1150. msgstr "<filename>{0}</filename>에서 프로파일을 가져오지 못했습니다:"
  1151. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1152. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1153. msgstr "<filename>{0}</filename>에서 프로파일을 가져오지 못했습니다 {1}"
  1154. msgctxt "@button"
  1155. msgid "Failed to load packages:"
  1156. msgstr "패키지를 로드하지 못했습니다:"
  1157. msgctxt "@text:error"
  1158. msgid "Failed to load the archive of materials to sync it with printers."
  1159. msgstr "프린터와 동기화할 재료의 아카이브 로드에 실패했습니다."
  1160. msgctxt "@message:title"
  1161. msgid "Failed to save material archive"
  1162. msgstr "재료 아카이브를 저장하는 데 실패함"
  1163. msgctxt "@info:status"
  1164. msgid "Failed writing to specific cloud printer: {0} not in remote clusters."
  1165. msgstr "특정 클라우드 프린터에 쓰기 실패: {0}이(가) 원격 클러스터에 없음"
  1166. msgctxt "@label:category menu label"
  1167. msgid "Favorites"
  1168. msgstr "즐겨찾기"
  1169. msgctxt "@label"
  1170. msgid "Filament Cost"
  1171. msgstr "필라멘트 비용"
  1172. msgctxt "@label"
  1173. msgid "Filament length"
  1174. msgstr "필라멘트 길이"
  1175. msgctxt "@label"
  1176. msgid "Filament weight"
  1177. msgstr "필라멘트 무게"
  1178. msgctxt "@title:window"
  1179. msgid "File Already Exists"
  1180. msgstr "파일이 이미 있습니다"
  1181. msgctxt "@info:title"
  1182. msgid "File Saved"
  1183. msgstr "파일이 저장됨"
  1184. msgctxt "@info:status"
  1185. msgid "File {0} does not contain any valid profile."
  1186. msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다."
  1187. msgctxt "@label:textbox"
  1188. msgid "Filter..."
  1189. msgstr "필터..."
  1190. msgctxt "@info:title"
  1191. msgid "Finding Location"
  1192. msgstr "위치 찾기"
  1193. msgctxt "@info:status"
  1194. msgid "Finding new location for objects"
  1195. msgstr "객체의 새 위치 찾기"
  1196. msgctxt "@action:button"
  1197. msgid "Finish"
  1198. msgstr "종료"
  1199. msgctxt "@label:status"
  1200. msgid "Finished"
  1201. msgstr "끝마친"
  1202. msgctxt "@label:status"
  1203. msgid "Finishes %1 at %2"
  1204. msgstr "%2에서 %1 완료"
  1205. msgctxt "@title:window"
  1206. msgid "Firmware Update"
  1207. msgstr "펌웨어 업데이트"
  1208. msgctxt "@label"
  1209. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1210. msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다."
  1211. msgctxt "@label"
  1212. msgid "Firmware can not be updated because there is no connection with the printer."
  1213. msgstr "프린터와 연결되지 않아 펌웨어를 업데이트할 수 없습니다."
  1214. msgctxt "@label"
  1215. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1216. msgstr "펌웨어는 3D 프린터에서 직접 실행되는 소프트웨어입니다. 이 펌웨어는 스텝 모터를 제어하고 온도를 조절하며 프린터를 작동시킵니다."
  1217. msgctxt "@label"
  1218. msgid "Firmware update completed."
  1219. msgstr "펌웨어 업데이트가 완료되었습니다."
  1220. msgctxt "@label"
  1221. msgid "Firmware update failed due to an communication error."
  1222. msgstr "통신 오류로 인해 펌웨어 업데이트에 실패했습니다."
  1223. msgctxt "@label"
  1224. msgid "Firmware update failed due to an input/output error."
  1225. msgstr "입/출력 오류로 인해 펌웨어 업데이트에 실패했습니다."
  1226. msgctxt "@label"
  1227. msgid "Firmware update failed due to an unknown error."
  1228. msgstr "알 수 없는 오류로 인해 펌웨어 업데이트에 실패했습니다."
  1229. msgctxt "@label"
  1230. msgid "Firmware update failed due to missing firmware."
  1231. msgstr "펌웨어 누락으로 인해 펌웨어 업데이트에 실패했습니다."
  1232. msgctxt "@label"
  1233. msgid "Firmware version"
  1234. msgstr "펌웨어 버전"
  1235. msgctxt "@label"
  1236. msgid "First available"
  1237. msgstr "첫 번째로 사용 가능"
  1238. msgctxt "@label:listbox"
  1239. msgid "Flow"
  1240. msgstr "유량"
  1241. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1242. msgid "Follow the following steps to load the new material profiles to your printer."
  1243. msgstr "새로운 재료 프로파일을 프린터로 로드하기 위해 다음 단계를 수행합니다."
  1244. msgctxt "@info"
  1245. msgid "Follow the procedure to add a new printer"
  1246. msgstr "절차를 따라 새 프린터를 추가합니다."
  1247. msgctxt "@text"
  1248. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1249. msgstr "몇 가지 간단한 단계를 수행하면 모든 재료 프로파일과 프린터를 동기화할 수 있습니다."
  1250. msgctxt "@label"
  1251. msgid "Font"
  1252. msgstr "폰트"
  1253. msgctxt "@label"
  1254. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  1255. msgstr "모든 자리에; 노즐 아래에 종이 한 장을 넣고 프린팅 빌드 플레이트 높이를 조정하십시오. 빌드플레이드의 높이는 종이의 끝 부분이 노즐의 끝부분으로 살짝 닿을 때의 높이입니다."
  1256. msgctxt "@info:tooltip"
  1257. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1258. msgstr "리쏘페인의 경우 반투명성을 위한 간단한 로그 모델을 사용할 수 있습니다. 높이 지도의 경우, 픽셀 값은 높이에 선형적으로 부합합니다."
  1259. msgctxt "@info:tooltip"
  1260. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1261. msgstr "리쏘페인(투각)의 경우 들어오는 더 많은 빛을 차단하기 위해서는 다크 픽셀이 더 두꺼운 위치에 해당해야 합니다. 높이 지도의 경우 더 밝은 픽셀이 더 높은 지역을 나타냅니다. 따라서 생성된 3D 모델에서 더 밝은 픽셀이 더 두꺼운 위치에 해당해야 합니다."
  1262. msgctxt "@option:check"
  1263. msgid "Force layer view compatibility mode (restart required)"
  1264. msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)"
  1265. msgid "FreeCAD trackpad"
  1266. msgstr "FreeCAD 트랙패드"
  1267. msgctxt "@action:inmenu menubar:view"
  1268. msgid "Front View"
  1269. msgstr "앞에서 보기"
  1270. msgctxt "@info:tooltip"
  1271. msgid "Front View"
  1272. msgstr "앞에서 보기"
  1273. msgctxt "@item:inlistbox"
  1274. msgid "G File"
  1275. msgstr "G 파일"
  1276. msgctxt "@info:title"
  1277. msgid "G-code Details"
  1278. msgstr "G-코드 세부 정보"
  1279. msgctxt "@item:inlistbox"
  1280. msgid "G-code File"
  1281. msgstr "G-code 파일"
  1282. msgctxt "@label"
  1283. msgid "G-code flavor"
  1284. msgstr "Gcode 유형"
  1285. msgctxt "@label Description for application component"
  1286. msgid "G-code generator"
  1287. msgstr "GCode 생성기"
  1288. msgctxt "@error:not supported"
  1289. msgid "GCodeGzWriter does not support text mode."
  1290. msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다."
  1291. msgctxt "@error:not supported"
  1292. msgid "GCodeWriter does not support non-text mode."
  1293. msgstr "GCodeWriter는 텍스트가 아닌 모드는 지원하지 않습니다."
  1294. msgctxt "@item:inlistbox"
  1295. msgid "GIF Image"
  1296. msgstr "GIF 이미지"
  1297. msgctxt "@label Description for application dependency"
  1298. msgid "GUI framework"
  1299. msgstr "GUI 프레임 워크"
  1300. msgctxt "@label Description for application dependency"
  1301. msgid "GUI framework bindings"
  1302. msgstr "GUI 프레임 워크 바인딩"
  1303. msgctxt "@label"
  1304. msgid "Gantry Height"
  1305. msgstr "갠트리 높이"
  1306. msgctxt "@title:tab"
  1307. msgid "General"
  1308. msgstr "일반"
  1309. msgctxt "@label"
  1310. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1311. msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다."
  1312. msgctxt "@label Description for development tool"
  1313. msgid "Generating Windows installers"
  1314. msgstr "Windows 설치 관리자 생성 중"
  1315. msgctxt "@label:category menu label"
  1316. msgid "Generic"
  1317. msgstr "일반"
  1318. msgctxt "@option:check"
  1319. msgid "Get notifications for plugin updates"
  1320. msgstr "플러그인 업데이트 알림 받기"
  1321. msgctxt "@action"
  1322. msgid "Get started"
  1323. msgstr "시작하기"
  1324. msgctxt "@label"
  1325. msgid "Global"
  1326. msgstr "전체"
  1327. msgctxt "@title:tab"
  1328. msgid "Global Settings"
  1329. msgstr "전역 설정"
  1330. msgctxt "@label Description for application component"
  1331. msgid "Graphical user interface"
  1332. msgstr "그래픽 사용자 인터페이스"
  1333. msgctxt "@label"
  1334. msgid "Grid Placement"
  1335. msgstr "그리드 배치"
  1336. msgctxt "@label"
  1337. msgid "Group #{group_nr}"
  1338. msgstr "그룹 #{group_nr}"
  1339. msgctxt "@tooltip of pre-heat"
  1340. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  1341. msgstr "프린팅하기 전에 베드를 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 베드가 가열 될 때까지 기다릴 필요가 없습니다."
  1342. msgctxt "@tooltip of pre-heat"
  1343. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  1344. msgstr "프린팅하기 전에 노즐을 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 노즐이 가열 될 때까지 기다릴 필요가 없습니다."
  1345. msgctxt "@label"
  1346. msgid "Heated Build Plate (official kit or self-built)"
  1347. msgstr "히팅 빌드 플레이트 (공식 키트 또는 자체 조립식)"
  1348. msgctxt "@label"
  1349. msgid "Heated bed"
  1350. msgstr "히트 베드"
  1351. msgctxt "@label"
  1352. msgid "Heated build volume"
  1353. msgstr "히팅 빌드 사이즈"
  1354. msgctxt "@action:label"
  1355. msgid "Height (mm)"
  1356. msgstr "높이 (mm)"
  1357. msgctxt "@label"
  1358. msgid "Helpers"
  1359. msgstr "도움말"
  1360. msgctxt "@label"
  1361. msgid "Hide all connected printers"
  1362. msgstr "연결된 프린터 모두 숨기기"
  1363. msgctxt "@action:button"
  1364. msgid "Hide settings"
  1365. msgstr "설정 숨기기"
  1366. msgctxt "@action:menu"
  1367. msgid "Hide this setting"
  1368. msgstr "이 설정 숨기기"
  1369. msgctxt "@info:tooltip"
  1370. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1371. msgstr "경고 기호를 사용해 모델에서 누락되거나 관계 없는 표면을 강조 표시합니다. 도구 경로에서는 종종 의도한 형상의 일부가 누락됩니다."
  1372. msgctxt "@info:tooltip"
  1373. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1374. msgstr "지원되지 않는 모델 영역을 빨간색으로 강조 표시하십시오. 서포트가 없으면 이 영역이 제대로 프린팅되지 않습니다."
  1375. msgctxt "@button"
  1376. msgid "How to load new material profiles to my printer"
  1377. msgstr "새로운 재료 프로파일을 내 프린터로 로드하는 방법"
  1378. msgctxt "@action:button"
  1379. msgid "How to update"
  1380. msgstr "업데이트하는 방법"
  1381. msgctxt "@text:window"
  1382. msgid "I don't want to send anonymous data"
  1383. msgstr "익명 데이터 전송을 원하지 않습니다"
  1384. msgctxt "@label:status"
  1385. msgid "Idle"
  1386. msgstr "대기 상태"
  1387. msgctxt "@label"
  1388. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1389. msgstr "Cura에 새 UltiMaker 프린터를 추가하려는 경우"
  1390. msgctxt "@label"
  1391. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1392. msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오"
  1393. msgctxt "@action:button"
  1394. msgid "Import"
  1395. msgstr "가져오기"
  1396. msgctxt "@title:window"
  1397. msgid "Import Material"
  1398. msgstr "재료 가져 오기"
  1399. msgctxt "@title:window"
  1400. msgid "Import Profile"
  1401. msgstr "프로파일 가져 오기"
  1402. msgctxt "@action:button"
  1403. msgid "Import all as models"
  1404. msgstr "모두 모델로 가져 오기"
  1405. msgctxt "@action:button"
  1406. msgid "Import models"
  1407. msgstr "모델 가져 오기"
  1408. msgctxt "@label:MonitorStatus"
  1409. msgid "In maintenance. Please check the printer"
  1410. msgstr "유지 보수 중. 프린터를 확인하십시오"
  1411. msgctxt "@info"
  1412. msgid "In order to monitor your print from Cura, please connect the printer."
  1413. msgstr "Cura에서 프린트를 모니터링하려면 프린터를 연결하십시오."
  1414. msgctxt "@label"
  1415. msgid "In order to start using Cura you will need to configure a printer."
  1416. msgstr "Cura를 사용하려면 프린터를 구성해야 합니다."
  1417. msgctxt "@button"
  1418. msgid "In order to use the package you will need to restart Cura"
  1419. msgstr "패키지를 사용하려면 Cura를 재시작해야 합니다."
  1420. msgctxt "@option:radio"
  1421. msgid "Include UltiMaker account name"
  1422. msgstr "UltiMaker 계정 이름 포함"
  1423. msgctxt "@label"
  1424. msgid "Infill"
  1425. msgstr "내부채움"
  1426. msgctxt "@tooltip"
  1427. msgid "Infill"
  1428. msgstr "내부채움"
  1429. msgctxt "infill_sparse_density description"
  1430. msgid "Infill Density"
  1431. msgstr "내부채움 밀도"
  1432. msgctxt "@action:label"
  1433. msgid "Infill Pattern"
  1434. msgstr "내부채움 패턴"
  1435. msgctxt "@item:inlistbox"
  1436. msgid "Infill mesh only"
  1437. msgstr "매쉬 내부채움 전용"
  1438. msgctxt "@label"
  1439. msgid "Infill overlapping with this model is modified."
  1440. msgstr "이 모델과 중복되는 내부채움은 수정됩니다."
  1441. msgctxt "@info:title"
  1442. msgid "Information"
  1443. msgstr "정보"
  1444. msgctxt "@title"
  1445. msgid "Information"
  1446. msgstr "정보"
  1447. msgctxt "@info:progress"
  1448. msgid "Initializing Active Machine..."
  1449. msgstr "활성 기기 초기화 중..."
  1450. msgctxt "@info:progress"
  1451. msgid "Initializing build volume..."
  1452. msgstr "출력 사이즈 초기화 중..."
  1453. msgctxt "@info:progress"
  1454. msgid "Initializing engine..."
  1455. msgstr "엔진 초기화 중..."
  1456. msgctxt "@info:progress"
  1457. msgid "Initializing machine manager..."
  1458. msgstr "패키지 관리자 초기화 중..."
  1459. msgctxt "@label"
  1460. msgid "Inner Wall"
  1461. msgstr "내벽"
  1462. msgctxt "@tooltip"
  1463. msgid "Inner Walls"
  1464. msgstr "내벽"
  1465. msgctxt "@text"
  1466. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1467. msgstr "USB 스틱을 프린터에 삽입하고 새로운 재료 프로파일 로드 절차를 진행합니다."
  1468. msgctxt "@button"
  1469. msgid "Install"
  1470. msgstr "설치"
  1471. msgctxt "@header"
  1472. msgid "Install Materials"
  1473. msgstr "재료 설치"
  1474. msgctxt "@window:title"
  1475. msgid "Install Package"
  1476. msgstr "패키지 설치"
  1477. msgctxt "@action:button"
  1478. msgid "Install Packages"
  1479. msgstr "패키지 설치"
  1480. msgctxt "@header"
  1481. msgid "Install Packages"
  1482. msgstr "패키지 설치"
  1483. msgctxt "@header"
  1484. msgid "Install Plugins"
  1485. msgstr "플러그인 설치"
  1486. msgctxt "@action:button"
  1487. msgid "Install missing packages"
  1488. msgstr "누락된 패키지 설치"
  1489. msgctxt "@title"
  1490. msgid "Install missing packages"
  1491. msgstr "누락된 패키지 설치"
  1492. msgctxt "@label"
  1493. msgid "Install missing packages from project file."
  1494. msgstr "프로젝트 파일에서 누락된 패키지를 설치합니다."
  1495. msgctxt "@button"
  1496. msgid "Install pending updates"
  1497. msgstr "보류된 업데이트 설치"
  1498. msgctxt "@label"
  1499. msgid "Installed Materials"
  1500. msgstr "설치된 재료"
  1501. msgctxt "@label"
  1502. msgid "Installed Plugins"
  1503. msgstr "설치된 플러그인"
  1504. msgctxt "@button"
  1505. msgid "Installing..."
  1506. msgstr "설치 중..."
  1507. msgctxt "@action:label"
  1508. msgid "Intent"
  1509. msgstr "의도"
  1510. msgctxt "@label"
  1511. msgid "Interface"
  1512. msgstr "인터페이스"
  1513. msgctxt "@label Description for application component"
  1514. msgid "Interprocess communication library"
  1515. msgstr "프로세스간 통신 라이브러리"
  1516. msgctxt "@title:window"
  1517. msgid "Invalid IP address"
  1518. msgstr "잘못된 IP 주소"
  1519. msgctxt "@info:status"
  1520. msgid "Invalid file URL:"
  1521. msgstr "유효하지 않은 파일 URL:"
  1522. msgctxt "@action:button"
  1523. msgid "Invert the direction of camera zoom."
  1524. msgstr "카메라 줌의 방향을 반전시키기."
  1525. msgctxt "@label"
  1526. msgid "Is printed as support."
  1527. msgstr "지원으로 프린팅됩니다."
  1528. msgctxt "@text"
  1529. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  1530. msgstr "Digital Factory에 호환되는 프린터가 연결되지 않은 것 같습니다. 프린터가 연결되어 있고 최신 펌웨어가 설치되어 있는지 확인하십시오."
  1531. msgctxt "@item:inlistbox"
  1532. msgid "JPEG Image"
  1533. msgstr "JPEG 이미지"
  1534. msgctxt "@item:inlistbox"
  1535. msgid "JPG Image"
  1536. msgstr "JPG 이미지"
  1537. msgctxt "@label Description for application dependency"
  1538. msgid "JSON parser"
  1539. msgstr "JSON 파서"
  1540. msgctxt "@label"
  1541. msgid "Job Name"
  1542. msgstr "작업 이름"
  1543. msgctxt "@label"
  1544. msgid "Jog Distance"
  1545. msgstr "조그 거리"
  1546. msgctxt "@label"
  1547. msgid "Jog Position"
  1548. msgstr "조그 위치"
  1549. msgctxt "@option:discardOrKeep"
  1550. msgid "Keep and never ask again"
  1551. msgstr "계속하고 다시 묻지않기"
  1552. msgctxt "@action:button"
  1553. msgid "Keep changes"
  1554. msgstr "변경 사항 유지"
  1555. msgctxt "@action:button"
  1556. msgid "Keep printer configurations"
  1557. msgstr "프린터 구성 유지"
  1558. msgctxt "@action:menu"
  1559. msgid "Keep this setting visible"
  1560. msgstr "이 설정을 계속 표시하십시오"
  1561. msgctxt "@label The argument is a timestamp"
  1562. msgid "Last update: %1"
  1563. msgstr "마지막 업데이트: %1"
  1564. msgctxt "@label:listbox"
  1565. msgid "Layer Thickness"
  1566. msgstr "레이어 두께"
  1567. msgctxt "@item:inlistbox"
  1568. msgid "Layer view"
  1569. msgstr "레이어 뷰"
  1570. msgctxt "@button:label"
  1571. msgid "Learn More"
  1572. msgstr "자세히 알아보기"
  1573. msgctxt "@button"
  1574. msgid "Learn how to connect your printer to Digital Factory"
  1575. msgstr "Digital Factory에 프린터를 연결하는 방법 알아보기"
  1576. msgctxt "@tooltip:button"
  1577. msgid "Learn how to get started with UltiMaker Cura."
  1578. msgstr "UltiMaker Cura로 시작하는 방법을 알아보십시오."
  1579. msgctxt "@action"
  1580. msgid "Learn more"
  1581. msgstr "자세히 알아보기"
  1582. msgctxt "@action:button"
  1583. msgid "Learn more"
  1584. msgstr "자세히 알아보기"
  1585. msgctxt "@button"
  1586. msgid "Learn more"
  1587. msgstr "자세히 알아보기"
  1588. msgctxt "@button:label"
  1589. msgid "Learn more"
  1590. msgstr "자세히 알아보기"
  1591. msgctxt "@action:button"
  1592. msgid "Learn more about Cura print profiles"
  1593. msgstr "Cura 프린트 프로필에 대해 자세히 알아보기"
  1594. msgctxt "@button"
  1595. msgid "Learn more about adding printers to Cura"
  1596. msgstr "Cura에 프린터를 추가하는 방법 자세히 알아보기"
  1597. msgctxt "@label"
  1598. msgid "Learn more about project packages."
  1599. msgstr "프로젝트 패키지에 대해 자세히 알아보세요."
  1600. msgctxt "@action:inmenu menubar:view"
  1601. msgid "Left Side View"
  1602. msgstr "왼쪽에서 보기"
  1603. msgctxt "@info:tooltip"
  1604. msgid "Left View"
  1605. msgstr "왼쪽 보기"
  1606. msgctxt "@tooltip:button"
  1607. msgid "Let developers know that something is going wrong."
  1608. msgstr "개발자에게 문제를 알려주십시오."
  1609. msgctxt "@action"
  1610. msgid "Level build plate"
  1611. msgstr "레벨 빌드 플레이트"
  1612. msgctxt "@item:inlistbox"
  1613. msgid "Lighter is higher"
  1614. msgstr "밝을수록 높음"
  1615. msgctxt "@label:listbox"
  1616. msgid "Line Type"
  1617. msgstr "라인 유형"
  1618. msgctxt "@label:listbox"
  1619. msgid "Line Width"
  1620. msgstr "선 두께"
  1621. msgctxt "@item:inlistbox"
  1622. msgid "Linear"
  1623. msgstr "직선 모양"
  1624. msgctxt "@label Description for development tool"
  1625. msgid "Linux cross-distribution application deployment"
  1626. msgstr "Linux 교차 배포 응용 프로그램 배포"
  1627. msgctxt "@label"
  1628. msgid "Load %3 as material %1 (This cannot be overridden)."
  1629. msgstr "%3을(를) 재료 %1(으)로 로드합니다(이 작업은 무효화할 수 없음)."
  1630. msgctxt "@button"
  1631. msgid "Load more"
  1632. msgstr "더 많이 로드"
  1633. msgctxt "@button"
  1634. msgid "Loading"
  1635. msgstr "로딩중"
  1636. msgctxt "@action:warning"
  1637. msgid "Loading a project will clear all models on the build plate."
  1638. msgstr "프로젝트를 로드하면 빌드 플레이트의 모든 모델이 지워집니다."
  1639. msgctxt "@label"
  1640. msgid "Loading available configurations from the printer..."
  1641. msgstr "프린터에서 사용 가능한 구성 로딩 중..."
  1642. msgctxt "@info:progress"
  1643. msgid "Loading interface..."
  1644. msgstr "인터페이스 로드 중 ..."
  1645. msgctxt "@info:progress"
  1646. msgid "Loading machines..."
  1647. msgstr "기기로드 중 ..."
  1648. msgctxt "@label:status"
  1649. msgid "Loading..."
  1650. msgstr "로딩 중..."
  1651. msgctxt "@title"
  1652. msgid "Loading..."
  1653. msgstr "로딩 중..."
  1654. msgctxt "@label:category menu label"
  1655. msgid "Local printers"
  1656. msgstr "로컬 프린터"
  1657. msgctxt "@info:title"
  1658. msgid "Log-in failed"
  1659. msgstr "로그인 실패"
  1660. msgctxt "@info:title"
  1661. msgid "Login failed"
  1662. msgstr "로그인 실패"
  1663. msgctxt "@title:groupbox"
  1664. msgid "Logs"
  1665. msgstr "로그"
  1666. msgctxt "@label:MonitorStatus"
  1667. msgid "Lost connection with the printer"
  1668. msgstr "프린터와의 연결이 끊어졌습니다"
  1669. msgctxt "@action"
  1670. msgid "Machine Settings"
  1671. msgstr "기기 설정"
  1672. msgctxt "@backuplist:label"
  1673. msgid "Machines"
  1674. msgstr "기기"
  1675. msgctxt "@text"
  1676. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1677. msgstr "모든 프린터가 켜져 있고 Digital Factory에 연결되어 있는지 확인하십시오."
  1678. msgctxt "@info:generic"
  1679. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1680. msgstr "파일을 보내기 전에 g-코드가 프린터 및 프린터 구성에 적합한 지 확인하십시오. g-코드가 정확하지 않을 수 있습니다."
  1681. msgctxt "@item:inlistbox"
  1682. msgid "Makerbot Printfile"
  1683. msgstr "Makerbot 프린트파일"
  1684. msgctxt "@error"
  1685. msgid "MakerbotWriter could not save to the designated path."
  1686. msgstr "MakerbotWriter가 지정된 경로에 저장할 수 없습니다."
  1687. msgctxt "@error:not supported"
  1688. msgid "MakerbotWriter does not support text mode."
  1689. msgstr "MakerbotWriter는 텍스트 모드를 지원하지 않습니다."
  1690. msgctxt "@action:inmenu"
  1691. msgid "Manage Materials..."
  1692. msgstr "재료 관리..."
  1693. msgctxt "@action:inmenu menubar:printer"
  1694. msgid "Manage Pr&inters..."
  1695. msgstr "프린터 관리 ..."
  1696. msgctxt "@action:inmenu menubar:profile"
  1697. msgid "Manage Profiles..."
  1698. msgstr "프로파일 관리..."
  1699. msgctxt "@action:inmenu"
  1700. msgid "Manage Setting Visibility..."
  1701. msgstr "보기 설정 관리..."
  1702. msgctxt "@item:inmenu"
  1703. msgid "Manage backups"
  1704. msgstr "백업 관리"
  1705. msgctxt "@label link to connect manager"
  1706. msgid "Manage in browser"
  1707. msgstr "브라우저에서 관리"
  1708. msgctxt "@header"
  1709. msgid "Manage packages"
  1710. msgstr "패키지 관리"
  1711. msgctxt "@info:tooltip"
  1712. msgid "Manage packages"
  1713. msgstr "패키지 관리"
  1714. msgctxt "@action"
  1715. msgid "Manage print jobs"
  1716. msgstr "프린트 작업 관리"
  1717. msgctxt "@label link to Connect and Cloud interfaces"
  1718. msgid "Manage printer"
  1719. msgstr "프린터 관리"
  1720. msgctxt "@button"
  1721. msgid "Manage printers"
  1722. msgstr "프린터 관리"
  1723. msgctxt "@text"
  1724. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1725. msgstr "여기서 UltiMaker Cura 플러그인 및 재료 프로파일을 관리하십시오. 플러그인을 최신 상태로 유지하고 설정을 정기적으로 백업하십시오."
  1726. msgctxt "@label"
  1727. msgid "Manufacturer"
  1728. msgstr "제조업체"
  1729. msgctxt "@action:button"
  1730. msgid "Marketplace"
  1731. msgstr "시장"
  1732. msgctxt "@label"
  1733. msgid "Marketplace"
  1734. msgstr "시장"
  1735. msgctxt "@action:label"
  1736. msgid "Material"
  1737. msgstr "재료"
  1738. msgctxt "@label"
  1739. msgid "Material"
  1740. msgstr "재료"
  1741. msgctxt "@label:category menu label"
  1742. msgid "Material"
  1743. msgstr "재료"
  1744. msgctxt "@label:listbox"
  1745. msgid "Material Color"
  1746. msgstr "재료 색상"
  1747. msgctxt "@label"
  1748. msgid "Material Type"
  1749. msgstr "재료 유형"
  1750. msgctxt "@title"
  1751. msgid "Material color picker"
  1752. msgstr "재료 색상 선택기"
  1753. msgctxt "@label"
  1754. msgid "Material estimation"
  1755. msgstr "재료 추산"
  1756. msgctxt "@title:header"
  1757. msgid "Material profiles successfully synced with the following printers:"
  1758. msgstr "재료 프로필이 다음 프린터와 성공적으로 동기화되었습니다."
  1759. msgctxt "@action:label"
  1760. msgid "Material settings"
  1761. msgstr "재료 설정"
  1762. msgctxt "@backuplist:label"
  1763. msgid "Materials"
  1764. msgstr "재료"
  1765. msgctxt "@button"
  1766. msgid "Materials"
  1767. msgstr "재료"
  1768. msgctxt "@title:tab"
  1769. msgid "Materials"
  1770. msgstr "재료"
  1771. msgctxt "@label"
  1772. msgid "Materials compatible with active printer:"
  1773. msgstr "활성화된 프린터와 호환되는 재료:"
  1774. msgctxt "@label"
  1775. msgid "Mesh Type"
  1776. msgstr "메쉬 유형"
  1777. msgctxt "@action:label"
  1778. msgid "Mode"
  1779. msgstr "종류"
  1780. msgctxt "@info:title"
  1781. msgid "Model Errors"
  1782. msgstr "모델 에러"
  1783. msgctxt "@item:inmenu"
  1784. msgid "Modify G-Code"
  1785. msgstr "G 코드 수정"
  1786. msgctxt "@label"
  1787. msgid "Modify settings for overlaps"
  1788. msgstr "오버랩 설정 수정"
  1789. msgctxt "@item:inmenu"
  1790. msgid "Monitor"
  1791. msgstr "모니터"
  1792. msgctxt "@action:button"
  1793. msgid "Monitor print"
  1794. msgstr "프린트 모니터링"
  1795. msgctxt "@tooltip:button"
  1796. msgid "Monitor print jobs and reprint from your print history."
  1797. msgstr "프린트 작업을 모니터링하고 프린트 기록에서 다시 프린트하십시오."
  1798. msgctxt "@tooltip:button"
  1799. msgid "Monitor printers in Ultimaker Digital Factory."
  1800. msgstr "Ultimaker Digital Factory의 프린터를 모니터링하십시오."
  1801. msgctxt "@info"
  1802. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1803. msgstr "Ultimaker Digital Factory를 사용하여 어디서든 프린터를 모니터링하십시오"
  1804. msgctxt "@title:window"
  1805. msgid "More information on anonymous data collection"
  1806. msgstr "익명 데이터 수집에 대한 추가 정보"
  1807. msgctxt "@window:title"
  1808. msgid "Move print job to top"
  1809. msgstr "인쇄 작업을 맨 위로 이동"
  1810. msgctxt "@action:button"
  1811. msgid "Move to Next Position"
  1812. msgstr "다음 위치로 이동"
  1813. msgctxt "@label"
  1814. msgid "Move to top"
  1815. msgstr "맨 위로 이동"
  1816. msgctxt "@info:tooltip"
  1817. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1818. msgstr "모델을 선택하면 모델이 뷰의 가운데에 오도록 카메라를 이동합니다"
  1819. msgctxt "@action:inmenu menubar:edit"
  1820. msgid "Multiply Selected"
  1821. msgstr "선택 항목 복제"
  1822. msgctxt "@title:window"
  1823. msgid "Multiply Selected Model"
  1824. msgid_plural "Multiply Selected Models"
  1825. msgstr[0] "선택한 모델 복"
  1826. msgctxt "@info"
  1827. msgid "Multiply selected item and place them in a grid of build plate."
  1828. msgstr "선택한 항목을 곱하고 빌드 플레이트의 그리드에 배치합니다."
  1829. msgctxt "@info:status"
  1830. msgid "Multiplying and placing objects"
  1831. msgstr "객체를 증가시키고 배치"
  1832. msgctxt "@title"
  1833. msgid "My Backups"
  1834. msgstr "내 백업"
  1835. msgctxt "@label:button"
  1836. msgid "My printers"
  1837. msgstr "내 프린터"
  1838. msgctxt "@action:label"
  1839. msgid "Name"
  1840. msgstr "이름"
  1841. msgctxt "@label:category menu label"
  1842. msgid "Network enabled printers"
  1843. msgstr "네트워크 프린터"
  1844. msgctxt "@info:title"
  1845. msgid "Network error"
  1846. msgstr "네트워크 오류"
  1847. msgctxt "@info:title The %s gets replaced with the printer name."
  1848. msgid "New %s stable firmware available"
  1849. msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다"
  1850. msgctxt "@textfield:placeholder"
  1851. msgid "New Custom Profile"
  1852. msgstr "새 사용자 지정 프로필"
  1853. msgctxt "@label"
  1854. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1855. msgstr "새 UltiMaker 프린터를 Digital Factory에 연결하여 원격으로 모니터링할 수 있습니다."
  1856. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1857. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1858. msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 완료하지 않은 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다."
  1859. msgctxt "@action:button"
  1860. msgid "New materials installed"
  1861. msgstr "새로운 재료가 설치됨"
  1862. msgctxt "info:status"
  1863. msgid "New printer detected from your Ultimaker account"
  1864. msgid_plural "New printers detected from your Ultimaker account"
  1865. msgstr[0] "UltiMaker 계정에서 새 프린터가 감지되었습니다"
  1866. msgctxt "@title:window"
  1867. msgid "New project"
  1868. msgstr "새 프로젝트"
  1869. msgctxt "@action:button"
  1870. msgid "Next"
  1871. msgstr "다음"
  1872. msgctxt "@button"
  1873. msgid "Next"
  1874. msgstr "다음 것"
  1875. msgctxt "@info:title"
  1876. msgid "Nightly build"
  1877. msgstr "개발자 버전"
  1878. msgctxt "@info"
  1879. msgid "No"
  1880. msgstr "아니요"
  1881. msgctxt "@info"
  1882. msgid "No compatibility information"
  1883. msgstr "호환성 정보 없음"
  1884. msgctxt "@description"
  1885. msgid "No compatible printers, that are currently online, were found."
  1886. msgstr "현재 온라인 상태인 호환 가능 프린터를 찾을 수 없습니다."
  1887. msgctxt "@label"
  1888. msgid "No cost estimation available"
  1889. msgstr "비용 추산 이용 불가"
  1890. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1891. msgid "No custom profile to import in file <filename>{0}</filename>"
  1892. msgstr "<filename>{0}</filename>(으)로 가져올 사용자 정의 프로파일이 없습니다"
  1893. msgctxt "@label"
  1894. msgid "No items to select from"
  1895. msgstr "선택할 항목 없음"
  1896. msgctxt "@info:title"
  1897. msgid "No layers to show"
  1898. msgstr "표시할 레이어 없음"
  1899. msgctxt "@message"
  1900. msgid "No more results to load"
  1901. msgstr "더 이상 로드할 결과 없음"
  1902. msgctxt "@error:zip"
  1903. msgid "No permission to write the workspace here."
  1904. msgstr "여기서 작업 환경을 작성할 권한이 없습니다."
  1905. msgctxt "@title:header"
  1906. msgid "No printers found"
  1907. msgstr "프린터를 찾을 수 없음"
  1908. msgctxt "@label"
  1909. msgid "No printers found in your account?"
  1910. msgstr "사용자의 계정에 프린터가 없습니까?"
  1911. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  1912. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  1913. msgstr "선택한 재료/%1 설정에 대해 사용할 수 있는 프로파일이 없습니다. 설정을 변경하십시오."
  1914. msgctxt "@message"
  1915. msgid "No results found with current filter"
  1916. msgstr "현재 필터로는 결과를 찾을 수 없음"
  1917. msgctxt "@label"
  1918. msgid "No specific value has been set"
  1919. msgstr "특정 값이 설정되지 않았습니다"
  1920. msgctxt "@label"
  1921. msgid "No time estimation available"
  1922. msgstr "시간 추산 이용 불가"
  1923. msgctxt "@button"
  1924. msgid "Non UltiMaker printer"
  1925. msgstr "UltiMaker 프린터가 아님"
  1926. msgctxt "@info No materials"
  1927. msgid "None"
  1928. msgstr "없음"
  1929. msgctxt "@label"
  1930. msgid "Normal model"
  1931. msgstr "일반 모델"
  1932. msgctxt "@info:title"
  1933. msgid "Not a group host"
  1934. msgstr "그룹 호스트 아님"
  1935. msgctxt "@label:MonitorStatus"
  1936. msgid "Not connected to a printer"
  1937. msgstr "프린터에 연결되지 않음"
  1938. msgctxt "@action:label"
  1939. msgid "Not in profile"
  1940. msgstr "프로파일에 없음"
  1941. msgctxt "@menuitem"
  1942. msgid "Not overridden"
  1943. msgstr "재정의되지 않음"
  1944. msgctxt "@info:not supported profile"
  1945. msgid "Not supported"
  1946. msgstr "지원되지 않음"
  1947. msgctxt "@label"
  1948. msgid "Not yet initialized"
  1949. msgstr "아직 초기화되지 않음"
  1950. msgctxt "@info:status"
  1951. msgid "Nothing is shown because you need to slice first."
  1952. msgstr "먼저 슬라이스해야 하기 때문에 아무것도 표시되지 않습니다."
  1953. msgctxt "@label"
  1954. msgid "Nozzle"
  1955. msgstr "노즐"
  1956. msgctxt "@title:label"
  1957. msgid "Nozzle Settings"
  1958. msgstr "노즐 설정"
  1959. msgctxt "@label"
  1960. msgid "Nozzle offset X"
  1961. msgstr "노즐 오프셋 X"
  1962. msgctxt "@label"
  1963. msgid "Nozzle offset Y"
  1964. msgstr "노즐 오프셋 Y"
  1965. msgctxt "@label"
  1966. msgid "Nozzle size"
  1967. msgstr "노즐 크기"
  1968. msgctxt "@label"
  1969. msgid "Number of Copies"
  1970. msgstr "복제할 수"
  1971. msgctxt "@label"
  1972. msgid "Number of Extruders"
  1973. msgstr "익스트루더의 수"
  1974. msgctxt "@action:button"
  1975. msgid "OK"
  1976. msgstr "확인"
  1977. msgctxt "@label"
  1978. msgid "OS language"
  1979. msgstr "OS 언어"
  1980. msgctxt "@label"
  1981. msgid "Object list"
  1982. msgstr "개체 목록"
  1983. msgctxt "@label:Should be short"
  1984. msgid "Off"
  1985. msgstr "비활성"
  1986. msgctxt "@label:Should be short"
  1987. msgid "On"
  1988. msgstr "유효한"
  1989. msgctxt "@label"
  1990. msgid "Only Show Top Layers"
  1991. msgstr "상단 레이어 만 표시"
  1992. msgctxt "@info:status"
  1993. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1994. msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다."
  1995. msgctxt "@message"
  1996. msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker."
  1997. msgstr "죄송합니다. 슬라이싱 과정 도중 예상치 못한 오류가 발생했습니다. 다만, 기본 설정에서 데이터 공유를 비활성화하지 않았다면 분석을 위한 충돌 로그가 자동으로 수신되니 안심하세요. 도움을 주시려면 문제 추적기에 프로젝트 세부 정보를 공유해 주세요."
  1998. msgctxt "@action:button"
  1999. msgid "Open"
  2000. msgstr "열기"
  2001. msgctxt "@title:menu menubar:file"
  2002. msgid "Open &Recent"
  2003. msgstr "최근 열어본 파일 열기"
  2004. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2005. msgid "Open Compressed Triangle Mesh"
  2006. msgstr "Open Compressed Triangle Mesh"
  2007. msgctxt "@title:window"
  2008. msgid "Open File(s)"
  2009. msgstr "파일 열기"
  2010. msgctxt "@title:menu menubar:file"
  2011. msgid "Open File(s)..."
  2012. msgstr "파일 여는 중..."
  2013. msgctxt "@title:window"
  2014. msgid "Open Project"
  2015. msgstr "프로젝트 열기"
  2016. msgctxt "@info:title"
  2017. msgid "Open Project File"
  2018. msgstr "프로젝트 파일 열기"
  2019. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2020. msgid "Open Universal Cura Project (UCP)"
  2021. msgstr "범용 Cura 프로젝트(UCP) 열기"
  2022. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2023. msgid "Open Universal Cura Project (UCP) file"
  2024. msgstr "범용 Cura 프로젝트(UCP) 파일 열기"
  2025. msgctxt "@action:label"
  2026. msgid "Open With"
  2027. msgstr "다음으로 열기"
  2028. msgctxt "@action:button"
  2029. msgid "Open as UCP"
  2030. msgstr "UCP로 열기"
  2031. msgctxt "@action:button"
  2032. msgid "Open as project"
  2033. msgstr "프로젝트로 열기"
  2034. msgctxt "@title:window"
  2035. msgid "Open file(s)"
  2036. msgstr "파일 열기"
  2037. msgctxt "@action:button"
  2038. msgid "Open project anyway"
  2039. msgstr "무시하고 프로젝트 열기"
  2040. msgctxt "@title:window"
  2041. msgid "Open project file"
  2042. msgstr "프로젝트 파일 열기"
  2043. msgctxt "@label OpenGL version"
  2044. msgid "OpenGL"
  2045. msgstr "OpenGL"
  2046. msgctxt "@label"
  2047. msgid "Opening and saving files"
  2048. msgstr "파일 열기 및 저장"
  2049. msgctxt "@header"
  2050. msgid "Optimized for Air Manager"
  2051. msgstr "Air Manager에 최적화"
  2052. msgctxt "@label"
  2053. msgid "Origin at center"
  2054. msgstr "중앙이 원점"
  2055. msgid "Orthographic"
  2056. msgstr "정투영"
  2057. msgctxt "@action:inmenu menubar:view"
  2058. msgid "Orthographic"
  2059. msgstr "직교"
  2060. msgctxt "@tooltip"
  2061. msgid "Other"
  2062. msgstr "다른"
  2063. msgctxt "@label"
  2064. msgid "Other models overlapping with this model are modified."
  2065. msgstr "이 모델과 중복되는 다른 모델은 수정됩니다."
  2066. msgctxt "@label"
  2067. msgid "Other printers"
  2068. msgstr "기타 프린터"
  2069. msgctxt "@tooltip"
  2070. msgid "Outer Wall"
  2071. msgstr "외벽"
  2072. msgctxt "@label"
  2073. msgid "Overlaps with this model are not supported."
  2074. msgstr "이 모델과의 중복은 지원되지 않습니다."
  2075. msgctxt "@action:button"
  2076. msgid "Override"
  2077. msgstr "무시하기"
  2078. msgctxt "@label"
  2079. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2080. msgstr "무시하기는 기존 프린터 구성과 함께 지정된 설정을 사용하게 됩니다. 이는 인쇄 실패로 이어질 수 있습니다."
  2081. msgctxt "@label %1 is the number of settings it overrides."
  2082. msgid "Overrides %1 setting."
  2083. msgid_plural "Overrides %1 settings."
  2084. msgstr[0] "%1 설정을 덮어씁니다."
  2085. msgctxt "@title:menu menubar:toplevel"
  2086. msgid "P&references"
  2087. msgstr "환경설정(&R)"
  2088. msgctxt "@item:inlistbox"
  2089. msgid "PNG Image"
  2090. msgstr "PNG 이미지"
  2091. msgctxt "@header"
  2092. msgid "Package details"
  2093. msgstr "패키지 세부 사항"
  2094. msgctxt "@label Description for development tool"
  2095. msgid "Packaging Python-applications"
  2096. msgstr "Python 애플리케이션 패키지 생성 중"
  2097. msgctxt "@info:status"
  2098. msgid "Parsing G-code"
  2099. msgstr "G 코드 파싱"
  2100. msgctxt "@action:inmenu menubar:edit"
  2101. msgid "Paste from clipboard"
  2102. msgstr "클립보드에서 붙여넣기"
  2103. msgctxt "@label"
  2104. msgid "Pause"
  2105. msgstr "중지"
  2106. msgctxt "@label:MonitorStatus"
  2107. msgid "Paused"
  2108. msgstr "일시 중지됨"
  2109. msgctxt "@label:status"
  2110. msgid "Paused"
  2111. msgstr "일시 중지됨"
  2112. msgctxt "@label"
  2113. msgid "Pausing..."
  2114. msgstr "일시 정지 중..."
  2115. msgctxt "@label:status"
  2116. msgid "Pausing..."
  2117. msgstr "일시 정지 중..."
  2118. msgctxt "@label"
  2119. msgid "Per Model Settings"
  2120. msgstr "모델 별 설정"
  2121. msgid "Perspective"
  2122. msgstr "원근"
  2123. msgctxt "@action:inmenu menubar:view"
  2124. msgid "Perspective"
  2125. msgstr "원근"
  2126. msgctxt "@action:label"
  2127. msgid "Placement"
  2128. msgstr "배치"
  2129. msgctxt "@info:title"
  2130. msgid "Placing Object"
  2131. msgstr "개체 배치 중"
  2132. msgctxt "@info:title"
  2133. msgid "Placing Objects"
  2134. msgstr "개체 배치 중"
  2135. msgctxt "@label Type of platform"
  2136. msgid "Platform"
  2137. msgstr "플랫폼"
  2138. msgctxt "@info"
  2139. msgid "Please connect your printer to the network."
  2140. msgstr "프린터를 네트워크에 연결하십시오."
  2141. msgctxt "@text"
  2142. msgid "Please enter a valid IP address."
  2143. msgstr "유효한 IP 주소를 입력하십시오."
  2144. msgctxt "@message"
  2145. msgid "Please give the required permissions when authorizing this application."
  2146. msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오."
  2147. msgctxt "@info"
  2148. msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers."
  2149. msgstr "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오."
  2150. "- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오."
  2151. msgctxt "@text"
  2152. msgid "Please name your printer"
  2153. msgstr "프린터의 이름을 설정하십시오"
  2154. msgctxt "@warning:status"
  2155. msgid "Please prepare G-code before exporting."
  2156. msgstr "내보내기 전에 G-code를 준비하십시오."
  2157. msgctxt "@info"
  2158. msgid "Please provide a name for this profile."
  2159. msgstr "이 프로파일에 대한 이름을 제공하십시오."
  2160. msgctxt "@info"
  2161. msgid "Please provide a new name."
  2162. msgstr "새로운 이름을 입력해주세요."
  2163. msgctxt "@text"
  2164. msgid "Please read and agree with the plugin licence."
  2165. msgstr "플러그인 라이센스를 읽고 동의하십시오."
  2166. msgctxt "@label:MonitorStatus"
  2167. msgid "Please remove the print"
  2168. msgstr "프린트물을 제거하십시오"
  2169. msgctxt "@info:status"
  2170. msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes"
  2171. msgstr "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오."
  2172. "- 출력 사이즈 내에 맞춤화됨"
  2173. "- 활성화된 익스트루더로 할당됨"
  2174. "- 수정자 메쉬로 전체 설정되지 않음"
  2175. msgctxt "@label"
  2176. msgid "Please select any upgrades made to this UltiMaker Original"
  2177. msgstr "이 UltiMaker Original에 업그레이드 할 항목을 선택하십시오"
  2178. msgctxt "@description"
  2179. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2180. msgstr "UltiMaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오."
  2181. msgctxt "@info:tooltip"
  2182. msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data."
  2183. msgstr "비익명 데이터 전송을 허용하려면 UltiMaker 계정에 로그인해 주세요."
  2184. msgctxt "@action:button"
  2185. msgid "Please sync the material profiles with your printers before starting to print."
  2186. msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오."
  2187. msgctxt "@info"
  2188. msgid "Please update your printer's firmware to manage the queue remotely."
  2189. msgstr "대기열을 원격으로 관리하려면 프린터 펌웨어를 업데이트하십시오."
  2190. msgctxt "@info:status"
  2191. msgid "Please wait until the current job has been sent."
  2192. msgstr "현재 작업이 전송될 때까지 기다려주십시오."
  2193. msgctxt "@title:window"
  2194. msgid "Plugin License Agreement"
  2195. msgstr "플러그인 사용 계약"
  2196. msgctxt "@button"
  2197. msgid "Plugin license agreement"
  2198. msgstr "플러그인 라이센스 계약"
  2199. msgctxt "@backuplist:label"
  2200. msgid "Plugins"
  2201. msgstr "플러그인"
  2202. msgctxt "@button"
  2203. msgid "Plugins"
  2204. msgstr "플러그인"
  2205. msgctxt "@label Description for application dependency"
  2206. msgid "Polygon clipping library"
  2207. msgstr "다각형 클리핑 라이브러리"
  2208. msgctxt "@label Description for application component"
  2209. msgid "Polygon packing library, developed by Prusa Research"
  2210. msgstr "폴리곤 패킹 라이브러리, Prusa Research 개발"
  2211. msgctxt "@item:inmenu"
  2212. msgid "Post Processing"
  2213. msgstr "후 처리"
  2214. msgctxt "@title:window"
  2215. msgid "Post Processing Plugin"
  2216. msgstr "후처리 플러그인"
  2217. msgctxt "@label"
  2218. msgid "Post Processing Scripts"
  2219. msgstr "후처리 스크립트"
  2220. msgctxt "@button"
  2221. msgid "Pre-heat"
  2222. msgstr "예열"
  2223. msgctxt "@item:inmenu"
  2224. msgid "Prepare"
  2225. msgstr "준비"
  2226. msgctxt "@label:MonitorStatus"
  2227. msgid "Preparing..."
  2228. msgstr "준비 중..."
  2229. msgctxt "@label:status"
  2230. msgid "Preparing..."
  2231. msgstr "준비 중..."
  2232. msgctxt "@label"
  2233. msgid "Preset printers"
  2234. msgstr "프린터 사전 설정"
  2235. msgctxt "@button"
  2236. msgid "Preview"
  2237. msgstr "미리 보기"
  2238. msgctxt "@item:inmenu"
  2239. msgid "Preview"
  2240. msgstr "미리 보기"
  2241. msgctxt "@tooltip"
  2242. msgid "Prime Tower"
  2243. msgstr "프라임 타워"
  2244. msgctxt "@action:button"
  2245. msgid "Print"
  2246. msgstr "프린트"
  2247. msgctxt "@action:inmenu menubar:edit"
  2248. msgid "Print After"
  2249. msgstr "인쇄 후"
  2250. msgctxt "@action:inmenu menubar:edit"
  2251. msgid "Print Before"
  2252. msgstr "인쇄 전"
  2253. msgctxt "@label"
  2254. msgid "Print Selected Model With:"
  2255. msgid_plural "Print Selected Models With:"
  2256. msgstr[0] "선택된 모델 프린팅 :"
  2257. msgctxt "@label %1 is filled in with the name of an extruder"
  2258. msgid "Print Selected Model with %1"
  2259. msgid_plural "Print Selected Models with %1"
  2260. msgstr[0] "선택한 모델을 %1로 프린팅하십시오"
  2261. msgctxt "@label"
  2262. msgid "Print as support"
  2263. msgstr "서포터로 프린팅"
  2264. msgctxt "@info:title"
  2265. msgid "Print error"
  2266. msgstr "프린트 오류"
  2267. msgctxt "@message"
  2268. msgid "Print in Progress"
  2269. msgstr "프린트 진행 중"
  2270. msgctxt "@info:status"
  2271. msgid "Print job queue is full. The printer can't accept a new job."
  2272. msgstr "프린트 작업 대기열이 가득 찼습니다. 프린터가 새 작업을 수락할 수 없습니다."
  2273. msgctxt "@info:status"
  2274. msgid "Print job was successfully sent to the printer."
  2275. msgstr "출력 작업이 프린터에 성공적으로 보내졌습니다."
  2276. msgctxt "@label"
  2277. msgid "Print jobs"
  2278. msgstr "인쇄 작업"
  2279. msgctxt "@label:button"
  2280. msgid "Print jobs"
  2281. msgstr "인쇄 작업"
  2282. msgctxt "@action:button Preceded by 'Ready to'."
  2283. msgid "Print over network"
  2284. msgstr "네트워크를 통해 프린팅"
  2285. msgctxt "@properties:tooltip"
  2286. msgid "Print over network"
  2287. msgstr "네트워크를 통해 프린팅"
  2288. msgctxt "@title:window"
  2289. msgid "Print over network"
  2290. msgstr "네트워크를 통해 프린팅"
  2291. msgctxt "@label"
  2292. msgid "Print settings"
  2293. msgstr "프린팅 설정"
  2294. msgctxt "@label shown when we load a Gcode file"
  2295. msgid "Print setup disabled. G-code file can not be modified."
  2296. msgstr "인쇄 설정 비활성화됨. G 코드 파일을 수정할 수 없습니다."
  2297. msgctxt "@action:button Preceded by 'Ready to'."
  2298. msgid "Print via USB"
  2299. msgstr "USB를 통해 프린팅"
  2300. msgctxt "@info:tooltip"
  2301. msgid "Print via USB"
  2302. msgstr "USB를 통해 프린팅"
  2303. msgctxt "@action:button"
  2304. msgid "Print via cloud"
  2305. msgstr "Cloud를 통해 프린팅"
  2306. msgctxt "@properties:tooltip"
  2307. msgid "Print via cloud"
  2308. msgstr "Cloud를 통해 프린팅"
  2309. msgctxt "@action:label"
  2310. msgid "Print with"
  2311. msgstr "다음으로 프린트"
  2312. msgctxt "@title:tab"
  2313. msgid "Printer"
  2314. msgstr "프린터"
  2315. msgctxt "@title:window"
  2316. msgid "Printer Address"
  2317. msgstr "프린터 주소"
  2318. msgctxt "@action:label"
  2319. msgid "Printer Group"
  2320. msgstr "프린터 그룹"
  2321. msgctxt "@title:label"
  2322. msgid "Printer Settings"
  2323. msgstr "프린터 설정"
  2324. msgctxt "@label"
  2325. msgid "Printer control"
  2326. msgstr "프린터 제어"
  2327. msgctxt "@label:MonitorStatus"
  2328. msgid "Printer does not accept commands"
  2329. msgstr "프린터가 명령을 받아들이지 않습니다"
  2330. msgctxt "@label"
  2331. msgid "Printer name"
  2332. msgstr "프린터 이름"
  2333. msgctxt "@label"
  2334. msgid "Printer selection"
  2335. msgstr "프린터 선택"
  2336. msgctxt "@action:label"
  2337. msgid "Printer settings"
  2338. msgstr "프린터 설정"
  2339. msgctxt "@info:tooltip"
  2340. msgid "Printer settings will be updated to match the settings saved with the project."
  2341. msgstr "프린터 설정은 프로젝트에 저장된 설정과 일치하도록 업데이트됩니다."
  2342. msgctxt "@title:tab"
  2343. msgid "Printers"
  2344. msgstr "프린터"
  2345. msgctxt "info:status"
  2346. msgid "Printers added from Digital Factory:"
  2347. msgstr "Digital Factory에서 프린터 추가:"
  2348. msgctxt "@text Asking the user whether printers are missing in a list."
  2349. msgid "Printers missing?"
  2350. msgstr "프린터가 없습니까?"
  2351. msgctxt "@title:label"
  2352. msgid "Printhead Settings"
  2353. msgstr "프린트헤드 설정"
  2354. msgctxt "@label:status"
  2355. msgid "Printing"
  2356. msgstr "프린팅"
  2357. msgctxt "@label"
  2358. msgid "Printing Time"
  2359. msgstr "프린팅 시간"
  2360. msgctxt "@label:MonitorStatus"
  2361. msgid "Printing..."
  2362. msgstr "프린팅..."
  2363. msgctxt "@label"
  2364. msgid "Privacy"
  2365. msgstr "보안"
  2366. msgctxt "@button"
  2367. msgid "Processing"
  2368. msgstr "처리"
  2369. msgctxt "@info:status"
  2370. msgid "Processing Layers"
  2371. msgstr "레이어 처리 중"
  2372. msgctxt "@label"
  2373. msgid "Profile"
  2374. msgstr "프로파일"
  2375. msgctxt "@title:column"
  2376. msgid "Profile"
  2377. msgstr "프로파일"
  2378. msgctxt "@label"
  2379. msgid "Profile author"
  2380. msgstr "프로파일 원작자"
  2381. msgctxt "@info:status"
  2382. msgid "Profile is missing a quality type."
  2383. msgstr "프로파일에 품질 타입이 누락되었습니다."
  2384. msgctxt "@action:label"
  2385. msgid "Profile settings"
  2386. msgstr "프로파일 설정"
  2387. msgctxt "@title:column"
  2388. msgid "Profile settings"
  2389. msgstr "프로파일 설정"
  2390. msgctxt "@info:status"
  2391. msgid "Profile {0} has an unknown file type or is corrupted."
  2392. msgstr "프로파일 {0}에 알 수 없는 파일 유형이 있거나 손상되었습니다."
  2393. msgctxt "@backuplist:label"
  2394. msgid "Profiles"
  2395. msgstr "프로파일"
  2396. msgctxt "@label"
  2397. msgid "Profiles"
  2398. msgstr "프로파일"
  2399. msgctxt "@title:tab"
  2400. msgid "Profiles"
  2401. msgstr "프로파일"
  2402. msgctxt "@label"
  2403. msgid "Profiles compatible with active printer:"
  2404. msgstr "활성화된 프린터와 호환되는 프로파일:"
  2405. msgctxt "@label Description for application dependency"
  2406. msgid "Programming language"
  2407. msgstr "프로그래밍 언어"
  2408. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2409. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2410. msgstr "프로젝트 파일 <filename>{0}</filename>에 알 수 없는 기기 유형 <message>{1}</message>이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다."
  2411. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2412. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2413. msgstr "프로젝트 파일 <filename>{0}</filename>이 손상됨: <message>{1}</message>."
  2414. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2415. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2416. msgstr "프로젝트 파일 <filename>{0}</filename>이(가) 이 버전의 UltiMaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다."
  2417. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2418. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2419. msgstr "프로젝트 파일 <filename>{0}</filename>에 갑자기 접근할 수 없습니다: <message>{1}</message>."
  2420. msgctxt "@label"
  2421. msgid "Properties"
  2422. msgstr "속성"
  2423. msgctxt "@label"
  2424. msgid "PyQt version"
  2425. msgstr "PyQt 버전"
  2426. msgctxt "@Label Description for application dependency"
  2427. msgid "Python Error tracking library"
  2428. msgstr "Python 오류 추적 라이브러리"
  2429. msgctxt "@label Description for application dependency"
  2430. msgid "Python bindings for Clipper"
  2431. msgstr "Clipper용 Python 바인딩"
  2432. msgctxt "@label Description for application component"
  2433. msgid "Python bindings for libnest2d"
  2434. msgstr "libnest2d용 Python 바인딩"
  2435. msgctxt "@label"
  2436. msgid "Qt version"
  2437. msgstr "Qt 버전"
  2438. msgctxt "@info:status"
  2439. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2440. msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다."
  2441. msgctxt "@info:title"
  2442. msgid "Queue Full"
  2443. msgstr "대기열 가득 참"
  2444. msgctxt "@label"
  2445. msgid "Queued"
  2446. msgstr "대기 중"
  2447. msgctxt "@info:button, %1 is the application name"
  2448. msgid "Quit %1"
  2449. msgstr "%1 종료"
  2450. msgctxt "@button"
  2451. msgid "Recommended"
  2452. msgstr "추천"
  2453. msgctxt "@title:tab"
  2454. msgid "Recommended"
  2455. msgstr "추천"
  2456. msgctxt "@label"
  2457. msgid "Recommended print settings"
  2458. msgstr "권장 프린트 설정"
  2459. msgctxt "@info %1 is the name of a profile"
  2460. msgid "Recommended settings (for <b>%1</b>) were altered."
  2461. msgstr "(<b>%1</b>)에 대한 권장 설정이 변경되었습니다."
  2462. msgctxt "@action:button"
  2463. msgid "Refresh"
  2464. msgstr "새로고침"
  2465. msgctxt "@button"
  2466. msgid "Refresh"
  2467. msgstr "새로고침"
  2468. msgctxt "@label"
  2469. msgid "Refresh"
  2470. msgstr "새로고침"
  2471. msgctxt "@button"
  2472. msgid "Refresh List"
  2473. msgstr "목록 새로고침"
  2474. msgctxt "@button"
  2475. msgid "Refreshing..."
  2476. msgstr "새로 고침 중..."
  2477. msgctxt "@label"
  2478. msgid "Release Notes"
  2479. msgstr "릴리즈 노트"
  2480. msgctxt "@action:inmenu menubar:file"
  2481. msgid "Reload All Models"
  2482. msgstr "모든 모델 다시 로드"
  2483. msgctxt "@text:window"
  2484. msgid "Remember my choice"
  2485. msgstr "선택 기억하기"
  2486. msgctxt "@item:intext"
  2487. msgid "Removable Drive"
  2488. msgstr "이동식 드라이브"
  2489. msgctxt "@action:button"
  2490. msgid "Remove"
  2491. msgstr "제거"
  2492. msgctxt "@action:button"
  2493. msgid "Remove printers"
  2494. msgstr "프린터 제거"
  2495. msgctxt "@title:window"
  2496. msgid "Remove printers?"
  2497. msgstr "프린터를 제거하시겠습니까?"
  2498. msgctxt "@action:button"
  2499. msgid "Rename"
  2500. msgstr "이름 바꾸기"
  2501. msgctxt "@title:window"
  2502. msgid "Rename"
  2503. msgstr "이름 변경"
  2504. msgctxt "@title:window"
  2505. msgid "Rename Profile"
  2506. msgstr "프로파일 이름 바꾸기"
  2507. msgctxt "@action:inmenu menubar:help"
  2508. msgid "Report a &Bug"
  2509. msgstr "버그 리포트"
  2510. msgctxt "@label:button"
  2511. msgid "Report a bug"
  2512. msgstr "버그 리포트"
  2513. msgctxt "@message:button"
  2514. msgid "Report a bug"
  2515. msgstr "버그 보고"
  2516. msgctxt "@message:description"
  2517. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2518. msgstr "UltiMaker Cura의 이슈 트래커에서 버그를 보고하세요."
  2519. msgctxt "@label:status"
  2520. msgid "Requires configuration changes"
  2521. msgstr "구성 변경 필요"
  2522. msgctxt "@action:inmenu menubar:edit"
  2523. msgid "Reset All Model Positions"
  2524. msgstr "모든 모델의 위치 재설정"
  2525. msgctxt "@action:inmenu menubar:edit"
  2526. msgid "Reset All Model Transformations"
  2527. msgstr "모든 모델의 변환 재설정"
  2528. msgctxt "@info"
  2529. msgid "Reset to defaults."
  2530. msgstr "기본값으로 재설정합니다."
  2531. msgctxt "@label"
  2532. msgid "Resolution"
  2533. msgstr "해상도"
  2534. msgctxt "@button"
  2535. msgid "Restore"
  2536. msgstr "복원"
  2537. msgctxt "@dialog:title"
  2538. msgid "Restore Backup"
  2539. msgstr "백업 복원"
  2540. msgctxt "@option:check"
  2541. msgid "Restore window position on start"
  2542. msgstr "시작 시 창 위치 복원"
  2543. msgctxt "@label"
  2544. msgid "Resume"
  2545. msgstr "재개"
  2546. msgctxt "@label"
  2547. msgid "Resuming..."
  2548. msgstr "다시 시작..."
  2549. msgctxt "@label:status"
  2550. msgid "Resuming..."
  2551. msgstr "다시 시작..."
  2552. msgctxt "@tooltip"
  2553. msgid "Retractions"
  2554. msgstr "리트랙션"
  2555. msgctxt "@button"
  2556. msgid "Retry?"
  2557. msgstr "재시도하시겠습니까?"
  2558. msgctxt "@action:inmenu menubar:view"
  2559. msgid "Right Side View"
  2560. msgstr "오른쪽에서 보기"
  2561. msgctxt "@info:tooltip"
  2562. msgid "Right View"
  2563. msgstr "오른쪽 보기"
  2564. msgctxt "@label Description for application dependency"
  2565. msgid "Root Certificates for validating SSL trustworthiness"
  2566. msgstr "SSL 신뢰성 검증용 루트 인증서"
  2567. msgctxt "@info:title"
  2568. msgid "Safely Remove Hardware"
  2569. msgstr "하드웨어 안전하게 제거"
  2570. msgctxt "@button"
  2571. msgid "Safety datasheet"
  2572. msgstr "안전성 데이터시트"
  2573. msgctxt "@action:button"
  2574. msgid "Save"
  2575. msgstr "저장"
  2576. msgctxt "@option"
  2577. msgid "Save Cura project"
  2578. msgstr "Cura 프로젝트 저장하기"
  2579. msgctxt "@option"
  2580. msgid "Save Cura project and .makerbot print file"
  2581. msgstr "Cura 프로젝트 및 .makerbot 출력 파일 저장"
  2582. msgctxt "@option"
  2583. msgid "Save Cura project and .ufp print file"
  2584. msgstr "Cura 프로젝트 및 .ufp 출력 파일 저장"
  2585. msgctxt "@title:window"
  2586. msgid "Save Custom Profile"
  2587. msgstr "사용자 지정 프로필 저장"
  2588. msgctxt "@title:window"
  2589. msgid "Save Project"
  2590. msgstr "프로젝트 저장"
  2591. msgctxt "@title:menu menubar:file"
  2592. msgid "Save Project..."
  2593. msgstr "프로젝트 저장 중..."
  2594. msgctxt "@action:button"
  2595. msgid "Save as new custom profile"
  2596. msgstr "새 사용자 지정 프로필로 저장"
  2597. msgctxt "@action:button"
  2598. msgid "Save changes"
  2599. msgstr "변경 사항 저장"
  2600. msgctxt "@button"
  2601. msgid "Save new profile"
  2602. msgstr "새 프로필 저장"
  2603. msgctxt "@action:button"
  2604. msgid "Save project"
  2605. msgstr "프로젝트 저장"
  2606. msgctxt "@text"
  2607. msgid "Save the .umm file on a USB stick."
  2608. msgstr ".umm 파일을 USB 스틱에 저장합니다."
  2609. msgctxt "@action:button Preceded by 'Ready to'."
  2610. msgid "Save to Removable Drive"
  2611. msgstr "이동식 드라이브에 저장"
  2612. msgctxt "@item:inlistbox"
  2613. msgid "Save to Removable Drive {0}"
  2614. msgstr "이동식 드라이브 {0}에 저장"
  2615. msgctxt "@info:status"
  2616. msgid "Saved to Removable Drive {0} as {1}"
  2617. msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다."
  2618. msgctxt "@info:title"
  2619. msgid "Saving"
  2620. msgstr "저장"
  2621. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2622. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2623. msgstr "이동식 드라이브 <filename>{0}</filename>에 저장"
  2624. msgctxt "@option:check"
  2625. msgid "Scale extremely small models"
  2626. msgstr "매우 작은 모델의 크기 조정"
  2627. msgctxt "@option:check"
  2628. msgid "Scale large models"
  2629. msgstr "큰 모델의 사이즈 수정"
  2630. msgctxt "@placeholder"
  2631. msgid "Search"
  2632. msgstr "검색"
  2633. msgctxt "@info"
  2634. msgid "Search in the browser"
  2635. msgstr "브라우저에서 검색"
  2636. msgctxt "@label:textbox"
  2637. msgid "Search settings"
  2638. msgstr "검색 설정"
  2639. msgctxt "@action:inmenu menubar:edit"
  2640. msgid "Select All Models"
  2641. msgstr "모든 모델 선택"
  2642. msgctxt "@title:window"
  2643. msgid "Select Printer"
  2644. msgstr "프린터 선택"
  2645. msgctxt "@title:window"
  2646. msgid "Select Settings to Customize for this model"
  2647. msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오"
  2648. msgctxt "@text"
  2649. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2650. msgstr "UltiMaker 3D 프린터에 최적화된 재료 프로파일을 선택하고 설치하십시오."
  2651. msgctxt "@label"
  2652. msgid "Select configuration"
  2653. msgstr "구성 선택"
  2654. msgctxt "@title:window"
  2655. msgid "Select custom firmware"
  2656. msgstr "사용자 정의 펌웨어 선택"
  2657. msgctxt "@option:check"
  2658. msgid "Select models when loaded"
  2659. msgstr "로드된 경우 모델 선택"
  2660. msgctxt "@action:button"
  2661. msgid "Select settings"
  2662. msgstr "설정 선택"
  2663. msgctxt "@action"
  2664. msgid "Select upgrades"
  2665. msgstr "업그레이드 선택"
  2666. msgctxt "@label"
  2667. msgid "Select your printer from the list below:"
  2668. msgstr "아래 목록에서 프린터를 선택하십시오:"
  2669. msgctxt "@option:check"
  2670. msgid "Send (anonymous) print information"
  2671. msgstr "(익명) 프린터 정보 보내기"
  2672. msgctxt "@label"
  2673. msgid "Send G-code"
  2674. msgstr "Gcode 보내기"
  2675. msgctxt "@tooltip of G-code command input"
  2676. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2677. msgstr "연결된 프린터에 사용자 정의 G 코드 명령을 보냅니다. ‘Enter’키를 눌러 명령을 전송하십시오."
  2678. msgctxt "@action:button"
  2679. msgid "Send crash report to UltiMaker"
  2680. msgstr "충돌 보고서를 UltiMaker에 보내기"
  2681. msgctxt "@info:tooltip"
  2682. msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send."
  2683. msgstr "등록된 UltiMaker 계정 이름 및 프로젝트 이름을 포함한 충돌 보고를 UltiMaker Sentry에 전송합니다. 실제 모델 데이터는 전송되지 않습니다."
  2684. msgctxt "@info:tooltip"
  2685. msgid "Send crash reports without any personally identifiable information or models data to UltiMaker."
  2686. msgstr "개인 식별 정보 또는 모델 데이터를 제외한 충돌 보고를 UltiMaker에 전송합니다."
  2687. msgctxt "@option:check"
  2688. msgid "Send engine crash reports"
  2689. msgstr "엔진 충돌 보고 전송"
  2690. msgctxt "@action:button"
  2691. msgid "Send report"
  2692. msgstr "보고서 전송"
  2693. msgctxt "@info:status"
  2694. msgid "Sending Print Job"
  2695. msgstr "인쇄 작업 전송"
  2696. msgctxt "@info:title"
  2697. msgid "Sending materials to printer"
  2698. msgstr "재료를 프린터로 전송 중"
  2699. msgctxt "@label Description for application dependency"
  2700. msgid "Serial communication library"
  2701. msgstr "직렬 통신 라이브러리"
  2702. msgctxt "@action:inmenu"
  2703. msgid "Set as Active Extruder"
  2704. msgstr "활성 익스트루더로 설정"
  2705. msgctxt "@title:column"
  2706. msgid "Setting"
  2707. msgstr "설정"
  2708. msgctxt "@title:tab"
  2709. msgid "Setting Visibility"
  2710. msgstr "보기 설정"
  2711. msgctxt "@info:progress"
  2712. msgid "Setting up preferences..."
  2713. msgstr "환경 설정을 설정하는 중..."
  2714. msgctxt "@info:progress"
  2715. msgid "Setting up scene..."
  2716. msgstr "장면 설정 중..."
  2717. msgctxt "@action:label"
  2718. msgid "Setting visibility"
  2719. msgstr "표시 설정"
  2720. msgctxt "@label"
  2721. msgid "Settings"
  2722. msgstr "설정"
  2723. msgctxt "@title:tab"
  2724. msgid "Settings"
  2725. msgstr "설정"
  2726. msgctxt "@action:label"
  2727. msgid "Settings Loaded from UCP file"
  2728. msgstr "UCP 파일에서 불러온 설정"
  2729. msgctxt "@info:message Followed by a list of settings."
  2730. msgid "Settings have been changed to match the current availability of extruders:"
  2731. msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:"
  2732. msgctxt "@info:title"
  2733. msgid "Settings updated"
  2734. msgstr "설정이 업데이트되었습니다"
  2735. msgctxt "@text"
  2736. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2737. msgstr "UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기"
  2738. msgctxt "@label"
  2739. msgid "Shell"
  2740. msgstr "외곽"
  2741. msgctxt "@action:label"
  2742. msgid "Shell Thickness"
  2743. msgstr "셸 두께"
  2744. msgctxt "@info:tooltip"
  2745. msgid "Should Cura check for updates when the program is started?"
  2746. msgstr "Cura가 프로그램이 시작될 때 업데이트를 확인할까요?"
  2747. msgctxt "@info:tooltip"
  2748. msgid "Should Cura open at the location it was closed?"
  2749. msgstr "닫힌 위치에서 Cura를 열어야 합니까?"
  2750. msgctxt "@info:tooltip"
  2751. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2752. msgstr "프린터 이름에 기반한 접두어가 프린팅 작업 이름에 자동으로 추가되어야합니까?"
  2753. msgctxt "@info:tooltip"
  2754. msgid "Should a summary be shown when saving a project file?"
  2755. msgstr "프로젝트 파일을 저장할 때 요약이 표시되어야합니까?"
  2756. msgctxt "@info:tooltip"
  2757. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  2758. msgstr "Cura가 시작될 때마다 새로운 플러그인을 자동 확인해야 합니까? 사용 안 함으로 설정하지 않는 것이 좋습니다!"
  2759. msgctxt "@info:tooltip"
  2760. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  2761. msgstr "프린터에 대한 익명의 데이터를 UltiMaker로 보낼까요? 모델, IP 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다."
  2762. msgctxt "@info:tooltip"
  2763. msgid "Should layer be forced into compatibility mode?"
  2764. msgstr "레이어가 호환 모드로 강제 설정되어야합니까?"
  2765. msgctxt "@info:tooltip"
  2766. msgid "Should models be scaled to the build volume if they are too large?"
  2767. msgstr "크기가 너무 큰 경우 모델을 빌드 볼륨에 맞게 조정해야합니까?"
  2768. msgctxt "@info:tooltip"
  2769. msgid "Should models be selected after they are loaded?"
  2770. msgstr "모델을 로드한 후에 선택해야 합니까?"
  2771. msgctxt "@info:tooltip"
  2772. msgid "Should models on the platform be moved down to touch the build plate?"
  2773. msgstr "모델을 빌드 플레이트에 닿도록 아래로 움직여야합니까?"
  2774. msgctxt "@info:tooltip"
  2775. msgid "Should models on the platform be moved so that they no longer intersect?"
  2776. msgstr "모델을 더 이상 교차시키지 않도록 이동해야합니까?"
  2777. msgctxt "@info:tooltip"
  2778. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2779. msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?"
  2780. msgctxt "@info:tooltip"
  2781. msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission."
  2782. msgstr "슬라이싱 충돌이 발생하면 Ultimaker에 자동으로 보고해야 하나요? 사용자가 명시적으로 권한을 부여하지 않는 한 모델, IP 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다."
  2783. msgctxt "@info:tooltip"
  2784. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2785. msgstr "Cura의 단일 인스턴스에서 새 모델을 로드하기 전에 빌드 플레이트를 지워야 합니까?"
  2786. msgctxt "@info:tooltip"
  2787. msgid "Should the default zoom behavior of cura be inverted?"
  2788. msgstr "큐라의 기본 확대 동작을 반전시켜야 합니까?"
  2789. msgctxt "@info:tooltip"
  2790. msgid "Should zooming move in the direction of the mouse?"
  2791. msgstr "확대가 마우스 방향으로 이동해야 합니까?"
  2792. msgctxt "@label"
  2793. msgid "Show 5 Detailed Layers On Top"
  2794. msgstr "상단에 5 개의 세부 레이어 표시"
  2795. msgctxt "@action:inmenu menubar:help"
  2796. msgid "Show Configuration Folder"
  2797. msgstr "설정 폴더 표시"
  2798. msgctxt "@button"
  2799. msgid "Show Custom"
  2800. msgstr "사용자 지정 표시"
  2801. msgctxt "@action:inmenu menubar:help"
  2802. msgid "Show Online &Documentation"
  2803. msgstr "온라인 문서 표시"
  2804. msgctxt "@action:inmenu"
  2805. msgid "Show Online Troubleshooting"
  2806. msgstr "온라인 문제 해결 표시"
  2807. msgctxt "@label:checkbox"
  2808. msgid "Show all"
  2809. msgstr "모두 보이기"
  2810. msgctxt "@label"
  2811. msgid "Show all connected printers"
  2812. msgstr "연결된 프린터 모두 표시"
  2813. msgctxt "@info:tooltip"
  2814. msgid "Show an icon and notifications in the system notification area."
  2815. msgstr "시스템 알림 영역에 아이콘과 알림을 표시합니다."
  2816. msgctxt "@info:tooltip"
  2817. msgid "Show caution message in g-code reader."
  2818. msgstr "g-code 리더에 주의 메시지를 표시하기."
  2819. msgctxt "@action:button"
  2820. msgid "Show configuration folder"
  2821. msgstr "설정 폴더 보기"
  2822. msgctxt "@action:button"
  2823. msgid "Show detailed crash report"
  2824. msgstr "충돌 리포트 보기"
  2825. msgctxt "@action:button"
  2826. msgid "Show settings"
  2827. msgstr "설정 표시"
  2828. msgctxt "@option:check"
  2829. msgid "Show summary dialog when saving project"
  2830. msgstr "프로젝트 저장시 요약 대화 상자 표시"
  2831. msgctxt "@tooltip:button"
  2832. msgid "Show your support for Cura with a donation."
  2833. msgstr "기부로 Cura에 대한 지지를 보여주세요."
  2834. msgctxt "@button"
  2835. msgid "Sign Out"
  2836. msgstr "로그아웃"
  2837. msgctxt "@action:button"
  2838. msgid "Sign in"
  2839. msgstr "로그인"
  2840. msgctxt "@button"
  2841. msgid "Sign in"
  2842. msgstr "로그인"
  2843. msgctxt "@title:header"
  2844. msgid "Sign in"
  2845. msgstr "로그인"
  2846. msgctxt "@info"
  2847. msgid "Sign in into UltiMaker Digital Factory"
  2848. msgstr "UltiMaker Digital Factory에 로그인합니다."
  2849. msgctxt "@button"
  2850. msgid "Sign in to Digital Factory"
  2851. msgstr "Digital Factory에 로그인"
  2852. msgctxt "@label"
  2853. msgid "Sign in to the UltiMaker platform"
  2854. msgstr "UltiMaker 플랫폼에 로그인"
  2855. msgctxt "@tooltip"
  2856. msgid "Skin"
  2857. msgstr "스킨"
  2858. msgctxt "@action:button"
  2859. msgid "Skip"
  2860. msgstr "건너뛰기"
  2861. msgctxt "@button"
  2862. msgid "Skip"
  2863. msgstr "건너뛰기"
  2864. msgctxt "@tooltip"
  2865. msgid "Skirt"
  2866. msgstr "스커트"
  2867. msgctxt "@button"
  2868. msgid "Slice"
  2869. msgstr "슬라이스"
  2870. msgctxt "@option:check"
  2871. msgid "Slice automatically"
  2872. msgstr "자동으로 슬라이싱"
  2873. msgctxt "@info:tooltip"
  2874. msgid "Slice automatically when changing settings."
  2875. msgstr "설정이 변경되면 자동으로 슬라이싱 합니다."
  2876. msgctxt "@message:title"
  2877. msgid "Slicing failed"
  2878. msgstr "슬라이싱 실패"
  2879. msgctxt "@label:PrintjobStatus"
  2880. msgid "Slicing..."
  2881. msgstr "슬라이싱..."
  2882. msgctxt "@action:label"
  2883. msgid "Smoothing"
  2884. msgstr "스무딩(smoothing)"
  2885. msgctxt "@label"
  2886. msgid "Solid"
  2887. msgstr "솔리드"
  2888. msgctxt "@item:inmenu"
  2889. msgid "Solid view"
  2890. msgstr "솔리드 뷰"
  2891. msgctxt "@label"
  2892. msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible."
  2893. msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다."
  2894. "이 설정을 표시하려면 클릭하십시오."
  2895. msgctxt "@info:status"
  2896. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  2897. msgstr "프로젝트 파일에 사용된 일부 패키지가 현재 Cura에 설치되어 있지 않아 원하지 않는 인쇄 결과가 발생할 수 있습니다. 마켓플레이스에서 필요한 모든 패키지를 설치하는 것이 좋습니다."
  2898. msgctxt "@info:title"
  2899. msgid "Some required packages are not installed"
  2900. msgstr "일부 필수 패키지가 설치되지 않았습니다"
  2901. msgctxt "@info %1 is the name of a profile"
  2902. msgid "Some setting-values defined in <b>%1</b> were overridden."
  2903. msgstr "<b>%1</b>에 정의된 일부 설정 값이 재정의되었습니다."
  2904. msgctxt "@tooltip"
  2905. msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager."
  2906. msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다."
  2907. "프로파일 매니저를 열려면 클릭하십시오."
  2908. msgctxt "@action:label"
  2909. msgid "Some settings from current profile were overwritten."
  2910. msgstr "현재 프로파일의 일부 설정을 덮어썼습니다."
  2911. msgctxt "@message"
  2912. msgid "Something unexpected happened when trying to log in, please try again."
  2913. msgstr "로그인을 시도할 때 예기치 못한 문제가 발생했습니다. 다시 시도하십시오."
  2914. msgctxt "@title:header"
  2915. msgid "Something went wrong when sending the materials to the printers."
  2916. msgstr "재료를 프린터로 전송할 때 어떤 문제가 발생했습니다."
  2917. msgctxt "@label"
  2918. msgid "Something went wrong..."
  2919. msgstr "오류가 발생하였습니다..."
  2920. msgctxt "@label:listbox"
  2921. msgid "Speed"
  2922. msgstr "속도"
  2923. msgctxt "@action:inmenu"
  2924. msgid "Sponsor Cura"
  2925. msgstr "스폰서 Cura"
  2926. msgctxt "@label:button"
  2927. msgid "Sponsor Cura"
  2928. msgstr "스폰서 Cura"
  2929. msgctxt "@option:radio"
  2930. msgid "Stable and Beta releases"
  2931. msgstr "안정적인 베타 릴리즈"
  2932. msgctxt "@option:radio"
  2933. msgid "Stable releases only"
  2934. msgstr "안정적인 릴리즈만 해당"
  2935. msgctxt "@item:inlistbox"
  2936. msgid "Stanford Triangle Format"
  2937. msgstr "Stanford Triangle Format"
  2938. msgctxt "@button"
  2939. msgid "Start"
  2940. msgstr "시작"
  2941. msgctxt "@action:button"
  2942. msgid "Start Build Plate Leveling"
  2943. msgstr "빌드플레이트 레벨링 시작하기"
  2944. msgctxt "@title:label"
  2945. msgid "Start G-code"
  2946. msgstr "시작 GCode"
  2947. msgctxt "@label"
  2948. msgid "Start the slicing process"
  2949. msgstr "슬라이싱 프로세스 시작"
  2950. msgctxt "@label"
  2951. msgid "Starts"
  2952. msgstr "시작"
  2953. msgctxt "@text"
  2954. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2955. msgstr "당사의 놀라운 사용자 커뮤니티에서 기여한 플러그인으로 워크 플로를 간소화하고 UltiMaker Cura 경험을 맞춤화하세요."
  2956. msgctxt "@label"
  2957. msgid "Strength"
  2958. msgstr "강도"
  2959. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2960. msgid "Successfully exported material to <filename>%1</filename>"
  2961. msgstr "재료를 성공적으로 내보냈습니다"
  2962. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2963. msgid "Successfully imported material <filename>%1</filename>"
  2964. msgstr "재료를 성공적으로 가져왔습니다"
  2965. msgctxt "@info:status"
  2966. msgid "Successfully imported profile {0}."
  2967. msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다."
  2968. msgctxt "@action:label"
  2969. msgid "Suggested Material settings"
  2970. msgstr "추천 재료 설정"
  2971. msgctxt "@action:label"
  2972. msgid "Suggested Profile settings"
  2973. msgstr "추천 프로필 설정"
  2974. msgctxt "@action:title"
  2975. msgid "Summary - Cura Project"
  2976. msgstr "요약 - Cura 프로젝트"
  2977. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2978. msgid "Summary - Open Universal Cura Project (UCP)"
  2979. msgstr "요약 - 범용 Cura 프로젝트(UCP) 열기"
  2980. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2981. msgid "Summary - Universal Cura Project"
  2982. msgstr "요약 - 범용 Cura 프로젝트"
  2983. msgctxt "@label"
  2984. msgid "Support"
  2985. msgstr "서포트"
  2986. msgctxt "@tooltip"
  2987. msgid "Support"
  2988. msgstr "서포트"
  2989. msgctxt "@label"
  2990. msgid "Support Blocker"
  2991. msgstr "서포트 차단기"
  2992. msgctxt "@tooltip"
  2993. msgid "Support Infill"
  2994. msgstr "내부채움 서포트"
  2995. msgctxt "@tooltip"
  2996. msgid "Support Interface"
  2997. msgstr "지원하는 인터페이스"
  2998. msgctxt "@action:label"
  2999. msgid "Support Type"
  3000. msgstr "지원 유형"
  3001. msgctxt "@label Description for application dependency"
  3002. msgid "Support library for faster math"
  3003. msgstr "더 빠른 수학연산을 위한 라이브러리"
  3004. msgctxt "@label Description for application component"
  3005. msgid "Support library for file metadata and streaming"
  3006. msgstr "파일 메타데이터 및 스트리밍을 위한 지원 라이브러리"
  3007. msgctxt "@label Description for application component"
  3008. msgid "Support library for handling 3MF files"
  3009. msgstr "3MF 파일 처리를 위한 라이브러리"
  3010. msgctxt "@label Description for application dependency"
  3011. msgid "Support library for handling STL files"
  3012. msgstr "STL 파일 처리를 위한 라이브러리"
  3013. msgctxt "@label Description for application dependency"
  3014. msgid "Support library for handling triangular meshes"
  3015. msgstr "삼각형 메쉬 처리를 위한 지원 라이브러리"
  3016. msgctxt "@label Description for application dependency"
  3017. msgid "Support library for scientific computing"
  3018. msgstr "과학 컴퓨팅을 위한 라이브러리"
  3019. msgctxt "@label Description for application dependency"
  3020. msgid "Support library for system keyring access"
  3021. msgstr "시스템 키링 액세스를 위한 서포트 라이브러리"
  3022. msgctxt "@action:button"
  3023. msgid "Sync"
  3024. msgstr "동기화"
  3025. msgctxt "@button"
  3026. msgid "Sync"
  3027. msgstr "동기화"
  3028. msgctxt "@title:header"
  3029. msgid "Sync material profiles via USB"
  3030. msgstr "재료 프로파일을 USB로 동기화"
  3031. msgctxt "@action:button"
  3032. msgid "Sync materials"
  3033. msgstr "재료 동기화"
  3034. msgctxt "@button"
  3035. msgid "Sync materials with USB"
  3036. msgstr "재료를 USB로 동기화"
  3037. msgctxt "@title:header"
  3038. msgid "Sync materials with printers"
  3039. msgstr "재료를 프린터와 동기화"
  3040. msgctxt "@title:window"
  3041. msgid "Sync materials with printers"
  3042. msgstr "재료를 프린터와 동기화"
  3043. msgctxt "@action:button"
  3044. msgid "Sync with Printers"
  3045. msgstr "프린터와 동기화"
  3046. msgctxt "@button"
  3047. msgid "Syncing"
  3048. msgstr "동기화 중"
  3049. msgctxt "@info:generic"
  3050. msgid "Syncing..."
  3051. msgstr "동기화 중..."
  3052. msgctxt "@title:groupbox"
  3053. msgid "System information"
  3054. msgstr "시스템 정보"
  3055. msgctxt "@button"
  3056. msgid "Technical datasheet"
  3057. msgstr "기술 데이터시트"
  3058. msgctxt "@info:tooltip"
  3059. msgid "The amount of smoothing to apply to the image."
  3060. msgstr "이미지에 적용할 스무딩(smoothing)의 정도."
  3061. msgctxt "@text"
  3062. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3063. msgstr "어닐링 프로파일은 인쇄가 완료된 후 오븐에서 후처리가 필요합니다. 이 프로파일은 어닐링 후에도 프린트된 부품의 치수 정확도를 유지하고 강도, 강성 및 내열성을 개선합니다."
  3064. msgctxt "@label"
  3065. msgid "The assigned printer, %1, requires the following configuration change:"
  3066. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3067. msgstr[0] "할당된 프린터 %1의 구성을 다음과 같이 변경해야 합니다:"
  3068. msgctxt "@error:file_size"
  3069. msgid "The backup exceeds the maximum file size."
  3070. msgstr "백업이 최대 파일 크기를 초과했습니다."
  3071. msgctxt "@text"
  3072. msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy."
  3073. msgstr "균형 프로파일은 생산성, 표면 품질, 기계적 특성 및 치수 정확도 사이의 균형을 찾기 위해 설계되었습니다."
  3074. msgctxt "@info:tooltip"
  3075. msgid "The base height from the build plate in millimeters."
  3076. msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이."
  3077. msgctxt "@info:status"
  3078. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  3079. msgstr "\"프린팅 순서\"설정 값으로 인해 갠트리가 프린팅 된 모델과 충돌하지 않도록 출력물 높이가 줄어 들었습니다."
  3080. msgctxt "@status"
  3081. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3082. msgstr "현재 클라우드 연결을 사용할 수 없습니다. 사용자의 인터넷 연결을 확인하십시오."
  3083. msgctxt "@status"
  3084. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3085. msgstr "현재 클라우드 연결을 사용할 수 없습니다. 클라우드 프린터에 연결하려면 로그인하십시오."
  3086. msgctxt "@status"
  3087. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3088. msgstr "클라우드 프린터가 오프라인 상태입니다. 프린터가 켜져 있고 인터넷과 연결되어 있는지 확인하십시오."
  3089. msgctxt "@tooltip"
  3090. msgid "The colour of the material in this extruder."
  3091. msgstr "이 익스트루더의 재료 색."
  3092. msgctxt "@tooltip"
  3093. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3094. msgstr "이 익스트루더의 구성이 허용되지 않았으며, 슬라이싱이 금지됩니다."
  3095. msgctxt "@label"
  3096. msgid "The configurations are not available because the printer is disconnected."
  3097. msgstr "프린터가 연결되어 있지 않기 때문에 구성을 사용할 수 없습니다."
  3098. msgctxt "@tooltip"
  3099. msgid "The current temperature of the heated bed."
  3100. msgstr "가열 된 베드의 현재 온도."
  3101. msgctxt "@tooltip"
  3102. msgid "The current temperature of this hotend."
  3103. msgstr "이 익스트루더의 현재 온도."
  3104. msgctxt "@info:tooltip"
  3105. msgid "The depth in millimeters on the build plate"
  3106. msgstr "빌드 플레이트의 깊이 (밀리미터)"
  3107. msgctxt "@text"
  3108. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3109. msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다."
  3110. msgctxt "@text"
  3111. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3112. msgstr "엔지니어링 프로파일은 정확도를 개선하고 허용 오차를 좁히려는 의도로 기능 프로토타입 및 최종 사용 부품을 인쇄하도록 설계되었습니다."
  3113. msgctxt "@label"
  3114. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3115. msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다."
  3116. msgctxt "@label Don't translate the XML tag <filename>!"
  3117. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3118. msgstr "파일 <filename>{0}</filename>이 이미 있습니다. 덮어 쓰시겠습니까?"
  3119. msgctxt "@label"
  3120. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3121. msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다."
  3122. msgctxt "@info:backup_failed"
  3123. msgid "The following error occurred while trying to restore a Cura backup:"
  3124. msgstr "Cura 백업을 복원하는 동안 다음 오류가 발생했습니다."
  3125. msgctxt "@label"
  3126. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3127. msgstr "호환되지 않는 Cura 버전이기 때문에 다음 패키지를 설치할 수 없습니다:"
  3128. msgctxt "@label"
  3129. msgid "The following packages will be added:"
  3130. msgstr "다음 패키지가 추가됩니다:"
  3131. msgctxt "@label"
  3132. msgid "The following printers in your account have been added in Cura:"
  3133. msgstr "계정에 있는 다음 프린터가 Cura에 추가되었습니다."
  3134. msgctxt "@title:header"
  3135. msgid "The following printers will receive the new material profiles:"
  3136. msgstr "다음 프린터는 새 재료 프로필을 받게 됩니다:"
  3137. msgctxt "@info:tooltip"
  3138. msgid "The following script is active:"
  3139. msgid_plural "The following scripts are active:"
  3140. msgstr[0] "다음 스크립트들이 활성화됩니다:"
  3141. msgctxt "@label"
  3142. msgid "The following settings define the strength of your part."
  3143. msgstr "다음 설정은 부품의 강도를 정의합니다."
  3144. msgctxt "@info:status"
  3145. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3146. msgstr "강조 표시된 영역은 누락되거나 관련 없는 표면을 표시합니다. 모델을 수정하고 Cura에서 다시 엽니다."
  3147. msgctxt "@tooltip"
  3148. msgid "The material in this extruder."
  3149. msgstr "이 익스트루더의 재료."
  3150. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3151. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  3152. msgstr "Ultimaker Marketplace에서 Cura 프로젝트와 관련된 재료 패키지를 찾을 수 없습니다. Cura 프로젝트 파일에 저장된 부분적인 재료 프로필 정의를 사용할 시 이로 인한 문제는 사용자 책임입니다."
  3153. msgctxt "@info:tooltip"
  3154. msgid "The maximum distance of each pixel from \"Base.\""
  3155. msgstr "\"Base\"에서 각 픽셀까지의 최대 거리."
  3156. msgctxt "@label (%1 is a number)"
  3157. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3158. msgstr "새 필라멘트의 직경은 %1 mm로 설정되었으며, 현재 압출기와 호환되지 않습니다. 계속하시겠습니까?"
  3159. msgctxt "@tooltip"
  3160. msgid "The nozzle inserted in this extruder."
  3161. msgstr "이 익스트루더에 삽입 된 노즐."
  3162. msgctxt "@label"
  3163. msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3164. msgstr "프린트의 인필 재료 패턴:"
  3165. "비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다."
  3166. "많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다."
  3167. "여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다."
  3168. msgctxt "@info:tooltip"
  3169. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  3170. msgstr "두께가 1mm인 출력물을 관통하는 빛의 비율 이 값을 낮추면 어두운 부분의 대조가 증가하고 이미지의 밝은 부분의 대조가 감소합니다."
  3171. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3172. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3173. msgstr "Cura 프로젝트와 관련된 플러그인을 Ultimaker 마켓플레이스에서 찾을 수 없습니다. 프로젝트를 슬라이스하는 데 플러그인이 필요할 수 있으므로 파일을 올바르게 슬라이스하지 못할 수 있습니다."
  3174. msgctxt "@info:title"
  3175. msgid "The print job was successfully submitted"
  3176. msgstr "프린트 작업이 성공적으로 제출되었습니다"
  3177. msgctxt "@label"
  3178. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3179. msgstr "프린터 %1이(가) 할당되었으나 작업에 알 수 없는 재료 구성이 포함되어 있습니다."
  3180. msgctxt "@label"
  3181. msgid "The printer at this address has not responded yet."
  3182. msgstr "이 주소의 프린터가 아직 응답하지 않았습니다."
  3183. msgctxt "@label"
  3184. msgid "The printer at this address has not yet responded."
  3185. msgstr "이 주소의 프린터가 아직 응답하지 않았습니다."
  3186. msgctxt "@info:status"
  3187. msgid "The printer is not connected."
  3188. msgstr "프린터가 연결되어 있지 않습니다."
  3189. msgctxt "@label"
  3190. msgid "The printer(s) below cannot be connected because they are part of a group"
  3191. msgstr "아래 프린터는 그룹에 속해 있기 때문에 연결할 수 없습니다"
  3192. msgctxt "@message"
  3193. msgid "The provided state is not correct."
  3194. msgstr "입력한 상태가 올바르지 않습니다."
  3195. msgctxt "@text:window"
  3196. msgid "The release notes could not be opened."
  3197. msgstr "릴리즈 노트를 열 수 없습니다."
  3198. msgctxt "@text:error"
  3199. msgid "The response from Digital Factory appears to be corrupted."
  3200. msgstr "Digital Factory의 응답이 손상된 것 같습니다."
  3201. msgctxt "@text:error"
  3202. msgid "The response from Digital Factory is missing important information."
  3203. msgstr "Digital Factory의 응답에 중요한 정보가 누락되었습니다."
  3204. msgctxt "@tooltip"
  3205. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3206. msgstr "가열 된 베드의 설정 온도. 베드가 이 온도로 가열되거나 식을 것입니다. 이 값이 0이면 베드 가열이 꺼집니다."
  3207. msgctxt "@tooltip"
  3208. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3209. msgstr "핫 엔드의 설정 온도입니다. 핫 엔드는 이 온도를 향해 가열되거나 냉각됩니다. 이 값이 0이면 온열 가열이 꺼집니다."
  3210. msgctxt "@tooltip of temperature input"
  3211. msgid "The temperature to pre-heat the bed to."
  3212. msgstr "베드를 예열하기 위한 온도."
  3213. msgctxt "@tooltip of temperature input"
  3214. msgid "The temperature to pre-heat the hotend to."
  3215. msgstr "노즐을 예열하기 위한 온도."
  3216. msgctxt "@text"
  3217. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3218. msgstr "시각적 프로파일은 높은 시각적 및 표면 품질의 의도를 지니고 시각적 프로토타입과 모델을 인쇄하기 위해 설계되었습니다."
  3219. msgctxt "@info:tooltip"
  3220. msgid "The width in millimeters on the build plate"
  3221. msgstr "빌드 플레이트의 폭 (밀리미터)"
  3222. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3223. msgid "Theme*:"
  3224. msgstr "테마*:"
  3225. msgctxt "@info:status"
  3226. msgid "There are no file formats available to write with!"
  3227. msgstr "쓸 수있는 파일 형식이 없습니다!"
  3228. msgctxt "@label"
  3229. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3230. msgstr "대기열에 프린팅 작업이 없습니다. 작업을 추가하려면 슬라이스하여 전송하십시오."
  3231. msgctxt "@tooltip"
  3232. msgid "There are no profiles matching the configuration of this extruder."
  3233. msgstr "이 익스트루더 구성에 일치하는 프로파일이 없습니다."
  3234. msgctxt "@info:status"
  3235. msgid "There is no active printer yet."
  3236. msgstr "아직 활성화된 프린터가 없습니다."
  3237. msgctxt "@label"
  3238. msgid "There is no printer found over your network."
  3239. msgstr "네트워크에서 검색된 프린터가 없습니다."
  3240. msgctxt "@error"
  3241. msgid "There is no workspace yet to write. Please add a printer first."
  3242. msgstr "작성할 작업 환경이 없습니다. 프린터를 먼저 추가하십시오."
  3243. msgctxt "@info:backup_status"
  3244. msgid "There was an error trying to restore your backup."
  3245. msgstr "백업 복원 시도 중 오류가 있었습니다."
  3246. msgctxt "@info:backup_status"
  3247. msgid "There was an error while creating your backup."
  3248. msgstr "백업을 생성하는 도중 오류가 있었습니다."
  3249. msgctxt "@info:backup_status"
  3250. msgid "There was an error while uploading your backup."
  3251. msgstr "백업을 업로드하는 도중 오류가 있었습니다."
  3252. msgctxt "@label"
  3253. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3254. msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없습니다. %2에 방문하여 올바른 재료 프로파일을 다운로드하십시오."
  3255. msgctxt "@text:window"
  3256. msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?"
  3257. msgstr "Cura 범용 프로젝트 파일입니다. Cura 프로젝트 또는 Cura 범용 프로젝트로 열거나 파일에서 모델을 가져오시겠습니까?"
  3258. msgctxt "@text:window"
  3259. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3260. msgstr "이 파일은 Cura 프로젝트 파일입니다. 프로젝트로 열거나 모델을 가져 오시겠습니까?"
  3261. msgctxt "@label"
  3262. msgid "This material is linked to %1 and shares some of its properties."
  3263. msgstr "이 재료는 %1에 연결되어 있으며 일부 속성을 공유합니다."
  3264. msgctxt "@label"
  3265. msgid "This package will be installed after restarting."
  3266. msgstr "다시 시작한 후에 이 패키지가 설치됩니다."
  3267. msgctxt "@label"
  3268. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3269. msgstr "알 수 없는 프린터이거나 그룹의 호스트가 아니기 때문에 이 프린터를 추가할 수 없습니다."
  3270. msgctxt "info:status"
  3271. msgid "This printer is not linked to the Digital Factory:"
  3272. msgid_plural "These printers are not linked to the Digital Factory:"
  3273. msgstr[0] "다음 프린터는 Digital Factory에 연결되어 있지 않습니다:"
  3274. msgctxt "@status"
  3275. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3276. msgstr "해당 프린터가 사용자의 계정에 연결되어 있지 않습니다. Ultimaker Digital Factory에 방문하여 연결을 설정하십시오."
  3277. msgctxt "@label"
  3278. msgid "This printer is not set up to host a group of printers."
  3279. msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다."
  3280. msgctxt "@label"
  3281. msgid "This printer is the host for a group of %1 printers."
  3282. msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다."
  3283. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3284. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3285. msgstr "프로파일 <filename>{0}</filename>에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다."
  3286. msgctxt "@action:label"
  3287. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3288. msgstr "이 프로파일은 프린터에서 지정한 기본값을 사용하므로 아래 목록에 아무런 설정/재정의가 없습니다."
  3289. msgctxt "@label"
  3290. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3291. msgstr "이 프로젝트에는 현재 Cura에 설치되지 않은 재료 또는 플러그인이 포함되어 있습니다.<br/>누락된 패키지를 설치하고 프로젝트를 다시 엽니다."
  3292. msgctxt "@label"
  3293. msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile."
  3294. msgstr "이 설정에는 프로파일과 다른 값이 있습니다."
  3295. "프로파일 값을 복원하려면 클릭하십시오."
  3296. msgctxt "@item:tooltip"
  3297. msgid "This setting has been hidden by the active machine and will not be visible."
  3298. msgstr "이 설정은 활성 기기에 의해 숨겨졌으며 보이지 않습니다."
  3299. msgctxt "@item:tooltip %1 is list of setting names"
  3300. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3301. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3302. msgstr[0] "이 설정은 %1 값으로 숨겨져 있습니다. 이 설정을 볼 수 있게 설정 값을 변경하십시오."
  3303. msgctxt "@label"
  3304. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3305. msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다."
  3306. msgctxt "@label"
  3307. msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value."
  3308. msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다."
  3309. "계산 된 값을 복원하려면 클릭하십시오."
  3310. msgctxt "@label"
  3311. msgid "This setting is not used because all the settings that it influences are overridden."
  3312. msgstr "영향을 미치는 모든 설정이 무효화되기 때문에 이 설정을 사용하지 않습니다."
  3313. msgctxt "@label"
  3314. msgid "This setting is resolved from conflicting extruder-specific values:"
  3315. msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:"
  3316. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3317. msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk."
  3318. msgstr "이 설정은 범용 Cura 프로젝트로 내보내는 동안 제대로 작동하지 않을 수 있으며, 사용자 책임하에 추가해야 합니다."
  3319. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3320. msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk."
  3321. msgstr "이 설정은 범용 Cura 프로젝트로 내보내는 동안 제대로 작동하지 않을 수 있으며, 사용자 책임하에 추가해야 합니다."
  3322. msgctxt "@info:warning"
  3323. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3324. msgstr "이 버전은 프로덕션용이 아닙니다. 문제가 발생하면 정식 버전 {self.getVersion()}을 언급하며 GitHub 페이지에 보고해 주세요."
  3325. msgctxt "@label"
  3326. msgid "Time estimation"
  3327. msgstr "시간 추산"
  3328. msgctxt "@message"
  3329. msgid "Timeout when authenticating with the account server."
  3330. msgstr "계정 서버 인증 시간이 초과되었습니다."
  3331. msgctxt "@text"
  3332. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3333. msgstr "Digital Factory에 연결된 모든 프린터와 자동으로 재료 프로파일을 동기화하려면 Cura에 가입되어 있어야 합니다."
  3334. msgctxt "info:status"
  3335. msgid "To establish a connection, please visit the {website_link}"
  3336. msgstr "연결을 설정하려면 {website_link}에 방문하십시오."
  3337. msgctxt "@label"
  3338. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3339. msgstr "프린팅이 잘 되도록 빌드 플레이트를 조정할 수 있습니다. '다음 위치로 이동'을 클릭하면 노즐이 조정할 수있는 다른 위치로 이동합니다."
  3340. msgctxt "@label"
  3341. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  3342. msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g-코드 파일을 프린터로 전송할 수 있습니다."
  3343. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3344. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3345. msgstr "{printer_name}을(를) 영구적으로 제거하려면 {digital_factory_link}을(를) 방문하십시오."
  3346. msgctxt "@action:inmenu"
  3347. msgid "Toggle Full Screen"
  3348. msgstr "전채 화면 전환"
  3349. msgctxt "@label"
  3350. msgid "Top / Bottom"
  3351. msgstr "위 / 아래"
  3352. msgctxt "@action:inmenu menubar:view"
  3353. msgid "Top View"
  3354. msgstr "위에서 보기"
  3355. msgctxt "@info:tooltip"
  3356. msgid "Top View"
  3357. msgstr "위에서 보기"
  3358. msgctxt "@label"
  3359. msgid "Total print time"
  3360. msgstr "총 인쇄 시간"
  3361. msgctxt "@action:tooltip"
  3362. msgid "Track the print in Ultimaker Digital Factory"
  3363. msgstr "Ultimaker Digital Factory에서 프린트 추적"
  3364. msgctxt "@item:inlistbox"
  3365. msgid "Translucency"
  3366. msgstr "반투명성"
  3367. msgctxt "@tooltip"
  3368. msgid "Travel"
  3369. msgstr "움직임 경로"
  3370. msgctxt "@label"
  3371. msgid "Travels"
  3372. msgstr "이동"
  3373. msgctxt "@info:backup_failed"
  3374. msgid "Tried to restore a Cura backup that is higher than the current version."
  3375. msgstr "현재 버전보다 높은 Cura 백업을 복원하려고 시도했습니다."
  3376. msgctxt "@info:backup_failed"
  3377. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3378. msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다."
  3379. msgctxt "@button"
  3380. msgid "Troubleshooting"
  3381. msgstr "문제 해결"
  3382. msgctxt "@label"
  3383. msgid "Troubleshooting"
  3384. msgstr "문제 해결"
  3385. msgctxt "@button"
  3386. msgid "Try again"
  3387. msgstr "다시 시도"
  3388. msgctxt "@action:label"
  3389. msgid "Type"
  3390. msgstr "유형"
  3391. msgctxt "@label"
  3392. msgid "Type"
  3393. msgstr "유형"
  3394. msgctxt "@item:inmenu"
  3395. msgid "USB printing"
  3396. msgstr "USB 프린팅"
  3397. msgctxt "@button"
  3398. msgid "UltiMaker Account"
  3399. msgstr "UltiMaker 계정"
  3400. msgctxt "@info"
  3401. msgid "UltiMaker Certified Material"
  3402. msgstr "UltiMaker 인증된 재료"
  3403. msgctxt "@text:window"
  3404. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  3405. msgstr "UltiMaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 익명 데이터를 수집합니다. 공유되는 모든 데이터의 예는 다음과 같습니다:"
  3406. msgctxt "@item:inlistbox"
  3407. msgid "UltiMaker Format Package"
  3408. msgstr "UltiMaker 포맷 패키지"
  3409. msgctxt "@info"
  3410. msgid "UltiMaker Verified Package"
  3411. msgstr "UltiMaker 검증된 패키지"
  3412. msgctxt "@info"
  3413. msgid "UltiMaker Verified Plug-in"
  3414. msgstr "UltiMaker 검증된 플러그인"
  3415. msgctxt "@button"
  3416. msgid "UltiMaker printer"
  3417. msgstr "UltiMaker 프린터"
  3418. msgctxt "@label:button"
  3419. msgid "UltiMaker support"
  3420. msgstr "UltiMaker 지원"
  3421. msgctxt "info:name"
  3422. msgid "Ultimaker Digital Factory"
  3423. msgstr "Ultimaker Digital Factory"
  3424. msgctxt "@info:status"
  3425. msgid "Unable to add the profile."
  3426. msgstr "프로파일을 추가할 수 없습니다."
  3427. msgctxt "@info:status"
  3428. msgid "Unable to find a location within the build volume for all objects"
  3429. msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다"
  3430. msgctxt "@info:plugin_failed"
  3431. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3432. msgstr "{self._plugin_id}에 대한 로컬 EnginePlugin 서버 실행 파일을 찾을 수 없습니다."
  3433. msgctxt "@info:plugin_failed"
  3434. msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied."
  3435. msgstr "실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}"
  3436. "접속이 거부되었습니다."
  3437. msgctxt "@info"
  3438. msgid "Unable to reach the UltiMaker account server."
  3439. msgstr "UltiMaker 계정 서버에 도달할 수 없음."
  3440. msgctxt "@text"
  3441. msgid "Unable to read example data file."
  3442. msgstr "예시 데이터 파일을 읽을 수 없습니다."
  3443. msgctxt "@info:title"
  3444. msgid "Unable to slice"
  3445. msgstr "슬라이스 할 수 없습니다"
  3446. msgctxt "@label:PrintjobStatus"
  3447. msgid "Unable to slice"
  3448. msgstr "슬라이스 할 수 없습니다"
  3449. msgctxt "@info:status"
  3450. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3451. msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다."
  3452. msgctxt "@info:status"
  3453. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3454. msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다."
  3455. msgctxt "@info:status"
  3456. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3457. msgstr "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}"
  3458. msgctxt "@info:status"
  3459. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3460. msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다."
  3461. msgctxt "@info:status"
  3462. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3463. msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}"
  3464. msgctxt "@info"
  3465. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3466. msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오."
  3467. msgctxt "@info:error"
  3468. msgid "Unable to write to file: {0}"
  3469. msgstr "파일에 쓰기 불가: {0}"
  3470. msgctxt "@label:status"
  3471. msgid "Unavailable"
  3472. msgstr "사용불가"
  3473. msgctxt "@label"
  3474. msgid "Unavailable printer"
  3475. msgstr "사용할 수 없는 프린터"
  3476. msgctxt "@action:inmenu menubar:edit"
  3477. msgid "Ungroup Models"
  3478. msgstr "모델 그룹 해제"
  3479. msgctxt "@button"
  3480. msgid "Uninstall"
  3481. msgstr "설치 제거"
  3482. msgctxt "@title:column Unit of measurement"
  3483. msgid "Unit"
  3484. msgstr "단위"
  3485. msgctxt "@item:inlistbox"
  3486. msgid "Universal Cura Project"
  3487. msgstr "범용 Cura 프로젝트"
  3488. msgctxt "@action:description Don't translate 'Universal Cura Project'"
  3489. msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing."
  3490. msgstr "범용 Cura 프로젝트 파일은 위치 데이터 및 선택된 설정을 유지한 채 여러 3D 프린터에서 출력할 수 있습니다. 파일을 내보낼 때 빌드 플레이트의 모든 모델이 현재 위치, 방향, 크기와 함께 포함됩니다. 적절한 출력을 위해 포함할 압출기별 또는 모델별 설정을 선택할 수도 있습니다."
  3491. msgctxt "@label Description for development tool"
  3492. msgid "Universal build system configuration"
  3493. msgstr "범용 빌드 시스템 설정"
  3494. msgctxt "@label"
  3495. msgid "Unknown"
  3496. msgstr "알 수 없는"
  3497. msgctxt "@label unknown version of Cura"
  3498. msgid "Unknown"
  3499. msgstr "알 수 없음"
  3500. msgctxt "@label:property"
  3501. msgid "Unknown Author"
  3502. msgstr "알 수 없는 원작자"
  3503. msgctxt "@label:property"
  3504. msgid "Unknown Package"
  3505. msgstr "알 수 없는 패키지"
  3506. msgctxt "@error:send"
  3507. msgid "Unknown error code when uploading print job: {0}"
  3508. msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}"
  3509. msgctxt "@text"
  3510. msgid "Unknown error."
  3511. msgstr "알 수 없는 오류입니다."
  3512. msgctxt "@label"
  3513. msgid "Unlink Material"
  3514. msgstr "재료 연결 해제"
  3515. msgctxt "@label:status"
  3516. msgid "Unreachable"
  3517. msgstr "연결할 수 없음"
  3518. msgctxt "@label"
  3519. msgid "Untitled"
  3520. msgstr "제목 없음"
  3521. msgctxt "@text Print job name"
  3522. msgid "Untitled"
  3523. msgstr "제목 없음"
  3524. msgctxt "@button"
  3525. msgid "Update"
  3526. msgstr "업데이트"
  3527. msgctxt "@action"
  3528. msgid "Update Firmware"
  3529. msgstr "펌웨어 업데이트"
  3530. msgctxt "@title"
  3531. msgid "Update Firmware"
  3532. msgstr "펌웨어 업데이트"
  3533. msgctxt "@action:ComboBox Update/override existing profile"
  3534. msgid "Update existing"
  3535. msgstr "기존 업데이트"
  3536. msgctxt "@action:tooltip"
  3537. msgid "Update profile with current settings/overrides"
  3538. msgstr "현재 설정 / 재정의 프로파일 업데이트"
  3539. msgctxt "@action:button"
  3540. msgid "Update profile."
  3541. msgstr "프로파일을 업데이트하십시오."
  3542. msgctxt "@info:title"
  3543. msgid "Update your printer"
  3544. msgstr "프린터 업데이트"
  3545. msgctxt "@label"
  3546. msgid "Updates"
  3547. msgstr "업데이트"
  3548. msgctxt "@label"
  3549. msgid "Updating firmware."
  3550. msgstr "펌웨어 업데이트 중."
  3551. msgctxt "@button"
  3552. msgid "Updating..."
  3553. msgstr "업데이트 중"
  3554. msgctxt "@action:button"
  3555. msgid "Upload custom Firmware"
  3556. msgstr "사용자 정의 펌웨어 업로드"
  3557. msgctxt "@info:status"
  3558. msgid "Uploading print job to printer."
  3559. msgstr "프린트 작업을 프린터로 업로드하고 있습니다."
  3560. msgctxt "@info:backup_status"
  3561. msgid "Uploading your backup..."
  3562. msgstr "백업 업로드 중..."
  3563. msgctxt "@option:check"
  3564. msgid "Use a single instance of Cura"
  3565. msgstr "Cura의 단일 인스턴스 사용"
  3566. msgctxt "@label"
  3567. msgid "Use glue for better adhesion with this material combination."
  3568. msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.."
  3569. msgctxt "@label"
  3570. msgid "User Agreement"
  3571. msgstr "사용자 계약"
  3572. msgctxt "@label Description for application dependency"
  3573. msgid "Utility functions, including an image loader"
  3574. msgstr "이미지 로더를 포함한 유틸리티 기능"
  3575. msgctxt "@label Description for application dependency"
  3576. msgid "Utility library, including Voronoi generation"
  3577. msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리"
  3578. msgctxt "@title:column"
  3579. msgid "Value"
  3580. msgstr "값"
  3581. msgctxt "@button"
  3582. msgid "View printers in Digital Factory"
  3583. msgstr "Digital Factory에서 프린터 보기"
  3584. msgctxt "@label"
  3585. msgid "View type"
  3586. msgstr "유형 보기"
  3587. msgctxt "@label link to technical assistance"
  3588. msgid "View user manuals online"
  3589. msgstr "사용자 매뉴얼 온라인 보기"
  3590. msgctxt "@label"
  3591. msgid "Viewport behavior"
  3592. msgstr "뷰포트 동작"
  3593. msgctxt "@action:inmenu"
  3594. msgid "Visible Settings"
  3595. msgstr "표시 설정"
  3596. msgctxt "@button"
  3597. msgid "Visit plug-in website"
  3598. msgstr "플러그인 웹사이트 방문"
  3599. msgctxt "@tooltip:button"
  3600. msgid "Visit the UltiMaker website."
  3601. msgstr "UltiMaker 웹 사이트를 방문하십시오."
  3602. msgctxt "@label"
  3603. msgid "Visual"
  3604. msgstr "뛰어난 외관"
  3605. msgctxt "@label"
  3606. msgid "Waiting for"
  3607. msgstr "대기"
  3608. msgctxt "@label"
  3609. msgid "Waiting for Cloud response"
  3610. msgstr "클라우드 응답 대기"
  3611. msgctxt "@button"
  3612. msgid "Waiting for new printers"
  3613. msgstr "새 프린터 대기 중"
  3614. msgctxt "@button"
  3615. msgid "Want more?"
  3616. msgstr "무엇을 더 하시겠습니까?"
  3617. msgctxt "@info:title"
  3618. msgid "Warning"
  3619. msgstr "경고"
  3620. msgctxt "@info:status"
  3621. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  3622. msgstr "경고: 프로파일은 '{0}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오."
  3623. msgctxt "@text:window"
  3624. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3625. msgstr "선택한 파일 내에 하나 이상의 G-코드 파일이 있습니다. 한 번에 하나의 G-코드 파일 만 열 수 있습니다. G-코드 파일을 열려면 하나만 선택하십시오."
  3626. msgctxt "@text:window"
  3627. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3628. msgstr "선택한 파일 내에 하나 이상의 프로젝트 파일이 있습니다. 한 번에 하나의 프로젝트 파일 만 열 수 있습니다. 해당 파일에서 모델 만 가져 오기를 권장합니다. 계속 하시겠습니까?"
  3629. msgctxt "@info"
  3630. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  3631. msgstr "클라우드 프린터용 Webcam 피드는 UltiMaker Cura에서 볼 수 없습니다. '프린터 관리'를 클릭하여 Ultimaker Digital Factory를 방문하고 이 웹캠을 확인하십시오."
  3632. msgctxt "@button"
  3633. msgid "Website"
  3634. msgstr "웹사이트"
  3635. msgctxt "@label"
  3636. msgid "What printer would you like to setup?"
  3637. msgstr "어떤 프린터를 설정하시겠습니까?"
  3638. msgctxt "@info:tooltip"
  3639. msgid "What type of camera navigation should be used?"
  3640. msgstr "어떤 유형의 카메라 탐색을 사용해야 하나요?"
  3641. msgctxt "@info:tooltip"
  3642. msgid "What type of camera rendering should be used?"
  3643. msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?"
  3644. msgctxt "@action:inmenu menubar:help"
  3645. msgid "What's New"
  3646. msgstr "새로운 기능"
  3647. msgctxt "@label"
  3648. msgid "What's New"
  3649. msgstr "새로운 기능"
  3650. msgctxt "@title:window"
  3651. msgid "What's New"
  3652. msgstr "새로운 기능"
  3653. msgctxt "@info:tooltip"
  3654. msgid "When checking for updates, check for both stable and for beta releases."
  3655. msgstr "업데이트 사항을 확인할 때 안정적인 베타 릴리즈를 확인하십시오."
  3656. msgctxt "@info:tooltip"
  3657. msgid "When checking for updates, only check for stable releases."
  3658. msgstr "업데이트 사항을 확인할 때 안정적인 릴리즈만 확인하십시오."
  3659. msgctxt "@info:tooltip"
  3660. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  3661. msgstr "프로파일을 변경하고 다른 프로파일로 전환하면 수정 사항을 유지할지 여부를 묻는 대화 상자가 표시됩니다. 기본 행동을 선택하면 해당 대화 상자를 다시 표시 하지 않을 수 있습니다."
  3662. msgctxt "@button"
  3663. msgid "Why do I need to sync material profiles?"
  3664. msgstr "재료 프로파일을 동기화해야 하는 이유는 무엇입니까?"
  3665. msgctxt "@action:label"
  3666. msgid "Width (mm)"
  3667. msgstr "너비 (mm)"
  3668. msgctxt "@label"
  3669. msgid "X (Width)"
  3670. msgstr "X (너비)"
  3671. msgctxt "@label"
  3672. msgid "X max"
  3673. msgstr "X 최대값"
  3674. msgctxt "@label"
  3675. msgid "X min"
  3676. msgstr "X 최소값"
  3677. msgctxt "@item:inlistbox"
  3678. msgid "X-Ray view"
  3679. msgstr "엑스레이 뷰"
  3680. msgctxt "@label"
  3681. msgid "X/Y"
  3682. msgstr "X/Y"
  3683. msgctxt "@item:inlistbox"
  3684. msgid "X3D File"
  3685. msgstr "X3D 파일"
  3686. msgctxt "@label"
  3687. msgid "Y (Depth)"
  3688. msgstr "Y (깊이)"
  3689. msgctxt "@label"
  3690. msgid "Y max"
  3691. msgstr "Y 최대값"
  3692. msgctxt "@label"
  3693. msgid "Y min"
  3694. msgstr "Y 최소값"
  3695. msgctxt "@info"
  3696. msgid "Yes"
  3697. msgstr "예"
  3698. msgctxt "@label"
  3699. msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3700. msgstr "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. "
  3701. "정말로 계속하시겠습니까?"
  3702. msgctxt "@label"
  3703. msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3704. msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3705. msgstr[0] "Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n정말로 계속하시겠습니까?"
  3706. msgctxt "@info:status"
  3707. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  3708. msgstr "UltiMaker Connect를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오."
  3709. msgctxt "@info:status"
  3710. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  3711. msgstr "연결 시도 중인 {0}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다."
  3712. msgctxt "@empty_state"
  3713. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  3714. msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하여 생성하십시오."
  3715. msgctxt "@text:window, %1 is a profile name"
  3716. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3717. msgstr "일부 프로파일 설정을 사용자 정의했습니다."
  3718. "프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?"
  3719. "또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다."
  3720. msgctxt "@label"
  3721. msgid "You need to accept the license to install the package"
  3722. msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다"
  3723. msgctxt "@info:generic"
  3724. msgid "You need to quit and restart {} before changes have effect."
  3725. msgstr "변경 사항이 적용되기 전에 {}을(를) 멈추고 다시 시작해야 합니다."
  3726. msgctxt "@dialog:info"
  3727. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  3728. msgstr "백업이 복원되기 전에 Cura를 다시 시작해야 합니다. 지금 Cura를 닫으시겠습니까?"
  3729. msgctxt "@info:status"
  3730. msgid "You will receive a confirmation via email when the print job is approved"
  3731. msgstr "프린트 작업이 승인되면 확인 이메일이 발송됩니다"
  3732. msgctxt "@info:backup_status"
  3733. msgid "Your backup has finished uploading."
  3734. msgstr "백업이 업로드를 완료했습니다."
  3735. msgctxt "@action:label"
  3736. msgid "Your current settings match the selected profile."
  3737. msgstr "현재 설정이 선택한 프로파일과 일치합니다."
  3738. msgctxt "@info"
  3739. msgid "Your new printer will automatically appear in Cura"
  3740. msgstr "새 프린터가 Cura에 자동으로 나타납니다."
  3741. msgctxt "@info:status"
  3742. msgid "Your printer <b>{printer_name}</b> could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3743. msgstr "Your printer <b>{printer_name}</b> could be connected via cloud."
  3744. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3745. msgctxt "@label"
  3746. msgid "Z"
  3747. msgstr "Z"
  3748. msgctxt "@label"
  3749. msgid "Z (Height)"
  3750. msgstr "Z (높이)"
  3751. msgctxt "@label Description for application dependency"
  3752. msgid "ZeroConf discovery library"
  3753. msgstr "ZeroConf discovery 라이브러리"
  3754. msgctxt "@action:button"
  3755. msgid "Zoom toward mouse direction"
  3756. msgstr "마우스 방향으로 확대"
  3757. msgctxt "@info:tooltip"
  3758. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3759. msgstr "정투영법 시점에서는 마우스 방향으로 확대가 지원되지 않습니다."
  3760. msgctxt "@text Placeholder for the username if it has been deleted"
  3761. msgid "deleted user"
  3762. msgstr "삭제된 사용자"
  3763. msgctxt "@item:inlistbox"
  3764. msgid "glTF Binary"
  3765. msgstr "glTF Binary"
  3766. msgctxt "@item:inlistbox"
  3767. msgid "glTF Embedded JSON"
  3768. msgstr "glTF Embedded JSON"
  3769. msgctxt "@label"
  3770. msgid "max"
  3771. msgstr "최대"
  3772. msgctxt "@label"
  3773. msgid "min"
  3774. msgstr "최소"
  3775. msgctxt "@label"
  3776. msgid "mm"
  3777. msgstr "mm"
  3778. msgctxt "@label"
  3779. msgid "s"
  3780. msgstr "s"
  3781. msgctxt "@info:status"
  3782. msgid "today"
  3783. msgstr "오늘"
  3784. msgctxt "@info:status"
  3785. msgid "tomorrow"
  3786. msgstr "내일"
  3787. msgctxt "@label"
  3788. msgid "version: %1"
  3789. msgstr "버전: %1"
  3790. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3791. msgid "{printer_name} will be removed until the next account sync."
  3792. msgstr "다음 계정 동기화 시까지 {printer_name}이(가) 제거됩니다."
  3793. msgctxt "@info:generic"
  3794. msgid "{} plugins failed to download"
  3795. msgstr "{}개의 플러그인을 다운로드하지 못했습니다"
  3796. msgctxt "description"
  3797. msgid "Manages network connections to UltiMaker networked printers."
  3798. msgstr "UltiMaker 네트워크 프린터에 대한 네트워크 연결을 관리합니다."
  3799. msgctxt "name"
  3800. msgid "UltiMaker Network Connection"
  3801. msgstr "UltiMaker 네트워크 연결"
  3802. msgctxt "description"
  3803. msgid "Provides support for importing profiles from g-code files."
  3804. msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다."
  3805. msgctxt "name"
  3806. msgid "G-code Profile Reader"
  3807. msgstr "GCode 프로파일 리더기"
  3808. msgctxt "description"
  3809. msgid "Provides a normal solid mesh view."
  3810. msgstr "일반 솔리드 메쉬보기를 제공합니다."
  3811. msgctxt "name"
  3812. msgid "Solid View"
  3813. msgstr "솔리드 뷰"
  3814. msgctxt "description"
  3815. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  3816. msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인"
  3817. msgctxt "name"
  3818. msgid "CuraEngineGradualFlow"
  3819. msgstr "CuraEngineGradualFlow"
  3820. msgctxt "description"
  3821. msgid "Provides support for reading 3MF files."
  3822. msgstr "3MF 파일 읽기 지원."
  3823. msgctxt "name"
  3824. msgid "3MF Reader"
  3825. msgstr "3MF 리더"
  3826. msgctxt "description"
  3827. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3828. msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다."
  3829. msgctxt "name"
  3830. msgid "USB printing"
  3831. msgstr "USB 프린팅"
  3832. msgctxt "description"
  3833. msgid "Checks for firmware updates."
  3834. msgstr "펌웨어 업데이트를 확인합니다."
  3835. msgctxt "name"
  3836. msgid "Firmware Update Checker"
  3837. msgstr "펌웨어 업데이트 검사기"
  3838. msgctxt "description"
  3839. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  3840. msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다."
  3841. msgctxt "name"
  3842. msgid "Marketplace"
  3843. msgstr "마켓플레이스"
  3844. msgctxt "description"
  3845. msgid "Backup and restore your configuration."
  3846. msgstr "구성을 백업하고 복원합니다."
  3847. msgctxt "name"
  3848. msgid "Cura Backups"
  3849. msgstr "Cura 백업"
  3850. msgctxt "description"
  3851. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  3852. msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다."
  3853. msgctxt "name"
  3854. msgid "Machine Settings Action"
  3855. msgstr "컴퓨터 설정 작업"
  3856. msgctxt "description"
  3857. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3858. msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다."
  3859. msgctxt "name"
  3860. msgid "Version Upgrade 2.5 to 2.6"
  3861. msgstr "2.5에서 2.6으로 버전 업그레이드"
  3862. msgctxt "description"
  3863. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3864. msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다."
  3865. msgctxt "name"
  3866. msgid "Version Upgrade 4.7 to 4.8"
  3867. msgstr "4.7에서 4.8로 버전 업그레이드"
  3868. msgctxt "description"
  3869. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3870. msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다."
  3871. msgctxt "name"
  3872. msgid "Version Upgrade 4.4 to 4.5"
  3873. msgstr "4.4에서 4.5로 버전 업그레이드"
  3874. msgctxt "description"
  3875. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3876. msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다."
  3877. msgctxt "name"
  3878. msgid "Version Upgrade 3.0 to 3.1"
  3879. msgstr "3.0에서 3.1로 버전 업그레이드"
  3880. msgctxt "description"
  3881. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3882. msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다."
  3883. msgctxt "name"
  3884. msgid "Version Upgrade 4.11 to 4.12"
  3885. msgstr "4.11에서 4.12로 버전 업그레이드"
  3886. msgctxt "description"
  3887. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3888. msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다."
  3889. msgctxt "name"
  3890. msgid "Version Upgrade 4.1 to 4.2"
  3891. msgstr "4.1에서 4.2로 버전 업그레이드"
  3892. msgctxt "description"
  3893. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3894. msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다."
  3895. msgctxt "name"
  3896. msgid "Version Upgrade 2.6 to 2.7"
  3897. msgstr "2.6에서 2.7으로 버전 업그레이드"
  3898. msgctxt "description"
  3899. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3900. msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다."
  3901. msgctxt "name"
  3902. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3903. msgstr "4.6.0에서 4.6.2로 버전 업그레이드"
  3904. msgctxt "description"
  3905. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3906. msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다."
  3907. msgctxt "name"
  3908. msgid "Version Upgrade 3.3 to 3.4"
  3909. msgstr "버전 업그레이드 3.3에서 3.4"
  3910. msgctxt "description"
  3911. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3912. msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다."
  3913. msgctxt "name"
  3914. msgid "Version Upgrade 4.8 to 4.9"
  3915. msgstr "4.8에서 4.9로 버전 업그레이드"
  3916. msgctxt "description"
  3917. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3918. msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다."
  3919. msgctxt "name"
  3920. msgid "Version Upgrade 4.5 to 4.6"
  3921. msgstr "4.5에서 4.6으로 버전 업그레이드"
  3922. msgctxt "description"
  3923. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3924. msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다."
  3925. msgctxt "name"
  3926. msgid "Version Upgrade 4.2 to 4.3"
  3927. msgstr "4.2에서 4.3로 버전 업그레이드"
  3928. msgctxt "description"
  3929. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3930. msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다."
  3931. msgctxt "name"
  3932. msgid "Version Upgrade 3.2 to 3.3"
  3933. msgstr "3.2에서 3.3으로 버전 업그레이드"
  3934. msgctxt "description"
  3935. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3936. msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다."
  3937. msgctxt "name"
  3938. msgid "Version Upgrade 4.3 to 4.4"
  3939. msgstr "4.3에서 4.4로 버전 업그레이드"
  3940. msgctxt "description"
  3941. msgid "Upgrades configurations from Cura 5.6 to Cura 5.7."
  3942. msgstr "Cura 5.6에서 Cura 5.7로 구성을 업그레이드합니다."
  3943. msgctxt "name"
  3944. msgid "Version Upgrade 5.6 to 5.7"
  3945. msgstr "5.6에서 5.7로 버전 업그레이드"
  3946. msgctxt "description"
  3947. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3948. msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다."
  3949. msgctxt "name"
  3950. msgid "Version Upgrade 2.1 to 2.2"
  3951. msgstr "2.1에서 2.2로 버전 업그레이드"
  3952. msgctxt "description"
  3953. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3954. msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다."
  3955. msgctxt "name"
  3956. msgid "Version Upgrade 5.3 to 5.4"
  3957. msgstr "5.3에서 5.4로 버전 업그레이드"
  3958. msgctxt "description"
  3959. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3960. msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다."
  3961. msgctxt "name"
  3962. msgid "Version Upgrade 4.9 to 4.10"
  3963. msgstr "4.9에서 4.10으로 버전 업그레이드"
  3964. msgctxt "description"
  3965. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3966. msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다."
  3967. msgctxt "name"
  3968. msgid "Version Upgrade 2.7 to 3.0"
  3969. msgstr "2.7에서 3.0으로 버전 업그레이드"
  3970. msgctxt "description"
  3971. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3972. msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다."
  3973. msgctxt "name"
  3974. msgid "Version Upgrade 3.5 to 4.0"
  3975. msgstr "버전 업그레이드 3.5에서 4.0"
  3976. msgctxt "description"
  3977. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3978. msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다."
  3979. msgctxt "name"
  3980. msgid "Version Upgrade 5.2 to 5.3"
  3981. msgstr "5.2에서 5.3으로 버전 업그레이드"
  3982. msgctxt "description"
  3983. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3984. msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다."
  3985. msgctxt "name"
  3986. msgid "Version Upgrade 4.0 to 4.1"
  3987. msgstr "버전 업그레이드 4.0에서 4.1"
  3988. msgctxt "description"
  3989. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3990. msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다."
  3991. msgctxt "name"
  3992. msgid "Version Upgrade 4.13 to 5.0"
  3993. msgstr "4.13에서 5.0으로 버전 업그레이드"
  3994. msgctxt "description"
  3995. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3996. msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다."
  3997. msgctxt "name"
  3998. msgid "Version Upgrade 3.4 to 3.5"
  3999. msgstr "3.4에서 3.5로 버전 업그레이드"
  4000. msgctxt "description"
  4001. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4002. msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다."
  4003. msgctxt "name"
  4004. msgid "Version Upgrade 2.2 to 2.4"
  4005. msgstr "2.2에서 2.4로 버전 업그레이드"
  4006. msgctxt "description"
  4007. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4008. msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다."
  4009. msgctxt "name"
  4010. msgid "Version Upgrade 4.6.2 to 4.7"
  4011. msgstr "4.6.2에서 4.7로 버전 업그레이드"
  4012. msgctxt "description"
  4013. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  4014. msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다."
  4015. msgctxt "name"
  4016. msgid "Version Upgrade 5.4 to 5.5"
  4017. msgstr "5.4에서 5.5로 버전 업그레이드"
  4018. msgctxt "description"
  4019. msgid "Allows loading and displaying G-code files."
  4020. msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다."
  4021. msgctxt "name"
  4022. msgid "G-code Reader"
  4023. msgstr "G-코드 리더"
  4024. msgctxt "description"
  4025. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4026. msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다."
  4027. msgctxt "name"
  4028. msgid "Slice info"
  4029. msgstr "슬라이스 정보"
  4030. msgctxt "description"
  4031. msgid "Provides removable drive hotplugging and writing support."
  4032. msgstr "이동식 드라이브를 제공합니다."
  4033. msgctxt "name"
  4034. msgid "Removable Drive Output Device Plugin"
  4035. msgstr "이동식 드라이브 출력 장치 플러그인"
  4036. msgctxt "description"
  4037. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4038. msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다"
  4039. msgctxt "name"
  4040. msgid "Support Eraser"
  4041. msgstr "서포트 지우개"
  4042. msgctxt "description"
  4043. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4044. msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다."
  4045. msgctxt "name"
  4046. msgid "Model Checker"
  4047. msgstr "모델 검사기"
  4048. msgctxt "description"
  4049. msgid "Provides a prepare stage in Cura."
  4050. msgstr "Cura에서 준비 단계 제공."
  4051. msgctxt "name"
  4052. msgid "Prepare Stage"
  4053. msgstr "준비 단계"
  4054. msgctxt "description"
  4055. msgid "Provides the preview of sliced layerdata."
  4056. msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다."
  4057. msgctxt "name"
  4058. msgid "Simulation View"
  4059. msgstr "시뮬레이션 뷰"
  4060. msgctxt "description"
  4061. msgid "Provides support for reading AMF files."
  4062. msgstr "AMF 파일 읽기가 지원됩니다."
  4063. msgctxt "name"
  4064. msgid "AMF Reader"
  4065. msgstr "AMF 리더"
  4066. msgctxt "description"
  4067. msgid "Provides the X-Ray view."
  4068. msgstr "엑스레이 뷰를 제공합니다."
  4069. msgctxt "name"
  4070. msgid "X-Ray View"
  4071. msgstr "엑스레이 뷰"
  4072. msgctxt "description"
  4073. msgid "Provides a machine actions for updating firmware."
  4074. msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다."
  4075. msgctxt "name"
  4076. msgid "Firmware Updater"
  4077. msgstr "펌웨어 업데이터"
  4078. msgctxt "description"
  4079. msgid "Provides support for importing profiles from legacy Cura versions."
  4080. msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다."
  4081. msgctxt "name"
  4082. msgid "Legacy Cura Profile Reader"
  4083. msgstr "레거시 Cura 프로파일 리더"
  4084. msgctxt "description"
  4085. msgid "Extension that allows for user created scripts for post processing"
  4086. msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램"
  4087. msgctxt "name"
  4088. msgid "Post Processing"
  4089. msgstr "후처리"
  4090. msgctxt "description"
  4091. msgid "Logs certain events so that they can be used by the crash reporter"
  4092. msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다"
  4093. msgctxt "name"
  4094. msgid "Sentry Logger"
  4095. msgstr "보초 로거"
  4096. msgctxt "description"
  4097. msgid "Provides support for writing MakerBot Format Packages."
  4098. msgstr "MakerBot 포맷 패키지 작성을 지원합니다."
  4099. msgctxt "name"
  4100. msgid "Makerbot Printfile Writer"
  4101. msgstr "Makerbot 프린트파일 작성기"
  4102. msgctxt "description"
  4103. msgid "Provides support for importing Cura profiles."
  4104. msgstr "Cura 프로파일 가져 오기 지원을 제공합니다."
  4105. msgctxt "name"
  4106. msgid "Cura Profile Reader"
  4107. msgstr "Cura 프로파일 리더"
  4108. msgctxt "description"
  4109. msgid "Provides support for reading Ultimaker Format Packages."
  4110. msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다."
  4111. msgctxt "name"
  4112. msgid "UFP Reader"
  4113. msgstr "UFP 리더기"
  4114. msgctxt "description"
  4115. msgid "Enables ability to generate printable geometry from 2D image files."
  4116. msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다."
  4117. msgctxt "name"
  4118. msgid "Image Reader"
  4119. msgstr "이미지 리더"
  4120. msgctxt "description"
  4121. msgid "Provides the link to the CuraEngine slicing backend."
  4122. msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다."
  4123. msgctxt "name"
  4124. msgid "CuraEngine Backend"
  4125. msgstr "CuraEngine 백엔드"
  4126. msgctxt "description"
  4127. msgid "Writes g-code to a compressed archive."
  4128. msgstr "압축 된 아카이브에 g-code를 씁니다."
  4129. msgctxt "name"
  4130. msgid "Compressed G-code Writer"
  4131. msgstr "압축 된 G 코드 작성기"
  4132. msgctxt "description"
  4133. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4134. msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)"
  4135. msgctxt "name"
  4136. msgid "UltiMaker machine actions"
  4137. msgstr "UltiMaker 기기 동작"
  4138. msgctxt "description"
  4139. msgid "Reads g-code from a compressed archive."
  4140. msgstr "압축 된 아카이브로 부터 g-code를 읽습니다."
  4141. msgctxt "name"
  4142. msgid "Compressed G-code Reader"
  4143. msgstr "압축 된 G 코드 리더기"
  4144. msgctxt "description"
  4145. msgid "Provides a preview stage in Cura."
  4146. msgstr "Cura에서 미리 보기 단계를 제공합니다."
  4147. msgctxt "name"
  4148. msgid "Preview Stage"
  4149. msgstr "미리 보기 단계"
  4150. msgctxt "description"
  4151. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4152. msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다."
  4153. msgctxt "name"
  4154. msgid "Ultimaker Digital Library"
  4155. msgstr "UltiMaker 디지털 라이브러리"
  4156. msgctxt "description"
  4157. msgid "Provides support for exporting Cura profiles."
  4158. msgstr "Cura 프로파일 내보내기 지원을 제공합니다."
  4159. msgctxt "name"
  4160. msgid "Cura Profile Writer"
  4161. msgstr "Cura 프로파일 작성자"
  4162. msgctxt "description"
  4163. msgid "Provides support for reading X3D files."
  4164. msgstr "X3D 파일을 읽을 수 있도록 지원합니다."
  4165. msgctxt "name"
  4166. msgid "X3D Reader"
  4167. msgstr "X3D 리더"
  4168. msgctxt "description"
  4169. msgid "Provides support for reading model files."
  4170. msgstr "모델 파일 읽기 기능을 제공합니다."
  4171. msgctxt "name"
  4172. msgid "Trimesh Reader"
  4173. msgstr "Trimesh 리더"
  4174. msgctxt "description"
  4175. msgid "Provides a monitor stage in Cura."
  4176. msgstr "Cura에서 모니터 단계 제공."
  4177. msgctxt "name"
  4178. msgid "Monitor Stage"
  4179. msgstr "모니터 단계"
  4180. msgctxt "description"
  4181. msgid "Provides the Per Model Settings."
  4182. msgstr "모델 별 설정을 제공합니다."
  4183. msgctxt "name"
  4184. msgid "Per Model Settings Tool"
  4185. msgstr "모델 별 설정 도구"
  4186. msgctxt "description"
  4187. msgid "Provides capabilities to read and write XML-based material profiles."
  4188. msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다."
  4189. msgctxt "name"
  4190. msgid "Material Profiles"
  4191. msgstr "재료 프로파일"
  4192. msgctxt "description"
  4193. msgid "Provides support for writing 3MF and UCP files."
  4194. msgstr "3MF 및 UCP 파일 쓰기를 지원합니다."
  4195. msgctxt "name"
  4196. msgid "3MF Writer"
  4197. msgstr "3MF 기록기"
  4198. msgctxt "description"
  4199. msgid "Provides support for writing Ultimaker Format Packages."
  4200. msgstr "Ultimaker 포맷 패키지 작성을 지원합니다."
  4201. msgctxt "name"
  4202. msgid "UFP Writer"
  4203. msgstr "UFP 작성자"
  4204. msgctxt "description"
  4205. msgid "Writes g-code to a file."
  4206. msgstr "G Code를 파일에 씁니다."
  4207. msgctxt "name"
  4208. msgid "G-code Writer"
  4209. msgstr "GCode 작성자"