1
0

minetest.po 217 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: Korean (Minetest)\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-07-11 15:14+0200\n"
  6. "PO-Revision-Date: 2024-01-11 09:06+0000\n"
  7. "Last-Translator: dog <dog808657@gmail.com>\n"
  8. "Language-Team: Korean <https://hosted.weblate.org/projects/minetest/minetest/"
  9. "ko/>\n"
  10. "Language: ko\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. "Plural-Forms: nplurals=1; plural=0;\n"
  15. "X-Generator: Weblate 5.4-dev\n"
  16. #: builtin/client/chatcommands.lua
  17. msgid "Clear the out chat queue"
  18. msgstr ""
  19. #: builtin/client/chatcommands.lua
  20. #, fuzzy
  21. msgid "Empty command."
  22. msgstr "채팅 명렁어"
  23. #: builtin/client/chatcommands.lua
  24. msgid "Exit to main menu"
  25. msgstr "메인 메뉴로 나가기"
  26. #: builtin/client/chatcommands.lua
  27. msgid "Invalid command: "
  28. msgstr "유효하지 않은 명령어: "
  29. #: builtin/client/chatcommands.lua
  30. msgid "Issued command: "
  31. msgstr ""
  32. #: builtin/client/chatcommands.lua
  33. msgid "List online players"
  34. msgstr "온라인 플레이어 목록"
  35. #: builtin/client/chatcommands.lua
  36. msgid "Online players: "
  37. msgstr "온라인 플레이어: "
  38. #: builtin/client/chatcommands.lua
  39. msgid "The out chat queue is now empty."
  40. msgstr ""
  41. #: builtin/client/chatcommands.lua
  42. msgid "This command is disabled by server."
  43. msgstr "서버에서 사용 할 수 없는 명령어입니다."
  44. #: builtin/client/death_formspec.lua src/client/game.cpp
  45. msgid "Respawn"
  46. msgstr "리스폰"
  47. #: builtin/client/death_formspec.lua src/client/game.cpp
  48. msgid "You died"
  49. msgstr "사망했습니다"
  50. #: builtin/common/chatcommands.lua
  51. #, fuzzy
  52. msgid "Available commands:"
  53. msgstr "지역 명령어"
  54. #: builtin/common/chatcommands.lua
  55. #, fuzzy
  56. msgid "Available commands: "
  57. msgstr "지역 명령어"
  58. #: builtin/common/chatcommands.lua
  59. msgid "Command not available: "
  60. msgstr "사용할수 없는 명령어: "
  61. #: builtin/common/chatcommands.lua
  62. #, fuzzy
  63. msgid "Get help for commands (-t: output in chat)"
  64. msgstr "명령어 도움말 보기"
  65. #: builtin/common/chatcommands.lua
  66. msgid ""
  67. "Use '.help <cmd>' to get more information, or '.help all' to list everything."
  68. msgstr ""
  69. "자세한 정보를 얻으려면 '.help <cmd>'를 사용하고, 모든 것을 나열하려면 '.help "
  70. "all'을 사용하십시오."
  71. #: builtin/common/chatcommands.lua
  72. msgid "[all | <cmd>] [-t]"
  73. msgstr ""
  74. #: builtin/fstk/ui.lua
  75. msgid "<none available>"
  76. msgstr ""
  77. #: builtin/fstk/ui.lua
  78. msgid "An error occurred in a Lua script:"
  79. msgstr "Lua 스크립트에서 오류가 발생했습니다:"
  80. #: builtin/fstk/ui.lua
  81. msgid "An error occurred:"
  82. msgstr "오류가 발생했습니다:"
  83. #: builtin/fstk/ui.lua
  84. msgid "Main menu"
  85. msgstr "메인 메뉴"
  86. #: builtin/fstk/ui.lua
  87. msgid "OK"
  88. msgstr "확인"
  89. #: builtin/fstk/ui.lua
  90. msgid "Reconnect"
  91. msgstr "재연결"
  92. #: builtin/fstk/ui.lua
  93. msgid "The server has requested a reconnect:"
  94. msgstr "서버에 재접속 하세요:"
  95. #: builtin/mainmenu/common.lua
  96. msgid "Protocol version mismatch. "
  97. msgstr "프로토콜 버전이 알맞지 않습니다. "
  98. #: builtin/mainmenu/common.lua
  99. msgid "Server enforces protocol version $1. "
  100. msgstr "서버는 프로토콜 버전 $1을(를) 사용합니다. "
  101. #: builtin/mainmenu/common.lua
  102. msgid "Server supports protocol versions between $1 and $2. "
  103. msgstr "서버가 프로토콜 버전 $1와(과) $2 두 가지를 제공합니다. "
  104. #: builtin/mainmenu/common.lua
  105. msgid "We only support protocol version $1."
  106. msgstr "프로토콜 버전 $1만 제공합니다."
  107. #: builtin/mainmenu/common.lua
  108. msgid "We support protocol versions between version $1 and $2."
  109. msgstr "프로토콜 버전 $1와(과) $2 사이의 버전을 제공합니다."
  110. #: builtin/mainmenu/content/contentdb.lua
  111. msgid "Error installing \"$1\": $2"
  112. msgstr ""
  113. #: builtin/mainmenu/content/contentdb.lua
  114. #, fuzzy
  115. msgid "Failed to download \"$1\""
  116. msgstr "$1을 다운로드하는 데에 실패했습니다"
  117. #: builtin/mainmenu/content/contentdb.lua
  118. msgid "Failed to download $1"
  119. msgstr "$1을 다운로드하는 데에 실패했습니다"
  120. #: builtin/mainmenu/content/contentdb.lua
  121. #, fuzzy
  122. msgid ""
  123. "Failed to extract \"$1\" (insufficient disk space, unsupported file type or "
  124. "broken archive)"
  125. msgstr ""
  126. "모드 설치: \"$1\"는(은) 지원 되지 않는 파일 형식 이거나 손상된 압축 파일입니"
  127. "다"
  128. #: builtin/mainmenu/content/dlg_contentdb.lua
  129. msgid ""
  130. "$1 downloading,\n"
  131. "$2 queued"
  132. msgstr ""
  133. "$1 다운로드중,\n"
  134. "$2 대기중"
  135. #: builtin/mainmenu/content/dlg_contentdb.lua
  136. #, fuzzy
  137. msgid "$1 downloading..."
  138. msgstr "다운 받는 중..."
  139. #: builtin/mainmenu/content/dlg_contentdb.lua
  140. msgid "All packages"
  141. msgstr "모든 패키지"
  142. #: builtin/mainmenu/content/dlg_contentdb.lua
  143. msgid "Back to Main Menu"
  144. msgstr "주 메뉴로 돌아가기"
  145. #: builtin/mainmenu/content/dlg_contentdb.lua
  146. msgid "ContentDB is not available when Minetest was compiled without cURL"
  147. msgstr "cURL 없이 Minetest를 컴파일한 경우 ContentDB를 사용할 수 없습니다"
  148. #: builtin/mainmenu/content/dlg_contentdb.lua
  149. msgid "Downloading..."
  150. msgstr "다운 받는 중..."
  151. #: builtin/mainmenu/content/dlg_contentdb.lua
  152. msgid "Error getting dependencies for package"
  153. msgstr ""
  154. #: builtin/mainmenu/content/dlg_contentdb.lua
  155. msgid "Games"
  156. msgstr "게임"
  157. #: builtin/mainmenu/content/dlg_contentdb.lua
  158. #: builtin/mainmenu/content/dlg_install.lua
  159. msgid "Install"
  160. msgstr "설치"
  161. #: builtin/mainmenu/content/dlg_contentdb.lua
  162. #: builtin/mainmenu/serverlistmgr.lua src/client/game.cpp
  163. msgid "Loading..."
  164. msgstr "불러오는 중..."
  165. #: builtin/mainmenu/content/dlg_contentdb.lua
  166. msgid "Mods"
  167. msgstr "모드"
  168. #: builtin/mainmenu/content/dlg_contentdb.lua
  169. msgid "No packages could be retrieved"
  170. msgstr "검색할 수 있는 패키지가 없습니다"
  171. #: builtin/mainmenu/content/dlg_contentdb.lua
  172. #: builtin/mainmenu/settings/dlg_settings.lua
  173. msgid "No results"
  174. msgstr "결과 없음"
  175. #: builtin/mainmenu/content/dlg_contentdb.lua
  176. msgid "No updates"
  177. msgstr "업데이트 없음"
  178. #: builtin/mainmenu/content/dlg_contentdb.lua
  179. msgid "Queued"
  180. msgstr ""
  181. #: builtin/mainmenu/content/dlg_contentdb.lua
  182. msgid "Texture packs"
  183. msgstr "텍스처 팩"
  184. #: builtin/mainmenu/content/dlg_contentdb.lua
  185. msgid "The package $1 was not found."
  186. msgstr ""
  187. #: builtin/mainmenu/content/dlg_contentdb.lua builtin/mainmenu/tab_content.lua
  188. msgid "Uninstall"
  189. msgstr "제거"
  190. #: builtin/mainmenu/content/dlg_contentdb.lua builtin/mainmenu/tab_content.lua
  191. msgid "Update"
  192. msgstr "업데이트"
  193. #: builtin/mainmenu/content/dlg_contentdb.lua
  194. msgid "Update All [$1]"
  195. msgstr ""
  196. #: builtin/mainmenu/content/dlg_contentdb.lua
  197. msgid "View more information in a web browser"
  198. msgstr ""
  199. #: builtin/mainmenu/content/dlg_contentdb.lua
  200. msgid "You need to install a game before you can install a mod"
  201. msgstr ""
  202. #: builtin/mainmenu/content/dlg_install.lua
  203. msgid "$1 and $2 dependencies will be installed."
  204. msgstr "$1 과 $2 종속품이 설치됩니다."
  205. #: builtin/mainmenu/content/dlg_install.lua
  206. msgid "$1 by $2"
  207. msgstr ""
  208. #: builtin/mainmenu/content/dlg_install.lua
  209. msgid "$1 required dependencies could not be found."
  210. msgstr ""
  211. #: builtin/mainmenu/content/dlg_install.lua
  212. msgid "$1 will be installed, and $2 dependencies will be skipped."
  213. msgstr ""
  214. #: builtin/mainmenu/content/dlg_install.lua
  215. msgid "Already installed"
  216. msgstr "이미 설치됨"
  217. #: builtin/mainmenu/content/dlg_install.lua
  218. #, fuzzy
  219. msgid "Base Game:"
  220. msgstr "호스트 게임"
  221. #: builtin/mainmenu/content/dlg_install.lua
  222. #: builtin/mainmenu/content/dlg_overwrite.lua
  223. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua
  224. #: builtin/mainmenu/dlg_delete_content.lua
  225. #: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua
  226. #: builtin/mainmenu/dlg_rename_modpack.lua
  227. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  228. #: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp
  229. #: src/gui/guiPasswordChange.cpp
  230. msgid "Cancel"
  231. msgstr "취소"
  232. #: builtin/mainmenu/content/dlg_install.lua
  233. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua
  234. msgid "Dependencies:"
  235. msgstr "의존:"
  236. #: builtin/mainmenu/content/dlg_install.lua
  237. #, fuzzy
  238. msgid "Install $1"
  239. msgstr "설치"
  240. #: builtin/mainmenu/content/dlg_install.lua
  241. #, fuzzy
  242. msgid "Install missing dependencies"
  243. msgstr "종속성 선택:"
  244. #: builtin/mainmenu/content/dlg_install.lua
  245. msgid "Not found"
  246. msgstr "찾을 수 없음"
  247. #: builtin/mainmenu/content/dlg_install.lua
  248. msgid "Please check that the base game is correct."
  249. msgstr ""
  250. #: builtin/mainmenu/content/dlg_overwrite.lua
  251. msgid "\"$1\" already exists. Would you like to overwrite it?"
  252. msgstr "\"$1\"은 이미 존재합니다. 덮어쓰기 하시겠습니까?"
  253. #: builtin/mainmenu/content/dlg_overwrite.lua
  254. msgid "Overwrite"
  255. msgstr ""
  256. #: builtin/mainmenu/content/pkgmgr.lua
  257. msgid "$1 (Enabled)"
  258. msgstr "$1 (활성화됨)"
  259. #: builtin/mainmenu/content/pkgmgr.lua
  260. msgid "$1 mods"
  261. msgstr "$1 모드"
  262. #: builtin/mainmenu/content/pkgmgr.lua
  263. msgid "Failed to install $1 to $2"
  264. msgstr "$1을 $2에 설치하는데 실패했습니다"
  265. #: builtin/mainmenu/content/pkgmgr.lua
  266. #, fuzzy
  267. msgid "Install: Unable to find suitable folder name for $1"
  268. msgstr "모드 설치: 모드 팩 $1 (이)의 올바른 폴더이름을 찾을 수 없습니다"
  269. #: builtin/mainmenu/content/pkgmgr.lua
  270. #, fuzzy
  271. msgid "Unable to find a valid mod, modpack, or game"
  272. msgstr "설치 모드: 모드 팩 $1 (이)의 올바른 폴더이름을 찾을 수 없습니다"
  273. #: builtin/mainmenu/content/pkgmgr.lua
  274. #, fuzzy
  275. msgid "Unable to install a $1 as a $2"
  276. msgstr "$1 모드를 설치할 수 없습니다"
  277. #: builtin/mainmenu/content/pkgmgr.lua
  278. msgid "Unable to install a $1 as a texture pack"
  279. msgstr "$1을 텍스쳐팩으로 설치할 수 없습니다"
  280. #: builtin/mainmenu/dlg_config_world.lua
  281. msgid "(Enabled, has error)"
  282. msgstr ""
  283. #: builtin/mainmenu/dlg_config_world.lua
  284. msgid "(Unsatisfied)"
  285. msgstr ""
  286. #: builtin/mainmenu/dlg_config_world.lua
  287. msgid "Disable all"
  288. msgstr "모두 사용안함"
  289. #: builtin/mainmenu/dlg_config_world.lua
  290. msgid "Disable modpack"
  291. msgstr "모드 팩 비활성화"
  292. #: builtin/mainmenu/dlg_config_world.lua
  293. msgid "Enable all"
  294. msgstr "모두 활성화"
  295. #: builtin/mainmenu/dlg_config_world.lua
  296. msgid "Enable modpack"
  297. msgstr "모드 팩 활성화"
  298. #: builtin/mainmenu/dlg_config_world.lua
  299. msgid ""
  300. "Failed to enable mod \"$1\" as it contains disallowed characters. Only "
  301. "characters [a-z0-9_] are allowed."
  302. msgstr ""
  303. "\"$1\"은(는) 사용할 수 없는 문자이기에 모드를 활성화하지 못했습니다. 이름에"
  304. "는 [a-z,0-9,_]만 사용할 수 있습니다."
  305. #: builtin/mainmenu/dlg_config_world.lua
  306. msgid "Find More Mods"
  307. msgstr "더 많은 모드 찾기"
  308. #: builtin/mainmenu/dlg_config_world.lua
  309. msgid "Mod:"
  310. msgstr "모드:"
  311. #: builtin/mainmenu/dlg_config_world.lua
  312. msgid "No (optional) dependencies"
  313. msgstr "종속성 없음 (옵션)"
  314. #: builtin/mainmenu/dlg_config_world.lua
  315. msgid "No game description provided."
  316. msgstr "게임 설명이 제공되지 않았습니다."
  317. #: builtin/mainmenu/dlg_config_world.lua
  318. msgid "No hard dependencies"
  319. msgstr "요구사항 없음"
  320. #: builtin/mainmenu/dlg_config_world.lua
  321. msgid "No modpack description provided."
  322. msgstr "모드 설명이 제공되지 않았습니다."
  323. #: builtin/mainmenu/dlg_config_world.lua
  324. msgid "No optional dependencies"
  325. msgstr "선택되지 않은 종속성"
  326. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua
  327. msgid "Optional dependencies:"
  328. msgstr "종속성 선택:"
  329. #: builtin/mainmenu/dlg_config_world.lua
  330. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  331. #: src/gui/guiKeyChangeMenu.cpp
  332. msgid "Save"
  333. msgstr "저장"
  334. #: builtin/mainmenu/dlg_config_world.lua
  335. msgid "World:"
  336. msgstr "세계:"
  337. #: builtin/mainmenu/dlg_config_world.lua
  338. msgid "enabled"
  339. msgstr "활성화됨"
  340. #: builtin/mainmenu/dlg_create_world.lua
  341. msgid "A world named \"$1\" already exists"
  342. msgstr "\"$1\" 은(는) 이미 존재합니다"
  343. #: builtin/mainmenu/dlg_create_world.lua
  344. msgid "Additional terrain"
  345. msgstr "추가 지형"
  346. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  347. msgid "Altitude chill"
  348. msgstr "한랭 고도"
  349. #: builtin/mainmenu/dlg_create_world.lua
  350. msgid "Altitude dry"
  351. msgstr "건조한 고도"
  352. #: builtin/mainmenu/dlg_create_world.lua
  353. msgid "Biome blending"
  354. msgstr "혼합 생물 군계"
  355. #: builtin/mainmenu/dlg_create_world.lua
  356. msgid "Biomes"
  357. msgstr "생물 군계"
  358. #: builtin/mainmenu/dlg_create_world.lua
  359. msgid "Caverns"
  360. msgstr "석회동굴"
  361. #: builtin/mainmenu/dlg_create_world.lua
  362. msgid "Caves"
  363. msgstr "동굴"
  364. #: builtin/mainmenu/dlg_create_world.lua
  365. msgid "Create"
  366. msgstr "만들기"
  367. #: builtin/mainmenu/dlg_create_world.lua
  368. msgid "Decorations"
  369. msgstr "장식"
  370. #: builtin/mainmenu/dlg_create_world.lua
  371. msgid "Desert temples"
  372. msgstr ""
  373. #: builtin/mainmenu/dlg_create_world.lua
  374. #, fuzzy
  375. msgid "Development Test is meant for developers."
  376. msgstr "경고: Development Test는 개발자를 위한 모드입니다."
  377. #: builtin/mainmenu/dlg_create_world.lua
  378. msgid ""
  379. "Different dungeon variant generated in desert biomes (only if dungeons "
  380. "enabled)"
  381. msgstr ""
  382. #: builtin/mainmenu/dlg_create_world.lua
  383. msgid "Dungeons"
  384. msgstr "던전"
  385. #: builtin/mainmenu/dlg_create_world.lua
  386. msgid "Flat terrain"
  387. msgstr "평평한 지형"
  388. #: builtin/mainmenu/dlg_create_world.lua
  389. msgid "Floating landmasses in the sky"
  390. msgstr "하늘에 떠있는 광대한 대지"
  391. #: builtin/mainmenu/dlg_create_world.lua
  392. msgid "Floatlands (experimental)"
  393. msgstr "평평한 땅 (실험용)"
  394. #: builtin/mainmenu/dlg_create_world.lua
  395. msgid "Generate non-fractal terrain: Oceans and underground"
  396. msgstr "추상적이지 않은 지형 생성: 바다와 지하"
  397. #: builtin/mainmenu/dlg_create_world.lua
  398. msgid "Hills"
  399. msgstr "언덕"
  400. #: builtin/mainmenu/dlg_create_world.lua
  401. msgid "Humid rivers"
  402. msgstr "습한 강"
  403. #: builtin/mainmenu/dlg_create_world.lua
  404. msgid "Increases humidity around rivers"
  405. msgstr "강 주변의 습도 증가"
  406. #: builtin/mainmenu/dlg_create_world.lua
  407. msgid "Install another game"
  408. msgstr ""
  409. #: builtin/mainmenu/dlg_create_world.lua
  410. msgid "Lakes"
  411. msgstr "호수"
  412. #: builtin/mainmenu/dlg_create_world.lua
  413. msgid "Low humidity and high heat causes shallow or dry rivers"
  414. msgstr "낮은 습도와 높은 열로 인해 얕거나 건조한 강이 발생함"
  415. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  416. msgid "Mapgen"
  417. msgstr "세계 생성기"
  418. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  419. msgid "Mapgen flags"
  420. msgstr "세계 생성기 신호"
  421. #: builtin/mainmenu/dlg_create_world.lua
  422. msgid "Mapgen-specific flags"
  423. msgstr "세계 생성기-특정 신호"
  424. #: builtin/mainmenu/dlg_create_world.lua
  425. msgid "Mountains"
  426. msgstr "산"
  427. #: builtin/mainmenu/dlg_create_world.lua
  428. msgid "Mud flow"
  429. msgstr "진흙 흐름"
  430. #: builtin/mainmenu/dlg_create_world.lua
  431. msgid "Network of tunnels and caves"
  432. msgstr "터널과 동굴의 네트워크"
  433. #: builtin/mainmenu/dlg_create_world.lua
  434. msgid "No game selected"
  435. msgstr "선택된 게임이 없습니다"
  436. #: builtin/mainmenu/dlg_create_world.lua
  437. msgid "Reduces heat with altitude"
  438. msgstr "고도에 따른 열 감소"
  439. #: builtin/mainmenu/dlg_create_world.lua
  440. msgid "Reduces humidity with altitude"
  441. msgstr "고도에 따른 습도 감소"
  442. #: builtin/mainmenu/dlg_create_world.lua
  443. msgid "Rivers"
  444. msgstr "강"
  445. #: builtin/mainmenu/dlg_create_world.lua
  446. msgid "Sea level rivers"
  447. msgstr "해수면 강"
  448. #: builtin/mainmenu/dlg_create_world.lua
  449. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  450. msgid "Seed"
  451. msgstr "시드"
  452. #: builtin/mainmenu/dlg_create_world.lua
  453. msgid "Smooth transition between biomes"
  454. msgstr "생물 군계 간 부드러운 전환"
  455. #: builtin/mainmenu/dlg_create_world.lua
  456. msgid ""
  457. "Structures appearing on the terrain (no effect on trees and jungle grass "
  458. "created by v6)"
  459. msgstr ""
  460. "지형에 나타나는 구조물 (v6에서 만든 나무와 정글 및 풀에는 영향을 주지 않음)"
  461. #: builtin/mainmenu/dlg_create_world.lua
  462. msgid "Structures appearing on the terrain, typically trees and plants"
  463. msgstr "지형에 나타나는 구조물(일반적으로 나무와 식물)"
  464. #: builtin/mainmenu/dlg_create_world.lua
  465. msgid "Temperate, Desert"
  466. msgstr "온대, 사막"
  467. #: builtin/mainmenu/dlg_create_world.lua
  468. msgid "Temperate, Desert, Jungle"
  469. msgstr "온대, 사막, 정글"
  470. #: builtin/mainmenu/dlg_create_world.lua
  471. msgid "Temperate, Desert, Jungle, Tundra, Taiga"
  472. msgstr "온대, 사막, 정글, 툰드라(한대), 침엽수 삼림 지대"
  473. #: builtin/mainmenu/dlg_create_world.lua
  474. msgid "Terrain surface erosion"
  475. msgstr "침식된 지형"
  476. #: builtin/mainmenu/dlg_create_world.lua
  477. msgid "Trees and jungle grass"
  478. msgstr "나무와 정글 , 풀"
  479. #: builtin/mainmenu/dlg_create_world.lua
  480. msgid "Vary river depth"
  481. msgstr "강 깊이 변화"
  482. #: builtin/mainmenu/dlg_create_world.lua
  483. msgid "Very large caverns deep in the underground"
  484. msgstr "지하의 큰 동굴의 깊이 변화"
  485. #: builtin/mainmenu/dlg_create_world.lua
  486. msgid "World name"
  487. msgstr "세계 이름"
  488. #: builtin/mainmenu/dlg_delete_content.lua
  489. msgid "Are you sure you want to delete \"$1\"?"
  490. msgstr "$1을(를) 삭제하시겠습니까?"
  491. #: builtin/mainmenu/dlg_delete_content.lua
  492. #: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/tab_local.lua
  493. msgid "Delete"
  494. msgstr "삭제"
  495. #: builtin/mainmenu/dlg_delete_content.lua
  496. msgid "pkgmgr: failed to delete \"$1\""
  497. msgstr "pkgmgr: \"$1\"을(를) 삭제하지 못했습니다"
  498. #: builtin/mainmenu/dlg_delete_content.lua
  499. msgid "pkgmgr: invalid path \"$1\""
  500. msgstr "pkgmgr: 잘못된 경로\"$1\""
  501. #: builtin/mainmenu/dlg_delete_world.lua
  502. msgid "Delete World \"$1\"?"
  503. msgstr "\"$1\"을(를) 삭제하시겠습니까?"
  504. #: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp
  505. msgid "Confirm Password"
  506. msgstr "비밀번호 확인"
  507. #: builtin/mainmenu/dlg_register.lua
  508. msgid "Joining $1"
  509. msgstr ""
  510. #: builtin/mainmenu/dlg_register.lua
  511. #, fuzzy
  512. msgid "Missing name"
  513. msgstr "Mapgen 이름"
  514. #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua
  515. #: builtin/mainmenu/tab_online.lua
  516. msgid "Name"
  517. msgstr ""
  518. #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua
  519. #: builtin/mainmenu/tab_online.lua
  520. #, fuzzy
  521. msgid "Password"
  522. msgstr "새로운 비밀번호"
  523. #: builtin/mainmenu/dlg_register.lua
  524. #, fuzzy
  525. msgid "Passwords do not match"
  526. msgstr "비밀번호가 맞지 않습니다!"
  527. #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua
  528. #, fuzzy
  529. msgid "Register"
  530. msgstr "등록하고 참여"
  531. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  532. msgid "Dismiss"
  533. msgstr ""
  534. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  535. msgid ""
  536. "For a long time, the Minetest engine shipped with a default game called "
  537. "\"Minetest Game\". Since Minetest 5.8.0, Minetest ships without a default "
  538. "game."
  539. msgstr ""
  540. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  541. msgid ""
  542. "If you want to continue playing in your Minetest Game worlds, you need to "
  543. "reinstall Minetest Game."
  544. msgstr ""
  545. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  546. msgid "Minetest Game is no longer installed by default"
  547. msgstr ""
  548. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  549. msgid "Reinstall Minetest Game"
  550. msgstr ""
  551. #: builtin/mainmenu/dlg_rename_modpack.lua
  552. msgid "Accept"
  553. msgstr "수락"
  554. #: builtin/mainmenu/dlg_rename_modpack.lua
  555. msgid "Rename Modpack:"
  556. msgstr "모드 팩 이름 바꾸기:"
  557. #: builtin/mainmenu/dlg_rename_modpack.lua
  558. msgid ""
  559. "This modpack has an explicit name given in its modpack.conf which will "
  560. "override any renaming here."
  561. msgstr ""
  562. "이 모드팩에는 modpack.conf에 명시적인 이름이 부여되어 있으며, 이는 여기서 이"
  563. "름을 바꾸는 것을 적용하지 않습니다."
  564. #: builtin/mainmenu/dlg_version_info.lua
  565. msgid "A new $1 version is available"
  566. msgstr ""
  567. #: builtin/mainmenu/dlg_version_info.lua
  568. msgid ""
  569. "Installed version: $1\n"
  570. "New version: $2\n"
  571. "Visit $3 to find out how to get the newest version and stay up to date with "
  572. "features and bugfixes."
  573. msgstr ""
  574. #: builtin/mainmenu/dlg_version_info.lua
  575. msgid "Later"
  576. msgstr ""
  577. #: builtin/mainmenu/dlg_version_info.lua
  578. msgid "Never"
  579. msgstr ""
  580. #: builtin/mainmenu/dlg_version_info.lua
  581. msgid "Visit website"
  582. msgstr ""
  583. #: builtin/mainmenu/init.lua
  584. msgid "Settings"
  585. msgstr "설정"
  586. #: builtin/mainmenu/serverlistmgr.lua
  587. #, fuzzy
  588. msgid "Public server list is disabled"
  589. msgstr "클라이언트 스크립트가 비활성화됨"
  590. #: builtin/mainmenu/serverlistmgr.lua
  591. msgid "Try reenabling public serverlist and check your internet connection."
  592. msgstr "인터넷 연결을 확인한 후 서버 목록을 새로 고쳐보세요."
  593. #: builtin/mainmenu/settings/components.lua
  594. msgid "Browse"
  595. msgstr "열기"
  596. #: builtin/mainmenu/settings/components.lua
  597. msgid "Edit"
  598. msgstr "수정"
  599. #: builtin/mainmenu/settings/components.lua
  600. msgid "Select directory"
  601. msgstr "경로를 선택하세요"
  602. #: builtin/mainmenu/settings/components.lua
  603. msgid "Select file"
  604. msgstr "파일 선택"
  605. #: builtin/mainmenu/settings/components.lua
  606. #, fuzzy
  607. msgid "Set"
  608. msgstr "선택"
  609. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  610. msgid "(No description of setting given)"
  611. msgstr "(설정에 대한 설명이 없습니다)"
  612. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  613. msgid "2D Noise"
  614. msgstr "2차원 소음"
  615. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  616. msgid "Lacunarity"
  617. msgstr "빈약도"
  618. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  619. msgid "Octaves"
  620. msgstr "옥타브"
  621. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  622. #: src/settings_translation_file.cpp
  623. msgid "Offset"
  624. msgstr "오프셋"
  625. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  626. #, fuzzy
  627. msgid "Persistence"
  628. msgstr "플레이어 전송 거리"
  629. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  630. #: src/settings_translation_file.cpp
  631. msgid "Scale"
  632. msgstr "스케일"
  633. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  634. msgid "X spread"
  635. msgstr "X 분산"
  636. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  637. msgid "Y spread"
  638. msgstr "Y 분산"
  639. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  640. msgid "Z spread"
  641. msgstr "Z 분산"
  642. #. ~ "absvalue" is a noise parameter flag.
  643. #. It is short for "absolute value".
  644. #. It can be enabled in noise settings in
  645. #. the settings menu.
  646. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  647. msgid "absvalue"
  648. msgstr "절댓값"
  649. #. ~ "defaults" is a noise parameter flag.
  650. #. It describes the default processing options
  651. #. for noise settings in the settings menu.
  652. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  653. msgid "defaults"
  654. msgstr "기본값"
  655. #. ~ "eased" is a noise parameter flag.
  656. #. It is used to make the map smoother and
  657. #. can be enabled in noise settings in
  658. #. the settings menu.
  659. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  660. msgid "eased"
  661. msgstr "맵 부드러움"
  662. #: builtin/mainmenu/settings/dlg_settings.lua
  663. msgid "(Use system language)"
  664. msgstr ""
  665. #: builtin/mainmenu/settings/dlg_settings.lua
  666. msgid "Accessibility"
  667. msgstr ""
  668. #: builtin/mainmenu/settings/dlg_settings.lua
  669. msgid "Back"
  670. msgstr "뒤로"
  671. #: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp
  672. #: src/settings_translation_file.cpp
  673. msgid "Chat"
  674. msgstr "채팅"
  675. #: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua
  676. msgid "Clear"
  677. msgstr "지우기"
  678. #: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp
  679. #: src/settings_translation_file.cpp
  680. msgid "Controls"
  681. msgstr "컨트롤"
  682. #: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp
  683. msgid "General"
  684. msgstr ""
  685. #: builtin/mainmenu/settings/dlg_settings.lua
  686. #, fuzzy
  687. msgid "Movement"
  688. msgstr "빠른 이동"
  689. #: builtin/mainmenu/settings/dlg_settings.lua
  690. #, fuzzy
  691. msgid "Reset setting to default"
  692. msgstr "기본값 복원"
  693. #: builtin/mainmenu/settings/dlg_settings.lua
  694. msgid "Reset setting to default ($1)"
  695. msgstr ""
  696. #: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua
  697. msgid "Search"
  698. msgstr "찾기"
  699. #: builtin/mainmenu/settings/dlg_settings.lua
  700. msgid "Show advanced settings"
  701. msgstr ""
  702. #: builtin/mainmenu/settings/dlg_settings.lua
  703. msgid "Show technical names"
  704. msgstr "기술적 이름 보기"
  705. #: builtin/mainmenu/settings/settingtypes.lua
  706. #, fuzzy
  707. msgid "Client Mods"
  708. msgstr "월드 선택:"
  709. #: builtin/mainmenu/settings/settingtypes.lua
  710. #, fuzzy
  711. msgid "Content: Games"
  712. msgstr "컨텐츠"
  713. #: builtin/mainmenu/settings/settingtypes.lua
  714. #, fuzzy
  715. msgid "Content: Mods"
  716. msgstr "컨텐츠"
  717. #: builtin/mainmenu/settings/shadows_component.lua
  718. msgid "(The game will need to enable shadows as well)"
  719. msgstr ""
  720. #: builtin/mainmenu/settings/shadows_component.lua
  721. msgid "Custom"
  722. msgstr ""
  723. #: builtin/mainmenu/settings/shadows_component.lua
  724. msgid "Disabled"
  725. msgstr "비활성화됨"
  726. #: builtin/mainmenu/settings/shadows_component.lua
  727. #: src/settings_translation_file.cpp
  728. #, fuzzy
  729. msgid "Dynamic shadows"
  730. msgstr "글꼴 그림자"
  731. #: builtin/mainmenu/settings/shadows_component.lua
  732. msgid "High"
  733. msgstr ""
  734. #: builtin/mainmenu/settings/shadows_component.lua
  735. msgid "Low"
  736. msgstr ""
  737. #: builtin/mainmenu/settings/shadows_component.lua
  738. msgid "Medium"
  739. msgstr ""
  740. #: builtin/mainmenu/settings/shadows_component.lua
  741. msgid "Very High"
  742. msgstr ""
  743. #: builtin/mainmenu/settings/shadows_component.lua
  744. msgid "Very Low"
  745. msgstr ""
  746. #: builtin/mainmenu/tab_about.lua
  747. msgid "About"
  748. msgstr ""
  749. #: builtin/mainmenu/tab_about.lua
  750. msgid "Active Contributors"
  751. msgstr "활동적인 공헌자"
  752. #: builtin/mainmenu/tab_about.lua
  753. #, fuzzy
  754. msgid "Active renderer:"
  755. msgstr "객체 전달 범위 활성화"
  756. #: builtin/mainmenu/tab_about.lua
  757. msgid "Core Developers"
  758. msgstr "코어 개발자"
  759. #: builtin/mainmenu/tab_about.lua
  760. msgid "Core Team"
  761. msgstr ""
  762. #: builtin/mainmenu/tab_about.lua
  763. msgid "Irrlicht device:"
  764. msgstr ""
  765. #: builtin/mainmenu/tab_about.lua
  766. #, fuzzy
  767. msgid "Open User Data Directory"
  768. msgstr "경로를 선택하세요"
  769. #: builtin/mainmenu/tab_about.lua
  770. msgid ""
  771. "Opens the directory that contains user-provided worlds, games, mods,\n"
  772. "and texture packs in a file manager / explorer."
  773. msgstr ""
  774. #: builtin/mainmenu/tab_about.lua
  775. msgid "Previous Contributors"
  776. msgstr "이전 공헌자들"
  777. #: builtin/mainmenu/tab_about.lua
  778. msgid "Previous Core Developers"
  779. msgstr "이전 코어 개발자들"
  780. #: builtin/mainmenu/tab_about.lua
  781. #, fuzzy
  782. msgid "Share debug log"
  783. msgstr "디버그 정보 보기"
  784. #: builtin/mainmenu/tab_content.lua
  785. msgid "Browse online content"
  786. msgstr "온라인 컨텐츠 검색"
  787. #: builtin/mainmenu/tab_content.lua
  788. #, fuzzy
  789. msgid "Browse online content [$1]"
  790. msgstr "온라인 컨텐츠 검색"
  791. #: builtin/mainmenu/tab_content.lua
  792. msgid "Content"
  793. msgstr "컨텐츠"
  794. #: builtin/mainmenu/tab_content.lua
  795. #, fuzzy
  796. msgid "Content [$1]"
  797. msgstr "컨텐츠"
  798. #: builtin/mainmenu/tab_content.lua
  799. msgid "Disable Texture Pack"
  800. msgstr "비활성화된 텍스쳐 팩"
  801. #: builtin/mainmenu/tab_content.lua
  802. msgid "Installed Packages:"
  803. msgstr "설치된 패키지:"
  804. #: builtin/mainmenu/tab_content.lua
  805. msgid "No dependencies."
  806. msgstr "요구사항 없음."
  807. #: builtin/mainmenu/tab_content.lua
  808. msgid "No package description available"
  809. msgstr "사용 가능한 패키지 설명이 없습니다"
  810. #: builtin/mainmenu/tab_content.lua
  811. msgid "Rename"
  812. msgstr "이름 바꾸기"
  813. #: builtin/mainmenu/tab_content.lua
  814. #, fuzzy
  815. msgid "Update available?"
  816. msgstr "쉐이더 (사용할 수 없음)"
  817. #: builtin/mainmenu/tab_content.lua
  818. msgid "Use Texture Pack"
  819. msgstr "텍스쳐 팩 사용"
  820. #: builtin/mainmenu/tab_local.lua
  821. msgid "Announce Server"
  822. msgstr "서버 알리기"
  823. #: builtin/mainmenu/tab_local.lua
  824. msgid "Bind Address"
  825. msgstr "바인딩 주소"
  826. #: builtin/mainmenu/tab_local.lua
  827. msgid "Creative Mode"
  828. msgstr "크리에이티브 모드"
  829. #: builtin/mainmenu/tab_local.lua
  830. msgid "Enable Damage"
  831. msgstr "데미지 활성화"
  832. #: builtin/mainmenu/tab_local.lua
  833. msgid "Host Game"
  834. msgstr "호스트 게임"
  835. #: builtin/mainmenu/tab_local.lua
  836. msgid "Host Server"
  837. msgstr "호스트 서버"
  838. #: builtin/mainmenu/tab_local.lua
  839. #, fuzzy
  840. msgid "Install a game"
  841. msgstr "설치"
  842. #: builtin/mainmenu/tab_local.lua
  843. msgid "Install games from ContentDB"
  844. msgstr "ContentDB에서 게임 설치"
  845. #: builtin/mainmenu/tab_local.lua
  846. msgid "Minetest doesn't come with a game by default."
  847. msgstr ""
  848. #: builtin/mainmenu/tab_local.lua
  849. msgid ""
  850. "Minetest is a game-creation platform that allows you to play many different "
  851. "games."
  852. msgstr ""
  853. #: builtin/mainmenu/tab_local.lua
  854. msgid "New"
  855. msgstr "새로 만들기"
  856. #: builtin/mainmenu/tab_local.lua
  857. msgid "No world created or selected!"
  858. msgstr "월드를 만들거나 선택하지 않았습니다!"
  859. #: builtin/mainmenu/tab_local.lua
  860. msgid "Play Game"
  861. msgstr "게임하기"
  862. #: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_online.lua
  863. msgid "Port"
  864. msgstr "포트"
  865. #: builtin/mainmenu/tab_local.lua
  866. #, fuzzy
  867. msgid "Select Mods"
  868. msgstr "월드 선택:"
  869. #: builtin/mainmenu/tab_local.lua
  870. msgid "Select World:"
  871. msgstr "월드 선택:"
  872. #: builtin/mainmenu/tab_local.lua
  873. msgid "Server Port"
  874. msgstr "서버 포트"
  875. #: builtin/mainmenu/tab_local.lua
  876. msgid "Start Game"
  877. msgstr "게임 시작"
  878. #: builtin/mainmenu/tab_local.lua
  879. msgid "You need to install a game before you can create a world."
  880. msgstr ""
  881. #: builtin/mainmenu/tab_online.lua
  882. #, fuzzy
  883. msgid "Address"
  884. msgstr "- 주소: "
  885. #: builtin/mainmenu/tab_online.lua
  886. msgid "Creative mode"
  887. msgstr "크리에이티브 모드"
  888. #. ~ PvP = Player versus Player
  889. #: builtin/mainmenu/tab_online.lua
  890. #, fuzzy
  891. msgid "Damage / PvP"
  892. msgstr "데미지"
  893. #: builtin/mainmenu/tab_online.lua
  894. #, fuzzy
  895. msgid "Favorites"
  896. msgstr "즐겨찾기"
  897. #: builtin/mainmenu/tab_online.lua
  898. msgid "Incompatible Servers"
  899. msgstr ""
  900. #: builtin/mainmenu/tab_online.lua
  901. msgid "Join Game"
  902. msgstr "게임 참가"
  903. #: builtin/mainmenu/tab_online.lua
  904. msgid "Login"
  905. msgstr ""
  906. #: builtin/mainmenu/tab_online.lua
  907. msgid "Ping"
  908. msgstr "핑"
  909. #: builtin/mainmenu/tab_online.lua
  910. #, fuzzy
  911. msgid "Public Servers"
  912. msgstr "서버 알리기"
  913. #: builtin/mainmenu/tab_online.lua
  914. msgid "Refresh"
  915. msgstr ""
  916. #: builtin/mainmenu/tab_online.lua
  917. #, fuzzy
  918. msgid "Remove favorite"
  919. msgstr "원격 포트"
  920. #: builtin/mainmenu/tab_online.lua
  921. #, fuzzy
  922. msgid "Server Description"
  923. msgstr "서버 설명"
  924. #: src/client/client.cpp
  925. #, fuzzy
  926. msgid "Connection aborted (protocol error?)."
  927. msgstr "연결 오류 (시간초과)"
  928. #: src/client/client.cpp src/client/game.cpp
  929. msgid "Connection timed out."
  930. msgstr "연결 시간이 초과했습니다."
  931. #: src/client/client.cpp
  932. msgid "Done!"
  933. msgstr "완료!"
  934. #: src/client/client.cpp
  935. msgid "Initializing nodes"
  936. msgstr "node 초기값 설정중"
  937. #: src/client/client.cpp
  938. msgid "Initializing nodes..."
  939. msgstr "node 초기값 설정중..."
  940. #: src/client/client.cpp
  941. msgid "Loading textures..."
  942. msgstr "텍스쳐 로딩중..."
  943. #: src/client/client.cpp
  944. msgid "Rebuilding shaders..."
  945. msgstr "쉐이더 개축중..."
  946. #: src/client/clientlauncher.cpp
  947. #, fuzzy
  948. msgid "Could not find or load game: "
  949. msgstr "게임을 찾지 못했거나 로딩할 수 없습니다\""
  950. #: src/client/clientlauncher.cpp
  951. msgid "Main Menu"
  952. msgstr "주 메뉴"
  953. #: src/client/clientlauncher.cpp
  954. msgid "No world selected and no address provided. Nothing to do."
  955. msgstr "월드를 선택하지 않아 주소를 받을 수 없습니다."
  956. #: src/client/clientlauncher.cpp
  957. msgid "Player name too long."
  958. msgstr "이름이 너무 깁니다."
  959. #: src/client/clientlauncher.cpp
  960. msgid "Please choose a name!"
  961. msgstr "이름을 선택하세요!"
  962. #: src/client/clientlauncher.cpp
  963. msgid "Provided password file failed to open: "
  964. msgstr "패스워드 파일을 여는데 실패했습니다: "
  965. #: src/client/clientlauncher.cpp
  966. msgid "Provided world path doesn't exist: "
  967. msgstr "월드 경로가 존재하지 않습니다: "
  968. #: src/client/clientmedia.cpp src/client/game.cpp
  969. msgid "Media..."
  970. msgstr "미디어..."
  971. #: src/client/game.cpp src/client/shader.cpp src/server.cpp
  972. msgid ""
  973. "\n"
  974. "Check debug.txt for details."
  975. msgstr ""
  976. "\n"
  977. "자세한 내용은 debug.txt을 확인 합니다."
  978. #: src/client/game.cpp
  979. msgid "- Mode: "
  980. msgstr "- 모드: "
  981. #: src/client/game.cpp
  982. msgid "- Public: "
  983. msgstr "- 공개: "
  984. #. ~ PvP = Player versus Player
  985. #: src/client/game.cpp
  986. msgid "- PvP: "
  987. msgstr "- Player vs Player: "
  988. #: src/client/game.cpp
  989. msgid "- Server Name: "
  990. msgstr "- 서버 이름: "
  991. #: src/client/game.cpp
  992. #, fuzzy
  993. msgid "A serialization error occurred:"
  994. msgstr "오류가 발생했습니다:"
  995. #: src/client/game.cpp
  996. #, c-format
  997. msgid "Access denied. Reason: %s"
  998. msgstr ""
  999. #: src/client/game.cpp
  1000. msgid "Automatic forward disabled"
  1001. msgstr "자동 전진 비활성화"
  1002. #: src/client/game.cpp
  1003. msgid "Automatic forward enabled"
  1004. msgstr "자동 전진 활성화"
  1005. #: src/client/game.cpp
  1006. msgid "Block bounds hidden"
  1007. msgstr ""
  1008. #: src/client/game.cpp
  1009. msgid "Block bounds shown for current block"
  1010. msgstr ""
  1011. #: src/client/game.cpp
  1012. msgid "Block bounds shown for nearby blocks"
  1013. msgstr ""
  1014. #: src/client/game.cpp
  1015. msgid "Camera update disabled"
  1016. msgstr "카메라 업데이트 비활성화"
  1017. #: src/client/game.cpp
  1018. msgid "Camera update enabled"
  1019. msgstr "카메라 업데이트 활성화"
  1020. #: src/client/game.cpp
  1021. #, fuzzy
  1022. msgid "Can't show block bounds (disabled by game or mod)"
  1023. msgstr "게임 또는 모드에 의해 현재 확대 비활성화"
  1024. #: src/client/game.cpp
  1025. msgid "Change Password"
  1026. msgstr "비밀번호 변경"
  1027. #: src/client/game.cpp
  1028. msgid "Cinematic mode disabled"
  1029. msgstr "시네마틱 모드 비활성화"
  1030. #: src/client/game.cpp
  1031. msgid "Cinematic mode enabled"
  1032. msgstr "시네마틱 모드 활성화"
  1033. #: src/client/game.cpp
  1034. #, fuzzy
  1035. msgid "Client disconnected"
  1036. msgstr "클라이언트 모딩"
  1037. #: src/client/game.cpp
  1038. msgid "Client side scripting is disabled"
  1039. msgstr "클라이언트 스크립트가 비활성화됨"
  1040. #: src/client/game.cpp
  1041. msgid "Connecting to server..."
  1042. msgstr "서버 연결중..."
  1043. #: src/client/game.cpp
  1044. msgid "Connection error (timed out?)"
  1045. msgstr "연결 오류 (시간초과)"
  1046. #: src/client/game.cpp
  1047. msgid "Connection failed for unknown reason"
  1048. msgstr ""
  1049. #: src/client/game.cpp
  1050. msgid "Continue"
  1051. msgstr "계속"
  1052. #: src/client/game.cpp
  1053. #, fuzzy
  1054. msgid ""
  1055. "Controls:\n"
  1056. "No menu open:\n"
  1057. "- slide finger: look around\n"
  1058. "- tap: place/punch/use (default)\n"
  1059. "- long tap: dig/use (default)\n"
  1060. "Menu/inventory open:\n"
  1061. "- double tap (outside):\n"
  1062. " --> close\n"
  1063. "- touch stack, touch slot:\n"
  1064. " --> move stack\n"
  1065. "- touch&drag, tap 2nd finger\n"
  1066. " --> place single item to slot\n"
  1067. msgstr ""
  1068. "기본 컨트롤: \n"
  1069. "메뉴 표시 없을 때:\n"
  1070. "- 단일 탭: 버튼 활성화\n"
  1071. "- 더블 탭: 배치/사용\n"
  1072. "- 드래그: 둘러보기\n"
  1073. " 메뉴/인벤토리:\n"
  1074. "- 더블 탭 (외부):\n"
  1075. " -->닫기\n"
  1076. "- 무더기(stack) 터치, 슬롯 터치: \n"
  1077. " --> 무더기(stack) 이동 \n"
  1078. "- 터치 및 드래그, 다른 손가락으로 탭\n"
  1079. " --> 슬롯에 한개의 아이템 배치\n"
  1080. #: src/client/game.cpp
  1081. #, c-format
  1082. msgid "Couldn't resolve address: %s"
  1083. msgstr ""
  1084. #: src/client/game.cpp
  1085. msgid "Creating client..."
  1086. msgstr "클라이언트 만드는 중..."
  1087. #: src/client/game.cpp
  1088. msgid "Creating server..."
  1089. msgstr "서버 만드는 중..."
  1090. #: src/client/game.cpp
  1091. msgid "Debug info and profiler graph hidden"
  1092. msgstr "디버그 정보 및 프로파일러 그래프 숨기기"
  1093. #: src/client/game.cpp
  1094. msgid "Debug info shown"
  1095. msgstr "디버그 정보 표시"
  1096. #: src/client/game.cpp
  1097. msgid "Debug info, profiler graph, and wireframe hidden"
  1098. msgstr "디버그 정보, 프로파일러 그래프 , 선 표현 숨김"
  1099. #: src/client/game.cpp
  1100. #, fuzzy, c-format
  1101. msgid "Error creating client: %s"
  1102. msgstr "클라이언트 만드는 중..."
  1103. #: src/client/game.cpp
  1104. msgid "Exit to Menu"
  1105. msgstr "메뉴로 나가기"
  1106. #: src/client/game.cpp
  1107. msgid "Exit to OS"
  1108. msgstr "게임 종료"
  1109. #: src/client/game.cpp
  1110. msgid "Fast mode disabled"
  1111. msgstr "고속 모드 비활성화"
  1112. #: src/client/game.cpp
  1113. msgid "Fast mode enabled"
  1114. msgstr "고속 모드 활성화"
  1115. #: src/client/game.cpp
  1116. msgid "Fast mode enabled (note: no 'fast' privilege)"
  1117. msgstr "고속 모드 활성화(참고 : '고속'에 대한 권한 없음)"
  1118. #: src/client/game.cpp
  1119. msgid "Fly mode disabled"
  1120. msgstr "비행 모드 비활성화"
  1121. #: src/client/game.cpp
  1122. msgid "Fly mode enabled"
  1123. msgstr "비행 모드 활성화"
  1124. #: src/client/game.cpp
  1125. msgid "Fly mode enabled (note: no 'fly' privilege)"
  1126. msgstr "비행 모드 활성화 (참고 : '비행'에 대한 권한 없음)"
  1127. #: src/client/game.cpp
  1128. msgid "Fog disabled"
  1129. msgstr "안개 비활성화"
  1130. #: src/client/game.cpp
  1131. msgid "Fog enabled"
  1132. msgstr "안개 활성화"
  1133. #: src/client/game.cpp
  1134. #, fuzzy
  1135. msgid "Fog enabled by game or mod"
  1136. msgstr "게임 또는 모드에 의해 현재 확대 비활성화"
  1137. #: src/client/game.cpp
  1138. msgid "Game info:"
  1139. msgstr "게임 정보:"
  1140. #: src/client/game.cpp
  1141. msgid "Game paused"
  1142. msgstr "게임 일시정지"
  1143. #: src/client/game.cpp
  1144. msgid "Hosting server"
  1145. msgstr "호스팅 서버"
  1146. #: src/client/game.cpp
  1147. msgid "Item definitions..."
  1148. msgstr "아이템 정의중..."
  1149. #: src/client/game.cpp
  1150. msgid "KiB/s"
  1151. msgstr "KiB/s"
  1152. #: src/client/game.cpp
  1153. msgid "MiB/s"
  1154. msgstr "MiB/s"
  1155. #: src/client/game.cpp
  1156. msgid "Minimap currently disabled by game or mod"
  1157. msgstr "게임 또는 모드에 의해 현재 미니맵 비활성화"
  1158. #: src/client/game.cpp
  1159. #, fuzzy
  1160. msgid "Multiplayer"
  1161. msgstr "싱글 플레이어"
  1162. #: src/client/game.cpp
  1163. msgid "Noclip mode disabled"
  1164. msgstr "Noclip 모드 비활성화"
  1165. #: src/client/game.cpp
  1166. msgid "Noclip mode enabled"
  1167. msgstr "Noclip 모드 활성화"
  1168. #: src/client/game.cpp
  1169. msgid "Noclip mode enabled (note: no 'noclip' privilege)"
  1170. msgstr "Noclip 모드 활성화 (참고 : 'noclip'에 대한 권한 없음)"
  1171. #: src/client/game.cpp
  1172. msgid "Node definitions..."
  1173. msgstr "Node 정의중..."
  1174. #: src/client/game.cpp
  1175. msgid "Off"
  1176. msgstr "끄기"
  1177. #: src/client/game.cpp
  1178. msgid "On"
  1179. msgstr "켜기"
  1180. #: src/client/game.cpp
  1181. msgid "Pitch move mode disabled"
  1182. msgstr "피치 이동 모드 비활성화"
  1183. #: src/client/game.cpp
  1184. msgid "Pitch move mode enabled"
  1185. msgstr "피치 이동 모드 활성화"
  1186. #: src/client/game.cpp
  1187. msgid "Profiler graph shown"
  1188. msgstr "프로파일러 그래프 보이기"
  1189. #: src/client/game.cpp
  1190. msgid "Remote server"
  1191. msgstr "원격 서버"
  1192. #: src/client/game.cpp
  1193. msgid "Resolving address..."
  1194. msgstr "주소 분석중..."
  1195. #: src/client/game.cpp
  1196. msgid "Shutting down..."
  1197. msgstr "서버가 닫혔습니다..."
  1198. #: src/client/game.cpp
  1199. msgid "Singleplayer"
  1200. msgstr "싱글 플레이어"
  1201. #: src/client/game.cpp
  1202. msgid "Sound Volume"
  1203. msgstr "볼륨 조절"
  1204. #: src/client/game.cpp
  1205. msgid "Sound muted"
  1206. msgstr "음소거"
  1207. #: src/client/game.cpp
  1208. msgid "Sound system is disabled"
  1209. msgstr "사운드 시스템 비활성화"
  1210. #: src/client/game.cpp
  1211. msgid "Sound system is not supported on this build"
  1212. msgstr "본 빌드에서 지원되지 않는 사운드 시스템"
  1213. #: src/client/game.cpp
  1214. msgid "Sound unmuted"
  1215. msgstr "음소거 해제"
  1216. #: src/client/game.cpp
  1217. #, c-format
  1218. msgid "The server is probably running a different version of %s."
  1219. msgstr ""
  1220. #: src/client/game.cpp
  1221. #, c-format
  1222. msgid "Unable to connect to %s because IPv6 is disabled"
  1223. msgstr ""
  1224. #: src/client/game.cpp
  1225. #, c-format
  1226. msgid "Unable to listen on %s because IPv6 is disabled"
  1227. msgstr ""
  1228. #: src/client/game.cpp
  1229. #, fuzzy
  1230. msgid "Unlimited viewing range disabled"
  1231. msgstr "제한없는 시야 범위 활성화"
  1232. #: src/client/game.cpp
  1233. #, fuzzy
  1234. msgid "Unlimited viewing range enabled"
  1235. msgstr "제한없는 시야 범위 활성화"
  1236. #: src/client/game.cpp
  1237. msgid "Unlimited viewing range enabled, but forbidden by game or mod"
  1238. msgstr ""
  1239. #: src/client/game.cpp
  1240. #, fuzzy, c-format
  1241. msgid "Viewing changed to %d (the minimum)"
  1242. msgstr "시야 범위 최소치 : %d"
  1243. #: src/client/game.cpp
  1244. #, c-format
  1245. msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod"
  1246. msgstr ""
  1247. #: src/client/game.cpp
  1248. #, c-format
  1249. msgid "Viewing range changed to %d"
  1250. msgstr "시야 범위 %d로 바꿈"
  1251. #: src/client/game.cpp
  1252. #, fuzzy, c-format
  1253. msgid "Viewing range changed to %d (the maximum)"
  1254. msgstr "시야 범위 %d로 바꿈"
  1255. #: src/client/game.cpp
  1256. #, c-format
  1257. msgid ""
  1258. "Viewing range changed to %d (the maximum), but limited to %d by game or mod"
  1259. msgstr ""
  1260. #: src/client/game.cpp
  1261. #, fuzzy, c-format
  1262. msgid "Viewing range changed to %d, but limited to %d by game or mod"
  1263. msgstr "시야 범위 %d로 바꿈"
  1264. #: src/client/game.cpp
  1265. #, c-format
  1266. msgid "Volume changed to %d%%"
  1267. msgstr "볼륨 %d%%로 바꿈"
  1268. #: src/client/game.cpp
  1269. msgid "Wireframe shown"
  1270. msgstr "선 표면 보이기"
  1271. #: src/client/game.cpp
  1272. msgid "Zoom currently disabled by game or mod"
  1273. msgstr "게임 또는 모드에 의해 현재 확대 비활성화"
  1274. #: src/client/gameui.cpp
  1275. #, fuzzy
  1276. msgid "Chat currently disabled by game or mod"
  1277. msgstr "게임 또는 모드에 의해 현재 확대 비활성화"
  1278. #: src/client/gameui.cpp
  1279. msgid "Chat hidden"
  1280. msgstr "채팅 숨기기"
  1281. #: src/client/gameui.cpp
  1282. msgid "Chat shown"
  1283. msgstr "채팅 보이기"
  1284. #: src/client/gameui.cpp
  1285. msgid "HUD hidden"
  1286. msgstr "HUD 숨기기"
  1287. #: src/client/gameui.cpp
  1288. msgid "HUD shown"
  1289. msgstr "HUD 보이기"
  1290. #: src/client/gameui.cpp
  1291. msgid "Profiler hidden"
  1292. msgstr "프로파일러 숨기기"
  1293. #: src/client/gameui.cpp
  1294. #, c-format
  1295. msgid "Profiler shown (page %d of %d)"
  1296. msgstr "프로파일러 보이기 (%d중 %d 페이지)"
  1297. #: src/client/keycode.cpp
  1298. msgid "Apps"
  1299. msgstr "애플리케이션"
  1300. #: src/client/keycode.cpp
  1301. msgid "Backspace"
  1302. msgstr "뒤로"
  1303. #. ~ Usually paired with the Pause key
  1304. #: src/client/keycode.cpp
  1305. #, fuzzy
  1306. msgid "Break Key"
  1307. msgstr "살금살금걷기 키"
  1308. #: src/client/keycode.cpp
  1309. msgid "Caps Lock"
  1310. msgstr "캡스락"
  1311. #: src/client/keycode.cpp
  1312. #, fuzzy
  1313. msgid "Clear Key"
  1314. msgstr "지우기"
  1315. #: src/client/keycode.cpp
  1316. #, fuzzy
  1317. msgid "Control Key"
  1318. msgstr "컨트롤"
  1319. #: src/client/keycode.cpp
  1320. #, fuzzy
  1321. msgid "Delete Key"
  1322. msgstr "삭제"
  1323. #: src/client/keycode.cpp
  1324. msgid "Down Arrow"
  1325. msgstr ""
  1326. #: src/client/keycode.cpp
  1327. msgid "End"
  1328. msgstr "끝"
  1329. #: src/client/keycode.cpp
  1330. msgid "Erase EOF"
  1331. msgstr "EOF 지우기"
  1332. #: src/client/keycode.cpp
  1333. msgid "Execute"
  1334. msgstr "실행"
  1335. #: src/client/keycode.cpp
  1336. msgid "Help"
  1337. msgstr "도움말"
  1338. #: src/client/keycode.cpp
  1339. msgid "Home"
  1340. msgstr "Home"
  1341. #: src/client/keycode.cpp
  1342. msgid "IME Accept"
  1343. msgstr "IME 확인"
  1344. #: src/client/keycode.cpp
  1345. msgid "IME Convert"
  1346. msgstr "IME 변환"
  1347. #: src/client/keycode.cpp
  1348. msgid "IME Escape"
  1349. msgstr "IME 종료"
  1350. #: src/client/keycode.cpp
  1351. msgid "IME Mode Change"
  1352. msgstr "IME 모드 변경"
  1353. #: src/client/keycode.cpp
  1354. msgid "IME Nonconvert"
  1355. msgstr "IME 변환 안함"
  1356. #: src/client/keycode.cpp
  1357. msgid "Insert"
  1358. msgstr "Insert"
  1359. #: src/client/keycode.cpp
  1360. #, fuzzy
  1361. msgid "Left Arrow"
  1362. msgstr "왼쪽 컨트롤"
  1363. #: src/client/keycode.cpp
  1364. msgid "Left Button"
  1365. msgstr "왼쪽 버튼"
  1366. #: src/client/keycode.cpp
  1367. msgid "Left Control"
  1368. msgstr "왼쪽 컨트롤"
  1369. #: src/client/keycode.cpp
  1370. msgid "Left Menu"
  1371. msgstr "왼쪽 메뉴"
  1372. #: src/client/keycode.cpp
  1373. msgid "Left Shift"
  1374. msgstr "왼쪽 쉬프트"
  1375. #: src/client/keycode.cpp
  1376. msgid "Left Windows"
  1377. msgstr "왼쪽 창"
  1378. #. ~ Key name, common on Windows keyboards
  1379. #: src/client/keycode.cpp
  1380. #, fuzzy
  1381. msgid "Menu Key"
  1382. msgstr "메뉴"
  1383. #: src/client/keycode.cpp
  1384. msgid "Middle Button"
  1385. msgstr "가운데 버튼"
  1386. #: src/client/keycode.cpp
  1387. msgid "Num Lock"
  1388. msgstr "Num Lock"
  1389. #: src/client/keycode.cpp
  1390. msgid "Numpad *"
  1391. msgstr "숫자 키패드 *"
  1392. #: src/client/keycode.cpp
  1393. msgid "Numpad +"
  1394. msgstr "숫자 키패드 +"
  1395. #: src/client/keycode.cpp
  1396. msgid "Numpad -"
  1397. msgstr "숫자 키패드 -"
  1398. #: src/client/keycode.cpp
  1399. msgid "Numpad ."
  1400. msgstr "숫자 키패드 ."
  1401. #: src/client/keycode.cpp
  1402. msgid "Numpad /"
  1403. msgstr "숫자 키패드 /"
  1404. #: src/client/keycode.cpp
  1405. msgid "Numpad 0"
  1406. msgstr "숫자 키패드 0"
  1407. #: src/client/keycode.cpp
  1408. msgid "Numpad 1"
  1409. msgstr "숫자 키패드 1"
  1410. #: src/client/keycode.cpp
  1411. msgid "Numpad 2"
  1412. msgstr "숫자 키패드 2"
  1413. #: src/client/keycode.cpp
  1414. msgid "Numpad 3"
  1415. msgstr "숫자 키패드 3"
  1416. #: src/client/keycode.cpp
  1417. msgid "Numpad 4"
  1418. msgstr "숫자 키패드 4"
  1419. #: src/client/keycode.cpp
  1420. msgid "Numpad 5"
  1421. msgstr "숫자 키패드 5"
  1422. #: src/client/keycode.cpp
  1423. msgid "Numpad 6"
  1424. msgstr "숫자 키패드 6"
  1425. #: src/client/keycode.cpp
  1426. msgid "Numpad 7"
  1427. msgstr "숫자 키패드 7"
  1428. #: src/client/keycode.cpp
  1429. msgid "Numpad 8"
  1430. msgstr "숫자 키패드 8"
  1431. #: src/client/keycode.cpp
  1432. msgid "Numpad 9"
  1433. msgstr "숫자 키패드 9"
  1434. #: src/client/keycode.cpp
  1435. msgid "OEM Clear"
  1436. msgstr "OEM 초기화"
  1437. #: src/client/keycode.cpp
  1438. #, fuzzy
  1439. msgid "Page Down"
  1440. msgstr "페이지 내리기"
  1441. #: src/client/keycode.cpp
  1442. #, fuzzy
  1443. msgid "Page Up"
  1444. msgstr "페이지 올리기"
  1445. #. ~ Usually paired with the Break key
  1446. #: src/client/keycode.cpp
  1447. #, fuzzy
  1448. msgid "Pause Key"
  1449. msgstr "일시 정지"
  1450. #: src/client/keycode.cpp
  1451. msgid "Play"
  1452. msgstr "시작"
  1453. #. ~ "Print screen" key
  1454. #: src/client/keycode.cpp
  1455. msgid "Print"
  1456. msgstr "출력"
  1457. #: src/client/keycode.cpp
  1458. #, fuzzy
  1459. msgid "Return Key"
  1460. msgstr "되돌리기"
  1461. #: src/client/keycode.cpp
  1462. #, fuzzy
  1463. msgid "Right Arrow"
  1464. msgstr "오른쪽 컨트롤"
  1465. #: src/client/keycode.cpp
  1466. msgid "Right Button"
  1467. msgstr "오른쪽 버튼"
  1468. #: src/client/keycode.cpp
  1469. msgid "Right Control"
  1470. msgstr "오른쪽 컨트롤"
  1471. #: src/client/keycode.cpp
  1472. msgid "Right Menu"
  1473. msgstr "오른쪽 메뉴"
  1474. #: src/client/keycode.cpp
  1475. msgid "Right Shift"
  1476. msgstr "오른쪽 쉬프트"
  1477. #: src/client/keycode.cpp
  1478. msgid "Right Windows"
  1479. msgstr "오른쪽 창"
  1480. #: src/client/keycode.cpp
  1481. msgid "Scroll Lock"
  1482. msgstr "스크롤 락"
  1483. #. ~ Key name
  1484. #: src/client/keycode.cpp
  1485. msgid "Select"
  1486. msgstr "선택"
  1487. #: src/client/keycode.cpp
  1488. #, fuzzy
  1489. msgid "Shift Key"
  1490. msgstr "쉬프트"
  1491. #: src/client/keycode.cpp
  1492. msgid "Sleep"
  1493. msgstr "잠자기"
  1494. #: src/client/keycode.cpp
  1495. msgid "Snapshot"
  1496. msgstr "스냅샷"
  1497. #: src/client/keycode.cpp
  1498. msgid "Space"
  1499. msgstr "스페이스바"
  1500. #: src/client/keycode.cpp
  1501. msgid "Tab"
  1502. msgstr "탭"
  1503. #: src/client/keycode.cpp
  1504. msgid "Up Arrow"
  1505. msgstr ""
  1506. #: src/client/keycode.cpp
  1507. msgid "X Button 1"
  1508. msgstr "X 버튼 1"
  1509. #: src/client/keycode.cpp
  1510. msgid "X Button 2"
  1511. msgstr "X 버튼 2"
  1512. #: src/client/keycode.cpp
  1513. #, fuzzy
  1514. msgid "Zoom Key"
  1515. msgstr "확대/축소"
  1516. #: src/client/minimap.cpp
  1517. msgid "Minimap hidden"
  1518. msgstr "미니맵 숨김"
  1519. #: src/client/minimap.cpp
  1520. #, fuzzy, c-format
  1521. msgid "Minimap in radar mode, Zoom x%d"
  1522. msgstr "레이더 모드의 미니맵, 1배 확대"
  1523. #: src/client/minimap.cpp
  1524. #, fuzzy, c-format
  1525. msgid "Minimap in surface mode, Zoom x%d"
  1526. msgstr "표면 모드의 미니맵, 1배 확대"
  1527. #: src/client/minimap.cpp
  1528. #, fuzzy
  1529. msgid "Minimap in texture mode"
  1530. msgstr "최소 텍스처 크기"
  1531. #: src/client/shader.cpp
  1532. #, fuzzy, c-format
  1533. msgid "Failed to compile the \"%s\" shader."
  1534. msgstr "$1을 다운로드하는 데에 실패했습니다"
  1535. #: src/client/shader.cpp
  1536. msgid "Shaders are enabled but GLSL is not supported by the driver."
  1537. msgstr ""
  1538. #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3"
  1539. #: src/content/mod_configuration.cpp
  1540. #, c-format
  1541. msgid "%s is missing:"
  1542. msgstr ""
  1543. #: src/content/mod_configuration.cpp
  1544. msgid ""
  1545. "Install and enable the required mods, or disable the mods causing errors."
  1546. msgstr ""
  1547. #: src/content/mod_configuration.cpp
  1548. msgid ""
  1549. "Note: this may be caused by a dependency cycle, in which case try updating "
  1550. "the mods."
  1551. msgstr ""
  1552. #: src/content/mod_configuration.cpp
  1553. #, fuzzy
  1554. msgid "Some mods have unsatisfied dependencies:"
  1555. msgstr "요구사항 없음"
  1556. #: src/gui/guiChatConsole.cpp
  1557. #, fuzzy
  1558. msgid "Failed to open webpage"
  1559. msgstr "$1을 다운로드하는 데에 실패했습니다"
  1560. #: src/gui/guiChatConsole.cpp
  1561. msgid "Opening webpage"
  1562. msgstr ""
  1563. #: src/gui/guiFormSpecMenu.cpp
  1564. msgid "Proceed"
  1565. msgstr "계속하기"
  1566. #: src/gui/guiKeyChangeMenu.cpp
  1567. #, fuzzy
  1568. msgid "\"Aux1\" = climb down"
  1569. msgstr "\"특별함\" = 아래로 타고 내려가기"
  1570. #: src/gui/guiKeyChangeMenu.cpp
  1571. msgid "Autoforward"
  1572. msgstr "자동전진"
  1573. #: src/gui/guiKeyChangeMenu.cpp src/settings_translation_file.cpp
  1574. msgid "Automatic jumping"
  1575. msgstr "자동 점프"
  1576. #: src/gui/guiKeyChangeMenu.cpp
  1577. msgid "Aux1"
  1578. msgstr ""
  1579. #: src/gui/guiKeyChangeMenu.cpp
  1580. msgid "Backward"
  1581. msgstr "뒤로"
  1582. #: src/gui/guiKeyChangeMenu.cpp
  1583. msgid "Block bounds"
  1584. msgstr ""
  1585. #: src/gui/guiKeyChangeMenu.cpp
  1586. msgid "Change camera"
  1587. msgstr "카메라 변경"
  1588. #: src/gui/guiKeyChangeMenu.cpp
  1589. msgid "Command"
  1590. msgstr "명령어"
  1591. #: src/gui/guiKeyChangeMenu.cpp
  1592. msgid "Console"
  1593. msgstr "콘솔"
  1594. #: src/gui/guiKeyChangeMenu.cpp
  1595. msgid "Dec. range"
  1596. msgstr "범위 감소"
  1597. #: src/gui/guiKeyChangeMenu.cpp
  1598. msgid "Dec. volume"
  1599. msgstr "볼륨 줄이기"
  1600. #: src/gui/guiKeyChangeMenu.cpp
  1601. msgid "Double tap \"jump\" to toggle fly"
  1602. msgstr "\"점프\"를 두번 탭하여 비행"
  1603. #: src/gui/guiKeyChangeMenu.cpp
  1604. msgid "Drop"
  1605. msgstr "드롭하기"
  1606. #: src/gui/guiKeyChangeMenu.cpp
  1607. msgid "Forward"
  1608. msgstr "앞으로"
  1609. #: src/gui/guiKeyChangeMenu.cpp
  1610. msgid "Inc. range"
  1611. msgstr "범위 증가"
  1612. #: src/gui/guiKeyChangeMenu.cpp
  1613. msgid "Inc. volume"
  1614. msgstr "볼륨 늘리기"
  1615. #: src/gui/guiKeyChangeMenu.cpp
  1616. msgid "Inventory"
  1617. msgstr "인벤토리"
  1618. #: src/gui/guiKeyChangeMenu.cpp
  1619. msgid "Jump"
  1620. msgstr "점프"
  1621. #: src/gui/guiKeyChangeMenu.cpp
  1622. msgid "Key already in use"
  1623. msgstr "이미 사용하고 있는 키입니다"
  1624. #: src/gui/guiKeyChangeMenu.cpp
  1625. msgid "Keybindings."
  1626. msgstr ""
  1627. #: src/gui/guiKeyChangeMenu.cpp
  1628. msgid "Left"
  1629. msgstr "왼쪽"
  1630. #: src/gui/guiKeyChangeMenu.cpp
  1631. msgid "Local command"
  1632. msgstr "지역 명령어"
  1633. #: src/gui/guiKeyChangeMenu.cpp
  1634. msgid "Mute"
  1635. msgstr "음소거"
  1636. #: src/gui/guiKeyChangeMenu.cpp
  1637. msgid "Next item"
  1638. msgstr "다음 아이템"
  1639. #: src/gui/guiKeyChangeMenu.cpp
  1640. msgid "Prev. item"
  1641. msgstr "이전.아이템"
  1642. #: src/gui/guiKeyChangeMenu.cpp
  1643. msgid "Range select"
  1644. msgstr "범위 선택"
  1645. #: src/gui/guiKeyChangeMenu.cpp
  1646. msgid "Right"
  1647. msgstr "오른쪽"
  1648. #: src/gui/guiKeyChangeMenu.cpp
  1649. msgid "Screenshot"
  1650. msgstr "스크린샷"
  1651. #: src/gui/guiKeyChangeMenu.cpp
  1652. msgid "Sneak"
  1653. msgstr "살금살금"
  1654. #: src/gui/guiKeyChangeMenu.cpp
  1655. msgid "Toggle HUD"
  1656. msgstr "HUD 토글"
  1657. #: src/gui/guiKeyChangeMenu.cpp
  1658. msgid "Toggle chat log"
  1659. msgstr "채팅 기록 토글"
  1660. #: src/gui/guiKeyChangeMenu.cpp
  1661. msgid "Toggle fast"
  1662. msgstr "고속 스위치"
  1663. #: src/gui/guiKeyChangeMenu.cpp
  1664. msgid "Toggle fly"
  1665. msgstr "비행 스위치"
  1666. #: src/gui/guiKeyChangeMenu.cpp
  1667. msgid "Toggle fog"
  1668. msgstr "안개 토글"
  1669. #: src/gui/guiKeyChangeMenu.cpp
  1670. msgid "Toggle minimap"
  1671. msgstr "미니맵 토글"
  1672. #: src/gui/guiKeyChangeMenu.cpp
  1673. msgid "Toggle noclip"
  1674. msgstr "자유시점 스위치"
  1675. #: src/gui/guiKeyChangeMenu.cpp
  1676. msgid "Toggle pitchmove"
  1677. msgstr "피치 이동 토글"
  1678. #: src/gui/guiKeyChangeMenu.cpp
  1679. msgid "Zoom"
  1680. msgstr "확대/축소"
  1681. #: src/gui/guiKeyChangeMenu.cpp
  1682. msgid "press key"
  1683. msgstr "키를 누르세요"
  1684. #: src/gui/guiOpenURL.cpp
  1685. msgid "Open"
  1686. msgstr ""
  1687. #: src/gui/guiOpenURL.cpp
  1688. msgid "Open URL?"
  1689. msgstr ""
  1690. #: src/gui/guiOpenURL.cpp
  1691. #, fuzzy
  1692. msgid "Unable to open URL"
  1693. msgstr "$1을 다운로드하는 데에 실패했습니다"
  1694. #: src/gui/guiPasswordChange.cpp
  1695. msgid "Change"
  1696. msgstr "변경"
  1697. #: src/gui/guiPasswordChange.cpp
  1698. msgid "New Password"
  1699. msgstr "새로운 비밀번호"
  1700. #: src/gui/guiPasswordChange.cpp
  1701. msgid "Old Password"
  1702. msgstr "현재 비밀번호"
  1703. #: src/gui/guiPasswordChange.cpp
  1704. msgid "Passwords do not match!"
  1705. msgstr "비밀번호가 맞지 않습니다!"
  1706. #: src/gui/guiVolumeChange.cpp
  1707. msgid "Exit"
  1708. msgstr "나가기"
  1709. #: src/gui/guiVolumeChange.cpp
  1710. msgid "Muted"
  1711. msgstr "음소거"
  1712. #: src/gui/guiVolumeChange.cpp
  1713. #, fuzzy, c-format
  1714. msgid "Sound Volume: %d%%"
  1715. msgstr "볼륨 조절: "
  1716. #. ~ DO NOT TRANSLATE THIS LITERALLY!
  1717. #. This is a special string which needs to contain the translation's
  1718. #. language code (e.g. "de" for German).
  1719. #: src/network/clientpackethandler.cpp src/script/lua_api/l_client.cpp
  1720. #: src/script/lua_api/l_mainmenu.cpp
  1721. msgid "LANG_CODE"
  1722. msgstr "ko"
  1723. #: src/network/clientpackethandler.cpp
  1724. msgid ""
  1725. "Name is not registered. To create an account on this server, click 'Register'"
  1726. msgstr ""
  1727. #: src/network/clientpackethandler.cpp
  1728. #, fuzzy
  1729. msgid "Name is taken. Please choose another name"
  1730. msgstr "이름을 선택하세요!"
  1731. #: src/server.cpp
  1732. #, fuzzy, c-format
  1733. msgid "%s while shutting down: "
  1734. msgstr "서버가 닫혔습니다..."
  1735. #: src/settings_translation_file.cpp
  1736. msgid ""
  1737. "(X,Y,Z) offset of fractal from world center in units of 'scale'.\n"
  1738. "Can be used to move a desired point to (0, 0) to create a\n"
  1739. "suitable spawn point, or to allow 'zooming in' on a desired\n"
  1740. "point by increasing 'scale'.\n"
  1741. "The default is tuned for a suitable spawn point for Mandelbrot\n"
  1742. "sets with default parameters, it may need altering in other\n"
  1743. "situations.\n"
  1744. "Range roughly -2 to 2. Multiply by 'scale' for offset in nodes."
  1745. msgstr ""
  1746. "(X, Y, Z) '스케일' 단위로 세계 중심을 기준으로 프랙탈 오프셋을 정합니다.\n"
  1747. "원하는 지점을 (0, 0)으로 이동하여 적합한 스폰 지점을 만들거나 \n"
  1748. "'스케일'을 늘려 원하는 지점에서 '확대'할 수 있습니다.\n"
  1749. "기본값은 기본 매개 변수가있는 Mandelbrot 세트에 적합한 스폰 지점에 맞게 조정"
  1750. "되어 있으며 \n"
  1751. "다른 상황에서 변경해야 할 수도 있습니다. \n"
  1752. "범위는 대략 -2 ~ 2입니다. \n"
  1753. "노드의 오프셋에 대해\n"
  1754. "'스케일'을 곱합니다."
  1755. #: src/settings_translation_file.cpp
  1756. msgid ""
  1757. "(X,Y,Z) scale of fractal in nodes.\n"
  1758. "Actual fractal size will be 2 to 3 times larger.\n"
  1759. "These numbers can be made very large, the fractal does\n"
  1760. "not have to fit inside the world.\n"
  1761. "Increase these to 'zoom' into the detail of the fractal.\n"
  1762. "Default is for a vertically-squashed shape suitable for\n"
  1763. "an island, set all 3 numbers equal for the raw shape."
  1764. msgstr ""
  1765. "노드에서 프랙탈의 (X, Y, Z) 스케일.\n"
  1766. "실제 프랙탈 크기는 2 ~ 3 배 더 큽니다.\n"
  1767. "이 숫자는 매우 크게 만들 수 있으며 프랙탈은 세계에 맞지 않아도됩니다.\n"
  1768. "프랙탈의 세부 사항을 '확대'하도록 늘리십시오.\n"
  1769. "기본값은 섬에 적합한 수직으로 쪼개진 모양이며 \n"
  1770. "기존 모양에 대해 3 개의 숫자를 \n"
  1771. "모두 동일하게 설정합니다."
  1772. #: src/settings_translation_file.cpp
  1773. msgid "2D noise that controls the shape/size of ridged mountains."
  1774. msgstr "산의 모양 / 크기를 제어하는 2D 노이즈."
  1775. #: src/settings_translation_file.cpp
  1776. msgid "2D noise that controls the shape/size of rolling hills."
  1777. msgstr "언덕의 모양 / 크기를 제어하는 2D 노이즈."
  1778. #: src/settings_translation_file.cpp
  1779. msgid "2D noise that controls the shape/size of step mountains."
  1780. msgstr "계단 형태 산의 모양 / 크기를 제어하는 2D 노이즈."
  1781. #: src/settings_translation_file.cpp
  1782. msgid "2D noise that controls the size/occurrence of ridged mountain ranges."
  1783. msgstr "능선 산맥의 크기 / 발생정도를 제어하는 2D 노이즈."
  1784. #: src/settings_translation_file.cpp
  1785. msgid "2D noise that controls the size/occurrence of rolling hills."
  1786. msgstr "언덕의 크기 / 발생정도를 제어하는 2D 노이즈."
  1787. #: src/settings_translation_file.cpp
  1788. msgid "2D noise that controls the size/occurrence of step mountain ranges."
  1789. msgstr "계단 형태의 산맥의 크기 / 발생정도를 제어하는 2D 노이즈."
  1790. #: src/settings_translation_file.cpp
  1791. msgid "2D noise that locates the river valleys and channels."
  1792. msgstr "강 계곡과 채널에 위치한 2D 노이즈."
  1793. #: src/settings_translation_file.cpp
  1794. msgid "3D"
  1795. msgstr ""
  1796. #: src/settings_translation_file.cpp
  1797. msgid "3D clouds"
  1798. msgstr "3D 구름 효과"
  1799. #: src/settings_translation_file.cpp
  1800. msgid "3D mode"
  1801. msgstr "3D 모드"
  1802. #: src/settings_translation_file.cpp
  1803. msgid "3D mode parallax strength"
  1804. msgstr "3D 모드 시차 강도"
  1805. #: src/settings_translation_file.cpp
  1806. msgid "3D noise defining giant caverns."
  1807. msgstr "거대한 동굴을 정의하는 3D 노이즈."
  1808. #: src/settings_translation_file.cpp
  1809. msgid ""
  1810. "3D noise defining mountain structure and height.\n"
  1811. "Also defines structure of floatland mountain terrain."
  1812. msgstr ""
  1813. "산의 구조와 높이를 정의하는 3D 노이즈.\n"
  1814. "또한 수상 지형 산악 지형의 구조를 정의합니다."
  1815. #: src/settings_translation_file.cpp
  1816. msgid ""
  1817. "3D noise defining structure of floatlands.\n"
  1818. "If altered from the default, the noise 'scale' (0.7 by default) may need\n"
  1819. "to be adjusted, as floatland tapering functions best when this noise has\n"
  1820. "a value range of approximately -2.0 to 2.0."
  1821. msgstr ""
  1822. "플롯랜드의 구조를 정의하는 3D 노이즈.\n"
  1823. "기본값에서 변경하면 노이즈 '스케일'(기본값 0.7)이 필요할 수 있습니다.\n"
  1824. "이 소음의 값 범위가 약 -2.0 ~ 2.0 일 때 플로 트랜드 테이퍼링이 가장 잘 작동하"
  1825. "므로 \n"
  1826. "조정해야합니다."
  1827. #: src/settings_translation_file.cpp
  1828. msgid "3D noise defining structure of river canyon walls."
  1829. msgstr "강 협곡 벽의 구조를 정의하는 3D 노이즈."
  1830. #: src/settings_translation_file.cpp
  1831. msgid "3D noise defining terrain."
  1832. msgstr "지형을 정의하는 3D 노이즈."
  1833. #: src/settings_translation_file.cpp
  1834. msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations."
  1835. msgstr ""
  1836. "산 돌출부, 절벽 등에 대한 3D 노이즈. 일반적으로 작은 변화로 나타납니다."
  1837. #: src/settings_translation_file.cpp
  1838. msgid "3D noise that determines number of dungeons per mapchunk."
  1839. msgstr "맵 당 던전 수를 결정하는 3D 노이즈."
  1840. #: src/settings_translation_file.cpp
  1841. #, fuzzy
  1842. msgid ""
  1843. "3D support.\n"
  1844. "Currently supported:\n"
  1845. "- none: no 3d output.\n"
  1846. "- anaglyph: cyan/magenta color 3d.\n"
  1847. "- interlaced: odd/even line based polarization screen support.\n"
  1848. "- topbottom: split screen top/bottom.\n"
  1849. "- sidebyside: split screen side by side.\n"
  1850. "- crossview: Cross-eyed 3d\n"
  1851. "Note that the interlaced mode requires shaders to be enabled."
  1852. msgstr ""
  1853. "3D 지원.\n"
  1854. "현재 지원되는 것:\n"
  1855. "- 없음: 3d 출력 없음.\n"
  1856. "- 입체 사진: 청록색/자홍색 3d.\n"
  1857. "- interlaced: odd/even line based polarisation screen support.↵\n"
  1858. "- topbottom: split screen top/bottom.↵\n"
  1859. "- sidebyside: split screen side by side.↵\n"
  1860. "- pageflip: quadbuffer based 3d."
  1861. #: src/settings_translation_file.cpp
  1862. msgid ""
  1863. "A chosen map seed for a new map, leave empty for random.\n"
  1864. "Will be overridden when creating a new world in the main menu."
  1865. msgstr ""
  1866. "새로운 맵을 위해 선택할 시드, 빈칸이면 랜덤입니다.\n"
  1867. "메인메뉴에서 새로운 월드를 만들때 재정의 될 것입니다."
  1868. #: src/settings_translation_file.cpp
  1869. msgid "A message to be displayed to all clients when the server crashes."
  1870. msgstr "서버 충돌 하는 경우 모든 사용자들에게 표시 될 메시지입니다."
  1871. #: src/settings_translation_file.cpp
  1872. msgid "A message to be displayed to all clients when the server shuts down."
  1873. msgstr "서버가 닫힐 때 모든 사용자들에게 표시 될 메시지입니다."
  1874. #: src/settings_translation_file.cpp
  1875. msgid "ABM interval"
  1876. msgstr "ABM 간격"
  1877. #: src/settings_translation_file.cpp
  1878. msgid "ABM time budget"
  1879. msgstr ""
  1880. #: src/settings_translation_file.cpp
  1881. msgid "Absolute limit of queued blocks to emerge"
  1882. msgstr "대기중인 블록의 절대 한계"
  1883. #: src/settings_translation_file.cpp
  1884. msgid "Acceleration in air"
  1885. msgstr "공중에서 가속"
  1886. #: src/settings_translation_file.cpp
  1887. msgid "Acceleration of gravity, in nodes per second per second."
  1888. msgstr "중력 가속도, 노드는 초당 노드입니다."
  1889. #: src/settings_translation_file.cpp
  1890. msgid "Active Block Modifiers"
  1891. msgstr "블록 수식어 활성"
  1892. #: src/settings_translation_file.cpp
  1893. msgid "Active block management interval"
  1894. msgstr "블록 관리 간격 활성화"
  1895. #: src/settings_translation_file.cpp
  1896. msgid "Active block range"
  1897. msgstr "블록 범위 활성"
  1898. #: src/settings_translation_file.cpp
  1899. msgid "Active object send range"
  1900. msgstr "객체 전달 범위 활성화"
  1901. #: src/settings_translation_file.cpp
  1902. msgid "Adds particles when digging a node."
  1903. msgstr "node를 부술 때의 파티클 효과를 추가합니다."
  1904. #: src/settings_translation_file.cpp
  1905. msgid "Adjust the detected display density, used for scaling UI elements."
  1906. msgstr ""
  1907. #: src/settings_translation_file.cpp
  1908. #, c-format
  1909. msgid ""
  1910. "Adjusts the density of the floatland layer.\n"
  1911. "Increase value to increase density. Can be positive or negative.\n"
  1912. "Value = 0.0: 50% of volume is floatland.\n"
  1913. "Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n"
  1914. "to be sure) creates a solid floatland layer."
  1915. msgstr ""
  1916. "플롯랜드 레이어의 밀도를 조정합니다.\n"
  1917. "밀도를 높이려면 값을 늘리십시오. 양수 또는 음수입니다.\n"
  1918. "값 = 0.0 : 부피의 50 % o가 플롯랜드입니다.\n"
  1919. "값 = 2.0 ( 'mgv7_np_floatland'에 따라 더 높을 수 있음, \n"
  1920. "항상 확실하게 테스트 후 사용)는 단단한 플롯랜드 레이어를 만듭니다."
  1921. #: src/settings_translation_file.cpp
  1922. #, fuzzy
  1923. msgid "Admin name"
  1924. msgstr "아이템 이름 추가"
  1925. #: src/settings_translation_file.cpp
  1926. msgid "Advanced"
  1927. msgstr "고급"
  1928. #: src/settings_translation_file.cpp
  1929. msgid "Allows liquids to be translucent."
  1930. msgstr ""
  1931. #: src/settings_translation_file.cpp
  1932. msgid ""
  1933. "Alters the light curve by applying 'gamma correction' to it.\n"
  1934. "Higher values make middle and lower light levels brighter.\n"
  1935. "Value '1.0' leaves the light curve unaltered.\n"
  1936. "This only has significant effect on daylight and artificial\n"
  1937. "light, it has very little effect on natural night light."
  1938. msgstr ""
  1939. "'감마 보정'을 적용하여 조명 곡선을 변경합니다.\n"
  1940. "값이 높을수록 중간 및 낮은 조명 수준이 더 밝아집니다.\n"
  1941. "값 '1.0'은 조명 곡선을 변경하지 않습니다.\n"
  1942. "이것은 일광 및 인공 조명에만 중요한 영향을 미칩니다.\n"
  1943. "빛은, 자연적인 야간 조명에 거의 영향을 미치지 않습니다."
  1944. #: src/settings_translation_file.cpp
  1945. #, fuzzy
  1946. msgid "Always fly fast"
  1947. msgstr "항상 비행 및 고속 모드"
  1948. #: src/settings_translation_file.cpp
  1949. msgid "Ambient occlusion gamma"
  1950. msgstr "주변 occlusion 감마"
  1951. #: src/settings_translation_file.cpp
  1952. msgid "Amplifies the valleys."
  1953. msgstr "계곡 증폭."
  1954. #: src/settings_translation_file.cpp
  1955. msgid "Anisotropic filtering"
  1956. msgstr "이방성 필터링"
  1957. #: src/settings_translation_file.cpp
  1958. msgid "Announce server"
  1959. msgstr "서버 공지"
  1960. #: src/settings_translation_file.cpp
  1961. msgid "Announce to this serverlist."
  1962. msgstr "이 서버 목록에 알림."
  1963. #: src/settings_translation_file.cpp
  1964. #, fuzzy
  1965. msgid "Anti-aliasing scale"
  1966. msgstr "매끄럽게 표현하기:"
  1967. #: src/settings_translation_file.cpp
  1968. #, fuzzy
  1969. msgid "Antialiasing method"
  1970. msgstr "매끄럽게 표현하기:"
  1971. #: src/settings_translation_file.cpp
  1972. msgid "Append item name"
  1973. msgstr "아이템 이름 추가"
  1974. #: src/settings_translation_file.cpp
  1975. msgid "Append item name to tooltip."
  1976. msgstr "툴팁에 아이템 이름 추가."
  1977. #: src/settings_translation_file.cpp
  1978. msgid "Apple trees noise"
  1979. msgstr "사과 나무 노이즈"
  1980. #: src/settings_translation_file.cpp
  1981. msgid ""
  1982. "Apply dithering to reduce color banding artifacts.\n"
  1983. "Dithering significantly increases the size of losslessly-compressed\n"
  1984. "screenshots and it works incorrectly if the display or operating system\n"
  1985. "performs additional dithering or if the color channels are not quantized\n"
  1986. "to 8 bits.\n"
  1987. "With OpenGL ES, dithering only works if the shader supports high\n"
  1988. "floating-point precision and it may have a higher performance impact."
  1989. msgstr ""
  1990. #: src/settings_translation_file.cpp
  1991. msgid "Arm inertia"
  1992. msgstr "팔 관성"
  1993. #: src/settings_translation_file.cpp
  1994. msgid ""
  1995. "Arm inertia, gives a more realistic movement of\n"
  1996. "the arm when the camera moves."
  1997. msgstr ""
  1998. "팔 관성,보다 현실적인 움직임을 제공합니다.\n"
  1999. "카메라가 움직일 때 팔도 함께 움직입니다."
  2000. #: src/settings_translation_file.cpp
  2001. msgid "Ask to reconnect after crash"
  2002. msgstr "충돌 후 재연결 요청"
  2003. #: src/settings_translation_file.cpp
  2004. #, fuzzy
  2005. msgid ""
  2006. "At this distance the server will aggressively optimize which blocks are sent "
  2007. "to\n"
  2008. "clients.\n"
  2009. "Small values potentially improve performance a lot, at the expense of "
  2010. "visible\n"
  2011. "rendering glitches (some blocks might not be rendered correctly in caves).\n"
  2012. "Setting this to a value greater than max_block_send_distance disables this\n"
  2013. "optimization.\n"
  2014. "Stated in MapBlocks (16 nodes)."
  2015. msgstr ""
  2016. "이 거리에서 서버는 클라이언트로 전송되는 블록의 최적화를\n"
  2017. "활성화합니다.\n"
  2018. "작은 값은 눈에 띄는 렌더링 결함을 통해 \n"
  2019. "잠재적으로 성능을 크게 향상시킵니다 \n"
  2020. "(일부 블록은 수중과 동굴, 때로는 육지에서도 렌더링되지 않습니다).\n"
  2021. "이 값을 max_block_send_distance보다 큰 값으로 설정하면 \n"
  2022. "최적화가 비활성화됩니다.\n"
  2023. "맵 블록 (16 개 노드)에 명시되어 있습니다."
  2024. #: src/settings_translation_file.cpp
  2025. #, fuzzy
  2026. msgid ""
  2027. "At this distance the server will perform a simpler and cheaper occlusion "
  2028. "check.\n"
  2029. "Smaller values potentially improve performance, at the expense of "
  2030. "temporarily visible\n"
  2031. "rendering glitches (missing blocks).\n"
  2032. "This is especially useful for very large viewing range (upwards of 500).\n"
  2033. "Stated in MapBlocks (16 nodes)."
  2034. msgstr ""
  2035. "이 거리에서 서버는 클라이언트로 전송되는 블록의 최적화를\n"
  2036. "활성화합니다.\n"
  2037. "작은 값은 눈에 띄는 렌더링 결함을 통해 \n"
  2038. "잠재적으로 성능을 크게 향상시킵니다 \n"
  2039. "(일부 블록은 수중과 동굴, 때로는 육지에서도 렌더링되지 않습니다).\n"
  2040. "이 값을 max_block_send_distance보다 큰 값으로 설정하면 \n"
  2041. "최적화가 비활성화됩니다.\n"
  2042. "맵 블록 (16 개 노드)에 명시되어 있습니다."
  2043. #: src/settings_translation_file.cpp
  2044. msgid "Audio"
  2045. msgstr ""
  2046. #: src/settings_translation_file.cpp
  2047. msgid "Automatically jump up single-node obstacles."
  2048. msgstr "단일 노드 장애물에 대한 자동 점프."
  2049. #: src/settings_translation_file.cpp
  2050. msgid "Automatically report to the serverlist."
  2051. msgstr "서버 목록에 자동으로 보고."
  2052. #: src/settings_translation_file.cpp
  2053. msgid "Autoscaling mode"
  2054. msgstr "자동 스케일링 모드"
  2055. #: src/settings_translation_file.cpp
  2056. #, fuzzy
  2057. msgid "Aux1 key for climbing/descending"
  2058. msgstr "오르기/내리기 에 사용되는 특수키"
  2059. #: src/settings_translation_file.cpp
  2060. msgid "Base ground level"
  2061. msgstr "기본 지면 수준"
  2062. #: src/settings_translation_file.cpp
  2063. msgid "Base terrain height."
  2064. msgstr "기본 지형 높이."
  2065. #: src/settings_translation_file.cpp
  2066. #, fuzzy
  2067. msgid "Base texture size"
  2068. msgstr "최소 텍스처 크기"
  2069. #: src/settings_translation_file.cpp
  2070. msgid "Basic privileges"
  2071. msgstr "기본 권한"
  2072. #: src/settings_translation_file.cpp
  2073. msgid "Beach noise"
  2074. msgstr "해변 잡음"
  2075. #: src/settings_translation_file.cpp
  2076. msgid "Beach noise threshold"
  2077. msgstr "해변 잡음 임계치"
  2078. #: src/settings_translation_file.cpp
  2079. msgid "Bilinear filtering"
  2080. msgstr "이중 선형 필터링"
  2081. #: src/settings_translation_file.cpp
  2082. msgid "Bind address"
  2083. msgstr "바인딩 주소"
  2084. #: src/settings_translation_file.cpp
  2085. #, fuzzy
  2086. msgid "Biome API"
  2087. msgstr "생물 군계"
  2088. #: src/settings_translation_file.cpp
  2089. msgid "Biome noise"
  2090. msgstr "Biome 노이즈"
  2091. #: src/settings_translation_file.cpp
  2092. #, fuzzy
  2093. msgid "Block cull optimize distance"
  2094. msgstr "블록 전송 최적화 거리"
  2095. #: src/settings_translation_file.cpp
  2096. msgid "Block send optimize distance"
  2097. msgstr "블록 전송 최적화 거리"
  2098. #: src/settings_translation_file.cpp
  2099. msgid "Bloom"
  2100. msgstr ""
  2101. #: src/settings_translation_file.cpp
  2102. msgid "Bloom Intensity"
  2103. msgstr ""
  2104. #: src/settings_translation_file.cpp
  2105. #, fuzzy
  2106. msgid "Bloom Radius"
  2107. msgstr "구름 반지름"
  2108. #: src/settings_translation_file.cpp
  2109. msgid "Bloom Strength Factor"
  2110. msgstr ""
  2111. #: src/settings_translation_file.cpp
  2112. msgid "Bobbing"
  2113. msgstr ""
  2114. #: src/settings_translation_file.cpp
  2115. msgid "Bold and italic font path"
  2116. msgstr "굵은 기울임 꼴 글꼴 경로"
  2117. #: src/settings_translation_file.cpp
  2118. msgid "Bold and italic monospace font path"
  2119. msgstr "굵은 기울임 꼴 고정 폭 글꼴 경로"
  2120. #: src/settings_translation_file.cpp
  2121. msgid "Bold font path"
  2122. msgstr "굵은 글꼴 경로"
  2123. #: src/settings_translation_file.cpp
  2124. msgid "Bold monospace font path"
  2125. msgstr "굵은 고정 폭 글꼴 경로"
  2126. #: src/settings_translation_file.cpp
  2127. msgid "Build inside player"
  2128. msgstr "내부 사용자 빌드"
  2129. #: src/settings_translation_file.cpp
  2130. msgid "Builtin"
  2131. msgstr "기본 제공"
  2132. #: src/settings_translation_file.cpp
  2133. #, fuzzy
  2134. msgid "Camera"
  2135. msgstr "카메라 변경"
  2136. #: src/settings_translation_file.cpp
  2137. msgid "Camera smoothing"
  2138. msgstr "카메라를 부드럽게"
  2139. #: src/settings_translation_file.cpp
  2140. msgid "Camera smoothing in cinematic mode"
  2141. msgstr "시네마틱 모드에서 카메라 부드럽게"
  2142. #: src/settings_translation_file.cpp
  2143. msgid "Cave noise"
  2144. msgstr "동굴 잡음"
  2145. #: src/settings_translation_file.cpp
  2146. msgid "Cave noise #1"
  2147. msgstr "동굴 잡음 #1"
  2148. #: src/settings_translation_file.cpp
  2149. msgid "Cave noise #2"
  2150. msgstr "동굴 잡음 #2"
  2151. #: src/settings_translation_file.cpp
  2152. msgid "Cave width"
  2153. msgstr "동굴 너비"
  2154. #: src/settings_translation_file.cpp
  2155. msgid "Cave1 noise"
  2156. msgstr "동굴1 잡음"
  2157. #: src/settings_translation_file.cpp
  2158. msgid "Cave2 noise"
  2159. msgstr "동굴2 잡음"
  2160. #: src/settings_translation_file.cpp
  2161. msgid "Cavern limit"
  2162. msgstr "동굴 제한"
  2163. #: src/settings_translation_file.cpp
  2164. msgid "Cavern noise"
  2165. msgstr "동굴 잡음"
  2166. #: src/settings_translation_file.cpp
  2167. msgid "Cavern taper"
  2168. msgstr "동굴 테이퍼"
  2169. #: src/settings_translation_file.cpp
  2170. msgid "Cavern threshold"
  2171. msgstr "동굴 임계치"
  2172. #: src/settings_translation_file.cpp
  2173. msgid "Cavern upper limit"
  2174. msgstr "동굴 상한선"
  2175. #: src/settings_translation_file.cpp
  2176. msgid ""
  2177. "Center of light curve boost range.\n"
  2178. "Where 0.0 is minimum light level, 1.0 is maximum light level."
  2179. msgstr ""
  2180. "빛 굴절 중심 범위 .\n"
  2181. "0.0은 최소 조명 수준이고 1.0은 최대 조명 수준입니다."
  2182. #: src/settings_translation_file.cpp
  2183. #, fuzzy
  2184. msgid "Chat command time message threshold"
  2185. msgstr "채팅 메세지 강제퇴장 임계값"
  2186. #: src/settings_translation_file.cpp
  2187. #, fuzzy
  2188. msgid "Chat commands"
  2189. msgstr "채팅 명렁어"
  2190. #: src/settings_translation_file.cpp
  2191. msgid "Chat font size"
  2192. msgstr "채팅 글자 크기"
  2193. #: src/settings_translation_file.cpp
  2194. msgid "Chat log level"
  2195. msgstr "채팅 기록 수준"
  2196. #: src/settings_translation_file.cpp
  2197. msgid "Chat message count limit"
  2198. msgstr "채팅 메세지 수 제한"
  2199. #: src/settings_translation_file.cpp
  2200. msgid "Chat message format"
  2201. msgstr "채팅 메세지 포맷"
  2202. #: src/settings_translation_file.cpp
  2203. msgid "Chat message kick threshold"
  2204. msgstr "채팅 메세지 강제퇴장 임계값"
  2205. #: src/settings_translation_file.cpp
  2206. msgid "Chat message max length"
  2207. msgstr "채팅 메세지 최대 길이"
  2208. #: src/settings_translation_file.cpp
  2209. #, fuzzy
  2210. msgid "Chat weblinks"
  2211. msgstr "채팅 보이기"
  2212. #: src/settings_translation_file.cpp
  2213. msgid "Chunk size"
  2214. msgstr "청크 크기"
  2215. #: src/settings_translation_file.cpp
  2216. msgid ""
  2217. "Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console "
  2218. "output."
  2219. msgstr ""
  2220. #: src/settings_translation_file.cpp
  2221. msgid "Client"
  2222. msgstr "클라이언트"
  2223. #: src/settings_translation_file.cpp
  2224. msgid "Client Mesh Chunksize"
  2225. msgstr ""
  2226. #: src/settings_translation_file.cpp
  2227. msgid "Client and Server"
  2228. msgstr "클라이언트와 서버"
  2229. #: src/settings_translation_file.cpp
  2230. msgid "Client modding"
  2231. msgstr "클라이언트 모딩"
  2232. #: src/settings_translation_file.cpp
  2233. msgid "Client side modding restrictions"
  2234. msgstr "클라이언트 측 모딩 제한"
  2235. #: src/settings_translation_file.cpp
  2236. #, fuzzy
  2237. msgid "Client-side Modding"
  2238. msgstr "클라이언트 모딩"
  2239. #: src/settings_translation_file.cpp
  2240. #, fuzzy
  2241. msgid "Client-side node lookup range restriction"
  2242. msgstr "클라이언트 측 노드 조회 범위 제한"
  2243. #: src/settings_translation_file.cpp
  2244. msgid "Climbing speed"
  2245. msgstr "오르는 속도"
  2246. #: src/settings_translation_file.cpp
  2247. msgid "Cloud radius"
  2248. msgstr "구름 반지름"
  2249. #: src/settings_translation_file.cpp
  2250. msgid "Clouds"
  2251. msgstr "구름"
  2252. #: src/settings_translation_file.cpp
  2253. #, fuzzy
  2254. msgid "Clouds are a client-side effect."
  2255. msgstr "구름은 클라이언트에 측면 효과."
  2256. #: src/settings_translation_file.cpp
  2257. msgid "Clouds in menu"
  2258. msgstr "메뉴에 구름"
  2259. #: src/settings_translation_file.cpp
  2260. msgid "Colored fog"
  2261. msgstr "색깔있는 안개"
  2262. #: src/settings_translation_file.cpp
  2263. #, fuzzy
  2264. msgid "Colored shadows"
  2265. msgstr "색깔있는 안개"
  2266. #: src/settings_translation_file.cpp
  2267. msgid ""
  2268. "Comma-separated list of AL and ALC extensions that should not be used.\n"
  2269. "Useful for testing. See al_extensions.[h,cpp] for details."
  2270. msgstr ""
  2271. #: src/settings_translation_file.cpp
  2272. msgid ""
  2273. "Comma-separated list of flags to hide in the content repository.\n"
  2274. "\"nonfree\" can be used to hide packages which do not qualify as 'free "
  2275. "software',\n"
  2276. "as defined by the Free Software Foundation.\n"
  2277. "You can also specify content ratings.\n"
  2278. "These flags are independent from Minetest versions,\n"
  2279. "so see a full list at https://content.minetest.net/help/content_flags/"
  2280. msgstr ""
  2281. "컨텐츠 저장소에서 쉼표로 구분된 숨겨진 플래그 목록입니다.\n"
  2282. "\"nonfree\"는 Free Software Foundation에서 정의한대로 '자유 소프트웨어'로 분"
  2283. "류되지 않는 패키지를 숨기는 데 사용할 수 있습니다,\n"
  2284. "콘텐츠 등급을 지정할 수도 있습니다.\n"
  2285. "이 플래그는 Minetest 버전과 독립적이므로. \n"
  2286. "https://content.minetest.net/help/content_flags/에서,\n"
  2287. "전체 목록을 참조하십시오."
  2288. #: src/settings_translation_file.cpp
  2289. msgid ""
  2290. "Comma-separated list of mods that are allowed to access HTTP APIs, which\n"
  2291. "allow them to upload and download data to/from the internet."
  2292. msgstr ""
  2293. "쉼표로 구분된 모드의 리스트는 HTTP API에 접근 할 수 있습니다,\n"
  2294. "인터넷에서 데이터를 다운로드 하거나 업로드 할 수 있습니다."
  2295. #: src/settings_translation_file.cpp
  2296. msgid ""
  2297. "Comma-separated list of trusted mods that are allowed to access insecure\n"
  2298. "functions even when mod security is on (via request_insecure_environment())."
  2299. msgstr ""
  2300. "mod 보안이 켜져있는 경우에도 안전하지 않은 기능에 액세스 할 수있는 쉼표로 구"
  2301. "분 된 신뢰 할 수 있는 모드의 목록입니다\n"
  2302. "(request_insecure_environment ()를 통해)."
  2303. #: src/settings_translation_file.cpp
  2304. msgid ""
  2305. "Compression level to use when saving mapblocks to disk.\n"
  2306. "-1 - use default compression level\n"
  2307. "0 - least compression, fastest\n"
  2308. "9 - best compression, slowest"
  2309. msgstr ""
  2310. #: src/settings_translation_file.cpp
  2311. msgid ""
  2312. "Compression level to use when sending mapblocks to the client.\n"
  2313. "-1 - use default compression level\n"
  2314. "0 - least compression, fastest\n"
  2315. "9 - best compression, slowest"
  2316. msgstr ""
  2317. #: src/settings_translation_file.cpp
  2318. msgid "Connect glass"
  2319. msgstr "유리를 연결"
  2320. #: src/settings_translation_file.cpp
  2321. msgid "Connect to external media server"
  2322. msgstr "외부 미디어 서버에 연결"
  2323. #: src/settings_translation_file.cpp
  2324. msgid "Connects glass if supported by node."
  2325. msgstr "노드에서 지원하는 경우 유리를 연결합니다."
  2326. #: src/settings_translation_file.cpp
  2327. msgid "Console alpha"
  2328. msgstr "콘솔 투명도"
  2329. #: src/settings_translation_file.cpp
  2330. msgid "Console color"
  2331. msgstr "콘솔 색"
  2332. #: src/settings_translation_file.cpp
  2333. msgid "Console height"
  2334. msgstr "콘솔 높이"
  2335. #: src/settings_translation_file.cpp
  2336. msgid "Content Repository"
  2337. msgstr ""
  2338. #: src/settings_translation_file.cpp
  2339. msgid "ContentDB Flag Blacklist"
  2340. msgstr "콘텐츠DB 블랙리스트 플래그"
  2341. #: src/settings_translation_file.cpp
  2342. msgid "ContentDB Max Concurrent Downloads"
  2343. msgstr ""
  2344. #: src/settings_translation_file.cpp
  2345. msgid "ContentDB URL"
  2346. msgstr "ContentDB URL주소"
  2347. #: src/settings_translation_file.cpp
  2348. msgid ""
  2349. "Controls length of day/night cycle.\n"
  2350. "Examples:\n"
  2351. "72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged."
  2352. msgstr ""
  2353. "낮/밤 주기의 길이를 컨트롤.\n"
  2354. "예: \n"
  2355. "72 = 20 분, 360 = 4 분, 1 = 24 시간, 0 = 낮/밤/바뀌지 않고 그대로."
  2356. #: src/settings_translation_file.cpp
  2357. msgid ""
  2358. "Controls sinking speed in liquid when idling. Negative values will cause\n"
  2359. "you to rise instead."
  2360. msgstr ""
  2361. #: src/settings_translation_file.cpp
  2362. msgid "Controls steepness/depth of lake depressions."
  2363. msgstr "호수 침하의 경사/깊이를 조절."
  2364. #: src/settings_translation_file.cpp
  2365. msgid "Controls steepness/height of hills."
  2366. msgstr "산의 높이/경사를 조절."
  2367. #: src/settings_translation_file.cpp
  2368. msgid ""
  2369. "Controls width of tunnels, a smaller value creates wider tunnels.\n"
  2370. "Value >= 10.0 completely disables generation of tunnels and avoids the\n"
  2371. "intensive noise calculations."
  2372. msgstr ""
  2373. "터널 너비를 제어하고 값이 작을수록 더 넓은 터널이 생성됩니다.\n"
  2374. "값> = 10.0은 터널 생성을 완전히 비활성화하고 집중적인 노이즈 계산을 \n"
  2375. "방지합니다."
  2376. #: src/settings_translation_file.cpp
  2377. msgid "Crash message"
  2378. msgstr "충돌 메시지"
  2379. #: src/settings_translation_file.cpp
  2380. msgid "Crosshair alpha"
  2381. msgstr "십자선 투명도"
  2382. #: src/settings_translation_file.cpp
  2383. #, fuzzy
  2384. msgid ""
  2385. "Crosshair alpha (opaqueness, between 0 and 255).\n"
  2386. "This also applies to the object crosshair."
  2387. msgstr "십자선 투명도 (불투명 함, 0과 255 사이)."
  2388. #: src/settings_translation_file.cpp
  2389. msgid "Crosshair color"
  2390. msgstr "십자선 색"
  2391. #: src/settings_translation_file.cpp
  2392. msgid ""
  2393. "Crosshair color (R,G,B).\n"
  2394. "Also controls the object crosshair color"
  2395. msgstr ""
  2396. #: src/settings_translation_file.cpp
  2397. msgid "Debug log file size threshold"
  2398. msgstr "디버그 로그 파일 크기 임계치"
  2399. #: src/settings_translation_file.cpp
  2400. msgid "Debug log level"
  2401. msgstr "디버그 로그 수준"
  2402. #: src/settings_translation_file.cpp
  2403. msgid "Debugging"
  2404. msgstr ""
  2405. #: src/settings_translation_file.cpp
  2406. msgid "Dedicated server step"
  2407. msgstr "전용 서버 단계"
  2408. #: src/settings_translation_file.cpp
  2409. msgid "Default acceleration"
  2410. msgstr "기본 가속"
  2411. #: src/settings_translation_file.cpp
  2412. msgid ""
  2413. "Default maximum number of forceloaded mapblocks.\n"
  2414. "Set this to -1 to disable the limit."
  2415. msgstr ""
  2416. #: src/settings_translation_file.cpp
  2417. msgid "Default password"
  2418. msgstr "기본 비밀 번호"
  2419. #: src/settings_translation_file.cpp
  2420. msgid "Default privileges"
  2421. msgstr "기본 권한"
  2422. #: src/settings_translation_file.cpp
  2423. msgid "Default report format"
  2424. msgstr "기본 보고서 형식"
  2425. #: src/settings_translation_file.cpp
  2426. msgid "Default stack size"
  2427. msgstr "기본 스택 크기"
  2428. #: src/settings_translation_file.cpp
  2429. msgid ""
  2430. "Define shadow filtering quality.\n"
  2431. "This simulates the soft shadows effect by applying a PCF or Poisson disk\n"
  2432. "but also uses more resources."
  2433. msgstr ""
  2434. #: src/settings_translation_file.cpp
  2435. #, fuzzy
  2436. msgid ""
  2437. "Define the oldest clients allowed to connect.\n"
  2438. "Older clients are compatible in the sense that they will not crash when "
  2439. "connecting\n"
  2440. "to new servers, but they may not support all new features that you are "
  2441. "expecting.\n"
  2442. "This allows for more fine-grained control than "
  2443. "strict_protocol_version_checking.\n"
  2444. "Minetest still enforces its own internal minimum, and enabling\n"
  2445. "strict_protocol_version_checking will effectively override this."
  2446. msgstr ""
  2447. "오래된 클라이언트 연결을 허락하지 않는것을 사용.\n"
  2448. "이전 클라이언트는 서버에서 당신이 기대하는 새로운 특징들을 지원하지 않는다"
  2449. "면 \n"
  2450. "새로운 서버로 연결할 때 충돌하지 않을 것입니다."
  2451. #: src/settings_translation_file.cpp
  2452. msgid "Defines areas where trees have apples."
  2453. msgstr "나무에 사과가 있는 영역 정의."
  2454. #: src/settings_translation_file.cpp
  2455. msgid "Defines areas with sandy beaches."
  2456. msgstr "모래 해변이 있는 지역을 정의합니다."
  2457. #: src/settings_translation_file.cpp
  2458. msgid "Defines distribution of higher terrain and steepness of cliffs."
  2459. msgstr "높은 지형의 분포와 절벽의 가파른 정도를 정의합니다."
  2460. #: src/settings_translation_file.cpp
  2461. msgid "Defines distribution of higher terrain."
  2462. msgstr "더 높은 지형의 분포를 정의합니다."
  2463. #: src/settings_translation_file.cpp
  2464. msgid "Defines full size of caverns, smaller values create larger caverns."
  2465. msgstr ""
  2466. #: src/settings_translation_file.cpp
  2467. msgid ""
  2468. "Defines how much bloom is applied to the rendered image\n"
  2469. "Smaller values make bloom more subtle\n"
  2470. "Range: from 0.01 to 1.0, default: 0.05"
  2471. msgstr ""
  2472. #: src/settings_translation_file.cpp
  2473. msgid "Defines large-scale river channel structure."
  2474. msgstr ""
  2475. #: src/settings_translation_file.cpp
  2476. msgid "Defines location and terrain of optional hills and lakes."
  2477. msgstr ""
  2478. #: src/settings_translation_file.cpp
  2479. msgid "Defines the base ground level."
  2480. msgstr ""
  2481. #: src/settings_translation_file.cpp
  2482. msgid "Defines the depth of the river channel."
  2483. msgstr ""
  2484. #: src/settings_translation_file.cpp
  2485. msgid ""
  2486. "Defines the magnitude of bloom overexposure.\n"
  2487. "Range: from 0.1 to 10.0, default: 1.0"
  2488. msgstr ""
  2489. #: src/settings_translation_file.cpp
  2490. msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)."
  2491. msgstr "블록에 최대 플레이어 전송 거리를 정의 합니다 (0 = 무제한)."
  2492. #: src/settings_translation_file.cpp
  2493. msgid ""
  2494. "Defines the size of the sampling grid for FSAA and SSAA antialiasing "
  2495. "methods.\n"
  2496. "Value of 2 means taking 2x2 = 4 samples."
  2497. msgstr ""
  2498. #: src/settings_translation_file.cpp
  2499. msgid "Defines the width of the river channel."
  2500. msgstr ""
  2501. #: src/settings_translation_file.cpp
  2502. msgid "Defines the width of the river valley."
  2503. msgstr ""
  2504. #: src/settings_translation_file.cpp
  2505. msgid "Defines tree areas and tree density."
  2506. msgstr ""
  2507. #: src/settings_translation_file.cpp
  2508. msgid ""
  2509. "Delay between mesh updates on the client in ms. Increasing this will slow\n"
  2510. "down the rate of mesh updates, thus reducing jitter on slower clients."
  2511. msgstr ""
  2512. #: src/settings_translation_file.cpp
  2513. msgid "Delay in sending blocks after building"
  2514. msgstr "건축 후 블록 전송 지연"
  2515. #: src/settings_translation_file.cpp
  2516. msgid "Delay showing tooltips, stated in milliseconds."
  2517. msgstr "도구 설명 표시 지연, 1000분의 1초."
  2518. #: src/settings_translation_file.cpp
  2519. msgid "Deprecated Lua API handling"
  2520. msgstr ""
  2521. #: src/settings_translation_file.cpp
  2522. msgid "Depth below which you'll find giant caverns."
  2523. msgstr "큰 동굴을 발견할 수 있는 깊이."
  2524. #: src/settings_translation_file.cpp
  2525. msgid "Depth below which you'll find large caves."
  2526. msgstr "큰 동굴을 발견할 수 있는 깊이."
  2527. #: src/settings_translation_file.cpp
  2528. msgid ""
  2529. "Description of server, to be displayed when players join and in the "
  2530. "serverlist."
  2531. msgstr "플레이어가 서버리스트에서 조인 할때 서버의 설명이 보여질 것입니다."
  2532. #: src/settings_translation_file.cpp
  2533. msgid "Desert noise threshold"
  2534. msgstr ""
  2535. #: src/settings_translation_file.cpp
  2536. msgid ""
  2537. "Deserts occur when np_biome exceeds this value.\n"
  2538. "When the 'snowbiomes' flag is enabled, this is ignored."
  2539. msgstr ""
  2540. #: src/settings_translation_file.cpp
  2541. msgid "Desynchronize block animation"
  2542. msgstr "블록 애니메이션 비동기화"
  2543. #: src/settings_translation_file.cpp
  2544. #, fuzzy
  2545. msgid "Developer Options"
  2546. msgstr "장식"
  2547. #: src/settings_translation_file.cpp
  2548. msgid "Digging particles"
  2549. msgstr "입자 효과"
  2550. #: src/settings_translation_file.cpp
  2551. msgid "Disable anticheat"
  2552. msgstr "Anticheat를 사용 안함"
  2553. #: src/settings_translation_file.cpp
  2554. msgid "Disallow empty passwords"
  2555. msgstr "비밀번호 없으면 불가"
  2556. #: src/settings_translation_file.cpp
  2557. msgid "Display Density Scaling Factor"
  2558. msgstr ""
  2559. #: src/settings_translation_file.cpp
  2560. msgid ""
  2561. "Distance in nodes at which transparency depth sorting is enabled\n"
  2562. "Use this to limit the performance impact of transparency depth sorting"
  2563. msgstr ""
  2564. #: src/settings_translation_file.cpp
  2565. msgid "Domain name of server, to be displayed in the serverlist."
  2566. msgstr "도메인 서버의 이름은 서버리스트에 표시 됩니다."
  2567. #: src/settings_translation_file.cpp
  2568. msgid "Double tap jump for fly"
  2569. msgstr "점프를 두번 탭하여 비행"
  2570. #: src/settings_translation_file.cpp
  2571. msgid "Double-tapping the jump key toggles fly mode."
  2572. msgstr "점프키를 두번 누르면 비행 모드를 활성화시킵니다."
  2573. #: src/settings_translation_file.cpp
  2574. msgid "Dump the mapgen debug information."
  2575. msgstr "Mapgen 디버그 정보를 덤프 합니다."
  2576. #: src/settings_translation_file.cpp
  2577. msgid "Dungeon maximum Y"
  2578. msgstr ""
  2579. #: src/settings_translation_file.cpp
  2580. msgid "Dungeon minimum Y"
  2581. msgstr ""
  2582. #: src/settings_translation_file.cpp
  2583. msgid "Dungeon noise"
  2584. msgstr "던전 잡음"
  2585. #: src/settings_translation_file.cpp
  2586. msgid "Enable Automatic Exposure"
  2587. msgstr ""
  2588. #: src/settings_translation_file.cpp
  2589. #, fuzzy
  2590. msgid "Enable Bloom"
  2591. msgstr "모두 활성화"
  2592. #: src/settings_translation_file.cpp
  2593. msgid "Enable Bloom Debug"
  2594. msgstr ""
  2595. #: src/settings_translation_file.cpp
  2596. #, fuzzy
  2597. msgid "Enable Debanding"
  2598. msgstr "데미지 활성화"
  2599. #: src/settings_translation_file.cpp
  2600. msgid ""
  2601. "Enable IPv6 support (for both client and server).\n"
  2602. "Required for IPv6 connections to work at all."
  2603. msgstr ""
  2604. #: src/settings_translation_file.cpp
  2605. msgid ""
  2606. "Enable Lua modding support on client.\n"
  2607. "This support is experimental and API can change."
  2608. msgstr ""
  2609. #: src/settings_translation_file.cpp
  2610. msgid ""
  2611. "Enable Poisson disk filtering.\n"
  2612. "On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF "
  2613. "filtering."
  2614. msgstr ""
  2615. #: src/settings_translation_file.cpp
  2616. #, fuzzy
  2617. msgid "Enable Post Processing"
  2618. msgstr "조이스틱 활성화"
  2619. #: src/settings_translation_file.cpp
  2620. msgid "Enable Raytraced Culling"
  2621. msgstr ""
  2622. #: src/settings_translation_file.cpp
  2623. msgid ""
  2624. "Enable automatic exposure correction\n"
  2625. "When enabled, the post-processing engine will\n"
  2626. "automatically adjust to the brightness of the scene,\n"
  2627. "simulating the behavior of human eye."
  2628. msgstr ""
  2629. #: src/settings_translation_file.cpp
  2630. msgid ""
  2631. "Enable colored shadows.\n"
  2632. "On true translucent nodes cast colored shadows. This is expensive."
  2633. msgstr ""
  2634. #: src/settings_translation_file.cpp
  2635. msgid "Enable console window"
  2636. msgstr ""
  2637. #: src/settings_translation_file.cpp
  2638. msgid "Enable joysticks"
  2639. msgstr "조이스틱 활성화"
  2640. #: src/settings_translation_file.cpp
  2641. msgid "Enable joysticks. Requires a restart to take effect"
  2642. msgstr ""
  2643. #: src/settings_translation_file.cpp
  2644. msgid "Enable mod channels support."
  2645. msgstr "모드 채널 지원 활성화."
  2646. #: src/settings_translation_file.cpp
  2647. msgid "Enable mod security"
  2648. msgstr "모드 보안 적용"
  2649. #: src/settings_translation_file.cpp
  2650. msgid "Enable mouse wheel (scroll) for item selection in hotbar."
  2651. msgstr ""
  2652. #: src/settings_translation_file.cpp
  2653. #, fuzzy
  2654. msgid "Enable random mod loading (mainly used for testing)."
  2655. msgstr "랜덤 사용자 입력 (테스트에 사용)를 사용 합니다."
  2656. #: src/settings_translation_file.cpp
  2657. msgid "Enable random user input (only used for testing)."
  2658. msgstr "랜덤 사용자 입력 (테스트에 사용)를 사용 합니다."
  2659. #: src/settings_translation_file.cpp
  2660. msgid ""
  2661. "Enable smooth lighting with simple ambient occlusion.\n"
  2662. "Disable for speed or for different looks."
  2663. msgstr ""
  2664. #: src/settings_translation_file.cpp
  2665. msgid "Enable split login/register"
  2666. msgstr ""
  2667. #: src/settings_translation_file.cpp
  2668. msgid ""
  2669. "Enable to disallow old clients from connecting.\n"
  2670. "Older clients are compatible in the sense that they will not crash when "
  2671. "connecting\n"
  2672. "to new servers, but they may not support all new features that you are "
  2673. "expecting."
  2674. msgstr ""
  2675. "오래된 클라이언트 연결을 허락하지 않는것을 사용.\n"
  2676. "이전 클라이언트는 서버에서 당신이 기대하는 새로운 특징들을 지원하지 않는다"
  2677. "면 \n"
  2678. "새로운 서버로 연결할 때 충돌하지 않을 것입니다."
  2679. #: src/settings_translation_file.cpp
  2680. #, fuzzy
  2681. msgid "Enable touchscreen"
  2682. msgstr "터치임계값 (픽셀)"
  2683. #: src/settings_translation_file.cpp
  2684. msgid ""
  2685. "Enable usage of remote media server (if provided by server).\n"
  2686. "Remote servers offer a significantly faster way to download media (e.g. "
  2687. "textures)\n"
  2688. "when connecting to the server."
  2689. msgstr ""
  2690. "원격 미디어 서버 사용 가능(만약 서버에서 제공한다면).\n"
  2691. "원격 서버들은 서버에 연결할 때 매우 빠르게 미디어를\n"
  2692. "다운로드 할 수 있도록 제공합니다.(예: 텍스처)"
  2693. #: src/settings_translation_file.cpp
  2694. msgid ""
  2695. "Enable view bobbing and amount of view bobbing.\n"
  2696. "For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
  2697. msgstr ""
  2698. "화면 흔들림 멀티플라이어\n"
  2699. "예 : 0은 화면 흔들림 없음; 1.0은 노멀; 2.0은 더블."
  2700. #: src/settings_translation_file.cpp
  2701. msgid ""
  2702. "Enable/disable running an IPv6 server.\n"
  2703. "Ignored if bind_address is set.\n"
  2704. "Needs enable_ipv6 to be enabled."
  2705. msgstr ""
  2706. "IPv6 서버를 실행 활성화/비활성화.\n"
  2707. "IPv6 서버는 IPv6 클라이언트 시스템 구성에 따라 제한 될 수 있습니다.\n"
  2708. "만약 Bind_address가 설정 된 경우 무시 됩니다."
  2709. #: src/settings_translation_file.cpp
  2710. msgid ""
  2711. "Enables Hable's 'Uncharted 2' filmic tone mapping.\n"
  2712. "Simulates the tone curve of photographic film and how this approximates the\n"
  2713. "appearance of high dynamic range images. Mid-range contrast is slightly\n"
  2714. "enhanced, highlights and shadows are gradually compressed."
  2715. msgstr ""
  2716. #: src/settings_translation_file.cpp
  2717. msgid "Enables animation of inventory items."
  2718. msgstr "인벤토리 아이템의 애니메이션 적용."
  2719. #: src/settings_translation_file.cpp
  2720. msgid "Enables caching of facedir rotated meshes."
  2721. msgstr ""
  2722. #: src/settings_translation_file.cpp
  2723. msgid "Enables debug and error-checking in the OpenGL driver."
  2724. msgstr ""
  2725. #: src/settings_translation_file.cpp
  2726. msgid "Enables the post processing pipeline."
  2727. msgstr ""
  2728. #: src/settings_translation_file.cpp
  2729. msgid ""
  2730. "Enables touchscreen mode, allowing you to play the game with a touchscreen."
  2731. msgstr ""
  2732. #: src/settings_translation_file.cpp
  2733. msgid ""
  2734. "Enables tradeoffs that reduce CPU load or increase rendering performance\n"
  2735. "at the expense of minor visual glitches that do not impact game playability."
  2736. msgstr ""
  2737. #: src/settings_translation_file.cpp
  2738. #, fuzzy
  2739. msgid "Engine Profiler"
  2740. msgstr "계곡 측면"
  2741. #: src/settings_translation_file.cpp
  2742. msgid "Engine profiling data print interval"
  2743. msgstr "엔진 프로 파일링 데이터 출력 간격"
  2744. #: src/settings_translation_file.cpp
  2745. msgid "Entity methods"
  2746. msgstr ""
  2747. #: src/settings_translation_file.cpp
  2748. msgid ""
  2749. "Exponent of the floatland tapering. Alters the tapering behavior.\n"
  2750. "Value = 1.0 creates a uniform, linear tapering.\n"
  2751. "Values > 1.0 create a smooth tapering suitable for the default separated\n"
  2752. "floatlands.\n"
  2753. "Values < 1.0 (for example 0.25) create a more defined surface level with\n"
  2754. "flatter lowlands, suitable for a solid floatland layer."
  2755. msgstr ""
  2756. #: src/settings_translation_file.cpp
  2757. msgid "Exposure compensation"
  2758. msgstr ""
  2759. #: src/settings_translation_file.cpp
  2760. msgid "FPS"
  2761. msgstr ""
  2762. #: src/settings_translation_file.cpp
  2763. #, fuzzy
  2764. msgid "FPS when unfocused or paused"
  2765. msgstr "게임이 일시정지될때의 최대 FPS."
  2766. #: src/settings_translation_file.cpp
  2767. msgid "Factor noise"
  2768. msgstr ""
  2769. #: src/settings_translation_file.cpp
  2770. msgid "Fall bobbing factor"
  2771. msgstr "낙하 흔들림"
  2772. #: src/settings_translation_file.cpp
  2773. msgid "Fallback font path"
  2774. msgstr "대체 글꼴 경로"
  2775. #: src/settings_translation_file.cpp
  2776. msgid "Fast mode acceleration"
  2777. msgstr "고속 모드 가속"
  2778. #: src/settings_translation_file.cpp
  2779. msgid "Fast mode speed"
  2780. msgstr "고속 모드 속도"
  2781. #: src/settings_translation_file.cpp
  2782. msgid "Field of view"
  2783. msgstr "시야"
  2784. #: src/settings_translation_file.cpp
  2785. msgid "Field of view in degrees."
  2786. msgstr "각도에 대한 시야."
  2787. #: src/settings_translation_file.cpp
  2788. msgid ""
  2789. "File in client/serverlist/ that contains your favorite servers displayed in "
  2790. "the\n"
  2791. "Multiplayer Tab."
  2792. msgstr ""
  2793. "멀티 플레이어 탭에 표시되는 즐겨 찾는 서버가 포함 된 \n"
  2794. "client / serverlist /의 파일입니다."
  2795. #: src/settings_translation_file.cpp
  2796. msgid "Filler depth"
  2797. msgstr "강 깊이"
  2798. #: src/settings_translation_file.cpp
  2799. msgid "Filler depth noise"
  2800. msgstr ""
  2801. #: src/settings_translation_file.cpp
  2802. msgid "Filmic tone mapping"
  2803. msgstr "필름 형 톤 맵핑"
  2804. #: src/settings_translation_file.cpp
  2805. #, fuzzy
  2806. msgid "Filtering and Antialiasing"
  2807. msgstr "매끄럽게 표현하기:"
  2808. #: src/settings_translation_file.cpp
  2809. msgid "First of 4 2D noises that together define hill/mountain range height."
  2810. msgstr ""
  2811. #: src/settings_translation_file.cpp
  2812. msgid "First of two 3D noises that together define tunnels."
  2813. msgstr ""
  2814. #: src/settings_translation_file.cpp
  2815. msgid "Fixed map seed"
  2816. msgstr "수정된 맵 시드"
  2817. #: src/settings_translation_file.cpp
  2818. msgid "Fixed virtual joystick"
  2819. msgstr ""
  2820. #: src/settings_translation_file.cpp
  2821. #, fuzzy
  2822. msgid ""
  2823. "Fixes the position of virtual joystick.\n"
  2824. "If disabled, virtual joystick will center to first-touch's position."
  2825. msgstr ""
  2826. "(Android) 가상 조이스틱의 위치를 수정합니다.\n"
  2827. "비활성화하면, 가상 조이스틱이 첫번째 터치 위치의 중앙에 위치합니다."
  2828. #: src/settings_translation_file.cpp
  2829. msgid "Floatland density"
  2830. msgstr "Floatland의 밀집도"
  2831. #: src/settings_translation_file.cpp
  2832. msgid "Floatland maximum Y"
  2833. msgstr "Floatland의 Y 최대값"
  2834. #: src/settings_translation_file.cpp
  2835. msgid "Floatland minimum Y"
  2836. msgstr "Floatland의 Y 최소값"
  2837. #: src/settings_translation_file.cpp
  2838. msgid "Floatland noise"
  2839. msgstr "Floatland 노이즈"
  2840. #: src/settings_translation_file.cpp
  2841. msgid "Floatland taper exponent"
  2842. msgstr "Floatland의 테이퍼 지수"
  2843. #: src/settings_translation_file.cpp
  2844. msgid "Floatland tapering distance"
  2845. msgstr "Floatland의 테이퍼링 거리"
  2846. #: src/settings_translation_file.cpp
  2847. msgid "Floatland water level"
  2848. msgstr "Floatland의 물 높이"
  2849. #: src/settings_translation_file.cpp
  2850. msgid "Fog"
  2851. msgstr "안개"
  2852. #: src/settings_translation_file.cpp
  2853. msgid "Fog start"
  2854. msgstr ""
  2855. #: src/settings_translation_file.cpp
  2856. #, fuzzy
  2857. msgid "Font"
  2858. msgstr "글꼴 크기"
  2859. #: src/settings_translation_file.cpp
  2860. msgid "Font bold by default"
  2861. msgstr ""
  2862. #: src/settings_translation_file.cpp
  2863. msgid "Font italic by default"
  2864. msgstr ""
  2865. #: src/settings_translation_file.cpp
  2866. msgid "Font shadow"
  2867. msgstr "글꼴 그림자"
  2868. #: src/settings_translation_file.cpp
  2869. msgid "Font shadow alpha"
  2870. msgstr "글꼴 그림자 투명도"
  2871. #: src/settings_translation_file.cpp
  2872. msgid "Font size"
  2873. msgstr "글꼴 크기"
  2874. #: src/settings_translation_file.cpp
  2875. msgid "Font size divisible by"
  2876. msgstr ""
  2877. #: src/settings_translation_file.cpp
  2878. msgid "Font size of the default font where 1 unit = 1 pixel at 96 DPI"
  2879. msgstr ""
  2880. #: src/settings_translation_file.cpp
  2881. msgid "Font size of the monospace font where 1 unit = 1 pixel at 96 DPI"
  2882. msgstr ""
  2883. #: src/settings_translation_file.cpp
  2884. msgid ""
  2885. "Font size of the recent chat text and chat prompt in point (pt).\n"
  2886. "Value 0 will use the default font size."
  2887. msgstr ""
  2888. #: src/settings_translation_file.cpp
  2889. msgid ""
  2890. "For pixel-style fonts that do not scale well, this ensures that font sizes "
  2891. "used\n"
  2892. "with this font will always be divisible by this value, in pixels. For "
  2893. "instance,\n"
  2894. "a pixel font 16 pixels tall should have this set to 16, so it will only ever "
  2895. "be\n"
  2896. "sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32."
  2897. msgstr ""
  2898. #: src/settings_translation_file.cpp
  2899. msgid ""
  2900. "Format of player chat messages. The following strings are valid "
  2901. "placeholders:\n"
  2902. "@name, @message, @timestamp (optional)"
  2903. msgstr ""
  2904. #: src/settings_translation_file.cpp
  2905. msgid "Format of screenshots."
  2906. msgstr "Screenshots의 형식입니다."
  2907. #: src/settings_translation_file.cpp
  2908. msgid "Formspec Full-Screen Background Color"
  2909. msgstr ""
  2910. #: src/settings_translation_file.cpp
  2911. msgid "Formspec Full-Screen Background Opacity"
  2912. msgstr ""
  2913. #: src/settings_translation_file.cpp
  2914. msgid "Formspec full-screen background color (R,G,B)."
  2915. msgstr "게임 내에서 채팅 콘솔 배경 색상 (빨강, 초록, 파랑)."
  2916. #: src/settings_translation_file.cpp
  2917. msgid "Formspec full-screen background opacity (between 0 and 255)."
  2918. msgstr "게임 내에서 채팅 콘솔 배경 알파 (불투명 함, 0와 255 사이)."
  2919. #: src/settings_translation_file.cpp
  2920. msgid "Fourth of 4 2D noises that together define hill/mountain range height."
  2921. msgstr ""
  2922. #: src/settings_translation_file.cpp
  2923. msgid "Fractal type"
  2924. msgstr ""
  2925. #: src/settings_translation_file.cpp
  2926. msgid "Fraction of the visible distance at which fog starts to be rendered"
  2927. msgstr ""
  2928. #: src/settings_translation_file.cpp
  2929. msgid ""
  2930. "From how far blocks are generated for clients, stated in mapblocks (16 "
  2931. "nodes)."
  2932. msgstr ""
  2933. #: src/settings_translation_file.cpp
  2934. msgid ""
  2935. "From how far blocks are sent to clients, stated in mapblocks (16 nodes)."
  2936. msgstr ""
  2937. #: src/settings_translation_file.cpp
  2938. msgid ""
  2939. "From how far clients know about objects, stated in mapblocks (16 nodes).\n"
  2940. "\n"
  2941. "Setting this larger than active_block_range will also cause the server\n"
  2942. "to maintain active objects up to this distance in the direction the\n"
  2943. "player is looking. (This can avoid mobs suddenly disappearing from view)"
  2944. msgstr ""
  2945. #: src/settings_translation_file.cpp
  2946. msgid "Full screen"
  2947. msgstr "전체 화면"
  2948. #: src/settings_translation_file.cpp
  2949. msgid "Fullscreen mode."
  2950. msgstr "전체 화면 모드."
  2951. #: src/settings_translation_file.cpp
  2952. msgid "GUI"
  2953. msgstr ""
  2954. #: src/settings_translation_file.cpp
  2955. msgid "GUI scaling"
  2956. msgstr "GUI 크기 조정"
  2957. #: src/settings_translation_file.cpp
  2958. msgid "GUI scaling filter"
  2959. msgstr "GUI 크기 조정 필터"
  2960. #: src/settings_translation_file.cpp
  2961. msgid "GUI scaling filter txr2img"
  2962. msgstr "GUI 크기 조정 필터 txr2img"
  2963. #: src/settings_translation_file.cpp
  2964. #, fuzzy
  2965. msgid "Gamepads"
  2966. msgstr "게임"
  2967. #: src/settings_translation_file.cpp
  2968. msgid "Global callbacks"
  2969. msgstr "글로벌 콜백"
  2970. #: src/settings_translation_file.cpp
  2971. msgid ""
  2972. "Global map generation attributes.\n"
  2973. "In Mapgen v6 the 'decorations' flag controls all decorations except trees\n"
  2974. "and jungle grass, in all other mapgens this flag controls all decorations."
  2975. msgstr ""
  2976. #: src/settings_translation_file.cpp
  2977. msgid ""
  2978. "Gradient of light curve at maximum light level.\n"
  2979. "Controls the contrast of the highest light levels."
  2980. msgstr ""
  2981. #: src/settings_translation_file.cpp
  2982. msgid ""
  2983. "Gradient of light curve at minimum light level.\n"
  2984. "Controls the contrast of the lowest light levels."
  2985. msgstr ""
  2986. #: src/settings_translation_file.cpp
  2987. msgid "Graphics"
  2988. msgstr "그래픽"
  2989. #: src/settings_translation_file.cpp
  2990. #, fuzzy
  2991. msgid "Graphics Effects"
  2992. msgstr "그래픽"
  2993. #: src/settings_translation_file.cpp
  2994. #, fuzzy
  2995. msgid "Graphics and Audio"
  2996. msgstr "그래픽"
  2997. #: src/settings_translation_file.cpp
  2998. msgid "Gravity"
  2999. msgstr "중력"
  3000. #: src/settings_translation_file.cpp
  3001. msgid "Ground level"
  3002. msgstr "지면 수준"
  3003. #: src/settings_translation_file.cpp
  3004. msgid "Ground noise"
  3005. msgstr "지면 노이즈"
  3006. #: src/settings_translation_file.cpp
  3007. msgid "HTTP mods"
  3008. msgstr "HTTP 모드"
  3009. #: src/settings_translation_file.cpp
  3010. msgid "HUD"
  3011. msgstr ""
  3012. #: src/settings_translation_file.cpp
  3013. #, fuzzy
  3014. msgid "HUD scaling"
  3015. msgstr "GUI 크기 조정"
  3016. #: src/settings_translation_file.cpp
  3017. msgid ""
  3018. "Handling for deprecated Lua API calls:\n"
  3019. "- none: Do not log deprecated calls\n"
  3020. "- log: mimic and log backtrace of deprecated call (default).\n"
  3021. "- error: abort on usage of deprecated call (suggested for mod developers)."
  3022. msgstr ""
  3023. #: src/settings_translation_file.cpp
  3024. msgid ""
  3025. "Have the profiler instrument itself:\n"
  3026. "* Instrument an empty function.\n"
  3027. "This estimates the overhead, that instrumentation is adding (+1 function "
  3028. "call).\n"
  3029. "* Instrument the sampler being used to update the statistics."
  3030. msgstr ""
  3031. #: src/settings_translation_file.cpp
  3032. msgid "Heat blend noise"
  3033. msgstr ""
  3034. #: src/settings_translation_file.cpp
  3035. msgid "Heat noise"
  3036. msgstr "용암 잡음"
  3037. #: src/settings_translation_file.cpp
  3038. #, fuzzy
  3039. msgid "Height component of the initial window size."
  3040. msgstr "초기 창 크기의 높이 구성 요소입니다."
  3041. #: src/settings_translation_file.cpp
  3042. msgid "Height noise"
  3043. msgstr "높이 노이즈"
  3044. #: src/settings_translation_file.cpp
  3045. msgid "Height select noise"
  3046. msgstr ""
  3047. #: src/settings_translation_file.cpp
  3048. msgid "Hill steepness"
  3049. msgstr ""
  3050. #: src/settings_translation_file.cpp
  3051. msgid "Hill threshold"
  3052. msgstr ""
  3053. #: src/settings_translation_file.cpp
  3054. msgid "Hilliness1 noise"
  3055. msgstr "언덕1 잡음"
  3056. #: src/settings_translation_file.cpp
  3057. msgid "Hilliness2 noise"
  3058. msgstr "언덕2 잡음"
  3059. #: src/settings_translation_file.cpp
  3060. msgid "Hilliness3 noise"
  3061. msgstr "언덕3 잡음"
  3062. #: src/settings_translation_file.cpp
  3063. msgid "Hilliness4 noise"
  3064. msgstr "언덕4 잡음"
  3065. #: src/settings_translation_file.cpp
  3066. msgid "Homepage of server, to be displayed in the serverlist."
  3067. msgstr "서버의 홈페이지는 서버 리스트에 나타납니다."
  3068. #: src/settings_translation_file.cpp
  3069. msgid ""
  3070. "Horizontal acceleration in air when jumping or falling,\n"
  3071. "in nodes per second per second."
  3072. msgstr ""
  3073. #: src/settings_translation_file.cpp
  3074. msgid ""
  3075. "Horizontal and vertical acceleration in fast mode,\n"
  3076. "in nodes per second per second."
  3077. msgstr ""
  3078. #: src/settings_translation_file.cpp
  3079. msgid ""
  3080. "Horizontal and vertical acceleration on ground or when climbing,\n"
  3081. "in nodes per second per second."
  3082. msgstr ""
  3083. #: src/settings_translation_file.cpp
  3084. msgid "Hotbar: Enable mouse wheel for selection"
  3085. msgstr ""
  3086. #: src/settings_translation_file.cpp
  3087. msgid "Hotbar: Invert mouse wheel direction"
  3088. msgstr ""
  3089. #: src/settings_translation_file.cpp
  3090. msgid "How deep to make rivers."
  3091. msgstr "제작할 강의 깊이."
  3092. #: src/settings_translation_file.cpp
  3093. msgid ""
  3094. "How fast liquid waves will move. Higher = faster.\n"
  3095. "If negative, liquid waves will move backwards."
  3096. msgstr ""
  3097. #: src/settings_translation_file.cpp
  3098. msgid ""
  3099. "How long the server will wait before unloading unused mapblocks, stated in "
  3100. "seconds.\n"
  3101. "Higher value is smoother, but will use more RAM."
  3102. msgstr ""
  3103. #: src/settings_translation_file.cpp
  3104. #, fuzzy
  3105. msgid ""
  3106. "How much you are slowed down when moving inside a liquid.\n"
  3107. "Decrease this to increase liquid resistance to movement."
  3108. msgstr "움직임에 대한 액체 저항을 높이려면 이 값을 줄입니다."
  3109. #: src/settings_translation_file.cpp
  3110. msgid "How wide to make rivers."
  3111. msgstr "제작할 강의 너비."
  3112. #: src/settings_translation_file.cpp
  3113. msgid "Humidity blend noise"
  3114. msgstr ""
  3115. #: src/settings_translation_file.cpp
  3116. msgid "Humidity noise"
  3117. msgstr ""
  3118. #: src/settings_translation_file.cpp
  3119. msgid "Humidity variation for biomes."
  3120. msgstr ""
  3121. #: src/settings_translation_file.cpp
  3122. msgid "IPv6"
  3123. msgstr "IPv6"
  3124. #: src/settings_translation_file.cpp
  3125. msgid "IPv6 server"
  3126. msgstr "IPv6 서버"
  3127. #: src/settings_translation_file.cpp
  3128. msgid ""
  3129. "If FPS would go higher than this, limit it by sleeping\n"
  3130. "to not waste CPU power for no benefit."
  3131. msgstr ""
  3132. #: src/settings_translation_file.cpp
  3133. msgid ""
  3134. "If disabled, \"Aux1\" key is used to fly fast if both fly and fast mode are\n"
  3135. "enabled."
  3136. msgstr ""
  3137. #: src/settings_translation_file.cpp
  3138. #, fuzzy
  3139. msgid ""
  3140. "If enabled, \"Aux1\" key instead of \"Sneak\" key is used for climbing down "
  3141. "and\n"
  3142. "descending."
  3143. msgstr ""
  3144. "활성화시, \"sneak\"키 대신 \"특수\"키가 내려가는데 \n"
  3145. "사용됩니다."
  3146. #: src/settings_translation_file.cpp
  3147. msgid ""
  3148. "If enabled, account registration is separate from login in the UI.\n"
  3149. "If disabled, new accounts will be registered automatically when logging in."
  3150. msgstr ""
  3151. #: src/settings_translation_file.cpp
  3152. msgid ""
  3153. "If enabled, actions are recorded for rollback.\n"
  3154. "This option is only read when server starts."
  3155. msgstr ""
  3156. #: src/settings_translation_file.cpp
  3157. msgid "If enabled, disable cheat prevention in multiplayer."
  3158. msgstr "적용할 경우, 멀티플레이어에서 치트 방지를 해제합니다."
  3159. #: src/settings_translation_file.cpp
  3160. msgid ""
  3161. "If enabled, invalid world data won't cause the server to shut down.\n"
  3162. "Only enable this if you know what you are doing."
  3163. msgstr ""
  3164. #: src/settings_translation_file.cpp
  3165. #, fuzzy
  3166. msgid ""
  3167. "If enabled, players cannot join without a password or change theirs to an "
  3168. "empty password."
  3169. msgstr "적용할 경우, 새로운 플레이어는 빈 암호로 가입 할 수 없습니다."
  3170. #: src/settings_translation_file.cpp
  3171. msgid ""
  3172. "If enabled, the server will perform map block occlusion culling based on\n"
  3173. "on the eye position of the player. This can reduce the number of blocks\n"
  3174. "sent to the client by 50-80%. Clients will no longer receive most\n"
  3175. "invisible blocks, so that the utility of noclip mode is reduced."
  3176. msgstr ""
  3177. #: src/settings_translation_file.cpp
  3178. #, fuzzy
  3179. msgid ""
  3180. "If enabled, you can place nodes at the position (feet + eye level) where you "
  3181. "stand.\n"
  3182. "This is helpful when working with nodeboxes in small areas."
  3183. msgstr ""
  3184. "활성화시,\n"
  3185. "당신이 서 있는 자리에도 블록을 놓을 수 있습니다."
  3186. #: src/settings_translation_file.cpp
  3187. msgid ""
  3188. "If the CSM restriction for node range is enabled, get_node calls are "
  3189. "limited\n"
  3190. "to this distance from the player to the node."
  3191. msgstr ""
  3192. #: src/settings_translation_file.cpp
  3193. msgid ""
  3194. "If the execution of a chat command takes longer than this specified time in\n"
  3195. "seconds, add the time information to the chat command message"
  3196. msgstr ""
  3197. #: src/settings_translation_file.cpp
  3198. msgid ""
  3199. "If the file size of debug.txt exceeds the number of megabytes specified in\n"
  3200. "this setting when it is opened, the file is moved to debug.txt.1,\n"
  3201. "deleting an older debug.txt.1 if it exists.\n"
  3202. "debug.txt is only moved if this setting is positive."
  3203. msgstr ""
  3204. #: src/settings_translation_file.cpp
  3205. msgid "If this is set, players will always (re)spawn at the given position."
  3206. msgstr "적용할 경우, 플레이어는 지정된 위치에 항상 스폰 될 것입니다."
  3207. #: src/settings_translation_file.cpp
  3208. msgid "Ignore world errors"
  3209. msgstr "월드 에러 무시"
  3210. #: src/settings_translation_file.cpp
  3211. msgid "In-game chat console background alpha (opaqueness, between 0 and 255)."
  3212. msgstr "게임 내에서 채팅 콘솔 배경 알파 (불투명 함, 0와 255 사이)."
  3213. #: src/settings_translation_file.cpp
  3214. msgid "In-game chat console background color (R,G,B)."
  3215. msgstr "게임 내에서 채팅 콘솔 배경 색상 (빨,초,파)."
  3216. #: src/settings_translation_file.cpp
  3217. msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)."
  3218. msgstr "게임 내에서 채팅 콘솔 배경 알파 (불투명 함, 0와 255 사이)."
  3219. #: src/settings_translation_file.cpp
  3220. msgid "Initial vertical speed when jumping, in nodes per second."
  3221. msgstr ""
  3222. #: src/settings_translation_file.cpp
  3223. msgid ""
  3224. "Instrument builtin.\n"
  3225. "This is usually only needed by core/builtin contributors"
  3226. msgstr ""
  3227. #: src/settings_translation_file.cpp
  3228. msgid "Instrument chat commands on registration."
  3229. msgstr ""
  3230. #: src/settings_translation_file.cpp
  3231. msgid ""
  3232. "Instrument global callback functions on registration.\n"
  3233. "(anything you pass to a minetest.register_*() function)"
  3234. msgstr ""
  3235. #: src/settings_translation_file.cpp
  3236. msgid ""
  3237. "Instrument the action function of Active Block Modifiers on registration."
  3238. msgstr ""
  3239. #: src/settings_translation_file.cpp
  3240. msgid ""
  3241. "Instrument the action function of Loading Block Modifiers on registration."
  3242. msgstr ""
  3243. #: src/settings_translation_file.cpp
  3244. msgid "Instrument the methods of entities on registration."
  3245. msgstr ""
  3246. #: src/settings_translation_file.cpp
  3247. msgid "Interval of saving important changes in the world, stated in seconds."
  3248. msgstr ""
  3249. #: src/settings_translation_file.cpp
  3250. #, fuzzy
  3251. msgid "Interval of sending time of day to clients, stated in seconds."
  3252. msgstr "도구 설명 표시 지연, 1000분의 1초."
  3253. #: src/settings_translation_file.cpp
  3254. msgid "Inventory items animations"
  3255. msgstr "인벤토리 아이템 애니메이션"
  3256. #: src/settings_translation_file.cpp
  3257. msgid "Invert mouse"
  3258. msgstr "마우스 반전"
  3259. #: src/settings_translation_file.cpp
  3260. msgid "Invert mouse wheel (scroll) direction for item selection in hotbar."
  3261. msgstr ""
  3262. #: src/settings_translation_file.cpp
  3263. msgid "Invert vertical mouse movement."
  3264. msgstr ""
  3265. #: src/settings_translation_file.cpp
  3266. msgid "Italic font path"
  3267. msgstr "기울임꼴 경로"
  3268. #: src/settings_translation_file.cpp
  3269. msgid "Italic monospace font path"
  3270. msgstr "고정 폭 기울임 글꼴 경로"
  3271. #: src/settings_translation_file.cpp
  3272. msgid "Item entity TTL"
  3273. msgstr "아이템의 TTL(Time To Live)"
  3274. #: src/settings_translation_file.cpp
  3275. msgid "Iterations"
  3276. msgstr ""
  3277. #: src/settings_translation_file.cpp
  3278. msgid ""
  3279. "Iterations of the recursive function.\n"
  3280. "Increasing this increases the amount of fine detail, but also\n"
  3281. "increases processing load.\n"
  3282. "At iterations = 20 this mapgen has a similar load to mapgen V7."
  3283. msgstr ""
  3284. #: src/settings_translation_file.cpp
  3285. msgid "Joystick ID"
  3286. msgstr ""
  3287. #: src/settings_translation_file.cpp
  3288. msgid "Joystick button repetition interval"
  3289. msgstr ""
  3290. #: src/settings_translation_file.cpp
  3291. msgid "Joystick dead zone"
  3292. msgstr ""
  3293. #: src/settings_translation_file.cpp
  3294. msgid "Joystick frustum sensitivity"
  3295. msgstr ""
  3296. #: src/settings_translation_file.cpp
  3297. msgid "Joystick type"
  3298. msgstr ""
  3299. #: src/settings_translation_file.cpp
  3300. msgid ""
  3301. "Julia set only.\n"
  3302. "W component of hypercomplex constant.\n"
  3303. "Alters the shape of the fractal.\n"
  3304. "Has no effect on 3D fractals.\n"
  3305. "Range roughly -2 to 2."
  3306. msgstr ""
  3307. #: src/settings_translation_file.cpp
  3308. msgid ""
  3309. "Julia set only.\n"
  3310. "X component of hypercomplex constant.\n"
  3311. "Alters the shape of the fractal.\n"
  3312. "Range roughly -2 to 2."
  3313. msgstr ""
  3314. #: src/settings_translation_file.cpp
  3315. msgid ""
  3316. "Julia set only.\n"
  3317. "Y component of hypercomplex constant.\n"
  3318. "Alters the shape of the fractal.\n"
  3319. "Range roughly -2 to 2."
  3320. msgstr ""
  3321. #: src/settings_translation_file.cpp
  3322. msgid ""
  3323. "Julia set only.\n"
  3324. "Z component of hypercomplex constant.\n"
  3325. "Alters the shape of the fractal.\n"
  3326. "Range roughly -2 to 2."
  3327. msgstr ""
  3328. #: src/settings_translation_file.cpp
  3329. msgid "Julia w"
  3330. msgstr ""
  3331. #: src/settings_translation_file.cpp
  3332. msgid "Julia x"
  3333. msgstr ""
  3334. #: src/settings_translation_file.cpp
  3335. msgid "Julia y"
  3336. msgstr ""
  3337. #: src/settings_translation_file.cpp
  3338. msgid "Julia z"
  3339. msgstr ""
  3340. #: src/settings_translation_file.cpp
  3341. msgid "Jumping speed"
  3342. msgstr "점프 속도"
  3343. #: src/settings_translation_file.cpp
  3344. msgid "Keyboard and Mouse"
  3345. msgstr ""
  3346. #: src/settings_translation_file.cpp
  3347. msgid "Kick players who sent more than X messages per 10 seconds."
  3348. msgstr ""
  3349. #: src/settings_translation_file.cpp
  3350. msgid "Lake steepness"
  3351. msgstr ""
  3352. #: src/settings_translation_file.cpp
  3353. msgid "Lake threshold"
  3354. msgstr ""
  3355. #: src/settings_translation_file.cpp
  3356. msgid "Language"
  3357. msgstr "언어"
  3358. #: src/settings_translation_file.cpp
  3359. msgid "Large cave depth"
  3360. msgstr "큰 동굴 깊이"
  3361. #: src/settings_translation_file.cpp
  3362. msgid "Large cave maximum number"
  3363. msgstr ""
  3364. #: src/settings_translation_file.cpp
  3365. msgid "Large cave minimum number"
  3366. msgstr ""
  3367. #: src/settings_translation_file.cpp
  3368. msgid "Large cave proportion flooded"
  3369. msgstr ""
  3370. #: src/settings_translation_file.cpp
  3371. msgid "Leaves style"
  3372. msgstr "나뭇잎 스타일"
  3373. #: src/settings_translation_file.cpp
  3374. msgid ""
  3375. "Leaves style:\n"
  3376. "- Fancy: all faces visible\n"
  3377. "- Simple: only outer faces, if defined special_tiles are used\n"
  3378. "- Opaque: disable transparency"
  3379. msgstr ""
  3380. "나뭇잎 스타일:\n"
  3381. "- 아름다운: 모든 면 표시\n"
  3382. "- 간단: 외부 면만 표시, special_tiles를 정의 하는 경우만 사용\n"
  3383. "- 불투명: 투명도 사용 안 함"
  3384. #: src/settings_translation_file.cpp
  3385. msgid ""
  3386. "Length of a server tick (the interval at which everything is generally "
  3387. "updated),\n"
  3388. "stated in seconds.\n"
  3389. "Does not apply to sessions hosted from the client menu."
  3390. msgstr ""
  3391. #: src/settings_translation_file.cpp
  3392. #, fuzzy
  3393. msgid "Length of liquid waves."
  3394. msgstr "물결 속도"
  3395. #: src/settings_translation_file.cpp
  3396. msgid ""
  3397. "Length of time between Active Block Modifier (ABM) execution cycles, stated "
  3398. "in seconds."
  3399. msgstr ""
  3400. #: src/settings_translation_file.cpp
  3401. msgid "Length of time between NodeTimer execution cycles, stated in seconds."
  3402. msgstr ""
  3403. #: src/settings_translation_file.cpp
  3404. msgid ""
  3405. "Length of time between active block management cycles, stated in seconds."
  3406. msgstr ""
  3407. #: src/settings_translation_file.cpp
  3408. msgid ""
  3409. "Level of logging to be written to debug.txt:\n"
  3410. "- <nothing> (no logging)\n"
  3411. "- none (messages with no level)\n"
  3412. "- error\n"
  3413. "- warning\n"
  3414. "- action\n"
  3415. "- info\n"
  3416. "- verbose\n"
  3417. "- trace"
  3418. msgstr ""
  3419. #: src/settings_translation_file.cpp
  3420. msgid "Light curve boost"
  3421. msgstr ""
  3422. #: src/settings_translation_file.cpp
  3423. msgid "Light curve boost center"
  3424. msgstr ""
  3425. #: src/settings_translation_file.cpp
  3426. msgid "Light curve boost spread"
  3427. msgstr ""
  3428. #: src/settings_translation_file.cpp
  3429. msgid "Light curve gamma"
  3430. msgstr ""
  3431. #: src/settings_translation_file.cpp
  3432. msgid "Light curve high gradient"
  3433. msgstr ""
  3434. #: src/settings_translation_file.cpp
  3435. msgid "Light curve low gradient"
  3436. msgstr ""
  3437. #: src/settings_translation_file.cpp
  3438. #, fuzzy
  3439. msgid "Lighting"
  3440. msgstr "부드러운 조명 효과"
  3441. #: src/settings_translation_file.cpp
  3442. msgid ""
  3443. "Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n"
  3444. "Only mapchunks completely within the mapgen limit are generated.\n"
  3445. "Value is stored per-world."
  3446. msgstr ""
  3447. "(0, 0, 0)에서 모든 6 개 방향의 노드에서 맵 생성 제한.\n"
  3448. "mapgen 제한 내에 완전히 포함 된 맵 청크 만 생성됩니다.\n"
  3449. "값은 세계별로 저장됩니다."
  3450. #: src/settings_translation_file.cpp
  3451. msgid ""
  3452. "Limits number of parallel HTTP requests. Affects:\n"
  3453. "- Media fetch if server uses remote_media setting.\n"
  3454. "- Serverlist download and server announcement.\n"
  3455. "- Downloads performed by main menu (e.g. mod manager).\n"
  3456. "Only has an effect if compiled with cURL."
  3457. msgstr ""
  3458. #: src/settings_translation_file.cpp
  3459. msgid "Liquid fluidity"
  3460. msgstr ""
  3461. #: src/settings_translation_file.cpp
  3462. msgid "Liquid fluidity smoothing"
  3463. msgstr ""
  3464. #: src/settings_translation_file.cpp
  3465. msgid "Liquid loop max"
  3466. msgstr ""
  3467. #: src/settings_translation_file.cpp
  3468. msgid "Liquid queue purge time"
  3469. msgstr ""
  3470. #: src/settings_translation_file.cpp
  3471. msgid "Liquid sinking"
  3472. msgstr "하강 속도"
  3473. #: src/settings_translation_file.cpp
  3474. msgid "Liquid update interval in seconds."
  3475. msgstr ""
  3476. #: src/settings_translation_file.cpp
  3477. msgid "Liquid update tick"
  3478. msgstr ""
  3479. #: src/settings_translation_file.cpp
  3480. msgid "Load the game profiler"
  3481. msgstr ""
  3482. #: src/settings_translation_file.cpp
  3483. msgid ""
  3484. "Load the game profiler to collect game profiling data.\n"
  3485. "Provides a /profiler command to access the compiled profile.\n"
  3486. "Useful for mod developers and server operators."
  3487. msgstr ""
  3488. #: src/settings_translation_file.cpp
  3489. msgid "Loading Block Modifiers"
  3490. msgstr ""
  3491. #: src/settings_translation_file.cpp
  3492. msgid ""
  3493. "Logical value that controls how far the bloom effect spreads\n"
  3494. "from the bright objects.\n"
  3495. "Range: from 0.1 to 8, default: 1"
  3496. msgstr ""
  3497. #: src/settings_translation_file.cpp
  3498. msgid "Lower Y limit of dungeons."
  3499. msgstr ""
  3500. #: src/settings_translation_file.cpp
  3501. msgid "Lower Y limit of floatlands."
  3502. msgstr ""
  3503. #: src/settings_translation_file.cpp
  3504. msgid "Main menu script"
  3505. msgstr "주 메뉴 스크립트"
  3506. #: src/settings_translation_file.cpp
  3507. msgid ""
  3508. "Make fog and sky colors depend on daytime (dawn/sunset) and view direction."
  3509. msgstr ""
  3510. #: src/settings_translation_file.cpp
  3511. msgid "Map Compression Level for Disk Storage"
  3512. msgstr ""
  3513. #: src/settings_translation_file.cpp
  3514. msgid "Map Compression Level for Network Transfer"
  3515. msgstr ""
  3516. #: src/settings_translation_file.cpp
  3517. msgid "Map directory"
  3518. msgstr ""
  3519. #: src/settings_translation_file.cpp
  3520. msgid "Map generation attributes specific to Mapgen Carpathian."
  3521. msgstr ""
  3522. #: src/settings_translation_file.cpp
  3523. msgid ""
  3524. "Map generation attributes specific to Mapgen Flat.\n"
  3525. "Occasional lakes and hills can be added to the flat world."
  3526. msgstr ""
  3527. #: src/settings_translation_file.cpp
  3528. msgid ""
  3529. "Map generation attributes specific to Mapgen Fractal.\n"
  3530. "'terrain' enables the generation of non-fractal terrain:\n"
  3531. "ocean, islands and underground."
  3532. msgstr ""
  3533. #: src/settings_translation_file.cpp
  3534. msgid ""
  3535. "Map generation attributes specific to Mapgen Valleys.\n"
  3536. "'altitude_chill': Reduces heat with altitude.\n"
  3537. "'humid_rivers': Increases humidity around rivers.\n"
  3538. "'vary_river_depth': If enabled, low humidity and high heat causes rivers\n"
  3539. "to become shallower and occasionally dry.\n"
  3540. "'altitude_dry': Reduces humidity with altitude."
  3541. msgstr ""
  3542. #: src/settings_translation_file.cpp
  3543. msgid "Map generation attributes specific to Mapgen v5."
  3544. msgstr ""
  3545. #: src/settings_translation_file.cpp
  3546. msgid ""
  3547. "Map generation attributes specific to Mapgen v6.\n"
  3548. "The 'snowbiomes' flag enables the new 5 biome system.\n"
  3549. "When the 'snowbiomes' flag is enabled jungles are automatically enabled and\n"
  3550. "the 'jungles' flag is ignored.\n"
  3551. "The 'temples' flag disables generation of desert temples. Normal dungeons "
  3552. "will appear instead."
  3553. msgstr ""
  3554. #: src/settings_translation_file.cpp
  3555. msgid ""
  3556. "Map generation attributes specific to Mapgen v7.\n"
  3557. "'ridges': Rivers.\n"
  3558. "'floatlands': Floating land masses in the atmosphere.\n"
  3559. "'caverns': Giant caves deep underground."
  3560. msgstr ""
  3561. #: src/settings_translation_file.cpp
  3562. msgid "Map generation limit"
  3563. msgstr "맵 생성 제한"
  3564. #: src/settings_translation_file.cpp
  3565. msgid "Map save interval"
  3566. msgstr "맵 저장 간격"
  3567. #: src/settings_translation_file.cpp
  3568. msgid "Map shadows update frames"
  3569. msgstr ""
  3570. #: src/settings_translation_file.cpp
  3571. msgid "Mapblock limit"
  3572. msgstr ""
  3573. #: src/settings_translation_file.cpp
  3574. msgid "Mapblock mesh generation delay"
  3575. msgstr "맵 블록 생성 지연"
  3576. #: src/settings_translation_file.cpp
  3577. #, fuzzy
  3578. msgid "Mapblock mesh generation threads"
  3579. msgstr "맵 블록 생성 지연"
  3580. #: src/settings_translation_file.cpp
  3581. msgid "Mapblock unload timeout"
  3582. msgstr ""
  3583. #: src/settings_translation_file.cpp
  3584. msgid "Mapgen Carpathian"
  3585. msgstr ""
  3586. #: src/settings_translation_file.cpp
  3587. msgid "Mapgen Carpathian specific flags"
  3588. msgstr ""
  3589. #: src/settings_translation_file.cpp
  3590. msgid "Mapgen Flat"
  3591. msgstr "Mapgen 플랫"
  3592. #: src/settings_translation_file.cpp
  3593. msgid "Mapgen Flat specific flags"
  3594. msgstr ""
  3595. #: src/settings_translation_file.cpp
  3596. msgid "Mapgen Fractal"
  3597. msgstr "Mapgen 형태"
  3598. #: src/settings_translation_file.cpp
  3599. msgid "Mapgen Fractal specific flags"
  3600. msgstr "Mapgen 형태 상세 플래그"
  3601. #: src/settings_translation_file.cpp
  3602. msgid "Mapgen V5"
  3603. msgstr "맵젠 V5"
  3604. #: src/settings_translation_file.cpp
  3605. msgid "Mapgen V5 specific flags"
  3606. msgstr ""
  3607. #: src/settings_translation_file.cpp
  3608. msgid "Mapgen V6"
  3609. msgstr "맵젠 V6"
  3610. #: src/settings_translation_file.cpp
  3611. msgid "Mapgen V6 specific flags"
  3612. msgstr ""
  3613. #: src/settings_translation_file.cpp
  3614. msgid "Mapgen V7"
  3615. msgstr "맵젠 V7"
  3616. #: src/settings_translation_file.cpp
  3617. msgid "Mapgen V7 specific flags"
  3618. msgstr ""
  3619. #: src/settings_translation_file.cpp
  3620. msgid "Mapgen Valleys"
  3621. msgstr ""
  3622. #: src/settings_translation_file.cpp
  3623. msgid "Mapgen Valleys specific flags"
  3624. msgstr ""
  3625. #: src/settings_translation_file.cpp
  3626. msgid "Mapgen debug"
  3627. msgstr "맵젠 디버그"
  3628. #: src/settings_translation_file.cpp
  3629. msgid "Mapgen name"
  3630. msgstr "Mapgen 이름"
  3631. #: src/settings_translation_file.cpp
  3632. msgid "Max block generate distance"
  3633. msgstr ""
  3634. #: src/settings_translation_file.cpp
  3635. msgid "Max block send distance"
  3636. msgstr "최대 블록 전송 거리"
  3637. #: src/settings_translation_file.cpp
  3638. msgid "Max liquids processed per step."
  3639. msgstr ""
  3640. #: src/settings_translation_file.cpp
  3641. msgid "Max. clearobjects extra blocks"
  3642. msgstr ""
  3643. #: src/settings_translation_file.cpp
  3644. msgid "Max. packets per iteration"
  3645. msgstr ""
  3646. #: src/settings_translation_file.cpp
  3647. msgid "Maximum FPS"
  3648. msgstr "최대 FPS"
  3649. #: src/settings_translation_file.cpp
  3650. #, fuzzy
  3651. msgid "Maximum FPS when the window is not focused, or when the game is paused."
  3652. msgstr "게임이 일시정지될때의 최대 FPS."
  3653. #: src/settings_translation_file.cpp
  3654. msgid "Maximum distance to render shadows."
  3655. msgstr ""
  3656. #: src/settings_translation_file.cpp
  3657. msgid "Maximum forceloaded blocks"
  3658. msgstr "최대 강제 로딩 블럭"
  3659. #: src/settings_translation_file.cpp
  3660. msgid "Maximum hotbar width"
  3661. msgstr "최대 hotbar 폭"
  3662. #: src/settings_translation_file.cpp
  3663. msgid "Maximum limit of random number of large caves per mapchunk."
  3664. msgstr ""
  3665. #: src/settings_translation_file.cpp
  3666. msgid "Maximum limit of random number of small caves per mapchunk."
  3667. msgstr ""
  3668. #: src/settings_translation_file.cpp
  3669. msgid ""
  3670. "Maximum liquid resistance. Controls deceleration when entering liquid at\n"
  3671. "high speed."
  3672. msgstr ""
  3673. #: src/settings_translation_file.cpp
  3674. msgid ""
  3675. "Maximum number of blocks that are simultaneously sent per client.\n"
  3676. "The maximum total count is calculated dynamically:\n"
  3677. "max_total = ceil((#clients + max_users) * per_client / 4)"
  3678. msgstr ""
  3679. #: src/settings_translation_file.cpp
  3680. msgid "Maximum number of blocks that can be queued for loading."
  3681. msgstr ""
  3682. #: src/settings_translation_file.cpp
  3683. msgid ""
  3684. "Maximum number of blocks to be queued that are to be generated.\n"
  3685. "This limit is enforced per player."
  3686. msgstr ""
  3687. #: src/settings_translation_file.cpp
  3688. msgid ""
  3689. "Maximum number of blocks to be queued that are to be loaded from file.\n"
  3690. "This limit is enforced per player."
  3691. msgstr ""
  3692. #: src/settings_translation_file.cpp
  3693. msgid ""
  3694. "Maximum number of concurrent downloads. Downloads exceeding this limit will "
  3695. "be queued.\n"
  3696. "This should be lower than curl_parallel_limit."
  3697. msgstr ""
  3698. #: src/settings_translation_file.cpp
  3699. msgid ""
  3700. "Maximum number of mapblocks for client to be kept in memory.\n"
  3701. "Set to -1 for unlimited amount."
  3702. msgstr ""
  3703. #: src/settings_translation_file.cpp
  3704. msgid ""
  3705. "Maximum number of packets sent per send step, if you have a slow connection\n"
  3706. "try reducing it, but don't reduce it to a number below double of targeted\n"
  3707. "client number."
  3708. msgstr ""
  3709. #: src/settings_translation_file.cpp
  3710. msgid "Maximum number of players that can be connected simultaneously."
  3711. msgstr "동시접속 할 수 있는 최대 인원 수."
  3712. #: src/settings_translation_file.cpp
  3713. msgid "Maximum number of recent chat messages to show"
  3714. msgstr ""
  3715. #: src/settings_translation_file.cpp
  3716. msgid "Maximum number of statically stored objects in a block."
  3717. msgstr ""
  3718. #: src/settings_translation_file.cpp
  3719. msgid "Maximum objects per block"
  3720. msgstr "블록 당 최대 개체"
  3721. #: src/settings_translation_file.cpp
  3722. msgid ""
  3723. "Maximum proportion of current window to be used for hotbar.\n"
  3724. "Useful if there's something to be displayed right or left of hotbar."
  3725. msgstr ""
  3726. "현재 윈도우의 최대 부분은 hotbar를 사용할 것입니다.\n"
  3727. "hotbar의 오른쪽이나 왼쪽에 무언가를 나타낼 때 유용합니다."
  3728. #: src/settings_translation_file.cpp
  3729. msgid "Maximum simultaneous block sends per client"
  3730. msgstr "클라이언트 당 최대 동시 블록 전송"
  3731. #: src/settings_translation_file.cpp
  3732. msgid "Maximum size of the outgoing chat queue"
  3733. msgstr ""
  3734. #: src/settings_translation_file.cpp
  3735. msgid ""
  3736. "Maximum size of the outgoing chat queue.\n"
  3737. "0 to disable queueing and -1 to make the queue size unlimited."
  3738. msgstr ""
  3739. #: src/settings_translation_file.cpp
  3740. #, fuzzy
  3741. msgid ""
  3742. "Maximum time a file download (e.g. a mod download) may take, stated in "
  3743. "milliseconds."
  3744. msgstr ""
  3745. "ms 에서 파일을 다운로드하면 (예 : 모드 다운로드) 최대 시간이 걸릴 수 있습니"
  3746. "다."
  3747. #: src/settings_translation_file.cpp
  3748. msgid ""
  3749. "Maximum time an interactive request (e.g. server list fetch) may take, "
  3750. "stated in milliseconds."
  3751. msgstr ""
  3752. #: src/settings_translation_file.cpp
  3753. msgid "Maximum users"
  3754. msgstr "최대 사용자"
  3755. #: src/settings_translation_file.cpp
  3756. msgid "Mesh cache"
  3757. msgstr "메쉬 캐시"
  3758. #: src/settings_translation_file.cpp
  3759. msgid "Message of the day"
  3760. msgstr "메시지"
  3761. #: src/settings_translation_file.cpp
  3762. msgid "Message of the day displayed to players connecting."
  3763. msgstr "연결하는 플레이어에게 보여지는 메시지."
  3764. #: src/settings_translation_file.cpp
  3765. msgid "Method used to highlight selected object."
  3766. msgstr "선택한 개체를 강조 표시 하는 데 사용 하는 방법입니다."
  3767. #: src/settings_translation_file.cpp
  3768. msgid "Minimal level of logging to be written to chat."
  3769. msgstr ""
  3770. #: src/settings_translation_file.cpp
  3771. msgid "Minimap scan height"
  3772. msgstr "미니맵 스캔 높이"
  3773. #: src/settings_translation_file.cpp
  3774. #, fuzzy
  3775. msgid "Minimum dig repetition interval"
  3776. msgstr "오른쪽 클릭 반복 간격"
  3777. #: src/settings_translation_file.cpp
  3778. msgid "Minimum limit of random number of large caves per mapchunk."
  3779. msgstr ""
  3780. #: src/settings_translation_file.cpp
  3781. msgid "Minimum limit of random number of small caves per mapchunk."
  3782. msgstr ""
  3783. #: src/settings_translation_file.cpp
  3784. msgid "Mipmapping"
  3785. msgstr "밉매핑(Mipmapping)"
  3786. #: src/settings_translation_file.cpp
  3787. msgid "Miscellaneous"
  3788. msgstr ""
  3789. #: src/settings_translation_file.cpp
  3790. #, fuzzy
  3791. msgid "Mod Profiler"
  3792. msgstr "프로파일러"
  3793. #: src/settings_translation_file.cpp
  3794. #, fuzzy
  3795. msgid "Mod Security"
  3796. msgstr "보안"
  3797. #: src/settings_translation_file.cpp
  3798. msgid "Mod channels"
  3799. msgstr ""
  3800. #: src/settings_translation_file.cpp
  3801. msgid "Modifies the size of the HUD elements."
  3802. msgstr ""
  3803. #: src/settings_translation_file.cpp
  3804. msgid "Monospace font path"
  3805. msgstr "고정 폭 글꼴 경로"
  3806. #: src/settings_translation_file.cpp
  3807. msgid "Monospace font size"
  3808. msgstr "고정 폭 글꼴 크기"
  3809. #: src/settings_translation_file.cpp
  3810. #, fuzzy
  3811. msgid "Monospace font size divisible by"
  3812. msgstr "고정 폭 글꼴 크기"
  3813. #: src/settings_translation_file.cpp
  3814. msgid "Mountain height noise"
  3815. msgstr ""
  3816. #: src/settings_translation_file.cpp
  3817. msgid "Mountain noise"
  3818. msgstr ""
  3819. #: src/settings_translation_file.cpp
  3820. msgid "Mountain variation noise"
  3821. msgstr ""
  3822. #: src/settings_translation_file.cpp
  3823. msgid "Mountain zero level"
  3824. msgstr "산 0 수준"
  3825. #: src/settings_translation_file.cpp
  3826. msgid "Mouse sensitivity"
  3827. msgstr "마우스 감도"
  3828. #: src/settings_translation_file.cpp
  3829. msgid "Mouse sensitivity multiplier."
  3830. msgstr "마우스 감도 멀티플라이어."
  3831. #: src/settings_translation_file.cpp
  3832. #, fuzzy
  3833. msgid "Movement threshold"
  3834. msgstr "동굴 임계치"
  3835. #: src/settings_translation_file.cpp
  3836. msgid "Mud noise"
  3837. msgstr ""
  3838. #: src/settings_translation_file.cpp
  3839. msgid ""
  3840. "Multiplier for fall bobbing.\n"
  3841. "For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
  3842. msgstr ""
  3843. "낙하 흔들림 멀티플라이어\n"
  3844. "예 : 0은 화면 흔들림 없음; 1.0은 노말; 2.0은 더블."
  3845. #: src/settings_translation_file.cpp
  3846. msgid "Mute sound"
  3847. msgstr ""
  3848. #: src/settings_translation_file.cpp
  3849. msgid ""
  3850. "Name of map generator to be used when creating a new world.\n"
  3851. "Creating a world in the main menu will override this.\n"
  3852. "Current mapgens in a highly unstable state:\n"
  3853. "- The optional floatlands of v7 (disabled by default)."
  3854. msgstr ""
  3855. #: src/settings_translation_file.cpp
  3856. msgid ""
  3857. "Name of the player.\n"
  3858. "When running a server, clients connecting with this name are admins.\n"
  3859. "When starting from the main menu, this is overridden."
  3860. msgstr ""
  3861. "플레이어의 이름.\n"
  3862. "서버가 열려 있을 때 이 이름으로 연결되는 클라이언트는 관리자입니다.\n"
  3863. "메인 메뉴에서 시작할 때 이것은 재정의됩니다."
  3864. #: src/settings_translation_file.cpp
  3865. msgid ""
  3866. "Name of the server, to be displayed when players join and in the serverlist."
  3867. msgstr "서버이름은 플레이어가 서버 리스트에 들어갈 때 나타납니다."
  3868. #: src/settings_translation_file.cpp
  3869. msgid ""
  3870. "Network port to listen (UDP).\n"
  3871. "This value will be overridden when starting from the main menu."
  3872. msgstr ""
  3873. #: src/settings_translation_file.cpp
  3874. #, fuzzy
  3875. msgid "Networking"
  3876. msgstr "네트워크"
  3877. #: src/settings_translation_file.cpp
  3878. msgid "New users need to input this password."
  3879. msgstr "신규 사용자는 이 비밀번호를 입력해야 합니다."
  3880. #: src/settings_translation_file.cpp
  3881. #, fuzzy
  3882. msgid "Node and Entity Highlighting"
  3883. msgstr "Node 강조"
  3884. #: src/settings_translation_file.cpp
  3885. msgid "Node highlighting"
  3886. msgstr "Node 강조"
  3887. #: src/settings_translation_file.cpp
  3888. msgid "NodeTimer interval"
  3889. msgstr "NodeTimer 간격"
  3890. #: src/settings_translation_file.cpp
  3891. msgid "Noises"
  3892. msgstr "소리"
  3893. #: src/settings_translation_file.cpp
  3894. msgid "Number of emerge threads"
  3895. msgstr ""
  3896. #: src/settings_translation_file.cpp
  3897. msgid ""
  3898. "Number of emerge threads to use.\n"
  3899. "Value 0:\n"
  3900. "- Automatic selection. The number of emerge threads will be\n"
  3901. "- 'number of processors - 2', with a lower limit of 1.\n"
  3902. "Any other value:\n"
  3903. "- Specifies the number of emerge threads, with a lower limit of 1.\n"
  3904. "WARNING: Increasing the number of emerge threads increases engine mapgen\n"
  3905. "speed, but this may harm game performance by interfering with other\n"
  3906. "processes, especially in singleplayer and/or when running Lua code in\n"
  3907. "'on_generated'. For many users the optimum setting may be '1'."
  3908. msgstr ""
  3909. #: src/settings_translation_file.cpp
  3910. msgid ""
  3911. "Number of extra blocks that can be loaded by /clearobjects at once.\n"
  3912. "This is a trade-off between SQLite transaction overhead and\n"
  3913. "memory consumption (4096=100MB, as a rule of thumb)."
  3914. msgstr ""
  3915. #: src/settings_translation_file.cpp
  3916. #, fuzzy
  3917. msgid "Number of messages a player may send per 10 seconds."
  3918. msgstr "플레이어가 10 초당 보낼 수있는 메시지의 양."
  3919. #: src/settings_translation_file.cpp
  3920. msgid ""
  3921. "Number of threads to use for mesh generation.\n"
  3922. "Value of 0 (default) will let Minetest autodetect the number of available "
  3923. "threads."
  3924. msgstr ""
  3925. #: src/settings_translation_file.cpp
  3926. msgid "Occlusion Culler"
  3927. msgstr ""
  3928. #: src/settings_translation_file.cpp
  3929. msgid "Occlusion Culling"
  3930. msgstr ""
  3931. #: src/settings_translation_file.cpp
  3932. msgid ""
  3933. "Opaqueness (alpha) of the shadow behind the default font, between 0 and 255."
  3934. msgstr ""
  3935. #: src/settings_translation_file.cpp
  3936. msgid ""
  3937. "Open the pause menu when the window's focus is lost. Does not pause if a "
  3938. "formspec is\n"
  3939. "open."
  3940. msgstr ""
  3941. #: src/settings_translation_file.cpp
  3942. #, fuzzy
  3943. msgid "OpenGL debug"
  3944. msgstr "맵젠 디버그"
  3945. #: src/settings_translation_file.cpp
  3946. msgid "Optional override for chat weblink color."
  3947. msgstr ""
  3948. #: src/settings_translation_file.cpp
  3949. msgid ""
  3950. "Path of the fallback font. Must be a TrueType font.\n"
  3951. "This font will be used for certain languages or if the default font is "
  3952. "unavailable."
  3953. msgstr ""
  3954. #: src/settings_translation_file.cpp
  3955. msgid ""
  3956. "Path to save screenshots at. Can be an absolute or relative path.\n"
  3957. "The folder will be created if it doesn't already exist."
  3958. msgstr ""
  3959. #: src/settings_translation_file.cpp
  3960. msgid ""
  3961. "Path to shader directory. If no path is defined, default location will be "
  3962. "used."
  3963. msgstr ""
  3964. "shader의 경로입니다. 어떠한 경로도 지정되지 않았다면 기본 위치가 쓰입니다."
  3965. #: src/settings_translation_file.cpp
  3966. msgid ""
  3967. "Path to the default font. Must be a TrueType font.\n"
  3968. "The fallback font will be used if the font cannot be loaded."
  3969. msgstr ""
  3970. #: src/settings_translation_file.cpp
  3971. msgid ""
  3972. "Path to the monospace font. Must be a TrueType font.\n"
  3973. "This font is used for e.g. the console and profiler screen."
  3974. msgstr ""
  3975. #: src/settings_translation_file.cpp
  3976. msgid "Pause on lost window focus"
  3977. msgstr ""
  3978. #: src/settings_translation_file.cpp
  3979. msgid "Per-player limit of queued blocks load from disk"
  3980. msgstr ""
  3981. #: src/settings_translation_file.cpp
  3982. msgid "Per-player limit of queued blocks to generate"
  3983. msgstr ""
  3984. #: src/settings_translation_file.cpp
  3985. msgid "Physics"
  3986. msgstr "물리학"
  3987. #: src/settings_translation_file.cpp
  3988. #, fuzzy
  3989. msgid "Place repetition interval"
  3990. msgstr "오른쪽 클릭 반복 간격"
  3991. #: src/settings_translation_file.cpp
  3992. msgid "Player transfer distance"
  3993. msgstr "플레이어 전송 거리"
  3994. #: src/settings_translation_file.cpp
  3995. #, fuzzy
  3996. msgid "Poisson filtering"
  3997. msgstr "이중 선형 필터링"
  3998. #: src/settings_translation_file.cpp
  3999. msgid "Post Processing"
  4000. msgstr ""
  4001. #: src/settings_translation_file.cpp
  4002. msgid ""
  4003. "Prevent digging and placing from repeating when holding the respective "
  4004. "buttons.\n"
  4005. "Enable this when you dig or place too often by accident.\n"
  4006. "On touchscreens, this only affects digging."
  4007. msgstr ""
  4008. #: src/settings_translation_file.cpp
  4009. msgid "Prevent mods from doing insecure things like running shell commands."
  4010. msgstr "shell 명령어 실행 같은 안전 하지 않은 것으로부터 모드를 보호합니다."
  4011. #: src/settings_translation_file.cpp
  4012. msgid ""
  4013. "Print the engine's profiling data in regular intervals (in seconds).\n"
  4014. "0 = disable. Useful for developers."
  4015. msgstr ""
  4016. "엔진의 프로파일링 데이터를 규칙적인 간격(초단위)으로 출력합니다.\n"
  4017. "0 = 사용안함. 개발자들에게 유용합니다."
  4018. #: src/settings_translation_file.cpp
  4019. msgid "Privileges that players with basic_privs can grant"
  4020. msgstr "플레이어와 기본 특권을 부여할 수 있는 권한"
  4021. #: src/settings_translation_file.cpp
  4022. msgid "Profiler"
  4023. msgstr "프로파일러"
  4024. #: src/settings_translation_file.cpp
  4025. msgid "Prometheus listener address"
  4026. msgstr ""
  4027. #: src/settings_translation_file.cpp
  4028. msgid ""
  4029. "Prometheus listener address.\n"
  4030. "If Minetest is compiled with ENABLE_PROMETHEUS option enabled,\n"
  4031. "enable metrics listener for Prometheus on that address.\n"
  4032. "Metrics can be fetched on http://127.0.0.1:30000/metrics"
  4033. msgstr ""
  4034. #: src/settings_translation_file.cpp
  4035. msgid "Proportion of large caves that contain liquid."
  4036. msgstr ""
  4037. #: src/settings_translation_file.cpp
  4038. #, fuzzy
  4039. msgid "Protocol version minimum"
  4040. msgstr "프로토콜 버전이 알맞지 않습니다. "
  4041. #: src/settings_translation_file.cpp
  4042. msgid "Punch gesture"
  4043. msgstr ""
  4044. #: src/settings_translation_file.cpp
  4045. msgid ""
  4046. "Radius of cloud area stated in number of 64 node cloud squares.\n"
  4047. "Values larger than 26 will start to produce sharp cutoffs at cloud area "
  4048. "corners."
  4049. msgstr ""
  4050. "64node 구름 사각형영역의 반지름.\n"
  4051. "26보다 큰 수치들은 구름을 선명하게 만들고 모서리를 잘라낼 것입니다."
  4052. #: src/settings_translation_file.cpp
  4053. msgid "Raises terrain to make valleys around the rivers."
  4054. msgstr "강 주변에 계곡을 만들기 위해 지형을 올립니다."
  4055. #: src/settings_translation_file.cpp
  4056. msgid "Random input"
  4057. msgstr "임의 입력"
  4058. #: src/settings_translation_file.cpp
  4059. msgid "Random mod load order"
  4060. msgstr ""
  4061. #: src/settings_translation_file.cpp
  4062. msgid "Recent Chat Messages"
  4063. msgstr ""
  4064. #: src/settings_translation_file.cpp
  4065. msgid "Regular font path"
  4066. msgstr "보고서 경로"
  4067. #: src/settings_translation_file.cpp
  4068. #, fuzzy
  4069. msgid "Remember screen size"
  4070. msgstr "스크린 크기 자동 저장"
  4071. #: src/settings_translation_file.cpp
  4072. msgid "Remote media"
  4073. msgstr "원격 미디어"
  4074. #: src/settings_translation_file.cpp
  4075. msgid ""
  4076. "Remove color codes from incoming chat messages\n"
  4077. "Use this to stop players from being able to use color in their messages"
  4078. msgstr ""
  4079. #: src/settings_translation_file.cpp
  4080. msgid "Replaces the default main menu with a custom one."
  4081. msgstr "기본 주 메뉴를 커스텀 메뉴로 바꿉니다."
  4082. #: src/settings_translation_file.cpp
  4083. msgid "Report path"
  4084. msgstr "보고서 경로"
  4085. #: src/settings_translation_file.cpp
  4086. msgid ""
  4087. "Restricts the access of certain client-side functions on servers.\n"
  4088. "Combine the byteflags below to restrict client-side features, or set to 0\n"
  4089. "for no restrictions:\n"
  4090. "LOAD_CLIENT_MODS: 1 (disable loading client-provided mods)\n"
  4091. "CHAT_MESSAGES: 2 (disable send_chat_message call client-side)\n"
  4092. "READ_ITEMDEFS: 4 (disable get_item_def call client-side)\n"
  4093. "READ_NODEDEFS: 8 (disable get_node_def call client-side)\n"
  4094. "LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to\n"
  4095. "csm_restriction_noderange)\n"
  4096. "READ_PLAYERINFO: 32 (disable get_player_names call client-side)"
  4097. msgstr ""
  4098. #: src/settings_translation_file.cpp
  4099. msgid "Ridge mountain spread noise"
  4100. msgstr ""
  4101. #: src/settings_translation_file.cpp
  4102. msgid "Ridge noise"
  4103. msgstr "능선 노이즈"
  4104. #: src/settings_translation_file.cpp
  4105. msgid "Ridge underwater noise"
  4106. msgstr ""
  4107. #: src/settings_translation_file.cpp
  4108. msgid "Ridged mountain size noise"
  4109. msgstr ""
  4110. #: src/settings_translation_file.cpp
  4111. msgid "River channel depth"
  4112. msgstr "강 깊이"
  4113. #: src/settings_translation_file.cpp
  4114. msgid "River channel width"
  4115. msgstr "강 너비"
  4116. #: src/settings_translation_file.cpp
  4117. msgid "River depth"
  4118. msgstr "강 깊이"
  4119. #: src/settings_translation_file.cpp
  4120. msgid "River noise"
  4121. msgstr "강 소리"
  4122. #: src/settings_translation_file.cpp
  4123. msgid "River size"
  4124. msgstr "강 크기"
  4125. #: src/settings_translation_file.cpp
  4126. msgid "River valley width"
  4127. msgstr "강 계곡 폭"
  4128. #: src/settings_translation_file.cpp
  4129. msgid "Rollback recording"
  4130. msgstr "롤백 레코딩"
  4131. #: src/settings_translation_file.cpp
  4132. msgid "Rolling hill size noise"
  4133. msgstr ""
  4134. #: src/settings_translation_file.cpp
  4135. msgid "Rolling hills spread noise"
  4136. msgstr ""
  4137. #: src/settings_translation_file.cpp
  4138. msgid "Safe digging and placing"
  4139. msgstr ""
  4140. #: src/settings_translation_file.cpp
  4141. msgid "Sandy beaches occur when np_beach exceeds this value."
  4142. msgstr ""
  4143. #: src/settings_translation_file.cpp
  4144. msgid "Save the map received by the client on disk."
  4145. msgstr "디스크에 클라이언트에서 받은 맵을 저장 합니다."
  4146. #: src/settings_translation_file.cpp
  4147. msgid ""
  4148. "Save window size automatically when modified.\n"
  4149. "If true, screen size is saved in screen_w and screen_h, and whether the "
  4150. "window\n"
  4151. "is maximized is stored in window_maximized.\n"
  4152. "(Autosaving window_maximized only works if compiled with SDL.)"
  4153. msgstr ""
  4154. #: src/settings_translation_file.cpp
  4155. msgid "Saving map received from server"
  4156. msgstr "서버로부터 받은 맵을 저장"
  4157. #: src/settings_translation_file.cpp
  4158. msgid ""
  4159. "Scale GUI by a user specified value.\n"
  4160. "Use a nearest-neighbor-anti-alias filter to scale the GUI.\n"
  4161. "This will smooth over some of the rough edges, and blend\n"
  4162. "pixels when scaling down, at the cost of blurring some\n"
  4163. "edge pixels when images are scaled by non-integer sizes."
  4164. msgstr ""
  4165. #: src/settings_translation_file.cpp
  4166. #, fuzzy
  4167. msgid "Screen"
  4168. msgstr "화면:"
  4169. #: src/settings_translation_file.cpp
  4170. msgid "Screen height"
  4171. msgstr "화면 높이"
  4172. #: src/settings_translation_file.cpp
  4173. msgid "Screen width"
  4174. msgstr "화면 너비"
  4175. #: src/settings_translation_file.cpp
  4176. msgid "Screenshot folder"
  4177. msgstr "스크린샷 폴더"
  4178. #: src/settings_translation_file.cpp
  4179. msgid "Screenshot format"
  4180. msgstr "화면 캡처 형식"
  4181. #: src/settings_translation_file.cpp
  4182. msgid "Screenshot quality"
  4183. msgstr "스크린샷 품질"
  4184. #: src/settings_translation_file.cpp
  4185. msgid ""
  4186. "Screenshot quality. Only used for JPEG format.\n"
  4187. "1 means worst quality; 100 means best quality.\n"
  4188. "Use 0 for default quality."
  4189. msgstr ""
  4190. "화면 캡처 품질입니다. JPEG 형식에만 사용.\n"
  4191. "1은 최악의 품질; 100은 최고의 품질을 의미합니다.\n"
  4192. "기본 품질을 사용하려면 0을 사용 합니다."
  4193. #: src/settings_translation_file.cpp
  4194. #, fuzzy
  4195. msgid "Screenshots"
  4196. msgstr "스크린샷"
  4197. #: src/settings_translation_file.cpp
  4198. msgid "Seabed noise"
  4199. msgstr "해저 노이즈"
  4200. #: src/settings_translation_file.cpp
  4201. msgid "Second of 4 2D noises that together define hill/mountain range height."
  4202. msgstr ""
  4203. #: src/settings_translation_file.cpp
  4204. msgid "Second of two 3D noises that together define tunnels."
  4205. msgstr ""
  4206. #: src/settings_translation_file.cpp
  4207. msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous"
  4208. msgstr "Http://www.sqlite.org/pragma.html#pragma_synchronous 참조"
  4209. #: src/settings_translation_file.cpp
  4210. msgid ""
  4211. "Select the antialiasing method to apply.\n"
  4212. "\n"
  4213. "* None - No antialiasing (default)\n"
  4214. "\n"
  4215. "* FSAA - Hardware-provided full-screen antialiasing\n"
  4216. "(incompatible with Post Processing and Undersampling)\n"
  4217. "A.K.A multi-sample antialiasing (MSAA)\n"
  4218. "Smoothens out block edges but does not affect the insides of textures.\n"
  4219. "A restart is required to change this option.\n"
  4220. "\n"
  4221. "* FXAA - Fast approximate antialiasing (requires shaders)\n"
  4222. "Applies a post-processing filter to detect and smoothen high-contrast "
  4223. "edges.\n"
  4224. "Provides balance between speed and image quality.\n"
  4225. "\n"
  4226. "* SSAA - Super-sampling antialiasing (requires shaders)\n"
  4227. "Renders higher-resolution image of the scene, then scales down to reduce\n"
  4228. "the aliasing effects. This is the slowest and the most accurate method."
  4229. msgstr ""
  4230. #: src/settings_translation_file.cpp
  4231. msgid "Selection box border color (R,G,B)."
  4232. msgstr "선택 박스 테두리 색 (빨, 초, 파)."
  4233. #: src/settings_translation_file.cpp
  4234. msgid "Selection box color"
  4235. msgstr "선택 박스 컬러"
  4236. #: src/settings_translation_file.cpp
  4237. msgid "Selection box width"
  4238. msgstr "선택 박스 너비"
  4239. #: src/settings_translation_file.cpp
  4240. msgid ""
  4241. "Selects one of 18 fractal types.\n"
  4242. "1 = 4D \"Roundy\" Mandelbrot set.\n"
  4243. "2 = 4D \"Roundy\" Julia set.\n"
  4244. "3 = 4D \"Squarry\" Mandelbrot set.\n"
  4245. "4 = 4D \"Squarry\" Julia set.\n"
  4246. "5 = 4D \"Mandy Cousin\" Mandelbrot set.\n"
  4247. "6 = 4D \"Mandy Cousin\" Julia set.\n"
  4248. "7 = 4D \"Variation\" Mandelbrot set.\n"
  4249. "8 = 4D \"Variation\" Julia set.\n"
  4250. "9 = 3D \"Mandelbrot/Mandelbar\" Mandelbrot set.\n"
  4251. "10 = 3D \"Mandelbrot/Mandelbar\" Julia set.\n"
  4252. "11 = 3D \"Christmas Tree\" Mandelbrot set.\n"
  4253. "12 = 3D \"Christmas Tree\" Julia set.\n"
  4254. "13 = 3D \"Mandelbulb\" Mandelbrot set.\n"
  4255. "14 = 3D \"Mandelbulb\" Julia set.\n"
  4256. "15 = 3D \"Cosine Mandelbulb\" Mandelbrot set.\n"
  4257. "16 = 3D \"Cosine Mandelbulb\" Julia set.\n"
  4258. "17 = 4D \"Mandelbulb\" Mandelbrot set.\n"
  4259. "18 = 4D \"Mandelbulb\" Julia set."
  4260. msgstr ""
  4261. "9가지 공식에서 18 도형을 선택하세요.\n"
  4262. "1 = 4 D \"Roundy\" 만델브로트 집합.\n"
  4263. "2 = 4 D \"Roundy\" 줄리아 집합.\n"
  4264. "3 = 4 D \"Squarry\" 만델브로트 집합.\n"
  4265. "4 = 4 D \"Squarry\" 줄리아 집합.\n"
  4266. "5 = 4 D \"맨디 사촌\" 만델브로트 집합.\n"
  4267. "6 = 4 D \"맨디 사촌\" 줄리아 집합.\n"
  4268. "7 = 4 D \"변형\" 만델브로트 집합.\n"
  4269. "8 = 4 D \"변형\" 줄리아 집합.\n"
  4270. "9 = 3D \"만델브로트/만델바\" 만델브로트 집합.\n"
  4271. "10 = 3D \"만델브로트/만델바\" 줄리아 집합.\n"
  4272. "11 = 3D \"크리스마스 트리\" 만델브로트 집합.\n"
  4273. "12 = 3D \"크리스마스 트리\" 줄리아 집합.\n"
  4274. "13 = 3D \"만델벌브\" 만델브로트 집합.\n"
  4275. "14 = 3D \"만델벌브\" 줄리아 집합.\n"
  4276. "15 = 3D \"코사인 만델벌브\" 만델브로트 집합.\n"
  4277. "16 = 3D \"코사인 만델벌브\" 줄리아 집합.\n"
  4278. "17 = 4 D \"만델벌브\" 만델브로트 집합.\n"
  4279. "18 = 4 D \"만델벌브\" 줄리아 집합."
  4280. #: src/settings_translation_file.cpp
  4281. #, fuzzy
  4282. msgid "Server"
  4283. msgstr "서버 URL"
  4284. #: src/settings_translation_file.cpp
  4285. #, fuzzy
  4286. msgid "Server Gameplay"
  4287. msgstr "서버 이름"
  4288. #: src/settings_translation_file.cpp
  4289. #, fuzzy
  4290. msgid "Server Security"
  4291. msgstr "서버 설명"
  4292. #: src/settings_translation_file.cpp
  4293. msgid "Server URL"
  4294. msgstr "서버 URL"
  4295. #: src/settings_translation_file.cpp
  4296. msgid "Server address"
  4297. msgstr "서버 주소"
  4298. #: src/settings_translation_file.cpp
  4299. msgid "Server description"
  4300. msgstr "서버 설명"
  4301. #: src/settings_translation_file.cpp
  4302. msgid "Server name"
  4303. msgstr "서버 이름"
  4304. #: src/settings_translation_file.cpp
  4305. msgid "Server port"
  4306. msgstr "서버 포트"
  4307. #: src/settings_translation_file.cpp
  4308. msgid "Server-side occlusion culling"
  4309. msgstr ""
  4310. #: src/settings_translation_file.cpp
  4311. #, fuzzy
  4312. msgid "Server/Env Performance"
  4313. msgstr "서버 포트"
  4314. #: src/settings_translation_file.cpp
  4315. msgid "Serverlist URL"
  4316. msgstr "서버리스트 URL"
  4317. #: src/settings_translation_file.cpp
  4318. #, fuzzy
  4319. msgid "Serverlist and MOTD"
  4320. msgstr "서버리스트 URL"
  4321. #: src/settings_translation_file.cpp
  4322. msgid "Serverlist file"
  4323. msgstr "서버리스트 파일"
  4324. #: src/settings_translation_file.cpp
  4325. msgid ""
  4326. "Set the default tilt of Sun/Moon orbit in degrees.\n"
  4327. "Games may change orbit tilt via API.\n"
  4328. "Value of 0 means no tilt / vertical orbit."
  4329. msgstr ""
  4330. #: src/settings_translation_file.cpp
  4331. msgid ""
  4332. "Set the exposure compensation in EV units.\n"
  4333. "Value of 0.0 (default) means no exposure compensation.\n"
  4334. "Range: from -1 to 1.0"
  4335. msgstr ""
  4336. #: src/settings_translation_file.cpp
  4337. #, fuzzy
  4338. msgid ""
  4339. "Set the language. By default, the system language is used.\n"
  4340. "A restart is required after changing this."
  4341. msgstr ""
  4342. "언어 설정. 시스템 언어를 사용하려면 비워두세요.\n"
  4343. "설정 적용 후 재시작이 필요합니다."
  4344. #: src/settings_translation_file.cpp
  4345. msgid ""
  4346. "Set the maximum length of a chat message (in characters) sent by clients."
  4347. msgstr ""
  4348. #: src/settings_translation_file.cpp
  4349. msgid ""
  4350. "Set the shadow strength gamma.\n"
  4351. "Adjusts the intensity of in-game dynamic shadows.\n"
  4352. "Lower value means lighter shadows, higher value means darker shadows."
  4353. msgstr ""
  4354. #: src/settings_translation_file.cpp
  4355. msgid ""
  4356. "Set the soft shadow radius size.\n"
  4357. "Lower values mean sharper shadows, bigger values mean softer shadows.\n"
  4358. "Minimum value: 1.0; maximum value: 15.0"
  4359. msgstr ""
  4360. #: src/settings_translation_file.cpp
  4361. #, fuzzy
  4362. msgid "Set to true to enable Shadow Mapping."
  4363. msgstr ""
  4364. "True로 설정하면 흔들리는 나뭇잎 효과가 적용됩니다.\n"
  4365. "쉐이더를 활성화 해야 합니다."
  4366. #: src/settings_translation_file.cpp
  4367. msgid ""
  4368. "Set to true to enable bloom effect.\n"
  4369. "Bright colors will bleed over the neighboring objects."
  4370. msgstr ""
  4371. #: src/settings_translation_file.cpp
  4372. msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")."
  4373. msgstr ""
  4374. #: src/settings_translation_file.cpp
  4375. #, fuzzy
  4376. msgid "Set to true to enable waving leaves."
  4377. msgstr ""
  4378. "True로 설정하면 흔들리는 나뭇잎 효과가 적용됩니다.\n"
  4379. "쉐이더를 활성화 해야 합니다."
  4380. #: src/settings_translation_file.cpp
  4381. #, fuzzy
  4382. msgid "Set to true to enable waving liquids (like water)."
  4383. msgstr ""
  4384. "True로 설정하면 물결효과가 적용됩니다.\n"
  4385. "쉐이더를 활성화해야 합니다."
  4386. #: src/settings_translation_file.cpp
  4387. #, fuzzy
  4388. msgid "Set to true to enable waving plants."
  4389. msgstr ""
  4390. "True로 설정하면 흔들리는 식물 효과가 적용됩니다.\n"
  4391. "쉐이더를 활성화 해야 합니다."
  4392. #: src/settings_translation_file.cpp
  4393. msgid ""
  4394. "Set to true to render debugging breakdown of the bloom effect.\n"
  4395. "In debug mode, the screen is split into 4 quadrants:\n"
  4396. "top-left - processed base image, top-right - final image\n"
  4397. "bottom-left - raw base image, bottom-right - bloom texture."
  4398. msgstr ""
  4399. #: src/settings_translation_file.cpp
  4400. msgid ""
  4401. "Sets shadow texture quality to 32 bits.\n"
  4402. "On false, 16 bits texture will be used.\n"
  4403. "This can cause much more artifacts in the shadow."
  4404. msgstr ""
  4405. #: src/settings_translation_file.cpp
  4406. msgid "Shader path"
  4407. msgstr "쉐이더 경로"
  4408. #: src/settings_translation_file.cpp
  4409. msgid "Shaders"
  4410. msgstr "쉐이더"
  4411. #: src/settings_translation_file.cpp
  4412. #, fuzzy
  4413. msgid ""
  4414. "Shaders allow advanced visual effects and may increase performance on some "
  4415. "video\n"
  4416. "cards."
  4417. msgstr ""
  4418. "쉐이더는 확장된 시각 효과를 제공하고 몇몇 비디오 카드의 성능이 증가할 수도 있"
  4419. "습니다.\n"
  4420. "이것은 OpenGL video backend에서만 \n"
  4421. "작동합니다."
  4422. #: src/settings_translation_file.cpp
  4423. #, fuzzy
  4424. msgid "Shadow filter quality"
  4425. msgstr "스크린샷 품질"
  4426. #: src/settings_translation_file.cpp
  4427. msgid "Shadow map max distance in nodes to render shadows"
  4428. msgstr ""
  4429. #: src/settings_translation_file.cpp
  4430. msgid "Shadow map texture in 32 bits"
  4431. msgstr ""
  4432. #: src/settings_translation_file.cpp
  4433. #, fuzzy
  4434. msgid "Shadow map texture size"
  4435. msgstr "최소 텍스처 크기"
  4436. #: src/settings_translation_file.cpp
  4437. msgid ""
  4438. "Shadow offset (in pixels) of the default font. If 0, then shadow will not be "
  4439. "drawn."
  4440. msgstr "글꼴 그림자 오프셋, 만약 0 이면 그림자는 나타나지 않을 것입니다."
  4441. #: src/settings_translation_file.cpp
  4442. msgid "Shadow strength gamma"
  4443. msgstr ""
  4444. #: src/settings_translation_file.cpp
  4445. msgid "Show debug info"
  4446. msgstr "디버그 정보 보기"
  4447. #: src/settings_translation_file.cpp
  4448. msgid "Show entity selection boxes"
  4449. msgstr "개체 선택 상자 보기"
  4450. #: src/settings_translation_file.cpp
  4451. #, fuzzy
  4452. msgid ""
  4453. "Show entity selection boxes\n"
  4454. "A restart is required after changing this."
  4455. msgstr ""
  4456. "언어 설정. 시스템 언어를 사용하려면 비워두세요.\n"
  4457. "설정 적용 후 재시작이 필요합니다."
  4458. #: src/settings_translation_file.cpp
  4459. msgid "Show name tag backgrounds by default"
  4460. msgstr ""
  4461. #: src/settings_translation_file.cpp
  4462. msgid "Shutdown message"
  4463. msgstr "서버닫힘 메시지"
  4464. #: src/settings_translation_file.cpp
  4465. msgid ""
  4466. "Side length of a cube of map blocks that the client will consider together\n"
  4467. "when generating meshes.\n"
  4468. "Larger values increase the utilization of the GPU by reducing the number of\n"
  4469. "draw calls, benefiting especially high-end GPUs.\n"
  4470. "Systems with a low-end GPU (or no GPU) would benefit from smaller values."
  4471. msgstr ""
  4472. #: src/settings_translation_file.cpp
  4473. msgid ""
  4474. "Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n"
  4475. "WARNING: There is no benefit, and there are several dangers, in\n"
  4476. "increasing this value above 5.\n"
  4477. "Reducing this value increases cave and dungeon density.\n"
  4478. "Altering this value is for special usage, leaving it unchanged is\n"
  4479. "recommended."
  4480. msgstr ""
  4481. #: src/settings_translation_file.cpp
  4482. msgid "Sky Body Orbit Tilt"
  4483. msgstr ""
  4484. #: src/settings_translation_file.cpp
  4485. msgid "Slice w"
  4486. msgstr ""
  4487. #: src/settings_translation_file.cpp
  4488. msgid "Slope and fill work together to modify the heights."
  4489. msgstr "높이 수정을 위해 기울기와 채우기를 함께 작용합니다."
  4490. #: src/settings_translation_file.cpp
  4491. msgid "Small cave maximum number"
  4492. msgstr ""
  4493. #: src/settings_translation_file.cpp
  4494. msgid "Small cave minimum number"
  4495. msgstr ""
  4496. #: src/settings_translation_file.cpp
  4497. msgid "Small-scale humidity variation for blending biomes on borders."
  4498. msgstr ""
  4499. #: src/settings_translation_file.cpp
  4500. msgid "Small-scale temperature variation for blending biomes on borders."
  4501. msgstr ""
  4502. #: src/settings_translation_file.cpp
  4503. msgid "Smooth lighting"
  4504. msgstr "부드러운 조명효과"
  4505. #: src/settings_translation_file.cpp
  4506. #, fuzzy
  4507. msgid ""
  4508. "Smooths rotation of camera when in cinematic mode, 0 to disable. Enter "
  4509. "cinematic mode by using the key set in Controls."
  4510. msgstr ""
  4511. "시네마틱 모드에서 카메라의 회전을 매끄럽게 만듭니다. 사용 하지 않으려면 0을 "
  4512. "입력하세요."
  4513. #: src/settings_translation_file.cpp
  4514. #, fuzzy
  4515. msgid ""
  4516. "Smooths rotation of camera, also called look or mouse smoothing. 0 to "
  4517. "disable."
  4518. msgstr ""
  4519. "시네마틱 모드에서 카메라의 회전을 매끄럽게 만듭니다. 사용 하지 않으려면 0을 "
  4520. "입력하세요."
  4521. #: src/settings_translation_file.cpp
  4522. msgid "Sneaking speed"
  4523. msgstr "걷는 속도"
  4524. #: src/settings_translation_file.cpp
  4525. msgid "Sneaking speed, in nodes per second."
  4526. msgstr ""
  4527. #: src/settings_translation_file.cpp
  4528. #, fuzzy
  4529. msgid "Soft shadow radius"
  4530. msgstr "글꼴 그림자 투명도"
  4531. #: src/settings_translation_file.cpp
  4532. msgid "Sound"
  4533. msgstr "사운드"
  4534. #: src/settings_translation_file.cpp
  4535. #, fuzzy
  4536. msgid "Sound Extensions Blacklist"
  4537. msgstr "콘텐츠DB 블랙리스트 플래그"
  4538. #: src/settings_translation_file.cpp
  4539. msgid ""
  4540. "Specifies URL from which client fetches media instead of using UDP.\n"
  4541. "$filename should be accessible from $remote_media$filename via cURL\n"
  4542. "(obviously, remote_media should end with a slash).\n"
  4543. "Files that are not present will be fetched the usual way."
  4544. msgstr ""
  4545. #: src/settings_translation_file.cpp
  4546. msgid ""
  4547. "Specifies the default stack size of nodes, items and tools.\n"
  4548. "Note that mods or games may explicitly set a stack for certain (or all) "
  4549. "items."
  4550. msgstr ""
  4551. #: src/settings_translation_file.cpp
  4552. msgid ""
  4553. "Spread a complete update of shadow map over given number of frames.\n"
  4554. "Higher values might make shadows laggy, lower values\n"
  4555. "will consume more resources.\n"
  4556. "Minimum value: 1; maximum value: 16"
  4557. msgstr ""
  4558. #: src/settings_translation_file.cpp
  4559. msgid ""
  4560. "Spread of light curve boost range.\n"
  4561. "Controls the width of the range to be boosted.\n"
  4562. "Standard deviation of the light curve boost Gaussian."
  4563. msgstr ""
  4564. #: src/settings_translation_file.cpp
  4565. #, fuzzy
  4566. msgid "Static spawn point"
  4567. msgstr "고정된 스폰포인트"
  4568. #: src/settings_translation_file.cpp
  4569. msgid "Steepness noise"
  4570. msgstr ""
  4571. #: src/settings_translation_file.cpp
  4572. msgid "Step mountain size noise"
  4573. msgstr "계단식 산 높이"
  4574. #: src/settings_translation_file.cpp
  4575. msgid "Step mountain spread noise"
  4576. msgstr ""
  4577. #: src/settings_translation_file.cpp
  4578. msgid "Strength of 3D mode parallax."
  4579. msgstr "자동으로 생성되는 노멀맵의 강도."
  4580. #: src/settings_translation_file.cpp
  4581. msgid ""
  4582. "Strength of light curve boost.\n"
  4583. "The 3 'boost' parameters define a range of the light\n"
  4584. "curve that is boosted in brightness."
  4585. msgstr ""
  4586. #: src/settings_translation_file.cpp
  4587. msgid "Strict protocol checking"
  4588. msgstr "엄격한 프로토콜 검사"
  4589. #: src/settings_translation_file.cpp
  4590. msgid "Strip color codes"
  4591. msgstr ""
  4592. #: src/settings_translation_file.cpp
  4593. msgid ""
  4594. "Surface level of optional water placed on a solid floatland layer.\n"
  4595. "Water is disabled by default and will only be placed if this value is set\n"
  4596. "to above 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (the start of the\n"
  4597. "upper tapering).\n"
  4598. "***WARNING, POTENTIAL DANGER TO WORLDS AND SERVER PERFORMANCE***:\n"
  4599. "When enabling water placement, floatlands must be configured and tested\n"
  4600. "to be a solid layer by setting 'mgv7_floatland_density' to 2.0 (or other\n"
  4601. "required value depending on 'mgv7_np_floatland'), to avoid\n"
  4602. "server-intensive extreme water flow and to avoid vast flooding of the\n"
  4603. "world surface below."
  4604. msgstr ""
  4605. #: src/settings_translation_file.cpp
  4606. msgid "Synchronous SQLite"
  4607. msgstr ""
  4608. #: src/settings_translation_file.cpp
  4609. msgid "Temperature variation for biomes."
  4610. msgstr ""
  4611. #: src/settings_translation_file.cpp
  4612. msgid "Terrain alternative noise"
  4613. msgstr "지형 높이"
  4614. #: src/settings_translation_file.cpp
  4615. msgid "Terrain base noise"
  4616. msgstr "지형 기초 분산"
  4617. #: src/settings_translation_file.cpp
  4618. msgid "Terrain height"
  4619. msgstr "지형 높이"
  4620. #: src/settings_translation_file.cpp
  4621. msgid "Terrain higher noise"
  4622. msgstr "지형 높이 분산"
  4623. #: src/settings_translation_file.cpp
  4624. msgid "Terrain noise"
  4625. msgstr "지형 분산"
  4626. #: src/settings_translation_file.cpp
  4627. msgid ""
  4628. "Terrain noise threshold for hills.\n"
  4629. "Controls proportion of world area covered by hills.\n"
  4630. "Adjust towards 0.0 for a larger proportion."
  4631. msgstr ""
  4632. #: src/settings_translation_file.cpp
  4633. msgid ""
  4634. "Terrain noise threshold for lakes.\n"
  4635. "Controls proportion of world area covered by lakes.\n"
  4636. "Adjust towards 0.0 for a larger proportion."
  4637. msgstr ""
  4638. #: src/settings_translation_file.cpp
  4639. msgid "Terrain persistence noise"
  4640. msgstr ""
  4641. #: src/settings_translation_file.cpp
  4642. msgid ""
  4643. "Texture size to render the shadow map on.\n"
  4644. "This must be a power of two.\n"
  4645. "Bigger numbers create better shadows but it is also more expensive."
  4646. msgstr ""
  4647. #: src/settings_translation_file.cpp
  4648. msgid ""
  4649. "Textures on a node may be aligned either to the node or to the world.\n"
  4650. "The former mode suits better things like machines, furniture, etc., while\n"
  4651. "the latter makes stairs and microblocks fit surroundings better.\n"
  4652. "However, as this possibility is new, thus may not be used by older servers,\n"
  4653. "this option allows enforcing it for certain node types. Note though that\n"
  4654. "that is considered EXPERIMENTAL and may not work properly."
  4655. msgstr ""
  4656. #: src/settings_translation_file.cpp
  4657. msgid "The URL for the content repository"
  4658. msgstr ""
  4659. #: src/settings_translation_file.cpp
  4660. msgid "The dead zone of the joystick"
  4661. msgstr ""
  4662. #: src/settings_translation_file.cpp
  4663. msgid ""
  4664. "The default format in which profiles are being saved,\n"
  4665. "when calling `/profiler save [format]` without format."
  4666. msgstr ""
  4667. #: src/settings_translation_file.cpp
  4668. msgid ""
  4669. "The delay in milliseconds after which a touch interaction is considered a "
  4670. "long tap."
  4671. msgstr ""
  4672. #: src/settings_translation_file.cpp
  4673. msgid ""
  4674. "The file path relative to your world path in which profiles will be saved to."
  4675. msgstr ""
  4676. #: src/settings_translation_file.cpp
  4677. msgid ""
  4678. "The gesture for for punching players/entities.\n"
  4679. "This can be overridden by games and mods.\n"
  4680. "\n"
  4681. "* short_tap\n"
  4682. "Easy to use and well-known from other games that shall not be named.\n"
  4683. "\n"
  4684. "* long_tap\n"
  4685. "Known from the classic Minetest mobile controls.\n"
  4686. "Combat is more or less impossible."
  4687. msgstr ""
  4688. #: src/settings_translation_file.cpp
  4689. msgid "The identifier of the joystick to use"
  4690. msgstr ""
  4691. #: src/settings_translation_file.cpp
  4692. msgid ""
  4693. "The length in pixels after which a touch interaction is considered movement."
  4694. msgstr ""
  4695. #: src/settings_translation_file.cpp
  4696. msgid ""
  4697. "The maximum height of the surface of waving liquids.\n"
  4698. "4.0 = Wave height is two nodes.\n"
  4699. "0.0 = Wave doesn't move at all.\n"
  4700. "Default is 1.0 (1/2 node)."
  4701. msgstr ""
  4702. #: src/settings_translation_file.cpp
  4703. msgid ""
  4704. "The minimum time in seconds it takes between digging nodes when holding\n"
  4705. "the dig button."
  4706. msgstr ""
  4707. #: src/settings_translation_file.cpp
  4708. msgid "The network interface that the server listens on."
  4709. msgstr ""
  4710. #: src/settings_translation_file.cpp
  4711. msgid ""
  4712. "The privileges that new users automatically get.\n"
  4713. "See /privs in game for a full list on your server and mod configuration."
  4714. msgstr ""
  4715. "새로운 유저가 자동으로 얻는 권한입니다.\n"
  4716. "게임에서 /privs를 입력하여 서버와 모드 환경설정의 전체 권한 목록을 확인하세"
  4717. "요."
  4718. #: src/settings_translation_file.cpp
  4719. msgid ""
  4720. "The radius of the volume of blocks around every player that is subject to "
  4721. "the\n"
  4722. "active block stuff, stated in mapblocks (16 nodes).\n"
  4723. "In active blocks objects are loaded and ABMs run.\n"
  4724. "This is also the minimum range in which active objects (mobs) are "
  4725. "maintained.\n"
  4726. "This should be configured together with active_object_send_range_blocks."
  4727. msgstr ""
  4728. #: src/settings_translation_file.cpp
  4729. msgid ""
  4730. "The rendering back-end.\n"
  4731. "Note: A restart is required after changing this!\n"
  4732. "OpenGL is the default for desktop, and OGLES2 for Android.\n"
  4733. "Shaders are supported by everything but OGLES1."
  4734. msgstr ""
  4735. #: src/settings_translation_file.cpp
  4736. msgid ""
  4737. "The sensitivity of the joystick axes for moving the\n"
  4738. "in-game view frustum around."
  4739. msgstr ""
  4740. #: src/settings_translation_file.cpp
  4741. msgid ""
  4742. "The strength (darkness) of node ambient-occlusion shading.\n"
  4743. "Lower is darker, Higher is lighter. The valid range of values for this\n"
  4744. "setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n"
  4745. "set to the nearest valid value."
  4746. msgstr ""
  4747. #: src/settings_translation_file.cpp
  4748. msgid ""
  4749. "The time (in seconds) that the liquids queue may grow beyond processing\n"
  4750. "capacity until an attempt is made to decrease its size by dumping old queue\n"
  4751. "items. A value of 0 disables the functionality."
  4752. msgstr ""
  4753. #: src/settings_translation_file.cpp
  4754. msgid ""
  4755. "The time budget allowed for ABMs to execute on each step\n"
  4756. "(as a fraction of the ABM Interval)"
  4757. msgstr ""
  4758. #: src/settings_translation_file.cpp
  4759. msgid ""
  4760. "The time in seconds it takes between repeated events\n"
  4761. "when holding down a joystick button combination."
  4762. msgstr ""
  4763. #: src/settings_translation_file.cpp
  4764. msgid ""
  4765. "The time in seconds it takes between repeated node placements when holding\n"
  4766. "the place button."
  4767. msgstr ""
  4768. #: src/settings_translation_file.cpp
  4769. msgid "The type of joystick"
  4770. msgstr ""
  4771. #: src/settings_translation_file.cpp
  4772. msgid ""
  4773. "The vertical distance over which heat drops by 20 if 'altitude_chill' is\n"
  4774. "enabled. Also, the vertical distance over which humidity drops by 10 if\n"
  4775. "'altitude_dry' is enabled."
  4776. msgstr ""
  4777. #: src/settings_translation_file.cpp
  4778. msgid "Third of 4 2D noises that together define hill/mountain range height."
  4779. msgstr ""
  4780. #: src/settings_translation_file.cpp
  4781. msgid "Threshold for long taps"
  4782. msgstr ""
  4783. #: src/settings_translation_file.cpp
  4784. msgid ""
  4785. "Time in seconds for item entity (dropped items) to live.\n"
  4786. "Setting it to -1 disables the feature."
  4787. msgstr ""
  4788. "드랍된 아이템이 살아 있는 시간입니다.\n"
  4789. "-1을 입력하여 비활성화합니다."
  4790. #: src/settings_translation_file.cpp
  4791. msgid "Time of day when a new world is started, in millihours (0-23999)."
  4792. msgstr ""
  4793. #: src/settings_translation_file.cpp
  4794. msgid "Time send interval"
  4795. msgstr "시간 전송 간격"
  4796. #: src/settings_translation_file.cpp
  4797. msgid "Time speed"
  4798. msgstr "시간 속도"
  4799. #: src/settings_translation_file.cpp
  4800. #, fuzzy
  4801. msgid "Timeout for client to remove unused map data from memory, in seconds."
  4802. msgstr ""
  4803. "메모리에서 사용 하지 않는 맵 데이터를 제거하기 위해 클라이언트에 대한 시간 제"
  4804. "한입니다."
  4805. #: src/settings_translation_file.cpp
  4806. msgid ""
  4807. "To reduce lag, block transfers are slowed down when a player is building "
  4808. "something.\n"
  4809. "This determines how long they are slowed down after placing or removing a "
  4810. "node."
  4811. msgstr ""
  4812. "플레이어가 무엇을 건설할 때 렉을 줄이기 위해 블럭 전송이 느려집니다.\n"
  4813. "이것은 node가 배치되거나 제거된 후 얼마나 오래 느려지는지를 결정합니다."
  4814. #: src/settings_translation_file.cpp
  4815. msgid "Tooltip delay"
  4816. msgstr "도구 설명 지연"
  4817. #: src/settings_translation_file.cpp
  4818. #, fuzzy
  4819. msgid "Touchscreen"
  4820. msgstr "터치임계값 (픽셀)"
  4821. #: src/settings_translation_file.cpp
  4822. #, fuzzy
  4823. msgid "Touchscreen sensitivity"
  4824. msgstr "마우스 감도"
  4825. #: src/settings_translation_file.cpp
  4826. #, fuzzy
  4827. msgid "Touchscreen sensitivity multiplier."
  4828. msgstr "마우스 감도 멀티플라이어."
  4829. #: src/settings_translation_file.cpp
  4830. msgid "Tradeoffs for performance"
  4831. msgstr ""
  4832. #: src/settings_translation_file.cpp
  4833. #, fuzzy
  4834. msgid "Translucent liquids"
  4835. msgstr "불투명한 액체"
  4836. #: src/settings_translation_file.cpp
  4837. msgid "Transparency Sorting Distance"
  4838. msgstr ""
  4839. #: src/settings_translation_file.cpp
  4840. msgid "Trees noise"
  4841. msgstr ""
  4842. #: src/settings_translation_file.cpp
  4843. msgid "Trilinear filtering"
  4844. msgstr "삼중 선형 필터링"
  4845. #: src/settings_translation_file.cpp
  4846. msgid ""
  4847. "True = 256\n"
  4848. "False = 128\n"
  4849. "Usable to make minimap smoother on slower machines."
  4850. msgstr ""
  4851. "True = 256 \n"
  4852. "False = 128 \n"
  4853. "느린 컴퓨터에서 미니맵을 부드럽게 만들어줍니다."
  4854. #: src/settings_translation_file.cpp
  4855. msgid "Trusted mods"
  4856. msgstr "신뢰할 수 있는 모드"
  4857. #: src/settings_translation_file.cpp
  4858. msgid ""
  4859. "Type of occlusion_culler\n"
  4860. "\n"
  4861. "\"loops\" is the legacy algorithm with nested loops and O(n³) complexity\n"
  4862. "\"bfs\" is the new algorithm based on breadth-first-search and side culling\n"
  4863. "\n"
  4864. "This setting should only be changed if you have performance problems."
  4865. msgstr ""
  4866. #: src/settings_translation_file.cpp
  4867. msgid ""
  4868. "URL to JSON file which provides information about the newest Minetest "
  4869. "release\n"
  4870. "If this is empty the engine will never check for updates."
  4871. msgstr ""
  4872. #: src/settings_translation_file.cpp
  4873. msgid "URL to the server list displayed in the Multiplayer Tab."
  4874. msgstr "멀티 탭에 표시 된 서버 목록 URL입니다."
  4875. #: src/settings_translation_file.cpp
  4876. msgid "Undersampling"
  4877. msgstr "좌표표집(Undersampling)"
  4878. #: src/settings_translation_file.cpp
  4879. msgid ""
  4880. "Undersampling is similar to using a lower screen resolution, but it applies\n"
  4881. "to the game world only, keeping the GUI intact.\n"
  4882. "It should give a significant performance boost at the cost of less detailed "
  4883. "image.\n"
  4884. "Higher values result in a less detailed image."
  4885. msgstr ""
  4886. #: src/settings_translation_file.cpp
  4887. msgid "Unlimited player transfer distance"
  4888. msgstr "무제한 플레이어 전송 거리"
  4889. #: src/settings_translation_file.cpp
  4890. msgid "Unload unused server data"
  4891. msgstr "사용하지 않은 서버 데이터 삭제"
  4892. #: src/settings_translation_file.cpp
  4893. msgid "Update information URL"
  4894. msgstr ""
  4895. #: src/settings_translation_file.cpp
  4896. msgid "Upper Y limit of dungeons."
  4897. msgstr ""
  4898. #: src/settings_translation_file.cpp
  4899. msgid "Upper Y limit of floatlands."
  4900. msgstr ""
  4901. #: src/settings_translation_file.cpp
  4902. msgid "Use 3D cloud look instead of flat."
  4903. msgstr "평평하게 보는 대신에 3D 구름 효과를 사용합니다."
  4904. #: src/settings_translation_file.cpp
  4905. msgid "Use a cloud animation for the main menu background."
  4906. msgstr "주 메뉴 배경에 구름 애니메이션을 사용 합니다."
  4907. #: src/settings_translation_file.cpp
  4908. #, fuzzy
  4909. msgid "Use anisotropic filtering when looking at textures from an angle."
  4910. msgstr "각도에 따라 텍스처를 볼 때 이방성 필터링을 사용 합니다."
  4911. #: src/settings_translation_file.cpp
  4912. #, fuzzy
  4913. msgid "Use bilinear filtering when scaling textures."
  4914. msgstr "삼중 선형 필터링은 질감 스케일링을 할 때 사용 합니다."
  4915. #: src/settings_translation_file.cpp
  4916. msgid "Use crosshair for touch screen"
  4917. msgstr ""
  4918. #: src/settings_translation_file.cpp
  4919. msgid ""
  4920. "Use crosshair to select object instead of whole screen.\n"
  4921. "If enabled, a crosshair will be shown and will be used for selecting object."
  4922. msgstr ""
  4923. #: src/settings_translation_file.cpp
  4924. msgid ""
  4925. "Use mipmaps when scaling textures. May slightly increase performance,\n"
  4926. "especially when using a high-resolution texture pack.\n"
  4927. "Gamma-correct downscaling is not supported."
  4928. msgstr ""
  4929. #: src/settings_translation_file.cpp
  4930. msgid ""
  4931. "Use raytraced occlusion culling in the new culler.\n"
  4932. "This flag enables use of raytraced occlusion culling test for\n"
  4933. "client mesh sizes smaller than 4x4x4 map blocks."
  4934. msgstr ""
  4935. #: src/settings_translation_file.cpp
  4936. msgid ""
  4937. "Use trilinear filtering when scaling textures.\n"
  4938. "If both bilinear and trilinear filtering are enabled, trilinear filtering\n"
  4939. "is applied."
  4940. msgstr ""
  4941. #: src/settings_translation_file.cpp
  4942. #, fuzzy
  4943. msgid ""
  4944. "Use virtual joystick to trigger \"Aux1\" button.\n"
  4945. "If enabled, virtual joystick will also tap \"Aux1\" button when out of main "
  4946. "circle."
  4947. msgstr ""
  4948. "(Android) 가상 조이스틱을 사용하여 \"aux\"버튼을 트리거합니다.\n"
  4949. "활성화 된 경우 가상 조이스틱은 메인 서클에서 벗어날 때 \"aux\"버튼도 탭합니"
  4950. "다."
  4951. #: src/settings_translation_file.cpp
  4952. msgid "User Interfaces"
  4953. msgstr ""
  4954. #: src/settings_translation_file.cpp
  4955. msgid "VSync"
  4956. msgstr "수직동기화 V-Sync"
  4957. #: src/settings_translation_file.cpp
  4958. msgid "Valley depth"
  4959. msgstr "계곡 깊이"
  4960. #: src/settings_translation_file.cpp
  4961. msgid "Valley fill"
  4962. msgstr "계곡 채우기"
  4963. #: src/settings_translation_file.cpp
  4964. msgid "Valley profile"
  4965. msgstr "계곡 측면"
  4966. #: src/settings_translation_file.cpp
  4967. msgid "Valley slope"
  4968. msgstr "계곡 경사"
  4969. #: src/settings_translation_file.cpp
  4970. msgid "Variation of biome filler depth."
  4971. msgstr ""
  4972. #: src/settings_translation_file.cpp
  4973. msgid "Variation of maximum mountain height (in nodes)."
  4974. msgstr ""
  4975. #: src/settings_translation_file.cpp
  4976. msgid "Variation of number of caves."
  4977. msgstr "숫자 의 마우스 설정."
  4978. #: src/settings_translation_file.cpp
  4979. msgid ""
  4980. "Variation of terrain vertical scale.\n"
  4981. "When noise is < -0.55 terrain is near-flat."
  4982. msgstr ""
  4983. #: src/settings_translation_file.cpp
  4984. msgid "Varies depth of biome surface nodes."
  4985. msgstr ""
  4986. #: src/settings_translation_file.cpp
  4987. msgid ""
  4988. "Varies roughness of terrain.\n"
  4989. "Defines the 'persistence' value for terrain_base and terrain_alt noises."
  4990. msgstr ""
  4991. #: src/settings_translation_file.cpp
  4992. msgid "Varies steepness of cliffs."
  4993. msgstr "산의 높이/경사를 조절."
  4994. #: src/settings_translation_file.cpp
  4995. msgid "Vertical climbing speed, in nodes per second."
  4996. msgstr ""
  4997. #: src/settings_translation_file.cpp
  4998. msgid ""
  4999. "Vertical screen synchronization. Your system may still force VSync on even "
  5000. "if this is disabled."
  5001. msgstr ""
  5002. #: src/settings_translation_file.cpp
  5003. msgid "Video driver"
  5004. msgstr "비디오 드라이버"
  5005. #: src/settings_translation_file.cpp
  5006. msgid "View bobbing factor"
  5007. msgstr "시야의 흔들리는 정도"
  5008. #: src/settings_translation_file.cpp
  5009. msgid "View distance in nodes."
  5010. msgstr "node의 보여지는 거리(최소 = 20)."
  5011. #: src/settings_translation_file.cpp
  5012. msgid "Viewing range"
  5013. msgstr "시야 범위"
  5014. #: src/settings_translation_file.cpp
  5015. msgid "Virtual joystick triggers Aux1 button"
  5016. msgstr ""
  5017. #: src/settings_translation_file.cpp
  5018. msgid "Volume"
  5019. msgstr "볼륨"
  5020. #: src/settings_translation_file.cpp
  5021. msgid "Volume multiplier when the window is unfocused."
  5022. msgstr ""
  5023. #: src/settings_translation_file.cpp
  5024. msgid ""
  5025. "Volume of all sounds.\n"
  5026. "Requires the sound system to be enabled."
  5027. msgstr ""
  5028. "시차 교합 맵핑 적용.\n"
  5029. "쉐이더를 활성화 해야 합니다."
  5030. #: src/settings_translation_file.cpp
  5031. #, fuzzy
  5032. msgid "Volume when unfocused"
  5033. msgstr "게임이 일시정지될때의 최대 FPS."
  5034. #: src/settings_translation_file.cpp
  5035. #, fuzzy
  5036. msgid "Volumetric lighting"
  5037. msgstr "부드러운 조명효과"
  5038. #: src/settings_translation_file.cpp
  5039. msgid ""
  5040. "W coordinate of the generated 3D slice of a 4D fractal.\n"
  5041. "Determines which 3D slice of the 4D shape is generated.\n"
  5042. "Alters the shape of the fractal.\n"
  5043. "Has no effect on 3D fractals.\n"
  5044. "Range roughly -2 to 2."
  5045. msgstr ""
  5046. #: src/settings_translation_file.cpp
  5047. msgid "Walking and flying speed, in nodes per second."
  5048. msgstr ""
  5049. #: src/settings_translation_file.cpp
  5050. msgid "Walking speed"
  5051. msgstr "걷는 속도"
  5052. #: src/settings_translation_file.cpp
  5053. msgid "Walking, flying and climbing speed in fast mode, in nodes per second."
  5054. msgstr ""
  5055. #: src/settings_translation_file.cpp
  5056. msgid "Water level"
  5057. msgstr "물의 높이"
  5058. #: src/settings_translation_file.cpp
  5059. msgid "Water surface level of the world."
  5060. msgstr "월드의 물 표면 높이."
  5061. #: src/settings_translation_file.cpp
  5062. msgid "Waving Nodes"
  5063. msgstr "움직이는 Node"
  5064. #: src/settings_translation_file.cpp
  5065. msgid "Waving leaves"
  5066. msgstr "흔들리는 나뭇잎 효과"
  5067. #: src/settings_translation_file.cpp
  5068. msgid "Waving liquids"
  5069. msgstr "물 움직임"
  5070. #: src/settings_translation_file.cpp
  5071. msgid "Waving liquids wave height"
  5072. msgstr "물결 높이"
  5073. #: src/settings_translation_file.cpp
  5074. msgid "Waving liquids wave speed"
  5075. msgstr "물결 속도"
  5076. #: src/settings_translation_file.cpp
  5077. msgid "Waving liquids wavelength"
  5078. msgstr "물결 길이"
  5079. #: src/settings_translation_file.cpp
  5080. msgid "Waving plants"
  5081. msgstr "흔들리는 식물 효과"
  5082. #: src/settings_translation_file.cpp
  5083. #, fuzzy
  5084. msgid "Weblink color"
  5085. msgstr "선택 박스 컬러"
  5086. #: src/settings_translation_file.cpp
  5087. msgid ""
  5088. "When gui_scaling_filter is true, all GUI images need to be\n"
  5089. "filtered in software, but some images are generated directly\n"
  5090. "to hardware (e.g. render-to-texture for nodes in inventory)."
  5091. msgstr ""
  5092. "Gui_scaling_filter이 true 이면 모든 GUI 이미지 소프트웨어에서 필터링 될 필요"
  5093. "가 있습니다. \n"
  5094. "하지만 일부 이미지는 바로 하드웨어에 생성됩니다. \n"
  5095. "(e.g. render-to-texture for nodes in inventory)."
  5096. #: src/settings_translation_file.cpp
  5097. msgid ""
  5098. "When gui_scaling_filter_txr2img is true, copy those images\n"
  5099. "from hardware to software for scaling. When false, fall back\n"
  5100. "to the old scaling method, for video drivers that don't\n"
  5101. "properly support downloading textures back from hardware."
  5102. msgstr ""
  5103. #: src/settings_translation_file.cpp
  5104. #, fuzzy
  5105. msgid ""
  5106. "When using bilinear/trilinear/anisotropic filters, low-resolution textures\n"
  5107. "can be blurred, so automatically upscale them with nearest-neighbor\n"
  5108. "interpolation to preserve crisp pixels. This sets the minimum texture size\n"
  5109. "for the upscaled textures; higher values look sharper, but require more\n"
  5110. "memory. Powers of 2 are recommended. This setting is ONLY applied if\n"
  5111. "bilinear/trilinear/anisotropic filtering is enabled.\n"
  5112. "This is also used as the base node texture size for world-aligned\n"
  5113. "texture autoscaling."
  5114. msgstr ""
  5115. "이중선형/삼중선형/이방성 필터를 사용할 때 \n"
  5116. "저해상도 택스쳐는 희미하게 보일 수 있습니다.\n"
  5117. "so automatically upscale them with nearest-neighbor interpolation to "
  5118. "preserve crisp pixels. \n"
  5119. "This sets the minimum texture size for the upscaled textures; \n"
  5120. "값이 높을수록 선명하게 보입니다. \n"
  5121. "하지만 많은 메모리가 필요합니다. \n"
  5122. "Powers of 2 are recommended. \n"
  5123. "Setting this higher than 1 may not have a visible effect\n"
  5124. "unless bilinear/trilinear/anisotropic filtering is enabled."
  5125. #: src/settings_translation_file.cpp
  5126. msgid ""
  5127. "Whether name tag backgrounds should be shown by default.\n"
  5128. "Mods may still set a background."
  5129. msgstr ""
  5130. #: src/settings_translation_file.cpp
  5131. msgid "Whether node texture animations should be desynchronized per mapblock."
  5132. msgstr ""
  5133. #: src/settings_translation_file.cpp
  5134. msgid ""
  5135. "Whether players are shown to clients without any range limit.\n"
  5136. "Deprecated, use the setting player_transfer_distance instead."
  5137. msgstr ""
  5138. #: src/settings_translation_file.cpp
  5139. msgid "Whether the window is maximized."
  5140. msgstr ""
  5141. #: src/settings_translation_file.cpp
  5142. msgid ""
  5143. "Whether to ask clients to reconnect after a (Lua) crash.\n"
  5144. "Set this to true if your server is set up to restart automatically."
  5145. msgstr ""
  5146. #: src/settings_translation_file.cpp
  5147. msgid "Whether to fog out the end of the visible area."
  5148. msgstr ""
  5149. #: src/settings_translation_file.cpp
  5150. msgid ""
  5151. "Whether to mute sounds. You can unmute sounds at any time, unless the\n"
  5152. "sound system is disabled (enable_sound=false).\n"
  5153. "In-game, you can toggle the mute state with the mute key or by using the\n"
  5154. "pause menu."
  5155. msgstr ""
  5156. #: src/settings_translation_file.cpp
  5157. msgid ""
  5158. "Whether to show the client debug info (has the same effect as hitting F5)."
  5159. msgstr ""
  5160. #: src/settings_translation_file.cpp
  5161. #, fuzzy
  5162. msgid "Width component of the initial window size."
  5163. msgstr "폭은 초기 창 크기로 구성되어 있습니다."
  5164. #: src/settings_translation_file.cpp
  5165. msgid "Width of the selection box lines around nodes."
  5166. msgstr ""
  5167. "node 주위 “selectionbox'” or (if UTF-8 supported) “selectionbox’” 라인의 너비"
  5168. "입니다."
  5169. #: src/settings_translation_file.cpp
  5170. msgid "Window maximized"
  5171. msgstr ""
  5172. #: src/settings_translation_file.cpp
  5173. msgid ""
  5174. "Windows systems only: Start Minetest with the command line window in the "
  5175. "background.\n"
  5176. "Contains the same information as the file debug.txt (default name)."
  5177. msgstr ""
  5178. #: src/settings_translation_file.cpp
  5179. msgid ""
  5180. "World directory (everything in the world is stored here).\n"
  5181. "Not needed if starting from the main menu."
  5182. msgstr ""
  5183. "월드 디렉토리 (월드의 모든 것은 여기에 저장됩니다).\n"
  5184. "주 메뉴에서 시작 하는 경우 필요 하지 않습니다."
  5185. #: src/settings_translation_file.cpp
  5186. msgid "World start time"
  5187. msgstr "세계 시작 시간"
  5188. #: src/settings_translation_file.cpp
  5189. msgid ""
  5190. "World-aligned textures may be scaled to span several nodes. However,\n"
  5191. "the server may not send the scale you want, especially if you use\n"
  5192. "a specially-designed texture pack; with this option, the client tries\n"
  5193. "to determine the scale automatically basing on the texture size.\n"
  5194. "See also texture_min_size.\n"
  5195. "Warning: This option is EXPERIMENTAL!"
  5196. msgstr ""
  5197. #: src/settings_translation_file.cpp
  5198. msgid "World-aligned textures mode"
  5199. msgstr ""
  5200. #: src/settings_translation_file.cpp
  5201. msgid "Y of flat ground."
  5202. msgstr "평평한 땅의 Y값."
  5203. #: src/settings_translation_file.cpp
  5204. msgid ""
  5205. "Y of mountain density gradient zero level. Used to shift mountains "
  5206. "vertically."
  5207. msgstr ""
  5208. #: src/settings_translation_file.cpp
  5209. msgid "Y of upper limit of large caves."
  5210. msgstr ""
  5211. #: src/settings_translation_file.cpp
  5212. msgid "Y-distance over which caverns expand to full size."
  5213. msgstr ""
  5214. #: src/settings_translation_file.cpp
  5215. msgid ""
  5216. "Y-distance over which floatlands taper from full density to nothing.\n"
  5217. "Tapering starts at this distance from the Y limit.\n"
  5218. "For a solid floatland layer, this controls the height of hills/mountains.\n"
  5219. "Must be less than or equal to half the distance between the Y limits."
  5220. msgstr ""
  5221. #: src/settings_translation_file.cpp
  5222. msgid "Y-level of average terrain surface."
  5223. msgstr ""
  5224. #: src/settings_translation_file.cpp
  5225. msgid "Y-level of cavern upper limit."
  5226. msgstr ""
  5227. #: src/settings_translation_file.cpp
  5228. msgid "Y-level of higher terrain that creates cliffs."
  5229. msgstr ""
  5230. #: src/settings_translation_file.cpp
  5231. msgid "Y-level of lower terrain and seabed."
  5232. msgstr ""
  5233. #: src/settings_translation_file.cpp
  5234. msgid "Y-level of seabed."
  5235. msgstr ""
  5236. #: src/settings_translation_file.cpp
  5237. msgid "cURL"
  5238. msgstr ""
  5239. #: src/settings_translation_file.cpp
  5240. msgid "cURL file download timeout"
  5241. msgstr ""
  5242. #: src/settings_translation_file.cpp
  5243. msgid "cURL interactive timeout"
  5244. msgstr ""
  5245. #: src/settings_translation_file.cpp
  5246. msgid "cURL parallel limit"
  5247. msgstr ""
  5248. #~ msgid "- Address: "
  5249. #~ msgstr "- 주소: "
  5250. #~ msgid "- Creative Mode: "
  5251. #~ msgstr "- 크리에이티브 모드: "
  5252. #~ msgid "- Damage: "
  5253. #~ msgstr "- 데미지: "
  5254. #~ msgid "- Port: "
  5255. #~ msgstr "- 포트: "
  5256. #~ msgid ""
  5257. #~ "0 = parallax occlusion with slope information (faster).\n"
  5258. #~ "1 = relief mapping (slower, more accurate)."
  5259. #~ msgstr ""
  5260. #~ "0 = 경사 정보가 존재 (빠름).\n"
  5261. #~ "1 = 릴리프 매핑 (더 느리고 정확함)."
  5262. #~ msgid "2x"
  5263. #~ msgstr "2 x"
  5264. #~ msgid "3D Clouds"
  5265. #~ msgstr "3D 구름 효과"
  5266. #~ msgid "4x"
  5267. #~ msgstr "4 x"
  5268. #~ msgid "8x"
  5269. #~ msgstr "8 배속"
  5270. #~ msgid "< Back to Settings page"
  5271. #~ msgstr "< 설정 페이지로 돌아가기"
  5272. #~ msgid "Address / Port"
  5273. #~ msgstr "주소/포트"
  5274. #~ msgid ""
  5275. #~ "Address to connect to.\n"
  5276. #~ "Leave this blank to start a local server.\n"
  5277. #~ "Note that the address field in the main menu overrides this setting."
  5278. #~ msgstr ""
  5279. #~ "연결할 주소입니다.\n"
  5280. #~ "로컬 서버를 시작하려면 공백으로 두십시오.\n"
  5281. #~ "주 메뉴의 주소 공간은 이 설정에 중복됩니다."
  5282. #~ msgid ""
  5283. #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for "
  5284. #~ "4k screens."
  5285. #~ msgstr ""
  5286. #~ "화면에 맞게 dpi 구성을 조정합니다 (X11 미지원 / Android 만 해당). 4k 화면 "
  5287. #~ "용."
  5288. #~ msgid "All Settings"
  5289. #~ msgstr "모든 설정"
  5290. #~ msgid "Are you sure to reset your singleplayer world?"
  5291. #~ msgstr "싱글 플레이어 월드를 리셋하겠습니까?"
  5292. #~ msgid "Automatic forward key"
  5293. #~ msgstr "자동 전진 키"
  5294. #~ msgid "Autosave Screen Size"
  5295. #~ msgstr "스크린 크기 자동 저장"
  5296. #, fuzzy
  5297. #~ msgid "Aux1 key"
  5298. #~ msgstr "점프 키"
  5299. #~ msgid "Backward key"
  5300. #~ msgstr "뒤로 이동하는 키"
  5301. #~ msgid "Basic"
  5302. #~ msgstr "기본"
  5303. #~ msgid "Bilinear Filter"
  5304. #~ msgstr "이중 선형 필터"
  5305. #, fuzzy
  5306. #~ msgid "Biome API noise parameters"
  5307. #~ msgstr "Biome API 온도 및 습도 소음 매개 변수"
  5308. #~ msgid "Bits per pixel (aka color depth) in fullscreen mode."
  5309. #~ msgstr "전체 화면 모드에서 (일명 색 농도) 픽셀 당 비트."
  5310. #~ msgid "Bump Mapping"
  5311. #~ msgstr "범프 매핑"
  5312. #~ msgid "Bumpmapping"
  5313. #~ msgstr "범프맵핑"
  5314. #~ msgid ""
  5315. #~ "Camera 'near clipping plane' distance in nodes, between 0 and 0.25\n"
  5316. #~ "Only works on GLES platforms. Most users will not need to change this.\n"
  5317. #~ "Increasing can reduce artifacting on weaker GPUs.\n"
  5318. #~ "0.1 = Default, 0.25 = Good value for weaker tablets."
  5319. #~ msgstr ""
  5320. #~ "0에서 0.25 사이의 노드에서 카메라 '깎인 평면 근처'거리는 GLES 플랫폼에서"
  5321. #~ "만 작동합니다. \n"
  5322. #~ "대부분의 사용자는 이것을 변경할 필요가 없습니다.\n"
  5323. #~ "값이 증가하면 약한 GPU에서 아티팩트를 줄일 수 있습니다. \n"
  5324. #~ "0.1 = 기본값, 0.25 = 약한 태블릿에 적합한 값."
  5325. #~ msgid "Camera update toggle key"
  5326. #~ msgstr "카메라 업데이트 토글 키"
  5327. #~ msgid "Change Keys"
  5328. #~ msgstr "키 변경"
  5329. #, fuzzy
  5330. #~ msgid "Change keys"
  5331. #~ msgstr "키 변경"
  5332. #~ msgid ""
  5333. #~ "Changes the main menu UI:\n"
  5334. #~ "- Full: Multiple singleplayer worlds, game choice, texture pack "
  5335. #~ "chooser, etc.\n"
  5336. #~ "- Simple: One singleplayer world, no game or texture pack choosers. May "
  5337. #~ "be\n"
  5338. #~ "necessary for smaller screens."
  5339. #~ msgstr ""
  5340. #~ "메인 메뉴 UI 변경 :\n"
  5341. #~ "-전체 : 여러 싱글 플레이어 월드, 게임 선택, 텍스처 팩 선택기 등.\n"
  5342. #~ "-단순함 : 단일 플레이어 세계, 게임 또는 텍스처 팩 선택기가 없습니다. \n"
  5343. #~ "작은 화면에 필요할 수 있습니다."
  5344. #~ msgid "Chat key"
  5345. #~ msgstr "채팅"
  5346. #~ msgid "Chat toggle key"
  5347. #~ msgstr "채팅 스위치"
  5348. #~ msgid "Cinematic mode"
  5349. #~ msgstr "시네마틱 모드"
  5350. #~ msgid "Cinematic mode key"
  5351. #~ msgstr "시네마틱 모드 스위치"
  5352. #~ msgid "Clean transparent textures"
  5353. #~ msgstr "깨끗하고 투명한 텍스처"
  5354. #~ msgid "Command key"
  5355. #~ msgstr "명령 키"
  5356. #~ msgid "Config mods"
  5357. #~ msgstr "모드 설정"
  5358. #~ msgid "Configure"
  5359. #~ msgstr "환경설정"
  5360. #~ msgid "Connect"
  5361. #~ msgstr "연결"
  5362. #~ msgid "Connected Glass"
  5363. #~ msgstr "연결된 유리"
  5364. #~ msgid "Continuous forward"
  5365. #~ msgstr "연속 전진"
  5366. #~ msgid ""
  5367. #~ "Continuous forward movement, toggled by autoforward key.\n"
  5368. #~ "Press the autoforward key again or the backwards movement to disable."
  5369. #~ msgstr ""
  5370. #~ "연속 전진 이동, 자동 전진 키로 전환.\n"
  5371. #~ "비활성화하려면 자동 앞으로 이동 키를 다시 누르거나 뒤로 이동합니다."
  5372. #~ msgid "Controls sinking speed in liquid."
  5373. #~ msgstr "액체의 하강 속도 제어."
  5374. #~ msgid "Controls width of tunnels, a smaller value creates wider tunnels."
  5375. #~ msgstr "터널 너비를 조절, 작은 수치는 넓은 터널을 만듭니다."
  5376. #, fuzzy, c-format
  5377. #~ msgid ""
  5378. #~ "Controls:\n"
  5379. #~ "- %s: move forwards\n"
  5380. #~ "- %s: move backwards\n"
  5381. #~ "- %s: move left\n"
  5382. #~ "- %s: move right\n"
  5383. #~ "- %s: jump/climb up\n"
  5384. #~ "- %s: dig/punch/use\n"
  5385. #~ "- %s: place/use\n"
  5386. #~ "- %s: sneak/climb down\n"
  5387. #~ "- %s: drop item\n"
  5388. #~ "- %s: inventory\n"
  5389. #~ "- Mouse: turn/look\n"
  5390. #~ "- Mouse wheel: select item\n"
  5391. #~ "- %s: chat\n"
  5392. #~ msgstr ""
  5393. #~ "조작:\n"
  5394. #~ "-%s: 앞으로 이동\n"
  5395. #~ "-%s:뒤로 이동\n"
  5396. #~ "-%s:왼쪽으로 이동\n"
  5397. #~ "-%s:오른쪽으로 이동\n"
  5398. #~ "-%s: 점프/오르기\n"
  5399. #~ "-%s:조용히 걷기/내려가기\n"
  5400. #~ "-%s:아이템 버리기\n"
  5401. #~ "-%s:인벤토리\n"
  5402. #~ "-마우스: 돌기/보기\n"
  5403. #~ "-마우스 왼쪽 클릭: 땅파기/펀치\n"
  5404. #~ "-마우스 오른쪽 클릭: 두기/사용하기\n"
  5405. #~ "-마우스 휠:아이템 선택\n"
  5406. #~ "-%s: 채팅\n"
  5407. #~ msgid "Creative"
  5408. #~ msgstr "창의적인"
  5409. #~ msgid "Credits"
  5410. #~ msgstr "만든이"
  5411. #~ msgid "Crosshair color (R,G,B)."
  5412. #~ msgstr "십자선 색 (빨, 초, 파)."
  5413. #~ msgid "DPI"
  5414. #~ msgstr "감도(DPI)"
  5415. #~ msgid "Damage"
  5416. #~ msgstr "데미지"
  5417. #~ msgid "Damage enabled"
  5418. #~ msgstr "데미지 활성화"
  5419. #~ msgid "Debug info toggle key"
  5420. #~ msgstr "디버그 정보 토글 키"
  5421. #~ msgid "Dec. volume key"
  5422. #~ msgstr "볼륨 낮추기 키"
  5423. #~ msgid "Default game"
  5424. #~ msgstr "기본 게임"
  5425. #~ msgid ""
  5426. #~ "Default game when creating a new world.\n"
  5427. #~ "This will be overridden when creating a world from the main menu."
  5428. #~ msgstr ""
  5429. #~ "새로운 월드를 만들 때 기본 게임으로 시작합니다.\n"
  5430. #~ "주 메뉴에서 월드를 만들 때 재정의 될 것입니다."
  5431. #~ msgid ""
  5432. #~ "Default timeout for cURL, stated in milliseconds.\n"
  5433. #~ "Only has an effect if compiled with cURL."
  5434. #~ msgstr ""
  5435. #~ "cURL에 대한 기본 제한 시간 (밀리 초 단위).\n"
  5436. #~ "cURL로 컴파일 된 경우에만 효과가 있습니다."
  5437. #~ msgid ""
  5438. #~ "Defines sampling step of texture.\n"
  5439. #~ "A higher value results in smoother normal maps."
  5440. #~ msgstr ""
  5441. #~ "텍스처의 샘플링 단계를 정의합니다.\n"
  5442. #~ "일반 맵에 부드럽게 높은 값을 나타냅니다."
  5443. #~ msgid "Del. Favorite"
  5444. #~ msgstr "즐겨찾기 삭제"
  5445. #, fuzzy
  5446. #~ msgid "Dig key"
  5447. #~ msgstr "오른쪽 키"
  5448. #~ msgid "Disabled unlimited viewing range"
  5449. #~ msgstr "제한없는 시야 범위 비활성화"
  5450. #~ msgid "Down"
  5451. #~ msgstr "아래"
  5452. #~ msgid "Download a game, such as Minetest Game, from minetest.net"
  5453. #~ msgstr "minetest.net에서 Minetest Game 같은 서브 게임을 다운로드하세요"
  5454. #~ msgid "Download one from minetest.net"
  5455. #~ msgstr "minetest.net에서 다운로드 하세요"
  5456. #, fuzzy
  5457. #~ msgid "Downloading and installing $1, please wait..."
  5458. #~ msgstr "$1 를(을) 다운로드중입니다. 기다려주세요..."
  5459. #~ msgid "Drop item key"
  5460. #~ msgstr "아이템 드랍 키"
  5461. #, fuzzy
  5462. #~ msgid "Dynamic shadows:"
  5463. #~ msgstr "글꼴 그림자"
  5464. #~ msgid "Enable VBO"
  5465. #~ msgstr "VBO 적용"
  5466. #, fuzzy
  5467. #~ msgid "Enable creative mode for all players"
  5468. #~ msgstr "새로 만든 맵에서 creative모드를 활성화시킵니다."
  5469. #~ msgid "Enable players getting damage and dying."
  5470. #~ msgstr "플레이어는 데미지를 받고 죽을 수 있습니다."
  5471. #~ msgid "Enabled"
  5472. #~ msgstr "활성화됨"
  5473. #~ msgid ""
  5474. #~ "Enables bumpmapping for textures. Normalmaps need to be supplied by the "
  5475. #~ "texture pack\n"
  5476. #~ "or need to be auto-generated.\n"
  5477. #~ "Requires shaders to be enabled."
  5478. #~ msgstr ""
  5479. #~ "텍스처에 bumpmapping을 할 수 있습니다. \n"
  5480. #~ "Normalmaps는 텍스쳐 팩에서 받거나 자동 생성될 필요가 있습니다.\n"
  5481. #~ "쉐이더를 활성화 해야 합니다."
  5482. #~ msgid "Enables minimap."
  5483. #~ msgstr "미니맵 적용."
  5484. #~ msgid ""
  5485. #~ "Enables on the fly normalmap generation (Emboss effect).\n"
  5486. #~ "Requires bumpmapping to be enabled."
  5487. #~ msgstr ""
  5488. #~ "비행 노멀맵 생성 적용 (엠보스 효과).\n"
  5489. #~ "Bumpmapping를 활성화 해야 합니다."
  5490. #~ msgid ""
  5491. #~ "Enables parallax occlusion mapping.\n"
  5492. #~ "Requires shaders to be enabled."
  5493. #~ msgstr ""
  5494. #~ "시차 교합 맵핑 적용.\n"
  5495. #~ "쉐이더를 활성화 해야 합니다."
  5496. #~ msgid "Enter "
  5497. #~ msgstr "들어가기 "
  5498. #~ msgid "FPS in pause menu"
  5499. #~ msgstr "일시정지 메뉴에서 FPS"
  5500. #~ msgid "Fallback font shadow"
  5501. #~ msgstr "대체 글꼴 그림자"
  5502. #~ msgid "Fallback font shadow alpha"
  5503. #~ msgstr "대체 글꼴 그림자 투명도"
  5504. #~ msgid "Fallback font size"
  5505. #~ msgstr "대체 글꼴 크기"
  5506. #~ msgid "Fancy Leaves"
  5507. #~ msgstr "아름다운 나뭇잎 효과"
  5508. #~ msgid "Fast key"
  5509. #~ msgstr "빠른 키"
  5510. #, fuzzy
  5511. #~ msgid ""
  5512. #~ "Fast movement (via the \"Aux1\" key).\n"
  5513. #~ "This requires the \"fast\" privilege on the server."
  5514. #~ msgstr ""
  5515. #~ "빠른 이동 ( \"특수\"키 사용).\n"
  5516. #~ "이를 위해서는 서버에 대한 \"빠른\"권한이 필요합니다."
  5517. #~ msgid "Filtering"
  5518. #~ msgstr "필터링"
  5519. #~ msgid "Fly key"
  5520. #~ msgstr "비행 키"
  5521. #~ msgid "Flying"
  5522. #~ msgstr "비행"
  5523. #~ msgid "Fog toggle key"
  5524. #~ msgstr "안개 스위치"
  5525. #~ msgid "Font shadow alpha (opaqueness, between 0 and 255)."
  5526. #~ msgstr "글꼴 그림자 투명도 (불투명 함, 0과 255 사이)."
  5527. #~ msgid "Formspec default background color (R,G,B)."
  5528. #~ msgstr "게임 내에서 채팅 콘솔 배경 색상 (빨강, 초록, 파랑)."
  5529. #~ msgid "Formspec default background opacity (between 0 and 255)."
  5530. #~ msgstr "게임 내에서 채팅 콘솔 배경 알파 (불투명 함, 0와 255 사이)."
  5531. #~ msgid "Forward key"
  5532. #~ msgstr "앞으로 가는 키"
  5533. #~ msgid "FreeType fonts"
  5534. #~ msgstr "Freetype 글꼴"
  5535. #~ msgid "Full screen BPP"
  5536. #~ msgstr "전체 화면 BPP"
  5537. #~ msgid "Game"
  5538. #~ msgstr "게임"
  5539. #~ msgid "Gamma"
  5540. #~ msgstr "감마"
  5541. #~ msgid "Generate Normal Maps"
  5542. #~ msgstr "Normal maps 생성"
  5543. #~ msgid "Generate normalmaps"
  5544. #~ msgstr "Normalmaps 생성"
  5545. #~ msgid "HUD toggle key"
  5546. #~ msgstr "HUD 토글 키"
  5547. #, fuzzy
  5548. #~ msgid "Hide: Temporary Settings"
  5549. #~ msgstr "설정"
  5550. #~ msgid "Hotbar slot 12 key"
  5551. #~ msgstr "핫바 슬롯 키 12"
  5552. #~ msgid "In-Game"
  5553. #~ msgstr "인게임"
  5554. #~ msgid "Inc. volume key"
  5555. #~ msgstr "볼륨 증가 키"
  5556. #~ msgid "Information:"
  5557. #~ msgstr "정보:"
  5558. #~ msgid "Install Mod: Unable to find real mod name for: $1"
  5559. #~ msgstr "모드 설치: $1를(을) 찾을 수 없습니다"
  5560. #~ msgid "Install: file: \"$1\""
  5561. #~ msgstr "모드 설치: 파일: \"$1\""
  5562. #~ msgid "Invalid gamespec."
  5563. #~ msgstr "인식할 수 없는 게임 사양입니다."
  5564. #~ msgid "Inventory key"
  5565. #~ msgstr "인벤토리 키"
  5566. #~ msgid "Jump key"
  5567. #~ msgstr "점프 키"
  5568. #~ msgid ""
  5569. #~ "Key for decreasing the viewing range.\n"
  5570. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5571. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5572. #~ msgstr ""
  5573. #~ "보여지는 범위 감소에 대한 키입니다.\n"
  5574. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5575. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5576. #~ msgid ""
  5577. #~ "Key for decreasing the volume.\n"
  5578. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5579. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5580. #~ msgstr ""
  5581. #~ "볼륨 감소 키입니다.\n"
  5582. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5583. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5584. #, fuzzy
  5585. #~ msgid ""
  5586. #~ "Key for digging.\n"
  5587. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5588. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5589. #~ msgstr ""
  5590. #~ "점프키입니다.\n"
  5591. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5592. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5593. #~ msgid ""
  5594. #~ "Key for dropping the currently selected item.\n"
  5595. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5596. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5597. #~ msgstr ""
  5598. #~ "현재 선택된 아이템 드롭에 대한 키입니다.\n"
  5599. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5600. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5601. #~ msgid ""
  5602. #~ "Key for increasing the viewing range.\n"
  5603. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5604. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5605. #~ msgstr ""
  5606. #~ "보여지는 범위 증가에 대한 키입니다.\n"
  5607. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5608. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5609. #~ msgid ""
  5610. #~ "Key for increasing the volume.\n"
  5611. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5612. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5613. #~ msgstr ""
  5614. #~ "보여지는 범위 증가에 대한 키입니다.\n"
  5615. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5616. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5617. #~ msgid ""
  5618. #~ "Key for jumping.\n"
  5619. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5620. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5621. #~ msgstr ""
  5622. #~ "점프키입니다.\n"
  5623. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5624. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5625. #~ msgid ""
  5626. #~ "Key for moving fast in fast mode.\n"
  5627. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5628. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5629. #~ msgstr ""
  5630. #~ "고속 모드에서 빠르게 이동하는 키입니다.\n"
  5631. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5632. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5633. #~ msgid ""
  5634. #~ "Key for moving the player backward.\n"
  5635. #~ "Will also disable autoforward, when active.\n"
  5636. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5637. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5638. #~ msgstr ""
  5639. #~ "플레이어가 \n"
  5640. #~ "뒤쪽으로 움직이는 키입니다.\n"
  5641. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5642. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5643. #~ msgid ""
  5644. #~ "Key for moving the player forward.\n"
  5645. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5646. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5647. #~ msgstr ""
  5648. #~ "플레이어가 앞으로 움직이는 키입니다.\n"
  5649. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5650. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5651. #~ msgid ""
  5652. #~ "Key for moving the player left.\n"
  5653. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5654. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5655. #~ msgstr ""
  5656. #~ "플레이어가 왼쪽으로 움직이는 키입니다.\n"
  5657. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5658. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5659. #~ msgid ""
  5660. #~ "Key for moving the player right.\n"
  5661. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5662. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5663. #~ msgstr ""
  5664. #~ "플레이어가 오른쪽으로 움직이는 키입니다.\n"
  5665. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5666. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5667. #~ msgid ""
  5668. #~ "Key for muting the game.\n"
  5669. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5670. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5671. #~ msgstr ""
  5672. #~ "점프키입니다.\n"
  5673. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5674. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5675. #~ msgid ""
  5676. #~ "Key for opening the chat window to type commands.\n"
  5677. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5678. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5679. #~ msgstr ""
  5680. #~ "명령어를 입력하기 위해 채팅창을 여는 키입니다.\n"
  5681. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5682. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5683. #~ msgid ""
  5684. #~ "Key for opening the chat window to type local commands.\n"
  5685. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5686. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5687. #~ msgstr ""
  5688. #~ "로컬 명령어를 입력하기 위해 채팅창을 여는 키입니다.\n"
  5689. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5690. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5691. #~ msgid ""
  5692. #~ "Key for opening the chat window.\n"
  5693. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5694. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5695. #~ msgstr ""
  5696. #~ "채팅창을 여는 키입니다.\n"
  5697. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5698. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5699. #~ msgid ""
  5700. #~ "Key for opening the inventory.\n"
  5701. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5702. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5703. #~ msgstr ""
  5704. #~ "인벤토리를 여는 키입니다.\n"
  5705. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5706. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5707. #, fuzzy
  5708. #~ msgid ""
  5709. #~ "Key for placing.\n"
  5710. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5711. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5712. #~ msgstr ""
  5713. #~ "점프키입니다.\n"
  5714. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5715. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5716. #~ msgid ""
  5717. #~ "Key for selecting the 11th hotbar slot.\n"
  5718. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5719. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5720. #~ msgstr ""
  5721. #~ "인벤토리를 여는 키입니다.\n"
  5722. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5723. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5724. #~ msgid ""
  5725. #~ "Key for selecting the 12th hotbar slot.\n"
  5726. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5727. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5728. #~ msgstr ""
  5729. #~ "인벤토리를 여는 키입니다.\n"
  5730. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5731. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5732. #~ msgid ""
  5733. #~ "Key for selecting the 13th hotbar slot.\n"
  5734. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5735. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5736. #~ msgstr ""
  5737. #~ "13번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5738. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5739. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5740. #~ msgid ""
  5741. #~ "Key for selecting the 14th hotbar slot.\n"
  5742. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5743. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5744. #~ msgstr ""
  5745. #~ "14번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5746. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5747. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5748. #~ msgid ""
  5749. #~ "Key for selecting the 15th hotbar slot.\n"
  5750. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5751. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5752. #~ msgstr ""
  5753. #~ "15번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5754. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5755. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5756. #~ msgid ""
  5757. #~ "Key for selecting the 16th hotbar slot.\n"
  5758. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5759. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5760. #~ msgstr ""
  5761. #~ "16번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5762. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5763. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5764. #~ msgid ""
  5765. #~ "Key for selecting the 17th hotbar slot.\n"
  5766. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5767. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5768. #~ msgstr ""
  5769. #~ "17번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5770. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5771. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5772. #~ msgid ""
  5773. #~ "Key for selecting the 18th hotbar slot.\n"
  5774. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5775. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5776. #~ msgstr ""
  5777. #~ "18번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5778. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5779. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5780. #~ msgid ""
  5781. #~ "Key for selecting the 19th hotbar slot.\n"
  5782. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5783. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5784. #~ msgstr ""
  5785. #~ "19번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5786. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5787. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5788. #~ msgid ""
  5789. #~ "Key for selecting the 20th hotbar slot.\n"
  5790. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5791. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5792. #~ msgstr ""
  5793. #~ "20번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5794. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5795. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5796. #~ msgid ""
  5797. #~ "Key for selecting the 21st hotbar slot.\n"
  5798. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5799. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5800. #~ msgstr ""
  5801. #~ "21번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5802. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5803. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5804. #~ msgid ""
  5805. #~ "Key for selecting the 22nd hotbar slot.\n"
  5806. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5807. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5808. #~ msgstr ""
  5809. #~ "22번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5810. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5811. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5812. #~ msgid ""
  5813. #~ "Key for selecting the 23rd hotbar slot.\n"
  5814. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5815. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5816. #~ msgstr ""
  5817. #~ "23번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5818. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5819. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5820. #~ msgid ""
  5821. #~ "Key for selecting the 24th hotbar slot.\n"
  5822. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5823. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5824. #~ msgstr ""
  5825. #~ "24번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5826. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5827. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5828. #~ msgid ""
  5829. #~ "Key for selecting the 25th hotbar slot.\n"
  5830. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5831. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5832. #~ msgstr ""
  5833. #~ "25번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5834. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5835. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5836. #~ msgid ""
  5837. #~ "Key for selecting the 26th hotbar slot.\n"
  5838. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5839. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5840. #~ msgstr ""
  5841. #~ "26번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5842. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5843. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5844. #~ msgid ""
  5845. #~ "Key for selecting the 27th hotbar slot.\n"
  5846. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5847. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5848. #~ msgstr ""
  5849. #~ "27번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5850. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5851. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5852. #~ msgid ""
  5853. #~ "Key for selecting the 28th hotbar slot.\n"
  5854. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5855. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5856. #~ msgstr ""
  5857. #~ "28번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5858. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5859. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5860. #~ msgid ""
  5861. #~ "Key for selecting the 29th hotbar slot.\n"
  5862. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5863. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5864. #~ msgstr ""
  5865. #~ "29번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5866. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5867. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5868. #~ msgid ""
  5869. #~ "Key for selecting the 30th hotbar slot.\n"
  5870. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5871. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5872. #~ msgstr ""
  5873. #~ "30번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5874. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5875. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5876. #~ msgid ""
  5877. #~ "Key for selecting the 31st hotbar slot.\n"
  5878. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5879. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5880. #~ msgstr ""
  5881. #~ "31번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5882. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5883. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5884. #~ msgid ""
  5885. #~ "Key for selecting the 32nd hotbar slot.\n"
  5886. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5887. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5888. #~ msgstr ""
  5889. #~ "32번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5890. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5891. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5892. #~ msgid ""
  5893. #~ "Key for selecting the eighth hotbar slot.\n"
  5894. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5895. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5896. #~ msgstr ""
  5897. #~ "8번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5898. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5899. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5900. #~ msgid ""
  5901. #~ "Key for selecting the fifth hotbar slot.\n"
  5902. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5903. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5904. #~ msgstr ""
  5905. #~ "5번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5906. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5907. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5908. #~ msgid ""
  5909. #~ "Key for selecting the first hotbar slot.\n"
  5910. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5911. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5912. #~ msgstr ""
  5913. #~ "1번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5914. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5915. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5916. #~ msgid ""
  5917. #~ "Key for selecting the fourth hotbar slot.\n"
  5918. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5919. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5920. #~ msgstr ""
  5921. #~ "4번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5922. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5923. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5924. #~ msgid ""
  5925. #~ "Key for selecting the next item in the hotbar.\n"
  5926. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5927. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5928. #~ msgstr ""
  5929. #~ "다음 아이템 hotbar 슬롯을 선택하는 키입니다.\n"
  5930. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5931. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5932. #~ msgid ""
  5933. #~ "Key for selecting the ninth hotbar slot.\n"
  5934. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5935. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5936. #~ msgstr ""
  5937. #~ "9번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5938. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5939. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5940. #~ msgid ""
  5941. #~ "Key for selecting the previous item in the hotbar.\n"
  5942. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5943. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5944. #~ msgstr ""
  5945. #~ "이전 아이템 hotbar 슬롯을 선택하는 키입니다.\n"
  5946. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5947. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5948. #~ msgid ""
  5949. #~ "Key for selecting the second hotbar slot.\n"
  5950. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5951. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5952. #~ msgstr ""
  5953. #~ "2번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5954. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5955. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5956. #~ msgid ""
  5957. #~ "Key for selecting the seventh hotbar slot.\n"
  5958. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5959. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5960. #~ msgstr ""
  5961. #~ "7번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5962. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5963. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5964. #~ msgid ""
  5965. #~ "Key for selecting the sixth hotbar slot.\n"
  5966. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5967. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5968. #~ msgstr ""
  5969. #~ "6번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5970. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5971. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5972. #~ msgid ""
  5973. #~ "Key for selecting the tenth hotbar slot.\n"
  5974. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5975. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5976. #~ msgstr ""
  5977. #~ "10번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5978. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5979. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5980. #~ msgid ""
  5981. #~ "Key for selecting the third hotbar slot.\n"
  5982. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5983. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5984. #~ msgstr ""
  5985. #~ "3번째 hotbar 슬롯을 선택하는 키입니다.\n"
  5986. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5987. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  5988. #~ msgid ""
  5989. #~ "Key for sneaking.\n"
  5990. #~ "Also used for climbing down and descending in water if aux1_descends is "
  5991. #~ "disabled.\n"
  5992. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  5993. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  5994. #~ msgstr ""
  5995. #~ "살금살금걷기 키입니다.\n"
  5996. #~ "만약 aux1_descends를 사용할 수 없는 경우에 물에서 내려가거나 올라올 수 있"
  5997. #~ "습니다.\n"
  5998. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  5999. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6000. #~ msgid ""
  6001. #~ "Key for switching between first- and third-person camera.\n"
  6002. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6003. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6004. #~ msgstr ""
  6005. #~ "1인칭에서 3인칭간 카메라 전환키입니다.\n"
  6006. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6007. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6008. #~ msgid ""
  6009. #~ "Key for taking screenshots.\n"
  6010. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6011. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6012. #~ msgstr ""
  6013. #~ "스크린샷키입니다.\n"
  6014. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6015. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6016. #~ msgid ""
  6017. #~ "Key for toggling autoforward.\n"
  6018. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6019. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6020. #~ msgstr ""
  6021. #~ "자동전진 토글에 대한 키입니다.\n"
  6022. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6023. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6024. #~ msgid ""
  6025. #~ "Key for toggling cinematic mode.\n"
  6026. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6027. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6028. #~ msgstr ""
  6029. #~ "시네마틱 모드 스위치 키입니다.\n"
  6030. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6031. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6032. #~ msgid ""
  6033. #~ "Key for toggling display of minimap.\n"
  6034. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6035. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6036. #~ msgstr ""
  6037. #~ "미니 맵 표시 설정/해제 키입니다.\n"
  6038. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6039. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6040. #~ msgid ""
  6041. #~ "Key for toggling fast mode.\n"
  6042. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6043. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6044. #~ msgstr ""
  6045. #~ "고속 모드 스위치 키입니다.\n"
  6046. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6047. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6048. #~ msgid ""
  6049. #~ "Key for toggling flying.\n"
  6050. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6051. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6052. #~ msgstr ""
  6053. #~ "비행 모드 스위치 키입니다.\n"
  6054. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6055. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6056. #~ msgid ""
  6057. #~ "Key for toggling noclip mode.\n"
  6058. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6059. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6060. #~ msgstr ""
  6061. #~ "자유시점 모드 스위치 키입니다.\n"
  6062. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6063. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6064. #~ msgid ""
  6065. #~ "Key for toggling pitch move mode.\n"
  6066. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6067. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6068. #~ msgstr ""
  6069. #~ "피치 이동 모드 토글에 대한 키입니다.\n"
  6070. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6071. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6072. #~ msgid ""
  6073. #~ "Key for toggling the camera update. Only used for development\n"
  6074. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6075. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6076. #~ msgstr ""
  6077. #~ "카메라 업데이트 스위치 키입니다. 개발을 위해서만 사용됩니다. \n"
  6078. #~ "참조 http://irrlicht.sourceforge.net/docu/namespaceirr."
  6079. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6080. #~ msgid ""
  6081. #~ "Key for toggling the display of chat.\n"
  6082. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6083. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6084. #~ msgstr ""
  6085. #~ "채팅 디스플레이 토글 키입니다.\n"
  6086. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6087. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6088. #~ msgid ""
  6089. #~ "Key for toggling the display of debug info.\n"
  6090. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6091. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6092. #~ msgstr ""
  6093. #~ "디버그 정보 표시 스위치 키입니다.\n"
  6094. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6095. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6096. #~ msgid ""
  6097. #~ "Key for toggling the display of fog.\n"
  6098. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6099. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6100. #~ msgstr ""
  6101. #~ "안개 디스플레이 토글 키입니다.\n"
  6102. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6103. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6104. #~ msgid ""
  6105. #~ "Key for toggling the display of the HUD.\n"
  6106. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6107. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6108. #~ msgstr ""
  6109. #~ "HUD 표시 스위치 키입니다.\n"
  6110. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6111. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6112. #~ msgid ""
  6113. #~ "Key for toggling the display of the large chat console.\n"
  6114. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6115. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6116. #~ msgstr ""
  6117. #~ "채팅 콘솔 디스플레이 토글 키입니다.\n"
  6118. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6119. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6120. #~ msgid ""
  6121. #~ "Key for toggling unlimited view range.\n"
  6122. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6123. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6124. #~ msgstr ""
  6125. #~ "제한없이 보여지는 범위에 대한 스위치 키입니다.\n"
  6126. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6127. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6128. #~ msgid ""
  6129. #~ "Key to use view zoom when possible.\n"
  6130. #~ "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  6131. #~ "html#a54da2a0e231901735e3da1b0edf72eb3"
  6132. #~ msgstr ""
  6133. #~ "가능한 경우 시야 확대를 사용하는 키입니다.\n"
  6134. #~ "Http://irrlicht.sourceforge.net/docu/namespaceirr."
  6135. #~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조"
  6136. #~ msgid ""
  6137. #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)"
  6138. #~ msgstr ""
  6139. #~ "Keybindings. (이 메뉴를 고정하려면 minetest.cof에서 stuff를 제거해야합니"
  6140. #~ "다.)"
  6141. #~ msgid "Large chat console key"
  6142. #~ msgstr "큰 채팅 콘솔 키"
  6143. #, fuzzy
  6144. #~ msgid "Lava depth"
  6145. #~ msgstr "큰 동굴 깊이"
  6146. #~ msgid ""
  6147. #~ "Length of liquid waves.\n"
  6148. #~ "Requires waving liquids to be enabled."
  6149. #~ msgstr ""
  6150. #~ "True로 설정하면 흔들리는 나뭇잎 효과가 적용됩니다.\n"
  6151. #~ "쉐이더를 활성화 해야 합니다."
  6152. #~ msgid "Main"
  6153. #~ msgstr "메인"
  6154. #~ msgid "Main menu style"
  6155. #~ msgstr "주 메뉴 스크립트"
  6156. #~ msgid "Makes all liquids opaque"
  6157. #~ msgstr "모든 액체를 불투명하게 만들기"
  6158. #~ msgid "Mapblock mesh generator's MapBlock cache size in MB"
  6159. #~ msgstr "Mapblock 메시 생성기의 MapBlock 캐시 크기 (MB)"
  6160. #~ msgid "Menus"
  6161. #~ msgstr "메뉴"
  6162. #~ msgid "Minimap"
  6163. #~ msgstr "미니맵"
  6164. #~ msgid "Minimap in radar mode, Zoom x2"
  6165. #~ msgstr "레이더 모드의 미니맵, 2배 확대"
  6166. #~ msgid "Minimap in radar mode, Zoom x4"
  6167. #~ msgstr "레이더 모드의 미니맵, 4배 확대"
  6168. #~ msgid "Minimap in surface mode, Zoom x2"
  6169. #~ msgstr "표면 모드의 미니맵, 2배 확대"
  6170. #~ msgid "Minimap in surface mode, Zoom x4"
  6171. #~ msgstr "표면 모드의 미니맵, 4배 확대"
  6172. #~ msgid "Minimap key"
  6173. #~ msgstr "미니맵 키"
  6174. #~ msgid "Mipmap"
  6175. #~ msgstr "밉 맵"
  6176. #~ msgid "Mipmap + Aniso. Filter"
  6177. #~ msgstr "밉맵 + Aniso. 필터"
  6178. #~ msgid "Mute key"
  6179. #~ msgstr "음소거 키"
  6180. #~ msgid "Name / Password"
  6181. #~ msgstr "이름/비밀번호"
  6182. #~ msgid "Name/Password"
  6183. #~ msgstr "이름/비밀번호"
  6184. #~ msgid "No"
  6185. #~ msgstr "아니오"
  6186. #~ msgid "No Filter"
  6187. #~ msgstr "필터 없음"
  6188. #~ msgid "No Mipmap"
  6189. #~ msgstr "밉 맵 없음"
  6190. #~ msgid "Noclip"
  6191. #~ msgstr "노클립"
  6192. #~ msgid "Noclip key"
  6193. #~ msgstr "노클립 키"
  6194. #~ msgid "Node Highlighting"
  6195. #~ msgstr "Node 강조"
  6196. #~ msgid "Node Outlining"
  6197. #~ msgstr "Node 설명"
  6198. #~ msgid "None"
  6199. #~ msgstr "없음"
  6200. #~ msgid "Normalmaps sampling"
  6201. #~ msgstr "Normalmaps 샘플링"
  6202. #~ msgid "Normalmaps strength"
  6203. #~ msgstr "Normalmaps 강도"
  6204. #~ msgid "Number of parallax occlusion iterations."
  6205. #~ msgstr "시차 교합 반복의 수."
  6206. #~ msgid "Ok"
  6207. #~ msgstr "확인"
  6208. #~ msgid "Opaque Leaves"
  6209. #~ msgstr "불투명한 나뭇잎 효과"
  6210. #~ msgid "Opaque Water"
  6211. #~ msgstr "불투명한 물 효과"
  6212. #~ msgid "Overall bias of parallax occlusion effect, usually scale/2."
  6213. #~ msgstr "일반적인 규모/2의 시차 교합 효과의 전반적인 바이어스."
  6214. #~ msgid "Overall scale of parallax occlusion effect."
  6215. #~ msgstr "시차 교합 효과의 전체 규모."
  6216. #~ msgid "Parallax Occlusion"
  6217. #~ msgstr "시차 교합"
  6218. #~ msgid "Parallax occlusion"
  6219. #~ msgstr "시차 교합"
  6220. #~ msgid "Parallax occlusion bias"
  6221. #~ msgstr "시차 교합 바이어스"
  6222. #~ msgid "Parallax occlusion iterations"
  6223. #~ msgstr "시차 교합 반복"
  6224. #~ msgid "Parallax occlusion mode"
  6225. #~ msgstr "시차 교합 모드"
  6226. #~ msgid "Parallax occlusion scale"
  6227. #~ msgstr "시차 교합 규모"
  6228. #, fuzzy
  6229. #~ msgid "Parallax occlusion strength"
  6230. #~ msgstr "시차 교합 강도"
  6231. #~ msgid "Particles"
  6232. #~ msgstr "입자 효과"
  6233. #~ msgid "Path to TrueTypeFont or bitmap."
  6234. #~ msgstr "TrueTypeFont 또는 비트맵의 경로입니다."
  6235. #~ msgid "Path to save screenshots at."
  6236. #~ msgstr "스크린샷 저장 경로입니다."
  6237. #~ msgid ""
  6238. #~ "Path to texture directory. All textures are first searched from here."
  6239. #~ msgstr ""
  6240. #~ "텍스처 디렉터리 경로입니다. 모든 텍스처는 여기에서 먼저 검색 됩니다."
  6241. #~ msgid "Pitch move key"
  6242. #~ msgstr "피치 이동 키"
  6243. #, fuzzy
  6244. #~ msgid "Place key"
  6245. #~ msgstr "비행 키"
  6246. #~ msgid ""
  6247. #~ "Player is able to fly without being affected by gravity.\n"
  6248. #~ "This requires the \"fly\" privilege on the server."
  6249. #~ msgstr ""
  6250. #~ "플레이어는 중력에 의해 영향을 받지 않고 날 수 있습니다.\n"
  6251. #~ "서버에서는 \"fly\" 권한을 필요로 합니다."
  6252. #~ msgid "Player name"
  6253. #~ msgstr "플레이어 이름"
  6254. #~ msgid "Player versus player"
  6255. #~ msgstr "PVP"
  6256. #~ msgid "Please enter a valid integer."
  6257. #~ msgstr "유효한 정수를 입력해주세요."
  6258. #~ msgid "Please enter a valid number."
  6259. #~ msgstr "유효한 숫자를 입력해주세요."
  6260. #~ msgid ""
  6261. #~ "Port to connect to (UDP).\n"
  6262. #~ "Note that the port field in the main menu overrides this setting."
  6263. #~ msgstr ""
  6264. #~ "(UDP)에 연결 하는 포트.\n"
  6265. #~ "참고 주 메뉴의 포트 필트는 이 설정으로 재정의 됩니다."
  6266. #~ msgid "Profiler toggle key"
  6267. #~ msgstr "프로파일러 토글 키"
  6268. #~ msgid "Profiling"
  6269. #~ msgstr "프로 파일링"
  6270. #~ msgid "PvP enabled"
  6271. #~ msgstr "PvP 가능"
  6272. #~ msgid "Range select key"
  6273. #~ msgstr "범위 선택 키"
  6274. #~ msgid "Remote port"
  6275. #~ msgstr "원격 포트"
  6276. #~ msgid "Reset singleplayer world"
  6277. #~ msgstr "싱글 플레이어 월드 초기화"
  6278. #~ msgid "Right key"
  6279. #~ msgstr "오른쪽 키"
  6280. #~ msgid "Round minimap"
  6281. #~ msgstr "원형 미니맵"
  6282. #~ msgid "Screen:"
  6283. #~ msgstr "화면:"
  6284. #, fuzzy
  6285. #~ msgid "Select Package File:"
  6286. #~ msgstr "선택한 모드 파일:"
  6287. #~ msgid "Server / Singleplayer"
  6288. #~ msgstr "서버 / 싱글 플레이어"
  6289. #, fuzzy
  6290. #~ msgid "Shaders (experimental)"
  6291. #~ msgstr "평평한 땅 (실험용)"
  6292. #~ msgid "Shadow limit"
  6293. #~ msgstr "그림자 제한"
  6294. #~ msgid ""
  6295. #~ "Shadow offset (in pixels) of the fallback font. If 0, then shadow will "
  6296. #~ "not be drawn."
  6297. #~ msgstr "글꼴 그림자 오프셋, 만약 0 이면 그림자는 나타나지 않을 것입니다."
  6298. #~ msgid "Shape of the minimap. Enabled = round, disabled = square."
  6299. #~ msgstr "미니맵 모양. 활성화 = 원형, 비활성화 = 정사각형."
  6300. #~ msgid "Simple Leaves"
  6301. #~ msgstr "단순한 나뭇잎 효과"
  6302. #~ msgid "Smooth Lighting"
  6303. #~ msgstr "부드러운 조명 효과"
  6304. #~ msgid "Smooths rotation of camera. 0 to disable."
  6305. #~ msgstr ""
  6306. #~ "카메라의 회전을 매끄럽게 만듭니다. 사용 하지 않으려면 0을 입력하세요."
  6307. #~ msgid "Special"
  6308. #~ msgstr "특별함"
  6309. #~ msgid "Special key"
  6310. #~ msgstr "특수 키"
  6311. #~ msgid "Start Singleplayer"
  6312. #~ msgstr "싱글 플레이어 시작"
  6313. #~ msgid "Strength of generated normalmaps."
  6314. #~ msgstr "자동으로 생성되는 노멀맵의 강도."
  6315. #~ msgid "Texture path"
  6316. #~ msgstr "텍스처 경로"
  6317. #~ msgid "Texturing:"
  6318. #~ msgstr "질감:"
  6319. #~ msgid "The depth of dirt or other biome filler node."
  6320. #~ msgstr "흙이나 다른 것의 깊이."
  6321. #~ msgid "The value must be at least $1."
  6322. #~ msgstr "값은 $1 이상이어야 합니다."
  6323. #~ msgid "The value must not be larger than $1."
  6324. #~ msgstr "값이 $1을 초과하면 안 됩니다."
  6325. #, fuzzy
  6326. #~ msgid ""
  6327. #~ "This can be bound to a key to toggle camera smoothing when looking "
  6328. #~ "around.\n"
  6329. #~ "Useful for recording videos"
  6330. #~ msgstr ""
  6331. #~ "주위를 돌아볼 때 카메라를 부드럽게 해줍니다. 보기 또는 부드러운 마우스라고"
  6332. #~ "도 부릅니다.\n"
  6333. #~ "비디오를 녹화하기에 유용합니다."
  6334. #~ msgid "This font will be used for certain languages."
  6335. #~ msgstr "이 글꼴은 특정 언어에 사용 됩니다."
  6336. #~ msgid "To enable shaders the OpenGL driver needs to be used."
  6337. #~ msgstr "쉐이더를 사용하려면 OpenGL 드라이버를 사용할 필요가 있습니다."
  6338. #~ msgid "Toggle Cinematic"
  6339. #~ msgstr "시네마틱 스위치"
  6340. #~ msgid "Toggle camera mode key"
  6341. #~ msgstr "카메라모드 스위치 키"
  6342. #~ msgid "Tone Mapping"
  6343. #~ msgstr "톤 매핑"
  6344. #, fuzzy
  6345. #~ msgid "Touch threshold (px):"
  6346. #~ msgstr "터치 임계값: (픽셀)"
  6347. #, fuzzy
  6348. #~ msgid "Touchscreen threshold"
  6349. #~ msgstr "터치임계값 (픽셀)"
  6350. #~ msgid "Trilinear Filter"
  6351. #~ msgstr "선형 필터"
  6352. #~ msgid "Unable to install a game as a $1"
  6353. #~ msgstr "$1을 설치할 수 없습니다"
  6354. #~ msgid "Unable to install a modpack as a $1"
  6355. #~ msgstr "$1 모드팩을 설치할 수 없습니다"
  6356. #~ msgid "Uninstall Package"
  6357. #~ msgstr "패키지 삭제"
  6358. #~ msgid "Up"
  6359. #~ msgstr "위"
  6360. #, fuzzy
  6361. #~ msgid "Use bilinear filtering when scaling textures down."
  6362. #~ msgstr "이중 선형 필터링은 질감 스케일링을 할 때 사용 합니다."
  6363. #~ msgid "Vertical screen synchronization."
  6364. #~ msgstr "세로 화면 동기화."
  6365. #~ msgid "View"
  6366. #~ msgstr "보기"
  6367. #~ msgid "View range decrease key"
  6368. #~ msgstr "시야 감소 키"
  6369. #~ msgid "View range increase key"
  6370. #~ msgstr "시야 증가 키"
  6371. #~ msgid "View zoom key"
  6372. #~ msgstr "확대 키"
  6373. #, c-format
  6374. #~ msgid "Viewing range is at maximum: %d"
  6375. #~ msgstr "시야 범위 최대치 : %d"
  6376. #~ msgid "Waving Leaves"
  6377. #~ msgstr "움직이는 나뭇잎 효과"
  6378. #~ msgid "Waving Liquids"
  6379. #~ msgstr "물 등의 물결효과"
  6380. #~ msgid "Waving Plants"
  6381. #~ msgstr "움직이는 식물 효과"
  6382. #~ msgid "Waving Water"
  6383. #~ msgstr "물결 효과"
  6384. #~ msgid "Waving water"
  6385. #~ msgstr "물결 효과"
  6386. #~ msgid "Whether to allow players to damage and kill each other."
  6387. #~ msgstr "플레이어끼리 서로 공격하고 죽이는 것에 대한 허락 여부."
  6388. #~ msgid "X"
  6389. #~ msgstr "X"
  6390. #~ msgid "Y"
  6391. #~ msgstr "Y"
  6392. #~ msgid "Yes"
  6393. #~ msgstr "예"
  6394. #, c-format
  6395. #~ msgid ""
  6396. #~ "You are about to join this server with the name \"%s\" for the first "
  6397. #~ "time.\n"
  6398. #~ "If you proceed, a new account using your credentials will be created on "
  6399. #~ "this server.\n"
  6400. #~ "Please retype your password and click 'Register and Join' to confirm "
  6401. #~ "account creation, or click 'Cancel' to abort."
  6402. #~ msgstr ""
  6403. #~ "당신은 처음 \"%s\"라는 이름으로 이 서버에 참여하려고 합니다. \n"
  6404. #~ "계속한다면, 자격이 갖춰진 새 계정이 이 서버에 생성됩니다. \n"
  6405. #~ "비밀번호를 다시 입력하고 '등록 하고 참여'를 누르거나 '취소'를 눌러 중단하"
  6406. #~ "십시오."
  6407. #, fuzzy
  6408. #~ msgid "You died."
  6409. #~ msgstr "사망했습니다"
  6410. #~ msgid "You have no games installed."
  6411. #~ msgstr "게임이 설치되어 있지 않습니다."
  6412. #~ msgid "Z"
  6413. #~ msgstr "Z"
  6414. #~ msgid "needs_fallback_font"
  6415. #~ msgstr "yes"
  6416. #~ msgid "ok"
  6417. #~ msgstr "확인"