cura.po 236 KB

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