2
0

minetest.po 138 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the minetest package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: minetest\n"
  9. "Report-Msgid-Bugs-To: \n"
  10. "POT-Creation-Date: 2023-12-03 18:48+0100\n"
  11. "PO-Revision-Date: 2023-03-17 11:44+0000\n"
  12. "Last-Translator: dreigiau <sterilgrimed23@gmail.com>\n"
  13. "Language-Team: Welsh <https://hosted.weblate.org/projects/minetest/minetest/"
  14. "cy/>\n"
  15. "Language: cy\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : "
  20. "(n==3) ? 3 :(n==6) ? 4 : 5;\n"
  21. "X-Generator: Weblate 4.16.2-dev\n"
  22. #: builtin/client/chatcommands.lua
  23. msgid "Clear the out chat queue"
  24. msgstr ""
  25. #: builtin/client/chatcommands.lua
  26. msgid "Empty command."
  27. msgstr "Gorchymyn gwag."
  28. #: builtin/client/chatcommands.lua
  29. msgid "Exit to main menu"
  30. msgstr ""
  31. #: builtin/client/chatcommands.lua
  32. msgid "Invalid command: "
  33. msgstr "Gorchymyn annilys: "
  34. #: builtin/client/chatcommands.lua
  35. msgid "Issued command: "
  36. msgstr ""
  37. #: builtin/client/chatcommands.lua
  38. msgid "List online players"
  39. msgstr ""
  40. #: builtin/client/chatcommands.lua
  41. msgid "Online players: "
  42. msgstr "Chwaraewyr ar-lein: "
  43. #: builtin/client/chatcommands.lua
  44. msgid "The out chat queue is now empty."
  45. msgstr ""
  46. #: builtin/client/chatcommands.lua
  47. msgid "This command is disabled by server."
  48. msgstr ""
  49. #: builtin/client/death_formspec.lua src/client/game.cpp
  50. msgid "Respawn"
  51. msgstr "Atgyfodi"
  52. #: builtin/client/death_formspec.lua src/client/game.cpp
  53. msgid "You died"
  54. msgstr "Buest ti farw"
  55. #: builtin/common/chatcommands.lua
  56. msgid "Available commands:"
  57. msgstr "Gorchmynion sydd ar gael:"
  58. #: builtin/common/chatcommands.lua
  59. msgid "Available commands: "
  60. msgstr "Gorchmynion sydd ar gael: "
  61. #: builtin/common/chatcommands.lua
  62. msgid "Command not available: "
  63. msgstr ""
  64. #: builtin/common/chatcommands.lua
  65. msgid "Get help for commands"
  66. msgstr ""
  67. #: builtin/common/chatcommands.lua
  68. msgid ""
  69. "Use '.help <cmd>' to get more information, or '.help all' to list everything."
  70. msgstr ""
  71. #: builtin/common/chatcommands.lua
  72. msgid "[all | <cmd>]"
  73. msgstr ""
  74. #: builtin/fstk/dialog.lua builtin/fstk/ui.lua src/gui/modalMenu.cpp
  75. msgid "OK"
  76. msgstr "Iawn"
  77. #: builtin/fstk/ui.lua
  78. msgid "<none available>"
  79. msgstr "<dim>"
  80. #: builtin/fstk/ui.lua
  81. msgid "An error occurred in a Lua script:"
  82. msgstr ""
  83. #: builtin/fstk/ui.lua
  84. msgid "An error occurred:"
  85. msgstr ""
  86. #: builtin/fstk/ui.lua
  87. msgid "Main menu"
  88. msgstr "Prif ddewislen"
  89. #: builtin/fstk/ui.lua
  90. msgid "Reconnect"
  91. msgstr "Ail-gysylltu"
  92. #: builtin/fstk/ui.lua
  93. msgid "The server has requested a reconnect:"
  94. msgstr ""
  95. #: builtin/mainmenu/common.lua
  96. msgid "Protocol version mismatch. "
  97. msgstr ""
  98. #: builtin/mainmenu/common.lua
  99. msgid "Server enforces protocol version $1. "
  100. msgstr ""
  101. #: builtin/mainmenu/common.lua
  102. msgid "Server supports protocol versions between $1 and $2. "
  103. msgstr ""
  104. #: builtin/mainmenu/common.lua
  105. msgid "We only support protocol version $1."
  106. msgstr ""
  107. #: builtin/mainmenu/common.lua
  108. msgid "We support protocol versions between version $1 and $2."
  109. msgstr ""
  110. #: builtin/mainmenu/content/dlg_contentstore.lua
  111. msgid "\"$1\" already exists. Would you like to overwrite it?"
  112. msgstr ""
  113. #: builtin/mainmenu/content/dlg_contentstore.lua
  114. msgid "$1 and $2 dependencies will be installed."
  115. msgstr ""
  116. #: builtin/mainmenu/content/dlg_contentstore.lua
  117. msgid "$1 by $2"
  118. msgstr ""
  119. #: builtin/mainmenu/content/dlg_contentstore.lua
  120. msgid ""
  121. "$1 downloading,\n"
  122. "$2 queued"
  123. msgstr ""
  124. #: builtin/mainmenu/content/dlg_contentstore.lua
  125. msgid "$1 downloading..."
  126. msgstr "Wrthi'n lawrlwytho $1..."
  127. #: builtin/mainmenu/content/dlg_contentstore.lua
  128. msgid "$1 required dependencies could not be found."
  129. msgstr ""
  130. #: builtin/mainmenu/content/dlg_contentstore.lua
  131. msgid "$1 will be installed, and $2 dependencies will be skipped."
  132. msgstr ""
  133. #: builtin/mainmenu/content/dlg_contentstore.lua
  134. msgid "All packages"
  135. msgstr "Pob pecyn"
  136. #: builtin/mainmenu/content/dlg_contentstore.lua
  137. msgid "Already installed"
  138. msgstr "Wedi ei osod"
  139. #: builtin/mainmenu/content/dlg_contentstore.lua
  140. msgid "Back to Main Menu"
  141. msgstr ""
  142. #: builtin/mainmenu/content/dlg_contentstore.lua
  143. msgid "Base Game:"
  144. msgstr "Gêm Sylfaenol:"
  145. #: builtin/mainmenu/content/dlg_contentstore.lua
  146. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua
  147. #: builtin/mainmenu/dlg_delete_content.lua
  148. #: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua
  149. #: builtin/mainmenu/dlg_rename_modpack.lua
  150. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  151. #: src/gui/guiKeyChangeMenu.cpp src/gui/guiPasswordChange.cpp
  152. msgid "Cancel"
  153. msgstr "Canslo"
  154. #: builtin/mainmenu/content/dlg_contentstore.lua
  155. msgid "ContentDB is not available when Minetest was compiled without cURL"
  156. msgstr ""
  157. #: builtin/mainmenu/content/dlg_contentstore.lua
  158. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua
  159. msgid "Dependencies:"
  160. msgstr ""
  161. #: builtin/mainmenu/content/dlg_contentstore.lua
  162. msgid "Downloading..."
  163. msgstr "Wrthi'n lawrlwytho..."
  164. #: builtin/mainmenu/content/dlg_contentstore.lua
  165. msgid "Error installing \"$1\": $2"
  166. msgstr ""
  167. #: builtin/mainmenu/content/dlg_contentstore.lua
  168. msgid "Failed to download \"$1\""
  169. msgstr ""
  170. #: builtin/mainmenu/content/dlg_contentstore.lua
  171. msgid "Failed to download $1"
  172. msgstr ""
  173. #: builtin/mainmenu/content/dlg_contentstore.lua
  174. msgid "Failed to extract \"$1\" (unsupported file type or broken archive)"
  175. msgstr ""
  176. #: builtin/mainmenu/content/dlg_contentstore.lua
  177. msgid "Games"
  178. msgstr "Gemau"
  179. #: builtin/mainmenu/content/dlg_contentstore.lua
  180. msgid "Install"
  181. msgstr "Gosod"
  182. #: builtin/mainmenu/content/dlg_contentstore.lua
  183. msgid "Install $1"
  184. msgstr "Gosod $1"
  185. #: builtin/mainmenu/content/dlg_contentstore.lua
  186. msgid "Install missing dependencies"
  187. msgstr ""
  188. #: builtin/mainmenu/content/dlg_contentstore.lua
  189. #: builtin/mainmenu/serverlistmgr.lua src/client/game.cpp
  190. msgid "Loading..."
  191. msgstr "Wrthi'n llwytho..."
  192. #: builtin/mainmenu/content/dlg_contentstore.lua
  193. msgid "Mods"
  194. msgstr "Addasiadau"
  195. #: builtin/mainmenu/content/dlg_contentstore.lua
  196. msgid "No packages could be retrieved"
  197. msgstr ""
  198. #: builtin/mainmenu/content/dlg_contentstore.lua
  199. #: builtin/mainmenu/settings/dlg_settings.lua
  200. msgid "No results"
  201. msgstr "Dim canlyniadau"
  202. #: builtin/mainmenu/content/dlg_contentstore.lua
  203. msgid "No updates"
  204. msgstr "Dim diweddariadau"
  205. #: builtin/mainmenu/content/dlg_contentstore.lua
  206. msgid "Not found"
  207. msgstr "Heb ei ganfod"
  208. #: builtin/mainmenu/content/dlg_contentstore.lua
  209. msgid "Overwrite"
  210. msgstr "Trosysgrifo"
  211. #: builtin/mainmenu/content/dlg_contentstore.lua
  212. msgid "Please check that the base game is correct."
  213. msgstr ""
  214. #: builtin/mainmenu/content/dlg_contentstore.lua
  215. msgid "Queued"
  216. msgstr "Wedi ciwio"
  217. #: builtin/mainmenu/content/dlg_contentstore.lua
  218. msgid "Texture packs"
  219. msgstr "Pecynnau adnodd"
  220. #: builtin/mainmenu/content/dlg_contentstore.lua
  221. msgid "The package $1 was not found."
  222. msgstr ""
  223. #: builtin/mainmenu/content/dlg_contentstore.lua
  224. #: builtin/mainmenu/tab_content.lua
  225. msgid "Uninstall"
  226. msgstr "Dadosod"
  227. #: builtin/mainmenu/content/dlg_contentstore.lua
  228. #: builtin/mainmenu/tab_content.lua
  229. msgid "Update"
  230. msgstr "Diweddaru"
  231. #: builtin/mainmenu/content/dlg_contentstore.lua
  232. msgid "Update All [$1]"
  233. msgstr ""
  234. #: builtin/mainmenu/content/dlg_contentstore.lua
  235. msgid "View more information in a web browser"
  236. msgstr ""
  237. #: builtin/mainmenu/content/dlg_contentstore.lua
  238. msgid "You need to install a game before you can install a mod"
  239. msgstr ""
  240. #: builtin/mainmenu/content/pkgmgr.lua
  241. msgid "$1 (Enabled)"
  242. msgstr "$1 (Ymlaen)"
  243. #: builtin/mainmenu/content/pkgmgr.lua
  244. msgid "$1 mods"
  245. msgstr "Addasiadau $1"
  246. #: builtin/mainmenu/content/pkgmgr.lua
  247. msgid "Failed to install $1 to $2"
  248. msgstr ""
  249. #: builtin/mainmenu/content/pkgmgr.lua
  250. msgid "Install: Unable to find suitable folder name for $1"
  251. msgstr ""
  252. #: builtin/mainmenu/content/pkgmgr.lua
  253. msgid "Unable to find a valid mod, modpack, or game"
  254. msgstr ""
  255. #: builtin/mainmenu/content/pkgmgr.lua
  256. msgid "Unable to install a $1 as a $2"
  257. msgstr ""
  258. #: builtin/mainmenu/content/pkgmgr.lua
  259. msgid "Unable to install a $1 as a texture pack"
  260. msgstr ""
  261. #: builtin/mainmenu/dlg_config_world.lua
  262. msgid "(Enabled, has error)"
  263. msgstr ""
  264. #: builtin/mainmenu/dlg_config_world.lua
  265. msgid "(Unsatisfied)"
  266. msgstr ""
  267. #: builtin/mainmenu/dlg_config_world.lua
  268. msgid "Disable all"
  269. msgstr "Diffodd popeth"
  270. #: builtin/mainmenu/dlg_config_world.lua
  271. msgid "Disable modpack"
  272. msgstr "Diffodd pecyn addasiadau"
  273. #: builtin/mainmenu/dlg_config_world.lua
  274. msgid "Enable all"
  275. msgstr "Galluogi popeth"
  276. #: builtin/mainmenu/dlg_config_world.lua
  277. msgid "Enable modpack"
  278. msgstr "Galluogi pecyn addasiadau"
  279. #: builtin/mainmenu/dlg_config_world.lua
  280. msgid ""
  281. "Failed to enable mod \"$1\" as it contains disallowed characters. Only "
  282. "characters [a-z0-9_] are allowed."
  283. msgstr ""
  284. #: builtin/mainmenu/dlg_config_world.lua
  285. msgid "Find More Mods"
  286. msgstr ""
  287. #: builtin/mainmenu/dlg_config_world.lua
  288. msgid "Mod:"
  289. msgstr "Addasiad:"
  290. #: builtin/mainmenu/dlg_config_world.lua
  291. msgid "No (optional) dependencies"
  292. msgstr ""
  293. #: builtin/mainmenu/dlg_config_world.lua
  294. msgid "No game description provided."
  295. msgstr ""
  296. #: builtin/mainmenu/dlg_config_world.lua
  297. msgid "No hard dependencies"
  298. msgstr ""
  299. #: builtin/mainmenu/dlg_config_world.lua
  300. msgid "No modpack description provided."
  301. msgstr ""
  302. #: builtin/mainmenu/dlg_config_world.lua
  303. msgid "No optional dependencies"
  304. msgstr ""
  305. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua
  306. msgid "Optional dependencies:"
  307. msgstr ""
  308. #: builtin/mainmenu/dlg_config_world.lua
  309. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  310. #: src/gui/guiKeyChangeMenu.cpp
  311. msgid "Save"
  312. msgstr "Cadw"
  313. #: builtin/mainmenu/dlg_config_world.lua
  314. msgid "World:"
  315. msgstr "Byd:"
  316. #: builtin/mainmenu/dlg_config_world.lua
  317. msgid "enabled"
  318. msgstr "ymlaen"
  319. #: builtin/mainmenu/dlg_create_world.lua
  320. msgid "A world named \"$1\" already exists"
  321. msgstr ""
  322. #: builtin/mainmenu/dlg_create_world.lua
  323. msgid "Additional terrain"
  324. msgstr ""
  325. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  326. msgid "Altitude chill"
  327. msgstr ""
  328. #: builtin/mainmenu/dlg_create_world.lua
  329. msgid "Altitude dry"
  330. msgstr ""
  331. #: builtin/mainmenu/dlg_create_world.lua
  332. msgid "Biome blending"
  333. msgstr "Cyfuniad bïom"
  334. #: builtin/mainmenu/dlg_create_world.lua
  335. msgid "Biomes"
  336. msgstr "Bïomau"
  337. #: builtin/mainmenu/dlg_create_world.lua
  338. msgid "Caverns"
  339. msgstr "Ceudyllau"
  340. #: builtin/mainmenu/dlg_create_world.lua
  341. msgid "Caves"
  342. msgstr "Ogofeydd"
  343. #: builtin/mainmenu/dlg_create_world.lua
  344. msgid "Create"
  345. msgstr "Creu"
  346. #: builtin/mainmenu/dlg_create_world.lua
  347. msgid "Decorations"
  348. msgstr "Addurniadau"
  349. #: builtin/mainmenu/dlg_create_world.lua
  350. msgid "Development Test is meant for developers."
  351. msgstr ""
  352. #: builtin/mainmenu/dlg_create_world.lua
  353. msgid "Dungeons"
  354. msgstr "Dwnsiynau"
  355. #: builtin/mainmenu/dlg_create_world.lua
  356. msgid "Flat terrain"
  357. msgstr ""
  358. #: builtin/mainmenu/dlg_create_world.lua
  359. msgid "Floating landmasses in the sky"
  360. msgstr ""
  361. #: builtin/mainmenu/dlg_create_world.lua
  362. msgid "Floatlands (experimental)"
  363. msgstr ""
  364. #: builtin/mainmenu/dlg_create_world.lua
  365. msgid "Generate non-fractal terrain: Oceans and underground"
  366. msgstr ""
  367. #: builtin/mainmenu/dlg_create_world.lua
  368. msgid "Hills"
  369. msgstr "Bryniau"
  370. #: builtin/mainmenu/dlg_create_world.lua
  371. msgid "Humid rivers"
  372. msgstr ""
  373. #: builtin/mainmenu/dlg_create_world.lua
  374. msgid "Increases humidity around rivers"
  375. msgstr ""
  376. #: builtin/mainmenu/dlg_create_world.lua
  377. msgid "Install another game"
  378. msgstr ""
  379. #: builtin/mainmenu/dlg_create_world.lua
  380. msgid "Lakes"
  381. msgstr "Llynnoedd"
  382. #: builtin/mainmenu/dlg_create_world.lua
  383. msgid "Low humidity and high heat causes shallow or dry rivers"
  384. msgstr ""
  385. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  386. msgid "Mapgen"
  387. msgstr "Mapgen"
  388. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  389. msgid "Mapgen flags"
  390. msgstr "Fflagiau mapgen"
  391. #: builtin/mainmenu/dlg_create_world.lua
  392. msgid "Mapgen-specific flags"
  393. msgstr ""
  394. #: builtin/mainmenu/dlg_create_world.lua
  395. msgid "Mountains"
  396. msgstr "Mynyddoedd"
  397. #: builtin/mainmenu/dlg_create_world.lua
  398. msgid "Mud flow"
  399. msgstr "Llif mwd"
  400. #: builtin/mainmenu/dlg_create_world.lua
  401. msgid "Network of tunnels and caves"
  402. msgstr ""
  403. #: builtin/mainmenu/dlg_create_world.lua
  404. msgid "No game selected"
  405. msgstr ""
  406. #: builtin/mainmenu/dlg_create_world.lua
  407. msgid "Reduces heat with altitude"
  408. msgstr ""
  409. #: builtin/mainmenu/dlg_create_world.lua
  410. msgid "Reduces humidity with altitude"
  411. msgstr ""
  412. #: builtin/mainmenu/dlg_create_world.lua
  413. msgid "Rivers"
  414. msgstr "Afonydd"
  415. #: builtin/mainmenu/dlg_create_world.lua
  416. msgid "Sea level rivers"
  417. msgstr ""
  418. #: builtin/mainmenu/dlg_create_world.lua
  419. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  420. msgid "Seed"
  421. msgstr "Hedyn"
  422. #: builtin/mainmenu/dlg_create_world.lua
  423. msgid "Smooth transition between biomes"
  424. msgstr ""
  425. #: builtin/mainmenu/dlg_create_world.lua
  426. msgid ""
  427. "Structures appearing on the terrain (no effect on trees and jungle grass "
  428. "created by v6)"
  429. msgstr ""
  430. #: builtin/mainmenu/dlg_create_world.lua
  431. msgid "Structures appearing on the terrain, typically trees and plants"
  432. msgstr ""
  433. #: builtin/mainmenu/dlg_create_world.lua
  434. msgid "Temperate, Desert"
  435. msgstr ""
  436. #: builtin/mainmenu/dlg_create_world.lua
  437. msgid "Temperate, Desert, Jungle"
  438. msgstr ""
  439. #: builtin/mainmenu/dlg_create_world.lua
  440. msgid "Temperate, Desert, Jungle, Tundra, Taiga"
  441. msgstr ""
  442. #: builtin/mainmenu/dlg_create_world.lua
  443. msgid "Terrain surface erosion"
  444. msgstr ""
  445. #: builtin/mainmenu/dlg_create_world.lua
  446. msgid "Trees and jungle grass"
  447. msgstr ""
  448. #: builtin/mainmenu/dlg_create_world.lua
  449. msgid "Vary river depth"
  450. msgstr ""
  451. #: builtin/mainmenu/dlg_create_world.lua
  452. msgid "Very large caverns deep in the underground"
  453. msgstr ""
  454. #: builtin/mainmenu/dlg_create_world.lua
  455. msgid "World name"
  456. msgstr "Enw'r byd"
  457. #: builtin/mainmenu/dlg_delete_content.lua
  458. msgid "Are you sure you want to delete \"$1\"?"
  459. msgstr ""
  460. #: builtin/mainmenu/dlg_delete_content.lua
  461. #: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/tab_local.lua
  462. msgid "Delete"
  463. msgstr "Dileu"
  464. #: builtin/mainmenu/dlg_delete_content.lua
  465. msgid "pkgmgr: failed to delete \"$1\""
  466. msgstr ""
  467. #: builtin/mainmenu/dlg_delete_content.lua
  468. msgid "pkgmgr: invalid path \"$1\""
  469. msgstr ""
  470. #: builtin/mainmenu/dlg_delete_world.lua
  471. msgid "Delete World \"$1\"?"
  472. msgstr ""
  473. #: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp
  474. msgid "Confirm Password"
  475. msgstr "Cadarnhau Cyfrinair"
  476. #: builtin/mainmenu/dlg_register.lua
  477. msgid "Joining $1"
  478. msgstr "Wrthi'n ymuno â $1"
  479. #: builtin/mainmenu/dlg_register.lua
  480. msgid "Missing name"
  481. msgstr "Enw ar goll"
  482. #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua
  483. #: builtin/mainmenu/tab_online.lua
  484. msgid "Name"
  485. msgstr "Enw"
  486. #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua
  487. #: builtin/mainmenu/tab_online.lua
  488. msgid "Password"
  489. msgstr "Cyfrinair"
  490. #: builtin/mainmenu/dlg_register.lua
  491. msgid "Passwords do not match"
  492. msgstr ""
  493. #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua
  494. msgid "Register"
  495. msgstr "Cofrestru"
  496. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  497. msgid "Dismiss"
  498. msgstr ""
  499. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  500. msgid ""
  501. "For a long time, the Minetest engine shipped with a default game called "
  502. "\"Minetest Game\". Since Minetest 5.8.0, Minetest ships without a default "
  503. "game."
  504. msgstr ""
  505. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  506. msgid ""
  507. "If you want to continue playing in your Minetest Game worlds, you need to "
  508. "reinstall Minetest Game."
  509. msgstr ""
  510. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  511. msgid "Minetest Game is no longer installed by default"
  512. msgstr ""
  513. #: builtin/mainmenu/dlg_reinstall_mtg.lua
  514. msgid "Reinstall Minetest Game"
  515. msgstr ""
  516. #: builtin/mainmenu/dlg_rename_modpack.lua
  517. msgid "Accept"
  518. msgstr "Derbyn"
  519. #: builtin/mainmenu/dlg_rename_modpack.lua
  520. msgid "Rename Modpack:"
  521. msgstr "Ailenwi pecyn addasiadau:"
  522. #: builtin/mainmenu/dlg_rename_modpack.lua
  523. msgid ""
  524. "This modpack has an explicit name given in its modpack.conf which will "
  525. "override any renaming here."
  526. msgstr ""
  527. #: builtin/mainmenu/dlg_version_info.lua
  528. msgid "A new $1 version is available"
  529. msgstr ""
  530. #: builtin/mainmenu/dlg_version_info.lua
  531. msgid ""
  532. "Installed version: $1\n"
  533. "New version: $2\n"
  534. "Visit $3 to find out how to get the newest version and stay up to date with "
  535. "features and bugfixes."
  536. msgstr ""
  537. #: builtin/mainmenu/dlg_version_info.lua
  538. msgid "Later"
  539. msgstr "Nes ymlaen"
  540. #: builtin/mainmenu/dlg_version_info.lua
  541. msgid "Never"
  542. msgstr "Byth"
  543. #: builtin/mainmenu/dlg_version_info.lua
  544. msgid "Visit website"
  545. msgstr "Gwefan"
  546. #: builtin/mainmenu/init.lua
  547. msgid "Settings"
  548. msgstr "Gosodiadau"
  549. #: builtin/mainmenu/serverlistmgr.lua
  550. msgid "Public server list is disabled"
  551. msgstr ""
  552. #: builtin/mainmenu/serverlistmgr.lua
  553. msgid "Try reenabling public serverlist and check your internet connection."
  554. msgstr ""
  555. #: builtin/mainmenu/settings/components.lua
  556. msgid "Browse"
  557. msgstr "Pori"
  558. #: builtin/mainmenu/settings/components.lua
  559. msgid "Edit"
  560. msgstr "Golygu"
  561. #: builtin/mainmenu/settings/components.lua
  562. msgid "Select directory"
  563. msgstr ""
  564. #: builtin/mainmenu/settings/components.lua
  565. msgid "Select file"
  566. msgstr "Dewiswch ffeil"
  567. #: builtin/mainmenu/settings/components.lua
  568. #, fuzzy
  569. msgid "Set"
  570. msgstr "Select"
  571. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  572. msgid "(No description of setting given)"
  573. msgstr ""
  574. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  575. msgid "2D Noise"
  576. msgstr ""
  577. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  578. msgid "Lacunarity"
  579. msgstr ""
  580. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  581. msgid "Octaves"
  582. msgstr "Wythfedau"
  583. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  584. #: src/settings_translation_file.cpp
  585. msgid "Offset"
  586. msgstr ""
  587. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  588. msgid "Persistence"
  589. msgstr ""
  590. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  591. #: src/settings_translation_file.cpp
  592. msgid "Scale"
  593. msgstr "Graddfa"
  594. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  595. msgid "X spread"
  596. msgstr ""
  597. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  598. msgid "Y spread"
  599. msgstr ""
  600. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  601. msgid "Z spread"
  602. msgstr ""
  603. #. ~ "absvalue" is a noise parameter flag.
  604. #. It is short for "absolute value".
  605. #. It can be enabled in noise settings in
  606. #. the settings menu.
  607. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  608. msgid "absvalue"
  609. msgstr ""
  610. #. ~ "defaults" is a noise parameter flag.
  611. #. It describes the default processing options
  612. #. for noise settings in the settings menu.
  613. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  614. msgid "defaults"
  615. msgstr "diofyn"
  616. #. ~ "eased" is a noise parameter flag.
  617. #. It is used to make the map smoother and
  618. #. can be enabled in noise settings in
  619. #. the settings menu.
  620. #: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua
  621. msgid "eased"
  622. msgstr ""
  623. #: builtin/mainmenu/settings/dlg_settings.lua
  624. msgid "(Use system language)"
  625. msgstr ""
  626. #: builtin/mainmenu/settings/dlg_settings.lua
  627. msgid "Accessibility"
  628. msgstr ""
  629. #: builtin/mainmenu/settings/dlg_settings.lua
  630. #, fuzzy
  631. msgid "Back"
  632. msgstr "Bacio"
  633. #: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp
  634. msgid "Change Keys"
  635. msgstr "Newid Bysellau"
  636. #: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp
  637. #: src/settings_translation_file.cpp
  638. msgid "Chat"
  639. msgstr "Sgwrs"
  640. #: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua
  641. msgid "Clear"
  642. msgstr "Clirio"
  643. #: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp
  644. msgid "Controls"
  645. msgstr "Rheoli"
  646. #: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp
  647. msgid "General"
  648. msgstr "Cyffredinol"
  649. #: builtin/mainmenu/settings/dlg_settings.lua
  650. msgid "Movement"
  651. msgstr ""
  652. #: builtin/mainmenu/settings/dlg_settings.lua
  653. #, fuzzy
  654. msgid "Reset setting to default"
  655. msgstr "Adfer gosodiadau diofyn"
  656. #: builtin/mainmenu/settings/dlg_settings.lua
  657. msgid "Reset setting to default ($1)"
  658. msgstr ""
  659. #: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua
  660. msgid "Search"
  661. msgstr "Chwilio"
  662. #: builtin/mainmenu/settings/dlg_settings.lua
  663. msgid "Show advanced settings"
  664. msgstr ""
  665. #: builtin/mainmenu/settings/dlg_settings.lua
  666. msgid "Show technical names"
  667. msgstr ""
  668. #: builtin/mainmenu/settings/settingtypes.lua
  669. msgid "Client Mods"
  670. msgstr "Addasiadau i'r Cleient"
  671. #: builtin/mainmenu/settings/settingtypes.lua
  672. msgid "Content: Games"
  673. msgstr "Cynnwys: Gemau"
  674. #: builtin/mainmenu/settings/settingtypes.lua
  675. msgid "Content: Mods"
  676. msgstr "Cynnwys: Addasiadau"
  677. #: builtin/mainmenu/settings/shadows_component.lua
  678. msgid "(The game will need to enable shadows as well)"
  679. msgstr ""
  680. #: builtin/mainmenu/settings/shadows_component.lua
  681. msgid "Custom"
  682. msgstr ""
  683. #: builtin/mainmenu/settings/shadows_component.lua
  684. msgid "Disabled"
  685. msgstr "Wedi analluogi"
  686. #: builtin/mainmenu/settings/shadows_component.lua
  687. #: src/settings_translation_file.cpp
  688. msgid "Dynamic shadows"
  689. msgstr ""
  690. #: builtin/mainmenu/settings/shadows_component.lua
  691. msgid "High"
  692. msgstr "Uchel"
  693. #: builtin/mainmenu/settings/shadows_component.lua
  694. msgid "Low"
  695. msgstr "Isel"
  696. #: builtin/mainmenu/settings/shadows_component.lua
  697. msgid "Medium"
  698. msgstr "Canolig"
  699. #: builtin/mainmenu/settings/shadows_component.lua
  700. msgid "Very High"
  701. msgstr "Uchel Iawn"
  702. #: builtin/mainmenu/settings/shadows_component.lua
  703. msgid "Very Low"
  704. msgstr "Isel Iawn"
  705. #: builtin/mainmenu/tab_about.lua
  706. msgid "About"
  707. msgstr "Ynghylch"
  708. #: builtin/mainmenu/tab_about.lua
  709. msgid "Active Contributors"
  710. msgstr "Cyfranwyr Gweithgar"
  711. #: builtin/mainmenu/tab_about.lua
  712. msgid "Active renderer:"
  713. msgstr ""
  714. #: builtin/mainmenu/tab_about.lua
  715. msgid "Core Developers"
  716. msgstr "Datblygwyr Craidd"
  717. #: builtin/mainmenu/tab_about.lua
  718. msgid "Core Team"
  719. msgstr "Tîm Craidd"
  720. #: builtin/mainmenu/tab_about.lua
  721. msgid "Irrlicht device:"
  722. msgstr ""
  723. #: builtin/mainmenu/tab_about.lua
  724. msgid "Open User Data Directory"
  725. msgstr ""
  726. #: builtin/mainmenu/tab_about.lua
  727. msgid ""
  728. "Opens the directory that contains user-provided worlds, games, mods,\n"
  729. "and texture packs in a file manager / explorer."
  730. msgstr ""
  731. #: builtin/mainmenu/tab_about.lua
  732. msgid "Previous Contributors"
  733. msgstr "Cyn-Gyfranwyr"
  734. #: builtin/mainmenu/tab_about.lua
  735. msgid "Previous Core Developers"
  736. msgstr ""
  737. #: builtin/mainmenu/tab_about.lua
  738. msgid "Share debug log"
  739. msgstr ""
  740. #: builtin/mainmenu/tab_content.lua
  741. msgid "Browse online content"
  742. msgstr ""
  743. #: builtin/mainmenu/tab_content.lua
  744. msgid "Browse online content [$1]"
  745. msgstr ""
  746. #: builtin/mainmenu/tab_content.lua
  747. msgid "Content"
  748. msgstr "Cynnwys"
  749. #: builtin/mainmenu/tab_content.lua
  750. #, fuzzy
  751. msgid "Content [$1]"
  752. msgstr "Cynnwys"
  753. #: builtin/mainmenu/tab_content.lua
  754. msgid "Disable Texture Pack"
  755. msgstr ""
  756. #: builtin/mainmenu/tab_content.lua
  757. msgid "Installed Packages:"
  758. msgstr "Pecynnau wedi eu gosod:"
  759. #: builtin/mainmenu/tab_content.lua
  760. msgid "No dependencies."
  761. msgstr ""
  762. #: builtin/mainmenu/tab_content.lua
  763. msgid "No package description available"
  764. msgstr ""
  765. #: builtin/mainmenu/tab_content.lua
  766. msgid "Rename"
  767. msgstr "Ailenwi"
  768. #: builtin/mainmenu/tab_content.lua
  769. #, fuzzy
  770. msgid "Update available?"
  771. msgstr "<dim>"
  772. #: builtin/mainmenu/tab_content.lua
  773. msgid "Use Texture Pack"
  774. msgstr ""
  775. #: builtin/mainmenu/tab_local.lua
  776. msgid "Announce Server"
  777. msgstr "Cyhoeddi Gweinydd"
  778. #: builtin/mainmenu/tab_local.lua
  779. msgid "Bind Address"
  780. msgstr ""
  781. #: builtin/mainmenu/tab_local.lua
  782. msgid "Creative Mode"
  783. msgstr "Modd Creadigol"
  784. #: builtin/mainmenu/tab_local.lua
  785. msgid "Enable Damage"
  786. msgstr "Galluogi Difrod"
  787. #: builtin/mainmenu/tab_local.lua
  788. msgid "Host Game"
  789. msgstr ""
  790. #: builtin/mainmenu/tab_local.lua
  791. msgid "Host Server"
  792. msgstr ""
  793. #: builtin/mainmenu/tab_local.lua
  794. msgid "Install a game"
  795. msgstr ""
  796. #: builtin/mainmenu/tab_local.lua
  797. msgid "Install games from ContentDB"
  798. msgstr ""
  799. #: builtin/mainmenu/tab_local.lua
  800. msgid "New"
  801. msgstr "Newydd"
  802. #: builtin/mainmenu/tab_local.lua
  803. msgid "No world created or selected!"
  804. msgstr ""
  805. #: builtin/mainmenu/tab_local.lua
  806. msgid "Play Game"
  807. msgstr "Chwarae Gêm"
  808. #: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_online.lua
  809. msgid "Port"
  810. msgstr "Porth"
  811. #: builtin/mainmenu/tab_local.lua
  812. msgid "Select Mods"
  813. msgstr "Dewis Addasiadau"
  814. #: builtin/mainmenu/tab_local.lua
  815. msgid "Select World:"
  816. msgstr "Dewis Byd:"
  817. #: builtin/mainmenu/tab_local.lua
  818. msgid "Server Port"
  819. msgstr "Porth y Gweinydd"
  820. #: builtin/mainmenu/tab_local.lua
  821. msgid "Start Game"
  822. msgstr "Dechrau Gêm"
  823. #: builtin/mainmenu/tab_local.lua
  824. msgid "You have no games installed."
  825. msgstr ""
  826. #: builtin/mainmenu/tab_online.lua
  827. msgid "Address"
  828. msgstr "Cyfeiriad"
  829. #: builtin/mainmenu/tab_online.lua
  830. msgid "Creative mode"
  831. msgstr "Modd Creadigol"
  832. #. ~ PvP = Player versus Player
  833. #: builtin/mainmenu/tab_online.lua
  834. msgid "Damage / PvP"
  835. msgstr ""
  836. #: builtin/mainmenu/tab_online.lua
  837. msgid "Favorites"
  838. msgstr "Ffefrynnau"
  839. #: builtin/mainmenu/tab_online.lua
  840. msgid "Incompatible Servers"
  841. msgstr "Gweinyddion Anghydnaws"
  842. #: builtin/mainmenu/tab_online.lua
  843. msgid "Join Game"
  844. msgstr "Ymuno â Gêm"
  845. #: builtin/mainmenu/tab_online.lua
  846. msgid "Login"
  847. msgstr "Mewngofnodi"
  848. #: builtin/mainmenu/tab_online.lua
  849. msgid "Ping"
  850. msgstr "Ping"
  851. #: builtin/mainmenu/tab_online.lua
  852. msgid "Public Servers"
  853. msgstr "Gweinyddion Cyhoeddus"
  854. #: builtin/mainmenu/tab_online.lua
  855. msgid "Refresh"
  856. msgstr "Adnewyddu"
  857. #: builtin/mainmenu/tab_online.lua
  858. msgid "Remove favorite"
  859. msgstr "Dileu o ffefrynnau"
  860. #: builtin/mainmenu/tab_online.lua
  861. msgid "Server Description"
  862. msgstr "Disgrifiad y Gweinydd"
  863. #: src/client/client.cpp
  864. msgid "Connection aborted (protocol error?)."
  865. msgstr ""
  866. #: src/client/client.cpp src/client/game.cpp
  867. msgid "Connection timed out."
  868. msgstr ""
  869. #: src/client/client.cpp
  870. msgid "Done!"
  871. msgstr "Iawn!"
  872. #: src/client/client.cpp
  873. msgid "Initializing nodes"
  874. msgstr ""
  875. #: src/client/client.cpp
  876. msgid "Initializing nodes..."
  877. msgstr ""
  878. #: src/client/client.cpp
  879. msgid "Loading textures..."
  880. msgstr "Wrthi'n llwytho gweadau..."
  881. #: src/client/client.cpp
  882. msgid "Rebuilding shaders..."
  883. msgstr ""
  884. #: src/client/clientlauncher.cpp
  885. msgid "Connection error (timed out?)"
  886. msgstr ""
  887. #: src/client/clientlauncher.cpp
  888. msgid "Could not find or load game: "
  889. msgstr ""
  890. #: src/client/clientlauncher.cpp
  891. msgid "Invalid gamespec."
  892. msgstr ""
  893. #: src/client/clientlauncher.cpp
  894. msgid "Main Menu"
  895. msgstr "Prif Ddewislen"
  896. #: src/client/clientlauncher.cpp
  897. msgid "No world selected and no address provided. Nothing to do."
  898. msgstr ""
  899. #: src/client/clientlauncher.cpp
  900. msgid "Player name too long."
  901. msgstr ""
  902. #: src/client/clientlauncher.cpp
  903. msgid "Please choose a name!"
  904. msgstr ""
  905. #: src/client/clientlauncher.cpp
  906. msgid "Provided password file failed to open: "
  907. msgstr ""
  908. #: src/client/clientlauncher.cpp
  909. msgid "Provided world path doesn't exist: "
  910. msgstr ""
  911. #: src/client/game.cpp src/server.cpp
  912. msgid ""
  913. "\n"
  914. "Check debug.txt for details."
  915. msgstr ""
  916. #: src/client/game.cpp
  917. msgid "- Address: "
  918. msgstr ""
  919. #: src/client/game.cpp
  920. msgid "- Mode: "
  921. msgstr ""
  922. #: src/client/game.cpp
  923. msgid "- Port: "
  924. msgstr ""
  925. #: src/client/game.cpp
  926. msgid "- Public: "
  927. msgstr ""
  928. #. ~ PvP = Player versus Player
  929. #: src/client/game.cpp
  930. msgid "- PvP: "
  931. msgstr ""
  932. #: src/client/game.cpp
  933. msgid "- Server Name: "
  934. msgstr ""
  935. #: src/client/game.cpp
  936. msgid "A serialization error occurred:"
  937. msgstr ""
  938. #: src/client/game.cpp
  939. #, c-format
  940. msgid "Access denied. Reason: %s"
  941. msgstr ""
  942. #: src/client/game.cpp
  943. msgid "Automatic forward disabled"
  944. msgstr ""
  945. #: src/client/game.cpp
  946. msgid "Automatic forward enabled"
  947. msgstr ""
  948. #: src/client/game.cpp
  949. msgid "Block bounds hidden"
  950. msgstr ""
  951. #: src/client/game.cpp
  952. msgid "Block bounds shown for all blocks"
  953. msgstr ""
  954. #: src/client/game.cpp
  955. msgid "Block bounds shown for current block"
  956. msgstr ""
  957. #: src/client/game.cpp
  958. msgid "Block bounds shown for nearby blocks"
  959. msgstr ""
  960. #: src/client/game.cpp
  961. msgid "Camera update disabled"
  962. msgstr ""
  963. #: src/client/game.cpp
  964. msgid "Camera update enabled"
  965. msgstr ""
  966. #: src/client/game.cpp
  967. msgid "Can't show block bounds (disabled by game or mod)"
  968. msgstr ""
  969. #: src/client/game.cpp
  970. msgid "Change Password"
  971. msgstr "Newid Cyfrinair"
  972. #: src/client/game.cpp
  973. msgid "Cinematic mode disabled"
  974. msgstr ""
  975. #: src/client/game.cpp
  976. msgid "Cinematic mode enabled"
  977. msgstr ""
  978. #: src/client/game.cpp
  979. msgid "Client disconnected"
  980. msgstr ""
  981. #: src/client/game.cpp
  982. msgid "Client side scripting is disabled"
  983. msgstr ""
  984. #: src/client/game.cpp
  985. msgid "Connecting to server..."
  986. msgstr ""
  987. #: src/client/game.cpp
  988. msgid "Connection failed for unknown reason"
  989. msgstr ""
  990. #: src/client/game.cpp
  991. msgid "Continue"
  992. msgstr "Parhau"
  993. #: src/client/game.cpp
  994. #, c-format
  995. msgid ""
  996. "Controls:\n"
  997. "- %s: move forwards\n"
  998. "- %s: move backwards\n"
  999. "- %s: move left\n"
  1000. "- %s: move right\n"
  1001. "- %s: jump/climb up\n"
  1002. "- %s: dig/punch/use\n"
  1003. "- %s: place/use\n"
  1004. "- %s: sneak/climb down\n"
  1005. "- %s: drop item\n"
  1006. "- %s: inventory\n"
  1007. "- Mouse: turn/look\n"
  1008. "- Mouse wheel: select item\n"
  1009. "- %s: chat\n"
  1010. msgstr ""
  1011. #: src/client/game.cpp
  1012. msgid ""
  1013. "Controls:\n"
  1014. "No menu open:\n"
  1015. "- slide finger: look around\n"
  1016. "- tap: place/use\n"
  1017. "- long tap: dig/punch/use\n"
  1018. "Menu/inventory open:\n"
  1019. "- double tap (outside):\n"
  1020. " --> close\n"
  1021. "- touch stack, touch slot:\n"
  1022. " --> move stack\n"
  1023. "- touch&drag, tap 2nd finger\n"
  1024. " --> place single item to slot\n"
  1025. msgstr ""
  1026. #: src/client/game.cpp
  1027. #, c-format
  1028. msgid "Couldn't resolve address: %s"
  1029. msgstr ""
  1030. #: src/client/game.cpp
  1031. msgid "Creating client..."
  1032. msgstr "Wrthi'n creu cleient..."
  1033. #: src/client/game.cpp
  1034. msgid "Creating server..."
  1035. msgstr "Wrthi'n creu gweinydd..."
  1036. #: src/client/game.cpp
  1037. msgid "Debug info and profiler graph hidden"
  1038. msgstr ""
  1039. #: src/client/game.cpp
  1040. msgid "Debug info shown"
  1041. msgstr ""
  1042. #: src/client/game.cpp
  1043. msgid "Debug info, profiler graph, and wireframe hidden"
  1044. msgstr ""
  1045. #: src/client/game.cpp
  1046. #, c-format
  1047. msgid "Error creating client: %s"
  1048. msgstr ""
  1049. #: src/client/game.cpp
  1050. msgid "Exit to Menu"
  1051. msgstr ""
  1052. #: src/client/game.cpp
  1053. msgid "Exit to OS"
  1054. msgstr ""
  1055. #: src/client/game.cpp
  1056. msgid "Fast mode disabled"
  1057. msgstr ""
  1058. #: src/client/game.cpp
  1059. msgid "Fast mode enabled"
  1060. msgstr ""
  1061. #: src/client/game.cpp
  1062. msgid "Fast mode enabled (note: no 'fast' privilege)"
  1063. msgstr ""
  1064. #: src/client/game.cpp
  1065. msgid "Fly mode disabled"
  1066. msgstr ""
  1067. #: src/client/game.cpp
  1068. msgid "Fly mode enabled"
  1069. msgstr ""
  1070. #: src/client/game.cpp
  1071. msgid "Fly mode enabled (note: no 'fly' privilege)"
  1072. msgstr ""
  1073. #: src/client/game.cpp
  1074. msgid "Fog disabled"
  1075. msgstr ""
  1076. #: src/client/game.cpp
  1077. msgid "Fog enabled"
  1078. msgstr ""
  1079. #: src/client/game.cpp
  1080. msgid "Game info:"
  1081. msgstr ""
  1082. #: src/client/game.cpp
  1083. msgid "Game paused"
  1084. msgstr ""
  1085. #: src/client/game.cpp
  1086. msgid "Hosting server"
  1087. msgstr ""
  1088. #: src/client/game.cpp
  1089. msgid "Item definitions..."
  1090. msgstr "Diffiniadau eitem..."
  1091. #: src/client/game.cpp
  1092. msgid "KiB/s"
  1093. msgstr "KiB/s"
  1094. #: src/client/game.cpp
  1095. msgid "Media..."
  1096. msgstr "Cyfryngau..."
  1097. #: src/client/game.cpp
  1098. msgid "MiB/s"
  1099. msgstr "MiB/s"
  1100. #: src/client/game.cpp
  1101. msgid "Minimap currently disabled by game or mod"
  1102. msgstr ""
  1103. #: src/client/game.cpp
  1104. msgid "Multiplayer"
  1105. msgstr "Aml-chwaraewr"
  1106. #: src/client/game.cpp
  1107. msgid "Noclip mode disabled"
  1108. msgstr ""
  1109. #: src/client/game.cpp
  1110. msgid "Noclip mode enabled"
  1111. msgstr ""
  1112. #: src/client/game.cpp
  1113. msgid "Noclip mode enabled (note: no 'noclip' privilege)"
  1114. msgstr ""
  1115. #: src/client/game.cpp
  1116. msgid "Node definitions..."
  1117. msgstr ""
  1118. #: src/client/game.cpp
  1119. msgid "Off"
  1120. msgstr "Na"
  1121. #: src/client/game.cpp
  1122. msgid "On"
  1123. msgstr "Ie"
  1124. #: src/client/game.cpp
  1125. msgid "Pitch move mode disabled"
  1126. msgstr ""
  1127. #: src/client/game.cpp
  1128. msgid "Pitch move mode enabled"
  1129. msgstr ""
  1130. #: src/client/game.cpp
  1131. msgid "Profiler graph shown"
  1132. msgstr ""
  1133. #: src/client/game.cpp
  1134. msgid "Remote server"
  1135. msgstr ""
  1136. #: src/client/game.cpp
  1137. msgid "Resolving address..."
  1138. msgstr ""
  1139. #: src/client/game.cpp
  1140. msgid "Shutting down..."
  1141. msgstr "Wrthi'n cau..."
  1142. #: src/client/game.cpp
  1143. msgid "Singleplayer"
  1144. msgstr "Chwaraewr Sengl"
  1145. #: src/client/game.cpp
  1146. msgid "Sound Volume"
  1147. msgstr ""
  1148. #: src/client/game.cpp
  1149. msgid "Sound muted"
  1150. msgstr "Sain wedi diffodd"
  1151. #: src/client/game.cpp
  1152. msgid "Sound system is disabled"
  1153. msgstr ""
  1154. #: src/client/game.cpp
  1155. msgid "Sound system is not supported on this build"
  1156. msgstr ""
  1157. #: src/client/game.cpp
  1158. msgid "Sound unmuted"
  1159. msgstr ""
  1160. #: src/client/game.cpp
  1161. #, c-format
  1162. msgid "The server is probably running a different version of %s."
  1163. msgstr ""
  1164. #: src/client/game.cpp
  1165. #, c-format
  1166. msgid "Unable to connect to %s because IPv6 is disabled"
  1167. msgstr ""
  1168. #: src/client/game.cpp
  1169. #, c-format
  1170. msgid "Unable to listen on %s because IPv6 is disabled"
  1171. msgstr ""
  1172. #: src/client/game.cpp
  1173. msgid "Unlimited viewing range disabled"
  1174. msgstr ""
  1175. #: src/client/game.cpp
  1176. msgid "Unlimited viewing range enabled"
  1177. msgstr ""
  1178. #: src/client/game.cpp
  1179. msgid "Unlimited viewing range enabled, but forbidden by game or mod"
  1180. msgstr ""
  1181. #: src/client/game.cpp
  1182. #, c-format
  1183. msgid "Viewing changed to %d (the minimum)"
  1184. msgstr ""
  1185. #: src/client/game.cpp
  1186. #, c-format
  1187. msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod"
  1188. msgstr ""
  1189. #: src/client/game.cpp
  1190. #, c-format
  1191. msgid "Viewing range changed to %d"
  1192. msgstr ""
  1193. #: src/client/game.cpp
  1194. #, c-format
  1195. msgid "Viewing range changed to %d (the maximum)"
  1196. msgstr ""
  1197. #: src/client/game.cpp
  1198. #, c-format
  1199. msgid ""
  1200. "Viewing range changed to %d (the maximum), but limited to %d by game or mod"
  1201. msgstr ""
  1202. #: src/client/game.cpp
  1203. #, c-format
  1204. msgid "Viewing range changed to %d, but limited to %d by game or mod"
  1205. msgstr ""
  1206. #: src/client/game.cpp
  1207. #, c-format
  1208. msgid "Volume changed to %d%%"
  1209. msgstr ""
  1210. #: src/client/game.cpp
  1211. msgid "Wireframe shown"
  1212. msgstr ""
  1213. #: src/client/game.cpp
  1214. msgid "Zoom currently disabled by game or mod"
  1215. msgstr ""
  1216. #: src/client/game.cpp
  1217. msgid "ok"
  1218. msgstr "iawn"
  1219. #: src/client/gameui.cpp
  1220. msgid "Chat currently disabled by game or mod"
  1221. msgstr ""
  1222. #: src/client/gameui.cpp
  1223. msgid "Chat hidden"
  1224. msgstr ""
  1225. #: src/client/gameui.cpp
  1226. msgid "Chat shown"
  1227. msgstr ""
  1228. #: src/client/gameui.cpp
  1229. msgid "HUD hidden"
  1230. msgstr ""
  1231. #: src/client/gameui.cpp
  1232. msgid "HUD shown"
  1233. msgstr ""
  1234. #: src/client/gameui.cpp
  1235. msgid "Profiler hidden"
  1236. msgstr ""
  1237. #: src/client/gameui.cpp
  1238. #, c-format
  1239. msgid "Profiler shown (page %d of %d)"
  1240. msgstr ""
  1241. #: src/client/keycode.cpp
  1242. msgid "Apps"
  1243. msgstr "Apiau"
  1244. #: src/client/keycode.cpp
  1245. msgid "Backspace"
  1246. msgstr "Backspace"
  1247. #. ~ Usually paired with the Pause key
  1248. #: src/client/keycode.cpp
  1249. msgid "Break Key"
  1250. msgstr ""
  1251. #: src/client/keycode.cpp
  1252. msgid "Caps Lock"
  1253. msgstr ""
  1254. #: src/client/keycode.cpp
  1255. #, fuzzy
  1256. msgid "Clear Key"
  1257. msgstr "Clirio"
  1258. #: src/client/keycode.cpp
  1259. #, fuzzy
  1260. msgid "Control Key"
  1261. msgstr "Control"
  1262. #: src/client/keycode.cpp
  1263. #, fuzzy
  1264. msgid "Delete Key"
  1265. msgstr "Dileu"
  1266. #: src/client/keycode.cpp
  1267. msgid "Down Arrow"
  1268. msgstr ""
  1269. #: src/client/keycode.cpp
  1270. msgid "End"
  1271. msgstr "End"
  1272. #: src/client/keycode.cpp
  1273. msgid "Erase EOF"
  1274. msgstr ""
  1275. #: src/client/keycode.cpp
  1276. msgid "Execute"
  1277. msgstr "Cyflawni"
  1278. #: src/client/keycode.cpp
  1279. msgid "Help"
  1280. msgstr "Cymorth"
  1281. #: src/client/keycode.cpp
  1282. msgid "Home"
  1283. msgstr "Home"
  1284. #: src/client/keycode.cpp
  1285. msgid "IME Accept"
  1286. msgstr ""
  1287. #: src/client/keycode.cpp
  1288. msgid "IME Convert"
  1289. msgstr ""
  1290. #: src/client/keycode.cpp
  1291. msgid "IME Escape"
  1292. msgstr ""
  1293. #: src/client/keycode.cpp
  1294. msgid "IME Mode Change"
  1295. msgstr ""
  1296. #: src/client/keycode.cpp
  1297. msgid "IME Nonconvert"
  1298. msgstr ""
  1299. #: src/client/keycode.cpp
  1300. msgid "Insert"
  1301. msgstr "Mewnosod"
  1302. #: src/client/keycode.cpp
  1303. msgid "Left Arrow"
  1304. msgstr ""
  1305. #: src/client/keycode.cpp
  1306. msgid "Left Button"
  1307. msgstr ""
  1308. #: src/client/keycode.cpp
  1309. msgid "Left Control"
  1310. msgstr ""
  1311. #: src/client/keycode.cpp
  1312. msgid "Left Menu"
  1313. msgstr ""
  1314. #: src/client/keycode.cpp
  1315. msgid "Left Shift"
  1316. msgstr ""
  1317. #: src/client/keycode.cpp
  1318. msgid "Left Windows"
  1319. msgstr ""
  1320. #. ~ Key name, common on Windows keyboards
  1321. #: src/client/keycode.cpp
  1322. #, fuzzy
  1323. msgid "Menu Key"
  1324. msgstr "Menu"
  1325. #: src/client/keycode.cpp
  1326. msgid "Middle Button"
  1327. msgstr ""
  1328. #: src/client/keycode.cpp
  1329. msgid "Num Lock"
  1330. msgstr ""
  1331. #: src/client/keycode.cpp
  1332. msgid "Numpad *"
  1333. msgstr ""
  1334. #: src/client/keycode.cpp
  1335. msgid "Numpad +"
  1336. msgstr ""
  1337. #: src/client/keycode.cpp
  1338. msgid "Numpad -"
  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 0"
  1348. msgstr ""
  1349. #: src/client/keycode.cpp
  1350. msgid "Numpad 1"
  1351. msgstr ""
  1352. #: src/client/keycode.cpp
  1353. msgid "Numpad 2"
  1354. msgstr ""
  1355. #: src/client/keycode.cpp
  1356. msgid "Numpad 3"
  1357. msgstr ""
  1358. #: src/client/keycode.cpp
  1359. msgid "Numpad 4"
  1360. msgstr ""
  1361. #: src/client/keycode.cpp
  1362. msgid "Numpad 5"
  1363. msgstr ""
  1364. #: src/client/keycode.cpp
  1365. msgid "Numpad 6"
  1366. msgstr ""
  1367. #: src/client/keycode.cpp
  1368. msgid "Numpad 7"
  1369. msgstr ""
  1370. #: src/client/keycode.cpp
  1371. msgid "Numpad 8"
  1372. msgstr ""
  1373. #: src/client/keycode.cpp
  1374. msgid "Numpad 9"
  1375. msgstr ""
  1376. #: src/client/keycode.cpp
  1377. msgid "OEM Clear"
  1378. msgstr ""
  1379. #: src/client/keycode.cpp
  1380. #, fuzzy
  1381. msgid "Page Down"
  1382. msgstr "I lawr"
  1383. #: src/client/keycode.cpp
  1384. msgid "Page Up"
  1385. msgstr ""
  1386. #. ~ Usually paired with the Break key
  1387. #: src/client/keycode.cpp
  1388. #, fuzzy
  1389. msgid "Pause Key"
  1390. msgstr "Pause"
  1391. #: src/client/keycode.cpp
  1392. msgid "Play"
  1393. msgstr "Chwarae"
  1394. #. ~ "Print screen" key
  1395. #: src/client/keycode.cpp
  1396. msgid "Print"
  1397. msgstr "Print"
  1398. #: src/client/keycode.cpp
  1399. #, fuzzy
  1400. msgid "Return Key"
  1401. msgstr "Return"
  1402. #: src/client/keycode.cpp
  1403. #, fuzzy
  1404. msgid "Right Arrow"
  1405. msgstr "Dde"
  1406. #: src/client/keycode.cpp
  1407. msgid "Right Button"
  1408. msgstr ""
  1409. #: src/client/keycode.cpp
  1410. msgid "Right Control"
  1411. msgstr ""
  1412. #: src/client/keycode.cpp
  1413. msgid "Right Menu"
  1414. msgstr ""
  1415. #: src/client/keycode.cpp
  1416. msgid "Right Shift"
  1417. msgstr ""
  1418. #: src/client/keycode.cpp
  1419. msgid "Right Windows"
  1420. msgstr ""
  1421. #: src/client/keycode.cpp
  1422. msgid "Scroll Lock"
  1423. msgstr ""
  1424. #. ~ Key name
  1425. #: src/client/keycode.cpp
  1426. msgid "Select"
  1427. msgstr "Select"
  1428. #: src/client/keycode.cpp
  1429. #, fuzzy
  1430. msgid "Shift Key"
  1431. msgstr "Shift"
  1432. #: src/client/keycode.cpp
  1433. msgid "Sleep"
  1434. msgstr "Cysgu"
  1435. #: src/client/keycode.cpp
  1436. msgid "Snapshot"
  1437. msgstr "Sgrinlun"
  1438. #: src/client/keycode.cpp
  1439. msgid "Space"
  1440. msgstr "Space"
  1441. #: src/client/keycode.cpp
  1442. msgid "Tab"
  1443. msgstr "Tab"
  1444. #: src/client/keycode.cpp
  1445. msgid "Up Arrow"
  1446. msgstr ""
  1447. #: src/client/keycode.cpp
  1448. msgid "X Button 1"
  1449. msgstr ""
  1450. #: src/client/keycode.cpp
  1451. msgid "X Button 2"
  1452. msgstr ""
  1453. #: src/client/keycode.cpp
  1454. #, fuzzy
  1455. msgid "Zoom Key"
  1456. msgstr "Chwyddo"
  1457. #: src/client/minimap.cpp
  1458. msgid "Minimap hidden"
  1459. msgstr ""
  1460. #: src/client/minimap.cpp
  1461. #, c-format
  1462. msgid "Minimap in radar mode, Zoom x%d"
  1463. msgstr ""
  1464. #: src/client/minimap.cpp
  1465. #, c-format
  1466. msgid "Minimap in surface mode, Zoom x%d"
  1467. msgstr ""
  1468. #: src/client/minimap.cpp
  1469. msgid "Minimap in texture mode"
  1470. msgstr ""
  1471. #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3"
  1472. #: src/content/mod_configuration.cpp
  1473. #, c-format
  1474. msgid "%s is missing:"
  1475. msgstr ""
  1476. #: src/content/mod_configuration.cpp
  1477. msgid ""
  1478. "Install and enable the required mods, or disable the mods causing errors."
  1479. msgstr ""
  1480. #: src/content/mod_configuration.cpp
  1481. msgid ""
  1482. "Note: this may be caused by a dependency cycle, in which case try updating "
  1483. "the mods."
  1484. msgstr ""
  1485. #: src/content/mod_configuration.cpp
  1486. msgid "Some mods have unsatisfied dependencies:"
  1487. msgstr ""
  1488. #: src/gui/guiChatConsole.cpp
  1489. msgid "Failed to open webpage"
  1490. msgstr ""
  1491. #: src/gui/guiChatConsole.cpp
  1492. msgid "Opening webpage"
  1493. msgstr ""
  1494. #: src/gui/guiFormSpecMenu.cpp
  1495. msgid "Proceed"
  1496. msgstr "Ymlaen"
  1497. #: src/gui/guiKeyChangeMenu.cpp
  1498. msgid "\"Aux1\" = climb down"
  1499. msgstr ""
  1500. #: src/gui/guiKeyChangeMenu.cpp
  1501. #, fuzzy
  1502. msgid "Autoforward"
  1503. msgstr "Awto-gerdded"
  1504. #: src/gui/guiKeyChangeMenu.cpp src/settings_translation_file.cpp
  1505. msgid "Automatic jumping"
  1506. msgstr ""
  1507. #: src/gui/guiKeyChangeMenu.cpp
  1508. msgid "Aux1"
  1509. msgstr "Aux1"
  1510. #: src/gui/guiKeyChangeMenu.cpp
  1511. msgid "Backward"
  1512. msgstr "Bacio"
  1513. #: src/gui/guiKeyChangeMenu.cpp
  1514. msgid "Block bounds"
  1515. msgstr ""
  1516. #: src/gui/guiKeyChangeMenu.cpp
  1517. msgid "Change camera"
  1518. msgstr ""
  1519. #: src/gui/guiKeyChangeMenu.cpp
  1520. msgid "Command"
  1521. msgstr "Gorchymyn"
  1522. #: src/gui/guiKeyChangeMenu.cpp
  1523. msgid "Console"
  1524. msgstr "Consol"
  1525. #: src/gui/guiKeyChangeMenu.cpp
  1526. msgid "Dec. range"
  1527. msgstr ""
  1528. #: src/gui/guiKeyChangeMenu.cpp
  1529. msgid "Dec. volume"
  1530. msgstr ""
  1531. #: src/gui/guiKeyChangeMenu.cpp
  1532. msgid "Double tap \"jump\" to toggle fly"
  1533. msgstr ""
  1534. #: src/gui/guiKeyChangeMenu.cpp
  1535. msgid "Drop"
  1536. msgstr "Gollwng"
  1537. #: src/gui/guiKeyChangeMenu.cpp
  1538. msgid "Forward"
  1539. msgstr "Ymlaen"
  1540. #: src/gui/guiKeyChangeMenu.cpp
  1541. msgid "Inc. range"
  1542. msgstr ""
  1543. #: src/gui/guiKeyChangeMenu.cpp
  1544. msgid "Inc. volume"
  1545. msgstr ""
  1546. #: src/gui/guiKeyChangeMenu.cpp
  1547. msgid "Inventory"
  1548. msgstr "Rhestr Eiddo"
  1549. #: src/gui/guiKeyChangeMenu.cpp
  1550. msgid "Jump"
  1551. msgstr "Neidio"
  1552. #: src/gui/guiKeyChangeMenu.cpp
  1553. msgid "Key already in use"
  1554. msgstr ""
  1555. #: src/gui/guiKeyChangeMenu.cpp
  1556. msgid "Keybindings."
  1557. msgstr "Bysellau brys."
  1558. #: src/gui/guiKeyChangeMenu.cpp
  1559. msgid "Left"
  1560. msgstr "Chwith"
  1561. #: src/gui/guiKeyChangeMenu.cpp
  1562. msgid "Local command"
  1563. msgstr ""
  1564. #: src/gui/guiKeyChangeMenu.cpp
  1565. msgid "Mute"
  1566. msgstr "Anwybyddu"
  1567. #: src/gui/guiKeyChangeMenu.cpp
  1568. msgid "Next item"
  1569. msgstr ""
  1570. #: src/gui/guiKeyChangeMenu.cpp
  1571. msgid "Prev. item"
  1572. msgstr ""
  1573. #: src/gui/guiKeyChangeMenu.cpp
  1574. msgid "Range select"
  1575. msgstr ""
  1576. #: src/gui/guiKeyChangeMenu.cpp
  1577. msgid "Right"
  1578. msgstr "Dde"
  1579. #: src/gui/guiKeyChangeMenu.cpp
  1580. msgid "Screenshot"
  1581. msgstr "Sgrinlun"
  1582. #: src/gui/guiKeyChangeMenu.cpp
  1583. msgid "Sneak"
  1584. msgstr "Sleifio"
  1585. #: src/gui/guiKeyChangeMenu.cpp
  1586. msgid "Toggle HUD"
  1587. msgstr ""
  1588. #: src/gui/guiKeyChangeMenu.cpp
  1589. msgid "Toggle chat log"
  1590. msgstr ""
  1591. #: src/gui/guiKeyChangeMenu.cpp
  1592. msgid "Toggle fast"
  1593. msgstr ""
  1594. #: src/gui/guiKeyChangeMenu.cpp
  1595. msgid "Toggle fly"
  1596. msgstr ""
  1597. #: src/gui/guiKeyChangeMenu.cpp
  1598. msgid "Toggle fog"
  1599. msgstr ""
  1600. #: src/gui/guiKeyChangeMenu.cpp
  1601. msgid "Toggle minimap"
  1602. msgstr ""
  1603. #: src/gui/guiKeyChangeMenu.cpp
  1604. msgid "Toggle noclip"
  1605. msgstr ""
  1606. #: src/gui/guiKeyChangeMenu.cpp
  1607. msgid "Toggle pitchmove"
  1608. msgstr ""
  1609. #: src/gui/guiKeyChangeMenu.cpp
  1610. msgid "Zoom"
  1611. msgstr "Chwyddo"
  1612. #: src/gui/guiKeyChangeMenu.cpp
  1613. msgid "press key"
  1614. msgstr ""
  1615. #: src/gui/guiPasswordChange.cpp
  1616. msgid "Change"
  1617. msgstr "Newid"
  1618. #: src/gui/guiPasswordChange.cpp
  1619. msgid "New Password"
  1620. msgstr ""
  1621. #: src/gui/guiPasswordChange.cpp
  1622. msgid "Old Password"
  1623. msgstr ""
  1624. #: src/gui/guiPasswordChange.cpp
  1625. msgid "Passwords do not match!"
  1626. msgstr ""
  1627. #: src/gui/guiVolumeChange.cpp
  1628. msgid "Exit"
  1629. msgstr "Gadael"
  1630. #: src/gui/guiVolumeChange.cpp
  1631. msgid "Muted"
  1632. msgstr "Wedi anwybyddu"
  1633. #: src/gui/guiVolumeChange.cpp
  1634. #, c-format
  1635. msgid "Sound Volume: %d%%"
  1636. msgstr ""
  1637. #. ~ DO NOT TRANSLATE THIS LITERALLY!
  1638. #. This is a special string which needs to contain the translation's
  1639. #. language code (e.g. "de" for German).
  1640. #: src/network/clientpackethandler.cpp src/script/lua_api/l_client.cpp
  1641. msgid "LANG_CODE"
  1642. msgstr "cy"
  1643. #: src/network/clientpackethandler.cpp
  1644. msgid ""
  1645. "Name is not registered. To create an account on this server, click 'Register'"
  1646. msgstr ""
  1647. #: src/network/clientpackethandler.cpp
  1648. msgid "Name is taken. Please choose another name"
  1649. msgstr ""
  1650. #: src/server.cpp
  1651. #, fuzzy, c-format
  1652. msgid "%s while shutting down: "
  1653. msgstr "Wrthi'n cau..."
  1654. #: src/settings_translation_file.cpp
  1655. msgid ""
  1656. "(X,Y,Z) offset of fractal from world center in units of 'scale'.\n"
  1657. "Can be used to move a desired point to (0, 0) to create a\n"
  1658. "suitable spawn point, or to allow 'zooming in' on a desired\n"
  1659. "point by increasing 'scale'.\n"
  1660. "The default is tuned for a suitable spawn point for Mandelbrot\n"
  1661. "sets with default parameters, it may need altering in other\n"
  1662. "situations.\n"
  1663. "Range roughly -2 to 2. Multiply by 'scale' for offset in nodes."
  1664. msgstr ""
  1665. #: src/settings_translation_file.cpp
  1666. msgid ""
  1667. "(X,Y,Z) scale of fractal in nodes.\n"
  1668. "Actual fractal size will be 2 to 3 times larger.\n"
  1669. "These numbers can be made very large, the fractal does\n"
  1670. "not have to fit inside the world.\n"
  1671. "Increase these to 'zoom' into the detail of the fractal.\n"
  1672. "Default is for a vertically-squashed shape suitable for\n"
  1673. "an island, set all 3 numbers equal for the raw shape."
  1674. msgstr ""
  1675. #: src/settings_translation_file.cpp
  1676. msgid "2D noise that controls the shape/size of ridged mountains."
  1677. msgstr ""
  1678. #: src/settings_translation_file.cpp
  1679. msgid "2D noise that controls the shape/size of rolling hills."
  1680. msgstr ""
  1681. #: src/settings_translation_file.cpp
  1682. msgid "2D noise that controls the shape/size of step mountains."
  1683. msgstr ""
  1684. #: src/settings_translation_file.cpp
  1685. msgid "2D noise that controls the size/occurrence of ridged mountain ranges."
  1686. msgstr ""
  1687. #: src/settings_translation_file.cpp
  1688. msgid "2D noise that controls the size/occurrence of rolling hills."
  1689. msgstr ""
  1690. #: src/settings_translation_file.cpp
  1691. msgid "2D noise that controls the size/occurrence of step mountain ranges."
  1692. msgstr ""
  1693. #: src/settings_translation_file.cpp
  1694. msgid "2D noise that locates the river valleys and channels."
  1695. msgstr ""
  1696. #: src/settings_translation_file.cpp
  1697. msgid "3D"
  1698. msgstr ""
  1699. #: src/settings_translation_file.cpp
  1700. msgid "3D clouds"
  1701. msgstr ""
  1702. #: src/settings_translation_file.cpp
  1703. msgid "3D mode"
  1704. msgstr ""
  1705. #: src/settings_translation_file.cpp
  1706. msgid "3D mode parallax strength"
  1707. msgstr ""
  1708. #: src/settings_translation_file.cpp
  1709. msgid "3D noise defining giant caverns."
  1710. msgstr ""
  1711. #: src/settings_translation_file.cpp
  1712. msgid ""
  1713. "3D noise defining mountain structure and height.\n"
  1714. "Also defines structure of floatland mountain terrain."
  1715. msgstr ""
  1716. #: src/settings_translation_file.cpp
  1717. msgid ""
  1718. "3D noise defining structure of floatlands.\n"
  1719. "If altered from the default, the noise 'scale' (0.7 by default) may need\n"
  1720. "to be adjusted, as floatland tapering functions best when this noise has\n"
  1721. "a value range of approximately -2.0 to 2.0."
  1722. msgstr ""
  1723. #: src/settings_translation_file.cpp
  1724. msgid "3D noise defining structure of river canyon walls."
  1725. msgstr ""
  1726. #: src/settings_translation_file.cpp
  1727. msgid "3D noise defining terrain."
  1728. msgstr ""
  1729. #: src/settings_translation_file.cpp
  1730. msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations."
  1731. msgstr ""
  1732. #: src/settings_translation_file.cpp
  1733. msgid "3D noise that determines number of dungeons per mapchunk."
  1734. msgstr ""
  1735. #: src/settings_translation_file.cpp
  1736. msgid ""
  1737. "3D support.\n"
  1738. "Currently supported:\n"
  1739. "- none: no 3d output.\n"
  1740. "- anaglyph: cyan/magenta color 3d.\n"
  1741. "- interlaced: odd/even line based polarization screen support.\n"
  1742. "- topbottom: split screen top/bottom.\n"
  1743. "- sidebyside: split screen side by side.\n"
  1744. "- crossview: Cross-eyed 3d\n"
  1745. "Note that the interlaced mode requires shaders to be enabled."
  1746. msgstr ""
  1747. #: src/settings_translation_file.cpp
  1748. msgid ""
  1749. "A chosen map seed for a new map, leave empty for random.\n"
  1750. "Will be overridden when creating a new world in the main menu."
  1751. msgstr ""
  1752. #: src/settings_translation_file.cpp
  1753. msgid "A message to be displayed to all clients when the server crashes."
  1754. msgstr ""
  1755. #: src/settings_translation_file.cpp
  1756. msgid "A message to be displayed to all clients when the server shuts down."
  1757. msgstr ""
  1758. #: src/settings_translation_file.cpp
  1759. msgid "ABM interval"
  1760. msgstr ""
  1761. #: src/settings_translation_file.cpp
  1762. msgid "ABM time budget"
  1763. msgstr ""
  1764. #: src/settings_translation_file.cpp
  1765. msgid "Absolute limit of queued blocks to emerge"
  1766. msgstr ""
  1767. #: src/settings_translation_file.cpp
  1768. msgid "Acceleration in air"
  1769. msgstr ""
  1770. #: src/settings_translation_file.cpp
  1771. msgid "Acceleration of gravity, in nodes per second per second."
  1772. msgstr ""
  1773. #: src/settings_translation_file.cpp
  1774. msgid "Active Block Modifiers"
  1775. msgstr ""
  1776. #: src/settings_translation_file.cpp
  1777. msgid "Active block management interval"
  1778. msgstr ""
  1779. #: src/settings_translation_file.cpp
  1780. msgid "Active block range"
  1781. msgstr ""
  1782. #: src/settings_translation_file.cpp
  1783. msgid "Active object send range"
  1784. msgstr ""
  1785. #: src/settings_translation_file.cpp
  1786. msgid "Adds particles when digging a node."
  1787. msgstr ""
  1788. #: src/settings_translation_file.cpp
  1789. msgid ""
  1790. "Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k "
  1791. "screens."
  1792. msgstr ""
  1793. #: src/settings_translation_file.cpp
  1794. msgid "Adjust the detected display density, used for scaling UI elements."
  1795. msgstr ""
  1796. #: src/settings_translation_file.cpp
  1797. #, c-format
  1798. msgid ""
  1799. "Adjusts the density of the floatland layer.\n"
  1800. "Increase value to increase density. Can be positive or negative.\n"
  1801. "Value = 0.0: 50% of volume is floatland.\n"
  1802. "Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n"
  1803. "to be sure) creates a solid floatland layer."
  1804. msgstr ""
  1805. #: src/settings_translation_file.cpp
  1806. msgid "Admin name"
  1807. msgstr ""
  1808. #: src/settings_translation_file.cpp
  1809. msgid "Advanced"
  1810. msgstr "Uwch"
  1811. #: src/settings_translation_file.cpp
  1812. msgid ""
  1813. "Alters the light curve by applying 'gamma correction' to it.\n"
  1814. "Higher values make middle and lower light levels brighter.\n"
  1815. "Value '1.0' leaves the light curve unaltered.\n"
  1816. "This only has significant effect on daylight and artificial\n"
  1817. "light, it has very little effect on natural night light."
  1818. msgstr ""
  1819. #: src/settings_translation_file.cpp
  1820. msgid "Always fly fast"
  1821. msgstr ""
  1822. #: src/settings_translation_file.cpp
  1823. msgid "Ambient occlusion gamma"
  1824. msgstr ""
  1825. #: src/settings_translation_file.cpp
  1826. msgid "Amplifies the valleys."
  1827. msgstr ""
  1828. #: src/settings_translation_file.cpp
  1829. msgid "Anisotropic filtering"
  1830. msgstr ""
  1831. #: src/settings_translation_file.cpp
  1832. msgid "Announce server"
  1833. msgstr ""
  1834. #: src/settings_translation_file.cpp
  1835. msgid "Announce to this serverlist."
  1836. msgstr ""
  1837. #: src/settings_translation_file.cpp
  1838. msgid "Anti-aliasing scale"
  1839. msgstr ""
  1840. #: src/settings_translation_file.cpp
  1841. msgid "Antialiasing method"
  1842. msgstr ""
  1843. #: src/settings_translation_file.cpp
  1844. msgid "Append item name"
  1845. msgstr ""
  1846. #: src/settings_translation_file.cpp
  1847. msgid "Append item name to tooltip."
  1848. msgstr ""
  1849. #: src/settings_translation_file.cpp
  1850. msgid "Apple trees noise"
  1851. msgstr ""
  1852. #: src/settings_translation_file.cpp
  1853. msgid "Arm inertia"
  1854. msgstr ""
  1855. #: src/settings_translation_file.cpp
  1856. msgid ""
  1857. "Arm inertia, gives a more realistic movement of\n"
  1858. "the arm when the camera moves."
  1859. msgstr ""
  1860. #: src/settings_translation_file.cpp
  1861. msgid "Ask to reconnect after crash"
  1862. msgstr ""
  1863. #: src/settings_translation_file.cpp
  1864. msgid ""
  1865. "At this distance the server will aggressively optimize which blocks are sent "
  1866. "to\n"
  1867. "clients.\n"
  1868. "Small values potentially improve performance a lot, at the expense of "
  1869. "visible\n"
  1870. "rendering glitches (some blocks will not be rendered under water and in "
  1871. "caves,\n"
  1872. "as well as sometimes on land).\n"
  1873. "Setting this to a value greater than max_block_send_distance disables this\n"
  1874. "optimization.\n"
  1875. "Stated in mapblocks (16 nodes)."
  1876. msgstr ""
  1877. #: src/settings_translation_file.cpp
  1878. msgid "Audio"
  1879. msgstr "Sain"
  1880. #: src/settings_translation_file.cpp
  1881. msgid "Automatically jump up single-node obstacles."
  1882. msgstr ""
  1883. #: src/settings_translation_file.cpp
  1884. msgid "Automatically report to the serverlist."
  1885. msgstr ""
  1886. #: src/settings_translation_file.cpp
  1887. msgid "Autoscaling mode"
  1888. msgstr ""
  1889. #: src/settings_translation_file.cpp
  1890. msgid "Aux1 key for climbing/descending"
  1891. msgstr ""
  1892. #: src/settings_translation_file.cpp
  1893. msgid "Base ground level"
  1894. msgstr ""
  1895. #: src/settings_translation_file.cpp
  1896. msgid "Base terrain height."
  1897. msgstr ""
  1898. #: src/settings_translation_file.cpp
  1899. msgid "Base texture size"
  1900. msgstr ""
  1901. #: src/settings_translation_file.cpp
  1902. msgid "Basic privileges"
  1903. msgstr ""
  1904. #: src/settings_translation_file.cpp
  1905. msgid "Beach noise"
  1906. msgstr ""
  1907. #: src/settings_translation_file.cpp
  1908. msgid "Beach noise threshold"
  1909. msgstr ""
  1910. #: src/settings_translation_file.cpp
  1911. msgid "Bilinear filtering"
  1912. msgstr ""
  1913. #: src/settings_translation_file.cpp
  1914. msgid "Bind address"
  1915. msgstr ""
  1916. #: src/settings_translation_file.cpp
  1917. #, fuzzy
  1918. msgid "Biome API"
  1919. msgstr "Bïomau"
  1920. #: src/settings_translation_file.cpp
  1921. msgid "Biome noise"
  1922. msgstr ""
  1923. #: src/settings_translation_file.cpp
  1924. msgid "Block send optimize distance"
  1925. msgstr ""
  1926. #: src/settings_translation_file.cpp
  1927. msgid "Bloom"
  1928. msgstr ""
  1929. #: src/settings_translation_file.cpp
  1930. msgid "Bloom Intensity"
  1931. msgstr ""
  1932. #: src/settings_translation_file.cpp
  1933. msgid "Bloom Radius"
  1934. msgstr ""
  1935. #: src/settings_translation_file.cpp
  1936. msgid "Bloom Strength Factor"
  1937. msgstr ""
  1938. #: src/settings_translation_file.cpp
  1939. msgid "Bobbing"
  1940. msgstr "Neidio"
  1941. #: src/settings_translation_file.cpp
  1942. msgid "Bold and italic font path"
  1943. msgstr ""
  1944. #: src/settings_translation_file.cpp
  1945. msgid "Bold and italic monospace font path"
  1946. msgstr ""
  1947. #: src/settings_translation_file.cpp
  1948. msgid "Bold font path"
  1949. msgstr ""
  1950. #: src/settings_translation_file.cpp
  1951. msgid "Bold monospace font path"
  1952. msgstr ""
  1953. #: src/settings_translation_file.cpp
  1954. msgid "Build inside player"
  1955. msgstr ""
  1956. #: src/settings_translation_file.cpp
  1957. msgid "Builtin"
  1958. msgstr "Mewnol"
  1959. #: src/settings_translation_file.cpp
  1960. msgid "Camera"
  1961. msgstr "Camera"
  1962. #: src/settings_translation_file.cpp
  1963. msgid "Camera smoothing"
  1964. msgstr ""
  1965. #: src/settings_translation_file.cpp
  1966. msgid "Camera smoothing in cinematic mode"
  1967. msgstr ""
  1968. #: src/settings_translation_file.cpp
  1969. msgid "Cave noise"
  1970. msgstr ""
  1971. #: src/settings_translation_file.cpp
  1972. msgid "Cave noise #1"
  1973. msgstr ""
  1974. #: src/settings_translation_file.cpp
  1975. msgid "Cave noise #2"
  1976. msgstr ""
  1977. #: src/settings_translation_file.cpp
  1978. msgid "Cave width"
  1979. msgstr ""
  1980. #: src/settings_translation_file.cpp
  1981. msgid "Cave1 noise"
  1982. msgstr ""
  1983. #: src/settings_translation_file.cpp
  1984. msgid "Cave2 noise"
  1985. msgstr ""
  1986. #: src/settings_translation_file.cpp
  1987. msgid "Cavern limit"
  1988. msgstr ""
  1989. #: src/settings_translation_file.cpp
  1990. msgid "Cavern noise"
  1991. msgstr ""
  1992. #: src/settings_translation_file.cpp
  1993. msgid "Cavern taper"
  1994. msgstr ""
  1995. #: src/settings_translation_file.cpp
  1996. msgid "Cavern threshold"
  1997. msgstr ""
  1998. #: src/settings_translation_file.cpp
  1999. msgid "Cavern upper limit"
  2000. msgstr ""
  2001. #: src/settings_translation_file.cpp
  2002. msgid ""
  2003. "Center of light curve boost range.\n"
  2004. "Where 0.0 is minimum light level, 1.0 is maximum light level."
  2005. msgstr ""
  2006. #: src/settings_translation_file.cpp
  2007. msgid "Chat command time message threshold"
  2008. msgstr ""
  2009. #: src/settings_translation_file.cpp
  2010. msgid "Chat commands"
  2011. msgstr ""
  2012. #: src/settings_translation_file.cpp
  2013. msgid "Chat font size"
  2014. msgstr ""
  2015. #: src/settings_translation_file.cpp
  2016. msgid "Chat log level"
  2017. msgstr ""
  2018. #: src/settings_translation_file.cpp
  2019. msgid "Chat message count limit"
  2020. msgstr ""
  2021. #: src/settings_translation_file.cpp
  2022. msgid "Chat message format"
  2023. msgstr ""
  2024. #: src/settings_translation_file.cpp
  2025. msgid "Chat message kick threshold"
  2026. msgstr ""
  2027. #: src/settings_translation_file.cpp
  2028. msgid "Chat message max length"
  2029. msgstr ""
  2030. #: src/settings_translation_file.cpp
  2031. msgid "Chat weblinks"
  2032. msgstr ""
  2033. #: src/settings_translation_file.cpp
  2034. msgid "Chunk size"
  2035. msgstr ""
  2036. #: src/settings_translation_file.cpp
  2037. msgid ""
  2038. "Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console "
  2039. "output."
  2040. msgstr ""
  2041. #: src/settings_translation_file.cpp
  2042. msgid "Client"
  2043. msgstr "Cleient"
  2044. #: src/settings_translation_file.cpp
  2045. msgid "Client Mesh Chunksize"
  2046. msgstr ""
  2047. #: src/settings_translation_file.cpp
  2048. msgid "Client and Server"
  2049. msgstr ""
  2050. #: src/settings_translation_file.cpp
  2051. msgid "Client modding"
  2052. msgstr ""
  2053. #: src/settings_translation_file.cpp
  2054. msgid "Client side modding restrictions"
  2055. msgstr ""
  2056. #: src/settings_translation_file.cpp
  2057. msgid "Client-side Modding"
  2058. msgstr ""
  2059. #: src/settings_translation_file.cpp
  2060. msgid "Client-side node lookup range restriction"
  2061. msgstr ""
  2062. #: src/settings_translation_file.cpp
  2063. msgid "Climbing speed"
  2064. msgstr ""
  2065. #: src/settings_translation_file.cpp
  2066. msgid "Cloud radius"
  2067. msgstr ""
  2068. #: src/settings_translation_file.cpp
  2069. msgid "Clouds"
  2070. msgstr "Cymylau"
  2071. #: src/settings_translation_file.cpp
  2072. msgid "Clouds are a client-side effect."
  2073. msgstr ""
  2074. #: src/settings_translation_file.cpp
  2075. msgid "Clouds in menu"
  2076. msgstr ""
  2077. #: src/settings_translation_file.cpp
  2078. msgid "Colored fog"
  2079. msgstr ""
  2080. #: src/settings_translation_file.cpp
  2081. msgid "Colored shadows"
  2082. msgstr ""
  2083. #: src/settings_translation_file.cpp
  2084. msgid ""
  2085. "Comma-separated list of flags to hide in the content repository.\n"
  2086. "\"nonfree\" can be used to hide packages which do not qualify as 'free "
  2087. "software',\n"
  2088. "as defined by the Free Software Foundation.\n"
  2089. "You can also specify content ratings.\n"
  2090. "These flags are independent from Minetest versions,\n"
  2091. "so see a full list at https://content.minetest.net/help/content_flags/"
  2092. msgstr ""
  2093. #: src/settings_translation_file.cpp
  2094. msgid ""
  2095. "Comma-separated list of mods that are allowed to access HTTP APIs, which\n"
  2096. "allow them to upload and download data to/from the internet."
  2097. msgstr ""
  2098. #: src/settings_translation_file.cpp
  2099. msgid ""
  2100. "Comma-separated list of trusted mods that are allowed to access insecure\n"
  2101. "functions even when mod security is on (via request_insecure_environment())."
  2102. msgstr ""
  2103. #: src/settings_translation_file.cpp
  2104. msgid ""
  2105. "Compression level to use when saving mapblocks to disk.\n"
  2106. "-1 - use default compression level\n"
  2107. "0 - least compression, fastest\n"
  2108. "9 - best compression, slowest"
  2109. msgstr ""
  2110. #: src/settings_translation_file.cpp
  2111. msgid ""
  2112. "Compression level to use when sending mapblocks to the client.\n"
  2113. "-1 - use default compression level\n"
  2114. "0 - least compression, fastest\n"
  2115. "9 - best compression, slowest"
  2116. msgstr ""
  2117. #: src/settings_translation_file.cpp
  2118. msgid "Connect glass"
  2119. msgstr ""
  2120. #: src/settings_translation_file.cpp
  2121. msgid "Connect to external media server"
  2122. msgstr ""
  2123. #: src/settings_translation_file.cpp
  2124. msgid "Connects glass if supported by node."
  2125. msgstr ""
  2126. #: src/settings_translation_file.cpp
  2127. msgid "Console alpha"
  2128. msgstr ""
  2129. #: src/settings_translation_file.cpp
  2130. msgid "Console color"
  2131. msgstr ""
  2132. #: src/settings_translation_file.cpp
  2133. msgid "Console height"
  2134. msgstr ""
  2135. #: src/settings_translation_file.cpp
  2136. msgid "Content Repository"
  2137. msgstr ""
  2138. #: src/settings_translation_file.cpp
  2139. msgid "ContentDB Flag Blacklist"
  2140. msgstr ""
  2141. #: src/settings_translation_file.cpp
  2142. msgid "ContentDB Max Concurrent Downloads"
  2143. msgstr ""
  2144. #: src/settings_translation_file.cpp
  2145. msgid "ContentDB URL"
  2146. msgstr ""
  2147. #: src/settings_translation_file.cpp
  2148. msgid ""
  2149. "Controls length of day/night cycle.\n"
  2150. "Examples:\n"
  2151. "72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged."
  2152. msgstr ""
  2153. #: src/settings_translation_file.cpp
  2154. msgid ""
  2155. "Controls sinking speed in liquid when idling. Negative values will cause\n"
  2156. "you to rise instead."
  2157. msgstr ""
  2158. #: src/settings_translation_file.cpp
  2159. msgid "Controls steepness/depth of lake depressions."
  2160. msgstr ""
  2161. #: src/settings_translation_file.cpp
  2162. msgid "Controls steepness/height of hills."
  2163. msgstr ""
  2164. #: src/settings_translation_file.cpp
  2165. msgid ""
  2166. "Controls width of tunnels, a smaller value creates wider tunnels.\n"
  2167. "Value >= 10.0 completely disables generation of tunnels and avoids the\n"
  2168. "intensive noise calculations."
  2169. msgstr ""
  2170. #: src/settings_translation_file.cpp
  2171. msgid "Crash message"
  2172. msgstr ""
  2173. #: src/settings_translation_file.cpp
  2174. msgid "Crosshair alpha"
  2175. msgstr ""
  2176. #: src/settings_translation_file.cpp
  2177. msgid ""
  2178. "Crosshair alpha (opaqueness, between 0 and 255).\n"
  2179. "This also applies to the object crosshair."
  2180. msgstr ""
  2181. #: src/settings_translation_file.cpp
  2182. msgid "Crosshair color"
  2183. msgstr ""
  2184. #: src/settings_translation_file.cpp
  2185. msgid ""
  2186. "Crosshair color (R,G,B).\n"
  2187. "Also controls the object crosshair color"
  2188. msgstr ""
  2189. #: src/settings_translation_file.cpp
  2190. msgid "DPI"
  2191. msgstr "DPI"
  2192. #: src/settings_translation_file.cpp
  2193. msgid "Debug log file size threshold"
  2194. msgstr ""
  2195. #: src/settings_translation_file.cpp
  2196. msgid "Debug log level"
  2197. msgstr ""
  2198. #: src/settings_translation_file.cpp
  2199. msgid "Debugging"
  2200. msgstr "Dadfygio"
  2201. #: src/settings_translation_file.cpp
  2202. msgid "Dedicated server step"
  2203. msgstr ""
  2204. #: src/settings_translation_file.cpp
  2205. msgid "Default acceleration"
  2206. msgstr ""
  2207. #: src/settings_translation_file.cpp
  2208. msgid ""
  2209. "Default maximum number of forceloaded mapblocks.\n"
  2210. "Set this to -1 to disable the limit."
  2211. msgstr ""
  2212. #: src/settings_translation_file.cpp
  2213. msgid "Default password"
  2214. msgstr ""
  2215. #: src/settings_translation_file.cpp
  2216. msgid "Default privileges"
  2217. msgstr ""
  2218. #: src/settings_translation_file.cpp
  2219. msgid "Default report format"
  2220. msgstr ""
  2221. #: src/settings_translation_file.cpp
  2222. msgid "Default stack size"
  2223. msgstr ""
  2224. #: src/settings_translation_file.cpp
  2225. msgid ""
  2226. "Define shadow filtering quality.\n"
  2227. "This simulates the soft shadows effect by applying a PCF or Poisson disk\n"
  2228. "but also uses more resources."
  2229. msgstr ""
  2230. #: src/settings_translation_file.cpp
  2231. msgid "Defines areas where trees have apples."
  2232. msgstr ""
  2233. #: src/settings_translation_file.cpp
  2234. msgid "Defines areas with sandy beaches."
  2235. msgstr ""
  2236. #: src/settings_translation_file.cpp
  2237. msgid "Defines distribution of higher terrain and steepness of cliffs."
  2238. msgstr ""
  2239. #: src/settings_translation_file.cpp
  2240. msgid "Defines distribution of higher terrain."
  2241. msgstr ""
  2242. #: src/settings_translation_file.cpp
  2243. msgid "Defines full size of caverns, smaller values create larger caverns."
  2244. msgstr ""
  2245. #: src/settings_translation_file.cpp
  2246. msgid ""
  2247. "Defines how much bloom is applied to the rendered image\n"
  2248. "Smaller values make bloom more subtle\n"
  2249. "Range: from 0.01 to 1.0, default: 0.05"
  2250. msgstr ""
  2251. #: src/settings_translation_file.cpp
  2252. msgid "Defines large-scale river channel structure."
  2253. msgstr ""
  2254. #: src/settings_translation_file.cpp
  2255. msgid "Defines location and terrain of optional hills and lakes."
  2256. msgstr ""
  2257. #: src/settings_translation_file.cpp
  2258. msgid "Defines the base ground level."
  2259. msgstr ""
  2260. #: src/settings_translation_file.cpp
  2261. msgid "Defines the depth of the river channel."
  2262. msgstr ""
  2263. #: src/settings_translation_file.cpp
  2264. msgid ""
  2265. "Defines the magnitude of bloom overexposure.\n"
  2266. "Range: from 0.1 to 10.0, default: 1.0"
  2267. msgstr ""
  2268. #: src/settings_translation_file.cpp
  2269. msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)."
  2270. msgstr ""
  2271. #: src/settings_translation_file.cpp
  2272. msgid ""
  2273. "Defines the size of the sampling grid for FSAA and SSAA antialiasing "
  2274. "methods.\n"
  2275. "Value of 2 means taking 2x2 = 4 samples."
  2276. msgstr ""
  2277. #: src/settings_translation_file.cpp
  2278. msgid "Defines the width of the river channel."
  2279. msgstr ""
  2280. #: src/settings_translation_file.cpp
  2281. msgid "Defines the width of the river valley."
  2282. msgstr ""
  2283. #: src/settings_translation_file.cpp
  2284. msgid "Defines tree areas and tree density."
  2285. msgstr ""
  2286. #: src/settings_translation_file.cpp
  2287. msgid ""
  2288. "Delay between mesh updates on the client in ms. Increasing this will slow\n"
  2289. "down the rate of mesh updates, thus reducing jitter on slower clients."
  2290. msgstr ""
  2291. #: src/settings_translation_file.cpp
  2292. msgid "Delay in sending blocks after building"
  2293. msgstr ""
  2294. #: src/settings_translation_file.cpp
  2295. msgid "Delay showing tooltips, stated in milliseconds."
  2296. msgstr ""
  2297. #: src/settings_translation_file.cpp
  2298. msgid "Deprecated Lua API handling"
  2299. msgstr ""
  2300. #: src/settings_translation_file.cpp
  2301. msgid "Depth below which you'll find giant caverns."
  2302. msgstr ""
  2303. #: src/settings_translation_file.cpp
  2304. msgid "Depth below which you'll find large caves."
  2305. msgstr ""
  2306. #: src/settings_translation_file.cpp
  2307. msgid ""
  2308. "Description of server, to be displayed when players join and in the "
  2309. "serverlist."
  2310. msgstr ""
  2311. #: src/settings_translation_file.cpp
  2312. msgid "Desert noise threshold"
  2313. msgstr ""
  2314. #: src/settings_translation_file.cpp
  2315. msgid ""
  2316. "Deserts occur when np_biome exceeds this value.\n"
  2317. "When the 'snowbiomes' flag is enabled, this is ignored."
  2318. msgstr ""
  2319. #: src/settings_translation_file.cpp
  2320. msgid "Desynchronize block animation"
  2321. msgstr ""
  2322. #: src/settings_translation_file.cpp
  2323. msgid "Developer Options"
  2324. msgstr ""
  2325. #: src/settings_translation_file.cpp
  2326. msgid "Digging particles"
  2327. msgstr ""
  2328. #: src/settings_translation_file.cpp
  2329. msgid "Disable anticheat"
  2330. msgstr ""
  2331. #: src/settings_translation_file.cpp
  2332. msgid "Disallow empty passwords"
  2333. msgstr ""
  2334. #: src/settings_translation_file.cpp
  2335. msgid "Display Density Scaling Factor"
  2336. msgstr ""
  2337. #: src/settings_translation_file.cpp
  2338. msgid ""
  2339. "Distance in nodes at which transparency depth sorting is enabled\n"
  2340. "Use this to limit the performance impact of transparency depth sorting"
  2341. msgstr ""
  2342. #: src/settings_translation_file.cpp
  2343. msgid "Domain name of server, to be displayed in the serverlist."
  2344. msgstr ""
  2345. #: src/settings_translation_file.cpp
  2346. msgid "Double tap jump for fly"
  2347. msgstr ""
  2348. #: src/settings_translation_file.cpp
  2349. msgid "Double-tapping the jump key toggles fly mode."
  2350. msgstr ""
  2351. #: src/settings_translation_file.cpp
  2352. msgid "Dump the mapgen debug information."
  2353. msgstr ""
  2354. #: src/settings_translation_file.cpp
  2355. msgid "Dungeon maximum Y"
  2356. msgstr ""
  2357. #: src/settings_translation_file.cpp
  2358. msgid "Dungeon minimum Y"
  2359. msgstr ""
  2360. #: src/settings_translation_file.cpp
  2361. msgid "Dungeon noise"
  2362. msgstr ""
  2363. #: src/settings_translation_file.cpp
  2364. msgid "Enable Automatic Exposure"
  2365. msgstr ""
  2366. #: src/settings_translation_file.cpp
  2367. msgid "Enable Bloom"
  2368. msgstr ""
  2369. #: src/settings_translation_file.cpp
  2370. msgid "Enable Bloom Debug"
  2371. msgstr ""
  2372. #: src/settings_translation_file.cpp
  2373. msgid ""
  2374. "Enable IPv6 support (for both client and server).\n"
  2375. "Required for IPv6 connections to work at all."
  2376. msgstr ""
  2377. #: src/settings_translation_file.cpp
  2378. msgid ""
  2379. "Enable Lua modding support on client.\n"
  2380. "This support is experimental and API can change."
  2381. msgstr ""
  2382. #: src/settings_translation_file.cpp
  2383. msgid ""
  2384. "Enable Poisson disk filtering.\n"
  2385. "On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF "
  2386. "filtering."
  2387. msgstr ""
  2388. #: src/settings_translation_file.cpp
  2389. msgid "Enable Raytraced Culling"
  2390. msgstr ""
  2391. #: src/settings_translation_file.cpp
  2392. msgid ""
  2393. "Enable automatic exposure correction\n"
  2394. "When enabled, the post-processing engine will\n"
  2395. "automatically adjust to the brightness of the scene,\n"
  2396. "simulating the behavior of human eye."
  2397. msgstr ""
  2398. #: src/settings_translation_file.cpp
  2399. msgid ""
  2400. "Enable colored shadows.\n"
  2401. "On true translucent nodes cast colored shadows. This is expensive."
  2402. msgstr ""
  2403. #: src/settings_translation_file.cpp
  2404. msgid "Enable console window"
  2405. msgstr ""
  2406. #: src/settings_translation_file.cpp
  2407. msgid "Enable joysticks"
  2408. msgstr ""
  2409. #: src/settings_translation_file.cpp
  2410. msgid "Enable joysticks. Requires a restart to take effect"
  2411. msgstr ""
  2412. #: src/settings_translation_file.cpp
  2413. msgid "Enable mod channels support."
  2414. msgstr ""
  2415. #: src/settings_translation_file.cpp
  2416. msgid "Enable mod security"
  2417. msgstr ""
  2418. #: src/settings_translation_file.cpp
  2419. msgid "Enable mouse wheel (scroll) for item selection in hotbar."
  2420. msgstr ""
  2421. #: src/settings_translation_file.cpp
  2422. msgid "Enable random user input (only used for testing)."
  2423. msgstr ""
  2424. #: src/settings_translation_file.cpp
  2425. msgid ""
  2426. "Enable smooth lighting with simple ambient occlusion.\n"
  2427. "Disable for speed or for different looks."
  2428. msgstr ""
  2429. #: src/settings_translation_file.cpp
  2430. msgid "Enable split login/register"
  2431. msgstr ""
  2432. #: src/settings_translation_file.cpp
  2433. msgid ""
  2434. "Enable to disallow old clients from connecting.\n"
  2435. "Older clients are compatible in the sense that they will not crash when "
  2436. "connecting\n"
  2437. "to new servers, but they may not support all new features that you are "
  2438. "expecting."
  2439. msgstr ""
  2440. #: src/settings_translation_file.cpp
  2441. msgid ""
  2442. "Enable usage of remote media server (if provided by server).\n"
  2443. "Remote servers offer a significantly faster way to download media (e.g. "
  2444. "textures)\n"
  2445. "when connecting to the server."
  2446. msgstr ""
  2447. #: src/settings_translation_file.cpp
  2448. msgid ""
  2449. "Enable vertex buffer objects.\n"
  2450. "This should greatly improve graphics performance."
  2451. msgstr ""
  2452. #: src/settings_translation_file.cpp
  2453. msgid ""
  2454. "Enable view bobbing and amount of view bobbing.\n"
  2455. "For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
  2456. msgstr ""
  2457. #: src/settings_translation_file.cpp
  2458. msgid ""
  2459. "Enable/disable running an IPv6 server.\n"
  2460. "Ignored if bind_address is set.\n"
  2461. "Needs enable_ipv6 to be enabled."
  2462. msgstr ""
  2463. #: src/settings_translation_file.cpp
  2464. msgid ""
  2465. "Enables Hable's 'Uncharted 2' filmic tone mapping.\n"
  2466. "Simulates the tone curve of photographic film and how this approximates the\n"
  2467. "appearance of high dynamic range images. Mid-range contrast is slightly\n"
  2468. "enhanced, highlights and shadows are gradually compressed."
  2469. msgstr ""
  2470. #: src/settings_translation_file.cpp
  2471. msgid "Enables animation of inventory items."
  2472. msgstr ""
  2473. #: src/settings_translation_file.cpp
  2474. msgid "Enables caching of facedir rotated meshes."
  2475. msgstr ""
  2476. #: src/settings_translation_file.cpp
  2477. msgid ""
  2478. "Enables tradeoffs that reduce CPU load or increase rendering performance\n"
  2479. "at the expense of minor visual glitches that do not impact game playability."
  2480. msgstr ""
  2481. #: src/settings_translation_file.cpp
  2482. #, fuzzy
  2483. msgid "Engine Profiler"
  2484. msgstr "Proffiliwr"
  2485. #: src/settings_translation_file.cpp
  2486. msgid "Engine profiling data print interval"
  2487. msgstr ""
  2488. #: src/settings_translation_file.cpp
  2489. msgid "Entity methods"
  2490. msgstr ""
  2491. #: src/settings_translation_file.cpp
  2492. msgid ""
  2493. "Exponent of the floatland tapering. Alters the tapering behavior.\n"
  2494. "Value = 1.0 creates a uniform, linear tapering.\n"
  2495. "Values > 1.0 create a smooth tapering suitable for the default separated\n"
  2496. "floatlands.\n"
  2497. "Values < 1.0 (for example 0.25) create a more defined surface level with\n"
  2498. "flatter lowlands, suitable for a solid floatland layer."
  2499. msgstr ""
  2500. #: src/settings_translation_file.cpp
  2501. msgid "Exposure compensation"
  2502. msgstr ""
  2503. #: src/settings_translation_file.cpp
  2504. msgid "FPS"
  2505. msgstr "FPS"
  2506. #: src/settings_translation_file.cpp
  2507. msgid "FPS when unfocused or paused"
  2508. msgstr ""
  2509. #: src/settings_translation_file.cpp
  2510. msgid "Factor noise"
  2511. msgstr ""
  2512. #: src/settings_translation_file.cpp
  2513. msgid "Fall bobbing factor"
  2514. msgstr ""
  2515. #: src/settings_translation_file.cpp
  2516. msgid "Fallback font path"
  2517. msgstr ""
  2518. #: src/settings_translation_file.cpp
  2519. msgid "Fast mode acceleration"
  2520. msgstr ""
  2521. #: src/settings_translation_file.cpp
  2522. msgid "Fast mode speed"
  2523. msgstr ""
  2524. #: src/settings_translation_file.cpp
  2525. msgid "Field of view"
  2526. msgstr ""
  2527. #: src/settings_translation_file.cpp
  2528. msgid "Field of view in degrees."
  2529. msgstr ""
  2530. #: src/settings_translation_file.cpp
  2531. msgid ""
  2532. "File in client/serverlist/ that contains your favorite servers displayed in "
  2533. "the\n"
  2534. "Multiplayer Tab."
  2535. msgstr ""
  2536. #: src/settings_translation_file.cpp
  2537. msgid "Filler depth"
  2538. msgstr ""
  2539. #: src/settings_translation_file.cpp
  2540. msgid "Filler depth noise"
  2541. msgstr ""
  2542. #: src/settings_translation_file.cpp
  2543. msgid "Filmic tone mapping"
  2544. msgstr ""
  2545. #: src/settings_translation_file.cpp
  2546. msgid "Filtering and Antialiasing"
  2547. msgstr ""
  2548. #: src/settings_translation_file.cpp
  2549. msgid "First of 4 2D noises that together define hill/mountain range height."
  2550. msgstr ""
  2551. #: src/settings_translation_file.cpp
  2552. msgid "First of two 3D noises that together define tunnels."
  2553. msgstr ""
  2554. #: src/settings_translation_file.cpp
  2555. msgid "Fixed map seed"
  2556. msgstr ""
  2557. #: src/settings_translation_file.cpp
  2558. msgid "Fixed virtual joystick"
  2559. msgstr ""
  2560. #: src/settings_translation_file.cpp
  2561. msgid ""
  2562. "Fixes the position of virtual joystick.\n"
  2563. "If disabled, virtual joystick will center to first-touch's position."
  2564. msgstr ""
  2565. #: src/settings_translation_file.cpp
  2566. msgid "Floatland density"
  2567. msgstr ""
  2568. #: src/settings_translation_file.cpp
  2569. msgid "Floatland maximum Y"
  2570. msgstr ""
  2571. #: src/settings_translation_file.cpp
  2572. msgid "Floatland minimum Y"
  2573. msgstr ""
  2574. #: src/settings_translation_file.cpp
  2575. msgid "Floatland noise"
  2576. msgstr ""
  2577. #: src/settings_translation_file.cpp
  2578. msgid "Floatland taper exponent"
  2579. msgstr ""
  2580. #: src/settings_translation_file.cpp
  2581. msgid "Floatland tapering distance"
  2582. msgstr ""
  2583. #: src/settings_translation_file.cpp
  2584. msgid "Floatland water level"
  2585. msgstr ""
  2586. #: src/settings_translation_file.cpp
  2587. msgid "Fog"
  2588. msgstr "Niwl"
  2589. #: src/settings_translation_file.cpp
  2590. msgid "Fog start"
  2591. msgstr ""
  2592. #: src/settings_translation_file.cpp
  2593. msgid "Font"
  2594. msgstr "Ffont"
  2595. #: src/settings_translation_file.cpp
  2596. msgid "Font bold by default"
  2597. msgstr ""
  2598. #: src/settings_translation_file.cpp
  2599. msgid "Font italic by default"
  2600. msgstr ""
  2601. #: src/settings_translation_file.cpp
  2602. msgid "Font shadow"
  2603. msgstr ""
  2604. #: src/settings_translation_file.cpp
  2605. msgid "Font shadow alpha"
  2606. msgstr ""
  2607. #: src/settings_translation_file.cpp
  2608. msgid "Font size"
  2609. msgstr ""
  2610. #: src/settings_translation_file.cpp
  2611. msgid "Font size divisible by"
  2612. msgstr ""
  2613. #: src/settings_translation_file.cpp
  2614. msgid "Font size of the default font where 1 unit = 1 pixel at 96 DPI"
  2615. msgstr ""
  2616. #: src/settings_translation_file.cpp
  2617. msgid "Font size of the monospace font where 1 unit = 1 pixel at 96 DPI"
  2618. msgstr ""
  2619. #: src/settings_translation_file.cpp
  2620. msgid ""
  2621. "Font size of the recent chat text and chat prompt in point (pt).\n"
  2622. "Value 0 will use the default font size."
  2623. msgstr ""
  2624. #: src/settings_translation_file.cpp
  2625. msgid ""
  2626. "For pixel-style fonts that do not scale well, this ensures that font sizes "
  2627. "used\n"
  2628. "with this font will always be divisible by this value, in pixels. For "
  2629. "instance,\n"
  2630. "a pixel font 16 pixels tall should have this set to 16, so it will only ever "
  2631. "be\n"
  2632. "sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32."
  2633. msgstr ""
  2634. #: src/settings_translation_file.cpp
  2635. msgid ""
  2636. "Format of player chat messages. The following strings are valid "
  2637. "placeholders:\n"
  2638. "@name, @message, @timestamp (optional)"
  2639. msgstr ""
  2640. #: src/settings_translation_file.cpp
  2641. msgid "Format of screenshots."
  2642. msgstr ""
  2643. #: src/settings_translation_file.cpp
  2644. msgid "Formspec Full-Screen Background Color"
  2645. msgstr ""
  2646. #: src/settings_translation_file.cpp
  2647. msgid "Formspec Full-Screen Background Opacity"
  2648. msgstr ""
  2649. #: src/settings_translation_file.cpp
  2650. msgid "Formspec full-screen background color (R,G,B)."
  2651. msgstr ""
  2652. #: src/settings_translation_file.cpp
  2653. msgid "Formspec full-screen background opacity (between 0 and 255)."
  2654. msgstr ""
  2655. #: src/settings_translation_file.cpp
  2656. msgid "Fourth of 4 2D noises that together define hill/mountain range height."
  2657. msgstr ""
  2658. #: src/settings_translation_file.cpp
  2659. msgid "Fractal type"
  2660. msgstr ""
  2661. #: src/settings_translation_file.cpp
  2662. msgid "Fraction of the visible distance at which fog starts to be rendered"
  2663. msgstr ""
  2664. #: src/settings_translation_file.cpp
  2665. msgid ""
  2666. "From how far blocks are generated for clients, stated in mapblocks (16 "
  2667. "nodes)."
  2668. msgstr ""
  2669. #: src/settings_translation_file.cpp
  2670. msgid ""
  2671. "From how far blocks are sent to clients, stated in mapblocks (16 nodes)."
  2672. msgstr ""
  2673. #: src/settings_translation_file.cpp
  2674. msgid ""
  2675. "From how far clients know about objects, stated in mapblocks (16 nodes).\n"
  2676. "\n"
  2677. "Setting this larger than active_block_range will also cause the server\n"
  2678. "to maintain active objects up to this distance in the direction the\n"
  2679. "player is looking. (This can avoid mobs suddenly disappearing from view)"
  2680. msgstr ""
  2681. #: src/settings_translation_file.cpp
  2682. msgid "Full screen"
  2683. msgstr ""
  2684. #: src/settings_translation_file.cpp
  2685. msgid "Fullscreen mode."
  2686. msgstr ""
  2687. #: src/settings_translation_file.cpp
  2688. #, fuzzy
  2689. msgid "GUI"
  2690. msgstr "GUIs"
  2691. #: src/settings_translation_file.cpp
  2692. msgid "GUI scaling"
  2693. msgstr ""
  2694. #: src/settings_translation_file.cpp
  2695. msgid "GUI scaling filter"
  2696. msgstr ""
  2697. #: src/settings_translation_file.cpp
  2698. msgid "GUI scaling filter txr2img"
  2699. msgstr ""
  2700. #: src/settings_translation_file.cpp
  2701. msgid "Gamepads"
  2702. msgstr ""
  2703. #: src/settings_translation_file.cpp
  2704. msgid "Global callbacks"
  2705. msgstr ""
  2706. #: src/settings_translation_file.cpp
  2707. msgid ""
  2708. "Global map generation attributes.\n"
  2709. "In Mapgen v6 the 'decorations' flag controls all decorations except trees\n"
  2710. "and jungle grass, in all other mapgens this flag controls all decorations."
  2711. msgstr ""
  2712. #: src/settings_translation_file.cpp
  2713. msgid ""
  2714. "Gradient of light curve at maximum light level.\n"
  2715. "Controls the contrast of the highest light levels."
  2716. msgstr ""
  2717. #: src/settings_translation_file.cpp
  2718. msgid ""
  2719. "Gradient of light curve at minimum light level.\n"
  2720. "Controls the contrast of the lowest light levels."
  2721. msgstr ""
  2722. #: src/settings_translation_file.cpp
  2723. msgid "Graphics"
  2724. msgstr "Graffeg"
  2725. #: src/settings_translation_file.cpp
  2726. msgid "Graphics Effects"
  2727. msgstr ""
  2728. #: src/settings_translation_file.cpp
  2729. msgid "Graphics and Audio"
  2730. msgstr ""
  2731. #: src/settings_translation_file.cpp
  2732. msgid "Gravity"
  2733. msgstr "Disgyrchiant"
  2734. #: src/settings_translation_file.cpp
  2735. msgid "Ground level"
  2736. msgstr ""
  2737. #: src/settings_translation_file.cpp
  2738. msgid "Ground noise"
  2739. msgstr ""
  2740. #: src/settings_translation_file.cpp
  2741. msgid "HTTP mods"
  2742. msgstr ""
  2743. #: src/settings_translation_file.cpp
  2744. msgid "HUD"
  2745. msgstr "HUD"
  2746. #: src/settings_translation_file.cpp
  2747. msgid "HUD scaling"
  2748. msgstr ""
  2749. #: src/settings_translation_file.cpp
  2750. msgid ""
  2751. "Handling for deprecated Lua API calls:\n"
  2752. "- none: Do not log deprecated calls\n"
  2753. "- log: mimic and log backtrace of deprecated call (default).\n"
  2754. "- error: abort on usage of deprecated call (suggested for mod developers)."
  2755. msgstr ""
  2756. #: src/settings_translation_file.cpp
  2757. msgid ""
  2758. "Have the profiler instrument itself:\n"
  2759. "* Instrument an empty function.\n"
  2760. "This estimates the overhead, that instrumentation is adding (+1 function "
  2761. "call).\n"
  2762. "* Instrument the sampler being used to update the statistics."
  2763. msgstr ""
  2764. #: src/settings_translation_file.cpp
  2765. msgid "Heat blend noise"
  2766. msgstr ""
  2767. #: src/settings_translation_file.cpp
  2768. msgid "Heat noise"
  2769. msgstr ""
  2770. #: src/settings_translation_file.cpp
  2771. msgid "Height component of the initial window size."
  2772. msgstr ""
  2773. #: src/settings_translation_file.cpp
  2774. msgid "Height noise"
  2775. msgstr ""
  2776. #: src/settings_translation_file.cpp
  2777. msgid "Height select noise"
  2778. msgstr ""
  2779. #: src/settings_translation_file.cpp
  2780. msgid "Hill steepness"
  2781. msgstr ""
  2782. #: src/settings_translation_file.cpp
  2783. msgid "Hill threshold"
  2784. msgstr ""
  2785. #: src/settings_translation_file.cpp
  2786. msgid "Hilliness1 noise"
  2787. msgstr ""
  2788. #: src/settings_translation_file.cpp
  2789. msgid "Hilliness2 noise"
  2790. msgstr ""
  2791. #: src/settings_translation_file.cpp
  2792. msgid "Hilliness3 noise"
  2793. msgstr ""
  2794. #: src/settings_translation_file.cpp
  2795. msgid "Hilliness4 noise"
  2796. msgstr ""
  2797. #: src/settings_translation_file.cpp
  2798. msgid "Homepage of server, to be displayed in the serverlist."
  2799. msgstr ""
  2800. #: src/settings_translation_file.cpp
  2801. msgid ""
  2802. "Horizontal acceleration in air when jumping or falling,\n"
  2803. "in nodes per second per second."
  2804. msgstr ""
  2805. #: src/settings_translation_file.cpp
  2806. msgid ""
  2807. "Horizontal and vertical acceleration in fast mode,\n"
  2808. "in nodes per second per second."
  2809. msgstr ""
  2810. #: src/settings_translation_file.cpp
  2811. msgid ""
  2812. "Horizontal and vertical acceleration on ground or when climbing,\n"
  2813. "in nodes per second per second."
  2814. msgstr ""
  2815. #: src/settings_translation_file.cpp
  2816. msgid "Hotbar: Enable mouse wheel for selection"
  2817. msgstr ""
  2818. #: src/settings_translation_file.cpp
  2819. msgid "Hotbar: Invert mouse wheel direction"
  2820. msgstr ""
  2821. #: src/settings_translation_file.cpp
  2822. msgid "How deep to make rivers."
  2823. msgstr ""
  2824. #: src/settings_translation_file.cpp
  2825. msgid ""
  2826. "How fast liquid waves will move. Higher = faster.\n"
  2827. "If negative, liquid waves will move backwards."
  2828. msgstr ""
  2829. #: src/settings_translation_file.cpp
  2830. msgid ""
  2831. "How long the server will wait before unloading unused mapblocks, stated in "
  2832. "seconds.\n"
  2833. "Higher value is smoother, but will use more RAM."
  2834. msgstr ""
  2835. #: src/settings_translation_file.cpp
  2836. msgid ""
  2837. "How much you are slowed down when moving inside a liquid.\n"
  2838. "Decrease this to increase liquid resistance to movement."
  2839. msgstr ""
  2840. #: src/settings_translation_file.cpp
  2841. msgid "How wide to make rivers."
  2842. msgstr ""
  2843. #: src/settings_translation_file.cpp
  2844. msgid "Humidity blend noise"
  2845. msgstr ""
  2846. #: src/settings_translation_file.cpp
  2847. msgid "Humidity noise"
  2848. msgstr ""
  2849. #: src/settings_translation_file.cpp
  2850. msgid "Humidity variation for biomes."
  2851. msgstr ""
  2852. #: src/settings_translation_file.cpp
  2853. msgid "IPv6"
  2854. msgstr "IPv6"
  2855. #: src/settings_translation_file.cpp
  2856. msgid "IPv6 server"
  2857. msgstr ""
  2858. #: src/settings_translation_file.cpp
  2859. msgid ""
  2860. "If FPS would go higher than this, limit it by sleeping\n"
  2861. "to not waste CPU power for no benefit."
  2862. msgstr ""
  2863. #: src/settings_translation_file.cpp
  2864. msgid ""
  2865. "If disabled, \"Aux1\" key is used to fly fast if both fly and fast mode are\n"
  2866. "enabled."
  2867. msgstr ""
  2868. #: src/settings_translation_file.cpp
  2869. msgid ""
  2870. "If enabled, \"Aux1\" key instead of \"Sneak\" key is used for climbing down "
  2871. "and\n"
  2872. "descending."
  2873. msgstr ""
  2874. #: src/settings_translation_file.cpp
  2875. msgid ""
  2876. "If enabled, account registration is separate from login in the UI.\n"
  2877. "If disabled, new accounts will be registered automatically when logging in."
  2878. msgstr ""
  2879. #: src/settings_translation_file.cpp
  2880. msgid ""
  2881. "If enabled, actions are recorded for rollback.\n"
  2882. "This option is only read when server starts."
  2883. msgstr ""
  2884. #: src/settings_translation_file.cpp
  2885. msgid "If enabled, disable cheat prevention in multiplayer."
  2886. msgstr ""
  2887. #: src/settings_translation_file.cpp
  2888. msgid ""
  2889. "If enabled, invalid world data won't cause the server to shut down.\n"
  2890. "Only enable this if you know what you are doing."
  2891. msgstr ""
  2892. #: src/settings_translation_file.cpp
  2893. msgid ""
  2894. "If enabled, players cannot join without a password or change theirs to an "
  2895. "empty password."
  2896. msgstr ""
  2897. #: src/settings_translation_file.cpp
  2898. msgid ""
  2899. "If enabled, the server will perform map block occlusion culling based on\n"
  2900. "on the eye position of the player. This can reduce the number of blocks\n"
  2901. "sent to the client by 50-80%. Clients will no longer receive most\n"
  2902. "invisible blocks, so that the utility of noclip mode is reduced."
  2903. msgstr ""
  2904. #: src/settings_translation_file.cpp
  2905. msgid ""
  2906. "If enabled, you can place nodes at the position (feet + eye level) where you "
  2907. "stand.\n"
  2908. "This is helpful when working with nodeboxes in small areas."
  2909. msgstr ""
  2910. #: src/settings_translation_file.cpp
  2911. msgid ""
  2912. "If the CSM restriction for node range is enabled, get_node calls are "
  2913. "limited\n"
  2914. "to this distance from the player to the node."
  2915. msgstr ""
  2916. #: src/settings_translation_file.cpp
  2917. msgid ""
  2918. "If the execution of a chat command takes longer than this specified time in\n"
  2919. "seconds, add the time information to the chat command message"
  2920. msgstr ""
  2921. #: src/settings_translation_file.cpp
  2922. msgid ""
  2923. "If the file size of debug.txt exceeds the number of megabytes specified in\n"
  2924. "this setting when it is opened, the file is moved to debug.txt.1,\n"
  2925. "deleting an older debug.txt.1 if it exists.\n"
  2926. "debug.txt is only moved if this setting is positive."
  2927. msgstr ""
  2928. #: src/settings_translation_file.cpp
  2929. msgid "If this is set, players will always (re)spawn at the given position."
  2930. msgstr ""
  2931. #: src/settings_translation_file.cpp
  2932. msgid "Ignore world errors"
  2933. msgstr ""
  2934. #: src/settings_translation_file.cpp
  2935. msgid "In-game chat console background alpha (opaqueness, between 0 and 255)."
  2936. msgstr ""
  2937. #: src/settings_translation_file.cpp
  2938. msgid "In-game chat console background color (R,G,B)."
  2939. msgstr ""
  2940. #: src/settings_translation_file.cpp
  2941. msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)."
  2942. msgstr ""
  2943. #: src/settings_translation_file.cpp
  2944. msgid "Initial vertical speed when jumping, in nodes per second."
  2945. msgstr ""
  2946. #: src/settings_translation_file.cpp
  2947. msgid ""
  2948. "Instrument builtin.\n"
  2949. "This is usually only needed by core/builtin contributors"
  2950. msgstr ""
  2951. #: src/settings_translation_file.cpp
  2952. msgid "Instrument chat commands on registration."
  2953. msgstr ""
  2954. #: src/settings_translation_file.cpp
  2955. msgid ""
  2956. "Instrument global callback functions on registration.\n"
  2957. "(anything you pass to a minetest.register_*() function)"
  2958. msgstr ""
  2959. #: src/settings_translation_file.cpp
  2960. msgid ""
  2961. "Instrument the action function of Active Block Modifiers on registration."
  2962. msgstr ""
  2963. #: src/settings_translation_file.cpp
  2964. msgid ""
  2965. "Instrument the action function of Loading Block Modifiers on registration."
  2966. msgstr ""
  2967. #: src/settings_translation_file.cpp
  2968. msgid "Instrument the methods of entities on registration."
  2969. msgstr ""
  2970. #: src/settings_translation_file.cpp
  2971. msgid "Interval of saving important changes in the world, stated in seconds."
  2972. msgstr ""
  2973. #: src/settings_translation_file.cpp
  2974. msgid "Interval of sending time of day to clients, stated in seconds."
  2975. msgstr ""
  2976. #: src/settings_translation_file.cpp
  2977. msgid "Inventory items animations"
  2978. msgstr ""
  2979. #: src/settings_translation_file.cpp
  2980. msgid "Invert mouse"
  2981. msgstr ""
  2982. #: src/settings_translation_file.cpp
  2983. msgid "Invert mouse wheel (scroll) direction for item selection in hotbar."
  2984. msgstr ""
  2985. #: src/settings_translation_file.cpp
  2986. msgid "Invert vertical mouse movement."
  2987. msgstr ""
  2988. #: src/settings_translation_file.cpp
  2989. msgid "Italic font path"
  2990. msgstr ""
  2991. #: src/settings_translation_file.cpp
  2992. msgid "Italic monospace font path"
  2993. msgstr ""
  2994. #: src/settings_translation_file.cpp
  2995. msgid "Item entity TTL"
  2996. msgstr ""
  2997. #: src/settings_translation_file.cpp
  2998. msgid "Iterations"
  2999. msgstr ""
  3000. #: src/settings_translation_file.cpp
  3001. msgid ""
  3002. "Iterations of the recursive function.\n"
  3003. "Increasing this increases the amount of fine detail, but also\n"
  3004. "increases processing load.\n"
  3005. "At iterations = 20 this mapgen has a similar load to mapgen V7."
  3006. msgstr ""
  3007. #: src/settings_translation_file.cpp
  3008. msgid "Joystick ID"
  3009. msgstr ""
  3010. #: src/settings_translation_file.cpp
  3011. msgid "Joystick button repetition interval"
  3012. msgstr ""
  3013. #: src/settings_translation_file.cpp
  3014. msgid "Joystick dead zone"
  3015. msgstr ""
  3016. #: src/settings_translation_file.cpp
  3017. msgid "Joystick frustum sensitivity"
  3018. msgstr ""
  3019. #: src/settings_translation_file.cpp
  3020. msgid "Joystick type"
  3021. msgstr ""
  3022. #: src/settings_translation_file.cpp
  3023. msgid ""
  3024. "Julia set only.\n"
  3025. "W component of hypercomplex constant.\n"
  3026. "Alters the shape of the fractal.\n"
  3027. "Has no effect on 3D fractals.\n"
  3028. "Range roughly -2 to 2."
  3029. msgstr ""
  3030. #: src/settings_translation_file.cpp
  3031. msgid ""
  3032. "Julia set only.\n"
  3033. "X component of hypercomplex constant.\n"
  3034. "Alters the shape of the fractal.\n"
  3035. "Range roughly -2 to 2."
  3036. msgstr ""
  3037. #: src/settings_translation_file.cpp
  3038. msgid ""
  3039. "Julia set only.\n"
  3040. "Y component of hypercomplex constant.\n"
  3041. "Alters the shape of the fractal.\n"
  3042. "Range roughly -2 to 2."
  3043. msgstr ""
  3044. #: src/settings_translation_file.cpp
  3045. msgid ""
  3046. "Julia set only.\n"
  3047. "Z component of hypercomplex constant.\n"
  3048. "Alters the shape of the fractal.\n"
  3049. "Range roughly -2 to 2."
  3050. msgstr ""
  3051. #: src/settings_translation_file.cpp
  3052. msgid "Julia w"
  3053. msgstr ""
  3054. #: src/settings_translation_file.cpp
  3055. msgid "Julia x"
  3056. msgstr ""
  3057. #: src/settings_translation_file.cpp
  3058. msgid "Julia y"
  3059. msgstr ""
  3060. #: src/settings_translation_file.cpp
  3061. msgid "Julia z"
  3062. msgstr ""
  3063. #: src/settings_translation_file.cpp
  3064. msgid "Jumping speed"
  3065. msgstr ""
  3066. #: src/settings_translation_file.cpp
  3067. msgid "Keyboard and Mouse"
  3068. msgstr ""
  3069. #: src/settings_translation_file.cpp
  3070. msgid "Kick players who sent more than X messages per 10 seconds."
  3071. msgstr ""
  3072. #: src/settings_translation_file.cpp
  3073. msgid "Lake steepness"
  3074. msgstr ""
  3075. #: src/settings_translation_file.cpp
  3076. msgid "Lake threshold"
  3077. msgstr ""
  3078. #: src/settings_translation_file.cpp
  3079. msgid "Language"
  3080. msgstr "Iaith"
  3081. #: src/settings_translation_file.cpp
  3082. msgid "Large cave depth"
  3083. msgstr ""
  3084. #: src/settings_translation_file.cpp
  3085. msgid "Large cave maximum number"
  3086. msgstr ""
  3087. #: src/settings_translation_file.cpp
  3088. msgid "Large cave minimum number"
  3089. msgstr ""
  3090. #: src/settings_translation_file.cpp
  3091. msgid "Large cave proportion flooded"
  3092. msgstr ""
  3093. #: src/settings_translation_file.cpp
  3094. msgid "Leaves style"
  3095. msgstr ""
  3096. #: src/settings_translation_file.cpp
  3097. msgid ""
  3098. "Leaves style:\n"
  3099. "- Fancy: all faces visible\n"
  3100. "- Simple: only outer faces, if defined special_tiles are used\n"
  3101. "- Opaque: disable transparency"
  3102. msgstr ""
  3103. #: src/settings_translation_file.cpp
  3104. msgid ""
  3105. "Length of a server tick and the interval at which objects are generally "
  3106. "updated over\n"
  3107. "network, stated in seconds."
  3108. msgstr ""
  3109. #: src/settings_translation_file.cpp
  3110. msgid "Length of liquid waves."
  3111. msgstr ""
  3112. #: src/settings_translation_file.cpp
  3113. msgid ""
  3114. "Length of time between Active Block Modifier (ABM) execution cycles, stated "
  3115. "in seconds."
  3116. msgstr ""
  3117. #: src/settings_translation_file.cpp
  3118. msgid "Length of time between NodeTimer execution cycles, stated in seconds."
  3119. msgstr ""
  3120. #: src/settings_translation_file.cpp
  3121. msgid ""
  3122. "Length of time between active block management cycles, stated in seconds."
  3123. msgstr ""
  3124. #: src/settings_translation_file.cpp
  3125. msgid ""
  3126. "Level of logging to be written to debug.txt:\n"
  3127. "- <nothing> (no logging)\n"
  3128. "- none (messages with no level)\n"
  3129. "- error\n"
  3130. "- warning\n"
  3131. "- action\n"
  3132. "- info\n"
  3133. "- verbose\n"
  3134. "- trace"
  3135. msgstr ""
  3136. #: src/settings_translation_file.cpp
  3137. msgid "Light curve boost"
  3138. msgstr ""
  3139. #: src/settings_translation_file.cpp
  3140. msgid "Light curve boost center"
  3141. msgstr ""
  3142. #: src/settings_translation_file.cpp
  3143. msgid "Light curve boost spread"
  3144. msgstr ""
  3145. #: src/settings_translation_file.cpp
  3146. msgid "Light curve gamma"
  3147. msgstr ""
  3148. #: src/settings_translation_file.cpp
  3149. msgid "Light curve high gradient"
  3150. msgstr ""
  3151. #: src/settings_translation_file.cpp
  3152. msgid "Light curve low gradient"
  3153. msgstr ""
  3154. #: src/settings_translation_file.cpp
  3155. msgid "Lighting"
  3156. msgstr "Goleuo"
  3157. #: src/settings_translation_file.cpp
  3158. msgid ""
  3159. "Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n"
  3160. "Only mapchunks completely within the mapgen limit are generated.\n"
  3161. "Value is stored per-world."
  3162. msgstr ""
  3163. #: src/settings_translation_file.cpp
  3164. msgid ""
  3165. "Limits number of parallel HTTP requests. Affects:\n"
  3166. "- Media fetch if server uses remote_media setting.\n"
  3167. "- Serverlist download and server announcement.\n"
  3168. "- Downloads performed by main menu (e.g. mod manager).\n"
  3169. "Only has an effect if compiled with cURL."
  3170. msgstr ""
  3171. #: src/settings_translation_file.cpp
  3172. msgid "Liquid fluidity"
  3173. msgstr ""
  3174. #: src/settings_translation_file.cpp
  3175. msgid "Liquid fluidity smoothing"
  3176. msgstr ""
  3177. #: src/settings_translation_file.cpp
  3178. msgid "Liquid loop max"
  3179. msgstr ""
  3180. #: src/settings_translation_file.cpp
  3181. msgid "Liquid queue purge time"
  3182. msgstr ""
  3183. #: src/settings_translation_file.cpp
  3184. msgid "Liquid sinking"
  3185. msgstr ""
  3186. #: src/settings_translation_file.cpp
  3187. msgid "Liquid update interval in seconds."
  3188. msgstr ""
  3189. #: src/settings_translation_file.cpp
  3190. msgid "Liquid update tick"
  3191. msgstr ""
  3192. #: src/settings_translation_file.cpp
  3193. msgid "Load the game profiler"
  3194. msgstr ""
  3195. #: src/settings_translation_file.cpp
  3196. msgid ""
  3197. "Load the game profiler to collect game profiling data.\n"
  3198. "Provides a /profiler command to access the compiled profile.\n"
  3199. "Useful for mod developers and server operators."
  3200. msgstr ""
  3201. #: src/settings_translation_file.cpp
  3202. msgid "Loading Block Modifiers"
  3203. msgstr ""
  3204. #: src/settings_translation_file.cpp
  3205. msgid ""
  3206. "Logical value that controls how far the bloom effect spreads\n"
  3207. "from the bright objects.\n"
  3208. "Range: from 0.1 to 8, default: 1"
  3209. msgstr ""
  3210. #: src/settings_translation_file.cpp
  3211. msgid "Lower Y limit of dungeons."
  3212. msgstr ""
  3213. #: src/settings_translation_file.cpp
  3214. msgid "Lower Y limit of floatlands."
  3215. msgstr ""
  3216. #: src/settings_translation_file.cpp
  3217. msgid "Main menu script"
  3218. msgstr ""
  3219. #: src/settings_translation_file.cpp
  3220. msgid ""
  3221. "Make fog and sky colors depend on daytime (dawn/sunset) and view direction."
  3222. msgstr ""
  3223. #: src/settings_translation_file.cpp
  3224. msgid "Makes all liquids opaque"
  3225. msgstr ""
  3226. #: src/settings_translation_file.cpp
  3227. msgid "Map Compression Level for Disk Storage"
  3228. msgstr ""
  3229. #: src/settings_translation_file.cpp
  3230. msgid "Map Compression Level for Network Transfer"
  3231. msgstr ""
  3232. #: src/settings_translation_file.cpp
  3233. msgid "Map directory"
  3234. msgstr ""
  3235. #: src/settings_translation_file.cpp
  3236. msgid "Map generation attributes specific to Mapgen Carpathian."
  3237. msgstr ""
  3238. #: src/settings_translation_file.cpp
  3239. msgid ""
  3240. "Map generation attributes specific to Mapgen Flat.\n"
  3241. "Occasional lakes and hills can be added to the flat world."
  3242. msgstr ""
  3243. #: src/settings_translation_file.cpp
  3244. msgid ""
  3245. "Map generation attributes specific to Mapgen Fractal.\n"
  3246. "'terrain' enables the generation of non-fractal terrain:\n"
  3247. "ocean, islands and underground."
  3248. msgstr ""
  3249. #: src/settings_translation_file.cpp
  3250. msgid ""
  3251. "Map generation attributes specific to Mapgen Valleys.\n"
  3252. "'altitude_chill': Reduces heat with altitude.\n"
  3253. "'humid_rivers': Increases humidity around rivers.\n"
  3254. "'vary_river_depth': If enabled, low humidity and high heat causes rivers\n"
  3255. "to become shallower and occasionally dry.\n"
  3256. "'altitude_dry': Reduces humidity with altitude."
  3257. msgstr ""
  3258. #: src/settings_translation_file.cpp
  3259. msgid "Map generation attributes specific to Mapgen v5."
  3260. msgstr ""
  3261. #: src/settings_translation_file.cpp
  3262. msgid ""
  3263. "Map generation attributes specific to Mapgen v6.\n"
  3264. "The 'snowbiomes' flag enables the new 5 biome system.\n"
  3265. "When the 'snowbiomes' flag is enabled jungles are automatically enabled and\n"
  3266. "the 'jungles' flag is ignored."
  3267. msgstr ""
  3268. #: src/settings_translation_file.cpp
  3269. msgid ""
  3270. "Map generation attributes specific to Mapgen v7.\n"
  3271. "'ridges': Rivers.\n"
  3272. "'floatlands': Floating land masses in the atmosphere.\n"
  3273. "'caverns': Giant caves deep underground."
  3274. msgstr ""
  3275. #: src/settings_translation_file.cpp
  3276. msgid "Map generation limit"
  3277. msgstr ""
  3278. #: src/settings_translation_file.cpp
  3279. msgid "Map save interval"
  3280. msgstr ""
  3281. #: src/settings_translation_file.cpp
  3282. msgid "Map shadows update frames"
  3283. msgstr ""
  3284. #: src/settings_translation_file.cpp
  3285. msgid "Mapblock limit"
  3286. msgstr ""
  3287. #: src/settings_translation_file.cpp
  3288. msgid "Mapblock mesh generation delay"
  3289. msgstr ""
  3290. #: src/settings_translation_file.cpp
  3291. msgid "Mapblock mesh generation threads"
  3292. msgstr ""
  3293. #: src/settings_translation_file.cpp
  3294. msgid "Mapblock mesh generator's MapBlock cache size in MB"
  3295. msgstr ""
  3296. #: src/settings_translation_file.cpp
  3297. msgid "Mapblock unload timeout"
  3298. msgstr ""
  3299. #: src/settings_translation_file.cpp
  3300. msgid "Mapgen Carpathian"
  3301. msgstr ""
  3302. #: src/settings_translation_file.cpp
  3303. msgid "Mapgen Carpathian specific flags"
  3304. msgstr ""
  3305. #: src/settings_translation_file.cpp
  3306. msgid "Mapgen Flat"
  3307. msgstr ""
  3308. #: src/settings_translation_file.cpp
  3309. msgid "Mapgen Flat specific flags"
  3310. msgstr ""
  3311. #: src/settings_translation_file.cpp
  3312. msgid "Mapgen Fractal"
  3313. msgstr ""
  3314. #: src/settings_translation_file.cpp
  3315. msgid "Mapgen Fractal specific flags"
  3316. msgstr ""
  3317. #: src/settings_translation_file.cpp
  3318. msgid "Mapgen V5"
  3319. msgstr ""
  3320. #: src/settings_translation_file.cpp
  3321. msgid "Mapgen V5 specific flags"
  3322. msgstr ""
  3323. #: src/settings_translation_file.cpp
  3324. msgid "Mapgen V6"
  3325. msgstr ""
  3326. #: src/settings_translation_file.cpp
  3327. msgid "Mapgen V6 specific flags"
  3328. msgstr ""
  3329. #: src/settings_translation_file.cpp
  3330. msgid "Mapgen V7"
  3331. msgstr ""
  3332. #: src/settings_translation_file.cpp
  3333. msgid "Mapgen V7 specific flags"
  3334. msgstr ""
  3335. #: src/settings_translation_file.cpp
  3336. msgid "Mapgen Valleys"
  3337. msgstr ""
  3338. #: src/settings_translation_file.cpp
  3339. msgid "Mapgen Valleys specific flags"
  3340. msgstr ""
  3341. #: src/settings_translation_file.cpp
  3342. msgid "Mapgen debug"
  3343. msgstr ""
  3344. #: src/settings_translation_file.cpp
  3345. msgid "Mapgen name"
  3346. msgstr ""
  3347. #: src/settings_translation_file.cpp
  3348. msgid "Max block generate distance"
  3349. msgstr ""
  3350. #: src/settings_translation_file.cpp
  3351. msgid "Max block send distance"
  3352. msgstr ""
  3353. #: src/settings_translation_file.cpp
  3354. msgid "Max liquids processed per step."
  3355. msgstr ""
  3356. #: src/settings_translation_file.cpp
  3357. msgid "Max. clearobjects extra blocks"
  3358. msgstr ""
  3359. #: src/settings_translation_file.cpp
  3360. msgid "Max. packets per iteration"
  3361. msgstr ""
  3362. #: src/settings_translation_file.cpp
  3363. msgid "Maximum FPS"
  3364. msgstr ""
  3365. #: src/settings_translation_file.cpp
  3366. msgid "Maximum FPS when the window is not focused, or when the game is paused."
  3367. msgstr ""
  3368. #: src/settings_translation_file.cpp
  3369. msgid "Maximum distance to render shadows."
  3370. msgstr ""
  3371. #: src/settings_translation_file.cpp
  3372. msgid "Maximum forceloaded blocks"
  3373. msgstr ""
  3374. #: src/settings_translation_file.cpp
  3375. msgid "Maximum hotbar width"
  3376. msgstr ""
  3377. #: src/settings_translation_file.cpp
  3378. msgid "Maximum limit of random number of large caves per mapchunk."
  3379. msgstr ""
  3380. #: src/settings_translation_file.cpp
  3381. msgid "Maximum limit of random number of small caves per mapchunk."
  3382. msgstr ""
  3383. #: src/settings_translation_file.cpp
  3384. msgid ""
  3385. "Maximum liquid resistance. Controls deceleration when entering liquid at\n"
  3386. "high speed."
  3387. msgstr ""
  3388. #: src/settings_translation_file.cpp
  3389. msgid ""
  3390. "Maximum number of blocks that are simultaneously sent per client.\n"
  3391. "The maximum total count is calculated dynamically:\n"
  3392. "max_total = ceil((#clients + max_users) * per_client / 4)"
  3393. msgstr ""
  3394. #: src/settings_translation_file.cpp
  3395. msgid "Maximum number of blocks that can be queued for loading."
  3396. msgstr ""
  3397. #: src/settings_translation_file.cpp
  3398. msgid ""
  3399. "Maximum number of blocks to be queued that are to be generated.\n"
  3400. "This limit is enforced per player."
  3401. msgstr ""
  3402. #: src/settings_translation_file.cpp
  3403. msgid ""
  3404. "Maximum number of blocks to be queued that are to be loaded from file.\n"
  3405. "This limit is enforced per player."
  3406. msgstr ""
  3407. #: src/settings_translation_file.cpp
  3408. msgid ""
  3409. "Maximum number of concurrent downloads. Downloads exceeding this limit will "
  3410. "be queued.\n"
  3411. "This should be lower than curl_parallel_limit."
  3412. msgstr ""
  3413. #: src/settings_translation_file.cpp
  3414. msgid ""
  3415. "Maximum number of mapblocks for client to be kept in memory.\n"
  3416. "Set to -1 for unlimited amount."
  3417. msgstr ""
  3418. #: src/settings_translation_file.cpp
  3419. msgid ""
  3420. "Maximum number of packets sent per send step, if you have a slow connection\n"
  3421. "try reducing it, but don't reduce it to a number below double of targeted\n"
  3422. "client number."
  3423. msgstr ""
  3424. #: src/settings_translation_file.cpp
  3425. msgid "Maximum number of players that can be connected simultaneously."
  3426. msgstr ""
  3427. #: src/settings_translation_file.cpp
  3428. msgid "Maximum number of recent chat messages to show"
  3429. msgstr ""
  3430. #: src/settings_translation_file.cpp
  3431. msgid "Maximum number of statically stored objects in a block."
  3432. msgstr ""
  3433. #: src/settings_translation_file.cpp
  3434. msgid "Maximum objects per block"
  3435. msgstr ""
  3436. #: src/settings_translation_file.cpp
  3437. msgid ""
  3438. "Maximum proportion of current window to be used for hotbar.\n"
  3439. "Useful if there's something to be displayed right or left of hotbar."
  3440. msgstr ""
  3441. #: src/settings_translation_file.cpp
  3442. msgid "Maximum simultaneous block sends per client"
  3443. msgstr ""
  3444. #: src/settings_translation_file.cpp
  3445. msgid "Maximum size of the outgoing chat queue"
  3446. msgstr ""
  3447. #: src/settings_translation_file.cpp
  3448. msgid ""
  3449. "Maximum size of the outgoing chat queue.\n"
  3450. "0 to disable queueing and -1 to make the queue size unlimited."
  3451. msgstr ""
  3452. #: src/settings_translation_file.cpp
  3453. msgid ""
  3454. "Maximum time a file download (e.g. a mod download) may take, stated in "
  3455. "milliseconds."
  3456. msgstr ""
  3457. #: src/settings_translation_file.cpp
  3458. msgid ""
  3459. "Maximum time an interactive request (e.g. server list fetch) may take, "
  3460. "stated in milliseconds."
  3461. msgstr ""
  3462. #: src/settings_translation_file.cpp
  3463. msgid "Maximum users"
  3464. msgstr ""
  3465. #: src/settings_translation_file.cpp
  3466. msgid "Mesh cache"
  3467. msgstr ""
  3468. #: src/settings_translation_file.cpp
  3469. msgid "Message of the day"
  3470. msgstr ""
  3471. #: src/settings_translation_file.cpp
  3472. msgid "Message of the day displayed to players connecting."
  3473. msgstr ""
  3474. #: src/settings_translation_file.cpp
  3475. msgid "Method used to highlight selected object."
  3476. msgstr ""
  3477. #: src/settings_translation_file.cpp
  3478. msgid "Minimal level of logging to be written to chat."
  3479. msgstr ""
  3480. #: src/settings_translation_file.cpp
  3481. msgid "Minimap scan height"
  3482. msgstr ""
  3483. #: src/settings_translation_file.cpp
  3484. msgid "Minimum limit of random number of large caves per mapchunk."
  3485. msgstr ""
  3486. #: src/settings_translation_file.cpp
  3487. msgid "Minimum limit of random number of small caves per mapchunk."
  3488. msgstr ""
  3489. #: src/settings_translation_file.cpp
  3490. msgid "Mipmapping"
  3491. msgstr "Mipmapio"
  3492. #: src/settings_translation_file.cpp
  3493. msgid "Miscellaneous"
  3494. msgstr ""
  3495. #: src/settings_translation_file.cpp
  3496. msgid "Mod Profiler"
  3497. msgstr ""
  3498. #: src/settings_translation_file.cpp
  3499. msgid "Mod Security"
  3500. msgstr ""
  3501. #: src/settings_translation_file.cpp
  3502. msgid "Mod channels"
  3503. msgstr ""
  3504. #: src/settings_translation_file.cpp
  3505. msgid "Modifies the size of the HUD elements."
  3506. msgstr ""
  3507. #: src/settings_translation_file.cpp
  3508. msgid "Monospace font path"
  3509. msgstr ""
  3510. #: src/settings_translation_file.cpp
  3511. msgid "Monospace font size"
  3512. msgstr ""
  3513. #: src/settings_translation_file.cpp
  3514. msgid "Monospace font size divisible by"
  3515. msgstr ""
  3516. #: src/settings_translation_file.cpp
  3517. msgid "Mountain height noise"
  3518. msgstr ""
  3519. #: src/settings_translation_file.cpp
  3520. msgid "Mountain noise"
  3521. msgstr ""
  3522. #: src/settings_translation_file.cpp
  3523. msgid "Mountain variation noise"
  3524. msgstr ""
  3525. #: src/settings_translation_file.cpp
  3526. msgid "Mountain zero level"
  3527. msgstr ""
  3528. #: src/settings_translation_file.cpp
  3529. msgid "Mouse sensitivity"
  3530. msgstr ""
  3531. #: src/settings_translation_file.cpp
  3532. msgid "Mouse sensitivity multiplier."
  3533. msgstr ""
  3534. #: src/settings_translation_file.cpp
  3535. msgid "Mud noise"
  3536. msgstr ""
  3537. #: src/settings_translation_file.cpp
  3538. msgid ""
  3539. "Multiplier for fall bobbing.\n"
  3540. "For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
  3541. msgstr ""
  3542. #: src/settings_translation_file.cpp
  3543. msgid "Mute sound"
  3544. msgstr ""
  3545. #: src/settings_translation_file.cpp
  3546. msgid ""
  3547. "Name of map generator to be used when creating a new world.\n"
  3548. "Creating a world in the main menu will override this.\n"
  3549. "Current mapgens in a highly unstable state:\n"
  3550. "- The optional floatlands of v7 (disabled by default)."
  3551. msgstr ""
  3552. #: src/settings_translation_file.cpp
  3553. msgid ""
  3554. "Name of the player.\n"
  3555. "When running a server, clients connecting with this name are admins.\n"
  3556. "When starting from the main menu, this is overridden."
  3557. msgstr ""
  3558. #: src/settings_translation_file.cpp
  3559. msgid ""
  3560. "Name of the server, to be displayed when players join and in the serverlist."
  3561. msgstr ""
  3562. #: src/settings_translation_file.cpp
  3563. msgid ""
  3564. "Network port to listen (UDP).\n"
  3565. "This value will be overridden when starting from the main menu."
  3566. msgstr ""
  3567. #: src/settings_translation_file.cpp
  3568. msgid "Networking"
  3569. msgstr "Rhwydwaith"
  3570. #: src/settings_translation_file.cpp
  3571. msgid "New users need to input this password."
  3572. msgstr ""
  3573. #: src/settings_translation_file.cpp
  3574. msgid "Node and Entity Highlighting"
  3575. msgstr ""
  3576. #: src/settings_translation_file.cpp
  3577. msgid "Node highlighting"
  3578. msgstr ""
  3579. #: src/settings_translation_file.cpp
  3580. msgid "NodeTimer interval"
  3581. msgstr ""
  3582. #: src/settings_translation_file.cpp
  3583. msgid "Noises"
  3584. msgstr "Synau"
  3585. #: src/settings_translation_file.cpp
  3586. msgid "Number of emerge threads"
  3587. msgstr ""
  3588. #: src/settings_translation_file.cpp
  3589. msgid ""
  3590. "Number of emerge threads to use.\n"
  3591. "Value 0:\n"
  3592. "- Automatic selection. The number of emerge threads will be\n"
  3593. "- 'number of processors - 2', with a lower limit of 1.\n"
  3594. "Any other value:\n"
  3595. "- Specifies the number of emerge threads, with a lower limit of 1.\n"
  3596. "WARNING: Increasing the number of emerge threads increases engine mapgen\n"
  3597. "speed, but this may harm game performance by interfering with other\n"
  3598. "processes, especially in singleplayer and/or when running Lua code in\n"
  3599. "'on_generated'. For many users the optimum setting may be '1'."
  3600. msgstr ""
  3601. #: src/settings_translation_file.cpp
  3602. msgid ""
  3603. "Number of extra blocks that can be loaded by /clearobjects at once.\n"
  3604. "This is a trade-off between SQLite transaction overhead and\n"
  3605. "memory consumption (4096=100MB, as a rule of thumb)."
  3606. msgstr ""
  3607. #: src/settings_translation_file.cpp
  3608. msgid "Number of messages a player may send per 10 seconds."
  3609. msgstr ""
  3610. #: src/settings_translation_file.cpp
  3611. msgid ""
  3612. "Number of threads to use for mesh generation.\n"
  3613. "Value of 0 (default) will let Minetest autodetect the number of available "
  3614. "threads."
  3615. msgstr ""
  3616. #: src/settings_translation_file.cpp
  3617. msgid "Occlusion Culler"
  3618. msgstr ""
  3619. #: src/settings_translation_file.cpp
  3620. msgid "Occlusion Culling"
  3621. msgstr ""
  3622. #: src/settings_translation_file.cpp
  3623. msgid "Opaque liquids"
  3624. msgstr ""
  3625. #: src/settings_translation_file.cpp
  3626. msgid ""
  3627. "Opaqueness (alpha) of the shadow behind the default font, between 0 and 255."
  3628. msgstr ""
  3629. #: src/settings_translation_file.cpp
  3630. msgid ""
  3631. "Open the pause menu when the window's focus is lost. Does not pause if a "
  3632. "formspec is\n"
  3633. "open."
  3634. msgstr ""
  3635. #: src/settings_translation_file.cpp
  3636. msgid "Optional override for chat weblink color."
  3637. msgstr ""
  3638. #: src/settings_translation_file.cpp
  3639. msgid ""
  3640. "Path of the fallback font. Must be a TrueType font.\n"
  3641. "This font will be used for certain languages or if the default font is "
  3642. "unavailable."
  3643. msgstr ""
  3644. #: src/settings_translation_file.cpp
  3645. msgid ""
  3646. "Path to save screenshots at. Can be an absolute or relative path.\n"
  3647. "The folder will be created if it doesn't already exist."
  3648. msgstr ""
  3649. #: src/settings_translation_file.cpp
  3650. msgid ""
  3651. "Path to shader directory. If no path is defined, default location will be "
  3652. "used."
  3653. msgstr ""
  3654. #: src/settings_translation_file.cpp
  3655. msgid ""
  3656. "Path to the default font. Must be a TrueType font.\n"
  3657. "The fallback font will be used if the font cannot be loaded."
  3658. msgstr ""
  3659. #: src/settings_translation_file.cpp
  3660. msgid ""
  3661. "Path to the monospace font. Must be a TrueType font.\n"
  3662. "This font is used for e.g. the console and profiler screen."
  3663. msgstr ""
  3664. #: src/settings_translation_file.cpp
  3665. msgid "Pause on lost window focus"
  3666. msgstr ""
  3667. #: src/settings_translation_file.cpp
  3668. msgid "Per-player limit of queued blocks load from disk"
  3669. msgstr ""
  3670. #: src/settings_translation_file.cpp
  3671. msgid "Per-player limit of queued blocks to generate"
  3672. msgstr ""
  3673. #: src/settings_translation_file.cpp
  3674. msgid "Physics"
  3675. msgstr "Ffiseg"
  3676. #: src/settings_translation_file.cpp
  3677. msgid "Place repetition interval"
  3678. msgstr ""
  3679. #: src/settings_translation_file.cpp
  3680. msgid "Player transfer distance"
  3681. msgstr ""
  3682. #: src/settings_translation_file.cpp
  3683. msgid "Poisson filtering"
  3684. msgstr ""
  3685. #: src/settings_translation_file.cpp
  3686. msgid "Post Processing"
  3687. msgstr ""
  3688. #: src/settings_translation_file.cpp
  3689. msgid ""
  3690. "Prevent digging and placing from repeating when holding the respective "
  3691. "buttons.\n"
  3692. "Enable this when you dig or place too often by accident.\n"
  3693. "On touchscreens, this only affects digging."
  3694. msgstr ""
  3695. #: src/settings_translation_file.cpp
  3696. msgid "Prevent mods from doing insecure things like running shell commands."
  3697. msgstr ""
  3698. #: src/settings_translation_file.cpp
  3699. msgid ""
  3700. "Print the engine's profiling data in regular intervals (in seconds).\n"
  3701. "0 = disable. Useful for developers."
  3702. msgstr ""
  3703. #: src/settings_translation_file.cpp
  3704. msgid "Privileges that players with basic_privs can grant"
  3705. msgstr ""
  3706. #: src/settings_translation_file.cpp
  3707. msgid "Profiler"
  3708. msgstr "Proffiliwr"
  3709. #: src/settings_translation_file.cpp
  3710. msgid "Prometheus listener address"
  3711. msgstr ""
  3712. #: src/settings_translation_file.cpp
  3713. msgid ""
  3714. "Prometheus listener address.\n"
  3715. "If Minetest is compiled with ENABLE_PROMETHEUS option enabled,\n"
  3716. "enable metrics listener for Prometheus on that address.\n"
  3717. "Metrics can be fetched on http://127.0.0.1:30000/metrics"
  3718. msgstr ""
  3719. #: src/settings_translation_file.cpp
  3720. msgid "Proportion of large caves that contain liquid."
  3721. msgstr ""
  3722. #: src/settings_translation_file.cpp
  3723. msgid ""
  3724. "Radius of cloud area stated in number of 64 node cloud squares.\n"
  3725. "Values larger than 26 will start to produce sharp cutoffs at cloud area "
  3726. "corners."
  3727. msgstr ""
  3728. #: src/settings_translation_file.cpp
  3729. msgid "Raises terrain to make valleys around the rivers."
  3730. msgstr ""
  3731. #: src/settings_translation_file.cpp
  3732. msgid "Random input"
  3733. msgstr ""
  3734. #: src/settings_translation_file.cpp
  3735. msgid "Recent Chat Messages"
  3736. msgstr ""
  3737. #: src/settings_translation_file.cpp
  3738. msgid "Regular font path"
  3739. msgstr ""
  3740. #: src/settings_translation_file.cpp
  3741. msgid "Remember screen size"
  3742. msgstr ""
  3743. #: src/settings_translation_file.cpp
  3744. msgid "Remote media"
  3745. msgstr ""
  3746. #: src/settings_translation_file.cpp
  3747. msgid ""
  3748. "Remove color codes from incoming chat messages\n"
  3749. "Use this to stop players from being able to use color in their messages"
  3750. msgstr ""
  3751. #: src/settings_translation_file.cpp
  3752. msgid "Replaces the default main menu with a custom one."
  3753. msgstr ""
  3754. #: src/settings_translation_file.cpp
  3755. msgid "Report path"
  3756. msgstr ""
  3757. #: src/settings_translation_file.cpp
  3758. msgid ""
  3759. "Restricts the access of certain client-side functions on servers.\n"
  3760. "Combine the byteflags below to restrict client-side features, or set to 0\n"
  3761. "for no restrictions:\n"
  3762. "LOAD_CLIENT_MODS: 1 (disable loading client-provided mods)\n"
  3763. "CHAT_MESSAGES: 2 (disable send_chat_message call client-side)\n"
  3764. "READ_ITEMDEFS: 4 (disable get_item_def call client-side)\n"
  3765. "READ_NODEDEFS: 8 (disable get_node_def call client-side)\n"
  3766. "LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to\n"
  3767. "csm_restriction_noderange)\n"
  3768. "READ_PLAYERINFO: 32 (disable get_player_names call client-side)"
  3769. msgstr ""
  3770. #: src/settings_translation_file.cpp
  3771. msgid "Ridge mountain spread noise"
  3772. msgstr ""
  3773. #: src/settings_translation_file.cpp
  3774. msgid "Ridge noise"
  3775. msgstr ""
  3776. #: src/settings_translation_file.cpp
  3777. msgid "Ridge underwater noise"
  3778. msgstr ""
  3779. #: src/settings_translation_file.cpp
  3780. msgid "Ridged mountain size noise"
  3781. msgstr ""
  3782. #: src/settings_translation_file.cpp
  3783. msgid "River channel depth"
  3784. msgstr ""
  3785. #: src/settings_translation_file.cpp
  3786. msgid "River channel width"
  3787. msgstr ""
  3788. #: src/settings_translation_file.cpp
  3789. msgid "River depth"
  3790. msgstr ""
  3791. #: src/settings_translation_file.cpp
  3792. msgid "River noise"
  3793. msgstr ""
  3794. #: src/settings_translation_file.cpp
  3795. msgid "River size"
  3796. msgstr ""
  3797. #: src/settings_translation_file.cpp
  3798. msgid "River valley width"
  3799. msgstr ""
  3800. #: src/settings_translation_file.cpp
  3801. msgid "Rollback recording"
  3802. msgstr ""
  3803. #: src/settings_translation_file.cpp
  3804. msgid "Rolling hill size noise"
  3805. msgstr ""
  3806. #: src/settings_translation_file.cpp
  3807. msgid "Rolling hills spread noise"
  3808. msgstr ""
  3809. #: src/settings_translation_file.cpp
  3810. msgid "Safe digging and placing"
  3811. msgstr ""
  3812. #: src/settings_translation_file.cpp
  3813. msgid "Sandy beaches occur when np_beach exceeds this value."
  3814. msgstr ""
  3815. #: src/settings_translation_file.cpp
  3816. msgid "Save the map received by the client on disk."
  3817. msgstr ""
  3818. #: src/settings_translation_file.cpp
  3819. msgid ""
  3820. "Save window size automatically when modified.\n"
  3821. "If true, screen size is saved in screen_w and screen_h, and whether the "
  3822. "window\n"
  3823. "is maximized is stored in window_maximized.\n"
  3824. "(Autosaving window_maximized only works if compiled with SDL.)"
  3825. msgstr ""
  3826. #: src/settings_translation_file.cpp
  3827. msgid "Saving map received from server"
  3828. msgstr ""
  3829. #: src/settings_translation_file.cpp
  3830. msgid ""
  3831. "Scale GUI by a user specified value.\n"
  3832. "Use a nearest-neighbor-anti-alias filter to scale the GUI.\n"
  3833. "This will smooth over some of the rough edges, and blend\n"
  3834. "pixels when scaling down, at the cost of blurring some\n"
  3835. "edge pixels when images are scaled by non-integer sizes."
  3836. msgstr ""
  3837. #: src/settings_translation_file.cpp
  3838. msgid "Screen"
  3839. msgstr "Sgrîn"
  3840. #: src/settings_translation_file.cpp
  3841. msgid "Screen height"
  3842. msgstr ""
  3843. #: src/settings_translation_file.cpp
  3844. msgid "Screen width"
  3845. msgstr ""
  3846. #: src/settings_translation_file.cpp
  3847. msgid "Screenshot folder"
  3848. msgstr ""
  3849. #: src/settings_translation_file.cpp
  3850. msgid "Screenshot format"
  3851. msgstr ""
  3852. #: src/settings_translation_file.cpp
  3853. msgid "Screenshot quality"
  3854. msgstr ""
  3855. #: src/settings_translation_file.cpp
  3856. msgid ""
  3857. "Screenshot quality. Only used for JPEG format.\n"
  3858. "1 means worst quality; 100 means best quality.\n"
  3859. "Use 0 for default quality."
  3860. msgstr ""
  3861. #: src/settings_translation_file.cpp
  3862. msgid "Screenshots"
  3863. msgstr "Sgrinluniau"
  3864. #: src/settings_translation_file.cpp
  3865. msgid "Seabed noise"
  3866. msgstr ""
  3867. #: src/settings_translation_file.cpp
  3868. msgid "Second of 4 2D noises that together define hill/mountain range height."
  3869. msgstr ""
  3870. #: src/settings_translation_file.cpp
  3871. msgid "Second of two 3D noises that together define tunnels."
  3872. msgstr ""
  3873. #: src/settings_translation_file.cpp
  3874. msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous"
  3875. msgstr ""
  3876. #: src/settings_translation_file.cpp
  3877. msgid ""
  3878. "Select the antialiasing method to apply.\n"
  3879. "\n"
  3880. "* None - No antialiasing (default)\n"
  3881. "\n"
  3882. "* FSAA - Hardware-provided full-screen antialiasing (incompatible with "
  3883. "shaders)\n"
  3884. "A.K.A multi-sample antialiasing (MSAA)\n"
  3885. "Smoothens out block edges but does not affect the insides of textures.\n"
  3886. "A restart is required to change this option.\n"
  3887. "\n"
  3888. "* FXAA - Fast approximate antialiasing (requires shaders)\n"
  3889. "Applies a post-processing filter to detect and smoothen high-contrast "
  3890. "edges.\n"
  3891. "Provides balance between speed and image quality.\n"
  3892. "\n"
  3893. "* SSAA - Super-sampling antialiasing (requires shaders)\n"
  3894. "Renders higher-resolution image of the scene, then scales down to reduce\n"
  3895. "the aliasing effects. This is the slowest and the most accurate method."
  3896. msgstr ""
  3897. #: src/settings_translation_file.cpp
  3898. msgid "Selection box border color (R,G,B)."
  3899. msgstr ""
  3900. #: src/settings_translation_file.cpp
  3901. msgid "Selection box color"
  3902. msgstr ""
  3903. #: src/settings_translation_file.cpp
  3904. msgid "Selection box width"
  3905. msgstr ""
  3906. #: src/settings_translation_file.cpp
  3907. msgid ""
  3908. "Selects one of 18 fractal types.\n"
  3909. "1 = 4D \"Roundy\" Mandelbrot set.\n"
  3910. "2 = 4D \"Roundy\" Julia set.\n"
  3911. "3 = 4D \"Squarry\" Mandelbrot set.\n"
  3912. "4 = 4D \"Squarry\" Julia set.\n"
  3913. "5 = 4D \"Mandy Cousin\" Mandelbrot set.\n"
  3914. "6 = 4D \"Mandy Cousin\" Julia set.\n"
  3915. "7 = 4D \"Variation\" Mandelbrot set.\n"
  3916. "8 = 4D \"Variation\" Julia set.\n"
  3917. "9 = 3D \"Mandelbrot/Mandelbar\" Mandelbrot set.\n"
  3918. "10 = 3D \"Mandelbrot/Mandelbar\" Julia set.\n"
  3919. "11 = 3D \"Christmas Tree\" Mandelbrot set.\n"
  3920. "12 = 3D \"Christmas Tree\" Julia set.\n"
  3921. "13 = 3D \"Mandelbulb\" Mandelbrot set.\n"
  3922. "14 = 3D \"Mandelbulb\" Julia set.\n"
  3923. "15 = 3D \"Cosine Mandelbulb\" Mandelbrot set.\n"
  3924. "16 = 3D \"Cosine Mandelbulb\" Julia set.\n"
  3925. "17 = 4D \"Mandelbulb\" Mandelbrot set.\n"
  3926. "18 = 4D \"Mandelbulb\" Julia set."
  3927. msgstr ""
  3928. #: src/settings_translation_file.cpp
  3929. msgid "Server"
  3930. msgstr "Gweinydd"
  3931. #: src/settings_translation_file.cpp
  3932. msgid "Server Gameplay"
  3933. msgstr ""
  3934. #: src/settings_translation_file.cpp
  3935. msgid "Server Security"
  3936. msgstr ""
  3937. #: src/settings_translation_file.cpp
  3938. msgid "Server URL"
  3939. msgstr ""
  3940. #: src/settings_translation_file.cpp
  3941. msgid "Server address"
  3942. msgstr ""
  3943. #: src/settings_translation_file.cpp
  3944. msgid "Server description"
  3945. msgstr ""
  3946. #: src/settings_translation_file.cpp
  3947. msgid "Server name"
  3948. msgstr ""
  3949. #: src/settings_translation_file.cpp
  3950. msgid "Server port"
  3951. msgstr ""
  3952. #: src/settings_translation_file.cpp
  3953. msgid "Server-side occlusion culling"
  3954. msgstr ""
  3955. #: src/settings_translation_file.cpp
  3956. msgid "Server/Env Performance"
  3957. msgstr ""
  3958. #: src/settings_translation_file.cpp
  3959. msgid "Serverlist URL"
  3960. msgstr ""
  3961. #: src/settings_translation_file.cpp
  3962. msgid "Serverlist and MOTD"
  3963. msgstr ""
  3964. #: src/settings_translation_file.cpp
  3965. msgid "Serverlist file"
  3966. msgstr ""
  3967. #: src/settings_translation_file.cpp
  3968. msgid ""
  3969. "Set the default tilt of Sun/Moon orbit in degrees.\n"
  3970. "Games may change orbit tilt via API.\n"
  3971. "Value of 0 means no tilt / vertical orbit."
  3972. msgstr ""
  3973. #: src/settings_translation_file.cpp
  3974. msgid ""
  3975. "Set the exposure compensation in EV units.\n"
  3976. "Value of 0.0 (default) means no exposure compensation.\n"
  3977. "Range: from -1 to 1.0"
  3978. msgstr ""
  3979. #: src/settings_translation_file.cpp
  3980. msgid ""
  3981. "Set the language. Leave empty to use the system language.\n"
  3982. "A restart is required after changing this."
  3983. msgstr ""
  3984. #: src/settings_translation_file.cpp
  3985. msgid ""
  3986. "Set the maximum length of a chat message (in characters) sent by clients."
  3987. msgstr ""
  3988. #: src/settings_translation_file.cpp
  3989. msgid ""
  3990. "Set the shadow strength gamma.\n"
  3991. "Adjusts the intensity of in-game dynamic shadows.\n"
  3992. "Lower value means lighter shadows, higher value means darker shadows."
  3993. msgstr ""
  3994. #: src/settings_translation_file.cpp
  3995. msgid ""
  3996. "Set the soft shadow radius size.\n"
  3997. "Lower values mean sharper shadows, bigger values mean softer shadows.\n"
  3998. "Minimum value: 1.0; maximum value: 15.0"
  3999. msgstr ""
  4000. #: src/settings_translation_file.cpp
  4001. msgid "Set to true to enable Shadow Mapping."
  4002. msgstr ""
  4003. #: src/settings_translation_file.cpp
  4004. msgid ""
  4005. "Set to true to enable bloom effect.\n"
  4006. "Bright colors will bleed over the neighboring objects."
  4007. msgstr ""
  4008. #: src/settings_translation_file.cpp
  4009. msgid "Set to true to enable waving leaves."
  4010. msgstr ""
  4011. #: src/settings_translation_file.cpp
  4012. msgid "Set to true to enable waving liquids (like water)."
  4013. msgstr ""
  4014. #: src/settings_translation_file.cpp
  4015. msgid "Set to true to enable waving plants."
  4016. msgstr ""
  4017. #: src/settings_translation_file.cpp
  4018. msgid ""
  4019. "Set to true to render debugging breakdown of the bloom effect.\n"
  4020. "In debug mode, the screen is split into 4 quadrants:\n"
  4021. "top-left - processed base image, top-right - final image\n"
  4022. "bottom-left - raw base image, bottom-right - bloom texture."
  4023. msgstr ""
  4024. #: src/settings_translation_file.cpp
  4025. msgid ""
  4026. "Sets shadow texture quality to 32 bits.\n"
  4027. "On false, 16 bits texture will be used.\n"
  4028. "This can cause much more artifacts in the shadow."
  4029. msgstr ""
  4030. #: src/settings_translation_file.cpp
  4031. msgid "Shader path"
  4032. msgstr ""
  4033. #: src/settings_translation_file.cpp
  4034. msgid "Shaders"
  4035. msgstr ""
  4036. #: src/settings_translation_file.cpp
  4037. msgid ""
  4038. "Shaders allow advanced visual effects and may increase performance on some "
  4039. "video\n"
  4040. "cards.\n"
  4041. "This only works with the OpenGL video backend."
  4042. msgstr ""
  4043. #: src/settings_translation_file.cpp
  4044. msgid "Shadow filter quality"
  4045. msgstr ""
  4046. #: src/settings_translation_file.cpp
  4047. msgid "Shadow map max distance in nodes to render shadows"
  4048. msgstr ""
  4049. #: src/settings_translation_file.cpp
  4050. msgid "Shadow map texture in 32 bits"
  4051. msgstr ""
  4052. #: src/settings_translation_file.cpp
  4053. msgid "Shadow map texture size"
  4054. msgstr ""
  4055. #: src/settings_translation_file.cpp
  4056. msgid ""
  4057. "Shadow offset (in pixels) of the default font. If 0, then shadow will not be "
  4058. "drawn."
  4059. msgstr ""
  4060. #: src/settings_translation_file.cpp
  4061. msgid "Shadow strength gamma"
  4062. msgstr ""
  4063. #: src/settings_translation_file.cpp
  4064. msgid "Show debug info"
  4065. msgstr ""
  4066. #: src/settings_translation_file.cpp
  4067. msgid "Show entity selection boxes"
  4068. msgstr ""
  4069. #: src/settings_translation_file.cpp
  4070. msgid ""
  4071. "Show entity selection boxes\n"
  4072. "A restart is required after changing this."
  4073. msgstr ""
  4074. #: src/settings_translation_file.cpp
  4075. msgid "Show name tag backgrounds by default"
  4076. msgstr ""
  4077. #: src/settings_translation_file.cpp
  4078. msgid "Shutdown message"
  4079. msgstr ""
  4080. #: src/settings_translation_file.cpp
  4081. msgid ""
  4082. "Side length of a cube of map blocks that the client will consider together\n"
  4083. "when generating meshes.\n"
  4084. "Larger values increase the utilization of the GPU by reducing the number of\n"
  4085. "draw calls, benefiting especially high-end GPUs.\n"
  4086. "Systems with a low-end GPU (or no GPU) would benefit from smaller values."
  4087. msgstr ""
  4088. #: src/settings_translation_file.cpp
  4089. msgid ""
  4090. "Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n"
  4091. "WARNING: There is no benefit, and there are several dangers, in\n"
  4092. "increasing this value above 5.\n"
  4093. "Reducing this value increases cave and dungeon density.\n"
  4094. "Altering this value is for special usage, leaving it unchanged is\n"
  4095. "recommended."
  4096. msgstr ""
  4097. #: src/settings_translation_file.cpp
  4098. msgid ""
  4099. "Size of the MapBlock cache of the mesh generator. Increasing this will\n"
  4100. "increase the cache hit %, reducing the data being copied from the main\n"
  4101. "thread, thus reducing jitter."
  4102. msgstr ""
  4103. #: src/settings_translation_file.cpp
  4104. msgid "Sky Body Orbit Tilt"
  4105. msgstr ""
  4106. #: src/settings_translation_file.cpp
  4107. msgid "Slice w"
  4108. msgstr ""
  4109. #: src/settings_translation_file.cpp
  4110. msgid "Slope and fill work together to modify the heights."
  4111. msgstr ""
  4112. #: src/settings_translation_file.cpp
  4113. msgid "Small cave maximum number"
  4114. msgstr ""
  4115. #: src/settings_translation_file.cpp
  4116. msgid "Small cave minimum number"
  4117. msgstr ""
  4118. #: src/settings_translation_file.cpp
  4119. msgid "Small-scale humidity variation for blending biomes on borders."
  4120. msgstr ""
  4121. #: src/settings_translation_file.cpp
  4122. msgid "Small-scale temperature variation for blending biomes on borders."
  4123. msgstr ""
  4124. #: src/settings_translation_file.cpp
  4125. msgid "Smooth lighting"
  4126. msgstr ""
  4127. #: src/settings_translation_file.cpp
  4128. msgid ""
  4129. "Smooths rotation of camera when in cinematic mode, 0 to disable. Enter "
  4130. "cinematic mode by using the key set in Change Keys."
  4131. msgstr ""
  4132. #: src/settings_translation_file.cpp
  4133. msgid ""
  4134. "Smooths rotation of camera, also called look or mouse smoothing. 0 to "
  4135. "disable."
  4136. msgstr ""
  4137. #: src/settings_translation_file.cpp
  4138. msgid "Sneaking speed"
  4139. msgstr ""
  4140. #: src/settings_translation_file.cpp
  4141. msgid "Sneaking speed, in nodes per second."
  4142. msgstr ""
  4143. #: src/settings_translation_file.cpp
  4144. msgid "Soft shadow radius"
  4145. msgstr ""
  4146. #: src/settings_translation_file.cpp
  4147. msgid ""
  4148. "Specifies URL from which client fetches media instead of using UDP.\n"
  4149. "$filename should be accessible from $remote_media$filename via cURL\n"
  4150. "(obviously, remote_media should end with a slash).\n"
  4151. "Files that are not present will be fetched the usual way."
  4152. msgstr ""
  4153. #: src/settings_translation_file.cpp
  4154. msgid ""
  4155. "Specifies the default stack size of nodes, items and tools.\n"
  4156. "Note that mods or games may explicitly set a stack for certain (or all) "
  4157. "items."
  4158. msgstr ""
  4159. #: src/settings_translation_file.cpp
  4160. msgid ""
  4161. "Spread a complete update of shadow map over given number of frames.\n"
  4162. "Higher values might make shadows laggy, lower values\n"
  4163. "will consume more resources.\n"
  4164. "Minimum value: 1; maximum value: 16"
  4165. msgstr ""
  4166. #: src/settings_translation_file.cpp
  4167. msgid ""
  4168. "Spread of light curve boost range.\n"
  4169. "Controls the width of the range to be boosted.\n"
  4170. "Standard deviation of the light curve boost Gaussian."
  4171. msgstr ""
  4172. #: src/settings_translation_file.cpp
  4173. msgid "Static spawn point"
  4174. msgstr ""
  4175. #: src/settings_translation_file.cpp
  4176. msgid "Steepness noise"
  4177. msgstr ""
  4178. #: src/settings_translation_file.cpp
  4179. msgid "Step mountain size noise"
  4180. msgstr ""
  4181. #: src/settings_translation_file.cpp
  4182. msgid "Step mountain spread noise"
  4183. msgstr ""
  4184. #: src/settings_translation_file.cpp
  4185. msgid "Strength of 3D mode parallax."
  4186. msgstr ""
  4187. #: src/settings_translation_file.cpp
  4188. msgid ""
  4189. "Strength of light curve boost.\n"
  4190. "The 3 'boost' parameters define a range of the light\n"
  4191. "curve that is boosted in brightness."
  4192. msgstr ""
  4193. #: src/settings_translation_file.cpp
  4194. msgid "Strict protocol checking"
  4195. msgstr ""
  4196. #: src/settings_translation_file.cpp
  4197. msgid "Strip color codes"
  4198. msgstr ""
  4199. #: src/settings_translation_file.cpp
  4200. msgid ""
  4201. "Surface level of optional water placed on a solid floatland layer.\n"
  4202. "Water is disabled by default and will only be placed if this value is set\n"
  4203. "to above 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (the start of the\n"
  4204. "upper tapering).\n"
  4205. "***WARNING, POTENTIAL DANGER TO WORLDS AND SERVER PERFORMANCE***:\n"
  4206. "When enabling water placement, floatlands must be configured and tested\n"
  4207. "to be a solid layer by setting 'mgv7_floatland_density' to 2.0 (or other\n"
  4208. "required value depending on 'mgv7_np_floatland'), to avoid\n"
  4209. "server-intensive extreme water flow and to avoid vast flooding of the\n"
  4210. "world surface below."
  4211. msgstr ""
  4212. #: src/settings_translation_file.cpp
  4213. msgid "Synchronous SQLite"
  4214. msgstr ""
  4215. #: src/settings_translation_file.cpp
  4216. msgid "Temperature variation for biomes."
  4217. msgstr ""
  4218. #: src/settings_translation_file.cpp
  4219. msgid "Terrain alternative noise"
  4220. msgstr ""
  4221. #: src/settings_translation_file.cpp
  4222. msgid "Terrain base noise"
  4223. msgstr ""
  4224. #: src/settings_translation_file.cpp
  4225. msgid "Terrain height"
  4226. msgstr ""
  4227. #: src/settings_translation_file.cpp
  4228. msgid "Terrain higher noise"
  4229. msgstr ""
  4230. #: src/settings_translation_file.cpp
  4231. msgid "Terrain noise"
  4232. msgstr ""
  4233. #: src/settings_translation_file.cpp
  4234. msgid ""
  4235. "Terrain noise threshold for hills.\n"
  4236. "Controls proportion of world area covered by hills.\n"
  4237. "Adjust towards 0.0 for a larger proportion."
  4238. msgstr ""
  4239. #: src/settings_translation_file.cpp
  4240. msgid ""
  4241. "Terrain noise threshold for lakes.\n"
  4242. "Controls proportion of world area covered by lakes.\n"
  4243. "Adjust towards 0.0 for a larger proportion."
  4244. msgstr ""
  4245. #: src/settings_translation_file.cpp
  4246. msgid "Terrain persistence noise"
  4247. msgstr ""
  4248. #: src/settings_translation_file.cpp
  4249. msgid ""
  4250. "Texture size to render the shadow map on.\n"
  4251. "This must be a power of two.\n"
  4252. "Bigger numbers create better shadows but it is also more expensive."
  4253. msgstr ""
  4254. #: src/settings_translation_file.cpp
  4255. msgid ""
  4256. "Textures on a node may be aligned either to the node or to the world.\n"
  4257. "The former mode suits better things like machines, furniture, etc., while\n"
  4258. "the latter makes stairs and microblocks fit surroundings better.\n"
  4259. "However, as this possibility is new, thus may not be used by older servers,\n"
  4260. "this option allows enforcing it for certain node types. Note though that\n"
  4261. "that is considered EXPERIMENTAL and may not work properly."
  4262. msgstr ""
  4263. #: src/settings_translation_file.cpp
  4264. msgid "The URL for the content repository"
  4265. msgstr ""
  4266. #: src/settings_translation_file.cpp
  4267. msgid "The dead zone of the joystick"
  4268. msgstr ""
  4269. #: src/settings_translation_file.cpp
  4270. msgid ""
  4271. "The default format in which profiles are being saved,\n"
  4272. "when calling `/profiler save [format]` without format."
  4273. msgstr ""
  4274. #: src/settings_translation_file.cpp
  4275. msgid ""
  4276. "The file path relative to your world path in which profiles will be saved to."
  4277. msgstr ""
  4278. #: src/settings_translation_file.cpp
  4279. msgid "The identifier of the joystick to use"
  4280. msgstr ""
  4281. #: src/settings_translation_file.cpp
  4282. msgid "The length in pixels it takes for touchscreen interaction to start."
  4283. msgstr ""
  4284. #: src/settings_translation_file.cpp
  4285. msgid ""
  4286. "The maximum height of the surface of waving liquids.\n"
  4287. "4.0 = Wave height is two nodes.\n"
  4288. "0.0 = Wave doesn't move at all.\n"
  4289. "Default is 1.0 (1/2 node)."
  4290. msgstr ""
  4291. #: src/settings_translation_file.cpp
  4292. msgid "The network interface that the server listens on."
  4293. msgstr ""
  4294. #: src/settings_translation_file.cpp
  4295. msgid ""
  4296. "The privileges that new users automatically get.\n"
  4297. "See /privs in game for a full list on your server and mod configuration."
  4298. msgstr ""
  4299. #: src/settings_translation_file.cpp
  4300. msgid ""
  4301. "The radius of the volume of blocks around every player that is subject to "
  4302. "the\n"
  4303. "active block stuff, stated in mapblocks (16 nodes).\n"
  4304. "In active blocks objects are loaded and ABMs run.\n"
  4305. "This is also the minimum range in which active objects (mobs) are "
  4306. "maintained.\n"
  4307. "This should be configured together with active_object_send_range_blocks."
  4308. msgstr ""
  4309. #: src/settings_translation_file.cpp
  4310. msgid ""
  4311. "The rendering back-end.\n"
  4312. "Note: A restart is required after changing this!\n"
  4313. "OpenGL is the default for desktop, and OGLES2 for Android.\n"
  4314. "Shaders are supported by OpenGL and OGLES2 (experimental)."
  4315. msgstr ""
  4316. #: src/settings_translation_file.cpp
  4317. msgid ""
  4318. "The sensitivity of the joystick axes for moving the\n"
  4319. "in-game view frustum around."
  4320. msgstr ""
  4321. #: src/settings_translation_file.cpp
  4322. msgid ""
  4323. "The strength (darkness) of node ambient-occlusion shading.\n"
  4324. "Lower is darker, Higher is lighter. The valid range of values for this\n"
  4325. "setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n"
  4326. "set to the nearest valid value."
  4327. msgstr ""
  4328. #: src/settings_translation_file.cpp
  4329. msgid ""
  4330. "The time (in seconds) that the liquids queue may grow beyond processing\n"
  4331. "capacity until an attempt is made to decrease its size by dumping old queue\n"
  4332. "items. A value of 0 disables the functionality."
  4333. msgstr ""
  4334. #: src/settings_translation_file.cpp
  4335. msgid ""
  4336. "The time budget allowed for ABMs to execute on each step\n"
  4337. "(as a fraction of the ABM Interval)"
  4338. msgstr ""
  4339. #: src/settings_translation_file.cpp
  4340. msgid ""
  4341. "The time in seconds it takes between repeated events\n"
  4342. "when holding down a joystick button combination."
  4343. msgstr ""
  4344. #: src/settings_translation_file.cpp
  4345. msgid ""
  4346. "The time in seconds it takes between repeated node placements when holding\n"
  4347. "the place button."
  4348. msgstr ""
  4349. #: src/settings_translation_file.cpp
  4350. msgid "The type of joystick"
  4351. msgstr ""
  4352. #: src/settings_translation_file.cpp
  4353. msgid ""
  4354. "The vertical distance over which heat drops by 20 if 'altitude_chill' is\n"
  4355. "enabled. Also, the vertical distance over which humidity drops by 10 if\n"
  4356. "'altitude_dry' is enabled."
  4357. msgstr ""
  4358. #: src/settings_translation_file.cpp
  4359. msgid "Third of 4 2D noises that together define hill/mountain range height."
  4360. msgstr ""
  4361. #: src/settings_translation_file.cpp
  4362. msgid ""
  4363. "Time in seconds for item entity (dropped items) to live.\n"
  4364. "Setting it to -1 disables the feature."
  4365. msgstr ""
  4366. #: src/settings_translation_file.cpp
  4367. msgid "Time of day when a new world is started, in millihours (0-23999)."
  4368. msgstr ""
  4369. #: src/settings_translation_file.cpp
  4370. msgid "Time send interval"
  4371. msgstr ""
  4372. #: src/settings_translation_file.cpp
  4373. msgid "Time speed"
  4374. msgstr ""
  4375. #: src/settings_translation_file.cpp
  4376. msgid "Timeout for client to remove unused map data from memory, in seconds."
  4377. msgstr ""
  4378. #: src/settings_translation_file.cpp
  4379. msgid ""
  4380. "To reduce lag, block transfers are slowed down when a player is building "
  4381. "something.\n"
  4382. "This determines how long they are slowed down after placing or removing a "
  4383. "node."
  4384. msgstr ""
  4385. #: src/settings_translation_file.cpp
  4386. msgid "Tooltip delay"
  4387. msgstr ""
  4388. #: src/settings_translation_file.cpp
  4389. msgid "Touchscreen"
  4390. msgstr "Sgrîn gyffwrdd"
  4391. #: src/settings_translation_file.cpp
  4392. #, fuzzy
  4393. msgid "Touchscreen sensitivity"
  4394. msgstr "Sgrîn gyffwrdd"
  4395. #: src/settings_translation_file.cpp
  4396. msgid "Touchscreen sensitivity multiplier."
  4397. msgstr ""
  4398. #: src/settings_translation_file.cpp
  4399. #, fuzzy
  4400. msgid "Touchscreen threshold"
  4401. msgstr "Sgrîn gyffwrdd"
  4402. #: src/settings_translation_file.cpp
  4403. msgid "Tradeoffs for performance"
  4404. msgstr ""
  4405. #: src/settings_translation_file.cpp
  4406. msgid "Transparency Sorting Distance"
  4407. msgstr ""
  4408. #: src/settings_translation_file.cpp
  4409. msgid "Trees noise"
  4410. msgstr ""
  4411. #: src/settings_translation_file.cpp
  4412. msgid "Trilinear filtering"
  4413. msgstr ""
  4414. #: src/settings_translation_file.cpp
  4415. msgid ""
  4416. "True = 256\n"
  4417. "False = 128\n"
  4418. "Usable to make minimap smoother on slower machines."
  4419. msgstr ""
  4420. #: src/settings_translation_file.cpp
  4421. msgid "Trusted mods"
  4422. msgstr ""
  4423. #: src/settings_translation_file.cpp
  4424. msgid ""
  4425. "Type of occlusion_culler\n"
  4426. "\n"
  4427. "\"loops\" is the legacy algorithm with nested loops and O(n³) complexity\n"
  4428. "\"bfs\" is the new algorithm based on breadth-first-search and side culling\n"
  4429. "\n"
  4430. "This setting should only be changed if you have performance problems."
  4431. msgstr ""
  4432. #: src/settings_translation_file.cpp
  4433. msgid ""
  4434. "URL to JSON file which provides information about the newest Minetest release"
  4435. msgstr ""
  4436. #: src/settings_translation_file.cpp
  4437. msgid "URL to the server list displayed in the Multiplayer Tab."
  4438. msgstr ""
  4439. #: src/settings_translation_file.cpp
  4440. msgid "Undersampling"
  4441. msgstr ""
  4442. #: src/settings_translation_file.cpp
  4443. msgid ""
  4444. "Undersampling is similar to using a lower screen resolution, but it applies\n"
  4445. "to the game world only, keeping the GUI intact.\n"
  4446. "It should give a significant performance boost at the cost of less detailed "
  4447. "image.\n"
  4448. "Higher values result in a less detailed image."
  4449. msgstr ""
  4450. #: src/settings_translation_file.cpp
  4451. msgid "Unlimited player transfer distance"
  4452. msgstr ""
  4453. #: src/settings_translation_file.cpp
  4454. msgid "Unload unused server data"
  4455. msgstr ""
  4456. #: src/settings_translation_file.cpp
  4457. msgid "Update information URL"
  4458. msgstr ""
  4459. #: src/settings_translation_file.cpp
  4460. msgid "Upper Y limit of dungeons."
  4461. msgstr ""
  4462. #: src/settings_translation_file.cpp
  4463. msgid "Upper Y limit of floatlands."
  4464. msgstr ""
  4465. #: src/settings_translation_file.cpp
  4466. msgid "Use 3D cloud look instead of flat."
  4467. msgstr ""
  4468. #: src/settings_translation_file.cpp
  4469. msgid "Use a cloud animation for the main menu background."
  4470. msgstr ""
  4471. #: src/settings_translation_file.cpp
  4472. msgid "Use anisotropic filtering when looking at textures from an angle."
  4473. msgstr ""
  4474. #: src/settings_translation_file.cpp
  4475. msgid "Use bilinear filtering when scaling textures."
  4476. msgstr ""
  4477. #: src/settings_translation_file.cpp
  4478. msgid "Use crosshair for touch screen"
  4479. msgstr ""
  4480. #: src/settings_translation_file.cpp
  4481. msgid ""
  4482. "Use crosshair to select object instead of whole screen.\n"
  4483. "If enabled, a crosshair will be shown and will be used for selecting object."
  4484. msgstr ""
  4485. #: src/settings_translation_file.cpp
  4486. msgid ""
  4487. "Use mipmaps when scaling textures. May slightly increase performance,\n"
  4488. "especially when using a high-resolution texture pack.\n"
  4489. "Gamma-correct downscaling is not supported."
  4490. msgstr ""
  4491. #: src/settings_translation_file.cpp
  4492. msgid ""
  4493. "Use raytraced occlusion culling in the new culler.\n"
  4494. "This flag enables use of raytraced occlusion culling test for\n"
  4495. "client mesh sizes smaller than 4x4x4 map blocks."
  4496. msgstr ""
  4497. #: src/settings_translation_file.cpp
  4498. msgid ""
  4499. "Use trilinear filtering when scaling textures.\n"
  4500. "If both bilinear and trilinear filtering are enabled, trilinear filtering\n"
  4501. "is applied."
  4502. msgstr ""
  4503. #: src/settings_translation_file.cpp
  4504. msgid ""
  4505. "Use virtual joystick to trigger \"Aux1\" button.\n"
  4506. "If enabled, virtual joystick will also tap \"Aux1\" button when out of main "
  4507. "circle."
  4508. msgstr ""
  4509. #: src/settings_translation_file.cpp
  4510. msgid "User Interfaces"
  4511. msgstr ""
  4512. #: src/settings_translation_file.cpp
  4513. #, fuzzy
  4514. msgid "VBO"
  4515. msgstr "VBO"
  4516. #: src/settings_translation_file.cpp
  4517. msgid "VSync"
  4518. msgstr "VSync"
  4519. #: src/settings_translation_file.cpp
  4520. msgid "Valley depth"
  4521. msgstr ""
  4522. #: src/settings_translation_file.cpp
  4523. msgid "Valley fill"
  4524. msgstr ""
  4525. #: src/settings_translation_file.cpp
  4526. msgid "Valley profile"
  4527. msgstr ""
  4528. #: src/settings_translation_file.cpp
  4529. msgid "Valley slope"
  4530. msgstr ""
  4531. #: src/settings_translation_file.cpp
  4532. msgid "Variation of biome filler depth."
  4533. msgstr ""
  4534. #: src/settings_translation_file.cpp
  4535. msgid "Variation of maximum mountain height (in nodes)."
  4536. msgstr ""
  4537. #: src/settings_translation_file.cpp
  4538. msgid "Variation of number of caves."
  4539. msgstr ""
  4540. #: src/settings_translation_file.cpp
  4541. msgid ""
  4542. "Variation of terrain vertical scale.\n"
  4543. "When noise is < -0.55 terrain is near-flat."
  4544. msgstr ""
  4545. #: src/settings_translation_file.cpp
  4546. msgid "Varies depth of biome surface nodes."
  4547. msgstr ""
  4548. #: src/settings_translation_file.cpp
  4549. msgid ""
  4550. "Varies roughness of terrain.\n"
  4551. "Defines the 'persistence' value for terrain_base and terrain_alt noises."
  4552. msgstr ""
  4553. #: src/settings_translation_file.cpp
  4554. msgid "Varies steepness of cliffs."
  4555. msgstr ""
  4556. #: src/settings_translation_file.cpp
  4557. msgid "Vertical climbing speed, in nodes per second."
  4558. msgstr ""
  4559. #: src/settings_translation_file.cpp
  4560. msgid ""
  4561. "Vertical screen synchronization. Your system may still force VSync on even "
  4562. "if this is disabled."
  4563. msgstr ""
  4564. #: src/settings_translation_file.cpp
  4565. msgid "Video driver"
  4566. msgstr ""
  4567. #: src/settings_translation_file.cpp
  4568. msgid "View bobbing factor"
  4569. msgstr ""
  4570. #: src/settings_translation_file.cpp
  4571. msgid "View distance in nodes."
  4572. msgstr ""
  4573. #: src/settings_translation_file.cpp
  4574. msgid "Viewing range"
  4575. msgstr ""
  4576. #: src/settings_translation_file.cpp
  4577. msgid "Virtual joystick triggers Aux1 button"
  4578. msgstr ""
  4579. #: src/settings_translation_file.cpp
  4580. msgid "Volume"
  4581. msgstr "Lefel"
  4582. #: src/settings_translation_file.cpp
  4583. msgid ""
  4584. "Volume of all sounds.\n"
  4585. "Requires the sound system to be enabled."
  4586. msgstr ""
  4587. #: src/settings_translation_file.cpp
  4588. msgid ""
  4589. "W coordinate of the generated 3D slice of a 4D fractal.\n"
  4590. "Determines which 3D slice of the 4D shape is generated.\n"
  4591. "Alters the shape of the fractal.\n"
  4592. "Has no effect on 3D fractals.\n"
  4593. "Range roughly -2 to 2."
  4594. msgstr ""
  4595. #: src/settings_translation_file.cpp
  4596. msgid "Walking and flying speed, in nodes per second."
  4597. msgstr ""
  4598. #: src/settings_translation_file.cpp
  4599. msgid "Walking speed"
  4600. msgstr ""
  4601. #: src/settings_translation_file.cpp
  4602. msgid "Walking, flying and climbing speed in fast mode, in nodes per second."
  4603. msgstr ""
  4604. #: src/settings_translation_file.cpp
  4605. msgid "Water level"
  4606. msgstr ""
  4607. #: src/settings_translation_file.cpp
  4608. msgid "Water surface level of the world."
  4609. msgstr ""
  4610. #: src/settings_translation_file.cpp
  4611. msgid "Waving Nodes"
  4612. msgstr ""
  4613. #: src/settings_translation_file.cpp
  4614. msgid "Waving leaves"
  4615. msgstr ""
  4616. #: src/settings_translation_file.cpp
  4617. msgid "Waving liquids"
  4618. msgstr ""
  4619. #: src/settings_translation_file.cpp
  4620. msgid "Waving liquids wave height"
  4621. msgstr ""
  4622. #: src/settings_translation_file.cpp
  4623. msgid "Waving liquids wave speed"
  4624. msgstr ""
  4625. #: src/settings_translation_file.cpp
  4626. msgid "Waving liquids wavelength"
  4627. msgstr ""
  4628. #: src/settings_translation_file.cpp
  4629. msgid "Waving plants"
  4630. msgstr ""
  4631. #: src/settings_translation_file.cpp
  4632. msgid "Weblink color"
  4633. msgstr ""
  4634. #: src/settings_translation_file.cpp
  4635. msgid ""
  4636. "When gui_scaling_filter is true, all GUI images need to be\n"
  4637. "filtered in software, but some images are generated directly\n"
  4638. "to hardware (e.g. render-to-texture for nodes in inventory)."
  4639. msgstr ""
  4640. #: src/settings_translation_file.cpp
  4641. msgid ""
  4642. "When gui_scaling_filter_txr2img is true, copy those images\n"
  4643. "from hardware to software for scaling. When false, fall back\n"
  4644. "to the old scaling method, for video drivers that don't\n"
  4645. "properly support downloading textures back from hardware."
  4646. msgstr ""
  4647. #: src/settings_translation_file.cpp
  4648. msgid ""
  4649. "When using bilinear/trilinear/anisotropic filters, low-resolution textures\n"
  4650. "can be blurred, so automatically upscale them with nearest-neighbor\n"
  4651. "interpolation to preserve crisp pixels. This sets the minimum texture size\n"
  4652. "for the upscaled textures; higher values look sharper, but require more\n"
  4653. "memory. Powers of 2 are recommended. This setting is ONLY applied if\n"
  4654. "bilinear/trilinear/anisotropic filtering is enabled.\n"
  4655. "This is also used as the base node texture size for world-aligned\n"
  4656. "texture autoscaling."
  4657. msgstr ""
  4658. #: src/settings_translation_file.cpp
  4659. msgid ""
  4660. "Whether name tag backgrounds should be shown by default.\n"
  4661. "Mods may still set a background."
  4662. msgstr ""
  4663. #: src/settings_translation_file.cpp
  4664. msgid "Whether node texture animations should be desynchronized per mapblock."
  4665. msgstr ""
  4666. #: src/settings_translation_file.cpp
  4667. msgid ""
  4668. "Whether players are shown to clients without any range limit.\n"
  4669. "Deprecated, use the setting player_transfer_distance instead."
  4670. msgstr ""
  4671. #: src/settings_translation_file.cpp
  4672. msgid "Whether the window is maximized."
  4673. msgstr ""
  4674. #: src/settings_translation_file.cpp
  4675. msgid ""
  4676. "Whether to ask clients to reconnect after a (Lua) crash.\n"
  4677. "Set this to true if your server is set up to restart automatically."
  4678. msgstr ""
  4679. #: src/settings_translation_file.cpp
  4680. msgid "Whether to fog out the end of the visible area."
  4681. msgstr ""
  4682. #: src/settings_translation_file.cpp
  4683. msgid ""
  4684. "Whether to mute sounds. You can unmute sounds at any time, unless the\n"
  4685. "sound system is disabled (enable_sound=false).\n"
  4686. "In-game, you can toggle the mute state with the mute key or by using the\n"
  4687. "pause menu."
  4688. msgstr ""
  4689. #: src/settings_translation_file.cpp
  4690. msgid ""
  4691. "Whether to show the client debug info (has the same effect as hitting F5)."
  4692. msgstr ""
  4693. #: src/settings_translation_file.cpp
  4694. msgid "Width component of the initial window size."
  4695. msgstr ""
  4696. #: src/settings_translation_file.cpp
  4697. msgid "Width of the selection box lines around nodes."
  4698. msgstr ""
  4699. #: src/settings_translation_file.cpp
  4700. msgid "Window maximized"
  4701. msgstr ""
  4702. #: src/settings_translation_file.cpp
  4703. msgid ""
  4704. "Windows systems only: Start Minetest with the command line window in the "
  4705. "background.\n"
  4706. "Contains the same information as the file debug.txt (default name)."
  4707. msgstr ""
  4708. #: src/settings_translation_file.cpp
  4709. msgid ""
  4710. "World directory (everything in the world is stored here).\n"
  4711. "Not needed if starting from the main menu."
  4712. msgstr ""
  4713. #: src/settings_translation_file.cpp
  4714. msgid "World start time"
  4715. msgstr ""
  4716. #: src/settings_translation_file.cpp
  4717. msgid ""
  4718. "World-aligned textures may be scaled to span several nodes. However,\n"
  4719. "the server may not send the scale you want, especially if you use\n"
  4720. "a specially-designed texture pack; with this option, the client tries\n"
  4721. "to determine the scale automatically basing on the texture size.\n"
  4722. "See also texture_min_size.\n"
  4723. "Warning: This option is EXPERIMENTAL!"
  4724. msgstr ""
  4725. #: src/settings_translation_file.cpp
  4726. msgid "World-aligned textures mode"
  4727. msgstr ""
  4728. #: src/settings_translation_file.cpp
  4729. msgid "Y of flat ground."
  4730. msgstr ""
  4731. #: src/settings_translation_file.cpp
  4732. msgid ""
  4733. "Y of mountain density gradient zero level. Used to shift mountains "
  4734. "vertically."
  4735. msgstr ""
  4736. #: src/settings_translation_file.cpp
  4737. msgid "Y of upper limit of large caves."
  4738. msgstr ""
  4739. #: src/settings_translation_file.cpp
  4740. msgid "Y-distance over which caverns expand to full size."
  4741. msgstr ""
  4742. #: src/settings_translation_file.cpp
  4743. msgid ""
  4744. "Y-distance over which floatlands taper from full density to nothing.\n"
  4745. "Tapering starts at this distance from the Y limit.\n"
  4746. "For a solid floatland layer, this controls the height of hills/mountains.\n"
  4747. "Must be less than or equal to half the distance between the Y limits."
  4748. msgstr ""
  4749. #: src/settings_translation_file.cpp
  4750. msgid "Y-level of average terrain surface."
  4751. msgstr ""
  4752. #: src/settings_translation_file.cpp
  4753. msgid "Y-level of cavern upper limit."
  4754. msgstr ""
  4755. #: src/settings_translation_file.cpp
  4756. msgid "Y-level of higher terrain that creates cliffs."
  4757. msgstr ""
  4758. #: src/settings_translation_file.cpp
  4759. msgid "Y-level of lower terrain and seabed."
  4760. msgstr ""
  4761. #: src/settings_translation_file.cpp
  4762. msgid "Y-level of seabed."
  4763. msgstr ""
  4764. #: src/settings_translation_file.cpp
  4765. msgid "cURL"
  4766. msgstr "cURL"
  4767. #: src/settings_translation_file.cpp
  4768. msgid "cURL file download timeout"
  4769. msgstr ""
  4770. #: src/settings_translation_file.cpp
  4771. msgid "cURL interactive timeout"
  4772. msgstr ""
  4773. #: src/settings_translation_file.cpp
  4774. msgid "cURL parallel limit"
  4775. msgstr ""
  4776. #~ msgid "2x"
  4777. #~ msgstr "2x"
  4778. #~ msgid "3D Clouds"
  4779. #~ msgstr "Cymylau 3D"
  4780. #~ msgid "3d"
  4781. #~ msgstr "3d"
  4782. #~ msgid "4x"
  4783. #~ msgstr "4x"
  4784. #~ msgid "8x"
  4785. #~ msgstr "8x"
  4786. #~ msgid "All Settings"
  4787. #~ msgstr "Pob Gosodiad"
  4788. #, fuzzy
  4789. #~ msgid "Change keys"
  4790. #~ msgstr "Newid Bysellau"
  4791. #~ msgid "Creative"
  4792. #~ msgstr "Creadigol"
  4793. #~ msgid "Damage"
  4794. #~ msgstr "Difrod"
  4795. #~ msgid "Enabled"
  4796. #~ msgstr "Ymlaen"
  4797. #~ msgid "FSAA"
  4798. #~ msgstr "FSAA"
  4799. #~ msgid "Flying"
  4800. #~ msgstr "Hedfan"
  4801. #~ msgid "Information:"
  4802. #~ msgstr "Gwybodaeth:"
  4803. #~ msgid "Minimap"
  4804. #~ msgstr "Map bach"
  4805. #~ msgid "Mipmap"
  4806. #~ msgstr "Mipmap"
  4807. #~ msgid "Misc"
  4808. #~ msgstr "Amrywiol"
  4809. #~ msgid "No Filter"
  4810. #~ msgstr "Dim Hidlydd"
  4811. #~ msgid "No Mipmap"
  4812. #~ msgstr "Dim Mipmapio"
  4813. #~ msgid "Noclip"
  4814. #~ msgstr "Noclip"
  4815. #~ msgid "None"
  4816. #~ msgstr "Dim"
  4817. #~ msgid "Particles"
  4818. #~ msgstr "Gronynnau"
  4819. #~ msgid "Screen:"
  4820. #~ msgstr "Sgrîn:"
  4821. #~ msgid "Sound"
  4822. #~ msgstr "Sain"
  4823. #~ msgid "Texturing:"
  4824. #~ msgstr "Gweadau:"
  4825. #~ msgid "Uninstall Package"
  4826. #~ msgstr "Dadosod Pecyn"
  4827. #~ msgid "Up"
  4828. #~ msgstr "I fyny"
  4829. #~ msgid "X"
  4830. #~ msgstr "X"
  4831. #~ msgid "Y"
  4832. #~ msgstr "Y"
  4833. #~ msgid "Z"
  4834. #~ msgstr "Z"