cura.po 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-04-27 12:22+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: ko_KR\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=1; plural=0;\n"
  20. #: cura/API/Account.py:199
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "로그인 실패"
  24. #: cura/Arranging/ArrangeObjectsJob.py:25
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "객체의 새 위치 찾기"
  28. #: cura/Arranging/ArrangeObjectsJob.py:29
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "위치 찾기"
  32. #: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다"
  36. #: cura/Arranging/ArrangeObjectsJob.py:43
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "위치를 찾을 수 없음"
  40. #: cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}"
  44. #: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159
  45. #: plugins/CuraDrive/src/DrivePluginExtension.py:118
  46. #: plugins/CuraDrive/src/DrivePluginExtension.py:126
  47. msgctxt "@info:title"
  48. msgid "Backup"
  49. msgstr "백업"
  50. #: cura/Backups/Backup.py:134
  51. msgctxt "@info:backup_failed"
  52. msgid "Tried to restore a Cura backup without having proper data or meta data."
  53. msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다."
  54. #: cura/Backups/Backup.py:145
  55. msgctxt "@info:backup_failed"
  56. msgid "Tried to restore a Cura backup that is higher than the current version."
  57. msgstr "현재 버전보다 높은 Cura 백업을 복원하려고 시도했습니다."
  58. #: cura/Backups/Backup.py:158
  59. msgctxt "@info:backup_failed"
  60. msgid "The following error occurred while trying to restore a Cura backup:"
  61. msgstr ""
  62. #: cura/BuildVolume.py:100
  63. msgctxt "@info:status"
  64. 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."
  65. msgstr "\"프린팅 순서\"설정 값으로 인해 갠트리가 프린팅 된 모델과 충돌하지 않도록 출력물 높이가 줄어 들었습니다."
  66. #: cura/BuildVolume.py:103
  67. msgctxt "@info:title"
  68. msgid "Build Volume"
  69. msgstr "출력물 크기"
  70. #: cura/CrashHandler.py:107
  71. msgctxt "@title:window"
  72. msgid "Cura can't start"
  73. msgstr "큐라를 시작할 수 없습니다"
  74. #: cura/CrashHandler.py:113
  75. msgctxt "@label crash message"
  76. msgid ""
  77. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  78. " <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"
  79. " <p>Backups can be found in the configuration folder.</p>\n"
  80. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  81. " "
  82. msgstr ""
  83. "<p> <b> 죄송합니다, UltiMaker Cura가 정상적이지 않습니다. &lt;/ p&gt; &lt;/ b&gt;\n"
  84. "                     <p> 시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. &lt;/ p&gt;\n"
  85. "                     <p> 백업은 설정 폴더에서 찾을 수 있습니다. &lt;/ p&gt;\n"
  86. "                     <p> 문제를 해결하기 위해이 오류 보고서를 보내주십시오. &lt;/ p&gt;\n"
  87. " "
  88. #: cura/CrashHandler.py:122
  89. msgctxt "@action:button"
  90. msgid "Send crash report to UltiMaker"
  91. msgstr "충돌 보고서를 UltiMaker에 보내기"
  92. #: cura/CrashHandler.py:125
  93. msgctxt "@action:button"
  94. msgid "Show detailed crash report"
  95. msgstr "충돌 리포트 보기"
  96. #: cura/CrashHandler.py:129
  97. msgctxt "@action:button"
  98. msgid "Show configuration folder"
  99. msgstr "설정 폴더 보기"
  100. #: cura/CrashHandler.py:140
  101. msgctxt "@action:button"
  102. msgid "Backup and Reset Configuration"
  103. msgstr "백업 및 리셋 설정"
  104. #: cura/CrashHandler.py:171
  105. msgctxt "@title:window"
  106. msgid "Crash Report"
  107. msgstr "충돌 보고서"
  108. #: cura/CrashHandler.py:190
  109. msgctxt "@label crash message"
  110. msgid ""
  111. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  112. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  113. " "
  114. msgstr ""
  115. "<p><b>치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오</p></b>\n"
  116. " <p>&quot;보고서 전송&quot; 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다</p>\n"
  117. " "
  118. #: cura/CrashHandler.py:198
  119. msgctxt "@title:groupbox"
  120. msgid "System information"
  121. msgstr "시스템 정보"
  122. #: cura/CrashHandler.py:207
  123. msgctxt "@label unknown version of Cura"
  124. msgid "Unknown"
  125. msgstr "알 수 없음"
  126. #: cura/CrashHandler.py:228
  127. msgctxt "@label Cura version number"
  128. msgid "Cura version"
  129. msgstr "Cura 버전"
  130. #: cura/CrashHandler.py:229
  131. msgctxt "@label"
  132. msgid "Cura language"
  133. msgstr "Cura 언어"
  134. #: cura/CrashHandler.py:230
  135. msgctxt "@label"
  136. msgid "OS language"
  137. msgstr "OS 언어"
  138. #: cura/CrashHandler.py:231
  139. msgctxt "@label Type of platform"
  140. msgid "Platform"
  141. msgstr "플랫폼"
  142. #: cura/CrashHandler.py:232
  143. msgctxt "@label"
  144. msgid "Qt version"
  145. msgstr "Qt 버전"
  146. #: cura/CrashHandler.py:233
  147. msgctxt "@label"
  148. msgid "PyQt version"
  149. msgstr "PyQt 버전"
  150. #: cura/CrashHandler.py:234
  151. msgctxt "@label OpenGL version"
  152. msgid "OpenGL"
  153. msgstr "OpenGL"
  154. #: cura/CrashHandler.py:264
  155. msgctxt "@label"
  156. msgid "Not yet initialized"
  157. msgstr "아직 초기화되지 않음"
  158. #: cura/CrashHandler.py:267
  159. #, python-brace-format
  160. msgctxt "@label OpenGL version"
  161. msgid "<li>OpenGL Version: {version}</li>"
  162. msgstr "<li>OpenGL 버전: {version}</li>"
  163. #: cura/CrashHandler.py:268
  164. #, python-brace-format
  165. msgctxt "@label OpenGL vendor"
  166. msgid "<li>OpenGL Vendor: {vendor}</li>"
  167. msgstr "<li>OpenGL 공급업체: {vendor}</li>"
  168. #: cura/CrashHandler.py:269
  169. #, python-brace-format
  170. msgctxt "@label OpenGL renderer"
  171. msgid "<li>OpenGL Renderer: {renderer}</li>"
  172. msgstr "<li>OpenGL Renderer: {renderer}</li>"
  173. #: cura/CrashHandler.py:304
  174. msgctxt "@title:groupbox"
  175. msgid "Error traceback"
  176. msgstr "오류 추적"
  177. #: cura/CrashHandler.py:390
  178. msgctxt "@title:groupbox"
  179. msgid "Logs"
  180. msgstr "로그"
  181. #: cura/CrashHandler.py:418
  182. msgctxt "@action:button"
  183. msgid "Send report"
  184. msgstr "보고서 전송"
  185. #: cura/CuraApplication.py:540
  186. msgctxt "@info:progress"
  187. msgid "Loading machines..."
  188. msgstr "기기로드 중 ..."
  189. #: cura/CuraApplication.py:547
  190. msgctxt "@info:progress"
  191. msgid "Setting up preferences..."
  192. msgstr "환경 설정을 설정하는 중..."
  193. #: cura/CuraApplication.py:692
  194. msgctxt "@info:progress"
  195. msgid "Initializing Active Machine..."
  196. msgstr "활성 기기 초기화 중..."
  197. #: cura/CuraApplication.py:839
  198. msgctxt "@info:progress"
  199. msgid "Initializing machine manager..."
  200. msgstr "패키지 관리자 초기화 중..."
  201. #: cura/CuraApplication.py:853
  202. msgctxt "@info:progress"
  203. msgid "Initializing build volume..."
  204. msgstr "출력 사이즈 초기화 중..."
  205. #: cura/CuraApplication.py:921
  206. msgctxt "@info:progress"
  207. msgid "Setting up scene..."
  208. msgstr "장면 설정 중..."
  209. #: cura/CuraApplication.py:957
  210. msgctxt "@info:progress"
  211. msgid "Loading interface..."
  212. msgstr "인터페이스 로드 중 ..."
  213. #: cura/CuraApplication.py:962
  214. msgctxt "@info:progress"
  215. msgid "Initializing engine..."
  216. msgstr "엔진 초기화 중..."
  217. #: cura/CuraApplication.py:1290
  218. #, python-format
  219. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  220. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  221. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  222. #: cura/CuraApplication.py:1816
  223. #, python-brace-format
  224. msgctxt "@info:status"
  225. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  226. msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다."
  227. #: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217
  228. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  229. msgctxt "@info:title"
  230. msgid "Warning"
  231. msgstr "경고"
  232. #: cura/CuraApplication.py:1828
  233. #, python-brace-format
  234. msgctxt "@info:status"
  235. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  236. msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다."
  237. #: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156
  238. #: cura/Settings/CuraContainerRegistry.py:166
  239. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  240. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  241. msgctxt "@info:title"
  242. msgid "Error"
  243. msgstr "오류"
  244. #: cura/Machines/Models/DiscoveredPrintersModel.py:83
  245. msgctxt "@label"
  246. msgid "Unknown"
  247. msgstr "알 수 없는"
  248. #: cura/Machines/Models/DiscoveredPrintersModel.py:113
  249. msgctxt "@label"
  250. msgid "The printer(s) below cannot be connected because they are part of a group"
  251. msgstr "아래 프린터는 그룹에 속해 있기 때문에 연결할 수 없습니다"
  252. #: cura/Machines/Models/DiscoveredPrintersModel.py:115
  253. msgctxt "@label"
  254. msgid "Available networked printers"
  255. msgstr "사용 가능한 네트워크 프린터"
  256. #: cura/Machines/Models/ExtrudersModel.py:219
  257. msgctxt "@menuitem"
  258. msgid "Not overridden"
  259. msgstr "재정의되지 않음"
  260. #: cura/Machines/Models/GlobalStacksModel.py:160
  261. #: resources/qml/PrinterSelector/MachineSelectorList.qml:28
  262. msgctxt "@label"
  263. msgid "Connected printers"
  264. msgstr "연결된 프린터"
  265. #: cura/Machines/Models/GlobalStacksModel.py:160
  266. msgctxt "@label"
  267. msgid "Preset printers"
  268. msgstr "프린터 사전 설정"
  269. #: cura/Machines/Models/GlobalStacksModel.py:165
  270. #, python-brace-format
  271. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  272. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  273. msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다."
  274. #: cura/Machines/Models/IntentCategoryModel.py:42
  275. #: cura/Machines/Models/IntentSelectionModel.py:61
  276. #: cura/Machines/Models/IntentTranslations.py:11
  277. #: cura/Machines/Models/QualityManagementModel.py:347
  278. msgctxt "@label"
  279. msgid "Default"
  280. msgstr ""
  281. #: cura/Machines/Models/IntentCategoryModel.py:45
  282. #: cura/Machines/Models/IntentSelectionModel.py:65
  283. #: cura/Machines/Models/IntentTranslations.py:14
  284. msgctxt "@label"
  285. msgid "Visual"
  286. msgstr "뛰어난 외관"
  287. #: cura/Machines/Models/IntentCategoryModel.py:46
  288. #: cura/Machines/Models/IntentSelectionModel.py:66
  289. #: cura/Machines/Models/IntentTranslations.py:15
  290. msgctxt "@text"
  291. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  292. msgstr "시각적 프로파일은 높은 시각적 및 표면 품질의 의도를 지니고 시각적 프로토타입과 모델을 인쇄하기 위해 설계되었습니다."
  293. #: cura/Machines/Models/IntentCategoryModel.py:49
  294. #: cura/Machines/Models/IntentSelectionModel.py:70
  295. #: cura/Machines/Models/IntentTranslations.py:18
  296. msgctxt "@label"
  297. msgid "Engineering"
  298. msgstr ""
  299. #: cura/Machines/Models/IntentCategoryModel.py:50
  300. #: cura/Machines/Models/IntentSelectionModel.py:71
  301. #: cura/Machines/Models/IntentTranslations.py:19
  302. msgctxt "@text"
  303. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  304. msgstr "엔지니어링 프로파일은 정확도를 개선하고 허용 오차를 좁히려는 의도로 기능 프로토타입 및 최종 사용 부품을 인쇄하도록 설계되었습니다."
  305. #: cura/Machines/Models/IntentCategoryModel.py:53
  306. #: cura/Machines/Models/IntentSelectionModel.py:75
  307. #: cura/Machines/Models/IntentTranslations.py:22
  308. msgctxt "@label"
  309. msgid "Draft"
  310. msgstr "초안"
  311. #: cura/Machines/Models/IntentCategoryModel.py:54
  312. #: cura/Machines/Models/IntentSelectionModel.py:76
  313. #: cura/Machines/Models/IntentTranslations.py:23
  314. msgctxt "@text"
  315. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  316. msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다."
  317. #: cura/Machines/Models/MaterialManagementModel.py:232
  318. msgctxt "@label"
  319. msgid "Custom Material"
  320. msgstr "사용자 정의 소재"
  321. #: cura/Machines/Models/MaterialManagementModel.py:233
  322. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  323. msgctxt "@label"
  324. msgid "Custom"
  325. msgstr "사용자 정의"
  326. #: cura/Machines/Models/QualityManagementModel.py:400
  327. msgctxt "@label"
  328. msgid "Custom profiles"
  329. msgstr "사용자 정의 프로파일"
  330. #: cura/Machines/Models/QualityManagementModel.py:435
  331. #, python-brace-format
  332. msgctxt "@item:inlistbox"
  333. msgid "All Supported Types ({0})"
  334. msgstr "지원되는 모든 유형 ({0})"
  335. #: cura/Machines/Models/QualityManagementModel.py:436
  336. msgctxt "@item:inlistbox"
  337. msgid "All Files (*)"
  338. msgstr "모든 파일 (*)"
  339. #: cura/Machines/Models/QualitySettingsModel.py:182
  340. msgctxt "@info:status"
  341. msgid "Calculated"
  342. msgstr "계산된"
  343. #: cura/MultiplyObjectsJob.py:30
  344. msgctxt "@info:status"
  345. msgid "Multiplying and placing objects"
  346. msgstr "객체를 증가시키고 배치"
  347. #: cura/MultiplyObjectsJob.py:32
  348. msgctxt "@info:title"
  349. msgid "Placing Objects"
  350. msgstr "개체 배치 중"
  351. #: cura/MultiplyObjectsJob.py:100
  352. msgctxt "@info:title"
  353. msgid "Placing Object"
  354. msgstr "개체 배치 중"
  355. #: cura/OAuth2/AuthorizationHelpers.py:89
  356. msgctxt "@message"
  357. msgid "Could not read response."
  358. msgstr "응답을 읽을 수 없습니다."
  359. #: cura/OAuth2/AuthorizationRequestHandler.py:77
  360. msgctxt "@message"
  361. msgid "The provided state is not correct."
  362. msgstr "입력한 상태가 올바르지 않습니다."
  363. #: cura/OAuth2/AuthorizationRequestHandler.py:83
  364. msgctxt "@message"
  365. msgid "Timeout when authenticating with the account server."
  366. msgstr "계정 서버 인증 시간이 초과되었습니다."
  367. #: cura/OAuth2/AuthorizationRequestHandler.py:101
  368. msgctxt "@message"
  369. msgid "Please give the required permissions when authorizing this application."
  370. msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오."
  371. #: cura/OAuth2/AuthorizationRequestHandler.py:109
  372. msgctxt "@message"
  373. msgid "Something unexpected happened when trying to log in, please try again."
  374. msgstr "로그인을 시도할 때 예기치 못한 문제가 발생했습니다. 다시 시도하십시오."
  375. #: cura/OAuth2/AuthorizationService.py:216
  376. msgctxt "@info"
  377. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  378. msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오."
  379. #: cura/OAuth2/AuthorizationService.py:277
  380. msgctxt "@info"
  381. msgid "Unable to reach the UltiMaker account server."
  382. msgstr "UltiMaker 계정 서버에 도달할 수 없음."
  383. #: cura/OAuth2/AuthorizationService.py:278
  384. msgctxt "@info:title"
  385. msgid "Log-in failed"
  386. msgstr "로그인 실패"
  387. #: cura/PrinterOutput/UploadMaterialsJob.py:104
  388. msgctxt "@text:error"
  389. msgid "Failed to create archive of materials to sync with printers."
  390. msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다."
  391. #: cura/PrinterOutput/UploadMaterialsJob.py:111
  392. #: cura/PrinterOutput/UploadMaterialsJob.py:165
  393. msgctxt "@text:error"
  394. msgid "Failed to load the archive of materials to sync it with printers."
  395. msgstr "프린터와 동기화할 재료의 아카이브 로드에 실패했습니다."
  396. #: cura/PrinterOutput/UploadMaterialsJob.py:143
  397. msgctxt "@text:error"
  398. msgid "The response from Digital Factory appears to be corrupted."
  399. msgstr "Digital Factory의 응답이 손상된 것 같습니다."
  400. #: cura/PrinterOutput/UploadMaterialsJob.py:147
  401. #: cura/PrinterOutput/UploadMaterialsJob.py:151
  402. #: cura/PrinterOutput/UploadMaterialsJob.py:155
  403. msgctxt "@text:error"
  404. msgid "The response from Digital Factory is missing important information."
  405. msgstr "Digital Factory의 응답에 중요한 정보가 누락되었습니다."
  406. #: cura/PrinterOutput/UploadMaterialsJob.py:218
  407. msgctxt "@text:error"
  408. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  409. msgstr "일부 프린터와 재료를 동기화하기 위한 Digital Factory 연결에 실패했습니다."
  410. #: cura/PrinterOutput/UploadMaterialsJob.py:232
  411. msgctxt "@text:error"
  412. msgid "Failed to connect to Digital Factory."
  413. msgstr "Digital Factory 연결에 실패했습니다."
  414. #: cura/Settings/ActiveQuality.py:43
  415. msgctxt "@label"
  416. msgid "Experimental"
  417. msgstr "실험적 설정"
  418. #: cura/Settings/ContainerManager.py:207
  419. #: cura/Settings/CuraContainerRegistry.py:140
  420. msgctxt "@title:window"
  421. msgid "File Already Exists"
  422. msgstr "파일이 이미 있습니다"
  423. #: cura/Settings/ContainerManager.py:208
  424. #: cura/Settings/CuraContainerRegistry.py:141
  425. #, python-brace-format
  426. msgctxt "@label Don't translate the XML tag <filename>!"
  427. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  428. msgstr "파일 <filename>{0}</filename>이 이미 있습니다. 덮어 쓰시겠습니까?"
  429. #: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462
  430. msgctxt "@info:status"
  431. msgid "Invalid file URL:"
  432. msgstr "유효하지 않은 파일 URL:"
  433. #: cura/Settings/CuraContainerRegistry.py:153
  434. #, python-brace-format
  435. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  436. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  437. msgstr "프로파일을 <filename>{0}</filename>: <message>{1}</message>로 내보내는데 실패했습니다"
  438. #: cura/Settings/CuraContainerRegistry.py:163
  439. #, python-brace-format
  440. msgctxt "@info:status Don't translate the XML tag <filename>!"
  441. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  442. msgstr "프로파일을 <filename>{0}</filename>로 내보내지 못했습니다. Writer 플러그인이 오류를 보고했습니다."
  443. #: cura/Settings/CuraContainerRegistry.py:171
  444. #, python-brace-format
  445. msgctxt "@info:status Don't translate the XML tag <filename>!"
  446. msgid "Exported profile to <filename>{0}</filename>"
  447. msgstr "프로파일을 <filename>{0}</filename> 에 내보냅니다"
  448. #: cura/Settings/CuraContainerRegistry.py:173
  449. msgctxt "@info:title"
  450. msgid "Export succeeded"
  451. msgstr "내보내기 완료"
  452. #: cura/Settings/CuraContainerRegistry.py:205
  453. #, python-brace-format
  454. msgctxt "@info:status Don't translate the XML tags <filename>!"
  455. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  456. msgstr "<filename>{0}</filename>에서 프로파일을 가져오지 못했습니다 {1}"
  457. #: cura/Settings/CuraContainerRegistry.py:209
  458. #, python-brace-format
  459. msgctxt "@info:status Don't translate the XML tags <filename>!"
  460. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  461. msgstr "프린터가 추가되기 전 <filename>{0}</filename>에서 프로파일을 가져올 수 없습니다."
  462. #: cura/Settings/CuraContainerRegistry.py:224
  463. #, python-brace-format
  464. msgctxt "@info:status Don't translate the XML tags <filename>!"
  465. msgid "No custom profile to import in file <filename>{0}</filename>"
  466. msgstr "<filename>{0}</filename>(으)로 가져올 사용자 정의 프로파일이 없습니다"
  467. #: cura/Settings/CuraContainerRegistry.py:228
  468. #, python-brace-format
  469. msgctxt "@info:status Don't translate the XML tags <filename>!"
  470. msgid "Failed to import profile from <filename>{0}</filename>:"
  471. msgstr "<filename>{0}</filename>에서 프로파일을 가져오지 못했습니다:"
  472. #: cura/Settings/CuraContainerRegistry.py:252
  473. #: cura/Settings/CuraContainerRegistry.py:262
  474. #, python-brace-format
  475. msgctxt "@info:status Don't translate the XML tags <filename>!"
  476. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  477. msgstr "프로파일 <filename>{0}</filename>에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다."
  478. #: cura/Settings/CuraContainerRegistry.py:355
  479. #, python-brace-format
  480. msgctxt "@info:status Don't translate the XML tag <filename>!"
  481. msgid "Failed to import profile from <filename>{0}</filename>:"
  482. msgstr "<filename>{0}</filename>에서 프로파일을 가져오지 못했습니다:"
  483. #: cura/Settings/CuraContainerRegistry.py:359
  484. #, python-brace-format
  485. msgctxt "@info:status"
  486. msgid "Successfully imported profile {0}."
  487. msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다."
  488. #: cura/Settings/CuraContainerRegistry.py:366
  489. #, python-brace-format
  490. msgctxt "@info:status"
  491. msgid "File {0} does not contain any valid profile."
  492. msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다."
  493. #: cura/Settings/CuraContainerRegistry.py:369
  494. #, python-brace-format
  495. msgctxt "@info:status"
  496. msgid "Profile {0} has an unknown file type or is corrupted."
  497. msgstr "프로파일 {0}에 알 수 없는 파일 유형이 있거나 손상되었습니다."
  498. #: cura/Settings/CuraContainerRegistry.py:443
  499. msgctxt "@label"
  500. msgid "Custom profile"
  501. msgstr "사용자 정의 프로파일"
  502. #: cura/Settings/CuraContainerRegistry.py:459
  503. msgctxt "@info:status"
  504. msgid "Profile is missing a quality type."
  505. msgstr "프로파일에 품질 타입이 누락되었습니다."
  506. #: cura/Settings/CuraContainerRegistry.py:463
  507. msgctxt "@info:status"
  508. msgid "There is no active printer yet."
  509. msgstr "아직 활성화된 프린터가 없습니다."
  510. #: cura/Settings/CuraContainerRegistry.py:469
  511. msgctxt "@info:status"
  512. msgid "Unable to add the profile."
  513. msgstr "프로파일을 추가할 수 없습니다."
  514. #: cura/Settings/CuraContainerRegistry.py:483
  515. #, python-brace-format
  516. msgctxt "@info:status"
  517. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  518. msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다."
  519. #: cura/Settings/CuraContainerRegistry.py:488
  520. #, python-brace-format
  521. msgctxt "@info:status"
  522. 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."
  523. msgstr "경고: 프로파일은 '{0}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오."
  524. #: cura/Settings/MachineManager.py:746
  525. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:221
  526. msgctxt "@label"
  527. msgid "Nozzle"
  528. msgstr "노즐"
  529. #: cura/Settings/MachineManager.py:890
  530. msgctxt "@info:message Followed by a list of settings."
  531. msgid "Settings have been changed to match the current availability of extruders:"
  532. msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:"
  533. #: cura/Settings/MachineManager.py:891
  534. msgctxt "@info:title"
  535. msgid "Settings updated"
  536. msgstr "설정이 업데이트되었습니다"
  537. #: cura/Settings/MachineManager.py:1514
  538. msgctxt "@info:title"
  539. msgid "Extruder(s) Disabled"
  540. msgstr "익스트루더 비활성화됨"
  541. #: cura/Settings/cura_empty_instance_containers.py:36
  542. msgctxt "@info:not supported profile"
  543. msgid "Not supported"
  544. msgstr "지원되지 않음"
  545. #: cura/Settings/cura_empty_instance_containers.py:55
  546. msgctxt "@info:No intent profile selected"
  547. msgid "Default"
  548. msgstr ""
  549. #: cura/UI/AddPrinterPagesModel.py:17
  550. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  551. msgctxt "@action:button"
  552. msgid "Add"
  553. msgstr "추가"
  554. #: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290
  555. msgctxt "@action:button"
  556. msgid "Finish"
  557. msgstr "종료"
  558. #: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386
  559. #: plugins/ImageReader/ConfigUI.qml:323
  560. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  561. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  562. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  563. #: resources/qml/ColorDialog.qml:143
  564. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  565. #: resources/qml/Dialogs/RenameDialog.qml:103
  566. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  567. msgctxt "@action:button"
  568. msgid "Cancel"
  569. msgstr "취소"
  570. #: cura/UI/ObjectsModel.py:69
  571. #, python-brace-format
  572. msgctxt "@label"
  573. msgid "Group #{group_nr}"
  574. msgstr "그룹 #{group_nr}"
  575. #: cura/UI/PrintInformation.py:87
  576. msgctxt "@tooltip"
  577. msgid "Outer Wall"
  578. msgstr "외벽"
  579. #: cura/UI/PrintInformation.py:88
  580. msgctxt "@tooltip"
  581. msgid "Inner Walls"
  582. msgstr "내벽"
  583. #: cura/UI/PrintInformation.py:89
  584. msgctxt "@tooltip"
  585. msgid "Skin"
  586. msgstr "스킨"
  587. #: cura/UI/PrintInformation.py:90
  588. msgctxt "@tooltip"
  589. msgid "Infill"
  590. msgstr "내부채움"
  591. #: cura/UI/PrintInformation.py:91
  592. msgctxt "@tooltip"
  593. msgid "Support Infill"
  594. msgstr "내부채움 서포트"
  595. #: cura/UI/PrintInformation.py:92
  596. msgctxt "@tooltip"
  597. msgid "Support Interface"
  598. msgstr "지원하는 인터페이스"
  599. #: cura/UI/PrintInformation.py:93
  600. msgctxt "@tooltip"
  601. msgid "Support"
  602. msgstr "서포트"
  603. #: cura/UI/PrintInformation.py:94
  604. msgctxt "@tooltip"
  605. msgid "Skirt"
  606. msgstr "스커트"
  607. #: cura/UI/PrintInformation.py:95
  608. msgctxt "@tooltip"
  609. msgid "Prime Tower"
  610. msgstr "프라임 타워"
  611. #: cura/UI/PrintInformation.py:96
  612. msgctxt "@tooltip"
  613. msgid "Travel"
  614. msgstr "움직임 경로"
  615. #: cura/UI/PrintInformation.py:97
  616. msgctxt "@tooltip"
  617. msgid "Retractions"
  618. msgstr "리트랙션"
  619. #: cura/UI/PrintInformation.py:98
  620. msgctxt "@tooltip"
  621. msgid "Other"
  622. msgstr "다른"
  623. #: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63
  624. msgctxt "@text:window"
  625. msgid "The release notes could not be opened."
  626. msgstr "릴리즈 노트를 열 수 없습니다."
  627. #: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277
  628. msgctxt "@action:button"
  629. msgid "Next"
  630. msgstr "다음"
  631. #: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68
  632. msgctxt "@action:button"
  633. msgid "Skip"
  634. msgstr "건너뛰기"
  635. #: cura/UI/WhatsNewPagesModel.py:76
  636. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  637. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  638. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  639. #: resources/qml/Dialogs/AboutDialog.qml:188
  640. msgctxt "@action:button"
  641. msgid "Close"
  642. msgstr "닫기"
  643. #: cura/UltimakerCloud/CloudMaterialSync.py:66
  644. msgctxt "@action:button"
  645. msgid "Please sync the material profiles with your printers before starting to print."
  646. msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오."
  647. #: cura/UltimakerCloud/CloudMaterialSync.py:67
  648. msgctxt "@action:button"
  649. msgid "New materials installed"
  650. msgstr "새로운 재료가 설치됨"
  651. #: cura/UltimakerCloud/CloudMaterialSync.py:74
  652. msgctxt "@action:button"
  653. msgid "Sync materials"
  654. msgstr "재료 동기화"
  655. #: cura/UltimakerCloud/CloudMaterialSync.py:82
  656. #: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80
  657. msgctxt "@action:button"
  658. msgid "Learn more"
  659. msgstr "자세히 알아보기"
  660. #: cura/UltimakerCloud/CloudMaterialSync.py:135
  661. msgctxt "@message:text"
  662. msgid "Could not save material archive to {}:"
  663. msgstr "재료 아카이브를 {}에 저장할 수 없음:"
  664. #: cura/UltimakerCloud/CloudMaterialSync.py:136
  665. msgctxt "@message:title"
  666. msgid "Failed to save material archive"
  667. msgstr "재료 아카이브를 저장하는 데 실패함"
  668. #: cura/UltimakerCloud/CloudMaterialSync.py:188
  669. msgctxt "@text"
  670. msgid "Unknown error."
  671. msgstr "알 수 없는 오류입니다."
  672. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:558
  673. #, python-brace-format
  674. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  675. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  676. msgstr "프로젝트 파일 <filename>{0}</filename>에 알 수 없는 기기 유형 <message>{1}</message>이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다."
  677. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:561
  678. msgctxt "@info:title"
  679. msgid "Open Project File"
  680. msgstr "프로젝트 파일 열기"
  681. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  682. #: plugins/3MFReader/WorkspaceDialog.qml:99
  683. #: plugins/3MFReader/WorkspaceDialog.qml:127
  684. #: plugins/3MFReader/WorkspaceDialog.qml:134
  685. msgctxt "@button"
  686. msgid "Create new"
  687. msgstr "새로 만들기"
  688. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:692
  689. #, python-brace-format
  690. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  691. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  692. msgstr "프로젝트 파일 <filename>{0}</filename>에 갑자기 접근할 수 없습니다: <message>{1}</message>."
  693. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
  694. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
  695. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:720
  696. msgctxt "@info:title"
  697. msgid "Can't Open Project File"
  698. msgstr "프로젝트 파일 열 수 없음"
  699. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:700
  700. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:718
  701. #, python-brace-format
  702. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  703. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  704. msgstr "프로젝트 파일 <filename>{0}</filename>이 손상됨: <message>{1}</message>."
  705. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:765
  706. #, python-brace-format
  707. msgctxt "@info:error Don't translate the XML tag <filename>!"
  708. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  709. msgstr "프로젝트 파일 <filename>{0}</filename>이(가) 이 버전의 UltiMaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다."
  710. #: plugins/3MFReader/WorkspaceDialog.py:233
  711. msgctxt "@title:tab"
  712. msgid "Recommended"
  713. msgstr "추천"
  714. #: plugins/3MFReader/WorkspaceDialog.py:235
  715. msgctxt "@title:tab"
  716. msgid "Custom"
  717. msgstr "사용자 정의"
  718. #: plugins/3MFReader/WorkspaceDialog.py:411
  719. msgctxt "@info:status"
  720. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  721. msgstr "이 프로젝트에 사용된 재료는 Cura에서 지원하지 않는 재료로 원하지 않는 3D 출력물을 생산할 수도 있습니다. Marketplace의 전체 재료 패키지를 설치하는 것을 권장합니다."
  722. #: plugins/3MFReader/WorkspaceDialog.py:413
  723. msgctxt "@info:title"
  724. msgid "Material profiles not installed"
  725. msgstr "재료 프로파일이 설치되지 않음"
  726. #: plugins/3MFReader/WorkspaceDialog.py:426
  727. msgctxt "@action:button"
  728. msgid "Install Materials"
  729. msgstr "재료 설치"
  730. #: plugins/3MFReader/WorkspaceDialog.qml:15
  731. msgctxt "@title:window"
  732. msgid "Open Project"
  733. msgstr "프로젝트 열기"
  734. #: plugins/3MFReader/WorkspaceDialog.qml:31
  735. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  736. msgctxt "@action:title"
  737. msgid "Summary - Cura Project"
  738. msgstr "요약 - Cura 프로젝트"
  739. #: plugins/3MFReader/WorkspaceDialog.qml:65
  740. msgctxt "@action:ComboBox Update/override existing profile"
  741. msgid "Update existing"
  742. msgstr "기존 업데이트"
  743. #: plugins/3MFReader/WorkspaceDialog.qml:66
  744. msgctxt "@action:ComboBox Save settings in a new profile"
  745. msgid "Create new"
  746. msgstr "새로 만들기"
  747. #: plugins/3MFReader/WorkspaceDialog.qml:83
  748. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  749. msgctxt "@action:label"
  750. msgid "Printer settings"
  751. msgstr "프린터 설정"
  752. #: plugins/3MFReader/WorkspaceDialog.qml:92
  753. #: plugins/3MFReader/WorkspaceRow.qml:23
  754. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  755. msgctxt "@action:label"
  756. msgid "Type"
  757. msgstr "유형"
  758. #: plugins/3MFReader/WorkspaceDialog.qml:98
  759. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  760. msgctxt "@action:label"
  761. msgid "Printer Group"
  762. msgstr "프린터 그룹"
  763. #: plugins/3MFReader/WorkspaceDialog.qml:103
  764. msgctxt "@action:label"
  765. msgid "Open With"
  766. msgstr "다음으로 열기"
  767. #: plugins/3MFReader/WorkspaceDialog.qml:104
  768. msgctxt "@info:tooltip"
  769. msgid "Printer settings will be updated to match the settings saved with the project."
  770. msgstr "프린터 설정은 프로젝트에 저장된 설정과 일치하도록 업데이트됩니다."
  771. #: plugins/3MFReader/WorkspaceDialog.qml:156
  772. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  773. msgctxt "@action:label"
  774. msgid "Profile settings"
  775. msgstr "프로파일 설정"
  776. #: plugins/3MFReader/WorkspaceDialog.qml:166
  777. #: plugins/3MFReader/WorkspaceDialog.qml:238
  778. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  779. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  780. msgctxt "@action:label"
  781. msgid "Name"
  782. msgstr "이름"
  783. #: plugins/3MFReader/WorkspaceDialog.qml:172
  784. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  785. msgctxt "@action:label"
  786. msgid "Intent"
  787. msgstr ""
  788. #: plugins/3MFReader/WorkspaceDialog.qml:178
  789. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  790. msgctxt "@action:label"
  791. msgid "Not in profile"
  792. msgstr "프로파일에 없음"
  793. #: plugins/3MFReader/WorkspaceDialog.qml:179
  794. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  795. msgctxt "@action:label"
  796. msgid "%1 override"
  797. msgid_plural "%1 overrides"
  798. msgstr[0] "%1 무시"
  799. #: plugins/3MFReader/WorkspaceDialog.qml:185
  800. msgctxt "@action:label"
  801. msgid "Derivative from"
  802. msgstr ""
  803. #: plugins/3MFReader/WorkspaceDialog.qml:186
  804. msgctxt "@action:label"
  805. msgid "%1, %2 override"
  806. msgid_plural "%1, %2 overrides"
  807. msgstr[0] "%1, %2 무시"
  808. #: plugins/3MFReader/WorkspaceDialog.qml:226
  809. msgctxt "@action:label"
  810. msgid "Material settings"
  811. msgstr "재료 설정"
  812. #: plugins/3MFReader/WorkspaceDialog.qml:280
  813. msgctxt "@action:label"
  814. msgid "Setting visibility"
  815. msgstr "표시 설정"
  816. #: plugins/3MFReader/WorkspaceDialog.qml:290
  817. msgctxt "@action:label"
  818. msgid "Mode"
  819. msgstr "종류"
  820. #: plugins/3MFReader/WorkspaceDialog.qml:296
  821. msgctxt "@action:label"
  822. msgid "%1 out of %2"
  823. msgstr "1 out of %2"
  824. #: plugins/3MFReader/WorkspaceDialog.qml:321
  825. msgctxt "@action:warning"
  826. msgid "Loading a project will clear all models on the build plate."
  827. msgstr "프로젝트를 로드하면 빌드 플레이트의 모든 모델이 지워집니다."
  828. #: plugins/3MFReader/WorkspaceDialog.qml:367
  829. msgctxt "@label"
  830. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  831. msgstr "이 프로젝트에 사용된 재료는 현재 Cura에 설치되지 않았습니다.<br/>재료 프로파일을 설치하고 프로젝트를 다시 여십시오."
  832. #: plugins/3MFReader/WorkspaceDialog.qml:392
  833. msgctxt "@action:button"
  834. msgid "Open"
  835. msgstr "열기"
  836. #: plugins/3MFReader/WorkspaceDialog.qml:398
  837. msgctxt "@action:button"
  838. msgid "Open project anyway"
  839. msgstr "무시하고 프로젝트 열기"
  840. #: plugins/3MFReader/WorkspaceDialog.qml:407
  841. msgctxt "@action:button"
  842. msgid "Install missing material"
  843. msgstr "누락된 재료 설치하기"
  844. #: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33
  845. msgctxt "@item:inlistbox"
  846. msgid "3MF File"
  847. msgstr "3MF 파일"
  848. #: plugins/3MFReader/plugin.json
  849. msgctxt "name"
  850. msgid "3MF Reader"
  851. msgstr "3MF 리더"
  852. #: plugins/3MFReader/plugin.json
  853. msgctxt "description"
  854. msgid "Provides support for reading 3MF files."
  855. msgstr "3MF 파일 읽기 지원."
  856. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  857. msgctxt "@error:zip"
  858. msgid "3MF Writer plug-in is corrupt."
  859. msgstr "3MF 기록기 플러그인이 손상되었습니다."
  860. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  861. msgctxt "@error"
  862. msgid "There is no workspace yet to write. Please add a printer first."
  863. msgstr "작성할 작업 환경이 없습니다. 프린터를 먼저 추가하십시오."
  864. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  865. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  866. msgctxt "@error:zip"
  867. msgid "No permission to write the workspace here."
  868. msgstr "여기서 작업 환경을 작성할 권한이 없습니다."
  869. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  870. msgctxt "@error:zip"
  871. msgid "The operating system does not allow saving a project file to this location or with this file name."
  872. msgstr "운영 체제가 프로젝트 파일을 이 위치로 또는 이 파일명으로 저장하지 못합니다."
  873. #: plugins/3MFWriter/ThreeMFWriter.py:240
  874. msgctxt "@error:zip"
  875. msgid "Error writing 3mf file."
  876. msgstr "3MF 파일 작성 중 오류."
  877. #: plugins/3MFWriter/__init__.py:28
  878. msgctxt "@item:inlistbox"
  879. msgid "3MF file"
  880. msgstr "3MF 파일"
  881. #: plugins/3MFWriter/__init__.py:36
  882. msgctxt "@item:inlistbox"
  883. msgid "Cura Project 3MF file"
  884. msgstr "Cura 프로젝트 3MF 파일"
  885. #: plugins/3MFWriter/plugin.json
  886. msgctxt "name"
  887. msgid "3MF Writer"
  888. msgstr "3MF 기록기"
  889. #: plugins/3MFWriter/plugin.json
  890. msgctxt "description"
  891. msgid "Provides support for writing 3MF files."
  892. msgstr "3MF 파일 작성 지원을 제공합니다."
  893. #: plugins/AMFReader/__init__.py:15
  894. msgctxt "@item:inlistbox"
  895. msgid "AMF File"
  896. msgstr "AMF 파일"
  897. #: plugins/AMFReader/plugin.json
  898. msgctxt "name"
  899. msgid "AMF Reader"
  900. msgstr "AMF 리더"
  901. #: plugins/AMFReader/plugin.json
  902. msgctxt "description"
  903. msgid "Provides support for reading AMF files."
  904. msgstr "AMF 파일 읽기가 지원됩니다."
  905. #: plugins/CuraDrive/plugin.json
  906. msgctxt "description"
  907. msgid "Backup and restore your configuration."
  908. msgstr "구성을 백업하고 복원합니다."
  909. #: plugins/CuraDrive/plugin.json
  910. msgctxt "name"
  911. msgid "Cura Backups"
  912. msgstr "Cura 백업"
  913. #: plugins/CuraDrive/src/CreateBackupJob.py:25
  914. msgctxt "@info:title"
  915. msgid "Backups"
  916. msgstr "백업"
  917. #: plugins/CuraDrive/src/CreateBackupJob.py:26
  918. msgctxt "@info:backup_status"
  919. msgid "There was an error while uploading your backup."
  920. msgstr "백업을 업로드하는 도중 오류가 있었습니다."
  921. #: plugins/CuraDrive/src/CreateBackupJob.py:46
  922. msgctxt "@info:backup_status"
  923. msgid "Creating your backup..."
  924. msgstr "백업 생성 중..."
  925. #: plugins/CuraDrive/src/CreateBackupJob.py:55
  926. msgctxt "@info:backup_status"
  927. msgid "There was an error while creating your backup."
  928. msgstr "백업을 생성하는 도중 오류가 있었습니다."
  929. #: plugins/CuraDrive/src/CreateBackupJob.py:59
  930. msgctxt "@info:backup_status"
  931. msgid "Uploading your backup..."
  932. msgstr "백업 업로드 중..."
  933. #: plugins/CuraDrive/src/CreateBackupJob.py:69
  934. msgctxt "@info:backup_status"
  935. msgid "Your backup has finished uploading."
  936. msgstr "백업이 업로드를 완료했습니다."
  937. #: plugins/CuraDrive/src/CreateBackupJob.py:103
  938. msgctxt "@error:file_size"
  939. msgid "The backup exceeds the maximum file size."
  940. msgstr "백업이 최대 파일 크기를 초과했습니다."
  941. #: plugins/CuraDrive/src/DriveApiService.py:86
  942. #: plugins/CuraDrive/src/RestoreBackupJob.py:26
  943. msgctxt "@info:backup_status"
  944. msgid "There was an error trying to restore your backup."
  945. msgstr "백업 복원 시도 중 오류가 있었습니다."
  946. #: plugins/CuraDrive/src/DrivePluginExtension.py:69
  947. msgctxt "@item:inmenu"
  948. msgid "Manage backups"
  949. msgstr "백업 관리"
  950. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  951. msgctxt "@button"
  952. msgid "Want more?"
  953. msgstr "무엇을 더 하시겠습니까?"
  954. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  955. msgctxt "@button"
  956. msgid "Backup Now"
  957. msgstr "지금 백업"
  958. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  959. msgctxt "@checkbox:description"
  960. msgid "Auto Backup"
  961. msgstr "자동 백업"
  962. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  963. msgctxt "@checkbox:description"
  964. msgid "Automatically create a backup each day that Cura is started."
  965. msgstr "Cura가 시작되는 날마다 자동으로 백업을 생성하십시오."
  966. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  967. msgctxt "@button"
  968. msgid "Restore"
  969. msgstr "복원"
  970. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  971. msgctxt "@dialog:title"
  972. msgid "Delete Backup"
  973. msgstr "백업 삭제"
  974. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  975. msgctxt "@dialog:info"
  976. msgid "Are you sure you want to delete this backup? This cannot be undone."
  977. msgstr "이 백업을 삭제하시겠습니까? 이 작업을 완료할 수 없습니다."
  978. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  979. msgctxt "@dialog:title"
  980. msgid "Restore Backup"
  981. msgstr "백업 복원"
  982. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  983. msgctxt "@dialog:info"
  984. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  985. msgstr "백업이 복원되기 전에 Cura를 다시 시작해야 합니다. 지금 Cura를 닫으시겠습니까?"
  986. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  987. msgctxt "@backuplist:label"
  988. msgid "Cura Version"
  989. msgstr "Cura 버전"
  990. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  991. msgctxt "@backuplist:label"
  992. msgid "Machines"
  993. msgstr "기기"
  994. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  995. msgctxt "@backuplist:label"
  996. msgid "Materials"
  997. msgstr "재료"
  998. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  999. msgctxt "@backuplist:label"
  1000. msgid "Profiles"
  1001. msgstr "프로파일"
  1002. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1003. msgctxt "@backuplist:label"
  1004. msgid "Plugins"
  1005. msgstr "플러그인"
  1006. #: plugins/CuraDrive/src/qml/main.qml:25
  1007. msgctxt "@title:window"
  1008. msgid "Cura Backups"
  1009. msgstr "Cura 백업"
  1010. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1011. msgctxt "@title"
  1012. msgid "My Backups"
  1013. msgstr "내 백업"
  1014. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  1015. msgctxt "@empty_state"
  1016. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1017. msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하여 생성하십시오."
  1018. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  1019. msgctxt "@backup_limit_info"
  1020. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1021. msgstr "미리 보기 단계 중에는 보이는 백업 5개로 제한됩니다. 기존 백업을 보려면 백업을 제거하십시오."
  1022. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1023. msgctxt "@description"
  1024. msgid "Backup and synchronize your Cura settings."
  1025. msgstr "Cura 설정을 백업, 동기화하십시오."
  1026. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  1027. #: plugins/Marketplace/resources/qml/Marketplace.qml:312
  1028. #: resources/qml/Account/GeneralOperations.qml:49
  1029. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  1030. #: resources/qml/WelcomePages/CloudContent.qml:212
  1031. msgctxt "@button"
  1032. msgid "Sign in"
  1033. msgstr "로그인"
  1034. #: plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1035. msgctxt "@message"
  1036. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1037. msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오."
  1038. #: plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1039. msgctxt "@message:title"
  1040. msgid "Slicing failed"
  1041. msgstr "슬라이싱 실패"
  1042. #: plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1043. msgctxt "@message:button"
  1044. msgid "Report a bug"
  1045. msgstr "버그 보고"
  1046. #: plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1047. msgctxt "@message:description"
  1048. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1049. msgstr ""
  1050. #: plugins/CuraEngineBackend/CuraEngineBackend.py:416
  1051. msgctxt "@info:status"
  1052. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1053. msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다."
  1054. #: plugins/CuraEngineBackend/CuraEngineBackend.py:417
  1055. #: plugins/CuraEngineBackend/CuraEngineBackend.py:450
  1056. #: plugins/CuraEngineBackend/CuraEngineBackend.py:477
  1057. #: plugins/CuraEngineBackend/CuraEngineBackend.py:489
  1058. #: plugins/CuraEngineBackend/CuraEngineBackend.py:501
  1059. #: plugins/CuraEngineBackend/CuraEngineBackend.py:514
  1060. msgctxt "@info:title"
  1061. msgid "Unable to slice"
  1062. msgstr "슬라이스 할 수 없습니다"
  1063. #: plugins/CuraEngineBackend/CuraEngineBackend.py:449
  1064. #, python-brace-format
  1065. msgctxt "@info:status"
  1066. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1067. msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}"
  1068. #: plugins/CuraEngineBackend/CuraEngineBackend.py:476
  1069. #, python-brace-format
  1070. msgctxt "@info:status"
  1071. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1072. msgstr "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}"
  1073. #: plugins/CuraEngineBackend/CuraEngineBackend.py:488
  1074. msgctxt "@info:status"
  1075. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1076. msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다."
  1077. #: plugins/CuraEngineBackend/CuraEngineBackend.py:500
  1078. #, python-format
  1079. msgctxt "@info:status"
  1080. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1081. msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다."
  1082. #: plugins/CuraEngineBackend/CuraEngineBackend.py:510
  1083. msgctxt "@info:status"
  1084. msgid ""
  1085. "Please review settings and check if your models:\n"
  1086. "- Fit within the build volume\n"
  1087. "- Are assigned to an enabled extruder\n"
  1088. "- Are not all set as modifier meshes"
  1089. msgstr ""
  1090. "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n"
  1091. "- 출력 사이즈 내에 맞춤화됨\n"
  1092. "- 활성화된 익스트루더로 할당됨\n"
  1093. "- 수정자 메쉬로 전체 설정되지 않음"
  1094. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1095. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1096. msgctxt "@info:status"
  1097. msgid "Processing Layers"
  1098. msgstr "레이어 처리 중"
  1099. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1100. msgctxt "@info:title"
  1101. msgid "Information"
  1102. msgstr "정보"
  1103. #: plugins/CuraEngineBackend/plugin.json
  1104. msgctxt "name"
  1105. msgid "CuraEngine Backend"
  1106. msgstr "CuraEngine 백엔드"
  1107. #: plugins/CuraEngineBackend/plugin.json
  1108. msgctxt "description"
  1109. msgid "Provides the link to the CuraEngine slicing backend."
  1110. msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다."
  1111. #: plugins/CuraProfileReader/__init__.py:14
  1112. #: plugins/CuraProfileWriter/__init__.py:14
  1113. msgctxt "@item:inlistbox"
  1114. msgid "Cura Profile"
  1115. msgstr "Cura 프로파일"
  1116. #: plugins/CuraProfileReader/plugin.json
  1117. msgctxt "name"
  1118. msgid "Cura Profile Reader"
  1119. msgstr "Cura 프로파일 리더"
  1120. #: plugins/CuraProfileReader/plugin.json
  1121. msgctxt "description"
  1122. msgid "Provides support for importing Cura profiles."
  1123. msgstr "Cura 프로파일 가져 오기 지원을 제공합니다."
  1124. #: plugins/CuraProfileWriter/plugin.json
  1125. msgctxt "name"
  1126. msgid "Cura Profile Writer"
  1127. msgstr "Cura 프로파일 작성자"
  1128. #: plugins/CuraProfileWriter/plugin.json
  1129. msgctxt "description"
  1130. msgid "Provides support for exporting Cura profiles."
  1131. msgstr "Cura 프로파일 내보내기 지원을 제공합니다."
  1132. #: plugins/DigitalLibrary/plugin.json
  1133. msgctxt "description"
  1134. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  1135. msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다."
  1136. #: plugins/DigitalLibrary/plugin.json
  1137. msgctxt "name"
  1138. msgid "Ultimaker Digital Library"
  1139. msgstr "UltiMaker 디지털 라이브러리"
  1140. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  1141. msgctxt "@option"
  1142. msgid "Save Cura project and print file"
  1143. msgstr "Cura 프로젝트 저장하고 파일 프린팅하기"
  1144. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  1145. msgctxt "@option"
  1146. msgid "Save Cura project"
  1147. msgstr "Cura 프로젝트 저장하기"
  1148. #: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1149. msgctxt "@text Placeholder for the username if it has been deleted"
  1150. msgid "deleted user"
  1151. msgstr "삭제된 사용자"
  1152. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1153. msgctxt "@info"
  1154. msgid "Could not access update information."
  1155. msgstr "업데이트 정보에 액세스 할 수 없습니다."
  1156. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1157. #, python-brace-format
  1158. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1159. 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}."
  1160. msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 완료하지 않은 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다."
  1161. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1162. #, python-format
  1163. msgctxt "@info:title The %s gets replaced with the printer name."
  1164. msgid "New %s stable firmware available"
  1165. msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다"
  1166. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1167. msgctxt "@action:button"
  1168. msgid "How to update"
  1169. msgstr "업데이트하는 방법"
  1170. #: plugins/FirmwareUpdateChecker/plugin.json
  1171. msgctxt "description"
  1172. msgid "Checks for firmware updates."
  1173. msgstr "펌웨어 업데이트를 확인합니다."
  1174. #: plugins/FirmwareUpdateChecker/plugin.json
  1175. msgctxt "name"
  1176. msgid "Firmware Update Checker"
  1177. msgstr "펌웨어 업데이트 검사기"
  1178. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1179. msgctxt "@action"
  1180. msgid "Update Firmware"
  1181. msgstr "펌웨어 업데이트"
  1182. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1183. msgctxt "@title"
  1184. msgid "Update Firmware"
  1185. msgstr "펌웨어 업데이트"
  1186. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1187. msgctxt "@label"
  1188. 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."
  1189. msgstr "펌웨어는 3D 프린터에서 직접 실행되는 소프트웨어입니다. 이 펌웨어는 스텝 모터를 제어하고 온도를 조절하며 프린터를 작동시킵니다."
  1190. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1191. msgctxt "@label"
  1192. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1193. msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다."
  1194. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1195. msgctxt "@action:button"
  1196. msgid "Automatically upgrade Firmware"
  1197. msgstr "펌웨어 자동 업그레이드"
  1198. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1199. msgctxt "@action:button"
  1200. msgid "Upload custom Firmware"
  1201. msgstr "사용자 정의 펌웨어 업로드"
  1202. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1203. msgctxt "@label"
  1204. msgid "Firmware can not be updated because there is no connection with the printer."
  1205. msgstr "프린터와 연결되지 않아 펌웨어를 업데이트할 수 없습니다."
  1206. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1207. msgctxt "@label"
  1208. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1209. msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다."
  1210. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1211. msgctxt "@title:window"
  1212. msgid "Select custom firmware"
  1213. msgstr "사용자 정의 펌웨어 선택"
  1214. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  1215. msgctxt "@title:window"
  1216. msgid "Firmware Update"
  1217. msgstr "펌웨어 업데이트"
  1218. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  1219. msgctxt "@label"
  1220. msgid "Updating firmware."
  1221. msgstr "펌웨어 업데이트 중."
  1222. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  1223. msgctxt "@label"
  1224. msgid "Firmware update completed."
  1225. msgstr "펌웨어 업데이트가 완료되었습니다."
  1226. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  1227. msgctxt "@label"
  1228. msgid "Firmware update failed due to an unknown error."
  1229. msgstr "알 수 없는 오류로 인해 펌웨어 업데이트에 실패했습니다."
  1230. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1231. msgctxt "@label"
  1232. msgid "Firmware update failed due to an communication error."
  1233. msgstr "통신 오류로 인해 펌웨어 업데이트에 실패했습니다."
  1234. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1235. msgctxt "@label"
  1236. msgid "Firmware update failed due to an input/output error."
  1237. msgstr "입/출력 오류로 인해 펌웨어 업데이트에 실패했습니다."
  1238. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1239. msgctxt "@label"
  1240. msgid "Firmware update failed due to missing firmware."
  1241. msgstr "펌웨어 누락으로 인해 펌웨어 업데이트에 실패했습니다."
  1242. #: plugins/FirmwareUpdater/plugin.json
  1243. msgctxt "name"
  1244. msgid "Firmware Updater"
  1245. msgstr "펌웨어 업데이터"
  1246. #: plugins/FirmwareUpdater/plugin.json
  1247. msgctxt "description"
  1248. msgid "Provides a machine actions for updating firmware."
  1249. msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다."
  1250. #: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17
  1251. msgctxt "@item:inlistbox"
  1252. msgid "Compressed G-code File"
  1253. msgstr "압축된 G-code 파일"
  1254. #: plugins/GCodeGzReader/plugin.json
  1255. msgctxt "name"
  1256. msgid "Compressed G-code Reader"
  1257. msgstr "압축 된 G 코드 리더기"
  1258. #: plugins/GCodeGzReader/plugin.json
  1259. msgctxt "description"
  1260. msgid "Reads g-code from a compressed archive."
  1261. msgstr "압축 된 아카이브로 부터 g-code를 읽습니다."
  1262. #: plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1263. msgctxt "@error:not supported"
  1264. msgid "GCodeGzWriter does not support text mode."
  1265. msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다."
  1266. #: plugins/GCodeGzWriter/plugin.json
  1267. msgctxt "name"
  1268. msgid "Compressed G-code Writer"
  1269. msgstr "압축 된 G 코드 작성기"
  1270. #: plugins/GCodeGzWriter/plugin.json
  1271. msgctxt "description"
  1272. msgid "Writes g-code to a compressed archive."
  1273. msgstr "압축 된 아카이브에 g-code를 씁니다."
  1274. #: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14
  1275. #: plugins/GCodeWriter/__init__.py:16
  1276. msgctxt "@item:inlistbox"
  1277. msgid "G-code File"
  1278. msgstr "G-code 파일"
  1279. #: plugins/GCodeProfileReader/plugin.json
  1280. msgctxt "name"
  1281. msgid "G-code Profile Reader"
  1282. msgstr "GCode 프로파일 리더기"
  1283. #: plugins/GCodeProfileReader/plugin.json
  1284. msgctxt "description"
  1285. msgid "Provides support for importing profiles from g-code files."
  1286. msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다."
  1287. #: plugins/GCodeReader/FlavorParser.py:359
  1288. msgctxt "@info:status"
  1289. msgid "Parsing G-code"
  1290. msgstr "G 코드 파싱"
  1291. #: plugins/GCodeReader/FlavorParser.py:361
  1292. #: plugins/GCodeReader/FlavorParser.py:515
  1293. msgctxt "@info:title"
  1294. msgid "G-code Details"
  1295. msgstr "G-코드 세부 정보"
  1296. #: plugins/GCodeReader/FlavorParser.py:513
  1297. msgctxt "@info:generic"
  1298. 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."
  1299. msgstr "파일을 보내기 전에 g-코드가 프린터 및 프린터 구성에 적합한 지 확인하십시오. g-코드가 정확하지 않을 수 있습니다."
  1300. #: plugins/GCodeReader/__init__.py:18
  1301. msgctxt "@item:inlistbox"
  1302. msgid "G File"
  1303. msgstr "G 파일"
  1304. #: plugins/GCodeReader/plugin.json
  1305. msgctxt "description"
  1306. msgid "Allows loading and displaying G-code files."
  1307. msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다."
  1308. #: plugins/GCodeReader/plugin.json
  1309. msgctxt "name"
  1310. msgid "G-code Reader"
  1311. msgstr "G-코드 리더"
  1312. #: plugins/GCodeWriter/GCodeWriter.py:75
  1313. msgctxt "@error:not supported"
  1314. msgid "GCodeWriter does not support non-text mode."
  1315. msgstr "GCodeWriter는 텍스트가 아닌 모드는 지원하지 않습니다."
  1316. #: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97
  1317. msgctxt "@warning:status"
  1318. msgid "Please prepare G-code before exporting."
  1319. msgstr "내보내기 전에 G-code를 준비하십시오."
  1320. #: plugins/GCodeWriter/plugin.json
  1321. msgctxt "name"
  1322. msgid "G-code Writer"
  1323. msgstr "GCode 작성자"
  1324. #: plugins/GCodeWriter/plugin.json
  1325. msgctxt "description"
  1326. msgid "Writes g-code to a file."
  1327. msgstr "G Code를 파일에 씁니다."
  1328. #: plugins/ImageReader/ConfigUI.qml:14
  1329. msgctxt "@title:window"
  1330. msgid "Convert Image"
  1331. msgstr "이미지 변환"
  1332. #: plugins/ImageReader/ConfigUI.qml:33
  1333. msgctxt "@action:label"
  1334. msgid "Height (mm)"
  1335. msgstr "높이 (mm)"
  1336. #: plugins/ImageReader/ConfigUI.qml:56
  1337. msgctxt "@info:tooltip"
  1338. msgid "The maximum distance of each pixel from \"Base.\""
  1339. msgstr "\"Base\"에서 각 픽셀까지의 최대 거리."
  1340. #: plugins/ImageReader/ConfigUI.qml:66
  1341. msgctxt "@action:label"
  1342. msgid "Base (mm)"
  1343. msgstr "바닥 (mm)"
  1344. #: plugins/ImageReader/ConfigUI.qml:90
  1345. msgctxt "@info:tooltip"
  1346. msgid "The base height from the build plate in millimeters."
  1347. msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이."
  1348. #: plugins/ImageReader/ConfigUI.qml:100
  1349. msgctxt "@action:label"
  1350. msgid "Width (mm)"
  1351. msgstr "너비 (mm)"
  1352. #: plugins/ImageReader/ConfigUI.qml:124
  1353. msgctxt "@info:tooltip"
  1354. msgid "The width in millimeters on the build plate"
  1355. msgstr "빌드 플레이트의 폭 (밀리미터)"
  1356. #: plugins/ImageReader/ConfigUI.qml:134
  1357. msgctxt "@action:label"
  1358. msgid "Depth (mm)"
  1359. msgstr "깊이 (mm)"
  1360. #: plugins/ImageReader/ConfigUI.qml:158
  1361. msgctxt "@info:tooltip"
  1362. msgid "The depth in millimeters on the build plate"
  1363. msgstr "빌드 플레이트의 깊이 (밀리미터)"
  1364. #: plugins/ImageReader/ConfigUI.qml:187
  1365. msgctxt "@item:inlistbox"
  1366. msgid "Darker is higher"
  1367. msgstr "어두울수록 높음"
  1368. #: plugins/ImageReader/ConfigUI.qml:188
  1369. msgctxt "@item:inlistbox"
  1370. msgid "Lighter is higher"
  1371. msgstr "밝을수록 높음"
  1372. #: plugins/ImageReader/ConfigUI.qml:195
  1373. msgctxt "@info:tooltip"
  1374. 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."
  1375. msgstr "리쏘페인(투각)의 경우 들어오는 더 많은 빛을 차단하기 위해서는 다크 픽셀이 더 두꺼운 위치에 해당해야 합니다. 높이 지도의 경우 더 밝은 픽셀이 더 높은 지역을 나타냅니다. 따라서 생성된 3D 모델에서 더 밝은 픽셀이 더 두꺼운 위치에 해당해야 합니다."
  1376. #: plugins/ImageReader/ConfigUI.qml:205
  1377. msgctxt "@action:label"
  1378. msgid "Color Model"
  1379. msgstr "색상 모델"
  1380. #: plugins/ImageReader/ConfigUI.qml:224
  1381. msgctxt "@item:inlistbox"
  1382. msgid "Linear"
  1383. msgstr "직선 모양"
  1384. #: plugins/ImageReader/ConfigUI.qml:225
  1385. msgctxt "@item:inlistbox"
  1386. msgid "Translucency"
  1387. msgstr "반투명성"
  1388. #: plugins/ImageReader/ConfigUI.qml:232
  1389. msgctxt "@info:tooltip"
  1390. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1391. msgstr "리쏘페인의 경우 반투명성을 위한 간단한 로그 모델을 사용할 수 있습니다. 높이 지도의 경우, 픽셀 값은 높이에 선형적으로 부합합니다."
  1392. #: plugins/ImageReader/ConfigUI.qml:242
  1393. msgctxt "@action:label"
  1394. msgid "1mm Transmittance (%)"
  1395. msgstr "1mm의 투과율(%)"
  1396. #: plugins/ImageReader/ConfigUI.qml:263
  1397. msgctxt "@info:tooltip"
  1398. 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."
  1399. msgstr "두께가 1mm인 출력물을 관통하는 빛의 비율 이 값을 낮추면 어두운 부분의 대조가 증가하고 이미지의 밝은 부분의 대조가 감소합니다."
  1400. #: plugins/ImageReader/ConfigUI.qml:274
  1401. msgctxt "@action:label"
  1402. msgid "Smoothing"
  1403. msgstr "스무딩(smoothing)"
  1404. #: plugins/ImageReader/ConfigUI.qml:298
  1405. msgctxt "@info:tooltip"
  1406. msgid "The amount of smoothing to apply to the image."
  1407. msgstr "이미지에 적용할 스무딩(smoothing)의 정도."
  1408. #: plugins/ImageReader/ConfigUI.qml:329
  1409. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1410. #: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25
  1411. msgctxt "@action:button"
  1412. msgid "OK"
  1413. msgstr "확인"
  1414. #: plugins/ImageReader/__init__.py:14
  1415. msgctxt "@item:inlistbox"
  1416. msgid "JPG Image"
  1417. msgstr "JPG 이미지"
  1418. #: plugins/ImageReader/__init__.py:18
  1419. msgctxt "@item:inlistbox"
  1420. msgid "JPEG Image"
  1421. msgstr "JPEG 이미지"
  1422. #: plugins/ImageReader/__init__.py:22
  1423. msgctxt "@item:inlistbox"
  1424. msgid "PNG Image"
  1425. msgstr "PNG 이미지"
  1426. #: plugins/ImageReader/__init__.py:26
  1427. msgctxt "@item:inlistbox"
  1428. msgid "BMP Image"
  1429. msgstr "BMP 이미지"
  1430. #: plugins/ImageReader/__init__.py:30
  1431. msgctxt "@item:inlistbox"
  1432. msgid "GIF Image"
  1433. msgstr "GIF 이미지"
  1434. #: plugins/ImageReader/plugin.json
  1435. msgctxt "description"
  1436. msgid "Enables ability to generate printable geometry from 2D image files."
  1437. msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다."
  1438. #: plugins/ImageReader/plugin.json
  1439. msgctxt "name"
  1440. msgid "Image Reader"
  1441. msgstr "이미지 리더"
  1442. #: plugins/LegacyProfileReader/__init__.py:14
  1443. msgctxt "@item:inlistbox"
  1444. msgid "Cura 15.04 profiles"
  1445. msgstr "Cura 15.04 프로파일"
  1446. #: plugins/LegacyProfileReader/plugin.json
  1447. msgctxt "name"
  1448. msgid "Legacy Cura Profile Reader"
  1449. msgstr "레거시 Cura 프로파일 리더"
  1450. #: plugins/LegacyProfileReader/plugin.json
  1451. msgctxt "description"
  1452. msgid "Provides support for importing profiles from legacy Cura versions."
  1453. msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다."
  1454. #: plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1455. msgctxt "@action"
  1456. msgid "Machine Settings"
  1457. msgstr "기기 설정"
  1458. #: plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1459. msgctxt "@title:tab"
  1460. msgid "Printer"
  1461. msgstr "프린터"
  1462. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1463. msgctxt "@title:label"
  1464. msgid "Nozzle Settings"
  1465. msgstr "노즐 설정"
  1466. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1467. msgctxt "@label"
  1468. msgid "Nozzle size"
  1469. msgstr "노즐 크기"
  1470. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1471. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1472. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1473. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1474. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1475. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1476. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1477. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1478. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1479. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1480. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1481. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1482. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85
  1483. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99
  1484. msgctxt "@label"
  1485. msgid "mm"
  1486. msgstr "mm"
  1487. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1488. msgctxt "@label"
  1489. msgid "Compatible material diameter"
  1490. msgstr "호환되는 재료의 직경"
  1491. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1492. msgctxt "@label"
  1493. msgid "Nozzle offset X"
  1494. msgstr "노즐 오프셋 X"
  1495. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1496. msgctxt "@label"
  1497. msgid "Nozzle offset Y"
  1498. msgstr "노즐 오프셋 Y"
  1499. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1500. msgctxt "@label"
  1501. msgid "Cooling Fan Number"
  1502. msgstr "냉각 팬 번호"
  1503. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1504. msgctxt "@title:label"
  1505. msgid "Extruder Start G-code"
  1506. msgstr "익스트루더 시작 Gcode"
  1507. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1508. msgctxt "@title:label"
  1509. msgid "Extruder End G-code"
  1510. msgstr "익스트루더 종료 Gcode"
  1511. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1512. msgctxt "@title:label"
  1513. msgid "Printer Settings"
  1514. msgstr "프린터 설정"
  1515. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1516. msgctxt "@label"
  1517. msgid "X (Width)"
  1518. msgstr "X (너비)"
  1519. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1520. msgctxt "@label"
  1521. msgid "Y (Depth)"
  1522. msgstr "Y (깊이)"
  1523. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1524. msgctxt "@label"
  1525. msgid "Z (Height)"
  1526. msgstr "Z (높이)"
  1527. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1528. msgctxt "@label"
  1529. msgid "Build plate shape"
  1530. msgstr "빌드 플레이트 모양"
  1531. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1532. msgctxt "@label"
  1533. msgid "Origin at center"
  1534. msgstr "중앙이 원점"
  1535. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1536. msgctxt "@label"
  1537. msgid "Heated bed"
  1538. msgstr "히트 베드"
  1539. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1540. msgctxt "@label"
  1541. msgid "Heated build volume"
  1542. msgstr "히팅 빌드 사이즈"
  1543. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1544. msgctxt "@label"
  1545. msgid "G-code flavor"
  1546. msgstr "Gcode 유형"
  1547. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1548. msgctxt "@title:label"
  1549. msgid "Printhead Settings"
  1550. msgstr "프린트헤드 설정"
  1551. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1552. msgctxt "@label"
  1553. msgid "X min"
  1554. msgstr "X 최소값"
  1555. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1556. msgctxt "@label"
  1557. msgid "Y min"
  1558. msgstr "Y 최소값"
  1559. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1560. msgctxt "@label"
  1561. msgid "X max"
  1562. msgstr "X 최대값"
  1563. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1564. msgctxt "@label"
  1565. msgid "Y max"
  1566. msgstr "Y 최대값"
  1567. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1568. msgctxt "@label"
  1569. msgid "Gantry Height"
  1570. msgstr "갠트리 높이"
  1571. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1572. msgctxt "@label"
  1573. msgid "Number of Extruders"
  1574. msgstr "익스트루더의 수"
  1575. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342
  1576. msgctxt "@label"
  1577. msgid "Apply Extruder offsets to GCode"
  1578. msgstr "익스트루더 오프셋을 GCode에 적용"
  1579. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390
  1580. msgctxt "@title:label"
  1581. msgid "Start G-code"
  1582. msgstr "시작 GCode"
  1583. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401
  1584. msgctxt "@title:label"
  1585. msgid "End G-code"
  1586. msgstr "End GCode"
  1587. #: plugins/MachineSettingsAction/plugin.json
  1588. msgctxt "name"
  1589. msgid "Machine Settings Action"
  1590. msgstr "컴퓨터 설정 작업"
  1591. #: plugins/MachineSettingsAction/plugin.json
  1592. msgctxt "description"
  1593. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  1594. msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다."
  1595. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1596. msgctxt "@info:generic"
  1597. msgid "Do you want to sync material and software packages with your account?"
  1598. msgstr "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?"
  1599. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1600. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1601. msgctxt "@info:title"
  1602. msgid "Changes detected from your UltiMaker account"
  1603. msgstr "UltiMaker 계정에서 변경 사항이 감지되었습니다"
  1604. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1605. msgctxt "@action:button"
  1606. msgid "Sync"
  1607. msgstr "동기화"
  1608. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1609. msgctxt "@info:generic"
  1610. msgid "Syncing..."
  1611. msgstr "동기화 중..."
  1612. #: plugins/Marketplace/CloudSync/LicenseModel.py:12
  1613. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1614. msgctxt "@button"
  1615. msgid "Decline"
  1616. msgstr "거절"
  1617. #: plugins/Marketplace/CloudSync/LicenseModel.py:13
  1618. #: resources/qml/WelcomePages/UserAgreementContent.qml:53
  1619. msgctxt "@button"
  1620. msgid "Agree"
  1621. msgstr "동의"
  1622. #: plugins/Marketplace/CloudSync/LicenseModel.py:77
  1623. msgctxt "@title:window"
  1624. msgid "Plugin License Agreement"
  1625. msgstr "플러그인 사용 계약"
  1626. #: plugins/Marketplace/CloudSync/LicensePresenter.py:42
  1627. msgctxt "@button"
  1628. msgid "Decline and remove from account"
  1629. msgstr "계정에서 거절 및 제거"
  1630. #: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  1631. msgctxt "@info:generic"
  1632. msgid "You need to quit and restart {} before changes have effect."
  1633. msgstr "변경 사항이 적용되기 전에 {}을(를) 멈추고 다시 시작해야 합니다."
  1634. #: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  1635. msgctxt "@info:generic"
  1636. msgid "{} plugins failed to download"
  1637. msgstr "{}개의 플러그인을 다운로드하지 못했습니다"
  1638. #: plugins/Marketplace/LocalPackageList.py:28
  1639. msgctxt "@label"
  1640. msgid "Installed Plugins"
  1641. msgstr "설치된 플러그인"
  1642. #: plugins/Marketplace/LocalPackageList.py:29
  1643. msgctxt "@label"
  1644. msgid "Installed Materials"
  1645. msgstr "설치된 재료"
  1646. #: plugins/Marketplace/LocalPackageList.py:33
  1647. msgctxt "@label"
  1648. msgid "Bundled Plugins"
  1649. msgstr "번들 플러그인"
  1650. #: plugins/Marketplace/LocalPackageList.py:34
  1651. msgctxt "@label"
  1652. msgid "Bundled Materials"
  1653. msgstr "번들 재료"
  1654. #: plugins/Marketplace/PackageModel.py:43
  1655. msgctxt "@label:property"
  1656. msgid "Unknown Package"
  1657. msgstr "알 수 없는 패키지"
  1658. #: plugins/Marketplace/PackageModel.py:66
  1659. msgctxt "@label:property"
  1660. msgid "Unknown Author"
  1661. msgstr "알 수 없는 원작자"
  1662. #: plugins/Marketplace/PackageModel.py:95
  1663. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  1664. 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."
  1665. msgstr "Ultimaker Marketplace에서 Cura 프로젝트와 관련된 재료 패키지를 찾을 수 없습니다. Cura 프로젝트 파일에 저장된 부분적인 재료 프로필 정의를 사용할 시 이로 인한 문제는 사용자 책임입니다."
  1666. #: plugins/Marketplace/RemotePackageList.py:117
  1667. msgctxt "@info:error"
  1668. msgid "Could not interpret the server's response."
  1669. msgstr "서버의 응답을 해석할 수 없습니다."
  1670. #: plugins/Marketplace/RemotePackageList.py:148
  1671. msgctxt "@info:error"
  1672. msgid "Could not reach Marketplace."
  1673. msgstr "마켓플레이스에 도달할 수 없습니다."
  1674. #: plugins/Marketplace/plugin.json
  1675. msgctxt "description"
  1676. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  1677. msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다."
  1678. #: plugins/Marketplace/plugin.json
  1679. msgctxt "name"
  1680. msgid "Marketplace"
  1681. msgstr "마켓플레이스"
  1682. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  1683. msgctxt "@title"
  1684. msgid "Changes from your account"
  1685. msgstr "계정의 변경 사항"
  1686. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  1687. msgctxt "@button"
  1688. msgid "Dismiss"
  1689. msgstr "취소"
  1690. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  1691. #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  1692. #: resources/qml/WelcomePages/WhatsNewContent.qml:175
  1693. msgctxt "@button"
  1694. msgid "Next"
  1695. msgstr "다음 것"
  1696. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  1697. msgctxt "@label"
  1698. msgid "The following packages will be added:"
  1699. msgstr "다음 패키지가 추가됩니다:"
  1700. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  1701. msgctxt "@label"
  1702. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1703. msgstr "호환되지 않는 Cura 버전이기 때문에 다음 패키지를 설치할 수 없습니다:"
  1704. #: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  1705. msgctxt "@title"
  1706. msgid "Install missing Materials"
  1707. msgstr "누락된 재료 설치하기"
  1708. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  1709. msgctxt "@button"
  1710. msgid "Plugin license agreement"
  1711. msgstr "플러그인 라이센스 계약"
  1712. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  1713. msgctxt "@text"
  1714. msgid "Please read and agree with the plugin licence."
  1715. msgstr "플러그인 라이센스를 읽고 동의하십시오."
  1716. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  1717. msgctxt "@button"
  1718. msgid "Accept"
  1719. msgstr "동의"
  1720. #: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  1721. msgctxt "@info:tooltip"
  1722. msgid "Manage packages"
  1723. msgstr "패키지 관리"
  1724. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:12
  1725. msgctxt "@header"
  1726. msgid "Manage packages"
  1727. msgstr "패키지 관리"
  1728. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:16
  1729. msgctxt "@text"
  1730. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1731. msgstr "여기서 UltiMaker Cura 플러그인 및 재료 프로파일을 관리하십시오. 플러그인을 최신 상태로 유지하고 설정을 정기적으로 백업하십시오."
  1732. #: plugins/Marketplace/resources/qml/Marketplace.qml:87
  1733. msgctxt "@title"
  1734. msgid "Loading..."
  1735. msgstr "로딩 중..."
  1736. #: plugins/Marketplace/resources/qml/Marketplace.qml:148
  1737. msgctxt "@button"
  1738. msgid "Plugins"
  1739. msgstr "플러그인"
  1740. #: plugins/Marketplace/resources/qml/Marketplace.qml:156
  1741. msgctxt "@button"
  1742. msgid "Materials"
  1743. msgstr "재료"
  1744. #: plugins/Marketplace/resources/qml/Marketplace.qml:193
  1745. msgctxt "@info"
  1746. msgid "Search in the browser"
  1747. msgstr "브라우저에서 검색"
  1748. #: plugins/Marketplace/resources/qml/Marketplace.qml:271
  1749. msgctxt "@button"
  1750. msgid "In order to use the package you will need to restart Cura"
  1751. msgstr "패키지를 사용하려면 Cura를 재시작해야 합니다."
  1752. #: plugins/Marketplace/resources/qml/Marketplace.qml:279
  1753. msgctxt "@info:button, %1 is the application name"
  1754. msgid "Quit %1"
  1755. msgstr "%1 종료"
  1756. #: plugins/Marketplace/resources/qml/Marketplace.qml:300
  1757. msgctxt "@description"
  1758. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  1759. msgstr "UltiMaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오."
  1760. #: plugins/Marketplace/resources/qml/Materials.qml:8
  1761. #: plugins/Marketplace/resources/qml/MissingPackages.qml:8
  1762. msgctxt "@header"
  1763. msgid "Install Materials"
  1764. msgstr "재료 설치"
  1765. #: plugins/Marketplace/resources/qml/Materials.qml:12
  1766. msgctxt "@text"
  1767. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  1768. msgstr "UltiMaker 3D 프린터에 최적화된 재료 프로파일을 선택하고 설치하십시오."
  1769. #: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  1770. msgctxt "@label"
  1771. msgid "You need to accept the license to install the package"
  1772. msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다"
  1773. #: plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  1774. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205
  1775. msgctxt "@button:label"
  1776. msgid "Learn More"
  1777. msgstr "자세히 알아보기"
  1778. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170
  1779. msgctxt "@label Is followed by the name of an author"
  1780. msgid "By"
  1781. msgstr "사용"
  1782. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  1783. msgctxt "@button"
  1784. msgid "Disable"
  1785. msgstr "해제됨"
  1786. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  1787. msgctxt "@button"
  1788. msgid "Enable"
  1789. msgstr "실행됨"
  1790. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  1791. msgctxt "@button"
  1792. msgid "Downgrading..."
  1793. msgstr "다운그레이드 중..."
  1794. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243
  1795. msgctxt "@button"
  1796. msgid "Downgrade"
  1797. msgstr "다운그레이드"
  1798. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247
  1799. msgctxt "@button"
  1800. msgid "Installing..."
  1801. msgstr "설치 중..."
  1802. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248
  1803. msgctxt "@button"
  1804. msgid "Install"
  1805. msgstr "설치"
  1806. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252
  1807. msgctxt "@button"
  1808. msgid "Uninstall"
  1809. msgstr "설치 제거"
  1810. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  1811. msgctxt "@button"
  1812. msgid "Update"
  1813. msgstr "업데이트"
  1814. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  1815. msgctxt "@button"
  1816. msgid "Updating..."
  1817. msgstr "업데이트 중"
  1818. #: plugins/Marketplace/resources/qml/PackageDetails.qml:15
  1819. msgctxt "@header"
  1820. msgid "Package details"
  1821. msgstr "패키지 세부 사항"
  1822. #: plugins/Marketplace/resources/qml/PackageDetails.qml:40
  1823. msgctxt "@button:tooltip"
  1824. msgid "Back"
  1825. msgstr "뒤로"
  1826. #: plugins/Marketplace/resources/qml/PackagePage.qml:81
  1827. msgctxt "@header"
  1828. msgid "Description"
  1829. msgstr "설명"
  1830. #: plugins/Marketplace/resources/qml/PackagePage.qml:110
  1831. msgctxt "@header"
  1832. msgid "Compatible printers"
  1833. msgstr "호환 가능한 프린터"
  1834. #: plugins/Marketplace/resources/qml/PackagePage.qml:134
  1835. msgctxt "@info"
  1836. msgid "No compatibility information"
  1837. msgstr "호환성 정보 없음"
  1838. #: plugins/Marketplace/resources/qml/PackagePage.qml:152
  1839. msgctxt "@header"
  1840. msgid "Compatible support materials"
  1841. msgstr "호환 서포트 재료"
  1842. #: plugins/Marketplace/resources/qml/PackagePage.qml:176
  1843. msgctxt "@info No materials"
  1844. msgid "None"
  1845. msgstr "없음"
  1846. #: plugins/Marketplace/resources/qml/PackagePage.qml:193
  1847. msgctxt "@header"
  1848. msgid "Compatible with Material Station"
  1849. msgstr "Material Station과 호환 가능"
  1850. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  1851. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  1852. msgctxt "@info"
  1853. msgid "No"
  1854. msgstr "아니요"
  1855. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  1856. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  1857. msgctxt "@info"
  1858. msgid "Yes"
  1859. msgstr "예"
  1860. #: plugins/Marketplace/resources/qml/PackagePage.qml:219
  1861. msgctxt "@header"
  1862. msgid "Optimized for Air Manager"
  1863. msgstr "Air Manager에 최적화"
  1864. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  1865. msgctxt "@button"
  1866. msgid "Visit plug-in website"
  1867. msgstr "플러그인 웹사이트 방문"
  1868. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  1869. msgctxt "@button"
  1870. msgid "Website"
  1871. msgstr "웹사이트"
  1872. #: plugins/Marketplace/resources/qml/PackagePage.qml:252
  1873. msgctxt "@button"
  1874. msgid "Buy spool"
  1875. msgstr "스풀 구입"
  1876. #: plugins/Marketplace/resources/qml/PackagePage.qml:261
  1877. msgctxt "@button"
  1878. msgid "Safety datasheet"
  1879. msgstr "안전성 데이터시트"
  1880. #: plugins/Marketplace/resources/qml/PackagePage.qml:270
  1881. msgctxt "@button"
  1882. msgid "Technical datasheet"
  1883. msgstr "기술 데이터시트"
  1884. #: plugins/Marketplace/resources/qml/Packages.qml:151
  1885. msgctxt "@button"
  1886. msgid "Failed to load packages:"
  1887. msgstr "패키지를 로드하지 못했습니다:"
  1888. #: plugins/Marketplace/resources/qml/Packages.qml:151
  1889. msgctxt "@button"
  1890. msgid "Retry?"
  1891. msgstr "재시도하시겠습니까?"
  1892. #: plugins/Marketplace/resources/qml/Packages.qml:167
  1893. msgctxt "@button"
  1894. msgid "Loading"
  1895. msgstr "로딩중"
  1896. #: plugins/Marketplace/resources/qml/Packages.qml:183
  1897. msgctxt "@message"
  1898. msgid "No more results to load"
  1899. msgstr "더 이상 로드할 결과 없음"
  1900. #: plugins/Marketplace/resources/qml/Packages.qml:183
  1901. msgctxt "@message"
  1902. msgid "No results found with current filter"
  1903. msgstr "현재 필터로는 결과를 찾을 수 없음"
  1904. #: plugins/Marketplace/resources/qml/Packages.qml:226
  1905. msgctxt "@button"
  1906. msgid "Load more"
  1907. msgstr "더 많이 로드"
  1908. #: plugins/Marketplace/resources/qml/Plugins.qml:8
  1909. msgctxt "@header"
  1910. msgid "Install Plugins"
  1911. msgstr "플러그인 설치"
  1912. #: plugins/Marketplace/resources/qml/Plugins.qml:12
  1913. msgctxt "@text"
  1914. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  1915. msgstr "당사의 놀라운 사용자 커뮤니티에서 기여한 플러그인으로 워크 플로를 간소화하고 UltiMaker Cura 경험을 맞춤화하세요."
  1916. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  1917. msgctxt "@info"
  1918. msgid "UltiMaker Verified Plug-in"
  1919. msgstr "UltiMaker 검증된 플러그인"
  1920. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  1921. msgctxt "@info"
  1922. msgid "UltiMaker Certified Material"
  1923. msgstr "UltiMaker 인증된 재료"
  1924. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  1925. msgctxt "@info"
  1926. msgid "UltiMaker Verified Package"
  1927. msgstr "UltiMaker 검증된 패키지"
  1928. #: plugins/ModelChecker/ModelChecker.py:31
  1929. msgctxt "@info:title"
  1930. msgid "3D Model Assistant"
  1931. msgstr "3D 모델 도우미"
  1932. #: plugins/ModelChecker/ModelChecker.py:97
  1933. #, python-brace-format
  1934. msgctxt "@info:status"
  1935. msgid ""
  1936. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1937. "<p>{model_names}</p>\n"
  1938. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1939. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1940. msgstr ""
  1941. "<p>하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.</p>\n"
  1942. "<p>{model_names}</p>\n"
  1943. "<p>인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.</p>\n"
  1944. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">인쇄 품질 가이드 보기</a></p>"
  1945. #: plugins/ModelChecker/plugin.json
  1946. msgctxt "description"
  1947. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  1948. msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다."
  1949. #: plugins/ModelChecker/plugin.json
  1950. msgctxt "name"
  1951. msgid "Model Checker"
  1952. msgstr "모델 검사기"
  1953. #: plugins/MonitorStage/MonitorMain.qml:100
  1954. msgctxt "@info"
  1955. msgid ""
  1956. "Please make sure your printer has a connection:\n"
  1957. "- Check if the printer is turned on.\n"
  1958. "- Check if the printer is connected to the network.\n"
  1959. "- Check if you are signed in to discover cloud-connected printers."
  1960. msgstr ""
  1961. "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n"
  1962. "- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오."
  1963. #: plugins/MonitorStage/MonitorMain.qml:113
  1964. msgctxt "@info"
  1965. msgid "Please connect your printer to the network."
  1966. msgstr "프린터를 네트워크에 연결하십시오."
  1967. #: plugins/MonitorStage/MonitorMain.qml:148
  1968. msgctxt "@label link to technical assistance"
  1969. msgid "View user manuals online"
  1970. msgstr "사용자 매뉴얼 온라인 보기"
  1971. #: plugins/MonitorStage/MonitorMain.qml:164
  1972. msgctxt "@info"
  1973. msgid "In order to monitor your print from Cura, please connect the printer."
  1974. msgstr "Cura에서 프린트를 모니터링하려면 프린터를 연결하십시오."
  1975. #: plugins/MonitorStage/__init__.py:14
  1976. msgctxt "@item:inmenu"
  1977. msgid "Monitor"
  1978. msgstr "모니터"
  1979. #: plugins/MonitorStage/plugin.json
  1980. msgctxt "name"
  1981. msgid "Monitor Stage"
  1982. msgstr "모니터 단계"
  1983. #: plugins/MonitorStage/plugin.json
  1984. msgctxt "description"
  1985. msgid "Provides a monitor stage in Cura."
  1986. msgstr "Cura에서 모니터 단계 제공."
  1987. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1988. msgctxt "@label"
  1989. msgid "Mesh Type"
  1990. msgstr "메쉬 유형"
  1991. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1992. msgctxt "@label"
  1993. msgid "Normal model"
  1994. msgstr "일반 모델"
  1995. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1996. msgctxt "@label"
  1997. msgid "Print as support"
  1998. msgstr "서포터로 프린팅"
  1999. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2000. msgctxt "@label"
  2001. msgid "Modify settings for overlaps"
  2002. msgstr "오버랩 설정 수정"
  2003. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2004. msgctxt "@label"
  2005. msgid "Don't support overlaps"
  2006. msgstr "오버랩 지원 안함"
  2007. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2008. msgctxt "@item:inlistbox"
  2009. msgid "Infill mesh only"
  2010. msgstr "매쉬 내부채움 전용"
  2011. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161
  2012. msgctxt "@item:inlistbox"
  2013. msgid "Cutting mesh"
  2014. msgstr "커팅 메쉬"
  2015. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386
  2016. msgctxt "@action:button"
  2017. msgid "Select settings"
  2018. msgstr "설정 선택"
  2019. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2020. msgctxt "@title:window"
  2021. msgid "Select Settings to Customize for this model"
  2022. msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오"
  2023. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2024. #: resources/qml/Preferences/SettingVisibilityPage.qml:102
  2025. msgctxt "@label:textbox"
  2026. msgid "Filter..."
  2027. msgstr "필터..."
  2028. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2029. msgctxt "@label:checkbox"
  2030. msgid "Show all"
  2031. msgstr "모두 보이기"
  2032. #: plugins/PerObjectSettingsTool/__init__.py:14
  2033. msgctxt "@label"
  2034. msgid "Per Model Settings"
  2035. msgstr "모델 별 설정"
  2036. #: plugins/PerObjectSettingsTool/__init__.py:15
  2037. msgctxt "@info:tooltip"
  2038. msgid "Configure Per Model Settings"
  2039. msgstr "모델 별 설정 구성"
  2040. #: plugins/PerObjectSettingsTool/plugin.json
  2041. msgctxt "name"
  2042. msgid "Per Model Settings Tool"
  2043. msgstr "모델 별 설정 도구"
  2044. #: plugins/PerObjectSettingsTool/plugin.json
  2045. msgctxt "description"
  2046. msgid "Provides the Per Model Settings."
  2047. msgstr "모델 별 설정을 제공합니다."
  2048. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  2049. msgctxt "@item:inmenu"
  2050. msgid "Post Processing"
  2051. msgstr "후 처리"
  2052. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  2053. msgctxt "@item:inmenu"
  2054. msgid "Modify G-Code"
  2055. msgstr "G 코드 수정"
  2056. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2057. msgctxt "@title:window"
  2058. msgid "Post Processing Plugin"
  2059. msgstr "후처리 플러그인"
  2060. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2061. msgctxt "@label"
  2062. msgid "Post Processing Scripts"
  2063. msgstr "후처리 스크립트"
  2064. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  2065. msgctxt "@action"
  2066. msgid "Add a script"
  2067. msgstr "스크립트 추가"
  2068. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  2069. msgctxt "@label"
  2070. msgid "Settings"
  2071. msgstr "설정"
  2072. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  2073. msgctxt "@info:tooltip"
  2074. msgid "Change active post-processing scripts."
  2075. msgstr "활성 사후 처리 스크립트를 변경하십시오."
  2076. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  2077. msgctxt "@info:tooltip"
  2078. msgid "The following script is active:"
  2079. msgid_plural "The following scripts are active:"
  2080. msgstr[0] "다음 스크립트들이 활성화됩니다:"
  2081. #: plugins/PostProcessingPlugin/plugin.json
  2082. msgctxt "description"
  2083. msgid "Extension that allows for user created scripts for post processing"
  2084. msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램"
  2085. #: plugins/PostProcessingPlugin/plugin.json
  2086. msgctxt "name"
  2087. msgid "Post Processing"
  2088. msgstr "후처리"
  2089. #: plugins/PrepareStage/PrepareMenu.qml:74
  2090. msgctxt "@button"
  2091. msgid "Add printer"
  2092. msgstr "프린터 추가"
  2093. #: plugins/PrepareStage/PrepareMenu.qml:90
  2094. msgctxt "@button"
  2095. msgid "Manage printers"
  2096. msgstr "프린터 관리"
  2097. #: plugins/PrepareStage/__init__.py:12
  2098. msgctxt "@item:inmenu"
  2099. msgid "Prepare"
  2100. msgstr "준비"
  2101. #: plugins/PrepareStage/plugin.json
  2102. msgctxt "name"
  2103. msgid "Prepare Stage"
  2104. msgstr "준비 단계"
  2105. #: plugins/PrepareStage/plugin.json
  2106. msgctxt "description"
  2107. msgid "Provides a prepare stage in Cura."
  2108. msgstr "Cura에서 준비 단계 제공."
  2109. #: plugins/PreviewStage/__init__.py:13
  2110. msgctxt "@item:inmenu"
  2111. msgid "Preview"
  2112. msgstr "미리 보기"
  2113. #: plugins/PreviewStage/plugin.json
  2114. msgctxt "name"
  2115. msgid "Preview Stage"
  2116. msgstr "미리 보기 단계"
  2117. #: plugins/PreviewStage/plugin.json
  2118. msgctxt "description"
  2119. msgid "Provides a preview stage in Cura."
  2120. msgstr "Cura에서 미리 보기 단계를 제공합니다."
  2121. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  2122. msgctxt "@action:button Preceded by 'Ready to'."
  2123. msgid "Save to Removable Drive"
  2124. msgstr "이동식 드라이브에 저장"
  2125. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  2126. #, python-brace-format
  2127. msgctxt "@item:inlistbox"
  2128. msgid "Save to Removable Drive {0}"
  2129. msgstr "이동식 드라이브 {0}에 저장"
  2130. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  2131. #: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  2132. msgctxt "@info:status"
  2133. msgid "There are no file formats available to write with!"
  2134. msgstr "쓸 수있는 파일 형식이 없습니다!"
  2135. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  2136. #, python-brace-format
  2137. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2138. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2139. msgstr "이동식 드라이브 <filename>{0}</filename>에 저장"
  2140. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  2141. msgctxt "@info:title"
  2142. msgid "Saving"
  2143. msgstr "저장"
  2144. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  2145. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  2146. #, python-brace-format
  2147. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2148. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  2149. msgstr "<filename>{0}</filename>: <message>{1}</message> 에 저장할 수 없습니다"
  2150. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  2151. #, python-brace-format
  2152. msgctxt "@info:status Don't translate the tag {device}!"
  2153. msgid "Could not find a file name when trying to write to {device}."
  2154. msgstr "{device} 장치에 쓸 때 파일 이름을 찾을 수 없습니다."
  2155. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  2156. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  2157. #, python-brace-format
  2158. msgctxt "@info:status"
  2159. msgid "Could not save to removable drive {0}: {1}"
  2160. msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :"
  2161. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  2162. #, python-brace-format
  2163. msgctxt "@info:status"
  2164. msgid "Saved to Removable Drive {0} as {1}"
  2165. msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다."
  2166. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  2167. msgctxt "@info:title"
  2168. msgid "File Saved"
  2169. msgstr "파일이 저장됨"
  2170. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2171. msgctxt "@action:button"
  2172. msgid "Eject"
  2173. msgstr "꺼내기"
  2174. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2175. #, python-brace-format
  2176. msgctxt "@action"
  2177. msgid "Eject removable device {0}"
  2178. msgstr "이동식 장치 {0} 꺼내기"
  2179. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  2180. #, python-brace-format
  2181. msgctxt "@info:status"
  2182. msgid "Ejected {0}. You can now safely remove the drive."
  2183. msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다."
  2184. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  2185. msgctxt "@info:title"
  2186. msgid "Safely Remove Hardware"
  2187. msgstr "하드웨어 안전하게 제거"
  2188. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  2189. #, python-brace-format
  2190. msgctxt "@info:status"
  2191. msgid "Failed to eject {0}. Another program may be using the drive."
  2192. msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다."
  2193. #: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  2194. msgctxt "@item:intext"
  2195. msgid "Removable Drive"
  2196. msgstr "이동식 드라이브"
  2197. #: plugins/RemovableDriveOutputDevice/plugin.json
  2198. msgctxt "description"
  2199. msgid "Provides removable drive hotplugging and writing support."
  2200. msgstr "이동식 드라이브를 제공합니다."
  2201. #: plugins/RemovableDriveOutputDevice/plugin.json
  2202. msgctxt "name"
  2203. msgid "Removable Drive Output Device Plugin"
  2204. msgstr "이동식 드라이브 출력 장치 플러그인"
  2205. #: plugins/SentryLogger/plugin.json
  2206. msgctxt "description"
  2207. msgid "Logs certain events so that they can be used by the crash reporter"
  2208. msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다"
  2209. #: plugins/SentryLogger/plugin.json
  2210. msgctxt "name"
  2211. msgid "Sentry Logger"
  2212. msgstr "보초 로거"
  2213. #: plugins/SimulationView/SimulationView.py:129
  2214. msgctxt "@info:status"
  2215. msgid "Nothing is shown because you need to slice first."
  2216. msgstr "먼저 슬라이스해야 하기 때문에 아무것도 표시되지 않습니다."
  2217. #: plugins/SimulationView/SimulationView.py:130
  2218. msgctxt "@info:title"
  2219. msgid "No layers to show"
  2220. msgstr "표시할 레이어 없음"
  2221. #: plugins/SimulationView/SimulationView.py:132
  2222. #: plugins/SolidView/SolidView.py:74
  2223. msgctxt "@info:option_text"
  2224. msgid "Do not show this message again"
  2225. msgstr "다시 메시지 표시 안 함"
  2226. #: plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2227. #: plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2228. msgctxt "@label"
  2229. msgid "Color scheme"
  2230. msgstr "색 구성표"
  2231. #: plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2232. msgctxt "@label:listbox"
  2233. msgid "Material Color"
  2234. msgstr "재료 색상"
  2235. #: plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2236. msgctxt "@label:listbox"
  2237. msgid "Line Type"
  2238. msgstr "라인 유형"
  2239. #: plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2240. msgctxt "@label:listbox"
  2241. msgid "Speed"
  2242. msgstr "속도"
  2243. #: plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2244. msgctxt "@label:listbox"
  2245. msgid "Layer Thickness"
  2246. msgstr "레이어 두께"
  2247. #: plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2248. msgctxt "@label:listbox"
  2249. msgid "Line Width"
  2250. msgstr "선 두께"
  2251. #: plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2252. msgctxt "@label:listbox"
  2253. msgid "Flow"
  2254. msgstr "유량"
  2255. #: plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2256. msgctxt "@label"
  2257. msgid "Compatibility Mode"
  2258. msgstr "호환 모드"
  2259. #: plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2260. msgctxt "@label"
  2261. msgid "Travels"
  2262. msgstr "이동"
  2263. #: plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2264. msgctxt "@label"
  2265. msgid "Helpers"
  2266. msgstr "도움말"
  2267. #: plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2268. msgctxt "@label"
  2269. msgid "Shell"
  2270. msgstr "외곽"
  2271. #: plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2272. msgctxt "@label"
  2273. msgid "Infill"
  2274. msgstr "내부채움"
  2275. #: plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2276. msgctxt "@label"
  2277. msgid "Starts"
  2278. msgstr "시작"
  2279. #: plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2280. msgctxt "@label"
  2281. msgid "Only Show Top Layers"
  2282. msgstr "상단 레이어 만 표시"
  2283. #: plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2284. msgctxt "@label"
  2285. msgid "Show 5 Detailed Layers On Top"
  2286. msgstr "상단에 5 개의 세부 레이어 표시"
  2287. #: plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2288. msgctxt "@label"
  2289. msgid "Top / Bottom"
  2290. msgstr "위 / 아래"
  2291. #: plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2292. msgctxt "@label"
  2293. msgid "Inner Wall"
  2294. msgstr "내벽"
  2295. #: plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2296. msgctxt "@label"
  2297. msgid "min"
  2298. msgstr "최소"
  2299. #: plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2300. msgctxt "@label"
  2301. msgid "max"
  2302. msgstr "최대"
  2303. #: plugins/SimulationView/__init__.py:15
  2304. msgctxt "@item:inlistbox"
  2305. msgid "Layer view"
  2306. msgstr "레이어 뷰"
  2307. #: plugins/SimulationView/plugin.json
  2308. msgctxt "description"
  2309. msgid "Provides the preview of sliced layerdata."
  2310. msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다."
  2311. #: plugins/SimulationView/plugin.json
  2312. msgctxt "name"
  2313. msgid "Simulation View"
  2314. msgstr "시뮬레이션 뷰"
  2315. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2316. msgctxt "@title:window"
  2317. msgid "More information on anonymous data collection"
  2318. msgstr "익명 데이터 수집에 대한 추가 정보"
  2319. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2320. msgctxt "@text:window"
  2321. 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:"
  2322. msgstr "UltiMaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 익명 데이터를 수집합니다. 공유되는 모든 데이터의 예는 다음과 같습니다:"
  2323. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2324. msgctxt "@text:window"
  2325. msgid "I don't want to send anonymous data"
  2326. msgstr "익명 데이터 전송을 원하지 않습니다"
  2327. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2328. msgctxt "@text:window"
  2329. msgid "Allow sending anonymous data"
  2330. msgstr "익명 데이터 전송 허용"
  2331. #: plugins/SliceInfoPlugin/SliceInfo.py:95
  2332. msgctxt "@text"
  2333. msgid "Unable to read example data file."
  2334. msgstr "예시 데이터 파일을 읽을 수 없습니다."
  2335. #: plugins/SliceInfoPlugin/plugin.json
  2336. msgctxt "name"
  2337. msgid "Slice info"
  2338. msgstr "슬라이스 정보"
  2339. #: plugins/SliceInfoPlugin/plugin.json
  2340. msgctxt "description"
  2341. msgid "Submits anonymous slice info. Can be disabled through preferences."
  2342. msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다."
  2343. #: plugins/SolidView/SolidView.py:71
  2344. msgctxt "@info:status"
  2345. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  2346. msgstr "강조 표시된 영역은 누락되거나 관련 없는 표면을 표시합니다. 모델을 수정하고 Cura에서 다시 엽니다."
  2347. #: plugins/SolidView/SolidView.py:73
  2348. msgctxt "@info:title"
  2349. msgid "Model Errors"
  2350. msgstr "모델 에러"
  2351. #: plugins/SolidView/__init__.py:12
  2352. msgctxt "@item:inmenu"
  2353. msgid "Solid view"
  2354. msgstr "솔리드 뷰"
  2355. #: plugins/SolidView/plugin.json
  2356. msgctxt "description"
  2357. msgid "Provides a normal solid mesh view."
  2358. msgstr "일반 솔리드 메쉬보기를 제공합니다."
  2359. #: plugins/SolidView/plugin.json
  2360. msgctxt "name"
  2361. msgid "Solid View"
  2362. msgstr "솔리드 뷰"
  2363. #: plugins/SupportEraser/__init__.py:12
  2364. msgctxt "@label"
  2365. msgid "Support Blocker"
  2366. msgstr "서포트 차단기"
  2367. #: plugins/SupportEraser/__init__.py:13
  2368. msgctxt "@info:tooltip"
  2369. msgid "Create a volume in which supports are not printed."
  2370. msgstr "서포트가 프린팅되지 않는 볼륨을 만듭니다."
  2371. #: plugins/SupportEraser/plugin.json
  2372. msgctxt "description"
  2373. msgid "Creates an eraser mesh to block the printing of support in certain places"
  2374. msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다"
  2375. #: plugins/SupportEraser/plugin.json
  2376. msgctxt "name"
  2377. msgid "Support Eraser"
  2378. msgstr ""
  2379. #: plugins/TrimeshReader/__init__.py:15
  2380. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2381. msgid "Open Compressed Triangle Mesh"
  2382. msgstr "Open Compressed Triangle Mesh"
  2383. #: plugins/TrimeshReader/__init__.py:19
  2384. msgctxt "@item:inlistbox"
  2385. msgid "COLLADA Digital Asset Exchange"
  2386. msgstr "COLLADA Digital Asset Exchange"
  2387. #: plugins/TrimeshReader/__init__.py:23
  2388. msgctxt "@item:inlistbox"
  2389. msgid "glTF Binary"
  2390. msgstr "glTF Binary"
  2391. #: plugins/TrimeshReader/__init__.py:27
  2392. msgctxt "@item:inlistbox"
  2393. msgid "glTF Embedded JSON"
  2394. msgstr "glTF Embedded JSON"
  2395. #: plugins/TrimeshReader/__init__.py:36
  2396. msgctxt "@item:inlistbox"
  2397. msgid "Stanford Triangle Format"
  2398. msgstr "Stanford Triangle Format"
  2399. #: plugins/TrimeshReader/__init__.py:40
  2400. msgctxt "@item:inlistbox"
  2401. msgid "Compressed COLLADA Digital Asset Exchange"
  2402. msgstr "Compressed COLLADA Digital Asset Exchange"
  2403. #: plugins/TrimeshReader/plugin.json
  2404. msgctxt "description"
  2405. msgid "Provides support for reading model files."
  2406. msgstr "모델 파일 읽기 기능을 제공합니다."
  2407. #: plugins/TrimeshReader/plugin.json
  2408. msgctxt "name"
  2409. msgid "Trimesh Reader"
  2410. msgstr "Trimesh 리더"
  2411. #: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28
  2412. msgctxt "@item:inlistbox"
  2413. msgid "UltiMaker Format Package"
  2414. msgstr "UltiMaker 포맷 패키지"
  2415. #: plugins/UFPReader/plugin.json
  2416. msgctxt "description"
  2417. msgid "Provides support for reading Ultimaker Format Packages."
  2418. msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다."
  2419. #: plugins/UFPReader/plugin.json
  2420. msgctxt "name"
  2421. msgid "UFP Reader"
  2422. msgstr "UFP 리더기"
  2423. #: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80
  2424. #: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115
  2425. #: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180
  2426. msgctxt "@info:error"
  2427. msgid "Can't write to UFP file:"
  2428. msgstr "UFP 파일에 쓸 수 없음:"
  2429. #: plugins/UFPWriter/plugin.json
  2430. msgctxt "description"
  2431. msgid "Provides support for writing Ultimaker Format Packages."
  2432. msgstr "Ultimaker 포맷 패키지 작성을 지원합니다."
  2433. #: plugins/UFPWriter/plugin.json
  2434. msgctxt "name"
  2435. msgid "UFP Writer"
  2436. msgstr "UFP 작성자"
  2437. #: plugins/UM3NetworkPrinting/plugin.json
  2438. msgctxt "description"
  2439. msgid "Manages network connections to UltiMaker networked printers."
  2440. msgstr "UltiMaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다."
  2441. #: plugins/UM3NetworkPrinting/plugin.json
  2442. msgctxt "name"
  2443. msgid "UltiMaker Network Connection"
  2444. msgstr "UltiMaker 네트워크 연결"
  2445. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2446. msgctxt "@title:window"
  2447. msgid "Connect to Networked Printer"
  2448. msgstr "네트워크 프린터에 연결"
  2449. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2450. msgctxt "@label"
  2451. msgid "Select your printer from the list below:"
  2452. msgstr "아래 목록에서 프린터를 선택하십시오:"
  2453. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2454. msgctxt "@label"
  2455. 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."
  2456. msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g-코드 파일을 프린터로 전송할 수 있습니다."
  2457. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2458. msgctxt "@action:button"
  2459. msgid "Edit"
  2460. msgstr "편집"
  2461. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2462. #: resources/qml/Preferences/MachinesPage.qml:153
  2463. #: resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2464. #: resources/qml/Preferences/ProfilesPage.qml:321
  2465. msgctxt "@action:button"
  2466. msgid "Remove"
  2467. msgstr "제거"
  2468. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2469. msgctxt "@action:button"
  2470. msgid "Refresh"
  2471. msgstr "새로고침"
  2472. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2473. msgctxt "@label"
  2474. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2475. msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오"
  2476. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2477. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2478. msgctxt "@label"
  2479. msgid "Type"
  2480. msgstr "유형"
  2481. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2482. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2483. msgctxt "@label"
  2484. msgid "Firmware version"
  2485. msgstr "펌웨어 버전"
  2486. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2487. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2488. msgctxt "@label"
  2489. msgid "Address"
  2490. msgstr "주소"
  2491. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2492. msgctxt "@label"
  2493. msgid "This printer is not set up to host a group of printers."
  2494. msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다."
  2495. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2496. msgctxt "@label"
  2497. msgid "This printer is the host for a group of %1 printers."
  2498. msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다."
  2499. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2500. msgctxt "@label"
  2501. msgid "The printer at this address has not yet responded."
  2502. msgstr "이 주소의 프린터가 아직 응답하지 않았습니다."
  2503. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2504. msgctxt "@action:button"
  2505. msgid "Connect"
  2506. msgstr "연결"
  2507. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2508. msgctxt "@title:window"
  2509. msgid "Invalid IP address"
  2510. msgstr "잘못된 IP 주소"
  2511. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2512. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2513. msgctxt "@text"
  2514. msgid "Please enter a valid IP address."
  2515. msgstr "유효한 IP 주소를 입력하십시오."
  2516. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2517. msgctxt "@title:window"
  2518. msgid "Printer Address"
  2519. msgstr "프린터 주소"
  2520. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2521. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2522. msgctxt "@label"
  2523. msgid "Enter the IP address of your printer on the network."
  2524. msgstr "네트워크에 있는 프린터의 IP 주소를 입력하십시오."
  2525. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2526. msgctxt "@title:window"
  2527. msgid "Configuration Changes"
  2528. msgstr "구성 변경"
  2529. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  2530. msgctxt "@action:button"
  2531. msgid "Override"
  2532. msgstr "무시하기"
  2533. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  2534. msgctxt "@label"
  2535. msgid "The assigned printer, %1, requires the following configuration change:"
  2536. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2537. msgstr[0] "할당된 프린터 %1의 구성을 다음과 같이 변경해야 합니다:"
  2538. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  2539. msgctxt "@label"
  2540. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2541. msgstr "프린터 %1이(가) 할당되었으나 작업에 알 수 없는 재료 구성이 포함되어 있습니다."
  2542. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  2543. msgctxt "@label"
  2544. msgid "Change material %1 from %2 to %3."
  2545. msgstr "재료 %1을(를) %2에서 %3(으)로 변경합니다."
  2546. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  2547. msgctxt "@label"
  2548. msgid "Load %3 as material %1 (This cannot be overridden)."
  2549. msgstr "%3을(를) 재료 %1(으)로 로드합니다(이 작업은 무효화할 수 없음)."
  2550. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  2551. msgctxt "@label"
  2552. msgid "Change print core %1 from %2 to %3."
  2553. msgstr "PrintCore %1을(를) %2에서 %3(으)로 변경합니다."
  2554. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110
  2555. msgctxt "@label"
  2556. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2557. msgstr "무시하기는 기존 프린터 구성과 함께 지정된 설정을 사용하게 됩니다. 이는 인쇄 실패로 이어질 수 있습니다."
  2558. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2559. msgctxt "@label"
  2560. msgid "Move to top"
  2561. msgstr "맨 위로 이동"
  2562. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  2563. msgctxt "@label"
  2564. msgid "Delete"
  2565. msgstr "삭제"
  2566. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  2567. #: resources/qml/MonitorButton.qml:284
  2568. msgctxt "@label"
  2569. msgid "Resume"
  2570. msgstr "재개"
  2571. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  2572. msgctxt "@label"
  2573. msgid "Pausing..."
  2574. msgstr "일시 정지 중..."
  2575. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  2576. msgctxt "@label"
  2577. msgid "Resuming..."
  2578. msgstr "다시 시작..."
  2579. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  2580. #: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288
  2581. msgctxt "@label"
  2582. msgid "Pause"
  2583. msgstr "중지"
  2584. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2585. msgctxt "@label"
  2586. msgid "Abort"
  2587. msgstr "중단"
  2588. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2589. msgctxt "@label"
  2590. msgid "Aborting..."
  2591. msgstr "중지 중..."
  2592. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  2593. msgctxt "@label %1 is the name of a print job."
  2594. msgid "Are you sure you want to move %1 to the top of the queue?"
  2595. msgstr "%1(을)를 대기열의 맨 위로 이동하시겠습니까?"
  2596. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  2597. msgctxt "@window:title"
  2598. msgid "Move print job to top"
  2599. msgstr "인쇄 작업을 맨 위로 이동"
  2600. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  2601. msgctxt "@label %1 is the name of a print job."
  2602. msgid "Are you sure you want to delete %1?"
  2603. msgstr "%1(을)를 삭제하시겠습니까?"
  2604. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  2605. msgctxt "@window:title"
  2606. msgid "Delete print job"
  2607. msgstr "인쇄 작업 삭제"
  2608. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  2609. msgctxt "@label %1 is the name of a print job."
  2610. msgid "Are you sure you want to abort %1?"
  2611. msgstr "%1(을)를 정말로 중지하시겠습니까?"
  2612. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  2613. #: resources/qml/MonitorButton.qml:326
  2614. msgctxt "@window:title"
  2615. msgid "Abort print"
  2616. msgstr "프린팅 중단"
  2617. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2618. msgctxt "@label"
  2619. msgid "Unavailable printer"
  2620. msgstr "사용할 수 없는 프린터"
  2621. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2622. msgctxt "@label"
  2623. msgid "First available"
  2624. msgstr "첫 번째로 사용 가능"
  2625. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242
  2626. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246
  2627. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472
  2628. msgctxt "@info"
  2629. msgid "Please update your printer's firmware to manage the queue remotely."
  2630. msgstr "대기열을 원격으로 관리하려면 프린터 펌웨어를 업데이트하십시오."
  2631. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2632. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2633. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2634. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2635. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2636. msgctxt "@label:status"
  2637. msgid "Aborted"
  2638. msgstr "중단됨"
  2639. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2640. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2641. msgctxt "@label:status"
  2642. msgid "Finished"
  2643. msgstr "끝마친"
  2644. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2645. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2646. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2647. msgctxt "@label:status"
  2648. msgid "Preparing..."
  2649. msgstr "준비 중..."
  2650. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2651. msgctxt "@label:status"
  2652. msgid "Aborting..."
  2653. msgstr "중지 중..."
  2654. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2655. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2656. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2657. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2658. msgctxt "@label:status"
  2659. msgid "Failed"
  2660. msgstr "실패"
  2661. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2662. msgctxt "@label:status"
  2663. msgid "Pausing..."
  2664. msgstr "일시 정지 중..."
  2665. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2666. msgctxt "@label:status"
  2667. msgid "Paused"
  2668. msgstr "일시 중지됨"
  2669. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2670. msgctxt "@label:status"
  2671. msgid "Resuming..."
  2672. msgstr "다시 시작..."
  2673. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2674. msgctxt "@label:status"
  2675. msgid "Action required"
  2676. msgstr "조치가 필요함"
  2677. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2678. msgctxt "@label:status"
  2679. msgid "Finishes %1 at %2"
  2680. msgstr "%2에서 %1 완료"
  2681. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  2682. msgctxt "@label link to Connect and Cloud interfaces"
  2683. msgid "Manage printer"
  2684. msgstr "프린터 관리"
  2685. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280
  2686. msgctxt "@info"
  2687. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2688. msgstr "클라우드 프린터용 Webcam 피드는 UltiMaker Cura에서 볼 수 없습니다. '프린터 관리'를 클릭하여 Ultimaker Digital Factory를 방문하고 이 웹캠을 확인하십시오."
  2689. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340
  2690. msgctxt "@label:status"
  2691. msgid "Loading..."
  2692. msgstr "로딩 중..."
  2693. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344
  2694. msgctxt "@label:status"
  2695. msgid "Unavailable"
  2696. msgstr "사용불가"
  2697. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2698. msgctxt "@label:status"
  2699. msgid "Unreachable"
  2700. msgstr "연결할 수 없음"
  2701. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2702. msgctxt "@label:status"
  2703. msgid "Idle"
  2704. msgstr "대기 상태"
  2705. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361
  2706. msgctxt "@label:status"
  2707. msgid "Printing"
  2708. msgstr "프린팅"
  2709. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402
  2710. msgctxt "@label"
  2711. msgid "Untitled"
  2712. msgstr "제목 없음"
  2713. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417
  2714. msgctxt "@label"
  2715. msgid "Anonymous"
  2716. msgstr "익명"
  2717. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438
  2718. msgctxt "@label:status"
  2719. msgid "Requires configuration changes"
  2720. msgstr "구성 변경 필요"
  2721. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452
  2722. msgctxt "@action:button"
  2723. msgid "Details"
  2724. msgstr "세부 사항"
  2725. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2726. msgctxt "@label"
  2727. msgid "Queued"
  2728. msgstr "대기 중"
  2729. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2730. msgctxt "@label link to connect manager"
  2731. msgid "Manage in browser"
  2732. msgstr "브라우저에서 관리"
  2733. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2734. msgctxt "@label"
  2735. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2736. msgstr "대기열에 프린팅 작업이 없습니다. 작업을 추가하려면 슬라이스하여 전송하십시오."
  2737. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2738. msgctxt "@label"
  2739. msgid "Print jobs"
  2740. msgstr "인쇄 작업"
  2741. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2742. msgctxt "@label"
  2743. msgid "Total print time"
  2744. msgstr "총 인쇄 시간"
  2745. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2746. msgctxt "@label"
  2747. msgid "Waiting for"
  2748. msgstr "대기"
  2749. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  2750. msgctxt "@info"
  2751. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  2752. msgstr "Ultimaker Digital Factory를 사용하여 어디서든 프린터를 모니터링하십시오"
  2753. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  2754. msgctxt "@button"
  2755. msgid "View printers in Digital Factory"
  2756. msgstr "Digital Factory에서 프린터 보기"
  2757. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  2758. msgctxt "@title:window"
  2759. msgid "Print over network"
  2760. msgstr "네트워크를 통해 프린팅"
  2761. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  2762. msgctxt "@action:button"
  2763. msgid "Print"
  2764. msgstr "프린트"
  2765. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  2766. msgctxt "@label"
  2767. msgid "Printer selection"
  2768. msgstr "프린터 선택"
  2769. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  2770. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  2771. msgctxt "@action:button"
  2772. msgid "Print via cloud"
  2773. msgstr "Cloud를 통해 프린팅"
  2774. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  2775. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  2776. msgctxt "@properties:tooltip"
  2777. msgid "Print via cloud"
  2778. msgstr "Cloud를 통해 프린팅"
  2779. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  2780. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  2781. msgctxt "@info:status"
  2782. msgid "Connected via cloud"
  2783. msgstr "Cloud를 통해 연결됨"
  2784. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  2785. msgctxt "@action:button"
  2786. msgid "Monitor print"
  2787. msgstr "프린트 모니터링"
  2788. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  2789. msgctxt "@action:tooltip"
  2790. msgid "Track the print in Ultimaker Digital Factory"
  2791. msgstr "Ultimaker Digital Factory에서 프린트 추적"
  2792. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  2793. #, python-brace-format
  2794. msgctxt "@error:send"
  2795. msgid "Unknown error code when uploading print job: {0}"
  2796. msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}"
  2797. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  2798. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23
  2799. msgctxt "info:name"
  2800. msgid "Ultimaker Digital Factory"
  2801. msgstr "Ultimaker Digital Factory"
  2802. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  2803. #, python-brace-format
  2804. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2805. msgid "{printer_name} will be removed until the next account sync."
  2806. msgstr "다음 계정 동기화 시까지 {printer_name}이(가) 제거됩니다."
  2807. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  2808. #, python-brace-format
  2809. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2810. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  2811. msgstr "{printer_name}을(를) 영구적으로 제거하려면 {digital_factory_link}을(를) 방문하십시오."
  2812. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  2813. #, python-brace-format
  2814. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2815. msgid "Are you sure you want to remove {printer_name} temporarily?"
  2816. msgstr "일시적으로 {printer_name}을(를) 제거하시겠습니까?"
  2817. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  2818. msgctxt "@title:window"
  2819. msgid "Remove printers?"
  2820. msgstr "프린터를 제거하시겠습니까?"
  2821. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  2822. #, python-brace-format
  2823. msgctxt "@label"
  2824. msgid ""
  2825. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  2826. "Are you sure you want to continue?"
  2827. msgid_plural ""
  2828. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  2829. "Are you sure you want to continue?"
  2830. msgstr[0] ""
  2831. "Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n"
  2832. "정말로 계속하시겠습니까?"
  2833. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  2834. msgctxt "@label"
  2835. msgid ""
  2836. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  2837. "Are you sure you want to continue?"
  2838. msgstr ""
  2839. "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n"
  2840. "정말로 계속하시겠습니까?"
  2841. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  2842. #, python-brace-format
  2843. msgctxt "@info:status"
  2844. msgid ""
  2845. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  2846. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  2847. msgstr ""
  2848. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  2849. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  2850. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  2851. msgctxt "@info:title"
  2852. msgid "Are you ready for cloud printing?"
  2853. msgstr "클라우드 프린팅이 준비되었습니까?"
  2854. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  2855. msgctxt "@action"
  2856. msgid "Get started"
  2857. msgstr "시작하기"
  2858. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  2859. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  2860. msgctxt "@action"
  2861. msgid "Learn more"
  2862. msgstr "자세히 알아보기"
  2863. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  2864. msgctxt "@info:status"
  2865. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  2866. msgstr "UltiMaker Connect를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오."
  2867. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  2868. msgctxt "@info:title"
  2869. msgid "Update your printer"
  2870. msgstr "프린터 업데이트"
  2871. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  2872. #, python-brace-format
  2873. msgctxt "@info:status"
  2874. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  2875. msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다."
  2876. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  2877. msgctxt "@info:title"
  2878. msgid "Sending materials to printer"
  2879. msgstr "재료를 프린터로 전송 중"
  2880. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  2881. msgctxt "info:status"
  2882. msgid "New printer detected from your Ultimaker account"
  2883. msgid_plural "New printers detected from your Ultimaker account"
  2884. msgstr[0] "UltiMaker 계정에서 새 프린터가 감지되었습니다"
  2885. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  2886. #, python-brace-format
  2887. msgctxt "info:status Filled in with printer name and printer model."
  2888. msgid "Adding printer {name} ({model}) from your account"
  2889. msgstr "사용자 계정에서 프린터 {name}({model}) 추가"
  2890. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  2891. #, python-brace-format
  2892. msgctxt "info:{0} gets replaced by a number of printers"
  2893. msgid "... and {0} other"
  2894. msgid_plural "... and {0} others"
  2895. msgstr[0] "... 및 기타 {0}"
  2896. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  2897. msgctxt "info:status"
  2898. msgid "Printers added from Digital Factory:"
  2899. msgstr "Digital Factory에서 프린터 추가:"
  2900. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  2901. #, python-brace-format
  2902. msgctxt "@info:status"
  2903. 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."
  2904. msgstr "연결 시도 중인 {0}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다."
  2905. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  2906. msgctxt "@info:title"
  2907. msgid "Not a group host"
  2908. msgstr "그룹 호스트 아님"
  2909. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  2910. msgctxt "@action"
  2911. msgid "Configure group"
  2912. msgstr "그룹 설정"
  2913. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  2914. msgctxt "@info:status"
  2915. msgid "You will receive a confirmation via email when the print job is approved"
  2916. msgstr "프린트 작업이 승인되면 확인 이메일이 발송됩니다"
  2917. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  2918. msgctxt "@info:title"
  2919. msgid "The print job was successfully submitted"
  2920. msgstr "프린트 작업이 성공적으로 제출되었습니다"
  2921. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  2922. msgctxt "@action"
  2923. msgid "Manage print jobs"
  2924. msgstr "프린트 작업 관리"
  2925. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  2926. msgctxt "@info:status"
  2927. msgid "Please wait until the current job has been sent."
  2928. msgstr "현재 작업이 전송될 때까지 기다려주십시오."
  2929. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  2930. msgctxt "@info:title"
  2931. msgid "Print error"
  2932. msgstr "프린트 오류"
  2933. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  2934. msgctxt "@info:text"
  2935. msgid "Could not upload the data to the printer."
  2936. msgstr "데이터를 프린터로 업로드할 수 없음."
  2937. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  2938. msgctxt "@info:title"
  2939. msgid "Network error"
  2940. msgstr "네트워크 오류"
  2941. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  2942. msgctxt "@info:status"
  2943. msgid "Sending Print Job"
  2944. msgstr "인쇄 작업 전송"
  2945. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  2946. msgctxt "@info:status"
  2947. msgid "Uploading print job to printer."
  2948. msgstr "프린트 작업을 프린터로 업로드하고 있습니다."
  2949. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  2950. msgctxt "@info:status"
  2951. msgid "Print job queue is full. The printer can't accept a new job."
  2952. msgstr "프린트 작업 대기열이 가득 찼습니다. 프린터가 새 작업을 수락할 수 없습니다."
  2953. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  2954. msgctxt "@info:title"
  2955. msgid "Queue Full"
  2956. msgstr "대기열 가득 참"
  2957. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  2958. msgctxt "@info:status"
  2959. msgid "Print job was successfully sent to the printer."
  2960. msgstr "출력 작업이 프린터에 성공적으로 보내졌습니다."
  2961. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  2962. msgctxt "@info:title"
  2963. msgid "Data Sent"
  2964. msgstr "데이터 전송 됨"
  2965. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17
  2966. msgctxt "info:status"
  2967. msgid "This printer is not linked to the Digital Factory:"
  2968. msgid_plural "These printers are not linked to the Digital Factory:"
  2969. msgstr[0] "다음 프린터는 Digital Factory에 연결되어 있지 않습니다:"
  2970. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29
  2971. #, python-brace-format
  2972. msgctxt "info:status"
  2973. msgid "To establish a connection, please visit the {website_link}"
  2974. msgstr "연결을 설정하려면 {website_link}에 방문하십시오."
  2975. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33
  2976. msgctxt "info:status"
  2977. msgid "A cloud connection is not available for a printer"
  2978. msgid_plural "A cloud connection is not available for some printers"
  2979. msgstr[0] "A cloud connection is not available for some printers"
  2980. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41
  2981. msgctxt "@action:button"
  2982. msgid "Keep printer configurations"
  2983. msgstr "프린터 구성 유지"
  2984. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46
  2985. msgctxt "@action:button"
  2986. msgid "Remove printers"
  2987. msgstr "프린터 제거"
  2988. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  2989. msgctxt "@action:button Preceded by 'Ready to'."
  2990. msgid "Print over network"
  2991. msgstr "네트워크를 통해 프린팅"
  2992. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  2993. msgctxt "@properties:tooltip"
  2994. msgid "Print over network"
  2995. msgstr "네트워크를 통해 프린팅"
  2996. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  2997. msgctxt "@info:status"
  2998. msgid "Connected over the network"
  2999. msgstr "네트워크를 통해 연결됨"
  3000. #: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  3001. msgctxt "@action"
  3002. msgid "Connect via Network"
  3003. msgstr "네트워크를 통해 연결"
  3004. #: plugins/UM3NetworkPrinting/src/Utils.py:27
  3005. msgctxt "@info:status"
  3006. msgid "tomorrow"
  3007. msgstr "내일"
  3008. #: plugins/UM3NetworkPrinting/src/Utils.py:30
  3009. msgctxt "@info:status"
  3010. msgid "today"
  3011. msgstr "오늘"
  3012. #: plugins/USBPrinting/USBPrinterOutputDevice.py:42
  3013. msgctxt "@item:inmenu"
  3014. msgid "USB printing"
  3015. msgstr "USB 프린팅"
  3016. #: plugins/USBPrinting/USBPrinterOutputDevice.py:43
  3017. msgctxt "@action:button Preceded by 'Ready to'."
  3018. msgid "Print via USB"
  3019. msgstr "USB를 통해 프린팅"
  3020. #: plugins/USBPrinting/USBPrinterOutputDevice.py:44
  3021. msgctxt "@info:tooltip"
  3022. msgid "Print via USB"
  3023. msgstr "USB를 통해 프린팅"
  3024. #: plugins/USBPrinting/USBPrinterOutputDevice.py:80
  3025. msgctxt "@info:status"
  3026. msgid "Connected via USB"
  3027. msgstr "USB를 통해 연결"
  3028. #: plugins/USBPrinting/USBPrinterOutputDevice.py:110
  3029. msgctxt "@label"
  3030. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  3031. msgstr "USB 인쇄가 진행 중입니다. Cura를 닫으면 인쇄도 중단됩니다. 계속하시겠습니까?"
  3032. #: plugins/USBPrinting/USBPrinterOutputDevice.py:135
  3033. msgctxt "@message"
  3034. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  3035. msgstr "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다."
  3036. #: plugins/USBPrinting/USBPrinterOutputDevice.py:136
  3037. msgctxt "@message"
  3038. msgid "Print in Progress"
  3039. msgstr "프린트 진행 중"
  3040. #: plugins/USBPrinting/plugin.json
  3041. msgctxt "description"
  3042. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3043. msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다."
  3044. #: plugins/USBPrinting/plugin.json
  3045. msgctxt "name"
  3046. msgid "USB printing"
  3047. msgstr "USB 프린팅"
  3048. #: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  3049. msgctxt "@action"
  3050. msgid "Level build plate"
  3051. msgstr "레벨 빌드 플레이트"
  3052. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3053. msgctxt "@title"
  3054. msgid "Build Plate Leveling"
  3055. msgstr "빌드 플레이트 레벨링"
  3056. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  3057. msgctxt "@label"
  3058. 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."
  3059. msgstr "프린팅이 잘 되도록 빌드 플레이트를 조정할 수 있습니다. '다음 위치로 이동'을 클릭하면 노즐이 조정할 수있는 다른 위치로 이동합니다."
  3060. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  3061. msgctxt "@label"
  3062. 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."
  3063. msgstr "모든 자리에; 노즐 아래에 종이 한 장을 넣고 프린팅 빌드 플레이트 높이를 조정하십시오. 빌드플레이드의 높이는 종이의 끝 부분이 노즐의 끝부분으로 살짝 닿을 때의 높이입니다."
  3064. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  3065. msgctxt "@action:button"
  3066. msgid "Start Build Plate Leveling"
  3067. msgstr "빌드플레이트 레벨링 시작하기"
  3068. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  3069. msgctxt "@action:button"
  3070. msgid "Move to Next Position"
  3071. msgstr "다음 위치로 이동"
  3072. #: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  3073. msgctxt "@action"
  3074. msgid "Select upgrades"
  3075. msgstr "업그레이드 선택"
  3076. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3077. msgctxt "@label"
  3078. msgid "Please select any upgrades made to this UltiMaker Original"
  3079. msgstr "이 UltiMaker Original에 업그레이드 할 항목을 선택하십시오"
  3080. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  3081. msgctxt "@label"
  3082. msgid "Heated Build Plate (official kit or self-built)"
  3083. msgstr "히팅 빌드 플레이트 (공식 키트 또는 자체 조립식)"
  3084. #: plugins/UltimakerMachineActions/plugin.json
  3085. msgctxt "description"
  3086. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  3087. msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)"
  3088. #: plugins/UltimakerMachineActions/plugin.json
  3089. msgctxt "name"
  3090. msgid "UltiMaker machine actions"
  3091. msgstr "UltiMaker 기기 동작"
  3092. #: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
  3093. msgctxt "description"
  3094. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3095. msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다."
  3096. #: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
  3097. msgctxt "name"
  3098. msgid "Version Upgrade 2.1 to 2.2"
  3099. msgstr "2.1에서 2.2로 버전 업그레이드"
  3100. #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
  3101. msgctxt "description"
  3102. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3103. msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다."
  3104. #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
  3105. msgctxt "name"
  3106. msgid "Version Upgrade 2.2 to 2.4"
  3107. msgstr "2.2에서 2.4로 버전 업그레이드"
  3108. #: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
  3109. msgctxt "description"
  3110. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3111. msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다."
  3112. #: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
  3113. msgctxt "name"
  3114. msgid "Version Upgrade 2.5 to 2.6"
  3115. msgstr "2.5에서 2.6으로 버전 업그레이드"
  3116. #: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
  3117. msgctxt "description"
  3118. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3119. msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다."
  3120. #: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
  3121. msgctxt "name"
  3122. msgid "Version Upgrade 2.6 to 2.7"
  3123. msgstr "2.6에서 2.7으로 버전 업그레이드"
  3124. #: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
  3125. msgctxt "description"
  3126. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3127. msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다."
  3128. #: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
  3129. msgctxt "name"
  3130. msgid "Version Upgrade 2.7 to 3.0"
  3131. msgstr "2.7에서 3.0으로 버전 업그레이드"
  3132. #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
  3133. msgctxt "description"
  3134. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3135. msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다."
  3136. #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
  3137. msgctxt "name"
  3138. msgid "Version Upgrade 3.0 to 3.1"
  3139. msgstr "3.0에서 3.1로 버전 업그레이드"
  3140. #: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
  3141. msgctxt "description"
  3142. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3143. msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다."
  3144. #: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
  3145. msgctxt "name"
  3146. msgid "Version Upgrade 3.2 to 3.3"
  3147. msgstr "3.2에서 3.3으로 버전 업그레이드"
  3148. #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
  3149. msgctxt "description"
  3150. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3151. msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다."
  3152. #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
  3153. msgctxt "name"
  3154. msgid "Version Upgrade 3.3 to 3.4"
  3155. msgstr "버전 업그레이드 3.3에서 3.4"
  3156. #: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
  3157. msgctxt "description"
  3158. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3159. msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다."
  3160. #: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
  3161. msgctxt "name"
  3162. msgid "Version Upgrade 3.4 to 3.5"
  3163. msgstr "3.4에서 3.5로 버전 업그레이드"
  3164. #: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
  3165. msgctxt "description"
  3166. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3167. msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다."
  3168. #: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
  3169. msgctxt "name"
  3170. msgid "Version Upgrade 3.5 to 4.0"
  3171. msgstr "버전 업그레이드 3.5에서 4.0"
  3172. #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
  3173. msgctxt "description"
  3174. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3175. msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다."
  3176. #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
  3177. msgctxt "name"
  3178. msgid "Version Upgrade 4.0 to 4.1"
  3179. msgstr "버전 업그레이드 4.0에서 4.1"
  3180. #: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json
  3181. msgctxt "description"
  3182. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3183. msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다."
  3184. #: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json
  3185. msgctxt "name"
  3186. msgid "Version Upgrade 4.11 to 4.12"
  3187. msgstr "4.11에서 4.12로 버전 업그레이드"
  3188. #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json
  3189. msgctxt "description"
  3190. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3191. msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다."
  3192. #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json
  3193. msgctxt "name"
  3194. msgid "Version Upgrade 4.13 to 5.0"
  3195. msgstr "4.13에서 5.0으로 버전 업그레이드"
  3196. #: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
  3197. msgctxt "description"
  3198. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3199. msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다."
  3200. #: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
  3201. msgctxt "name"
  3202. msgid "Version Upgrade 4.1 to 4.2"
  3203. msgstr "4.1에서 4.2로 버전 업그레이드"
  3204. #: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
  3205. msgctxt "description"
  3206. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3207. msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다."
  3208. #: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
  3209. msgctxt "name"
  3210. msgid "Version Upgrade 4.2 to 4.3"
  3211. msgstr "4.2에서 4.3로 버전 업그레이드"
  3212. #: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
  3213. msgctxt "description"
  3214. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3215. msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다."
  3216. #: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
  3217. msgctxt "name"
  3218. msgid "Version Upgrade 4.3 to 4.4"
  3219. msgstr "4.3에서 4.4로 버전 업그레이드"
  3220. #: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
  3221. msgctxt "description"
  3222. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3223. msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다."
  3224. #: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
  3225. msgctxt "name"
  3226. msgid "Version Upgrade 4.4 to 4.5"
  3227. msgstr "4.4에서 4.5로 버전 업그레이드"
  3228. #: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
  3229. msgctxt "description"
  3230. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3231. msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다."
  3232. #: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
  3233. msgctxt "name"
  3234. msgid "Version Upgrade 4.5 to 4.6"
  3235. msgstr "4.5에서 4.6으로 버전 업그레이드"
  3236. #: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
  3237. msgctxt "description"
  3238. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3239. msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다."
  3240. #: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
  3241. msgctxt "name"
  3242. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3243. msgstr "4.6.0에서 4.6.2로 버전 업그레이드"
  3244. #: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
  3245. msgctxt "description"
  3246. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  3247. msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다."
  3248. #: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
  3249. msgctxt "name"
  3250. msgid "Version Upgrade 4.6.2 to 4.7"
  3251. msgstr "4.6.2에서 4.7로 버전 업그레이드"
  3252. #: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
  3253. msgctxt "description"
  3254. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3255. msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다."
  3256. #: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
  3257. msgctxt "name"
  3258. msgid "Version Upgrade 4.7 to 4.8"
  3259. msgstr "4.7에서 4.8로 버전 업그레이드"
  3260. #: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
  3261. msgctxt "description"
  3262. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3263. msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다."
  3264. #: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
  3265. msgctxt "name"
  3266. msgid "Version Upgrade 4.8 to 4.9"
  3267. msgstr "4.8에서 4.9로 버전 업그레이드"
  3268. #: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
  3269. msgctxt "description"
  3270. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3271. msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다."
  3272. #: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
  3273. msgctxt "name"
  3274. msgid "Version Upgrade 4.9 to 4.10"
  3275. msgstr "4.9에서 4.10으로 버전 업그레이드"
  3276. #: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json
  3277. msgctxt "description"
  3278. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3279. msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다."
  3280. #: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json
  3281. msgctxt "name"
  3282. msgid "Version Upgrade 5.2 to 5.3"
  3283. msgstr "5.2에서 5.3으로 버전 업그레이드"
  3284. #: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json
  3285. msgctxt "description"
  3286. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3287. msgstr ""
  3288. #: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json
  3289. msgctxt "name"
  3290. msgid "Version Upgrade 5.3 to 5.4"
  3291. msgstr ""
  3292. #: plugins/X3DReader/__init__.py:13
  3293. msgctxt "@item:inlistbox"
  3294. msgid "X3D File"
  3295. msgstr "X3D 파일"
  3296. #: plugins/X3DReader/plugin.json
  3297. msgctxt "description"
  3298. msgid "Provides support for reading X3D files."
  3299. msgstr "X3D 파일을 읽을 수 있도록 지원합니다."
  3300. #: plugins/X3DReader/plugin.json
  3301. msgctxt "name"
  3302. msgid "X3D Reader"
  3303. msgstr "X3D 리더"
  3304. #: plugins/XRayView/__init__.py:12
  3305. msgctxt "@item:inlistbox"
  3306. msgid "X-Ray view"
  3307. msgstr "엑스레이 뷰"
  3308. #: plugins/XRayView/plugin.json
  3309. msgctxt "description"
  3310. msgid "Provides the X-Ray view."
  3311. msgstr "엑스레이 뷰를 제공합니다."
  3312. #: plugins/XRayView/plugin.json
  3313. msgctxt "name"
  3314. msgid "X-Ray View"
  3315. msgstr "엑스레이 뷰"
  3316. #: plugins/XmlMaterialProfile/plugin.json
  3317. msgctxt "name"
  3318. msgid "Material Profiles"
  3319. msgstr "재료 프로파일"
  3320. #: plugins/XmlMaterialProfile/plugin.json
  3321. msgctxt "description"
  3322. msgid "Provides capabilities to read and write XML-based material profiles."
  3323. msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다."
  3324. #: resources/qml/Account/AccountWidget.qml:24
  3325. msgctxt "@action:button"
  3326. msgid "Sign in"
  3327. msgstr "로그인"
  3328. #: resources/qml/Account/GeneralOperations.qml:19
  3329. #: resources/qml/WelcomePages/CloudContent.qml:64
  3330. msgctxt "@label"
  3331. msgid "Sign in to the UltiMaker platform"
  3332. msgstr "UltiMaker 플랫폼에 로그인"
  3333. #: resources/qml/Account/GeneralOperations.qml:39
  3334. msgctxt "@text"
  3335. msgid ""
  3336. "- Add material profiles and plug-ins from the Marketplace\n"
  3337. "- Back-up and sync your material profiles and plug-ins\n"
  3338. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  3339. msgstr ""
  3340. "- 재료 설정 및 Marketplace 플러그인 추가\n"
  3341. "- 재료 설정과 플러그인 백업 및 동기화\n"
  3342. "- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기"
  3343. #: resources/qml/Account/GeneralOperations.qml:58
  3344. msgctxt "@button"
  3345. msgid "Create a free UltiMaker account"
  3346. msgstr "UltiMaker 계정 무료 생성"
  3347. #: resources/qml/Account/SyncState.qml:35
  3348. msgctxt "@label"
  3349. msgid "Checking..."
  3350. msgstr "확인 중..."
  3351. #: resources/qml/Account/SyncState.qml:42
  3352. msgctxt "@label"
  3353. msgid "Account synced"
  3354. msgstr "계정 동기화됨"
  3355. #: resources/qml/Account/SyncState.qml:49
  3356. msgctxt "@label"
  3357. msgid "Something went wrong..."
  3358. msgstr "오류가 발생하였습니다..."
  3359. #: resources/qml/Account/SyncState.qml:102
  3360. msgctxt "@button"
  3361. msgid "Install pending updates"
  3362. msgstr "보류된 업데이트 설치"
  3363. #: resources/qml/Account/SyncState.qml:123
  3364. msgctxt "@button"
  3365. msgid "Check for account updates"
  3366. msgstr "계정 업데이트 확인"
  3367. #: resources/qml/Account/UserOperations.qml:78
  3368. msgctxt "@label The argument is a timestamp"
  3369. msgid "Last update: %1"
  3370. msgstr "마지막 업데이트: %1"
  3371. #: resources/qml/Account/UserOperations.qml:107
  3372. msgctxt "@button"
  3373. msgid "UltiMaker Account"
  3374. msgstr "UltiMaker 계정"
  3375. #: resources/qml/Account/UserOperations.qml:126
  3376. msgctxt "@button"
  3377. msgid "Sign Out"
  3378. msgstr "로그아웃"
  3379. #: resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3380. msgctxt "@label"
  3381. msgid "No time estimation available"
  3382. msgstr "시간 추산 이용 불가"
  3383. #: resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3384. msgctxt "@label"
  3385. msgid "No cost estimation available"
  3386. msgstr "비용 추산 이용 불가"
  3387. #: resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3388. msgctxt "@button"
  3389. msgid "Preview"
  3390. msgstr "미리 보기"
  3391. #: resources/qml/ActionPanel/PrintJobInformation.qml:31
  3392. msgctxt "@label"
  3393. msgid "Time estimation"
  3394. msgstr "시간 추산"
  3395. #: resources/qml/ActionPanel/PrintJobInformation.qml:107
  3396. msgctxt "@label"
  3397. msgid "Material estimation"
  3398. msgstr "재료 추산"
  3399. #: resources/qml/ActionPanel/PrintJobInformation.qml:156
  3400. msgctxt "@label m for meter"
  3401. msgid "%1m"
  3402. msgstr "%1m"
  3403. #: resources/qml/ActionPanel/PrintJobInformation.qml:157
  3404. msgctxt "@label g for grams"
  3405. msgid "%1g"
  3406. msgstr "%1g"
  3407. #: resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3408. msgctxt "@label:PrintjobStatus"
  3409. msgid "Slicing..."
  3410. msgstr "슬라이싱..."
  3411. #: resources/qml/ActionPanel/SliceProcessWidget.qml:78
  3412. msgctxt "@label:PrintjobStatus"
  3413. msgid "Unable to slice"
  3414. msgstr "슬라이스 할 수 없습니다"
  3415. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3416. msgctxt "@button"
  3417. msgid "Processing"
  3418. msgstr "처리"
  3419. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3420. msgctxt "@button"
  3421. msgid "Slice"
  3422. msgstr "슬라이스"
  3423. #: resources/qml/ActionPanel/SliceProcessWidget.qml:115
  3424. msgctxt "@label"
  3425. msgid "Start the slicing process"
  3426. msgstr "슬라이싱 프로세스 시작"
  3427. #: resources/qml/ActionPanel/SliceProcessWidget.qml:132
  3428. msgctxt "@button"
  3429. msgid "Cancel"
  3430. msgstr "취소"
  3431. #: resources/qml/Actions.qml:81
  3432. msgctxt "@action:inmenu"
  3433. msgid "Show Online Troubleshooting"
  3434. msgstr "온라인 문제 해결 표시"
  3435. #: resources/qml/Actions.qml:88
  3436. msgctxt "@action:inmenu"
  3437. msgid "Toggle Full Screen"
  3438. msgstr "전채 화면 전환"
  3439. #: resources/qml/Actions.qml:96
  3440. msgctxt "@action:inmenu"
  3441. msgid "Exit Full Screen"
  3442. msgstr "전체 화면 종료"
  3443. #: resources/qml/Actions.qml:103
  3444. msgctxt "@action:inmenu menubar:edit"
  3445. msgid "&Undo"
  3446. msgstr "되돌리기(&U)"
  3447. #: resources/qml/Actions.qml:113
  3448. msgctxt "@action:inmenu menubar:edit"
  3449. msgid "&Redo"
  3450. msgstr "다시하기(&R)"
  3451. #: resources/qml/Actions.qml:131
  3452. msgctxt "@action:inmenu menubar:file"
  3453. msgid "&Quit"
  3454. msgstr "종료(&Q)"
  3455. #: resources/qml/Actions.qml:139
  3456. msgctxt "@action:inmenu menubar:view"
  3457. msgid "3D View"
  3458. msgstr "3D 보기"
  3459. #: resources/qml/Actions.qml:146
  3460. msgctxt "@action:inmenu menubar:view"
  3461. msgid "Front View"
  3462. msgstr "앞에서 보기"
  3463. #: resources/qml/Actions.qml:153
  3464. msgctxt "@action:inmenu menubar:view"
  3465. msgid "Top View"
  3466. msgstr "위에서 보기"
  3467. #: resources/qml/Actions.qml:160
  3468. msgctxt "@action:inmenu menubar:view"
  3469. msgid "Bottom View"
  3470. msgstr "하단 뷰"
  3471. #: resources/qml/Actions.qml:167
  3472. msgctxt "@action:inmenu menubar:view"
  3473. msgid "Left Side View"
  3474. msgstr "왼쪽에서 보기"
  3475. #: resources/qml/Actions.qml:174
  3476. msgctxt "@action:inmenu menubar:view"
  3477. msgid "Right Side View"
  3478. msgstr "오른쪽에서 보기"
  3479. #: resources/qml/Actions.qml:188
  3480. msgctxt "@action:inmenu"
  3481. msgid "Configure Cura..."
  3482. msgstr "Cura 구성 ..."
  3483. #: resources/qml/Actions.qml:197
  3484. msgctxt "@action:inmenu menubar:printer"
  3485. msgid "&Add Printer..."
  3486. msgstr "프린터 추가..."
  3487. #: resources/qml/Actions.qml:203
  3488. msgctxt "@action:inmenu menubar:printer"
  3489. msgid "Manage Pr&inters..."
  3490. msgstr "프린터 관리 ..."
  3491. #: resources/qml/Actions.qml:210
  3492. msgctxt "@action:inmenu"
  3493. msgid "Manage Materials..."
  3494. msgstr "재료 관리..."
  3495. #: resources/qml/Actions.qml:218
  3496. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  3497. msgid "Add more materials from Marketplace"
  3498. msgstr "마켓플레이스에서 더 많은 재료 추가"
  3499. #: resources/qml/Actions.qml:225
  3500. msgctxt "@action:inmenu menubar:profile"
  3501. msgid "&Update profile with current settings/overrides"
  3502. msgstr "현재 설정으로로 프로파일 업데이트"
  3503. #: resources/qml/Actions.qml:233
  3504. msgctxt "@action:inmenu menubar:profile"
  3505. msgid "&Discard current changes"
  3506. msgstr "현재 변경 사항 무시"
  3507. #: resources/qml/Actions.qml:245
  3508. msgctxt "@action:inmenu menubar:profile"
  3509. msgid "&Create profile from current settings/overrides..."
  3510. msgstr "현재 설정으로 프로파일 생성..."
  3511. #: resources/qml/Actions.qml:251
  3512. msgctxt "@action:inmenu menubar:profile"
  3513. msgid "Manage Profiles..."
  3514. msgstr "프로파일 관리..."
  3515. #: resources/qml/Actions.qml:259
  3516. msgctxt "@action:inmenu menubar:help"
  3517. msgid "Show Online &Documentation"
  3518. msgstr "온라인 문서 표시"
  3519. #: resources/qml/Actions.qml:267
  3520. msgctxt "@action:inmenu menubar:help"
  3521. msgid "Report a &Bug"
  3522. msgstr "버그 리포트"
  3523. #: resources/qml/Actions.qml:275
  3524. msgctxt "@action:inmenu menubar:help"
  3525. msgid "What's New"
  3526. msgstr "새로운 기능"
  3527. #: resources/qml/Actions.qml:289
  3528. msgctxt "@action:inmenu menubar:help"
  3529. msgid "About..."
  3530. msgstr "소개..."
  3531. #: resources/qml/Actions.qml:296
  3532. msgctxt "@action:inmenu menubar:edit"
  3533. msgid "Delete Selected"
  3534. msgstr "선택 항목 삭제"
  3535. #: resources/qml/Actions.qml:306
  3536. msgctxt "@action:inmenu menubar:edit"
  3537. msgid "Center Selected"
  3538. msgstr "선택 항목 가운데 정렬"
  3539. #: resources/qml/Actions.qml:315
  3540. msgctxt "@action:inmenu menubar:edit"
  3541. msgid "Multiply Selected"
  3542. msgstr "선택 항목 복제"
  3543. #: resources/qml/Actions.qml:324
  3544. msgctxt "@action:inmenu"
  3545. msgid "Delete Model"
  3546. msgstr "모델 삭제"
  3547. #: resources/qml/Actions.qml:332
  3548. msgctxt "@action:inmenu"
  3549. msgid "Ce&nter Model on Platform"
  3550. msgstr "플랫폼중심에 모델 위치하기"
  3551. #: resources/qml/Actions.qml:338
  3552. msgctxt "@action:inmenu menubar:edit"
  3553. msgid "&Group Models"
  3554. msgstr "모델 그룹화"
  3555. #: resources/qml/Actions.qml:358
  3556. msgctxt "@action:inmenu menubar:edit"
  3557. msgid "Ungroup Models"
  3558. msgstr "모델 그룹 해제"
  3559. #: resources/qml/Actions.qml:368
  3560. msgctxt "@action:inmenu menubar:edit"
  3561. msgid "&Merge Models"
  3562. msgstr "모델 합치기"
  3563. #: resources/qml/Actions.qml:378
  3564. msgctxt "@action:inmenu"
  3565. msgid "&Multiply Model..."
  3566. msgstr "모델 복제..."
  3567. #: resources/qml/Actions.qml:385
  3568. msgctxt "@action:inmenu menubar:edit"
  3569. msgid "Select All Models"
  3570. msgstr "모든 모델 선택"
  3571. #: resources/qml/Actions.qml:395
  3572. msgctxt "@action:inmenu menubar:edit"
  3573. msgid "Clear Build Plate"
  3574. msgstr "빌드 플레이트 지우기"
  3575. #: resources/qml/Actions.qml:405
  3576. msgctxt "@action:inmenu menubar:file"
  3577. msgid "Reload All Models"
  3578. msgstr "모든 모델 다시 로드"
  3579. #: resources/qml/Actions.qml:414
  3580. msgctxt "@action:inmenu menubar:edit"
  3581. msgid "Arrange All Models"
  3582. msgstr "모든 모델 정렬"
  3583. #: resources/qml/Actions.qml:422
  3584. msgctxt "@action:inmenu menubar:edit"
  3585. msgid "Arrange Selection"
  3586. msgstr "선택한 모델 정렬"
  3587. #: resources/qml/Actions.qml:429
  3588. msgctxt "@action:inmenu menubar:edit"
  3589. msgid "Reset All Model Positions"
  3590. msgstr "모든 모델의 위치 재설정"
  3591. #: resources/qml/Actions.qml:436
  3592. msgctxt "@action:inmenu menubar:edit"
  3593. msgid "Reset All Model Transformations"
  3594. msgstr "모든 모델의 변환 재설정"
  3595. #: resources/qml/Actions.qml:445
  3596. msgctxt "@action:inmenu menubar:file"
  3597. msgid "&Open File(s)..."
  3598. msgstr "파일 열기..."
  3599. #: resources/qml/Actions.qml:455
  3600. msgctxt "@action:inmenu menubar:file"
  3601. msgid "&New Project..."
  3602. msgstr "새로운 프로젝트..."
  3603. #: resources/qml/Actions.qml:462
  3604. msgctxt "@action:inmenu menubar:help"
  3605. msgid "Show Configuration Folder"
  3606. msgstr "설정 폴더 표시"
  3607. #: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476
  3608. msgctxt "@action:menu"
  3609. msgid "Configure setting visibility..."
  3610. msgstr "설정 보기..."
  3611. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  3612. msgctxt "@label:button"
  3613. msgid "My printers"
  3614. msgstr "내 프린터"
  3615. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  3616. msgctxt "@tooltip:button"
  3617. msgid "Monitor printers in Ultimaker Digital Factory."
  3618. msgstr "Ultimaker Digital Factory의 프린터를 모니터링하십시오."
  3619. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  3620. msgctxt "@tooltip:button"
  3621. msgid "Create print projects in Digital Library."
  3622. msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오."
  3623. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  3624. msgctxt "@label:button"
  3625. msgid "Print jobs"
  3626. msgstr "인쇄 작업"
  3627. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  3628. msgctxt "@tooltip:button"
  3629. msgid "Monitor print jobs and reprint from your print history."
  3630. msgstr "프린트 작업을 모니터링하고 프린트 기록에서 다시 프린트하십시오."
  3631. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  3632. msgctxt "@tooltip:button"
  3633. msgid "Extend UltiMaker Cura with plugins and material profiles."
  3634. msgstr "플러그인 및 재료 프로파일을 사용하여 UltiMaker Cura를 확장하십시오."
  3635. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  3636. msgctxt "@tooltip:button"
  3637. msgid "Become a 3D printing expert with UltiMaker e-learning."
  3638. msgstr "UltiMaker e-러닝을 통해 3D 프린팅 전문가로 거듭나십시오."
  3639. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  3640. msgctxt "@label:button"
  3641. msgid "UltiMaker support"
  3642. msgstr ""
  3643. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3644. msgctxt "@tooltip:button"
  3645. msgid "Learn how to get started with UltiMaker Cura."
  3646. msgstr "UltiMaker Cura로 시작하는 방법을 알아보십시오."
  3647. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3648. msgctxt "@label:button"
  3649. msgid "Ask a question"
  3650. msgstr "질문하기"
  3651. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3652. msgctxt "@tooltip:button"
  3653. msgid "Consult the UltiMaker Community."
  3654. msgstr "UltiMaker 커뮤니티에 문의하십시오."
  3655. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3656. msgctxt "@label:button"
  3657. msgid "Report a bug"
  3658. msgstr "버그 리포트"
  3659. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3660. msgctxt "@tooltip:button"
  3661. msgid "Let developers know that something is going wrong."
  3662. msgstr "개발자에게 문제를 알려주십시오."
  3663. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3664. msgctxt "@tooltip:button"
  3665. msgid "Visit the UltiMaker website."
  3666. msgstr "UltiMaker 웹 사이트를 방문하십시오."
  3667. #: resources/qml/ColorDialog.qml:110
  3668. msgctxt "@label"
  3669. msgid "Hex"
  3670. msgstr "6각"
  3671. #: resources/qml/Cura.qml:256
  3672. msgctxt "@label"
  3673. msgid "This package will be installed after restarting."
  3674. msgstr "다시 시작한 후에 이 패키지가 설치됩니다."
  3675. #: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14
  3676. msgctxt "@title:tab"
  3677. msgid "General"
  3678. msgstr "일반"
  3679. #: resources/qml/Cura.qml:470
  3680. msgctxt "@title:tab"
  3681. msgid "Settings"
  3682. msgstr "설정"
  3683. #: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17
  3684. msgctxt "@title:tab"
  3685. msgid "Printers"
  3686. msgstr "프린터"
  3687. #: resources/qml/Cura.qml:474
  3688. #: resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3689. msgctxt "@title:tab"
  3690. msgid "Materials"
  3691. msgstr "재료"
  3692. #: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57
  3693. msgctxt "@title:tab"
  3694. msgid "Profiles"
  3695. msgstr "프로파일"
  3696. #: resources/qml/Cura.qml:581
  3697. msgctxt "@title:window %1 is the application name"
  3698. msgid "Closing %1"
  3699. msgstr "%1 닫기"
  3700. #: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591
  3701. msgctxt "@label %1 is the application name"
  3702. msgid "Are you sure you want to exit %1?"
  3703. msgstr "%1을(를) 정말로 종료하시겠습니까?"
  3704. #: resources/qml/Cura.qml:629
  3705. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3706. msgctxt "@title:window"
  3707. msgid "Open file(s)"
  3708. msgstr "파일 열기"
  3709. #: resources/qml/Cura.qml:734
  3710. msgctxt "@window:title"
  3711. msgid "Install Package"
  3712. msgstr "패키지 설치"
  3713. #: resources/qml/Cura.qml:741
  3714. msgctxt "@title:window"
  3715. msgid "Open File(s)"
  3716. msgstr "파일 열기"
  3717. #: resources/qml/Cura.qml:743
  3718. msgctxt "@text:window"
  3719. 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."
  3720. msgstr "선택한 파일 내에 하나 이상의 G-코드 파일이 있습니다. 한 번에 하나의 G-코드 파일 만 열 수 있습니다. G-코드 파일을 열려면 하나만 선택하십시오."
  3721. #: resources/qml/Cura.qml:828
  3722. msgctxt "@title:window"
  3723. msgid "Add Printer"
  3724. msgstr "프린터 추가"
  3725. #: resources/qml/Cura.qml:836
  3726. msgctxt "@title:window"
  3727. msgid "What's New"
  3728. msgstr "새로운 기능"
  3729. #: resources/qml/Cura.qml:890
  3730. msgctxt "@title:window"
  3731. msgid "Save Custom Profile"
  3732. msgstr "사용자 지정 프로필 저장"
  3733. #: resources/qml/Cura.qml:891
  3734. msgctxt "@textfield:placeholder"
  3735. msgid "New Custom Profile"
  3736. msgstr "새 사용자 지정 프로필"
  3737. #: resources/qml/Cura.qml:892
  3738. msgctxt "@info"
  3739. msgid "Custom profile name:"
  3740. msgstr "사용자 지정 프로필 이름:"
  3741. #: resources/qml/Cura.qml:909
  3742. msgctxt "@label %i will be replaced with a profile name"
  3743. 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>."
  3744. msgstr "<b>사용자 지정 프로필에는 사용자가 변경한 설정만 저장됩니다.</b><br/>이를 지원하는 재료의 경우 새 사용자 지정 프로필은 <b>%1</b>의 속성을 상속합니다."
  3745. #: resources/qml/Cura.qml:917
  3746. msgctxt "@action:button"
  3747. msgid "Learn more about Cura print profiles"
  3748. msgstr "Cura 프린트 프로필에 대해 자세히 알아보기"
  3749. #: resources/qml/Cura.qml:926
  3750. msgctxt "@button"
  3751. msgid "Save new profile"
  3752. msgstr "새 프로필 저장"
  3753. #: resources/qml/Dialogs/AboutDialog.qml:15
  3754. msgctxt "@title:window The argument is the application name."
  3755. msgid "About %1"
  3756. msgstr "%1 정보"
  3757. #: resources/qml/Dialogs/AboutDialog.qml:59
  3758. msgctxt "@label"
  3759. msgid "version: %1"
  3760. msgstr "버전: %1"
  3761. #: resources/qml/Dialogs/AboutDialog.qml:74
  3762. msgctxt "@label"
  3763. msgid "End-to-end solution for fused filament 3D printing."
  3764. msgstr "3D 프린팅을 위한 엔드 투 엔트 솔루션."
  3765. #: resources/qml/Dialogs/AboutDialog.qml:87
  3766. msgctxt "@info:credit"
  3767. msgid ""
  3768. "Cura is developed by UltiMaker in cooperation with the community.\n"
  3769. "Cura proudly uses the following open source projects:"
  3770. msgstr ""
  3771. "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다.\n"
  3772. "Cura는 다음의 오픈 소스 프로젝트를 사용합니다:"
  3773. #: resources/qml/Dialogs/AboutDialog.qml:138
  3774. msgctxt "@label Description for application component"
  3775. msgid "Graphical user interface"
  3776. msgstr "그래픽 사용자 인터페이스"
  3777. #: resources/qml/Dialogs/AboutDialog.qml:139
  3778. msgctxt "@label Description for application component"
  3779. msgid "Application framework"
  3780. msgstr "애플리케이션 프레임 워크"
  3781. #: resources/qml/Dialogs/AboutDialog.qml:140
  3782. msgctxt "@label Description for application component"
  3783. msgid "G-code generator"
  3784. msgstr "GCode 생성기"
  3785. #: resources/qml/Dialogs/AboutDialog.qml:141
  3786. msgctxt "@label Description for application component"
  3787. msgid "Interprocess communication library"
  3788. msgstr "프로세스간 통신 라이브러리"
  3789. #: resources/qml/Dialogs/AboutDialog.qml:142
  3790. msgctxt "@label Description for application component"
  3791. msgid "Python bindings for libnest2d"
  3792. msgstr "libnest2d용 Python 바인딩"
  3793. #: resources/qml/Dialogs/AboutDialog.qml:143
  3794. msgctxt "@label Description for application component"
  3795. msgid "Polygon packing library, developed by Prusa Research"
  3796. msgstr "폴리곤 패킹 라이브러리, Prusa Research 개발"
  3797. #: resources/qml/Dialogs/AboutDialog.qml:144
  3798. msgctxt "@label Description for application component"
  3799. msgid "Support library for handling 3MF files"
  3800. msgstr "3MF 파일 처리를 위한 라이브러리"
  3801. #: resources/qml/Dialogs/AboutDialog.qml:145
  3802. msgctxt "@label Description for application component"
  3803. msgid "Support library for file metadata and streaming"
  3804. msgstr "파일 메타데이터 및 스트리밍을 위한 지원 라이브러리"
  3805. #: resources/qml/Dialogs/AboutDialog.qml:148
  3806. msgctxt "@label Description for application dependency"
  3807. msgid "Programming language"
  3808. msgstr "프로그래밍 언어"
  3809. #: resources/qml/Dialogs/AboutDialog.qml:149
  3810. msgctxt "@label Description for application dependency"
  3811. msgid "GUI framework"
  3812. msgstr "GUI 프레임 워크"
  3813. #: resources/qml/Dialogs/AboutDialog.qml:150
  3814. msgctxt "@label Description for application dependency"
  3815. msgid "GUI framework bindings"
  3816. msgstr "GUI 프레임 워크 바인딩"
  3817. #: resources/qml/Dialogs/AboutDialog.qml:151
  3818. msgctxt "@label Description for application dependency"
  3819. msgid "C/C++ Binding library"
  3820. msgstr "C/C ++ 바인딩 라이브러리"
  3821. #: resources/qml/Dialogs/AboutDialog.qml:152
  3822. msgctxt "@label Description for application dependency"
  3823. msgid "Data interchange format"
  3824. msgstr "데이터 교환 형식"
  3825. #: resources/qml/Dialogs/AboutDialog.qml:153
  3826. msgctxt "@label"
  3827. msgid "Font"
  3828. msgstr "폰트"
  3829. #: resources/qml/Dialogs/AboutDialog.qml:156
  3830. msgctxt "@label Description for application dependency"
  3831. msgid "Polygon clipping library"
  3832. msgstr "다각형 클리핑 라이브러리"
  3833. #: resources/qml/Dialogs/AboutDialog.qml:157
  3834. msgctxt "@label Description for application dependency"
  3835. msgid "JSON parser"
  3836. msgstr ""
  3837. #: resources/qml/Dialogs/AboutDialog.qml:158
  3838. msgctxt "@label Description for application dependency"
  3839. msgid "Utility functions, including an image loader"
  3840. msgstr "이미지 로더를 포함한 유틸리티 기능"
  3841. #: resources/qml/Dialogs/AboutDialog.qml:159
  3842. msgctxt "@label Description for application dependency"
  3843. msgid "Utility library, including Voronoi generation"
  3844. msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리"
  3845. #: resources/qml/Dialogs/AboutDialog.qml:162
  3846. #: resources/qml/Dialogs/AboutDialog.qml:163
  3847. msgctxt "@label Description for application dependency"
  3848. msgid "Root Certificates for validating SSL trustworthiness"
  3849. msgstr "SSL 신뢰성 검증용 루트 인증서"
  3850. #: resources/qml/Dialogs/AboutDialog.qml:164
  3851. msgctxt "@label Description for application dependency"
  3852. msgid "Compatibility between Python 2 and 3"
  3853. msgstr "Python 2 및 3 간의 호환성"
  3854. #: resources/qml/Dialogs/AboutDialog.qml:165
  3855. msgctxt "@label Description for application dependency"
  3856. msgid "Support library for system keyring access"
  3857. msgstr "시스템 키링 액세스를 위한 서포트 라이브러리"
  3858. #: resources/qml/Dialogs/AboutDialog.qml:166
  3859. msgctxt "@label Description for application dependency"
  3860. msgid "Support library for faster math"
  3861. msgstr "더 빠른 수학연산을 위한 라이브러리"
  3862. #: resources/qml/Dialogs/AboutDialog.qml:167
  3863. msgctxt "@label Description for application dependency"
  3864. msgid "Support library for handling STL files"
  3865. msgstr "STL 파일 처리를 위한 라이브러리"
  3866. #: resources/qml/Dialogs/AboutDialog.qml:168
  3867. msgctxt "@label Description for application dependency"
  3868. msgid "Python bindings for Clipper"
  3869. msgstr "Clipper용 Python 바인딩"
  3870. #: resources/qml/Dialogs/AboutDialog.qml:169
  3871. msgctxt "@label Description for application dependency"
  3872. msgid "Serial communication library"
  3873. msgstr "직렬 통신 라이브러리"
  3874. #: resources/qml/Dialogs/AboutDialog.qml:170
  3875. msgctxt "@label Description for application dependency"
  3876. msgid "Support library for scientific computing"
  3877. msgstr "과학 컴퓨팅을 위한 라이브러리"
  3878. #: resources/qml/Dialogs/AboutDialog.qml:171
  3879. msgctxt "@Label Description for application dependency"
  3880. msgid "Python Error tracking library"
  3881. msgstr "Python 오류 추적 라이브러리"
  3882. #: resources/qml/Dialogs/AboutDialog.qml:172
  3883. msgctxt "@label Description for application dependency"
  3884. msgid "Support library for handling triangular meshes"
  3885. msgstr "삼각형 메쉬 처리를 위한 지원 라이브러리"
  3886. #: resources/qml/Dialogs/AboutDialog.qml:173
  3887. msgctxt "@label Description for application dependency"
  3888. msgid "ZeroConf discovery library"
  3889. msgstr "ZeroConf discovery 라이브러리"
  3890. #: resources/qml/Dialogs/AboutDialog.qml:176
  3891. msgctxt "@label Description for development tool"
  3892. msgid "Universal build system configuration"
  3893. msgstr "범용 빌드 시스템 설정"
  3894. #: resources/qml/Dialogs/AboutDialog.qml:177
  3895. msgctxt "@label Description for development tool"
  3896. msgid "Dependency and package manager"
  3897. msgstr "의존성 및 패키지 관리자"
  3898. #: resources/qml/Dialogs/AboutDialog.qml:178
  3899. msgctxt "@label Description for development tool"
  3900. msgid "Packaging Python-applications"
  3901. msgstr "Python 애플리케이션 패키지 생성 중"
  3902. #: resources/qml/Dialogs/AboutDialog.qml:179
  3903. msgctxt "@label Description for development tool"
  3904. msgid "Linux cross-distribution application deployment"
  3905. msgstr "Linux 교차 배포 응용 프로그램 배포"
  3906. #: resources/qml/Dialogs/AboutDialog.qml:180
  3907. msgctxt "@label Description for development tool"
  3908. msgid "Generating Windows installers"
  3909. msgstr "Windows 설치 관리자 생성 중"
  3910. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3911. msgctxt "@title:window"
  3912. msgid "Open project file"
  3913. msgstr "프로젝트 파일 열기"
  3914. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  3915. msgctxt "@text:window"
  3916. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3917. msgstr "이 파일은 Cura 프로젝트 파일입니다. 프로젝트로 열거나 모델을 가져 오시겠습니까?"
  3918. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3919. msgctxt "@text:window"
  3920. msgid "Remember my choice"
  3921. msgstr "선택 기억하기"
  3922. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3923. msgctxt "@action:button"
  3924. msgid "Open as project"
  3925. msgstr "프로젝트로 열기"
  3926. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3927. msgctxt "@action:button"
  3928. msgid "Import models"
  3929. msgstr "모델 가져 오기"
  3930. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  3931. msgctxt "@title:window"
  3932. msgid "Select Printer"
  3933. msgstr "프린터 선택"
  3934. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  3935. msgctxt "@title:label"
  3936. msgid "Compatible Printers"
  3937. msgstr "호환 가능한 프린터"
  3938. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:110
  3939. msgctxt "@description"
  3940. msgid "No compatible printers, that are currently online, were found."
  3941. msgstr "현재 온라인 상태인 호환 가능 프린터를 찾을 수 없습니다."
  3942. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  3943. msgctxt "@title:window"
  3944. msgid "Discard or Keep changes"
  3945. msgstr "변경 사항 삭제 또는 유지"
  3946. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64
  3947. msgctxt "@text:window, %1 is a profile name"
  3948. 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'."
  3949. msgstr ""
  3950. "일부 프로파일 설정을 사용자 정의했습니다.\n"
  3951. "프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n"
  3952. "또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다."
  3953. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90
  3954. msgctxt "@title:column"
  3955. msgid "Profile settings"
  3956. msgstr "프로파일 설정"
  3957. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92
  3958. msgctxt "@title:column"
  3959. msgid "Current changes"
  3960. msgstr "현재 변경 사항"
  3961. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  3962. #: resources/qml/Preferences/GeneralPage.qml:820
  3963. msgctxt "@option:discardOrKeep"
  3964. msgid "Always ask me this"
  3965. msgstr "항상 묻기"
  3966. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3967. msgctxt "@option:discardOrKeep"
  3968. msgid "Discard and never ask again"
  3969. msgstr "최소하고 다시 묻지않기"
  3970. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3971. msgctxt "@option:discardOrKeep"
  3972. msgid "Keep and never ask again"
  3973. msgstr "계속하고 다시 묻지않기"
  3974. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  3975. msgctxt "@action:button"
  3976. msgid "Discard changes"
  3977. msgstr "변경 사항 삭제"
  3978. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164
  3979. msgctxt "@action:button"
  3980. msgid "Keep changes"
  3981. msgstr "변경 사항 유지"
  3982. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171
  3983. msgctxt "@action:button"
  3984. msgid "Save as new custom profile"
  3985. msgstr "새 사용자 지정 프로필로 저장"
  3986. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178
  3987. msgctxt "@action:button"
  3988. msgid "Save changes"
  3989. msgstr "변경 사항 저장"
  3990. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  3991. msgctxt "@text:window"
  3992. 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?"
  3993. msgstr "선택한 파일 내에 하나 이상의 프로젝트 파일이 있습니다. 한 번에 하나의 프로젝트 파일 만 열 수 있습니다. 해당 파일에서 모델 만 가져 오기를 권장합니다. 계속 하시겠습니까?"
  3994. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3995. msgctxt "@action:button"
  3996. msgid "Import all as models"
  3997. msgstr "모두 모델로 가져 오기"
  3998. #: resources/qml/Dialogs/RenameDialog.qml:23
  3999. msgctxt "@title:window"
  4000. msgid "Rename"
  4001. msgstr "이름 바꾸기"
  4002. #: resources/qml/Dialogs/RenameDialog.qml:24
  4003. msgctxt "@info"
  4004. msgid "Please provide a new name."
  4005. msgstr "새 이름을 입력하십시오."
  4006. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4007. msgctxt "@title:window"
  4008. msgid "Save Project"
  4009. msgstr "프로젝트 저장"
  4010. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4011. msgctxt "@action:label"
  4012. msgid "Extruder %1"
  4013. msgstr "%1익스트루더"
  4014. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4015. msgctxt "@action:label"
  4016. msgid "%1 & material"
  4017. msgstr "%1 & 재료"
  4018. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4019. msgctxt "@action:label"
  4020. msgid "Material"
  4021. msgstr "재료"
  4022. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4023. msgctxt "@action:label"
  4024. msgid "Don't show project summary on save again"
  4025. msgstr "프로젝트 요약을 다시 저장하지 마십시오"
  4026. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4027. msgctxt "@action:button"
  4028. msgid "Save"
  4029. msgstr "저장"
  4030. #: resources/qml/JobSpecs.qml:93
  4031. msgctxt "@text Print job name"
  4032. msgid "Untitled"
  4033. msgstr "제목 없음"
  4034. #: resources/qml/MainWindow/ApplicationMenu.qml:63
  4035. #: resources/qml/Menus/SettingsMenu.qml:13
  4036. msgctxt "@title:menu menubar:toplevel"
  4037. msgid "&Settings"
  4038. msgstr "설정"
  4039. #: resources/qml/MainWindow/ApplicationMenu.qml:87
  4040. msgctxt "@title:window"
  4041. msgid "New project"
  4042. msgstr "새 프로젝트"
  4043. #: resources/qml/MainWindow/ApplicationMenu.qml:88
  4044. msgctxt "@info:question"
  4045. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4046. msgstr "새 프로젝트를 시작 하시겠습니까? 빌드 플레이트 및 저장하지 않은 설정이 지워집니다."
  4047. #: resources/qml/MainWindow/MainWindowHeader.qml:135
  4048. msgctxt "@action:button"
  4049. msgid "Marketplace"
  4050. msgstr "시장"
  4051. #: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4052. msgctxt "@header"
  4053. msgid "Configurations"
  4054. msgstr "구성"
  4055. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4056. msgctxt "@label"
  4057. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4058. msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없습니다. %2에 방문하여 올바른 재료 프로파일을 다운로드하십시오."
  4059. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4060. msgctxt "@label"
  4061. msgid "Marketplace"
  4062. msgstr "시장"
  4063. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4064. msgctxt "@label"
  4065. msgid "Loading available configurations from the printer..."
  4066. msgstr "프린터에서 사용 가능한 구성 로딩 중..."
  4067. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4068. msgctxt "@label"
  4069. msgid "The configurations are not available because the printer is disconnected."
  4070. msgstr "프린터가 연결되어 있지 않기 때문에 구성을 사용할 수 없습니다."
  4071. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4072. msgctxt "@tooltip"
  4073. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4074. msgstr "이 익스트루더의 구성이 허용되지 않았으며, 슬라이싱이 금지됩니다."
  4075. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4076. msgctxt "@tooltip"
  4077. msgid "There are no profiles matching the configuration of this extruder."
  4078. msgstr "이 익스트루더 구성에 일치하는 프로파일이 없습니다."
  4079. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4080. msgctxt "@label"
  4081. msgid "Select configuration"
  4082. msgstr "구성 선택"
  4083. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4084. msgctxt "@label"
  4085. msgid "Configurations"
  4086. msgstr "구성"
  4087. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4088. msgctxt "@header"
  4089. msgid "Custom"
  4090. msgstr "사용자 정의"
  4091. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4092. msgctxt "@label"
  4093. msgid "Enabled"
  4094. msgstr "실행됨"
  4095. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4096. msgctxt "@label"
  4097. msgid "Material"
  4098. msgstr "재료"
  4099. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4100. msgctxt "@label"
  4101. msgid "Use glue for better adhesion with this material combination."
  4102. msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.."
  4103. #: resources/qml/Menus/ContextMenu.qml:29
  4104. msgctxt "@label"
  4105. msgid "Print Selected Model With:"
  4106. msgid_plural "Print Selected Models With:"
  4107. msgstr[0] "선택된 모델 프린팅 :"
  4108. #: resources/qml/Menus/ContextMenu.qml:92
  4109. msgctxt "@title:window"
  4110. msgid "Multiply Selected Model"
  4111. msgid_plural "Multiply Selected Models"
  4112. msgstr[0] "선택한 모델 복"
  4113. #: resources/qml/Menus/ContextMenu.qml:123
  4114. msgctxt "@label"
  4115. msgid "Number of Copies"
  4116. msgstr "복제할 수"
  4117. #: resources/qml/Menus/EditMenu.qml:12
  4118. msgctxt "@title:menu menubar:toplevel"
  4119. msgid "&Edit"
  4120. msgstr "편집(&E)"
  4121. #: resources/qml/Menus/ExtensionMenu.qml:13
  4122. msgctxt "@title:menu menubar:toplevel"
  4123. msgid "E&xtensions"
  4124. msgstr "확장 프로그램(&X)"
  4125. #: resources/qml/Menus/FileMenu.qml:13
  4126. msgctxt "@title:menu menubar:toplevel"
  4127. msgid "&File"
  4128. msgstr "파일"
  4129. #: resources/qml/Menus/FileMenu.qml:45
  4130. msgctxt "@title:menu menubar:file"
  4131. msgid "&Save Project..."
  4132. msgstr "프로젝트 저장(&S)..."
  4133. #: resources/qml/Menus/FileMenu.qml:78
  4134. msgctxt "@title:menu menubar:file"
  4135. msgid "&Export..."
  4136. msgstr "내보내기(&E)..."
  4137. #: resources/qml/Menus/FileMenu.qml:89
  4138. msgctxt "@action:inmenu menubar:file"
  4139. msgid "Export Selection..."
  4140. msgstr "내보내기 선택..."
  4141. #: resources/qml/Menus/HelpMenu.qml:14
  4142. msgctxt "@title:menu menubar:toplevel"
  4143. msgid "&Help"
  4144. msgstr "도움말(&H)"
  4145. #: resources/qml/Menus/MaterialMenu.qml:13
  4146. msgctxt "@label:category menu label"
  4147. msgid "Material"
  4148. msgstr "재료"
  4149. #: resources/qml/Menus/MaterialMenu.qml:53
  4150. msgctxt "@label:category menu label"
  4151. msgid "Favorites"
  4152. msgstr "즐겨찾기"
  4153. #: resources/qml/Menus/MaterialMenu.qml:78
  4154. msgctxt "@label:category menu label"
  4155. msgid "Generic"
  4156. msgstr "일반"
  4157. #: resources/qml/Menus/OpenFilesMenu.qml:15
  4158. msgctxt "@title:menu menubar:file"
  4159. msgid "Open File(s)..."
  4160. msgstr "파일 여는 중..."
  4161. #: resources/qml/Menus/PreferencesMenu.qml:21
  4162. msgctxt "@title:menu menubar:toplevel"
  4163. msgid "P&references"
  4164. msgstr "환경설정(&R)"
  4165. #: resources/qml/Menus/PrinterMenu.qml:13
  4166. msgctxt "@title:menu menubar:settings"
  4167. msgid "&Printer"
  4168. msgstr "프린터(&P)"
  4169. #: resources/qml/Menus/PrinterMenu.qml:17
  4170. msgctxt "@label:category menu label"
  4171. msgid "Network enabled printers"
  4172. msgstr "네트워크 프린터"
  4173. #: resources/qml/Menus/PrinterMenu.qml:50
  4174. msgctxt "@label:category menu label"
  4175. msgid "Local printers"
  4176. msgstr "로컬 프린터"
  4177. #: resources/qml/Menus/RecentFilesMenu.qml:15
  4178. msgctxt "@title:menu menubar:file"
  4179. msgid "Open &Recent"
  4180. msgstr "최근 열어본 파일 열기"
  4181. #: resources/qml/Menus/SaveProjectMenu.qml:15
  4182. msgctxt "@title:menu menubar:file"
  4183. msgid "Save Project..."
  4184. msgstr "프로젝트 저장 중..."
  4185. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4186. msgctxt "@action:inmenu"
  4187. msgid "Visible Settings"
  4188. msgstr "표시 설정"
  4189. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4190. msgctxt "@action:inmenu"
  4191. msgid "Collapse All Categories"
  4192. msgstr "모든 카테고리 붕괴"
  4193. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4194. msgctxt "@action:inmenu"
  4195. msgid "Manage Setting Visibility..."
  4196. msgstr "보기 설정 관리..."
  4197. #: resources/qml/Menus/SettingsMenu.qml:34
  4198. msgctxt "@title:menu"
  4199. msgid "&Material"
  4200. msgstr "재료(&M)"
  4201. #: resources/qml/Menus/SettingsMenu.qml:49
  4202. msgctxt "@action:inmenu"
  4203. msgid "Set as Active Extruder"
  4204. msgstr "활성 익스트루더로 설정"
  4205. #: resources/qml/Menus/SettingsMenu.qml:55
  4206. msgctxt "@action:inmenu"
  4207. msgid "Enable Extruder"
  4208. msgstr "익스트루더 사용"
  4209. #: resources/qml/Menus/SettingsMenu.qml:63
  4210. msgctxt "@action:inmenu"
  4211. msgid "Disable Extruder"
  4212. msgstr "익스트루더 사용하지 않음"
  4213. #: resources/qml/Menus/ViewMenu.qml:13
  4214. msgctxt "@title:menu menubar:toplevel"
  4215. msgid "&View"
  4216. msgstr "보기(&V)"
  4217. #: resources/qml/Menus/ViewMenu.qml:17
  4218. msgctxt "@action:inmenu menubar:view"
  4219. msgid "&Camera position"
  4220. msgstr "카메라 위치(&C)"
  4221. #: resources/qml/Menus/ViewMenu.qml:30
  4222. msgctxt "@action:inmenu menubar:view"
  4223. msgid "Camera view"
  4224. msgstr "카메라 뷰"
  4225. #: resources/qml/Menus/ViewMenu.qml:48
  4226. msgctxt "@action:inmenu menubar:view"
  4227. msgid "Perspective"
  4228. msgstr "원근"
  4229. #: resources/qml/Menus/ViewMenu.qml:59
  4230. msgctxt "@action:inmenu menubar:view"
  4231. msgid "Orthographic"
  4232. msgstr "직교"
  4233. #: resources/qml/MonitorButton.qml:115
  4234. msgctxt "@label:MonitorStatus"
  4235. msgid "Not connected to a printer"
  4236. msgstr "프린터에 연결되지 않음"
  4237. #: resources/qml/MonitorButton.qml:119
  4238. msgctxt "@label:MonitorStatus"
  4239. msgid "Printer does not accept commands"
  4240. msgstr "프린터가 명령을 받아들이지 않습니다"
  4241. #: resources/qml/MonitorButton.qml:129
  4242. msgctxt "@label:MonitorStatus"
  4243. msgid "In maintenance. Please check the printer"
  4244. msgstr "유지 보수 중. 프린터를 확인하십시오"
  4245. #: resources/qml/MonitorButton.qml:140
  4246. msgctxt "@label:MonitorStatus"
  4247. msgid "Lost connection with the printer"
  4248. msgstr "프린터와의 연결이 끊어졌습니다"
  4249. #: resources/qml/MonitorButton.qml:142
  4250. msgctxt "@label:MonitorStatus"
  4251. msgid "Printing..."
  4252. msgstr "프린팅..."
  4253. #: resources/qml/MonitorButton.qml:145
  4254. msgctxt "@label:MonitorStatus"
  4255. msgid "Paused"
  4256. msgstr "일시 중지됨"
  4257. #: resources/qml/MonitorButton.qml:148
  4258. msgctxt "@label:MonitorStatus"
  4259. msgid "Preparing..."
  4260. msgstr "준비 중..."
  4261. #: resources/qml/MonitorButton.qml:150
  4262. msgctxt "@label:MonitorStatus"
  4263. msgid "Please remove the print"
  4264. msgstr "프린트물을 제거하십시오"
  4265. #: resources/qml/MonitorButton.qml:318
  4266. msgctxt "@label"
  4267. msgid "Abort Print"
  4268. msgstr "프린팅 중단"
  4269. #: resources/qml/MonitorButton.qml:327
  4270. msgctxt "@label"
  4271. msgid "Are you sure you want to abort the print?"
  4272. msgstr "프린팅를 중단 하시겠습니까?"
  4273. #: resources/qml/ObjectItemButton.qml:109
  4274. msgctxt "@label"
  4275. msgid "Is printed as support."
  4276. msgstr "지원으로 프린팅됩니다."
  4277. #: resources/qml/ObjectItemButton.qml:112
  4278. msgctxt "@label"
  4279. msgid "Other models overlapping with this model are modified."
  4280. msgstr "이 모델과 중복되는 다른 모델은 수정됩니다."
  4281. #: resources/qml/ObjectItemButton.qml:115
  4282. msgctxt "@label"
  4283. msgid "Infill overlapping with this model is modified."
  4284. msgstr "이 모델과 중복되는 내부채움은 수정됩니다."
  4285. #: resources/qml/ObjectItemButton.qml:118
  4286. msgctxt "@label"
  4287. msgid "Overlaps with this model are not supported."
  4288. msgstr "이 모델과의 중복은 지원되지 않습니다."
  4289. #: resources/qml/ObjectItemButton.qml:125
  4290. msgctxt "@label %1 is the number of settings it overrides."
  4291. msgid "Overrides %1 setting."
  4292. msgid_plural "Overrides %1 settings."
  4293. msgstr[0] "%1 설정을 덮어씁니다."
  4294. #: resources/qml/ObjectSelector.qml:59
  4295. msgctxt "@label"
  4296. msgid "Object list"
  4297. msgstr "개체 목록"
  4298. #: resources/qml/Preferences/GeneralPage.qml:134
  4299. #: resources/qml/Preferences/SettingVisibilityPage.qml:24
  4300. msgctxt "@action:button"
  4301. msgid "Defaults"
  4302. msgstr "기본값"
  4303. #: resources/qml/Preferences/GeneralPage.qml:172
  4304. msgctxt "@label"
  4305. msgid "Interface"
  4306. msgstr "인터페이스"
  4307. #: resources/qml/Preferences/GeneralPage.qml:215
  4308. msgctxt "@heading"
  4309. msgid "-- incomplete --"
  4310. msgstr "-- 미완료 --"
  4311. #: resources/qml/Preferences/GeneralPage.qml:261
  4312. msgctxt "@label"
  4313. msgid "Currency:"
  4314. msgstr "통화:"
  4315. #: resources/qml/Preferences/GeneralPage.qml:277
  4316. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4317. msgid "Theme*:"
  4318. msgstr "테마*:"
  4319. #: resources/qml/Preferences/GeneralPage.qml:323
  4320. msgctxt "@info:tooltip"
  4321. msgid "Slice automatically when changing settings."
  4322. msgstr "설정이 변경되면 자동으로 슬라이싱 합니다."
  4323. #: resources/qml/Preferences/GeneralPage.qml:331
  4324. msgctxt "@option:check"
  4325. msgid "Slice automatically"
  4326. msgstr "자동으로 슬라이싱"
  4327. #: resources/qml/Preferences/GeneralPage.qml:340
  4328. msgctxt "@info:tooltip"
  4329. msgid "Show an icon and notifications in the system notification area."
  4330. msgstr "시스템 알림 영역에 아이콘과 알림을 표시합니다."
  4331. #: resources/qml/Preferences/GeneralPage.qml:348
  4332. msgctxt "@option:check"
  4333. msgid "Add icon to system tray *"
  4334. msgstr "시스템 트레이에 아이콘 추가 *"
  4335. #: resources/qml/Preferences/GeneralPage.qml:357
  4336. msgctxt "@label"
  4337. msgid "*You will need to restart the application for these changes to have effect."
  4338. msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재시작해야 합니다."
  4339. #: resources/qml/Preferences/GeneralPage.qml:373
  4340. msgctxt "@label"
  4341. msgid "Viewport behavior"
  4342. msgstr "뷰포트 동작"
  4343. #: resources/qml/Preferences/GeneralPage.qml:381
  4344. msgctxt "@info:tooltip"
  4345. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  4346. msgstr "지원되지 않는 모델 영역을 빨간색으로 강조 표시하십시오. 서포트가 없으면 이 영역이 제대로 프린팅되지 않습니다."
  4347. #: resources/qml/Preferences/GeneralPage.qml:390
  4348. msgctxt "@option:check"
  4349. msgid "Display overhang"
  4350. msgstr "오버행 표시"
  4351. #: resources/qml/Preferences/GeneralPage.qml:400
  4352. msgctxt "@info:tooltip"
  4353. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  4354. msgstr "경고 기호를 사용해 모델에서 누락되거나 관계 없는 표면을 강조 표시합니다. 도구 경로에서는 종종 의도한 형상의 일부가 누락됩니다."
  4355. #: resources/qml/Preferences/GeneralPage.qml:409
  4356. msgctxt "@option:check"
  4357. msgid "Display model errors"
  4358. msgstr "모델 오류 표시"
  4359. #: resources/qml/Preferences/GeneralPage.qml:417
  4360. msgctxt "@info:tooltip"
  4361. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  4362. msgstr "모델을 선택하면 모델이 뷰의 가운데에 오도록 카메라를 이동합니다"
  4363. #: resources/qml/Preferences/GeneralPage.qml:422
  4364. msgctxt "@action:button"
  4365. msgid "Center camera when item is selected"
  4366. msgstr "항목을 선택하면 카메라를 중앙에 위치"
  4367. #: resources/qml/Preferences/GeneralPage.qml:432
  4368. msgctxt "@info:tooltip"
  4369. msgid "Should the default zoom behavior of cura be inverted?"
  4370. msgstr "큐라의 기본 확대 동작을 반전시켜야 합니까?"
  4371. #: resources/qml/Preferences/GeneralPage.qml:437
  4372. msgctxt "@action:button"
  4373. msgid "Invert the direction of camera zoom."
  4374. msgstr "카메라 줌의 방향을 반전시키기."
  4375. #: resources/qml/Preferences/GeneralPage.qml:453
  4376. msgctxt "@info:tooltip"
  4377. msgid "Should zooming move in the direction of the mouse?"
  4378. msgstr "확대가 마우스 방향으로 이동해야 합니까?"
  4379. #: resources/qml/Preferences/GeneralPage.qml:453
  4380. msgctxt "@info:tooltip"
  4381. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4382. msgstr "정투영법 시점에서는 마우스 방향으로 확대가 지원되지 않습니다."
  4383. #: resources/qml/Preferences/GeneralPage.qml:458
  4384. msgctxt "@action:button"
  4385. msgid "Zoom toward mouse direction"
  4386. msgstr "마우스 방향으로 확대"
  4387. #: resources/qml/Preferences/GeneralPage.qml:484
  4388. msgctxt "@info:tooltip"
  4389. msgid "Should models on the platform be moved so that they no longer intersect?"
  4390. msgstr "모델을 더 이상 교차시키지 않도록 이동해야합니까?"
  4391. #: resources/qml/Preferences/GeneralPage.qml:489
  4392. msgctxt "@option:check"
  4393. msgid "Ensure models are kept apart"
  4394. msgstr "모델이 분리되어 있는지 확인"
  4395. #: resources/qml/Preferences/GeneralPage.qml:498
  4396. msgctxt "@info:tooltip"
  4397. msgid "Should models on the platform be moved down to touch the build plate?"
  4398. msgstr "모델을 빌드 플레이트에 닿도록 아래로 움직여야합니까?"
  4399. #: resources/qml/Preferences/GeneralPage.qml:503
  4400. msgctxt "@option:check"
  4401. msgid "Automatically drop models to the build plate"
  4402. msgstr "모델을 빌드 플레이트에 자동으로 놓기"
  4403. #: resources/qml/Preferences/GeneralPage.qml:515
  4404. msgctxt "@info:tooltip"
  4405. msgid "Show caution message in g-code reader."
  4406. msgstr "g-code 리더에 주의 메시지를 표시하기."
  4407. #: resources/qml/Preferences/GeneralPage.qml:524
  4408. msgctxt "@option:check"
  4409. msgid "Caution message in g-code reader"
  4410. msgstr "g-code 리더의 주의 메시지"
  4411. #: resources/qml/Preferences/GeneralPage.qml:532
  4412. msgctxt "@info:tooltip"
  4413. msgid "Should layer be forced into compatibility mode?"
  4414. msgstr "레이어가 호환 모드로 강제 설정되어야합니까?"
  4415. #: resources/qml/Preferences/GeneralPage.qml:537
  4416. msgctxt "@option:check"
  4417. msgid "Force layer view compatibility mode (restart required)"
  4418. msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)"
  4419. #: resources/qml/Preferences/GeneralPage.qml:547
  4420. msgctxt "@info:tooltip"
  4421. msgid "Should Cura open at the location it was closed?"
  4422. msgstr "닫힌 위치에서 Cura를 열어야 합니까?"
  4423. #: resources/qml/Preferences/GeneralPage.qml:552
  4424. msgctxt "@option:check"
  4425. msgid "Restore window position on start"
  4426. msgstr "시작 시 창 위치 복원"
  4427. #: resources/qml/Preferences/GeneralPage.qml:562
  4428. msgctxt "@info:tooltip"
  4429. msgid "What type of camera rendering should be used?"
  4430. msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?"
  4431. #: resources/qml/Preferences/GeneralPage.qml:569
  4432. msgctxt "@window:text"
  4433. msgid "Camera rendering:"
  4434. msgstr "카메라 렌더링:"
  4435. #: resources/qml/Preferences/GeneralPage.qml:576
  4436. msgid "Perspective"
  4437. msgstr "원근"
  4438. #: resources/qml/Preferences/GeneralPage.qml:577
  4439. msgid "Orthographic"
  4440. msgstr "정투영"
  4441. #: resources/qml/Preferences/GeneralPage.qml:617
  4442. msgctxt "@label"
  4443. msgid "Opening and saving files"
  4444. msgstr "파일 열기 및 저장"
  4445. #: resources/qml/Preferences/GeneralPage.qml:624
  4446. msgctxt "@info:tooltip"
  4447. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4448. msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?"
  4449. #: resources/qml/Preferences/GeneralPage.qml:629
  4450. msgctxt "@option:check"
  4451. msgid "Use a single instance of Cura"
  4452. msgstr "Cura의 단일 인스턴스 사용"
  4453. #: resources/qml/Preferences/GeneralPage.qml:640
  4454. msgctxt "@info:tooltip"
  4455. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4456. msgstr "Cura의 단일 인스턴스에서 새 모델을 로드하기 전에 빌드 플레이트를 지워야 합니까?"
  4457. #: resources/qml/Preferences/GeneralPage.qml:646
  4458. msgctxt "@option:check"
  4459. msgid "Clear buildplate before loading model into the single instance"
  4460. msgstr "모델을 단일 인스턴스로 로드하기 전에 빌드 플레이트 지우기"
  4461. #: resources/qml/Preferences/GeneralPage.qml:656
  4462. msgctxt "@info:tooltip"
  4463. msgid "Should models be scaled to the build volume if they are too large?"
  4464. msgstr "크기가 너무 큰 경우 모델을 빌드 볼륨에 맞게 조정해야합니까?"
  4465. #: resources/qml/Preferences/GeneralPage.qml:661
  4466. msgctxt "@option:check"
  4467. msgid "Scale large models"
  4468. msgstr "큰 모델의 사이즈 수정"
  4469. #: resources/qml/Preferences/GeneralPage.qml:671
  4470. msgctxt "@info:tooltip"
  4471. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4472. msgstr "단위가 밀리미터가 아닌 미터 단위 인 경우 모델이 매우 작게 나타날 수 있습니다. 이 모델을 확대할까요?"
  4473. #: resources/qml/Preferences/GeneralPage.qml:676
  4474. msgctxt "@option:check"
  4475. msgid "Scale extremely small models"
  4476. msgstr "매우 작은 모델의 크기 조정"
  4477. #: resources/qml/Preferences/GeneralPage.qml:686
  4478. msgctxt "@info:tooltip"
  4479. msgid "Should models be selected after they are loaded?"
  4480. msgstr "모델을 로드한 후에 선택해야 합니까?"
  4481. #: resources/qml/Preferences/GeneralPage.qml:691
  4482. msgctxt "@option:check"
  4483. msgid "Select models when loaded"
  4484. msgstr "로드된 경우 모델 선택"
  4485. #: resources/qml/Preferences/GeneralPage.qml:701
  4486. msgctxt "@info:tooltip"
  4487. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4488. msgstr "프린터 이름에 기반한 접두어가 프린팅 작업 이름에 자동으로 추가되어야합니까?"
  4489. #: resources/qml/Preferences/GeneralPage.qml:706
  4490. msgctxt "@option:check"
  4491. msgid "Add machine prefix to job name"
  4492. msgstr "작업 이름에 기기 접두어 추가"
  4493. #: resources/qml/Preferences/GeneralPage.qml:716
  4494. msgctxt "@info:tooltip"
  4495. msgid "Should a summary be shown when saving a project file?"
  4496. msgstr "프로젝트 파일을 저장할 때 요약이 표시되어야합니까?"
  4497. #: resources/qml/Preferences/GeneralPage.qml:720
  4498. msgctxt "@option:check"
  4499. msgid "Show summary dialog when saving project"
  4500. msgstr "프로젝트 저장시 요약 대화 상자 표시"
  4501. #: resources/qml/Preferences/GeneralPage.qml:730
  4502. msgctxt "@info:tooltip"
  4503. msgid "Default behavior when opening a project file"
  4504. msgstr "프로젝트 파일을 열 때 기본 동작"
  4505. #: resources/qml/Preferences/GeneralPage.qml:738
  4506. msgctxt "@window:text"
  4507. msgid "Default behavior when opening a project file: "
  4508. msgstr "프로젝트 파일을 열 때 기본 동작 "
  4509. #: resources/qml/Preferences/GeneralPage.qml:753
  4510. msgctxt "@option:openProject"
  4511. msgid "Always ask me this"
  4512. msgstr "항상 묻기"
  4513. #: resources/qml/Preferences/GeneralPage.qml:754
  4514. msgctxt "@option:openProject"
  4515. msgid "Always open as a project"
  4516. msgstr "항상 프로젝트로 열기"
  4517. #: resources/qml/Preferences/GeneralPage.qml:755
  4518. msgctxt "@option:openProject"
  4519. msgid "Always import models"
  4520. msgstr "항상 모델 가져 오기"
  4521. #: resources/qml/Preferences/GeneralPage.qml:792
  4522. msgctxt "@info:tooltip"
  4523. 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."
  4524. msgstr "프로파일을 변경하고 다른 프로파일로 전환하면 수정 사항을 유지할지 여부를 묻는 대화 상자가 표시됩니다. 기본 행동을 선택하면 해당 대화 상자를 다시 표시 하지 않을 수 있습니다."
  4525. #: resources/qml/Preferences/GeneralPage.qml:801
  4526. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46
  4527. msgctxt "@label"
  4528. msgid "Profiles"
  4529. msgstr "프로파일"
  4530. #: resources/qml/Preferences/GeneralPage.qml:806
  4531. msgctxt "@window:text"
  4532. msgid "Default behavior for changed setting values when switching to a different profile: "
  4533. msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 "
  4534. #: resources/qml/Preferences/GeneralPage.qml:821
  4535. msgctxt "@option:discardOrKeep"
  4536. msgid "Always discard changed settings"
  4537. msgstr "항상 변경된 설정 삭제"
  4538. #: resources/qml/Preferences/GeneralPage.qml:822
  4539. msgctxt "@option:discardOrKeep"
  4540. msgid "Always transfer changed settings to new profile"
  4541. msgstr "항상 변경된 설정을 새 프로파일로 전송"
  4542. #: resources/qml/Preferences/GeneralPage.qml:856
  4543. msgctxt "@label"
  4544. msgid "Privacy"
  4545. msgstr "보안"
  4546. #: resources/qml/Preferences/GeneralPage.qml:862
  4547. msgctxt "@info:tooltip"
  4548. 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."
  4549. msgstr "프린터에 대한 익명의 데이터를 UltiMaker로 보낼까요? 모델, IP 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다."
  4550. #: resources/qml/Preferences/GeneralPage.qml:867
  4551. msgctxt "@option:check"
  4552. msgid "Send (anonymous) print information"
  4553. msgstr "(익명) 프린터 정보 보내기"
  4554. #: resources/qml/Preferences/GeneralPage.qml:897
  4555. msgctxt "@label"
  4556. msgid "Updates"
  4557. msgstr "업데이트"
  4558. #: resources/qml/Preferences/GeneralPage.qml:904
  4559. msgctxt "@info:tooltip"
  4560. msgid "Should Cura check for updates when the program is started?"
  4561. msgstr "Cura가 프로그램이 시작될 때 업데이트를 확인할까요?"
  4562. #: resources/qml/Preferences/GeneralPage.qml:909
  4563. msgctxt "@option:check"
  4564. msgid "Check for updates on start"
  4565. msgstr "시작시 업데이트 확인"
  4566. #: resources/qml/Preferences/GeneralPage.qml:925
  4567. msgctxt "@info:tooltip"
  4568. msgid "When checking for updates, only check for stable releases."
  4569. msgstr "업데이트 사항을 확인할 때 안정적인 릴리즈만 확인하십시오."
  4570. #: resources/qml/Preferences/GeneralPage.qml:931
  4571. msgctxt "@option:radio"
  4572. msgid "Stable releases only"
  4573. msgstr "안정적인 릴리즈만 해당"
  4574. #: resources/qml/Preferences/GeneralPage.qml:941
  4575. msgctxt "@info:tooltip"
  4576. msgid "When checking for updates, check for both stable and for beta releases."
  4577. msgstr "업데이트 사항을 확인할 때 안정적인 베타 릴리즈를 확인하십시오."
  4578. #: resources/qml/Preferences/GeneralPage.qml:947
  4579. msgctxt "@option:radio"
  4580. msgid "Stable and Beta releases"
  4581. msgstr "안정적인 베타 릴리즈"
  4582. #: resources/qml/Preferences/GeneralPage.qml:957
  4583. msgctxt "@info:tooltip"
  4584. 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!"
  4585. msgstr "Cura가 시작될 때마다 새로운 플러그인을 자동 확인해야 합니까? 사용 안 함으로 설정하지 않는 것이 좋습니다!"
  4586. #: resources/qml/Preferences/GeneralPage.qml:962
  4587. msgctxt "@option:check"
  4588. msgid "Get notifications for plugin updates"
  4589. msgstr "플러그인 업데이트 알림 받기"
  4590. #: resources/qml/Preferences/MachinesPage.qml:50
  4591. msgctxt "@action:button"
  4592. msgid "Add New"
  4593. msgstr "새로 추가"
  4594. #: resources/qml/Preferences/MachinesPage.qml:147
  4595. #: resources/qml/Preferences/Materials/MaterialsPage.qml:160
  4596. #: resources/qml/Preferences/ProfilesPage.qml:294
  4597. msgctxt "@action:button"
  4598. msgid "Activate"
  4599. msgstr "활성화"
  4600. #: resources/qml/Preferences/MachinesPage.qml:159
  4601. #: resources/qml/Preferences/ProfilesPage.qml:331
  4602. msgctxt "@action:button"
  4603. msgid "Rename"
  4604. msgstr "이름 바꾸기"
  4605. #: resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4606. msgctxt "@label"
  4607. msgid "Materials compatible with active printer:"
  4608. msgstr "활성화된 프린터와 호환되는 재료:"
  4609. #: resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4610. #: resources/qml/Preferences/ProfilesPage.qml:94
  4611. msgctxt "@action:button"
  4612. msgid "Create new"
  4613. msgstr "새로 만들기"
  4614. #: resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4615. #: resources/qml/Preferences/ProfilesPage.qml:88
  4616. msgctxt "@action:button"
  4617. msgid "Import"
  4618. msgstr "가져오기"
  4619. #: resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4620. msgctxt "@action:button"
  4621. msgid "Sync with Printers"
  4622. msgstr "프린터와 동기화"
  4623. #: resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4624. #: resources/qml/Preferences/ProfilesPage.qml:311
  4625. msgctxt "@action:button"
  4626. msgid "Duplicate"
  4627. msgstr "복제"
  4628. #: resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4629. #: resources/qml/Preferences/ProfilesPage.qml:342
  4630. msgctxt "@action:button"
  4631. msgid "Export"
  4632. msgstr "내보내기"
  4633. #: resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4634. #: resources/qml/Preferences/ProfilesPage.qml:392
  4635. msgctxt "@title:window"
  4636. msgid "Confirm Remove"
  4637. msgstr "제거 확인"
  4638. #: resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4639. #: resources/qml/Preferences/ProfilesPage.qml:393
  4640. msgctxt "@label (%1 is object name)"
  4641. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4642. msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!"
  4643. #: resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4644. #: resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4645. msgctxt "@title:window"
  4646. msgid "Import Material"
  4647. msgstr "재료 가져 오기"
  4648. #: resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4649. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4650. msgid "Successfully imported material <filename>%1</filename>"
  4651. msgstr "재료를 성공적으로 가져왔습니다"
  4652. #: resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4653. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4654. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4655. msgstr "재료를 가져올 수 없습니다"
  4656. #: resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4657. #: resources/qml/Preferences/Materials/MaterialsPage.qml:267
  4658. msgctxt "@title:window"
  4659. msgid "Export Material"
  4660. msgstr "재료 내보내기"
  4661. #: resources/qml/Preferences/Materials/MaterialsPage.qml:272
  4662. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4663. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4664. msgstr "재료를 내보내는데 실패했습니다"
  4665. #: resources/qml/Preferences/Materials/MaterialsPage.qml:275
  4666. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4667. msgid "Successfully exported material to <filename>%1</filename>"
  4668. msgstr "재료를 성공적으로 내보냈습니다"
  4669. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  4670. msgctxt "@title:window"
  4671. msgid "Sync materials with printers"
  4672. msgstr "재료를 프린터와 동기화"
  4673. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  4674. msgctxt "@title:header"
  4675. msgid "Sync materials with printers"
  4676. msgstr "재료를 프린터와 동기화"
  4677. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  4678. msgctxt "@text"
  4679. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4680. msgstr "몇 가지 간단한 단계를 수행하면 모든 재료 프로파일과 프린터를 동기화할 수 있습니다."
  4681. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4682. msgctxt "@button"
  4683. msgid "Why do I need to sync material profiles?"
  4684. msgstr "재료 프로파일을 동기화해야 하는 이유는 무엇입니까?"
  4685. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  4686. msgctxt "@button"
  4687. msgid "Start"
  4688. msgstr "시작"
  4689. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  4690. msgctxt "@title:header"
  4691. msgid "Sign in"
  4692. msgstr "로그인"
  4693. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  4694. msgctxt "@text"
  4695. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4696. msgstr "Digital Factory에 연결된 모든 프린터와 자동으로 재료 프로파일을 동기화하려면 Cura에 가입되어 있어야 합니다."
  4697. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  4698. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  4699. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  4700. msgctxt "@button"
  4701. msgid "Sync materials with USB"
  4702. msgstr "재료를 USB로 동기화"
  4703. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4704. msgctxt "@title:header"
  4705. msgid "The following printers will receive the new material profiles:"
  4706. msgstr ""
  4707. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4708. msgctxt "@title:header"
  4709. msgid "Something went wrong when sending the materials to the printers."
  4710. msgstr "재료를 프린터로 전송할 때 어떤 문제가 발생했습니다."
  4711. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  4712. msgctxt "@title:header"
  4713. msgid "Material profiles successfully synced with the following printers:"
  4714. msgstr ""
  4715. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  4716. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  4717. msgctxt "@button"
  4718. msgid "Troubleshooting"
  4719. msgstr "문제 해결"
  4720. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  4721. msgctxt "@text Asking the user whether printers are missing in a list."
  4722. msgid "Printers missing?"
  4723. msgstr "프린터가 없습니까?"
  4724. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  4725. msgctxt "@text"
  4726. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4727. msgstr "모든 프린터가 켜져 있고 Digital Factory에 연결되어 있는지 확인하십시오."
  4728. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  4729. msgctxt "@button"
  4730. msgid "Refresh List"
  4731. msgstr "목록 새로고침"
  4732. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  4733. msgctxt "@button"
  4734. msgid "Try again"
  4735. msgstr "다시 시도"
  4736. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  4737. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4738. msgctxt "@button"
  4739. msgid "Done"
  4740. msgstr "완료"
  4741. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  4742. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  4743. msgctxt "@button"
  4744. msgid "Sync"
  4745. msgstr "동기화"
  4746. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  4747. msgctxt "@button"
  4748. msgid "Syncing"
  4749. msgstr "동기화 중"
  4750. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  4751. msgctxt "@title:header"
  4752. msgid "No printers found"
  4753. msgstr "프린터를 찾을 수 없음"
  4754. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  4755. msgctxt "@text"
  4756. 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."
  4757. msgstr "Digital Factory에 호환되는 프린터가 연결되지 않은 것 같습니다. 프린터가 연결되어 있고 최신 펌웨어가 설치되어 있는지 확인하십시오."
  4758. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  4759. msgctxt "@button"
  4760. msgid "Learn how to connect your printer to Digital Factory"
  4761. msgstr "Digital Factory에 프린터를 연결하는 방법 알아보기"
  4762. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  4763. msgctxt "@button"
  4764. msgid "Refresh"
  4765. msgstr "새로고침"
  4766. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  4767. msgctxt "@title:header"
  4768. msgid "Sync material profiles via USB"
  4769. msgstr "재료 프로파일을 USB로 동기화"
  4770. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  4771. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4772. msgid "Follow the following steps to load the new material profiles to your printer."
  4773. msgstr "새로운 재료 프로파일을 프린터로 로드하기 위해 다음 단계를 수행합니다."
  4774. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4775. msgctxt "@text"
  4776. msgid "Click the export material archive button."
  4777. msgstr "재료 아카이브 내보내기 버튼을 클릭합니다."
  4778. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4779. msgctxt "@text"
  4780. msgid "Save the .umm file on a USB stick."
  4781. msgstr ".umm 파일을 USB 스틱에 저장합니다."
  4782. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4783. msgctxt "@text"
  4784. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4785. msgstr "USB 스틱을 프린터에 삽입하고 새로운 재료 프로파일 로드 절차를 진행합니다."
  4786. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4787. msgctxt "@button"
  4788. msgid "How to load new material profiles to my printer"
  4789. msgstr "새로운 재료 프로파일을 내 프린터로 로드하는 방법"
  4790. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  4791. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  4792. msgctxt "@button"
  4793. msgid "Back"
  4794. msgstr "뒤로"
  4795. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4796. msgctxt "@button"
  4797. msgid "Export material archive"
  4798. msgstr "재료 아카이브 내보내기"
  4799. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  4800. msgctxt "@title:window"
  4801. msgid "Export All Materials"
  4802. msgstr "모든 재료 내보내기"
  4803. #: resources/qml/Preferences/Materials/MaterialsView.qml:121
  4804. msgctxt "@title:window"
  4805. msgid "Confirm Diameter Change"
  4806. msgstr "직경 변경 확인"
  4807. #: resources/qml/Preferences/Materials/MaterialsView.qml:122
  4808. msgctxt "@label (%1 is a number)"
  4809. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4810. msgstr "새 필라멘트의 직경은 %1 mm로 설정되었으며, 현재 압출기와 호환되지 않습니다. 계속하시겠습니까?"
  4811. #: resources/qml/Preferences/Materials/MaterialsView.qml:152
  4812. msgctxt "@label"
  4813. msgid "Display Name"
  4814. msgstr "표시 이름"
  4815. #: resources/qml/Preferences/Materials/MaterialsView.qml:171
  4816. msgctxt "@label"
  4817. msgid "Brand"
  4818. msgstr "상표"
  4819. #: resources/qml/Preferences/Materials/MaterialsView.qml:190
  4820. msgctxt "@label"
  4821. msgid "Material Type"
  4822. msgstr "재료 유형"
  4823. #: resources/qml/Preferences/Materials/MaterialsView.qml:210
  4824. msgctxt "@label"
  4825. msgid "Color"
  4826. msgstr "색깔"
  4827. #: resources/qml/Preferences/Materials/MaterialsView.qml:262
  4828. msgctxt "@title"
  4829. msgid "Material color picker"
  4830. msgstr "재료 색상 선택기"
  4831. #: resources/qml/Preferences/Materials/MaterialsView.qml:275
  4832. msgctxt "@label"
  4833. msgid "Properties"
  4834. msgstr "속성"
  4835. #: resources/qml/Preferences/Materials/MaterialsView.qml:286
  4836. msgctxt "@label"
  4837. msgid "Density"
  4838. msgstr "밀도"
  4839. #: resources/qml/Preferences/Materials/MaterialsView.qml:319
  4840. msgctxt "@label"
  4841. msgid "Diameter"
  4842. msgstr "직경"
  4843. #: resources/qml/Preferences/Materials/MaterialsView.qml:369
  4844. msgctxt "@label"
  4845. msgid "Filament Cost"
  4846. msgstr "필라멘트 비용"
  4847. #: resources/qml/Preferences/Materials/MaterialsView.qml:401
  4848. msgctxt "@label"
  4849. msgid "Filament weight"
  4850. msgstr "필라멘트 무게"
  4851. #: resources/qml/Preferences/Materials/MaterialsView.qml:433
  4852. msgctxt "@label"
  4853. msgid "Filament length"
  4854. msgstr "필라멘트 길이"
  4855. #: resources/qml/Preferences/Materials/MaterialsView.qml:451
  4856. msgctxt "@label"
  4857. msgid "Cost per Meter"
  4858. msgstr "미터 당 비용"
  4859. #: resources/qml/Preferences/Materials/MaterialsView.qml:465
  4860. msgctxt "@label"
  4861. msgid "This material is linked to %1 and shares some of its properties."
  4862. msgstr "이 재료는 %1에 연결되어 있으며 일부 속성을 공유합니다."
  4863. #: resources/qml/Preferences/Materials/MaterialsView.qml:472
  4864. msgctxt "@label"
  4865. msgid "Unlink Material"
  4866. msgstr "재료 연결 해제"
  4867. #: resources/qml/Preferences/Materials/MaterialsView.qml:485
  4868. msgctxt "@label"
  4869. msgid "Description"
  4870. msgstr "설명"
  4871. #: resources/qml/Preferences/Materials/MaterialsView.qml:503
  4872. msgctxt "@label"
  4873. msgid "Adhesion Information"
  4874. msgstr "접착 정보"
  4875. #: resources/qml/Preferences/Materials/MaterialsView.qml:642
  4876. msgctxt "@title"
  4877. msgid "Information"
  4878. msgstr "정보"
  4879. #: resources/qml/Preferences/Materials/MaterialsView.qml:647
  4880. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  4881. msgctxt "@label"
  4882. msgid "Print settings"
  4883. msgstr "프린팅 설정"
  4884. #: resources/qml/Preferences/ProfilesPage.qml:59
  4885. msgctxt "@label"
  4886. msgid "Profiles compatible with active printer:"
  4887. msgstr "활성화된 프린터와 호환되는 프로파일:"
  4888. #: resources/qml/Preferences/ProfilesPage.qml:98
  4889. msgctxt "@action:tooltip"
  4890. msgid "Create new profile from current settings/overrides"
  4891. msgstr "현재 설정/재정의로부터 새 프로파일 만들기"
  4892. #: resources/qml/Preferences/ProfilesPage.qml:125
  4893. msgctxt "@action:label"
  4894. msgid "Some settings from current profile were overwritten."
  4895. msgstr "현재 프로파일의 일부 설정을 덮어썼습니다."
  4896. #: resources/qml/Preferences/ProfilesPage.qml:140
  4897. msgctxt "@action:button"
  4898. msgid "Update profile."
  4899. msgstr "프로파일을 업데이트하십시오."
  4900. #: resources/qml/Preferences/ProfilesPage.qml:143
  4901. msgctxt "@action:tooltip"
  4902. msgid "Update profile with current settings/overrides"
  4903. msgstr "현재 설정 / 재정의 프로파일 업데이트"
  4904. #: resources/qml/Preferences/ProfilesPage.qml:148
  4905. msgctxt "@action:button"
  4906. msgid "Discard current changes"
  4907. msgstr "현재 변경 사항 삭제"
  4908. #: resources/qml/Preferences/ProfilesPage.qml:158
  4909. msgctxt "@action:label"
  4910. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4911. msgstr "이 프로파일은 프린터에서 지정한 기본값을 사용하므로 아래 목록에 아무런 설정/재정의가 없습니다."
  4912. #: resources/qml/Preferences/ProfilesPage.qml:165
  4913. msgctxt "@action:label"
  4914. msgid "Your current settings match the selected profile."
  4915. msgstr "현재 설정이 선택한 프로파일과 일치합니다."
  4916. #: resources/qml/Preferences/ProfilesPage.qml:175
  4917. msgctxt "@title:tab"
  4918. msgid "Global Settings"
  4919. msgstr "전역 설정"
  4920. #: resources/qml/Preferences/ProfilesPage.qml:278
  4921. msgctxt "@title:window"
  4922. msgid "Create Profile"
  4923. msgstr "프로파일 생성하기"
  4924. #: resources/qml/Preferences/ProfilesPage.qml:280
  4925. msgctxt "@info"
  4926. msgid "Please provide a name for this profile."
  4927. msgstr "이 프로파일에 대한 이름을 제공하십시오."
  4928. #: resources/qml/Preferences/ProfilesPage.qml:352
  4929. #: resources/qml/Preferences/ProfilesPage.qml:368
  4930. msgctxt "@title:window"
  4931. msgid "Export Profile"
  4932. msgstr "프로파일 내보내기"
  4933. #: resources/qml/Preferences/ProfilesPage.qml:382
  4934. msgctxt "@title:window"
  4935. msgid "Duplicate Profile"
  4936. msgstr "프로파일 복제하기"
  4937. #: resources/qml/Preferences/ProfilesPage.qml:409
  4938. msgctxt "@title:window"
  4939. msgid "Rename Profile"
  4940. msgstr "프로파일 이름 바꾸기"
  4941. #: resources/qml/Preferences/ProfilesPage.qml:422
  4942. #: resources/qml/Preferences/ProfilesPage.qml:429
  4943. msgctxt "@title:window"
  4944. msgid "Import Profile"
  4945. msgstr "프로파일 가져 오기"
  4946. #: resources/qml/Preferences/SettingVisibilityItem.qml:56
  4947. msgctxt "@item:tooltip"
  4948. msgid "This setting has been hidden by the active machine and will not be visible."
  4949. msgstr "이 설정은 활성 기기에 의해 숨겨졌으며 보이지 않습니다."
  4950. #: resources/qml/Preferences/SettingVisibilityItem.qml:73
  4951. msgctxt "@item:tooltip %1 is list of setting names"
  4952. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  4953. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  4954. msgstr[0] "이 설정은 %1 값으로 숨겨져 있습니다. 이 설정을 볼 수 있게 설정 값을 변경하십시오."
  4955. #: resources/qml/Preferences/SettingVisibilityPage.qml:13
  4956. msgctxt "@title:tab"
  4957. msgid "Setting Visibility"
  4958. msgstr "보기 설정"
  4959. #: resources/qml/Preferences/SettingVisibilityPage.qml:55
  4960. msgctxt "@label:textbox"
  4961. msgid "Check all"
  4962. msgstr "모두 확인"
  4963. #: resources/qml/PrintMonitor.qml:156
  4964. msgctxt "@label"
  4965. msgid "Active print"
  4966. msgstr "활성화된 프린트"
  4967. #: resources/qml/PrintMonitor.qml:164
  4968. msgctxt "@label"
  4969. msgid "Job Name"
  4970. msgstr "작업 이름"
  4971. #: resources/qml/PrintMonitor.qml:172
  4972. msgctxt "@label"
  4973. msgid "Printing Time"
  4974. msgstr "프린팅 시간"
  4975. #: resources/qml/PrintMonitor.qml:180
  4976. msgctxt "@label"
  4977. msgid "Estimated time left"
  4978. msgstr "예상 남은 시간"
  4979. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4980. msgctxt "@label"
  4981. msgid "Profile"
  4982. msgstr "프로파일"
  4983. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136
  4984. msgctxt "@tooltip"
  4985. msgid ""
  4986. "Some setting/override values are different from the values stored in the profile.\n"
  4987. "\n"
  4988. "Click to open the profile manager."
  4989. msgstr ""
  4990. "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n"
  4991. "\n"
  4992. "프로파일 매니저를 열려면 클릭하십시오."
  4993. #: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  4994. msgctxt "@label:header"
  4995. msgid "Custom profiles"
  4996. msgstr "사용자 정의 프로파일"
  4997. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  4998. msgctxt "@label shown when we load a Gcode file"
  4999. msgid "Print setup disabled. G-code file can not be modified."
  5000. msgstr "인쇄 설정 비활성화됨. G 코드 파일을 수정할 수 없습니다."
  5001. #: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179
  5002. msgctxt "@button"
  5003. msgid "Recommended"
  5004. msgstr "추천"
  5005. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  5006. msgctxt "@label:Should be short"
  5007. msgid "On"
  5008. msgstr "유효한"
  5009. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  5010. msgctxt "@label:Should be short"
  5011. msgid "Off"
  5012. msgstr "비활성"
  5013. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65
  5014. msgctxt "@info, %1 is the name of the custom profile"
  5015. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  5016. msgstr "<b>%1</b>개의 사용자 정의 프로파일을 활성화하고 일부 설정을 덮어썼습니다."
  5017. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78
  5018. msgctxt "@info, %1 is the name of the custom profile"
  5019. msgid "<b>%1</b> custom profile is overriding some settings."
  5020. msgstr "<b>%1</b>개의 사용자 정의 프로파일이 일부 설정을 무시합니다."
  5021. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92
  5022. msgctxt "@info %1 is the name of a profile"
  5023. msgid "Recommended settings (for <b>%1</b>) were altered."
  5024. msgstr "(<b>%1</b>)에 대한 권장 설정이 변경되었습니다."
  5025. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106
  5026. msgctxt "@info %1 is the name of a profile"
  5027. msgid "Some setting-values defined in <b>%1</b> were overridden."
  5028. msgstr ""
  5029. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137
  5030. msgctxt "@info"
  5031. msgid "Reset to defaults."
  5032. msgstr "기본값으로 재설정합니다."
  5033. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178
  5034. msgctxt "@info"
  5035. msgid "Compare and save."
  5036. msgstr "비교하고 저장합니다."
  5037. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15
  5038. msgctxt "@label"
  5039. msgid "Adhesion"
  5040. msgstr "부착"
  5041. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20
  5042. msgctxt "@label"
  5043. 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."
  5044. msgstr "브림이나 라프트를 사용합니다. 이렇게하면 출력물 주변이나 아래에 평평한 영역이 추가되어 나중에 쉽게 자를 수 있습니다."
  5045. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102
  5046. msgctxt "@label"
  5047. msgid "Recommended print settings"
  5048. msgstr "권장 프린트 설정"
  5049. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111
  5050. msgctxt "@button"
  5051. msgid "Show Custom"
  5052. msgstr "사용자 지정 표시"
  5053. #: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  5054. msgctxt "@label"
  5055. msgid "Resolution"
  5056. msgstr "해상도"
  5057. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16
  5058. msgctxt "@label"
  5059. msgid "Strength"
  5060. msgstr "강도"
  5061. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20
  5062. msgctxt "@label"
  5063. msgid "The following settings define the strength of your part."
  5064. msgstr "다음 설정은 부품의 강도를 정의합니다."
  5065. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34
  5066. msgctxt "infill_sparse_density description"
  5067. msgid "Infill Density"
  5068. msgstr "내부채움 밀도"
  5069. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35
  5070. msgctxt "@label"
  5071. msgid "Adjusts the density of infill of the print."
  5072. msgstr "출력물의 내부채움을 조절합니다."
  5073. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54
  5074. msgctxt "@action:label"
  5075. msgid "Infill Pattern"
  5076. msgstr "내부채움 패턴"
  5077. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56
  5078. msgctxt "@label"
  5079. msgid ""
  5080. "The pattern of the infill material of the print:\n"
  5081. "\n"
  5082. "For quick prints of non functional model choose line, zig zag or lightning infill.\n"
  5083. "\n"
  5084. "For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n"
  5085. "\n"
  5086. "For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  5087. msgstr ""
  5088. "프린트의 인필 재료 패턴:\n"
  5089. "\n"
  5090. "비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다.\n"
  5091. "\n"
  5092. "많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다.\n"
  5093. "\n"
  5094. "여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다."
  5095. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67
  5096. msgctxt "@action:label"
  5097. msgid "Shell Thickness"
  5098. msgstr "셸 두께"
  5099. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68
  5100. msgctxt "@label"
  5101. msgid "Defines the thickness of your part side walls, roof and floor."
  5102. msgstr "부품 측벽, 지붕 및 바닥의 두께를 정의합니다."
  5103. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16
  5104. msgctxt "@label"
  5105. msgid "Support"
  5106. msgstr "서포트"
  5107. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21
  5108. msgctxt "@label"
  5109. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  5110. msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다."
  5111. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  5112. msgctxt "@action:label"
  5113. msgid "Support Type"
  5114. msgstr "지원 유형"
  5115. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41
  5116. msgctxt "@label"
  5117. msgid ""
  5118. "Chooses between the techniques available to generate support. \n"
  5119. "\n"
  5120. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  5121. "\n"
  5122. "\"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."
  5123. msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다."
  5124. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53
  5125. msgctxt "@action:label"
  5126. msgid "Print with"
  5127. msgstr "다음으로 프린트"
  5128. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54
  5129. msgctxt "@label"
  5130. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  5131. msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다."
  5132. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67
  5133. msgctxt "@action:label"
  5134. msgid "Placement"
  5135. msgstr "배치"
  5136. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68
  5137. msgctxt "support_type description"
  5138. 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."
  5139. msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다."
  5140. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  5141. msgctxt "@error"
  5142. msgid "Configuration not supported"
  5143. msgstr "지원되지 않는 설정"
  5144. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  5145. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  5146. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  5147. msgstr "선택한 재료/%1 설정에 대해 사용할 수 있는 프로파일이 없습니다. 설정을 변경하십시오."
  5148. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  5149. msgctxt "@button:label"
  5150. msgid "Learn more"
  5151. msgstr "자세히 알아보기"
  5152. #: resources/qml/PrinterOutput/ExtruderBox.qml:40
  5153. msgctxt "@label"
  5154. msgid "Extruder"
  5155. msgstr "익스트루더"
  5156. #: resources/qml/PrinterOutput/ExtruderBox.qml:70
  5157. msgctxt "@tooltip"
  5158. 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."
  5159. msgstr "핫 엔드의 설정 온도입니다. 핫 엔드는 이 온도를 향해 가열되거나 냉각됩니다. 이 값이 0이면 온열 가열이 꺼집니다."
  5160. #: resources/qml/PrinterOutput/ExtruderBox.qml:105
  5161. msgctxt "@tooltip"
  5162. msgid "The current temperature of this hotend."
  5163. msgstr "이 익스트루더의 현재 온도."
  5164. #: resources/qml/PrinterOutput/ExtruderBox.qml:182
  5165. msgctxt "@tooltip of temperature input"
  5166. msgid "The temperature to pre-heat the hotend to."
  5167. msgstr "노즐을 예열하기 위한 온도."
  5168. #: resources/qml/PrinterOutput/ExtruderBox.qml:271
  5169. #: resources/qml/PrinterOutput/HeatedBedBox.qml:259
  5170. msgctxt "@button Cancel pre-heating"
  5171. msgid "Cancel"
  5172. msgstr "취소"
  5173. #: resources/qml/PrinterOutput/ExtruderBox.qml:274
  5174. #: resources/qml/PrinterOutput/HeatedBedBox.qml:263
  5175. msgctxt "@button"
  5176. msgid "Pre-heat"
  5177. msgstr "예열"
  5178. #: resources/qml/PrinterOutput/ExtruderBox.qml:297
  5179. msgctxt "@tooltip of pre-heat"
  5180. 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."
  5181. msgstr "프린팅하기 전에 노즐을 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 노즐이 가열 될 때까지 기다릴 필요가 없습니다."
  5182. #: resources/qml/PrinterOutput/ExtruderBox.qml:335
  5183. msgctxt "@tooltip"
  5184. msgid "The colour of the material in this extruder."
  5185. msgstr "이 익스트루더의 재료 색."
  5186. #: resources/qml/PrinterOutput/ExtruderBox.qml:367
  5187. msgctxt "@tooltip"
  5188. msgid "The material in this extruder."
  5189. msgstr "이 익스트루더의 재료."
  5190. #: resources/qml/PrinterOutput/ExtruderBox.qml:400
  5191. msgctxt "@tooltip"
  5192. msgid "The nozzle inserted in this extruder."
  5193. msgstr "이 익스트루더에 삽입 된 노즐."
  5194. #: resources/qml/PrinterOutput/HeatedBedBox.qml:25
  5195. msgctxt "@label"
  5196. msgid "Build plate"
  5197. msgstr "빌드 플레이트"
  5198. #: resources/qml/PrinterOutput/HeatedBedBox.qml:55
  5199. msgctxt "@tooltip"
  5200. 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."
  5201. msgstr "가열 된 베드의 설정 온도. 베드가 이 온도로 가열되거나 식을 것입니다. 이 값이 0이면 베드 가열이 꺼집니다."
  5202. #: resources/qml/PrinterOutput/HeatedBedBox.qml:88
  5203. msgctxt "@tooltip"
  5204. msgid "The current temperature of the heated bed."
  5205. msgstr "가열 된 베드의 현재 온도."
  5206. #: resources/qml/PrinterOutput/HeatedBedBox.qml:162
  5207. msgctxt "@tooltip of temperature input"
  5208. msgid "The temperature to pre-heat the bed to."
  5209. msgstr "베드를 예열하기 위한 온도."
  5210. #: resources/qml/PrinterOutput/HeatedBedBox.qml:286
  5211. msgctxt "@tooltip of pre-heat"
  5212. 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."
  5213. msgstr "프린팅하기 전에 베드를 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 베드가 가열 될 때까지 기다릴 필요가 없습니다."
  5214. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  5215. msgctxt "@label"
  5216. msgid "Printer control"
  5217. msgstr "프린터 제어"
  5218. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  5219. msgctxt "@label"
  5220. msgid "Jog Position"
  5221. msgstr "조그 위치"
  5222. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  5223. msgctxt "@label"
  5224. msgid "X/Y"
  5225. msgstr "X/Y"
  5226. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  5227. msgctxt "@label"
  5228. msgid "Z"
  5229. msgstr "Z"
  5230. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5231. msgctxt "@label"
  5232. msgid "Jog Distance"
  5233. msgstr "조그 거리"
  5234. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5235. msgctxt "@label"
  5236. msgid "Send G-code"
  5237. msgstr "Gcode 보내기"
  5238. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5239. msgctxt "@tooltip of G-code command input"
  5240. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  5241. msgstr "연결된 프린터에 사용자 정의 G 코드 명령을 보냅니다. ‘Enter’키를 눌러 명령을 전송하십시오."
  5242. #: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  5243. msgctxt "@info:status"
  5244. msgid "The printer is not connected."
  5245. msgstr "프린터가 연결되어 있지 않습니다."
  5246. #: resources/qml/PrinterSelector/MachineListButton.qml:34
  5247. msgctxt "@label"
  5248. msgid "Hide all connected printers"
  5249. msgstr "연결된 프린터 모두 숨기기"
  5250. #: resources/qml/PrinterSelector/MachineListButton.qml:47
  5251. msgctxt "@label"
  5252. msgid "Show all connected printers"
  5253. msgstr "연결된 프린터 모두 표시"
  5254. #: resources/qml/PrinterSelector/MachineSelector.qml:64
  5255. msgctxt "@status"
  5256. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  5257. msgstr "클라우드 프린터가 오프라인 상태입니다. 프린터가 켜져 있고 인터넷과 연결되어 있는지 확인하십시오."
  5258. #: resources/qml/PrinterSelector/MachineSelector.qml:68
  5259. msgctxt "@status"
  5260. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  5261. msgstr "해당 프린터가 사용자의 계정에 연결되어 있지 않습니다. Ultimaker Digital Factory에 방문하여 연결을 설정하십시오."
  5262. #: resources/qml/PrinterSelector/MachineSelector.qml:73
  5263. msgctxt "@status"
  5264. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  5265. msgstr "현재 클라우드 연결을 사용할 수 없습니다. 클라우드 프린터에 연결하려면 로그인하십시오."
  5266. #: resources/qml/PrinterSelector/MachineSelector.qml:78
  5267. msgctxt "@status"
  5268. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  5269. msgstr "현재 클라우드 연결을 사용할 수 없습니다. 사용자의 인터넷 연결을 확인하십시오."
  5270. #: resources/qml/PrinterSelector/MachineSelectorList.qml:30
  5271. #: resources/qml/PrinterSelector/MachineSelectorList.qml:32
  5272. msgctxt "@label"
  5273. msgid "Other printers"
  5274. msgstr "기타 프린터"
  5275. #: resources/qml/ProfileOverview.qml:36
  5276. msgctxt "@title:column"
  5277. msgid "Setting"
  5278. msgstr "설정"
  5279. #: resources/qml/ProfileOverview.qml:37
  5280. msgctxt "@title:column"
  5281. msgid "Profile"
  5282. msgstr "프로파일"
  5283. #: resources/qml/ProfileOverview.qml:38
  5284. msgctxt "@title:column"
  5285. msgid "Current"
  5286. msgstr "현재 설정"
  5287. #: resources/qml/ProfileOverview.qml:39
  5288. msgctxt "@title:column Unit of measurement"
  5289. msgid "Unit"
  5290. msgstr "단위"
  5291. #: resources/qml/SearchBar.qml:17
  5292. msgctxt "@placeholder"
  5293. msgid "Search"
  5294. msgstr "검색"
  5295. #: resources/qml/Settings/SettingCategory.qml:115
  5296. msgctxt "@label"
  5297. msgid ""
  5298. "Some hidden settings use values different from their normal calculated value.\n"
  5299. "\n"
  5300. "Click to make these settings visible."
  5301. msgstr ""
  5302. "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n"
  5303. "\n"
  5304. "이 설정을 표시하려면 클릭하십시오."
  5305. #: resources/qml/Settings/SettingItem.qml:84
  5306. msgctxt "@label"
  5307. msgid "This setting is not used because all the settings that it influences are overridden."
  5308. msgstr "영향을 미치는 모든 설정이 무효화되기 때문에 이 설정을 사용하지 않습니다."
  5309. #: resources/qml/Settings/SettingItem.qml:89
  5310. msgctxt "@label Header for list of settings."
  5311. msgid "Affects"
  5312. msgstr "영향"
  5313. #: resources/qml/Settings/SettingItem.qml:94
  5314. msgctxt "@label Header for list of settings."
  5315. msgid "Affected By"
  5316. msgstr "영향을 받다"
  5317. #: resources/qml/Settings/SettingItem.qml:196
  5318. msgctxt "@label"
  5319. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  5320. msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다."
  5321. #: resources/qml/Settings/SettingItem.qml:200
  5322. msgctxt "@label"
  5323. msgid "This setting is resolved from conflicting extruder-specific values:"
  5324. msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:"
  5325. #: resources/qml/Settings/SettingItem.qml:240
  5326. msgctxt "@label"
  5327. msgid ""
  5328. "This setting has a value that is different from the profile.\n"
  5329. "\n"
  5330. "Click to restore the value of the profile."
  5331. msgstr ""
  5332. "이 설정에는 프로파일과 다른 값이 있습니다.\n"
  5333. "\n"
  5334. "프로파일 값을 복원하려면 클릭하십시오."
  5335. #: resources/qml/Settings/SettingItem.qml:340
  5336. msgctxt "@label"
  5337. msgid ""
  5338. "This setting is normally calculated, but it currently has an absolute value set.\n"
  5339. "\n"
  5340. "Click to restore the calculated value."
  5341. msgstr ""
  5342. "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n"
  5343. "\n"
  5344. "계산 된 값을 복원하려면 클릭하십시오."
  5345. #: resources/qml/Settings/SettingView.qml:48
  5346. msgctxt "@label:textbox"
  5347. msgid "Search settings"
  5348. msgstr "검색 설정"
  5349. #: resources/qml/Settings/SettingView.qml:395
  5350. msgctxt "@action:menu"
  5351. msgid "Copy value to all extruders"
  5352. msgstr "모든 익스트루더에 값 복사"
  5353. #: resources/qml/Settings/SettingView.qml:404
  5354. msgctxt "@action:menu"
  5355. msgid "Copy all changed values to all extruders"
  5356. msgstr "변경된 사항을 모든 익스트루더에 복사"
  5357. #: resources/qml/Settings/SettingView.qml:440
  5358. msgctxt "@action:menu"
  5359. msgid "Hide this setting"
  5360. msgstr "이 설정 숨기기"
  5361. #: resources/qml/Settings/SettingView.qml:453
  5362. msgctxt "@action:menu"
  5363. msgid "Don't show this setting"
  5364. msgstr "이 설정을 표시하지 않음"
  5365. #: resources/qml/Settings/SettingView.qml:457
  5366. msgctxt "@action:menu"
  5367. msgid "Keep this setting visible"
  5368. msgstr "이 설정을 계속 표시하십시오"
  5369. #: resources/qml/Toolbar.qml:142
  5370. msgctxt "@label %1 is filled in with the name of an extruder"
  5371. msgid "Print Selected Model with %1"
  5372. msgid_plural "Print Selected Models with %1"
  5373. msgstr[0] "선택한 모델을 %1로 프린팅하십시오"
  5374. #: resources/qml/ViewOrientationControls.qml:25
  5375. msgctxt "@info:tooltip"
  5376. msgid "3D View"
  5377. msgstr "3D 보기"
  5378. #: resources/qml/ViewOrientationControls.qml:38
  5379. msgctxt "@info:tooltip"
  5380. msgid "Front View"
  5381. msgstr "앞에서 보기"
  5382. #: resources/qml/ViewOrientationControls.qml:51
  5383. msgctxt "@info:tooltip"
  5384. msgid "Top View"
  5385. msgstr "위에서 보기"
  5386. #: resources/qml/ViewOrientationControls.qml:64
  5387. msgctxt "@info:tooltip"
  5388. msgid "Left View"
  5389. msgstr "왼쪽 보기"
  5390. #: resources/qml/ViewOrientationControls.qml:77
  5391. msgctxt "@info:tooltip"
  5392. msgid "Right View"
  5393. msgstr "오른쪽 보기"
  5394. #: resources/qml/ViewsSelector.qml:50
  5395. msgctxt "@label"
  5396. msgid "View type"
  5397. msgstr "유형 보기"
  5398. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  5399. msgctxt "@label"
  5400. msgid "Add a Cloud printer"
  5401. msgstr "클라우드 프린터 추가"
  5402. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  5403. msgctxt "@label"
  5404. msgid "Waiting for Cloud response"
  5405. msgstr "클라우드 응답 대기"
  5406. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  5407. msgctxt "@label"
  5408. msgid "No printers found in your account?"
  5409. msgstr "사용자의 계정에 프린터가 없습니까?"
  5410. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  5411. msgctxt "@label"
  5412. msgid "The following printers in your account have been added in Cura:"
  5413. msgstr ""
  5414. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  5415. msgctxt "@button"
  5416. msgid "Add printer manually"
  5417. msgstr "수동으로 프린터 추가"
  5418. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212
  5419. msgctxt "@label"
  5420. msgid "Manufacturer"
  5421. msgstr "제조업체"
  5422. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223
  5423. msgctxt "@label"
  5424. msgid "Profile author"
  5425. msgstr "프로파일 원작자"
  5426. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235
  5427. msgctxt "@label"
  5428. msgid "Printer name"
  5429. msgstr "프린터 이름"
  5430. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241
  5431. msgctxt "@text"
  5432. msgid "Please name your printer"
  5433. msgstr "프린터의 이름을 설정하십시오"
  5434. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  5435. msgctxt "@label"
  5436. msgid "There is no printer found over your network."
  5437. msgstr "네트워크에서 검색된 프린터가 없습니다."
  5438. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  5439. msgctxt "@label"
  5440. msgid "Refresh"
  5441. msgstr "새로고침"
  5442. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  5443. msgctxt "@label"
  5444. msgid "Add printer by IP"
  5445. msgstr "IP로 프린터 추가"
  5446. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205
  5447. msgctxt "@label"
  5448. msgid "Troubleshooting"
  5449. msgstr "문제 해결"
  5450. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  5451. msgctxt "@label"
  5452. msgid "Add printer by IP address"
  5453. msgstr "IP 주소로 프린터 추가"
  5454. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  5455. msgctxt "@text"
  5456. msgid "Enter your printer's IP address."
  5457. msgstr "프린터의 IP 주소를 입력하십시오."
  5458. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  5459. msgctxt "@button"
  5460. msgid "Add"
  5461. msgstr "추가"
  5462. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  5463. msgctxt "@label"
  5464. msgid "Could not connect to device."
  5465. msgstr "장치에 연결할 수 없습니다."
  5466. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  5467. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  5468. msgctxt "@label"
  5469. msgid "Can't connect to your UltiMaker printer?"
  5470. msgstr "UltiMaker 프린터로 연결할 수 없습니까?"
  5471. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  5472. msgctxt "@label"
  5473. msgid "The printer at this address has not responded yet."
  5474. msgstr "이 주소의 프린터가 아직 응답하지 않았습니다."
  5475. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  5476. msgctxt "@label"
  5477. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  5478. msgstr "알 수 없는 프린터이거나 그룹의 호스트가 아니기 때문에 이 프린터를 추가할 수 없습니다."
  5479. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  5480. msgctxt "@button"
  5481. msgid "Connect"
  5482. msgstr "연결"
  5483. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29
  5484. msgctxt "@label"
  5485. msgid "Add a networked printer"
  5486. msgstr "네트워크 프린터 추가"
  5487. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78
  5488. msgctxt "@label"
  5489. msgid "Add a non-networked printer"
  5490. msgstr "비 네트워크 프린터 추가"
  5491. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102
  5492. msgctxt "@button"
  5493. msgid "Add UltiMaker printer via Digital Factory"
  5494. msgstr "Digital Factory를 통해 UltiMaker 프린터 추가"
  5495. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29
  5496. msgctxt "@label"
  5497. msgid "In order to start using Cura you will need to configure a printer."
  5498. msgstr "Cura를 사용하려면 프린터를 구성해야 합니다."
  5499. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36
  5500. msgctxt "@label"
  5501. msgid "What printer would you like to setup?"
  5502. msgstr "어떤 프린터를 설정하시겠습니까?"
  5503. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55
  5504. msgctxt "@button"
  5505. msgid "UltiMaker printer"
  5506. msgstr "UltiMaker 프린터"
  5507. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64
  5508. msgctxt "@button"
  5509. msgid "Non UltiMaker printer"
  5510. msgstr "UltiMaker 프린터가 아님"
  5511. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73
  5512. msgctxt "@button"
  5513. msgid "Learn more about adding printers to Cura"
  5514. msgstr "Cura에 프린터를 추가하는 방법 자세히 알아보기"
  5515. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29
  5516. msgctxt "@label"
  5517. msgid "Add printer"
  5518. msgstr "프린터 추가"
  5519. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33
  5520. msgctxt "@label"
  5521. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  5522. msgstr "새 UltiMaker 프린터를 Digital Factory에 연결하여 원격으로 모니터링할 수 있습니다."
  5523. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70
  5524. msgctxt "@label"
  5525. msgid "If you are trying to add a new UltiMaker printer to Cura"
  5526. msgstr "Cura에 새 UltiMaker 프린터를 추가하려는 경우"
  5527. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80
  5528. msgctxt "@info"
  5529. msgid "Sign in into UltiMaker Digital Factory"
  5530. msgstr "UltiMaker Digital Factory에 로그인합니다."
  5531. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81
  5532. msgctxt "@info"
  5533. msgid "Follow the procedure to add a new printer"
  5534. msgstr "절차를 따라 새 프린터를 추가합니다."
  5535. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82
  5536. msgctxt "@info"
  5537. msgid "Your new printer will automatically appear in Cura"
  5538. msgstr "새 프린터가 Cura에 자동으로 나타납니다."
  5539. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100
  5540. msgctxt "@button"
  5541. msgid "Learn more"
  5542. msgstr "자세히 알아보기"
  5543. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121
  5544. msgctxt "@button"
  5545. msgid "Add local printer"
  5546. msgstr "로컬 프린터 추가"
  5547. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129
  5548. msgctxt "@button"
  5549. msgid "Sign in to Digital Factory"
  5550. msgstr "Digital Factory에 로그인"
  5551. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133
  5552. msgctxt "@button"
  5553. msgid "Waiting for new printers"
  5554. msgstr "새 프린터 대기 중"
  5555. #: resources/qml/WelcomePages/ChangelogContent.qml:24
  5556. msgctxt "@label"
  5557. msgid "Release Notes"
  5558. msgstr "릴리즈 노트"
  5559. #: resources/qml/WelcomePages/CloudContent.qml:123
  5560. msgctxt "@text"
  5561. msgid "Add material settings and plugins from the Marketplace"
  5562. msgstr "재료 설정 및 Marketplace 플러그인 추가"
  5563. #: resources/qml/WelcomePages/CloudContent.qml:149
  5564. msgctxt "@text"
  5565. msgid "Backup and sync your material settings and plugins"
  5566. msgstr "재료 설정과 플러그인 백업 및 동기화"
  5567. #: resources/qml/WelcomePages/CloudContent.qml:175
  5568. msgctxt "@text"
  5569. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  5570. msgstr "UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기"
  5571. #: resources/qml/WelcomePages/CloudContent.qml:189
  5572. msgctxt "@button"
  5573. msgid "Skip"
  5574. msgstr "건너뛰기"
  5575. #: resources/qml/WelcomePages/CloudContent.qml:201
  5576. msgctxt "@text"
  5577. msgid "Create a free UltiMaker Account"
  5578. msgstr "UltiMaker 계정 무료 생성"
  5579. #: resources/qml/WelcomePages/DropDownWidget.qml:93
  5580. msgctxt "@label"
  5581. msgid "Empty"
  5582. msgstr "비어 있음"
  5583. #: resources/qml/WelcomePages/UserAgreementContent.qml:23
  5584. msgctxt "@label"
  5585. msgid "User Agreement"
  5586. msgstr "사용자 계약"
  5587. #: resources/qml/WelcomePages/UserAgreementContent.qml:67
  5588. msgctxt "@button"
  5589. msgid "Decline and close"
  5590. msgstr "거절 및 닫기"
  5591. #: resources/qml/WelcomePages/WhatsNewContent.qml:28
  5592. msgctxt "@label"
  5593. msgid "What's New"
  5594. msgstr "새로운 기능"
  5595. #: resources/qml/Widgets/ComboBox.qml:18
  5596. msgctxt "@label"
  5597. msgid "No items to select from"
  5598. msgstr "선택할 항목 없음"
  5599. #~ msgctxt "@info:status"
  5600. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled."
  5601. #~ msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다."
  5602. #~ msgctxt "@info:title"
  5603. #~ msgid "Simulation View"
  5604. #~ msgstr "시뮬레이션 뷰"