cura.po 234 KB

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