1
0

minetest.po 243 KB

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