minetest.po 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710
  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: 2017-08-24 18:42+0200\n"
  11. "PO-Revision-Date: 2017-06-02 20:32+0000\n"
  12. "Last-Translator: praprot <pumpkin650@gmail.com>\n"
  13. "Language-Team: Slovenian <https://hosted.weblate.org/projects/minetest/"
  14. "minetest/sl/>\n"
  15. "Language: sl\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=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
  20. "%100==4 ? 2 : 3;\n"
  21. "X-Generator: Weblate 2.15-dev\n"
  22. #: builtin/client/init.lua
  23. msgid "Respawn"
  24. msgstr "Vstani od mrtvih"
  25. #: builtin/client/init.lua
  26. msgid "You died."
  27. msgstr "Mrtev si."
  28. #: builtin/fstk/ui.lua
  29. msgid "An error occured in a Lua script, such as a mod:"
  30. msgstr "Napaka v Lua kodi:"
  31. #: builtin/fstk/ui.lua
  32. msgid "An error occured:"
  33. msgstr "Prišlo je do napake:"
  34. #: builtin/fstk/ui.lua
  35. msgid "Main menu"
  36. msgstr "Glavni meni"
  37. #: builtin/fstk/ui.lua
  38. msgid "Ok"
  39. msgstr "Ok"
  40. #: builtin/fstk/ui.lua
  41. msgid "Reconnect"
  42. msgstr "Ponovna povezava"
  43. #: builtin/fstk/ui.lua
  44. msgid "The server has requested a reconnect:"
  45. msgstr "Server zahteva ponovno povezavo:"
  46. #: builtin/mainmenu/common.lua
  47. msgid "Loading..."
  48. msgstr "Pripravljam..."
  49. #: builtin/mainmenu/common.lua
  50. msgid "Protocol version mismatch. "
  51. msgstr "Verzija protokola se ne ujema. "
  52. #: builtin/mainmenu/common.lua
  53. msgid "Server enforces protocol version $1. "
  54. msgstr "Server prisiljuje protokol verzije $1. "
  55. #: builtin/mainmenu/common.lua
  56. msgid "Server supports protocol versions between $1 and $2. "
  57. msgstr "Server podpira protokolske verzije med $1 in $2. "
  58. #: builtin/mainmenu/common.lua
  59. msgid "Try reenabling public serverlist and check your internet connection."
  60. msgstr ""
  61. "Ponovno poskusi omogočiti javen seznam serverjev in preveri svojo internetno "
  62. "povezavo."
  63. #: builtin/mainmenu/common.lua
  64. msgid "We only support protocol version $1."
  65. msgstr "Mi podpiramo samo protokol verzije $1."
  66. #: builtin/mainmenu/common.lua
  67. msgid "We support protocol versions between version $1 and $2."
  68. msgstr "Mi podpiramo protokol verzije med $1 and $2."
  69. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua
  70. #: builtin/mainmenu/dlg_delete_mod.lua builtin/mainmenu/dlg_delete_world.lua
  71. #: builtin/mainmenu/dlg_rename_modpack.lua
  72. #: builtin/mainmenu/dlg_settings_advanced.lua src/guiKeyChangeMenu.cpp
  73. #: src/guiPasswordChange.cpp src/keycode.cpp
  74. msgid "Cancel"
  75. msgstr "Prekliči"
  76. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_mods.lua
  77. msgid "Dependencies:"
  78. msgstr "Odvisnosti:"
  79. #: builtin/mainmenu/dlg_config_world.lua
  80. msgid "Disable MP"
  81. msgstr "Onemogoči MP"
  82. #: builtin/mainmenu/dlg_config_world.lua
  83. msgid "Disable all"
  84. msgstr "Onemogoči vse"
  85. #: builtin/mainmenu/dlg_config_world.lua
  86. msgid "Enable MP"
  87. msgstr "Omogoči MP"
  88. #: builtin/mainmenu/dlg_config_world.lua
  89. msgid "Enable all"
  90. msgstr "Omogoči vse"
  91. #: builtin/mainmenu/dlg_config_world.lua
  92. msgid ""
  93. "Failed to enable mod \"$1\" as it contains disallowed characters. Only "
  94. "chararacters [a-z0-9_] are allowed."
  95. msgstr ""
  96. "Neuspešna inštalacija \"$1\" vsebuje nedovoljene znake. Samo ti [a-z0-9_] "
  97. "znaki so dovoljeni."
  98. #: builtin/mainmenu/dlg_config_world.lua
  99. msgid "Mod:"
  100. msgstr "Mod:"
  101. #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_mods.lua
  102. msgid "Optional dependencies:"
  103. msgstr "Možnostne odvisnosti:"
  104. #: builtin/mainmenu/dlg_config_world.lua
  105. #: builtin/mainmenu/dlg_settings_advanced.lua src/guiKeyChangeMenu.cpp
  106. msgid "Save"
  107. msgstr "Shrani"
  108. #: builtin/mainmenu/dlg_config_world.lua
  109. msgid "World:"
  110. msgstr "Svet:"
  111. #: builtin/mainmenu/dlg_config_world.lua
  112. msgid "enabled"
  113. msgstr "omogočeno"
  114. #: builtin/mainmenu/dlg_create_world.lua
  115. msgid "A world named \"$1\" already exists"
  116. msgstr "Svet \"$1\" že obstaja"
  117. #: builtin/mainmenu/dlg_create_world.lua
  118. msgid "Create"
  119. msgstr "Ustvari"
  120. #: builtin/mainmenu/dlg_create_world.lua
  121. msgid "Download a subgame, such as minetest_game, from minetest.net"
  122. msgstr "Prenesi igro, kot je minetest_game, na minetest.net"
  123. #: builtin/mainmenu/dlg_create_world.lua
  124. msgid "Download one from minetest.net"
  125. msgstr "Prenesi jih na minetest.net/customize"
  126. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  127. msgid "Game"
  128. msgstr "Igra"
  129. #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp
  130. msgid "Mapgen"
  131. msgstr "Oblika sveta"
  132. #: builtin/mainmenu/dlg_create_world.lua
  133. #, fuzzy
  134. msgid "No game selected"
  135. msgstr "Svet ni narejen niti izbran!"
  136. #: builtin/mainmenu/dlg_create_world.lua
  137. msgid "Seed"
  138. msgstr "Seme"
  139. #: builtin/mainmenu/dlg_create_world.lua
  140. msgid "Warning: The minimal development test is meant for developers."
  141. msgstr "Opozorilo: Minimalni razvijaski test je namenjen razvijalcem."
  142. #: builtin/mainmenu/dlg_create_world.lua
  143. msgid "World name"
  144. msgstr "Ime sveta"
  145. #: builtin/mainmenu/dlg_create_world.lua
  146. msgid "You have no subgames installed."
  147. msgstr "Igre manjkajo."
  148. #: builtin/mainmenu/dlg_delete_mod.lua
  149. msgid "Are you sure you want to delete \"$1\"?"
  150. msgstr "Si prepričan, da želiš zbrisati \"$1\"?"
  151. #: builtin/mainmenu/dlg_delete_mod.lua builtin/mainmenu/dlg_delete_world.lua
  152. #: builtin/mainmenu/tab_local.lua src/keycode.cpp
  153. msgid "Delete"
  154. msgstr "Zbriši"
  155. #: builtin/mainmenu/dlg_delete_mod.lua
  156. msgid "Modmgr: failed to delete \"$1\""
  157. msgstr "Modmgr: neuspešen izbris \"$1\""
  158. #: builtin/mainmenu/dlg_delete_mod.lua
  159. msgid "Modmgr: invalid modpath \"$1\""
  160. msgstr "Modmgr: napačna pot do \"$1\""
  161. #: builtin/mainmenu/dlg_delete_world.lua
  162. msgid "Delete World \"$1\"?"
  163. msgstr "Zbriši Svet \"$1\"?"
  164. #: builtin/mainmenu/dlg_rename_modpack.lua
  165. msgid "Accept"
  166. msgstr "Potrdi"
  167. #: builtin/mainmenu/dlg_rename_modpack.lua
  168. msgid "Rename Modpack:"
  169. msgstr "Preimenuj Modpack:"
  170. #: builtin/mainmenu/dlg_settings_advanced.lua
  171. msgid "\"$1\" is not a valid flag."
  172. msgstr "\"$1\"ni veljavna zastava."
  173. #: builtin/mainmenu/dlg_settings_advanced.lua
  174. msgid "(No description of setting given)"
  175. msgstr "(ni opisa izbrane nastavitve)"
  176. #: builtin/mainmenu/dlg_settings_advanced.lua
  177. msgid "< Back to Settings page"
  178. msgstr "< Nazaj do Nastavitev"
  179. #: builtin/mainmenu/dlg_settings_advanced.lua
  180. #, fuzzy
  181. msgid "<offset>, <scale>, (<spreadX>, <spreadY>, <spreadZ>),"
  182. msgstr ""
  183. "Format <odmik>, <velikost>, (<pomnožiX>, <pomnožiY>, <pomnožiZ>), <seme>, "
  184. "<oktave>, <vztrajnost>"
  185. #: builtin/mainmenu/dlg_settings_advanced.lua
  186. msgid "<seed>, <octaves>, <persistence>, <lacunarity>"
  187. msgstr ""
  188. #: builtin/mainmenu/dlg_settings_advanced.lua
  189. msgid "Browse"
  190. msgstr "Brskaj"
  191. #: builtin/mainmenu/dlg_settings_advanced.lua
  192. msgid "Disabled"
  193. msgstr "Onemogočeno"
  194. #: builtin/mainmenu/dlg_settings_advanced.lua
  195. msgid "Edit"
  196. msgstr "Uredi"
  197. #: builtin/mainmenu/dlg_settings_advanced.lua
  198. msgid "Enabled"
  199. msgstr "Omogočeno"
  200. #: builtin/mainmenu/dlg_settings_advanced.lua
  201. msgid "Format is 3 numbers separated by commas and inside brackets."
  202. msgstr ""
  203. #: builtin/mainmenu/dlg_settings_advanced.lua
  204. msgid "Format:"
  205. msgstr ""
  206. #: builtin/mainmenu/dlg_settings_advanced.lua
  207. msgid "Games"
  208. msgstr "Igre"
  209. #: builtin/mainmenu/dlg_settings_advanced.lua builtin/mainmenu/tab_mods.lua
  210. msgid "Mods"
  211. msgstr "Modifikacije"
  212. #: builtin/mainmenu/dlg_settings_advanced.lua
  213. msgid "Please enter a comma seperated list of flags."
  214. msgstr "Prosim vstavi vejico ločen seznam zastav."
  215. #: builtin/mainmenu/dlg_settings_advanced.lua
  216. msgid "Please enter a valid integer."
  217. msgstr "Prosim vnesi veljavno celo število."
  218. #: builtin/mainmenu/dlg_settings_advanced.lua
  219. msgid "Please enter a valid number."
  220. msgstr "Prosim vpiši veljavno številko."
  221. #: builtin/mainmenu/dlg_settings_advanced.lua
  222. msgid "Possible values are: "
  223. msgstr "Možne vrednosti so: "
  224. #: builtin/mainmenu/dlg_settings_advanced.lua
  225. msgid "Restore Default"
  226. msgstr "Obnovi privzete nastavitve"
  227. #: builtin/mainmenu/dlg_settings_advanced.lua builtin/mainmenu/tab_online.lua
  228. msgid "Search"
  229. msgstr "Išči"
  230. #: builtin/mainmenu/dlg_settings_advanced.lua
  231. #, fuzzy
  232. msgid "Select directory"
  233. msgstr "Izberi datoteko modifikacije:"
  234. #: builtin/mainmenu/dlg_settings_advanced.lua
  235. #, fuzzy
  236. msgid "Select file"
  237. msgstr "Izberi datoteko modifikacije:"
  238. #: builtin/mainmenu/dlg_settings_advanced.lua
  239. msgid "Show technical names"
  240. msgstr "Prikaži tehnična imena"
  241. #: builtin/mainmenu/dlg_settings_advanced.lua
  242. msgid "The value must be at least $1."
  243. msgstr "Vrednost mora biti vsaj $1."
  244. #: builtin/mainmenu/dlg_settings_advanced.lua
  245. msgid "The value must not be larger than $1."
  246. msgstr "Vrednost ne sme biti večja od $1."
  247. #: builtin/mainmenu/modmgr.lua
  248. msgid ""
  249. "\n"
  250. "Install Mod: unsupported filetype \"$1\" or broken archive"
  251. msgstr ""
  252. "\n"
  253. "Inštaliraj modifikacijo: nepodprti tip datoteke \"$1\" ali pokvarjen arhiv"
  254. #: builtin/mainmenu/modmgr.lua
  255. msgid "Failed to install $1 to $2"
  256. msgstr "Neuspeh pri inštalaciji $1 do $2"
  257. #: builtin/mainmenu/modmgr.lua
  258. msgid "Install Mod: file: \"$1\""
  259. msgstr "Inštaliraj Mod: datoteka: \"$1\""
  260. #: builtin/mainmenu/modmgr.lua
  261. msgid "Install Mod: unable to find real modname for: $1"
  262. msgstr "Inštaliraj modifikacijo: ne najdem pravega imena za modifikacijo $1"
  263. #: builtin/mainmenu/modmgr.lua
  264. msgid "Install Mod: unable to find suitable foldername for modpack $1"
  265. msgstr ""
  266. "Inštalacija modifikacije: ne najdem ustrezne ime mape za paket modifikacij $1"
  267. #: builtin/mainmenu/modmgr.lua
  268. msgid "Subgame Mods"
  269. msgstr "Modifikacija podiger"
  270. #: builtin/mainmenu/tab_credits.lua
  271. msgid "Active Contributors"
  272. msgstr "Aktivni prostovoljci"
  273. #: builtin/mainmenu/tab_credits.lua
  274. msgid "Core Developers"
  275. msgstr "Glavni Razvijalci"
  276. #: builtin/mainmenu/tab_credits.lua
  277. msgid "Credits"
  278. msgstr "Krediti"
  279. #: builtin/mainmenu/tab_credits.lua
  280. msgid "Previous Contributors"
  281. msgstr "Prejšni prostovoljci"
  282. #: builtin/mainmenu/tab_credits.lua
  283. msgid "Previous Core Developers"
  284. msgstr "Prejšni glavni razvajalci"
  285. #: builtin/mainmenu/tab_local.lua
  286. msgid "Announce Server"
  287. msgstr "Objavi strežnik"
  288. #: builtin/mainmenu/tab_local.lua
  289. msgid "Bind Address"
  290. msgstr "Vezani naslov"
  291. #: builtin/mainmenu/tab_local.lua
  292. msgid "Configure"
  293. msgstr "Nastavi"
  294. #: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_simple_main.lua
  295. msgid "Creative Mode"
  296. msgstr "Ustvarjalni način"
  297. #: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_simple_main.lua
  298. msgid "Enable Damage"
  299. msgstr "Omogoči škodo"
  300. #: builtin/mainmenu/tab_local.lua
  301. msgid "Host Game"
  302. msgstr ""
  303. #: builtin/mainmenu/tab_local.lua
  304. msgid "Host Server"
  305. msgstr ""
  306. #: builtin/mainmenu/tab_local.lua
  307. msgid "Local Game"
  308. msgstr "Lokalna igra"
  309. #: builtin/mainmenu/tab_local.lua
  310. msgid "Name/Password"
  311. msgstr "Ime/Geslo"
  312. #: builtin/mainmenu/tab_local.lua
  313. msgid "New"
  314. msgstr "Novo"
  315. #: builtin/mainmenu/tab_local.lua
  316. msgid "No world created or selected!"
  317. msgstr "Svet ni narejen niti izbran!"
  318. #: builtin/mainmenu/tab_local.lua
  319. msgid "Play Game"
  320. msgstr "Igraj"
  321. #: builtin/mainmenu/tab_local.lua
  322. msgid "Port"
  323. msgstr ""
  324. #: builtin/mainmenu/tab_local.lua
  325. msgid "Select World:"
  326. msgstr "Izberi svet:"
  327. #: builtin/mainmenu/tab_local.lua
  328. msgid "Server Port"
  329. msgstr ""
  330. #: builtin/mainmenu/tab_mods.lua
  331. msgid "Installed Mods:"
  332. msgstr "Inštalirane modifikacije:"
  333. #: builtin/mainmenu/tab_mods.lua
  334. msgid "Mod information:"
  335. msgstr "Informacije o modifikaciji:"
  336. #: builtin/mainmenu/tab_mods.lua
  337. msgid "No dependencies."
  338. msgstr "Ni odvisnosti."
  339. #: builtin/mainmenu/tab_mods.lua
  340. msgid "No mod description available"
  341. msgstr "Modifikacija nima opisa"
  342. #: builtin/mainmenu/tab_mods.lua
  343. msgid "Rename"
  344. msgstr "Preimenuj"
  345. #: builtin/mainmenu/tab_mods.lua
  346. msgid "Select Mod File:"
  347. msgstr "Izberi datoteko modifikacije:"
  348. #: builtin/mainmenu/tab_mods.lua
  349. msgid "Uninstall selected mod"
  350. msgstr "Odstrani izbrano modifikacijo"
  351. #: builtin/mainmenu/tab_mods.lua
  352. msgid "Uninstall selected modpack"
  353. msgstr "Odstrani izbrani paket modifikacij"
  354. #: builtin/mainmenu/tab_online.lua
  355. msgid "Address / Port"
  356. msgstr ""
  357. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  358. msgid "Connect"
  359. msgstr "Poveži"
  360. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  361. msgid "Creative mode"
  362. msgstr "Ustvarjalni način"
  363. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  364. msgid "Damage enabled"
  365. msgstr "Škoda omogočeno"
  366. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  367. msgid "Del. Favorite"
  368. msgstr ""
  369. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  370. msgid "Favorite"
  371. msgstr "Priljubljeno"
  372. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  373. msgid "Name / Password"
  374. msgstr "Ime / Geslo"
  375. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  376. msgid "Ping"
  377. msgstr ""
  378. #: builtin/mainmenu/tab_online.lua
  379. msgid "Play Online"
  380. msgstr "Igraj preko spleta"
  381. #: builtin/mainmenu/tab_online.lua builtin/mainmenu/tab_simple_main.lua
  382. msgid "PvP enabled"
  383. msgstr "PvP omogočeno"
  384. #: builtin/mainmenu/tab_settings.lua
  385. msgid "2x"
  386. msgstr ""
  387. #: builtin/mainmenu/tab_settings.lua
  388. msgid "3D Clouds"
  389. msgstr ""
  390. #: builtin/mainmenu/tab_settings.lua
  391. msgid "4x"
  392. msgstr ""
  393. #: builtin/mainmenu/tab_settings.lua
  394. msgid "8x"
  395. msgstr ""
  396. #: builtin/mainmenu/tab_settings.lua
  397. msgid "Advanced Settings"
  398. msgstr ""
  399. #: builtin/mainmenu/tab_settings.lua
  400. msgid "Antialiasing:"
  401. msgstr ""
  402. #: builtin/mainmenu/tab_settings.lua
  403. msgid "Are you sure to reset your singleplayer world?"
  404. msgstr ""
  405. #: builtin/mainmenu/tab_settings.lua
  406. msgid "Autosave screen size"
  407. msgstr ""
  408. #: builtin/mainmenu/tab_settings.lua
  409. msgid "Bilinear Filter"
  410. msgstr ""
  411. #: builtin/mainmenu/tab_settings.lua
  412. msgid "Bump Mapping"
  413. msgstr ""
  414. #: builtin/mainmenu/tab_settings.lua
  415. msgid "Change keys"
  416. msgstr ""
  417. #: builtin/mainmenu/tab_settings.lua
  418. msgid "Connected Glass"
  419. msgstr ""
  420. #: builtin/mainmenu/tab_settings.lua
  421. msgid "Fancy Leaves"
  422. msgstr ""
  423. #: builtin/mainmenu/tab_settings.lua
  424. msgid "Mipmap"
  425. msgstr ""
  426. #: builtin/mainmenu/tab_settings.lua
  427. msgid "Mipmap + Aniso. Filter"
  428. msgstr ""
  429. #: builtin/mainmenu/tab_settings.lua
  430. msgid "No"
  431. msgstr ""
  432. #: builtin/mainmenu/tab_settings.lua
  433. msgid "No Filter"
  434. msgstr "Brez filtra"
  435. #: builtin/mainmenu/tab_settings.lua
  436. msgid "No Mipmap"
  437. msgstr ""
  438. #: builtin/mainmenu/tab_settings.lua
  439. msgid "Node Highlighting"
  440. msgstr ""
  441. #: builtin/mainmenu/tab_settings.lua
  442. msgid "Node Outlining"
  443. msgstr ""
  444. #: builtin/mainmenu/tab_settings.lua builtin/mainmenu/tab_texturepacks.lua
  445. msgid "None"
  446. msgstr "Noben"
  447. #: builtin/mainmenu/tab_settings.lua
  448. msgid "Normal Mapping"
  449. msgstr ""
  450. #: builtin/mainmenu/tab_settings.lua
  451. msgid "Opaque Leaves"
  452. msgstr ""
  453. #: builtin/mainmenu/tab_settings.lua
  454. msgid "Opaque Water"
  455. msgstr ""
  456. #: builtin/mainmenu/tab_settings.lua src/settings_translation_file.cpp
  457. msgid "Parallax Occlusion"
  458. msgstr ""
  459. #: builtin/mainmenu/tab_settings.lua
  460. msgid "Particles"
  461. msgstr ""
  462. #: builtin/mainmenu/tab_settings.lua
  463. msgid "Reset singleplayer world"
  464. msgstr ""
  465. #: builtin/mainmenu/tab_settings.lua
  466. msgid "Screen:"
  467. msgstr ""
  468. #: builtin/mainmenu/tab_settings.lua
  469. msgid "Settings"
  470. msgstr ""
  471. #: builtin/mainmenu/tab_settings.lua src/settings_translation_file.cpp
  472. msgid "Shaders"
  473. msgstr ""
  474. #: builtin/mainmenu/tab_settings.lua
  475. msgid "Simple Leaves"
  476. msgstr "Preprosti listi"
  477. #: builtin/mainmenu/tab_settings.lua
  478. msgid "Smooth Lighting"
  479. msgstr ""
  480. #: builtin/mainmenu/tab_settings.lua
  481. msgid "Texturing:"
  482. msgstr ""
  483. #: builtin/mainmenu/tab_settings.lua
  484. msgid "To enable shaders the OpenGL driver needs to be used."
  485. msgstr ""
  486. #: builtin/mainmenu/tab_settings.lua src/settings_translation_file.cpp
  487. msgid "Tone Mapping"
  488. msgstr ""
  489. #: builtin/mainmenu/tab_settings.lua
  490. msgid "Touchthreshold (px)"
  491. msgstr ""
  492. #: builtin/mainmenu/tab_settings.lua
  493. msgid "Trilinear Filter"
  494. msgstr ""
  495. #: builtin/mainmenu/tab_settings.lua
  496. msgid "Waving Leaves"
  497. msgstr ""
  498. #: builtin/mainmenu/tab_settings.lua
  499. msgid "Waving Plants"
  500. msgstr ""
  501. #: builtin/mainmenu/tab_settings.lua
  502. msgid "Waving Water"
  503. msgstr ""
  504. #: builtin/mainmenu/tab_settings.lua
  505. msgid "Yes"
  506. msgstr ""
  507. #: builtin/mainmenu/tab_simple_main.lua
  508. msgid "Config mods"
  509. msgstr ""
  510. #: builtin/mainmenu/tab_simple_main.lua
  511. msgid "Main"
  512. msgstr ""
  513. #: builtin/mainmenu/tab_simple_main.lua
  514. msgid "Start Singleplayer"
  515. msgstr ""
  516. #: builtin/mainmenu/tab_texturepacks.lua
  517. msgid "Default textures will be used."
  518. msgstr ""
  519. #: builtin/mainmenu/tab_texturepacks.lua
  520. msgid "No information available"
  521. msgstr ""
  522. #: builtin/mainmenu/tab_texturepacks.lua
  523. msgid "Select texture pack:"
  524. msgstr ""
  525. #: builtin/mainmenu/tab_texturepacks.lua
  526. msgid "Texturepacks"
  527. msgstr ""
  528. #: src/client.cpp
  529. msgid "Connection timed out."
  530. msgstr ""
  531. #: src/client.cpp
  532. msgid "Done!"
  533. msgstr ""
  534. #: src/client.cpp
  535. msgid "Initializing nodes"
  536. msgstr ""
  537. #: src/client.cpp
  538. msgid "Initializing nodes..."
  539. msgstr ""
  540. #: src/client.cpp
  541. msgid "Loading textures..."
  542. msgstr ""
  543. #: src/client.cpp
  544. msgid "Rebuilding shaders..."
  545. msgstr ""
  546. #: src/client/clientlauncher.cpp
  547. msgid "Connection error (timed out?)"
  548. msgstr ""
  549. #: src/client/clientlauncher.cpp
  550. msgid "Could not find or load game \""
  551. msgstr ""
  552. #: src/client/clientlauncher.cpp
  553. msgid "Invalid gamespec."
  554. msgstr ""
  555. #: src/client/clientlauncher.cpp
  556. msgid "Main Menu"
  557. msgstr ""
  558. #: src/client/clientlauncher.cpp
  559. msgid "No world selected and no address provided. Nothing to do."
  560. msgstr ""
  561. #: src/client/clientlauncher.cpp
  562. msgid "Player name too long."
  563. msgstr ""
  564. #: src/client/clientlauncher.cpp
  565. msgid "Please choose a name!"
  566. msgstr ""
  567. #: src/client/clientlauncher.cpp
  568. msgid "Provided world path doesn't exist: "
  569. msgstr ""
  570. #: src/fontengine.cpp
  571. msgid "needs_fallback_font"
  572. msgstr ""
  573. #: src/game.cpp
  574. msgid ""
  575. "\n"
  576. "Check debug.txt for details."
  577. msgstr ""
  578. #: src/game.cpp
  579. msgid "- Address: "
  580. msgstr ""
  581. #: src/game.cpp
  582. msgid "- Creative Mode: "
  583. msgstr ""
  584. #: src/game.cpp
  585. msgid "- Damage: "
  586. msgstr ""
  587. #: src/game.cpp
  588. msgid "- Mode: "
  589. msgstr ""
  590. #: src/game.cpp
  591. msgid "- Port: "
  592. msgstr ""
  593. #: src/game.cpp
  594. msgid "- Public: "
  595. msgstr ""
  596. #: src/game.cpp
  597. msgid "- PvP: "
  598. msgstr ""
  599. #: src/game.cpp
  600. msgid "- Server Name: "
  601. msgstr ""
  602. #: src/game.cpp
  603. msgid "Change Keys"
  604. msgstr ""
  605. #: src/game.cpp
  606. msgid "Change Password"
  607. msgstr ""
  608. #: src/game.cpp
  609. msgid "Continue"
  610. msgstr ""
  611. #: src/game.cpp
  612. #, c-format
  613. msgid ""
  614. "Controls:\n"
  615. "- %s: move forwards\n"
  616. "- %s: move backwards\n"
  617. "- %s: move left\n"
  618. "- %s: move right\n"
  619. "- %s: jump/climb\n"
  620. "- %s: sneak/go down\n"
  621. "- %s: drop item\n"
  622. "- %s: inventory\n"
  623. "- Mouse: turn/look\n"
  624. "- Mouse left: dig/punch\n"
  625. "- Mouse right: place/use\n"
  626. "- Mouse wheel: select item\n"
  627. "- %s: chat\n"
  628. msgstr ""
  629. #: src/game.cpp
  630. msgid ""
  631. "Default Controls:\n"
  632. "No menu visible:\n"
  633. "- single tap: button activate\n"
  634. "- double tap: place/use\n"
  635. "- slide finger: look around\n"
  636. "Menu/Inventory visible:\n"
  637. "- double tap (outside):\n"
  638. " -->close\n"
  639. "- touch stack, touch slot:\n"
  640. " --> move stack\n"
  641. "- touch&drag, tap 2nd finger\n"
  642. " --> place single item to slot\n"
  643. msgstr ""
  644. #: src/game.cpp
  645. msgid "Exit to Menu"
  646. msgstr ""
  647. #: src/game.cpp
  648. msgid "Exit to OS"
  649. msgstr ""
  650. #: src/game.cpp
  651. msgid "Game info:"
  652. msgstr ""
  653. #: src/game.cpp
  654. msgid "Game paused"
  655. msgstr ""
  656. #: src/game.cpp
  657. msgid "Hosting server"
  658. msgstr ""
  659. #: src/game.cpp
  660. msgid "Item definitions..."
  661. msgstr ""
  662. #: src/game.cpp
  663. msgid "KiB/s"
  664. msgstr ""
  665. #: src/game.cpp
  666. msgid "Media..."
  667. msgstr ""
  668. #: src/game.cpp
  669. msgid "MiB/s"
  670. msgstr ""
  671. #: src/game.cpp
  672. msgid "Node definitions..."
  673. msgstr ""
  674. #: src/game.cpp
  675. msgid "Off"
  676. msgstr ""
  677. #: src/game.cpp
  678. msgid "On"
  679. msgstr ""
  680. #: src/game.cpp
  681. msgid "Remote server"
  682. msgstr ""
  683. #: src/game.cpp
  684. msgid "Singleplayer"
  685. msgstr ""
  686. #: src/game.cpp
  687. msgid "Sound Volume"
  688. msgstr ""
  689. #: src/game.cpp
  690. #, c-format
  691. msgid "Volume changed to %d%%"
  692. msgstr ""
  693. #: src/game.cpp
  694. msgid "Volume changed to 0%"
  695. msgstr ""
  696. #: src/game.cpp
  697. msgid "Volume changed to 100%"
  698. msgstr ""
  699. #: src/game.cpp src/guiFormSpecMenu.cpp
  700. msgid "ok"
  701. msgstr ""
  702. #: src/guiFormSpecMenu.cpp
  703. msgid "Enter "
  704. msgstr ""
  705. #: src/guiFormSpecMenu.cpp
  706. msgid "Proceed"
  707. msgstr ""
  708. #: src/guiKeyChangeMenu.cpp
  709. msgid "\"Special\" = climb down"
  710. msgstr ""
  711. #: src/guiKeyChangeMenu.cpp
  712. msgid "Autoforward"
  713. msgstr ""
  714. #: src/guiKeyChangeMenu.cpp
  715. msgid "Backward"
  716. msgstr ""
  717. #: src/guiKeyChangeMenu.cpp
  718. msgid "Change camera"
  719. msgstr ""
  720. #: src/guiKeyChangeMenu.cpp
  721. msgid "Chat"
  722. msgstr ""
  723. #: src/guiKeyChangeMenu.cpp
  724. msgid "Command"
  725. msgstr ""
  726. #: src/guiKeyChangeMenu.cpp
  727. msgid "Console"
  728. msgstr ""
  729. #: src/guiKeyChangeMenu.cpp
  730. msgid "Dec. range"
  731. msgstr ""
  732. #: src/guiKeyChangeMenu.cpp
  733. msgid "Dec. volume"
  734. msgstr ""
  735. #: src/guiKeyChangeMenu.cpp
  736. msgid "Double tap \"jump\" to toggle fly"
  737. msgstr ""
  738. #: src/guiKeyChangeMenu.cpp
  739. msgid "Drop"
  740. msgstr ""
  741. #: src/guiKeyChangeMenu.cpp
  742. msgid "Forward"
  743. msgstr ""
  744. #: src/guiKeyChangeMenu.cpp
  745. msgid "Inc. range"
  746. msgstr ""
  747. #: src/guiKeyChangeMenu.cpp
  748. msgid "Inc. volume"
  749. msgstr ""
  750. #: src/guiKeyChangeMenu.cpp
  751. msgid "Inventory"
  752. msgstr ""
  753. #: src/guiKeyChangeMenu.cpp
  754. msgid "Jump"
  755. msgstr ""
  756. #: src/guiKeyChangeMenu.cpp
  757. msgid "Key already in use"
  758. msgstr ""
  759. #: src/guiKeyChangeMenu.cpp
  760. msgid "Keybindings. (If this menu screws up, remove stuff from minetest.conf)"
  761. msgstr ""
  762. #: src/guiKeyChangeMenu.cpp src/keycode.cpp
  763. msgid "Left"
  764. msgstr ""
  765. #: src/guiKeyChangeMenu.cpp
  766. msgid "Local command"
  767. msgstr ""
  768. #: src/guiKeyChangeMenu.cpp
  769. msgid "Mute"
  770. msgstr ""
  771. #: src/guiKeyChangeMenu.cpp
  772. msgid "Next item"
  773. msgstr ""
  774. #: src/guiKeyChangeMenu.cpp
  775. msgid "Prev. item"
  776. msgstr ""
  777. #: src/guiKeyChangeMenu.cpp src/settings_translation_file.cpp
  778. msgid "Print stacks"
  779. msgstr ""
  780. #: src/guiKeyChangeMenu.cpp
  781. msgid "Range select"
  782. msgstr ""
  783. #: src/guiKeyChangeMenu.cpp src/keycode.cpp
  784. msgid "Right"
  785. msgstr ""
  786. #: src/guiKeyChangeMenu.cpp src/settings_translation_file.cpp
  787. msgid "Screenshot"
  788. msgstr ""
  789. #: src/guiKeyChangeMenu.cpp
  790. msgid "Sneak"
  791. msgstr ""
  792. #: src/guiKeyChangeMenu.cpp
  793. msgid "Special"
  794. msgstr ""
  795. #: src/guiKeyChangeMenu.cpp
  796. msgid "Toggle Cinematic"
  797. msgstr ""
  798. #: src/guiKeyChangeMenu.cpp
  799. msgid "Toggle HUD"
  800. msgstr ""
  801. #: src/guiKeyChangeMenu.cpp
  802. msgid "Toggle chat log"
  803. msgstr ""
  804. #: src/guiKeyChangeMenu.cpp
  805. msgid "Toggle fast"
  806. msgstr ""
  807. #: src/guiKeyChangeMenu.cpp
  808. msgid "Toggle fly"
  809. msgstr ""
  810. #: src/guiKeyChangeMenu.cpp
  811. msgid "Toggle fog"
  812. msgstr ""
  813. #: src/guiKeyChangeMenu.cpp
  814. msgid "Toggle minimap"
  815. msgstr ""
  816. #: src/guiKeyChangeMenu.cpp
  817. msgid "Toggle noclip"
  818. msgstr ""
  819. #: src/guiKeyChangeMenu.cpp src/keycode.cpp
  820. msgid "Zoom"
  821. msgstr ""
  822. #: src/guiKeyChangeMenu.cpp
  823. msgid "press key"
  824. msgstr ""
  825. #: src/guiPasswordChange.cpp
  826. msgid "Change"
  827. msgstr ""
  828. #: src/guiPasswordChange.cpp
  829. msgid "Confirm Password"
  830. msgstr ""
  831. #: src/guiPasswordChange.cpp
  832. msgid "New Password"
  833. msgstr ""
  834. #: src/guiPasswordChange.cpp
  835. msgid "Old Password"
  836. msgstr ""
  837. #: src/guiPasswordChange.cpp
  838. msgid "Passwords do not match!"
  839. msgstr ""
  840. #: src/guiVolumeChange.cpp
  841. msgid "Exit"
  842. msgstr ""
  843. #: src/guiVolumeChange.cpp
  844. msgid "Sound Volume: "
  845. msgstr ""
  846. #: src/keycode.cpp
  847. msgid "Apps"
  848. msgstr ""
  849. #: src/keycode.cpp
  850. msgid "Back"
  851. msgstr ""
  852. #: src/keycode.cpp
  853. msgid "Caps Lock"
  854. msgstr ""
  855. #: src/keycode.cpp
  856. msgid "Clear"
  857. msgstr ""
  858. #: src/keycode.cpp
  859. msgid "Control"
  860. msgstr ""
  861. #: src/keycode.cpp
  862. msgid "Down"
  863. msgstr ""
  864. #: src/keycode.cpp
  865. msgid "End"
  866. msgstr ""
  867. #: src/keycode.cpp
  868. msgid "Erase EOF"
  869. msgstr ""
  870. #: src/keycode.cpp
  871. msgid "Execute"
  872. msgstr ""
  873. #: src/keycode.cpp
  874. msgid "Help"
  875. msgstr ""
  876. #: src/keycode.cpp
  877. msgid "Home"
  878. msgstr ""
  879. #: src/keycode.cpp
  880. msgid "IME Accept"
  881. msgstr ""
  882. #: src/keycode.cpp
  883. msgid "IME Convert"
  884. msgstr ""
  885. #: src/keycode.cpp
  886. msgid "IME Escape"
  887. msgstr ""
  888. #: src/keycode.cpp
  889. msgid "IME Mode Change"
  890. msgstr ""
  891. #: src/keycode.cpp
  892. msgid "IME Nonconvert"
  893. msgstr ""
  894. #: src/keycode.cpp
  895. msgid "Insert"
  896. msgstr ""
  897. #: src/keycode.cpp
  898. msgid "Left Button"
  899. msgstr ""
  900. #: src/keycode.cpp
  901. msgid "Left Control"
  902. msgstr ""
  903. #: src/keycode.cpp
  904. msgid "Left Menu"
  905. msgstr ""
  906. #: src/keycode.cpp
  907. msgid "Left Shift"
  908. msgstr ""
  909. #: src/keycode.cpp
  910. msgid "Left Windows"
  911. msgstr ""
  912. #: src/keycode.cpp
  913. msgid "Menu"
  914. msgstr ""
  915. #: src/keycode.cpp
  916. msgid "Middle Button"
  917. msgstr ""
  918. #: src/keycode.cpp
  919. msgid "Next"
  920. msgstr ""
  921. #: src/keycode.cpp
  922. msgid "Num Lock"
  923. msgstr ""
  924. #: src/keycode.cpp
  925. msgid "Numpad *"
  926. msgstr ""
  927. #: src/keycode.cpp
  928. msgid "Numpad +"
  929. msgstr ""
  930. #: src/keycode.cpp
  931. msgid "Numpad -"
  932. msgstr ""
  933. #: src/keycode.cpp
  934. msgid "Numpad ."
  935. msgstr ""
  936. #: src/keycode.cpp
  937. msgid "Numpad /"
  938. msgstr ""
  939. #: src/keycode.cpp
  940. msgid "Numpad 0"
  941. msgstr ""
  942. #: src/keycode.cpp
  943. msgid "Numpad 1"
  944. msgstr ""
  945. #: src/keycode.cpp
  946. msgid "Numpad 2"
  947. msgstr ""
  948. #: src/keycode.cpp
  949. msgid "Numpad 3"
  950. msgstr ""
  951. #: src/keycode.cpp
  952. msgid "Numpad 4"
  953. msgstr ""
  954. #: src/keycode.cpp
  955. msgid "Numpad 5"
  956. msgstr ""
  957. #: src/keycode.cpp
  958. msgid "Numpad 6"
  959. msgstr ""
  960. #: src/keycode.cpp
  961. msgid "Numpad 7"
  962. msgstr ""
  963. #: src/keycode.cpp
  964. msgid "Numpad 8"
  965. msgstr ""
  966. #: src/keycode.cpp
  967. msgid "Numpad 9"
  968. msgstr ""
  969. #: src/keycode.cpp
  970. msgid "OEM Clear"
  971. msgstr ""
  972. #: src/keycode.cpp
  973. msgid "Pause"
  974. msgstr ""
  975. #: src/keycode.cpp
  976. msgid "Play"
  977. msgstr ""
  978. #: src/keycode.cpp
  979. msgid "Print"
  980. msgstr ""
  981. #: src/keycode.cpp
  982. msgid "Prior"
  983. msgstr ""
  984. #: src/keycode.cpp
  985. msgid "Return"
  986. msgstr ""
  987. #: src/keycode.cpp
  988. msgid "Right Button"
  989. msgstr ""
  990. #: src/keycode.cpp
  991. msgid "Right Control"
  992. msgstr ""
  993. #: src/keycode.cpp
  994. msgid "Right Menu"
  995. msgstr ""
  996. #: src/keycode.cpp
  997. msgid "Right Shift"
  998. msgstr ""
  999. #: src/keycode.cpp
  1000. msgid "Right Windows"
  1001. msgstr ""
  1002. #: src/keycode.cpp
  1003. msgid "Scroll Lock"
  1004. msgstr ""
  1005. #: src/keycode.cpp
  1006. msgid "Select"
  1007. msgstr ""
  1008. #: src/keycode.cpp
  1009. msgid "Shift"
  1010. msgstr ""
  1011. #: src/keycode.cpp
  1012. msgid "Sleep"
  1013. msgstr ""
  1014. #: src/keycode.cpp
  1015. msgid "Snapshot"
  1016. msgstr ""
  1017. #: src/keycode.cpp
  1018. msgid "Space"
  1019. msgstr ""
  1020. #: src/keycode.cpp
  1021. msgid "Tab"
  1022. msgstr ""
  1023. #: src/keycode.cpp
  1024. msgid "Up"
  1025. msgstr ""
  1026. #: src/keycode.cpp
  1027. msgid "X Button 1"
  1028. msgstr ""
  1029. #: src/keycode.cpp
  1030. msgid "X Button 2"
  1031. msgstr ""
  1032. #: src/network/clientpackethandler.cpp
  1033. msgid "LANG_CODE"
  1034. msgstr "sl"
  1035. #: src/settings_translation_file.cpp
  1036. msgid ""
  1037. "(X,Y,Z) offset of fractal from world centre in units of 'scale'.\n"
  1038. "Used to move a suitable spawn area of low land close to (0, 0).\n"
  1039. "The default is suitable for mandelbrot sets, it needs to be edited for julia "
  1040. "sets.\n"
  1041. "Range roughly -2 to 2. Multiply by 'scale' for offset in nodes."
  1042. msgstr ""
  1043. #: src/settings_translation_file.cpp
  1044. msgid ""
  1045. "0 = parallax occlusion with slope information (faster).\n"
  1046. "1 = relief mapping (slower, more accurate)."
  1047. msgstr ""
  1048. #: src/settings_translation_file.cpp
  1049. msgid "3D clouds"
  1050. msgstr ""
  1051. #: src/settings_translation_file.cpp
  1052. msgid "3D mode"
  1053. msgstr ""
  1054. #: src/settings_translation_file.cpp
  1055. msgid "3D noise defining giant caverns."
  1056. msgstr ""
  1057. #: src/settings_translation_file.cpp
  1058. msgid ""
  1059. "3D noise defining mountain structure and height.\n"
  1060. "Also defines structure of floatland mountain terrain."
  1061. msgstr ""
  1062. #: src/settings_translation_file.cpp
  1063. msgid "3D noise defining structure of river canyon walls."
  1064. msgstr ""
  1065. #: src/settings_translation_file.cpp
  1066. msgid ""
  1067. "3D support.\n"
  1068. "Currently supported:\n"
  1069. "- none: no 3d output.\n"
  1070. "- anaglyph: cyan/magenta color 3d.\n"
  1071. "- interlaced: odd/even line based polarisation screen support.\n"
  1072. "- topbottom: split screen top/bottom.\n"
  1073. "- sidebyside: split screen side by side.\n"
  1074. "- pageflip: quadbuffer based 3d."
  1075. msgstr ""
  1076. #: src/settings_translation_file.cpp
  1077. msgid ""
  1078. "A chosen map seed for a new map, leave empty for random.\n"
  1079. "Will be overridden when creating a new world in the main menu."
  1080. msgstr ""
  1081. #: src/settings_translation_file.cpp
  1082. msgid "A message to be displayed to all clients when the server crashes."
  1083. msgstr ""
  1084. #: src/settings_translation_file.cpp
  1085. msgid "A message to be displayed to all clients when the server shuts down."
  1086. msgstr ""
  1087. #: src/settings_translation_file.cpp
  1088. msgid "Absolute limit of emerge queues"
  1089. msgstr ""
  1090. #: src/settings_translation_file.cpp
  1091. msgid "Acceleration in air"
  1092. msgstr ""
  1093. #: src/settings_translation_file.cpp
  1094. msgid "Active Block Management interval"
  1095. msgstr ""
  1096. #: src/settings_translation_file.cpp
  1097. msgid "Active Block Modifier interval"
  1098. msgstr ""
  1099. #: src/settings_translation_file.cpp
  1100. msgid "Active Block Modifiers"
  1101. msgstr ""
  1102. #: src/settings_translation_file.cpp
  1103. msgid "Active block range"
  1104. msgstr ""
  1105. #: src/settings_translation_file.cpp
  1106. msgid "Active object send range"
  1107. msgstr ""
  1108. #: src/settings_translation_file.cpp
  1109. msgid ""
  1110. "Address to connect to.\n"
  1111. "Leave this blank to start a local server.\n"
  1112. "Note that the address field in the main menu overrides this setting."
  1113. msgstr ""
  1114. #: src/settings_translation_file.cpp
  1115. msgid "Adds particles when digging a node."
  1116. msgstr ""
  1117. #: src/settings_translation_file.cpp
  1118. msgid ""
  1119. "Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k "
  1120. "screens."
  1121. msgstr ""
  1122. #: src/settings_translation_file.cpp
  1123. msgid ""
  1124. "Adjust the gamma encoding for the light tables. Higher numbers are "
  1125. "brighter.\n"
  1126. "This setting is for the client only and is ignored by the server."
  1127. msgstr ""
  1128. #: src/settings_translation_file.cpp
  1129. msgid "Advanced"
  1130. msgstr ""
  1131. #: src/settings_translation_file.cpp
  1132. msgid "Altitude Chill"
  1133. msgstr ""
  1134. #: src/settings_translation_file.cpp
  1135. msgid "Always fly and fast"
  1136. msgstr ""
  1137. #: src/settings_translation_file.cpp
  1138. msgid "Ambient occlusion gamma"
  1139. msgstr ""
  1140. #: src/settings_translation_file.cpp
  1141. msgid "Amplifies the valleys"
  1142. msgstr ""
  1143. #: src/settings_translation_file.cpp
  1144. msgid ""
  1145. "Android systems only: Tries to create inventory textures from meshes\n"
  1146. "when no supported render was found."
  1147. msgstr ""
  1148. #: src/settings_translation_file.cpp
  1149. msgid "Anisotropic filtering"
  1150. msgstr ""
  1151. #: src/settings_translation_file.cpp
  1152. msgid "Announce server"
  1153. msgstr ""
  1154. #: src/settings_translation_file.cpp
  1155. msgid ""
  1156. "Announce to this serverlist.\n"
  1157. "If you want to announce your ipv6 address, use serverlist_url = v6.servers."
  1158. "minetest.net."
  1159. msgstr ""
  1160. #: src/settings_translation_file.cpp
  1161. msgid "Apple trees noise"
  1162. msgstr ""
  1163. #: src/settings_translation_file.cpp
  1164. msgid "Approximate (X,Y,Z) scale of fractal in nodes."
  1165. msgstr ""
  1166. #: src/settings_translation_file.cpp
  1167. msgid "Ask to reconnect after crash"
  1168. msgstr ""
  1169. #: src/settings_translation_file.cpp
  1170. msgid ""
  1171. "At this distance the server will aggressively optimize which blocks are sent "
  1172. "to clients.\n"
  1173. "Small values potentially improve performance a lot, at the expense of "
  1174. "visible rendering glitches.\n"
  1175. "(some blocks will not be rendered under water and in caves, as well as "
  1176. "sometimes on land)\n"
  1177. "Setting this to a value greater than max_block_send_distance disables this "
  1178. "optimization.\n"
  1179. "Stated in mapblocks (16 nodes)"
  1180. msgstr ""
  1181. #: src/settings_translation_file.cpp
  1182. msgid "Automatic forwards key"
  1183. msgstr ""
  1184. #: src/settings_translation_file.cpp
  1185. msgid "Automaticaly report to the serverlist."
  1186. msgstr ""
  1187. #: src/settings_translation_file.cpp
  1188. msgid "Autosave Screen Size"
  1189. msgstr ""
  1190. #: src/settings_translation_file.cpp
  1191. msgid "Backward key"
  1192. msgstr ""
  1193. #: src/settings_translation_file.cpp
  1194. msgid "Base terrain height"
  1195. msgstr ""
  1196. #: src/settings_translation_file.cpp
  1197. msgid "Basic"
  1198. msgstr ""
  1199. #: src/settings_translation_file.cpp
  1200. msgid "Basic Privileges"
  1201. msgstr ""
  1202. #: src/settings_translation_file.cpp
  1203. msgid "Beach noise"
  1204. msgstr ""
  1205. #: src/settings_translation_file.cpp
  1206. msgid "Beach noise threshold"
  1207. msgstr ""
  1208. #: src/settings_translation_file.cpp
  1209. msgid "Bilinear filtering"
  1210. msgstr ""
  1211. #: src/settings_translation_file.cpp
  1212. msgid "Bind address"
  1213. msgstr ""
  1214. #: src/settings_translation_file.cpp
  1215. msgid "Biome API temperature and humidity noise parameters"
  1216. msgstr ""
  1217. #: src/settings_translation_file.cpp
  1218. msgid "Biome noise"
  1219. msgstr ""
  1220. #: src/settings_translation_file.cpp
  1221. msgid "Bits per pixel (aka color depth) in fullscreen mode."
  1222. msgstr ""
  1223. #: src/settings_translation_file.cpp
  1224. msgid "Build inside player"
  1225. msgstr ""
  1226. #: src/settings_translation_file.cpp
  1227. msgid "Builtin"
  1228. msgstr ""
  1229. #: src/settings_translation_file.cpp
  1230. msgid "Bumpmapping"
  1231. msgstr ""
  1232. #: src/settings_translation_file.cpp
  1233. msgid "Camera smoothing"
  1234. msgstr ""
  1235. #: src/settings_translation_file.cpp
  1236. msgid "Camera smoothing in cinematic mode"
  1237. msgstr ""
  1238. #: src/settings_translation_file.cpp
  1239. msgid "Camera update toggle key"
  1240. msgstr ""
  1241. #: src/settings_translation_file.cpp
  1242. msgid "Cave noise"
  1243. msgstr ""
  1244. #: src/settings_translation_file.cpp
  1245. msgid "Cave noise #1"
  1246. msgstr ""
  1247. #: src/settings_translation_file.cpp
  1248. msgid "Cave noise #2"
  1249. msgstr ""
  1250. #: src/settings_translation_file.cpp
  1251. msgid "Cave width"
  1252. msgstr ""
  1253. #: src/settings_translation_file.cpp
  1254. msgid "Cave1 noise"
  1255. msgstr ""
  1256. #: src/settings_translation_file.cpp
  1257. msgid "Cave2 noise"
  1258. msgstr ""
  1259. #: src/settings_translation_file.cpp
  1260. msgid "Cavern limit"
  1261. msgstr ""
  1262. #: src/settings_translation_file.cpp
  1263. msgid "Cavern noise"
  1264. msgstr ""
  1265. #: src/settings_translation_file.cpp
  1266. msgid "Cavern taper"
  1267. msgstr ""
  1268. #: src/settings_translation_file.cpp
  1269. msgid "Cavern threshold"
  1270. msgstr ""
  1271. #: src/settings_translation_file.cpp
  1272. msgid "Caves and tunnels form at the intersection of the two noises"
  1273. msgstr ""
  1274. #: src/settings_translation_file.cpp
  1275. msgid "Chat key"
  1276. msgstr ""
  1277. #: src/settings_translation_file.cpp
  1278. msgid "Chat toggle key"
  1279. msgstr ""
  1280. #: src/settings_translation_file.cpp
  1281. msgid "Chatcommands"
  1282. msgstr ""
  1283. #: src/settings_translation_file.cpp
  1284. msgid ""
  1285. "Choice of 18 fractals from 9 formulas.\n"
  1286. "1 = 4D \"Roundy\" mandelbrot set.\n"
  1287. "2 = 4D \"Roundy\" julia set.\n"
  1288. "3 = 4D \"Squarry\" mandelbrot set.\n"
  1289. "4 = 4D \"Squarry\" julia set.\n"
  1290. "5 = 4D \"Mandy Cousin\" mandelbrot set.\n"
  1291. "6 = 4D \"Mandy Cousin\" julia set.\n"
  1292. "7 = 4D \"Variation\" mandelbrot set.\n"
  1293. "8 = 4D \"Variation\" julia set.\n"
  1294. "9 = 3D \"Mandelbrot/Mandelbar\" mandelbrot set.\n"
  1295. "10 = 3D \"Mandelbrot/Mandelbar\" julia set.\n"
  1296. "11 = 3D \"Christmas Tree\" mandelbrot set.\n"
  1297. "12 = 3D \"Christmas Tree\" julia set.\n"
  1298. "13 = 3D \"Mandelbulb\" mandelbrot set.\n"
  1299. "14 = 3D \"Mandelbulb\" julia set.\n"
  1300. "15 = 3D \"Cosine Mandelbulb\" mandelbrot set.\n"
  1301. "16 = 3D \"Cosine Mandelbulb\" julia set.\n"
  1302. "17 = 4D \"Mandelbulb\" mandelbrot set.\n"
  1303. "18 = 4D \"Mandelbulb\" julia set."
  1304. msgstr ""
  1305. #: src/settings_translation_file.cpp
  1306. msgid "Chunk size"
  1307. msgstr ""
  1308. #: src/settings_translation_file.cpp
  1309. msgid "Cinematic mode"
  1310. msgstr ""
  1311. #: src/settings_translation_file.cpp
  1312. msgid "Cinematic mode key"
  1313. msgstr ""
  1314. #: src/settings_translation_file.cpp
  1315. msgid "Clean transparent textures"
  1316. msgstr ""
  1317. #: src/settings_translation_file.cpp
  1318. msgid "Client"
  1319. msgstr ""
  1320. #: src/settings_translation_file.cpp
  1321. msgid "Client and Server"
  1322. msgstr ""
  1323. #: src/settings_translation_file.cpp
  1324. msgid "Client modding"
  1325. msgstr ""
  1326. #: src/settings_translation_file.cpp
  1327. msgid "Climbing speed"
  1328. msgstr ""
  1329. #: src/settings_translation_file.cpp
  1330. msgid "Cloud height"
  1331. msgstr ""
  1332. #: src/settings_translation_file.cpp
  1333. msgid "Cloud radius"
  1334. msgstr ""
  1335. #: src/settings_translation_file.cpp
  1336. msgid "Clouds"
  1337. msgstr ""
  1338. #: src/settings_translation_file.cpp
  1339. msgid "Clouds are a client side effect."
  1340. msgstr ""
  1341. #: src/settings_translation_file.cpp
  1342. msgid "Clouds in menu"
  1343. msgstr ""
  1344. #: src/settings_translation_file.cpp
  1345. msgid "Colored fog"
  1346. msgstr ""
  1347. #: src/settings_translation_file.cpp
  1348. msgid ""
  1349. "Comma-separated list of mods that are allowed to access HTTP APIs, which\n"
  1350. "allow them to upload and download data to/from the internet."
  1351. msgstr ""
  1352. #: src/settings_translation_file.cpp
  1353. msgid ""
  1354. "Comma-separated list of trusted mods that are allowed to access insecure\n"
  1355. "functions even when mod security is on (via request_insecure_environment())."
  1356. msgstr ""
  1357. #: src/settings_translation_file.cpp
  1358. msgid "Command key"
  1359. msgstr ""
  1360. #: src/settings_translation_file.cpp
  1361. msgid "Connect glass"
  1362. msgstr ""
  1363. #: src/settings_translation_file.cpp
  1364. msgid "Connect to external media server"
  1365. msgstr ""
  1366. #: src/settings_translation_file.cpp
  1367. msgid "Connects glass if supported by node."
  1368. msgstr ""
  1369. #: src/settings_translation_file.cpp
  1370. msgid "Console alpha"
  1371. msgstr ""
  1372. #: src/settings_translation_file.cpp
  1373. msgid "Console color"
  1374. msgstr ""
  1375. #: src/settings_translation_file.cpp
  1376. msgid "Console height"
  1377. msgstr ""
  1378. #: src/settings_translation_file.cpp
  1379. msgid "Console key"
  1380. msgstr ""
  1381. #: src/settings_translation_file.cpp
  1382. msgid "Continuous forward"
  1383. msgstr ""
  1384. #: src/settings_translation_file.cpp
  1385. msgid "Continuous forward movement, toggled by autoforward key."
  1386. msgstr ""
  1387. #: src/settings_translation_file.cpp
  1388. msgid "Controls"
  1389. msgstr ""
  1390. #: src/settings_translation_file.cpp
  1391. msgid ""
  1392. "Controls length of day/night cycle.\n"
  1393. "Examples: 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays "
  1394. "unchanged."
  1395. msgstr ""
  1396. #: src/settings_translation_file.cpp
  1397. msgid "Controls steepness/depth of lake depressions."
  1398. msgstr ""
  1399. #: src/settings_translation_file.cpp
  1400. msgid "Controls steepness/height of hills."
  1401. msgstr ""
  1402. #: src/settings_translation_file.cpp
  1403. msgid ""
  1404. "Controls the density of floatland mountain terrain.\n"
  1405. "Is an offset added to the 'np_mountain' noise value."
  1406. msgstr ""
  1407. #: src/settings_translation_file.cpp
  1408. msgid "Controls width of tunnels, a smaller value creates wider tunnels."
  1409. msgstr ""
  1410. #: src/settings_translation_file.cpp
  1411. msgid "Crash message"
  1412. msgstr ""
  1413. #: src/settings_translation_file.cpp
  1414. msgid ""
  1415. "Creates unpredictable lava features in caves.\n"
  1416. "These can make mining difficult. Zero disables them. (0-10)"
  1417. msgstr ""
  1418. #: src/settings_translation_file.cpp
  1419. msgid ""
  1420. "Creates unpredictable water features in caves.\n"
  1421. "These can make mining difficult. Zero disables them. (0-10)"
  1422. msgstr ""
  1423. #: src/settings_translation_file.cpp
  1424. msgid "Creative"
  1425. msgstr ""
  1426. #: src/settings_translation_file.cpp
  1427. msgid "Crosshair alpha"
  1428. msgstr ""
  1429. #: src/settings_translation_file.cpp
  1430. msgid "Crosshair alpha (opaqueness, between 0 and 255)."
  1431. msgstr ""
  1432. #: src/settings_translation_file.cpp
  1433. msgid "Crosshair color"
  1434. msgstr ""
  1435. #: src/settings_translation_file.cpp
  1436. msgid "Crosshair color (R,G,B)."
  1437. msgstr ""
  1438. #: src/settings_translation_file.cpp
  1439. msgid "Crouch speed"
  1440. msgstr ""
  1441. #: src/settings_translation_file.cpp
  1442. msgid "DPI"
  1443. msgstr ""
  1444. #: src/settings_translation_file.cpp
  1445. msgid "Damage"
  1446. msgstr ""
  1447. #: src/settings_translation_file.cpp
  1448. msgid "Darkness sharpness"
  1449. msgstr ""
  1450. #: src/settings_translation_file.cpp
  1451. msgid "Debug info toggle key"
  1452. msgstr ""
  1453. #: src/settings_translation_file.cpp
  1454. msgid "Debug log level"
  1455. msgstr ""
  1456. #: src/settings_translation_file.cpp
  1457. msgid "Dec. volume key"
  1458. msgstr ""
  1459. #: src/settings_translation_file.cpp
  1460. msgid "Dedicated server step"
  1461. msgstr ""
  1462. #: src/settings_translation_file.cpp
  1463. msgid "Default acceleration"
  1464. msgstr ""
  1465. #: src/settings_translation_file.cpp
  1466. msgid "Default game"
  1467. msgstr ""
  1468. #: src/settings_translation_file.cpp
  1469. msgid ""
  1470. "Default game when creating a new world.\n"
  1471. "This will be overridden when creating a world from the main menu."
  1472. msgstr ""
  1473. #: src/settings_translation_file.cpp
  1474. msgid "Default password"
  1475. msgstr ""
  1476. #: src/settings_translation_file.cpp
  1477. msgid "Default privileges"
  1478. msgstr ""
  1479. #: src/settings_translation_file.cpp
  1480. msgid "Default report format"
  1481. msgstr ""
  1482. #: src/settings_translation_file.cpp
  1483. msgid ""
  1484. "Default timeout for cURL, stated in milliseconds.\n"
  1485. "Only has an effect if compiled with cURL."
  1486. msgstr ""
  1487. #: src/settings_translation_file.cpp
  1488. msgid "Defines areas of 'terrain_higher' (cliff-top terrain)."
  1489. msgstr ""
  1490. #: src/settings_translation_file.cpp
  1491. msgid ""
  1492. "Defines areas of floatland smooth terrain.\n"
  1493. "Smooth floatlands occur when noise > 0."
  1494. msgstr ""
  1495. #: src/settings_translation_file.cpp
  1496. msgid ""
  1497. "Defines areas of higher (cliff-top) terrain and affects steepness of cliffs."
  1498. msgstr ""
  1499. #: src/settings_translation_file.cpp
  1500. msgid "Defines areas where trees have apples."
  1501. msgstr ""
  1502. #: src/settings_translation_file.cpp
  1503. msgid "Defines areas with sandy beaches."
  1504. msgstr ""
  1505. #: src/settings_translation_file.cpp
  1506. msgid "Defines full size of caverns, smaller values create larger caverns."
  1507. msgstr ""
  1508. #: src/settings_translation_file.cpp
  1509. msgid "Defines large-scale river channel structure."
  1510. msgstr ""
  1511. #: src/settings_translation_file.cpp
  1512. msgid "Defines location and terrain of optional hills and lakes."
  1513. msgstr ""
  1514. #: src/settings_translation_file.cpp
  1515. msgid ""
  1516. "Defines sampling step of texture.\n"
  1517. "A higher value results in smoother normal maps."
  1518. msgstr ""
  1519. #: src/settings_translation_file.cpp
  1520. msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)."
  1521. msgstr ""
  1522. #: src/settings_translation_file.cpp
  1523. msgid "Defines tree areas and tree density."
  1524. msgstr ""
  1525. #: src/settings_translation_file.cpp
  1526. msgid ""
  1527. "Delay between mesh updates on the client in ms. Increasing this will slow\n"
  1528. "down the rate of mesh updates, thus reducing jitter on slower clients."
  1529. msgstr ""
  1530. #: src/settings_translation_file.cpp
  1531. msgid "Delay in sending blocks after building"
  1532. msgstr ""
  1533. #: src/settings_translation_file.cpp
  1534. msgid "Delay showing tooltips, stated in milliseconds."
  1535. msgstr ""
  1536. #: src/settings_translation_file.cpp
  1537. msgid "Deprecated Lua API handling"
  1538. msgstr ""
  1539. #: src/settings_translation_file.cpp
  1540. msgid "Depth below which you'll find large caves."
  1541. msgstr ""
  1542. #: src/settings_translation_file.cpp
  1543. msgid "Depth below which you'll find massive caves."
  1544. msgstr ""
  1545. #: src/settings_translation_file.cpp
  1546. msgid ""
  1547. "Description of server, to be displayed when players join and in the "
  1548. "serverlist."
  1549. msgstr ""
  1550. #: src/settings_translation_file.cpp
  1551. msgid "Desert noise threshold"
  1552. msgstr ""
  1553. #: src/settings_translation_file.cpp
  1554. msgid ""
  1555. "Deserts occur when np_biome exceeds this value.\n"
  1556. "When the new biome system is enabled, this is ignored."
  1557. msgstr ""
  1558. #: src/settings_translation_file.cpp
  1559. msgid "Desynchronize block animation"
  1560. msgstr ""
  1561. #: src/settings_translation_file.cpp
  1562. msgid "Digging particles"
  1563. msgstr ""
  1564. #: src/settings_translation_file.cpp
  1565. msgid "Disable anticheat"
  1566. msgstr ""
  1567. #: src/settings_translation_file.cpp
  1568. msgid "Disallow empty passwords"
  1569. msgstr ""
  1570. #: src/settings_translation_file.cpp
  1571. msgid "Domain name of server, to be displayed in the serverlist."
  1572. msgstr ""
  1573. #: src/settings_translation_file.cpp
  1574. msgid "Double tap jump for fly"
  1575. msgstr ""
  1576. #: src/settings_translation_file.cpp
  1577. msgid "Double-tapping the jump key toggles fly mode."
  1578. msgstr ""
  1579. #: src/settings_translation_file.cpp
  1580. msgid "Drop item key"
  1581. msgstr ""
  1582. #: src/settings_translation_file.cpp
  1583. msgid "Dump the mapgen debug infos."
  1584. msgstr ""
  1585. #: src/settings_translation_file.cpp
  1586. msgid "Enable Joysticks"
  1587. msgstr ""
  1588. #: src/settings_translation_file.cpp
  1589. msgid ""
  1590. "Enable Lua modding support on client.\n"
  1591. "This support is experimental and API can change."
  1592. msgstr ""
  1593. #: src/settings_translation_file.cpp
  1594. msgid "Enable VBO"
  1595. msgstr ""
  1596. #: src/settings_translation_file.cpp
  1597. msgid "Enable console window"
  1598. msgstr ""
  1599. #: src/settings_translation_file.cpp
  1600. msgid "Enable creative mode for new created maps."
  1601. msgstr ""
  1602. #: src/settings_translation_file.cpp
  1603. msgid "Enable mod security"
  1604. msgstr ""
  1605. #: src/settings_translation_file.cpp
  1606. msgid "Enable players getting damage and dying."
  1607. msgstr ""
  1608. #: src/settings_translation_file.cpp
  1609. msgid "Enable random user input (only used for testing)."
  1610. msgstr ""
  1611. #: src/settings_translation_file.cpp
  1612. msgid ""
  1613. "Enable smooth lighting with simple ambient occlusion.\n"
  1614. "Disable for speed or for different looks."
  1615. msgstr ""
  1616. #: src/settings_translation_file.cpp
  1617. msgid ""
  1618. "Enable to disallow old clients from connecting.\n"
  1619. "Older clients are compatible in the sense that they will not crash when "
  1620. "connecting\n"
  1621. "to new servers, but they may not support all new features that you are "
  1622. "expecting."
  1623. msgstr ""
  1624. #: src/settings_translation_file.cpp
  1625. msgid ""
  1626. "Enable usage of remote media server (if provided by server).\n"
  1627. "Remote servers offer a significantly faster way to download media (e.g. "
  1628. "textures)\n"
  1629. "when connecting to the server."
  1630. msgstr ""
  1631. #: src/settings_translation_file.cpp
  1632. msgid ""
  1633. "Enable view bobbing and amount of view bobbing.\n"
  1634. "For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
  1635. msgstr ""
  1636. #: src/settings_translation_file.cpp
  1637. msgid ""
  1638. "Enable/disable running an IPv6 server. An IPv6 server may be restricted\n"
  1639. "to IPv6 clients, depending on system configuration.\n"
  1640. "Ignored if bind_address is set."
  1641. msgstr ""
  1642. #: src/settings_translation_file.cpp
  1643. msgid "Enables animation of inventory items."
  1644. msgstr ""
  1645. #: src/settings_translation_file.cpp
  1646. msgid ""
  1647. "Enables bumpmapping for textures. Normalmaps need to be supplied by the "
  1648. "texture pack\n"
  1649. "or need to be auto-generated.\n"
  1650. "Requires shaders to be enabled."
  1651. msgstr ""
  1652. #: src/settings_translation_file.cpp
  1653. msgid "Enables caching of facedir rotated meshes."
  1654. msgstr ""
  1655. #: src/settings_translation_file.cpp
  1656. msgid "Enables filmic tone mapping"
  1657. msgstr ""
  1658. #: src/settings_translation_file.cpp
  1659. msgid "Enables minimap."
  1660. msgstr ""
  1661. #: src/settings_translation_file.cpp
  1662. msgid ""
  1663. "Enables on the fly normalmap generation (Emboss effect).\n"
  1664. "Requires bumpmapping to be enabled."
  1665. msgstr ""
  1666. #: src/settings_translation_file.cpp
  1667. msgid ""
  1668. "Enables parallax occlusion mapping.\n"
  1669. "Requires shaders to be enabled."
  1670. msgstr ""
  1671. #: src/settings_translation_file.cpp
  1672. msgid "Engine profiling data print interval"
  1673. msgstr ""
  1674. #: src/settings_translation_file.cpp
  1675. msgid "Entity methods"
  1676. msgstr ""
  1677. #: src/settings_translation_file.cpp
  1678. msgid ""
  1679. "Experimental option, might cause visible spaces between blocks\n"
  1680. "when set to higher number than 0."
  1681. msgstr ""
  1682. #: src/settings_translation_file.cpp
  1683. msgid "FPS in pause menu"
  1684. msgstr ""
  1685. #: src/settings_translation_file.cpp
  1686. msgid "FSAA"
  1687. msgstr ""
  1688. #: src/settings_translation_file.cpp
  1689. msgid "Factor noise"
  1690. msgstr ""
  1691. #: src/settings_translation_file.cpp
  1692. msgid "Fall bobbing factor"
  1693. msgstr ""
  1694. #: src/settings_translation_file.cpp
  1695. msgid "Fallback font"
  1696. msgstr ""
  1697. #: src/settings_translation_file.cpp
  1698. msgid "Fallback font shadow"
  1699. msgstr ""
  1700. #: src/settings_translation_file.cpp
  1701. msgid "Fallback font shadow alpha"
  1702. msgstr ""
  1703. #: src/settings_translation_file.cpp
  1704. msgid "Fallback font size"
  1705. msgstr ""
  1706. #: src/settings_translation_file.cpp
  1707. msgid "Fast key"
  1708. msgstr ""
  1709. #: src/settings_translation_file.cpp
  1710. msgid "Fast mode acceleration"
  1711. msgstr ""
  1712. #: src/settings_translation_file.cpp
  1713. msgid "Fast mode speed"
  1714. msgstr ""
  1715. #: src/settings_translation_file.cpp
  1716. msgid "Fast movement"
  1717. msgstr ""
  1718. #: src/settings_translation_file.cpp
  1719. msgid ""
  1720. "Fast movement (via use key).\n"
  1721. "This requires the \"fast\" privilege on the server."
  1722. msgstr ""
  1723. #: src/settings_translation_file.cpp
  1724. msgid "Field of view"
  1725. msgstr ""
  1726. #: src/settings_translation_file.cpp
  1727. msgid "Field of view for zoom"
  1728. msgstr ""
  1729. #: src/settings_translation_file.cpp
  1730. msgid "Field of view in degrees."
  1731. msgstr ""
  1732. #: src/settings_translation_file.cpp
  1733. msgid ""
  1734. "Field of view while zooming in degrees.\n"
  1735. "This requires the \"zoom\" privilege on the server."
  1736. msgstr ""
  1737. #: src/settings_translation_file.cpp
  1738. msgid ""
  1739. "File in client/serverlist/ that contains your favorite servers displayed in "
  1740. "the Multiplayer Tab."
  1741. msgstr ""
  1742. #: src/settings_translation_file.cpp
  1743. msgid "Filler Depth"
  1744. msgstr ""
  1745. #: src/settings_translation_file.cpp
  1746. msgid "Filler depth noise"
  1747. msgstr ""
  1748. #: src/settings_translation_file.cpp
  1749. msgid "Filmic tone mapping"
  1750. msgstr ""
  1751. #: src/settings_translation_file.cpp
  1752. msgid ""
  1753. "Filtered textures can blend RGB values with fully-transparent neighbors,\n"
  1754. "which PNG optimizers usually discard, sometimes resulting in a dark or\n"
  1755. "light edge to transparent textures. Apply this filter to clean that up\n"
  1756. "at texture load time."
  1757. msgstr ""
  1758. #: src/settings_translation_file.cpp
  1759. msgid "Filtering"
  1760. msgstr ""
  1761. #: src/settings_translation_file.cpp
  1762. msgid "First of 2 3D noises that together define tunnels."
  1763. msgstr ""
  1764. #: src/settings_translation_file.cpp
  1765. msgid "Fixed map seed"
  1766. msgstr ""
  1767. #: src/settings_translation_file.cpp
  1768. msgid "Floatland base height noise"
  1769. msgstr ""
  1770. #: src/settings_translation_file.cpp
  1771. msgid "Floatland base noise"
  1772. msgstr ""
  1773. #: src/settings_translation_file.cpp
  1774. msgid "Floatland level"
  1775. msgstr ""
  1776. #: src/settings_translation_file.cpp
  1777. msgid "Floatland mountain density"
  1778. msgstr ""
  1779. #: src/settings_translation_file.cpp
  1780. msgid "Floatland mountain height"
  1781. msgstr ""
  1782. #: src/settings_translation_file.cpp
  1783. msgid "Fly key"
  1784. msgstr ""
  1785. #: src/settings_translation_file.cpp
  1786. msgid "Flying"
  1787. msgstr ""
  1788. #: src/settings_translation_file.cpp
  1789. msgid "Fog"
  1790. msgstr ""
  1791. #: src/settings_translation_file.cpp
  1792. msgid "Fog Start"
  1793. msgstr ""
  1794. #: src/settings_translation_file.cpp
  1795. msgid "Fog toggle key"
  1796. msgstr ""
  1797. #: src/settings_translation_file.cpp
  1798. msgid "Font path"
  1799. msgstr ""
  1800. #: src/settings_translation_file.cpp
  1801. msgid "Font shadow"
  1802. msgstr ""
  1803. #: src/settings_translation_file.cpp
  1804. msgid "Font shadow alpha"
  1805. msgstr ""
  1806. #: src/settings_translation_file.cpp
  1807. msgid "Font shadow alpha (opaqueness, between 0 and 255)."
  1808. msgstr ""
  1809. #: src/settings_translation_file.cpp
  1810. msgid "Font shadow offset, if 0 then shadow will not be drawn."
  1811. msgstr ""
  1812. #: src/settings_translation_file.cpp
  1813. msgid "Font size"
  1814. msgstr ""
  1815. #: src/settings_translation_file.cpp
  1816. msgid "Format of screenshots."
  1817. msgstr ""
  1818. #: src/settings_translation_file.cpp
  1819. msgid "Forward key"
  1820. msgstr ""
  1821. #: src/settings_translation_file.cpp
  1822. msgid "Fractal type"
  1823. msgstr ""
  1824. #: src/settings_translation_file.cpp
  1825. msgid "Fraction of the visible distance at which fog starts to be rendered"
  1826. msgstr ""
  1827. #: src/settings_translation_file.cpp
  1828. msgid "Freetype fonts"
  1829. msgstr ""
  1830. #: src/settings_translation_file.cpp
  1831. msgid ""
  1832. "From how far blocks are generated for clients, stated in mapblocks (16 "
  1833. "nodes)."
  1834. msgstr ""
  1835. #: src/settings_translation_file.cpp
  1836. msgid ""
  1837. "From how far blocks are sent to clients, stated in mapblocks (16 nodes)."
  1838. msgstr ""
  1839. #: src/settings_translation_file.cpp
  1840. msgid ""
  1841. "From how far clients know about objects, stated in mapblocks (16 nodes)."
  1842. msgstr ""
  1843. #: src/settings_translation_file.cpp
  1844. msgid "Full screen"
  1845. msgstr ""
  1846. #: src/settings_translation_file.cpp
  1847. msgid "Full screen BPP"
  1848. msgstr ""
  1849. #: src/settings_translation_file.cpp
  1850. msgid "Fullscreen mode."
  1851. msgstr ""
  1852. #: src/settings_translation_file.cpp
  1853. msgid "GUI scaling"
  1854. msgstr ""
  1855. #: src/settings_translation_file.cpp
  1856. msgid "GUI scaling filter"
  1857. msgstr ""
  1858. #: src/settings_translation_file.cpp
  1859. msgid "GUI scaling filter txr2img"
  1860. msgstr ""
  1861. #: src/settings_translation_file.cpp
  1862. msgid "Gamma"
  1863. msgstr ""
  1864. #: src/settings_translation_file.cpp
  1865. msgid "General"
  1866. msgstr ""
  1867. #: src/settings_translation_file.cpp
  1868. msgid "Generate normalmaps"
  1869. msgstr ""
  1870. #: src/settings_translation_file.cpp
  1871. msgid "Global callbacks"
  1872. msgstr ""
  1873. #: src/settings_translation_file.cpp
  1874. msgid ""
  1875. "Global map generation attributes.\n"
  1876. "In Mapgen v6 the 'decorations' flag controls all decorations except trees\n"
  1877. "and junglegrass, in all other mapgens this flag controls all decorations.\n"
  1878. "Flags that are not specified in the flag string are not modified from the "
  1879. "default.\n"
  1880. "Flags starting with 'no' are used to explicitly disable them."
  1881. msgstr ""
  1882. #: src/settings_translation_file.cpp
  1883. msgid "Graphics"
  1884. msgstr ""
  1885. #: src/settings_translation_file.cpp
  1886. msgid "Gravity"
  1887. msgstr ""
  1888. #: src/settings_translation_file.cpp
  1889. msgid "Ground level"
  1890. msgstr ""
  1891. #: src/settings_translation_file.cpp
  1892. msgid "HTTP Mods"
  1893. msgstr ""
  1894. #: src/settings_translation_file.cpp
  1895. msgid "HUD scale factor"
  1896. msgstr ""
  1897. #: src/settings_translation_file.cpp
  1898. msgid "HUD toggle key"
  1899. msgstr ""
  1900. #: src/settings_translation_file.cpp
  1901. msgid ""
  1902. "Handling for deprecated lua api calls:\n"
  1903. "- legacy: (try to) mimic old behaviour (default for release).\n"
  1904. "- log: mimic and log backtrace of deprecated call (default for debug).\n"
  1905. "- error: abort on usage of deprecated call (suggested for mod developers)."
  1906. msgstr ""
  1907. #: src/settings_translation_file.cpp
  1908. msgid ""
  1909. "Have the profiler instrument itself:\n"
  1910. "* Instrument an empty function.\n"
  1911. "This estimates the overhead, that instrumentation is adding (+1 function "
  1912. "call).\n"
  1913. "* Instrument the sampler being used to update the statistics."
  1914. msgstr ""
  1915. #: src/settings_translation_file.cpp
  1916. msgid "Heat blend noise"
  1917. msgstr ""
  1918. #: src/settings_translation_file.cpp
  1919. msgid "Heat noise"
  1920. msgstr ""
  1921. #: src/settings_translation_file.cpp
  1922. msgid "Height component of the initial window size."
  1923. msgstr ""
  1924. #: src/settings_translation_file.cpp
  1925. msgid "Height noise"
  1926. msgstr ""
  1927. #: src/settings_translation_file.cpp
  1928. msgid "Height on which clouds are appearing."
  1929. msgstr ""
  1930. #: src/settings_translation_file.cpp
  1931. msgid "Height select noise"
  1932. msgstr ""
  1933. #: src/settings_translation_file.cpp
  1934. msgid "High-precision FPU"
  1935. msgstr ""
  1936. #: src/settings_translation_file.cpp
  1937. msgid "Hill steepness"
  1938. msgstr ""
  1939. #: src/settings_translation_file.cpp
  1940. msgid "Hill threshold"
  1941. msgstr ""
  1942. #: src/settings_translation_file.cpp
  1943. msgid "Homepage of server, to be displayed in the serverlist."
  1944. msgstr ""
  1945. #: src/settings_translation_file.cpp
  1946. msgid "Hotbar next key"
  1947. msgstr ""
  1948. #: src/settings_translation_file.cpp
  1949. msgid "Hotbar previous key"
  1950. msgstr ""
  1951. #: src/settings_translation_file.cpp
  1952. msgid "How deep to make rivers"
  1953. msgstr ""
  1954. #: src/settings_translation_file.cpp
  1955. msgid ""
  1956. "How large area of blocks are subject to the active block stuff, stated in "
  1957. "mapblocks (16 nodes).\n"
  1958. "In active blocks objects are loaded and ABMs run."
  1959. msgstr ""
  1960. #: src/settings_translation_file.cpp
  1961. msgid ""
  1962. "How much the server will wait before unloading unused mapblocks.\n"
  1963. "Higher value is smoother, but will use more RAM."
  1964. msgstr ""
  1965. #: src/settings_translation_file.cpp
  1966. msgid "How wide to make rivers"
  1967. msgstr ""
  1968. #: src/settings_translation_file.cpp
  1969. msgid "Humidity blend noise"
  1970. msgstr ""
  1971. #: src/settings_translation_file.cpp
  1972. msgid "Humidity noise"
  1973. msgstr ""
  1974. #: src/settings_translation_file.cpp
  1975. msgid "Humidity variation for biomes."
  1976. msgstr ""
  1977. #: src/settings_translation_file.cpp
  1978. msgid "IPv6"
  1979. msgstr ""
  1980. #: src/settings_translation_file.cpp
  1981. msgid "IPv6 server"
  1982. msgstr ""
  1983. #: src/settings_translation_file.cpp
  1984. msgid "IPv6 support."
  1985. msgstr ""
  1986. #: src/settings_translation_file.cpp
  1987. msgid ""
  1988. "If FPS would go higher than this, limit it by sleeping\n"
  1989. "to not waste CPU power for no benefit."
  1990. msgstr ""
  1991. #: src/settings_translation_file.cpp
  1992. msgid ""
  1993. "If disabled \"use\" key is used to fly fast if both fly and fast mode are "
  1994. "enabled."
  1995. msgstr ""
  1996. #: src/settings_translation_file.cpp
  1997. msgid ""
  1998. "If enabled the server will perform map block occlusion culling based on\n"
  1999. "on the eye position of the player. This can reduce the number of blocks\n"
  2000. "sent to the client 50-80%. The client will not longer receive most "
  2001. "invisible\n"
  2002. "so that the utility of noclip mode is reduced."
  2003. msgstr ""
  2004. #: src/settings_translation_file.cpp
  2005. msgid ""
  2006. "If enabled together with fly mode, player is able to fly through solid "
  2007. "nodes.\n"
  2008. "This requires the \"noclip\" privilege on the server."
  2009. msgstr ""
  2010. #: src/settings_translation_file.cpp
  2011. msgid ""
  2012. "If enabled, \"use\" key instead of \"sneak\" key is used for climbing down "
  2013. "and descending."
  2014. msgstr ""
  2015. #: src/settings_translation_file.cpp
  2016. msgid ""
  2017. "If enabled, actions are recorded for rollback.\n"
  2018. "This option is only read when server starts."
  2019. msgstr ""
  2020. #: src/settings_translation_file.cpp
  2021. msgid "If enabled, disable cheat prevention in multiplayer."
  2022. msgstr ""
  2023. #: src/settings_translation_file.cpp
  2024. msgid ""
  2025. "If enabled, invalid world data won't cause the server to shut down.\n"
  2026. "Only enable this if you know what you are doing."
  2027. msgstr ""
  2028. #: src/settings_translation_file.cpp
  2029. msgid "If enabled, new players cannot join with an empty password."
  2030. msgstr ""
  2031. #: src/settings_translation_file.cpp
  2032. msgid "If enabled, show the server status message on player connection."
  2033. msgstr ""
  2034. #: src/settings_translation_file.cpp
  2035. msgid ""
  2036. "If enabled, you can place blocks at the position (feet + eye level) where "
  2037. "you stand.\n"
  2038. "This is helpful when working with nodeboxes in small areas."
  2039. msgstr ""
  2040. #: src/settings_translation_file.cpp
  2041. msgid "If this is set, players will always (re)spawn at the given position."
  2042. msgstr ""
  2043. #: src/settings_translation_file.cpp
  2044. msgid "Ignore world errors"
  2045. msgstr ""
  2046. #: src/settings_translation_file.cpp
  2047. msgid "In-Game"
  2048. msgstr ""
  2049. #: src/settings_translation_file.cpp
  2050. msgid "In-game chat console background alpha (opaqueness, between 0 and 255)."
  2051. msgstr ""
  2052. #: src/settings_translation_file.cpp
  2053. msgid "In-game chat console background color (R,G,B)."
  2054. msgstr ""
  2055. #: src/settings_translation_file.cpp
  2056. msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)."
  2057. msgstr ""
  2058. #: src/settings_translation_file.cpp
  2059. msgid "Inc. volume key"
  2060. msgstr ""
  2061. #: src/settings_translation_file.cpp
  2062. msgid ""
  2063. "Instrument builtin.\n"
  2064. "This is usually only needed by core/builtin contributors"
  2065. msgstr ""
  2066. #: src/settings_translation_file.cpp
  2067. msgid "Instrument chatcommands on registration."
  2068. msgstr ""
  2069. #: src/settings_translation_file.cpp
  2070. msgid ""
  2071. "Instrument global callback functions on registration.\n"
  2072. "(anything you pass to a minetest.register_*() function)"
  2073. msgstr ""
  2074. #: src/settings_translation_file.cpp
  2075. msgid ""
  2076. "Instrument the action function of Active Block Modifiers on registration."
  2077. msgstr ""
  2078. #: src/settings_translation_file.cpp
  2079. msgid ""
  2080. "Instrument the action function of Loading Block Modifiers on registration."
  2081. msgstr ""
  2082. #: src/settings_translation_file.cpp
  2083. msgid "Instrument the methods of entities on registration."
  2084. msgstr ""
  2085. #: src/settings_translation_file.cpp
  2086. msgid "Instrumentation"
  2087. msgstr ""
  2088. #: src/settings_translation_file.cpp
  2089. msgid "Interval of saving important changes in the world, stated in seconds."
  2090. msgstr ""
  2091. #: src/settings_translation_file.cpp
  2092. msgid "Interval of sending time of day to clients."
  2093. msgstr ""
  2094. #: src/settings_translation_file.cpp
  2095. msgid "Inventory image hack"
  2096. msgstr ""
  2097. #: src/settings_translation_file.cpp
  2098. msgid "Inventory items animations"
  2099. msgstr ""
  2100. #: src/settings_translation_file.cpp
  2101. msgid "Inventory key"
  2102. msgstr ""
  2103. #: src/settings_translation_file.cpp
  2104. msgid "Invert mouse"
  2105. msgstr ""
  2106. #: src/settings_translation_file.cpp
  2107. msgid "Invert vertical mouse movement."
  2108. msgstr ""
  2109. #: src/settings_translation_file.cpp
  2110. msgid "Item entity TTL"
  2111. msgstr ""
  2112. #: src/settings_translation_file.cpp
  2113. msgid "Iterations"
  2114. msgstr ""
  2115. #: src/settings_translation_file.cpp
  2116. msgid ""
  2117. "Iterations of the recursive function.\n"
  2118. "Controls the amount of fine detail."
  2119. msgstr ""
  2120. #: src/settings_translation_file.cpp
  2121. msgid "Joystick ID"
  2122. msgstr ""
  2123. #: src/settings_translation_file.cpp
  2124. msgid "Joystick Type"
  2125. msgstr ""
  2126. #: src/settings_translation_file.cpp
  2127. msgid "Joystick button repetition interval"
  2128. msgstr ""
  2129. #: src/settings_translation_file.cpp
  2130. msgid "Joystick frustum sensitivity"
  2131. msgstr ""
  2132. #: src/settings_translation_file.cpp
  2133. msgid ""
  2134. "Julia set only: W component of hypercomplex constant determining julia "
  2135. "shape.\n"
  2136. "Has no effect on 3D fractals.\n"
  2137. "Range roughly -2 to 2."
  2138. msgstr ""
  2139. #: src/settings_translation_file.cpp
  2140. msgid ""
  2141. "Julia set only: X component of hypercomplex constant determining julia "
  2142. "shape.\n"
  2143. "Range roughly -2 to 2."
  2144. msgstr ""
  2145. #: src/settings_translation_file.cpp
  2146. msgid ""
  2147. "Julia set only: Y component of hypercomplex constant determining julia "
  2148. "shape.\n"
  2149. "Range roughly -2 to 2."
  2150. msgstr ""
  2151. #: src/settings_translation_file.cpp
  2152. msgid ""
  2153. "Julia set only: Z component of hypercomplex constant determining julia "
  2154. "shape.\n"
  2155. "Range roughly -2 to 2."
  2156. msgstr ""
  2157. #: src/settings_translation_file.cpp
  2158. msgid "Julia w"
  2159. msgstr ""
  2160. #: src/settings_translation_file.cpp
  2161. msgid "Julia x"
  2162. msgstr ""
  2163. #: src/settings_translation_file.cpp
  2164. msgid "Julia y"
  2165. msgstr ""
  2166. #: src/settings_translation_file.cpp
  2167. msgid "Julia z"
  2168. msgstr ""
  2169. #: src/settings_translation_file.cpp
  2170. msgid "Jump key"
  2171. msgstr ""
  2172. #: src/settings_translation_file.cpp
  2173. msgid "Jumping speed"
  2174. msgstr ""
  2175. #: src/settings_translation_file.cpp
  2176. msgid ""
  2177. "Key for decreasing the viewing range.\n"
  2178. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2179. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2180. msgstr ""
  2181. #: src/settings_translation_file.cpp
  2182. msgid ""
  2183. "Key for decreasing the volume.\n"
  2184. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2185. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2186. msgstr ""
  2187. #: src/settings_translation_file.cpp
  2188. msgid ""
  2189. "Key for dropping the currently selected item.\n"
  2190. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2191. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2192. msgstr ""
  2193. #: src/settings_translation_file.cpp
  2194. msgid ""
  2195. "Key for increasing the viewing range.\n"
  2196. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2197. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2198. msgstr ""
  2199. #: src/settings_translation_file.cpp
  2200. msgid ""
  2201. "Key for increasing the volume.\n"
  2202. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2203. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2204. msgstr ""
  2205. #: src/settings_translation_file.cpp
  2206. msgid ""
  2207. "Key for jumping.\n"
  2208. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2209. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2210. msgstr ""
  2211. #: src/settings_translation_file.cpp
  2212. msgid ""
  2213. "Key for moving fast in fast mode.\n"
  2214. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2215. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2216. msgstr ""
  2217. #: src/settings_translation_file.cpp
  2218. msgid ""
  2219. "Key for moving the player backward.\n"
  2220. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2221. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2222. msgstr ""
  2223. #: src/settings_translation_file.cpp
  2224. msgid ""
  2225. "Key for moving the player forward.\n"
  2226. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2227. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2228. msgstr ""
  2229. #: src/settings_translation_file.cpp
  2230. msgid ""
  2231. "Key for moving the player left.\n"
  2232. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2233. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2234. msgstr ""
  2235. #: src/settings_translation_file.cpp
  2236. msgid ""
  2237. "Key for moving the player right.\n"
  2238. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2239. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2240. msgstr ""
  2241. #: src/settings_translation_file.cpp
  2242. msgid ""
  2243. "Key for muting the game.\n"
  2244. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2245. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2246. msgstr ""
  2247. #: src/settings_translation_file.cpp
  2248. msgid ""
  2249. "Key for opening the chat console.\n"
  2250. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2251. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2252. msgstr ""
  2253. #: src/settings_translation_file.cpp
  2254. msgid ""
  2255. "Key for opening the chat window to type commands.\n"
  2256. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2257. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2258. msgstr ""
  2259. #: src/settings_translation_file.cpp
  2260. msgid ""
  2261. "Key for opening the chat window to type local commands.\n"
  2262. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2263. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2264. msgstr ""
  2265. #: src/settings_translation_file.cpp
  2266. msgid ""
  2267. "Key for opening the chat window.\n"
  2268. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2269. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2270. msgstr ""
  2271. #: src/settings_translation_file.cpp
  2272. msgid ""
  2273. "Key for opening the inventory.\n"
  2274. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2275. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2276. msgstr ""
  2277. #: src/settings_translation_file.cpp
  2278. msgid ""
  2279. "Key for printing debug stacks. Used for development.\n"
  2280. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2281. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2282. msgstr ""
  2283. #: src/settings_translation_file.cpp
  2284. msgid ""
  2285. "Key for selecting the next item in the hotbar.\n"
  2286. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2287. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2288. msgstr ""
  2289. #: src/settings_translation_file.cpp
  2290. msgid ""
  2291. "Key for selecting the previous item in the hotbar.\n"
  2292. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2293. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2294. msgstr ""
  2295. #: src/settings_translation_file.cpp
  2296. msgid ""
  2297. "Key for sneaking.\n"
  2298. "Also used for climbing down and descending in water if aux1_descends is "
  2299. "disabled.\n"
  2300. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2301. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2302. msgstr ""
  2303. #: src/settings_translation_file.cpp
  2304. msgid ""
  2305. "Key for switching between first- and third-person camera.\n"
  2306. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2307. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2308. msgstr ""
  2309. #: src/settings_translation_file.cpp
  2310. msgid ""
  2311. "Key for taking screenshots.\n"
  2312. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2313. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2314. msgstr ""
  2315. #: src/settings_translation_file.cpp
  2316. msgid ""
  2317. "Key for toggling autoforward.\n"
  2318. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2319. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2320. msgstr ""
  2321. #: src/settings_translation_file.cpp
  2322. msgid ""
  2323. "Key for toggling cinematic mode.\n"
  2324. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2325. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2326. msgstr ""
  2327. #: src/settings_translation_file.cpp
  2328. msgid ""
  2329. "Key for toggling display of minimap.\n"
  2330. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2331. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2332. msgstr ""
  2333. #: src/settings_translation_file.cpp
  2334. msgid ""
  2335. "Key for toggling fast mode.\n"
  2336. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2337. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2338. msgstr ""
  2339. #: src/settings_translation_file.cpp
  2340. msgid ""
  2341. "Key for toggling flying.\n"
  2342. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2343. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2344. msgstr ""
  2345. #: src/settings_translation_file.cpp
  2346. msgid ""
  2347. "Key for toggling noclip mode.\n"
  2348. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2349. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2350. msgstr ""
  2351. #: src/settings_translation_file.cpp
  2352. msgid ""
  2353. "Key for toggling the camera update. Only used for development\n"
  2354. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2355. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2356. msgstr ""
  2357. #: src/settings_translation_file.cpp
  2358. msgid ""
  2359. "Key for toggling the display of debug info.\n"
  2360. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2361. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2362. msgstr ""
  2363. #: src/settings_translation_file.cpp
  2364. msgid ""
  2365. "Key for toggling the display of the HUD.\n"
  2366. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2367. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2368. msgstr ""
  2369. #: src/settings_translation_file.cpp
  2370. msgid ""
  2371. "Key for toggling the display of the chat.\n"
  2372. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2373. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2374. msgstr ""
  2375. #: src/settings_translation_file.cpp
  2376. msgid ""
  2377. "Key for toggling the display of the fog.\n"
  2378. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2379. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2380. msgstr ""
  2381. #: src/settings_translation_file.cpp
  2382. msgid ""
  2383. "Key for toggling the display of the large chat console.\n"
  2384. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2385. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2386. msgstr ""
  2387. #: src/settings_translation_file.cpp
  2388. msgid ""
  2389. "Key for toggling the display of the profiler. Used for development.\n"
  2390. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2391. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2392. msgstr ""
  2393. #: src/settings_translation_file.cpp
  2394. msgid ""
  2395. "Key for toggling unlimited view range.\n"
  2396. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2397. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2398. msgstr ""
  2399. #: src/settings_translation_file.cpp
  2400. msgid ""
  2401. "Key to use view zoom when possible.\n"
  2402. "See http://irrlicht.sourceforge.net/docu/namespaceirr."
  2403. "html#a54da2a0e231901735e3da1b0edf72eb3"
  2404. msgstr ""
  2405. #: src/settings_translation_file.cpp
  2406. msgid "Key use for climbing/descending"
  2407. msgstr ""
  2408. #: src/settings_translation_file.cpp
  2409. msgid "Lake steepness"
  2410. msgstr ""
  2411. #: src/settings_translation_file.cpp
  2412. msgid "Lake threshold"
  2413. msgstr ""
  2414. #: src/settings_translation_file.cpp
  2415. msgid "Language"
  2416. msgstr ""
  2417. #: src/settings_translation_file.cpp
  2418. msgid "Large cave depth"
  2419. msgstr ""
  2420. #: src/settings_translation_file.cpp
  2421. msgid "Large chat console key"
  2422. msgstr ""
  2423. #: src/settings_translation_file.cpp
  2424. msgid "Lava Features"
  2425. msgstr ""
  2426. #: src/settings_translation_file.cpp
  2427. msgid "Leaves style"
  2428. msgstr ""
  2429. #: src/settings_translation_file.cpp
  2430. msgid ""
  2431. "Leaves style:\n"
  2432. "- Fancy: all faces visible\n"
  2433. "- Simple: only outer faces, if defined special_tiles are used\n"
  2434. "- Opaque: disable transparency"
  2435. msgstr ""
  2436. #: src/settings_translation_file.cpp
  2437. msgid "Left key"
  2438. msgstr ""
  2439. #: src/settings_translation_file.cpp
  2440. msgid ""
  2441. "Length of a server tick and the interval at which objects are generally "
  2442. "updated over network."
  2443. msgstr ""
  2444. #: src/settings_translation_file.cpp
  2445. msgid "Length of time between ABM execution cycles"
  2446. msgstr ""
  2447. #: src/settings_translation_file.cpp
  2448. msgid "Length of time between NodeTimer execution cycles"
  2449. msgstr ""
  2450. #: src/settings_translation_file.cpp
  2451. msgid ""
  2452. "Level of logging to be written to debug.txt:\n"
  2453. "- <nothing> (no logging)\n"
  2454. "- none (messages with no level)\n"
  2455. "- error\n"
  2456. "- warning\n"
  2457. "- action\n"
  2458. "- info\n"
  2459. "- verbose"
  2460. msgstr ""
  2461. #: src/settings_translation_file.cpp
  2462. msgid "Lightness sharpness"
  2463. msgstr ""
  2464. #: src/settings_translation_file.cpp
  2465. msgid "Limit of emerge queues on disk"
  2466. msgstr ""
  2467. #: src/settings_translation_file.cpp
  2468. msgid "Limit of emerge queues to generate"
  2469. msgstr ""
  2470. #: src/settings_translation_file.cpp
  2471. msgid ""
  2472. "Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n"
  2473. "Only mapchunks completely within the mapgen limit are generated.\n"
  2474. "Value is stored per-world."
  2475. msgstr ""
  2476. #: src/settings_translation_file.cpp
  2477. msgid ""
  2478. "Limits number of parallel HTTP requests. Affects:\n"
  2479. "- Media fetch if server uses remote_media setting.\n"
  2480. "- Serverlist download and server announcement.\n"
  2481. "- Downloads performed by main menu (e.g. mod manager).\n"
  2482. "Only has an effect if compiled with cURL."
  2483. msgstr ""
  2484. #: src/settings_translation_file.cpp
  2485. msgid "Liquid fluidity"
  2486. msgstr ""
  2487. #: src/settings_translation_file.cpp
  2488. msgid "Liquid fluidity smoothing"
  2489. msgstr ""
  2490. #: src/settings_translation_file.cpp
  2491. msgid "Liquid loop max"
  2492. msgstr ""
  2493. #: src/settings_translation_file.cpp
  2494. msgid "Liquid queue purge time"
  2495. msgstr ""
  2496. #: src/settings_translation_file.cpp
  2497. msgid "Liquid sink"
  2498. msgstr ""
  2499. #: src/settings_translation_file.cpp
  2500. msgid "Liquid update interval in seconds."
  2501. msgstr ""
  2502. #: src/settings_translation_file.cpp
  2503. msgid "Liquid update tick"
  2504. msgstr ""
  2505. #: src/settings_translation_file.cpp
  2506. msgid "Load the game profiler"
  2507. msgstr ""
  2508. #: src/settings_translation_file.cpp
  2509. msgid ""
  2510. "Load the game profiler to collect game profiling data.\n"
  2511. "Provides a /profiler command to access the compiled profile.\n"
  2512. "Useful for mod developers and server operators."
  2513. msgstr ""
  2514. #: src/settings_translation_file.cpp
  2515. msgid "Loading Block Modifiers"
  2516. msgstr ""
  2517. #: src/settings_translation_file.cpp
  2518. msgid "Main menu game manager"
  2519. msgstr ""
  2520. #: src/settings_translation_file.cpp
  2521. msgid "Main menu mod manager"
  2522. msgstr ""
  2523. #: src/settings_translation_file.cpp
  2524. msgid "Main menu script"
  2525. msgstr ""
  2526. #: src/settings_translation_file.cpp
  2527. msgid ""
  2528. "Make fog and sky colors depend on daytime (dawn/sunset) and view direction."
  2529. msgstr ""
  2530. #: src/settings_translation_file.cpp
  2531. msgid "Makes DirectX work with LuaJIT. Disable if it causes troubles."
  2532. msgstr ""
  2533. #: src/settings_translation_file.cpp
  2534. msgid "Makes all liquids opaque"
  2535. msgstr ""
  2536. #: src/settings_translation_file.cpp
  2537. msgid "Map directory"
  2538. msgstr ""
  2539. #: src/settings_translation_file.cpp
  2540. msgid ""
  2541. "Map generation attributes specific to Mapgen Valleys.\n"
  2542. "'altitude_chill' makes higher elevations colder, which may cause biome "
  2543. "issues.\n"
  2544. "'humid_rivers' modifies the humidity around rivers and in areas where water "
  2545. "would tend to pool,\n"
  2546. "it may interfere with delicately adjusted biomes.\n"
  2547. "Flags that are not specified in the flag string are not modified from the "
  2548. "default.\n"
  2549. "Flags starting with 'no' are used to explicitly disable them."
  2550. msgstr ""
  2551. #: src/settings_translation_file.cpp
  2552. msgid ""
  2553. "Map generation attributes specific to Mapgen flat.\n"
  2554. "Occasional lakes and hills can be added to the flat world.\n"
  2555. "Flags that are not specified in the flag string are not modified from the "
  2556. "default.\n"
  2557. "Flags starting with 'no' are used to explicitly disable them."
  2558. msgstr ""
  2559. #: src/settings_translation_file.cpp
  2560. msgid ""
  2561. "Map generation attributes specific to Mapgen v5.\n"
  2562. "Flags that are not specified in the flag string are not modified from the "
  2563. "default.\n"
  2564. "Flags starting with 'no' are used to explicitly disable them."
  2565. msgstr ""
  2566. #: src/settings_translation_file.cpp
  2567. msgid ""
  2568. "Map generation attributes specific to Mapgen v6.\n"
  2569. "The 'snowbiomes' flag enables the new 5 biome system.\n"
  2570. "When the new biome system is enabled jungles are automatically enabled and\n"
  2571. "the 'jungles' flag is ignored.\n"
  2572. "Flags that are not specified in the flag string are not modified from the "
  2573. "default.\n"
  2574. "Flags starting with 'no' are used to explicitly disable them."
  2575. msgstr ""
  2576. #: src/settings_translation_file.cpp
  2577. msgid ""
  2578. "Map generation attributes specific to Mapgen v7.\n"
  2579. "The 'ridges' flag enables the rivers.\n"
  2580. "Floatlands are currently experimental and subject to change.\n"
  2581. "Flags that are not specified in the flag string are not modified from the "
  2582. "default.\n"
  2583. "Flags starting with 'no' are used to explicitly disable them."
  2584. msgstr ""
  2585. #: src/settings_translation_file.cpp
  2586. msgid "Map generation limit"
  2587. msgstr ""
  2588. #: src/settings_translation_file.cpp
  2589. msgid "Map save interval"
  2590. msgstr ""
  2591. #: src/settings_translation_file.cpp
  2592. msgid "Mapblock limit"
  2593. msgstr ""
  2594. #: src/settings_translation_file.cpp
  2595. msgid "Mapblock mesh generation delay"
  2596. msgstr ""
  2597. #: src/settings_translation_file.cpp
  2598. msgid "Mapblock mesh generator's MapBlock cache size MB"
  2599. msgstr ""
  2600. #: src/settings_translation_file.cpp
  2601. msgid "Mapblock unload timeout"
  2602. msgstr ""
  2603. #: src/settings_translation_file.cpp
  2604. msgid "Mapgen Valleys"
  2605. msgstr ""
  2606. #: src/settings_translation_file.cpp
  2607. msgid "Mapgen debug"
  2608. msgstr ""
  2609. #: src/settings_translation_file.cpp
  2610. msgid "Mapgen flags"
  2611. msgstr ""
  2612. #: src/settings_translation_file.cpp
  2613. msgid "Mapgen flat"
  2614. msgstr ""
  2615. #: src/settings_translation_file.cpp
  2616. msgid "Mapgen flat specific flags"
  2617. msgstr ""
  2618. #: src/settings_translation_file.cpp
  2619. msgid "Mapgen fractal"
  2620. msgstr ""
  2621. #: src/settings_translation_file.cpp
  2622. msgid "Mapgen name"
  2623. msgstr ""
  2624. #: src/settings_translation_file.cpp
  2625. msgid "Mapgen v5"
  2626. msgstr ""
  2627. #: src/settings_translation_file.cpp
  2628. msgid "Mapgen v5 specific flags"
  2629. msgstr ""
  2630. #: src/settings_translation_file.cpp
  2631. msgid "Mapgen v6"
  2632. msgstr ""
  2633. #: src/settings_translation_file.cpp
  2634. msgid "Mapgen v6 specific flags"
  2635. msgstr ""
  2636. #: src/settings_translation_file.cpp
  2637. msgid "Mapgen v7"
  2638. msgstr ""
  2639. #: src/settings_translation_file.cpp
  2640. msgid "Mapgen v7 specific flags"
  2641. msgstr ""
  2642. #: src/settings_translation_file.cpp
  2643. msgid "Massive cave depth"
  2644. msgstr ""
  2645. #: src/settings_translation_file.cpp
  2646. msgid "Massive cave noise"
  2647. msgstr ""
  2648. #: src/settings_translation_file.cpp
  2649. msgid "Massive caves form here."
  2650. msgstr ""
  2651. #: src/settings_translation_file.cpp
  2652. msgid "Max block generate distance"
  2653. msgstr ""
  2654. #: src/settings_translation_file.cpp
  2655. msgid "Max block send distance"
  2656. msgstr ""
  2657. #: src/settings_translation_file.cpp
  2658. msgid "Max liquids processed per step."
  2659. msgstr ""
  2660. #: src/settings_translation_file.cpp
  2661. msgid "Max. clearobjects extra blocks"
  2662. msgstr ""
  2663. #: src/settings_translation_file.cpp
  2664. msgid "Max. packets per iteration"
  2665. msgstr ""
  2666. #: src/settings_translation_file.cpp
  2667. msgid "Maximum FPS"
  2668. msgstr ""
  2669. #: src/settings_translation_file.cpp
  2670. msgid "Maximum FPS when game is paused."
  2671. msgstr ""
  2672. #: src/settings_translation_file.cpp
  2673. msgid "Maximum forceloaded blocks"
  2674. msgstr ""
  2675. #: src/settings_translation_file.cpp
  2676. msgid "Maximum hotbar width"
  2677. msgstr ""
  2678. #: src/settings_translation_file.cpp
  2679. msgid "Maximum number of blocks that are simultaneously sent in total."
  2680. msgstr ""
  2681. #: src/settings_translation_file.cpp
  2682. msgid "Maximum number of blocks that are simultaneously sent per client."
  2683. msgstr ""
  2684. #: src/settings_translation_file.cpp
  2685. msgid "Maximum number of blocks that can be queued for loading."
  2686. msgstr ""
  2687. #: src/settings_translation_file.cpp
  2688. msgid ""
  2689. "Maximum number of blocks to be queued that are to be generated.\n"
  2690. "Set to blank for an appropriate amount to be chosen automatically."
  2691. msgstr ""
  2692. #: src/settings_translation_file.cpp
  2693. msgid ""
  2694. "Maximum number of blocks to be queued that are to be loaded from file.\n"
  2695. "Set to blank for an appropriate amount to be chosen automatically."
  2696. msgstr ""
  2697. #: src/settings_translation_file.cpp
  2698. msgid "Maximum number of forceloaded mapblocks."
  2699. msgstr ""
  2700. #: src/settings_translation_file.cpp
  2701. msgid ""
  2702. "Maximum number of mapblocks for client to be kept in memory.\n"
  2703. "Set to -1 for unlimited amount."
  2704. msgstr ""
  2705. #: src/settings_translation_file.cpp
  2706. msgid ""
  2707. "Maximum number of packets sent per send step, if you have a slow connection\n"
  2708. "try reducing it, but don't reduce it to a number below double of targeted\n"
  2709. "client number."
  2710. msgstr ""
  2711. #: src/settings_translation_file.cpp
  2712. msgid "Maximum number of players that can connect simultaneously."
  2713. msgstr ""
  2714. #: src/settings_translation_file.cpp
  2715. msgid "Maximum number of statically stored objects in a block."
  2716. msgstr ""
  2717. #: src/settings_translation_file.cpp
  2718. msgid "Maximum objects per block"
  2719. msgstr ""
  2720. #: src/settings_translation_file.cpp
  2721. msgid ""
  2722. "Maximum proportion of current window to be used for hotbar.\n"
  2723. "Useful if there's something to be displayed right or left of hotbar."
  2724. msgstr ""
  2725. #: src/settings_translation_file.cpp
  2726. msgid "Maximum simultaneous block sends per client"
  2727. msgstr ""
  2728. #: src/settings_translation_file.cpp
  2729. msgid "Maximum simultaneous block sends total"
  2730. msgstr ""
  2731. #: src/settings_translation_file.cpp
  2732. msgid "Maximum size of the out chat queue"
  2733. msgstr ""
  2734. #: src/settings_translation_file.cpp
  2735. msgid ""
  2736. "Maximum size of the out chat queue. 0 to disable queueing and -1 to make the "
  2737. "queue size unlimited"
  2738. msgstr ""
  2739. #: src/settings_translation_file.cpp
  2740. msgid "Maximum time in ms a file download (e.g. a mod download) may take."
  2741. msgstr ""
  2742. #: src/settings_translation_file.cpp
  2743. msgid "Maximum users"
  2744. msgstr ""
  2745. #: src/settings_translation_file.cpp
  2746. msgid "Menus"
  2747. msgstr ""
  2748. #: src/settings_translation_file.cpp
  2749. msgid "Mesh cache"
  2750. msgstr ""
  2751. #: src/settings_translation_file.cpp
  2752. msgid "Message of the day"
  2753. msgstr ""
  2754. #: src/settings_translation_file.cpp
  2755. msgid "Message of the day displayed to players connecting."
  2756. msgstr ""
  2757. #: src/settings_translation_file.cpp
  2758. msgid "Method used to highlight selected object."
  2759. msgstr ""
  2760. #: src/settings_translation_file.cpp
  2761. msgid "Minimap"
  2762. msgstr ""
  2763. #: src/settings_translation_file.cpp
  2764. msgid "Minimap key"
  2765. msgstr ""
  2766. #: src/settings_translation_file.cpp
  2767. msgid "Minimap scan height"
  2768. msgstr ""
  2769. #: src/settings_translation_file.cpp
  2770. msgid "Minimum texture size for filters"
  2771. msgstr ""
  2772. #: src/settings_translation_file.cpp
  2773. msgid "Mipmapping"
  2774. msgstr ""
  2775. #: src/settings_translation_file.cpp
  2776. msgid "Modifies the size of the hudbar elements."
  2777. msgstr ""
  2778. #: src/settings_translation_file.cpp
  2779. msgid "Monospace font path"
  2780. msgstr ""
  2781. #: src/settings_translation_file.cpp
  2782. msgid "Monospace font size"
  2783. msgstr ""
  2784. #: src/settings_translation_file.cpp
  2785. msgid "Mountain height noise"
  2786. msgstr ""
  2787. #: src/settings_translation_file.cpp
  2788. msgid "Mountain noise"
  2789. msgstr ""
  2790. #: src/settings_translation_file.cpp
  2791. msgid "Mouse sensitivity"
  2792. msgstr ""
  2793. #: src/settings_translation_file.cpp
  2794. msgid "Mouse sensitivity multiplier."
  2795. msgstr ""
  2796. #: src/settings_translation_file.cpp
  2797. msgid "Mud noise"
  2798. msgstr ""
  2799. #: src/settings_translation_file.cpp
  2800. msgid ""
  2801. "Multiplier for fall bobbing.\n"
  2802. "For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double."
  2803. msgstr ""
  2804. #: src/settings_translation_file.cpp
  2805. msgid "Mute key"
  2806. msgstr ""
  2807. #: src/settings_translation_file.cpp
  2808. msgid ""
  2809. "Name of map generator to be used when creating a new world.\n"
  2810. "Creating a world in the main menu will override this."
  2811. msgstr ""
  2812. #: src/settings_translation_file.cpp
  2813. msgid ""
  2814. "Name of the player.\n"
  2815. "When running a server, clients connecting with this name are admins.\n"
  2816. "When starting from the main menu, this is overridden."
  2817. msgstr ""
  2818. #: src/settings_translation_file.cpp
  2819. msgid ""
  2820. "Name of the server, to be displayed when players join and in the serverlist."
  2821. msgstr ""
  2822. #: src/settings_translation_file.cpp
  2823. msgid "Network"
  2824. msgstr ""
  2825. #: src/settings_translation_file.cpp
  2826. msgid ""
  2827. "Network port to listen (UDP).\n"
  2828. "This value will be overridden when starting from the main menu."
  2829. msgstr ""
  2830. #: src/settings_translation_file.cpp
  2831. msgid "New users need to input this password."
  2832. msgstr ""
  2833. #: src/settings_translation_file.cpp
  2834. msgid "Noclip"
  2835. msgstr ""
  2836. #: src/settings_translation_file.cpp
  2837. msgid "Noclip key"
  2838. msgstr ""
  2839. #: src/settings_translation_file.cpp
  2840. msgid "Node highlighting"
  2841. msgstr ""
  2842. #: src/settings_translation_file.cpp
  2843. msgid "NodeTimer interval"
  2844. msgstr ""
  2845. #: src/settings_translation_file.cpp
  2846. msgid "Noises"
  2847. msgstr ""
  2848. #: src/settings_translation_file.cpp
  2849. msgid "Normalmaps sampling"
  2850. msgstr ""
  2851. #: src/settings_translation_file.cpp
  2852. msgid "Normalmaps strength"
  2853. msgstr ""
  2854. #: src/settings_translation_file.cpp
  2855. msgid "Number of emerge threads"
  2856. msgstr ""
  2857. #: src/settings_translation_file.cpp
  2858. msgid ""
  2859. "Number of emerge threads to use. Make this field blank, or increase this "
  2860. "number\n"
  2861. "to use multiple threads. On multiprocessor systems, this will improve mapgen "
  2862. "speed greatly\n"
  2863. "at the cost of slightly buggy caves."
  2864. msgstr ""
  2865. #: src/settings_translation_file.cpp
  2866. msgid ""
  2867. "Number of extra blocks that can be loaded by /clearobjects at once.\n"
  2868. "This is a trade-off between sqlite transaction overhead and\n"
  2869. "memory consumption (4096=100MB, as a rule of thumb)."
  2870. msgstr ""
  2871. #: src/settings_translation_file.cpp
  2872. msgid "Number of parallax occlusion iterations."
  2873. msgstr ""
  2874. #: src/settings_translation_file.cpp
  2875. msgid "Offset"
  2876. msgstr ""
  2877. #: src/settings_translation_file.cpp
  2878. msgid "Opaque liquids"
  2879. msgstr ""
  2880. #: src/settings_translation_file.cpp
  2881. msgid "Overall bias of parallax occlusion effect, usually scale/2."
  2882. msgstr ""
  2883. #: src/settings_translation_file.cpp
  2884. msgid "Overall scale of parallax occlusion effect."
  2885. msgstr ""
  2886. #: src/settings_translation_file.cpp
  2887. msgid "Parallax occlusion"
  2888. msgstr ""
  2889. #: src/settings_translation_file.cpp
  2890. msgid "Parallax occlusion Scale"
  2891. msgstr ""
  2892. #: src/settings_translation_file.cpp
  2893. msgid "Parallax occlusion bias"
  2894. msgstr ""
  2895. #: src/settings_translation_file.cpp
  2896. msgid "Parallax occlusion iterations"
  2897. msgstr ""
  2898. #: src/settings_translation_file.cpp
  2899. msgid "Parallax occlusion mode"
  2900. msgstr ""
  2901. #: src/settings_translation_file.cpp
  2902. msgid "Parallax occlusion strength"
  2903. msgstr ""
  2904. #: src/settings_translation_file.cpp
  2905. msgid "Path to TrueTypeFont or bitmap."
  2906. msgstr ""
  2907. #: src/settings_translation_file.cpp
  2908. msgid "Path to save screenshots at."
  2909. msgstr ""
  2910. #: src/settings_translation_file.cpp
  2911. msgid ""
  2912. "Path to shader directory. If no path is defined, default location will be "
  2913. "used."
  2914. msgstr ""
  2915. #: src/settings_translation_file.cpp
  2916. msgid "Path to texture directory. All textures are first searched from here."
  2917. msgstr ""
  2918. #: src/settings_translation_file.cpp
  2919. msgid "Physics"
  2920. msgstr ""
  2921. #: src/settings_translation_file.cpp
  2922. msgid ""
  2923. "Player is able to fly without being affected by gravity.\n"
  2924. "This requires the \"fly\" privilege on the server."
  2925. msgstr ""
  2926. #: src/settings_translation_file.cpp
  2927. msgid "Player name"
  2928. msgstr ""
  2929. #: src/settings_translation_file.cpp
  2930. msgid "Player transfer distance"
  2931. msgstr ""
  2932. #: src/settings_translation_file.cpp
  2933. msgid "Player versus Player"
  2934. msgstr ""
  2935. #: src/settings_translation_file.cpp
  2936. msgid ""
  2937. "Port to connect to (UDP).\n"
  2938. "Note that the port field in the main menu overrides this setting."
  2939. msgstr ""
  2940. #: src/settings_translation_file.cpp
  2941. msgid "Prevent mods from doing insecure things like running shell commands."
  2942. msgstr ""
  2943. #: src/settings_translation_file.cpp
  2944. msgid ""
  2945. "Print the engine's profiling data in regular intervals (in seconds). 0 = "
  2946. "disable. Useful for developers."
  2947. msgstr ""
  2948. #: src/settings_translation_file.cpp
  2949. msgid "Privileges that players with basic_privs can grant"
  2950. msgstr ""
  2951. #: src/settings_translation_file.cpp
  2952. msgid "Profiler"
  2953. msgstr ""
  2954. #: src/settings_translation_file.cpp
  2955. msgid "Profiler toggle key"
  2956. msgstr ""
  2957. #: src/settings_translation_file.cpp
  2958. msgid "Profiling"
  2959. msgstr ""
  2960. #: src/settings_translation_file.cpp
  2961. msgid ""
  2962. "Radius of cloud area stated in number of 64 node cloud squares.\n"
  2963. "Values larger than 26 will start to produce sharp cutoffs at cloud area "
  2964. "corners."
  2965. msgstr ""
  2966. #: src/settings_translation_file.cpp
  2967. msgid "Raises terrain to make valleys around the rivers"
  2968. msgstr ""
  2969. #: src/settings_translation_file.cpp
  2970. msgid "Random input"
  2971. msgstr ""
  2972. #: src/settings_translation_file.cpp
  2973. msgid "Range select key"
  2974. msgstr ""
  2975. #: src/settings_translation_file.cpp
  2976. msgid "Remote media"
  2977. msgstr ""
  2978. #: src/settings_translation_file.cpp
  2979. msgid "Remote port"
  2980. msgstr ""
  2981. #: src/settings_translation_file.cpp
  2982. msgid ""
  2983. "Remove color codes from incoming chat messages\n"
  2984. "Use this to stop players from being able to use color in their messages"
  2985. msgstr ""
  2986. #: src/settings_translation_file.cpp
  2987. msgid "Replaces the default main menu with a custom one."
  2988. msgstr ""
  2989. #: src/settings_translation_file.cpp
  2990. msgid "Report path"
  2991. msgstr ""
  2992. #: src/settings_translation_file.cpp
  2993. msgid "Ridge noise"
  2994. msgstr ""
  2995. #: src/settings_translation_file.cpp
  2996. msgid "Ridge underwater noise"
  2997. msgstr ""
  2998. #: src/settings_translation_file.cpp
  2999. msgid "Right key"
  3000. msgstr ""
  3001. #: src/settings_translation_file.cpp
  3002. msgid "Rightclick repetition interval"
  3003. msgstr ""
  3004. #: src/settings_translation_file.cpp
  3005. msgid "River Depth"
  3006. msgstr ""
  3007. #: src/settings_translation_file.cpp
  3008. msgid "River Noise"
  3009. msgstr ""
  3010. #: src/settings_translation_file.cpp
  3011. msgid "River Size"
  3012. msgstr ""
  3013. #: src/settings_translation_file.cpp
  3014. msgid "River noise -- rivers occur close to zero"
  3015. msgstr ""
  3016. #: src/settings_translation_file.cpp
  3017. msgid "Rollback recording"
  3018. msgstr ""
  3019. #: src/settings_translation_file.cpp
  3020. msgid "Round minimap"
  3021. msgstr ""
  3022. #: src/settings_translation_file.cpp
  3023. msgid "Sandy beaches occur when np_beach exceeds this value."
  3024. msgstr ""
  3025. #: src/settings_translation_file.cpp
  3026. msgid "Save the map received by the client on disk."
  3027. msgstr ""
  3028. #: src/settings_translation_file.cpp
  3029. msgid "Save window size automatically when modified."
  3030. msgstr ""
  3031. #: src/settings_translation_file.cpp
  3032. msgid "Saving map received from server"
  3033. msgstr ""
  3034. #: src/settings_translation_file.cpp
  3035. msgid "Scale"
  3036. msgstr ""
  3037. #: src/settings_translation_file.cpp
  3038. msgid ""
  3039. "Scale gui by a user specified value.\n"
  3040. "Use a nearest-neighbor-anti-alias filter to scale the GUI.\n"
  3041. "This will smooth over some of the rough edges, and blend\n"
  3042. "pixels when scaling down, at the cost of blurring some\n"
  3043. "edge pixels when images are scaled by non-integer sizes."
  3044. msgstr ""
  3045. #: src/settings_translation_file.cpp
  3046. msgid "Screen height"
  3047. msgstr ""
  3048. #: src/settings_translation_file.cpp
  3049. msgid "Screen width"
  3050. msgstr ""
  3051. #: src/settings_translation_file.cpp
  3052. msgid "Screenshot folder"
  3053. msgstr ""
  3054. #: src/settings_translation_file.cpp
  3055. msgid "Screenshot format"
  3056. msgstr ""
  3057. #: src/settings_translation_file.cpp
  3058. msgid "Screenshot quality"
  3059. msgstr ""
  3060. #: src/settings_translation_file.cpp
  3061. msgid ""
  3062. "Screenshot quality. Only used for JPEG format.\n"
  3063. "1 means worst quality; 100 means best quality.\n"
  3064. "Use 0 for default quality."
  3065. msgstr ""
  3066. #: src/settings_translation_file.cpp
  3067. msgid "Seabed noise"
  3068. msgstr ""
  3069. #: src/settings_translation_file.cpp
  3070. msgid "Second of 2 3D noises that together define tunnels."
  3071. msgstr ""
  3072. #: src/settings_translation_file.cpp
  3073. msgid "Security"
  3074. msgstr ""
  3075. #: src/settings_translation_file.cpp
  3076. msgid "See http://www.sqlite.org/pragma.html#pragma_synchronous"
  3077. msgstr ""
  3078. #: src/settings_translation_file.cpp
  3079. msgid "Selection box border color (R,G,B)."
  3080. msgstr ""
  3081. #: src/settings_translation_file.cpp
  3082. msgid "Selection box color"
  3083. msgstr ""
  3084. #: src/settings_translation_file.cpp
  3085. msgid "Selection box width"
  3086. msgstr ""
  3087. #: src/settings_translation_file.cpp
  3088. msgid "Server / Singleplayer"
  3089. msgstr ""
  3090. #: src/settings_translation_file.cpp
  3091. msgid "Server URL"
  3092. msgstr ""
  3093. #: src/settings_translation_file.cpp
  3094. msgid "Server address"
  3095. msgstr ""
  3096. #: src/settings_translation_file.cpp
  3097. msgid "Server description"
  3098. msgstr ""
  3099. #: src/settings_translation_file.cpp
  3100. msgid "Server name"
  3101. msgstr ""
  3102. #: src/settings_translation_file.cpp
  3103. msgid "Server port"
  3104. msgstr ""
  3105. #: src/settings_translation_file.cpp
  3106. msgid "Server side occlusion culling"
  3107. msgstr ""
  3108. #: src/settings_translation_file.cpp
  3109. msgid "Serverlist URL"
  3110. msgstr ""
  3111. #: src/settings_translation_file.cpp
  3112. msgid "Serverlist file"
  3113. msgstr ""
  3114. #: src/settings_translation_file.cpp
  3115. msgid ""
  3116. "Set the language. Leave empty to use the system language.\n"
  3117. "A restart is required after changing this."
  3118. msgstr ""
  3119. #: src/settings_translation_file.cpp
  3120. msgid ""
  3121. "Set to true enables waving leaves.\n"
  3122. "Requires shaders to be enabled."
  3123. msgstr ""
  3124. #: src/settings_translation_file.cpp
  3125. msgid ""
  3126. "Set to true enables waving plants.\n"
  3127. "Requires shaders to be enabled."
  3128. msgstr ""
  3129. #: src/settings_translation_file.cpp
  3130. msgid ""
  3131. "Set to true enables waving water.\n"
  3132. "Requires shaders to be enabled."
  3133. msgstr ""
  3134. #: src/settings_translation_file.cpp
  3135. msgid "Shader path"
  3136. msgstr ""
  3137. #: src/settings_translation_file.cpp
  3138. msgid ""
  3139. "Shaders allow advanced visual effects and may increase performance on some "
  3140. "video cards.\n"
  3141. "This only works with the OpenGL video backend."
  3142. msgstr ""
  3143. #: src/settings_translation_file.cpp
  3144. msgid "Shadow limit"
  3145. msgstr ""
  3146. #: src/settings_translation_file.cpp
  3147. msgid "Shape of the minimap. Enabled = round, disabled = square."
  3148. msgstr ""
  3149. #: src/settings_translation_file.cpp
  3150. msgid "Show debug info"
  3151. msgstr ""
  3152. #: src/settings_translation_file.cpp
  3153. msgid "Show entity selection boxes"
  3154. msgstr ""
  3155. #: src/settings_translation_file.cpp
  3156. msgid "Shutdown message"
  3157. msgstr ""
  3158. #: src/settings_translation_file.cpp
  3159. msgid ""
  3160. "Size of chunks to be generated at once by mapgen, stated in mapblocks (16 "
  3161. "nodes)."
  3162. msgstr ""
  3163. #: src/settings_translation_file.cpp
  3164. msgid ""
  3165. "Size of the MapBlock cache of the mesh generator. Increasing this will\n"
  3166. "increase the cache hit %, reducing the data being copied from the main\n"
  3167. "thread, thus reducing jitter."
  3168. msgstr ""
  3169. #: src/settings_translation_file.cpp
  3170. msgid "Slice w"
  3171. msgstr ""
  3172. #: src/settings_translation_file.cpp
  3173. msgid "Slope and fill work together to modify the heights"
  3174. msgstr ""
  3175. #: src/settings_translation_file.cpp
  3176. msgid "Small-scale humidity variation for blending biomes on borders."
  3177. msgstr ""
  3178. #: src/settings_translation_file.cpp
  3179. msgid "Small-scale temperature variation for blending biomes on borders."
  3180. msgstr ""
  3181. #: src/settings_translation_file.cpp
  3182. msgid "Smooth lighting"
  3183. msgstr ""
  3184. #: src/settings_translation_file.cpp
  3185. msgid ""
  3186. "Smooths camera when looking around. Also called look or mouse smoothing.\n"
  3187. "Useful for recording videos."
  3188. msgstr ""
  3189. #: src/settings_translation_file.cpp
  3190. msgid "Smooths rotation of camera in cinematic mode. 0 to disable."
  3191. msgstr ""
  3192. #: src/settings_translation_file.cpp
  3193. msgid "Smooths rotation of camera. 0 to disable."
  3194. msgstr ""
  3195. #: src/settings_translation_file.cpp
  3196. msgid "Sneak key"
  3197. msgstr ""
  3198. #: src/settings_translation_file.cpp
  3199. msgid "Sound"
  3200. msgstr ""
  3201. #: src/settings_translation_file.cpp
  3202. msgid ""
  3203. "Specifies URL from which client fetches media instead of using UDP.\n"
  3204. "$filename should be accessible from $remote_media$filename via cURL\n"
  3205. "(obviously, remote_media should end with a slash).\n"
  3206. "Files that are not present will be fetched the usual way."
  3207. msgstr ""
  3208. #: src/settings_translation_file.cpp
  3209. msgid "Static spawnpoint"
  3210. msgstr ""
  3211. #: src/settings_translation_file.cpp
  3212. msgid "Status message on connection"
  3213. msgstr ""
  3214. #: src/settings_translation_file.cpp
  3215. msgid "Steepness noise"
  3216. msgstr ""
  3217. #: src/settings_translation_file.cpp
  3218. msgid "Strength of generated normalmaps."
  3219. msgstr ""
  3220. #: src/settings_translation_file.cpp
  3221. msgid "Strength of parallax."
  3222. msgstr ""
  3223. #: src/settings_translation_file.cpp
  3224. msgid "Strict protocol checking"
  3225. msgstr ""
  3226. #: src/settings_translation_file.cpp
  3227. msgid "Strip color codes"
  3228. msgstr ""
  3229. #: src/settings_translation_file.cpp
  3230. msgid "Support older servers"
  3231. msgstr ""
  3232. #: src/settings_translation_file.cpp
  3233. msgid "Synchronous SQLite"
  3234. msgstr ""
  3235. #: src/settings_translation_file.cpp
  3236. msgid "Temperature variation for biomes."
  3237. msgstr ""
  3238. #: src/settings_translation_file.cpp
  3239. msgid "Terrain Height"
  3240. msgstr ""
  3241. #: src/settings_translation_file.cpp
  3242. msgid "Terrain alt noise"
  3243. msgstr ""
  3244. #: src/settings_translation_file.cpp
  3245. msgid "Terrain base noise"
  3246. msgstr ""
  3247. #: src/settings_translation_file.cpp
  3248. msgid "Terrain higher noise"
  3249. msgstr ""
  3250. #: src/settings_translation_file.cpp
  3251. msgid "Terrain noise"
  3252. msgstr ""
  3253. #: src/settings_translation_file.cpp
  3254. msgid ""
  3255. "Terrain noise threshold for hills.\n"
  3256. "Controls proportion of world area covered by hills.\n"
  3257. "Adjust towards 0.0 for a larger proportion."
  3258. msgstr ""
  3259. #: src/settings_translation_file.cpp
  3260. msgid ""
  3261. "Terrain noise threshold for lakes.\n"
  3262. "Controls proportion of world area covered by lakes.\n"
  3263. "Adjust towards 0.0 for a larger proportion."
  3264. msgstr ""
  3265. #: src/settings_translation_file.cpp
  3266. msgid "Terrain persistence noise"
  3267. msgstr ""
  3268. #: src/settings_translation_file.cpp
  3269. msgid "Texture path"
  3270. msgstr ""
  3271. #: src/settings_translation_file.cpp
  3272. msgid "The altitude at which temperature drops by 20C"
  3273. msgstr ""
  3274. #: src/settings_translation_file.cpp
  3275. msgid ""
  3276. "The default format in which profiles are being saved,\n"
  3277. "when calling `/profiler save [format]` without format."
  3278. msgstr ""
  3279. #: src/settings_translation_file.cpp
  3280. msgid "The depth of dirt or other filler"
  3281. msgstr ""
  3282. #: src/settings_translation_file.cpp
  3283. msgid ""
  3284. "The file path relative to your worldpath in which profiles will be saved to."
  3285. msgstr ""
  3286. #: src/settings_translation_file.cpp
  3287. msgid "The identifier of the joystick to use"
  3288. msgstr ""
  3289. #: src/settings_translation_file.cpp
  3290. msgid "The network interface that the server listens on."
  3291. msgstr ""
  3292. #: src/settings_translation_file.cpp
  3293. msgid ""
  3294. "The privileges that new users automatically get.\n"
  3295. "See /privs in game for a full list on your server and mod configuration."
  3296. msgstr ""
  3297. #: src/settings_translation_file.cpp
  3298. msgid "The rendering back-end for Irrlicht."
  3299. msgstr ""
  3300. #: src/settings_translation_file.cpp
  3301. msgid ""
  3302. "The sensitivity of the joystick axes for moving the\n"
  3303. "ingame view frustum around."
  3304. msgstr ""
  3305. #: src/settings_translation_file.cpp
  3306. msgid ""
  3307. "The strength (darkness) of node ambient-occlusion shading.\n"
  3308. "Lower is darker, Higher is lighter. The valid range of values for this\n"
  3309. "setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n"
  3310. "set to the nearest valid value."
  3311. msgstr ""
  3312. #: src/settings_translation_file.cpp
  3313. msgid ""
  3314. "The time (in seconds) that the liquids queue may grow beyond processing\n"
  3315. "capacity until an attempt is made to decrease its size by dumping old queue\n"
  3316. "items. A value of 0 disables the functionality."
  3317. msgstr ""
  3318. #: src/settings_translation_file.cpp
  3319. msgid ""
  3320. "The time in seconds it takes between repeated events\n"
  3321. "when holding down a joystick button combination."
  3322. msgstr ""
  3323. #: src/settings_translation_file.cpp
  3324. msgid ""
  3325. "The time in seconds it takes between repeated right clicks when holding the "
  3326. "right mouse button."
  3327. msgstr ""
  3328. #: src/settings_translation_file.cpp
  3329. msgid "The type of joystick"
  3330. msgstr ""
  3331. #: src/settings_translation_file.cpp
  3332. msgid "This font will be used for certain languages."
  3333. msgstr ""
  3334. #: src/settings_translation_file.cpp
  3335. msgid "Time in between active block management cycles"
  3336. msgstr ""
  3337. #: src/settings_translation_file.cpp
  3338. msgid ""
  3339. "Time in seconds for item entity (dropped items) to live.\n"
  3340. "Setting it to -1 disables the feature."
  3341. msgstr ""
  3342. #: src/settings_translation_file.cpp
  3343. msgid "Time send interval"
  3344. msgstr ""
  3345. #: src/settings_translation_file.cpp
  3346. msgid "Time speed"
  3347. msgstr ""
  3348. #: src/settings_translation_file.cpp
  3349. msgid "Timeout for client to remove unused map data from memory."
  3350. msgstr ""
  3351. #: src/settings_translation_file.cpp
  3352. msgid ""
  3353. "To reduce lag, block transfers are slowed down when a player is building "
  3354. "something.\n"
  3355. "This determines how long they are slowed down after placing or removing a "
  3356. "node."
  3357. msgstr ""
  3358. #: src/settings_translation_file.cpp
  3359. msgid "Toggle camera mode key"
  3360. msgstr ""
  3361. #: src/settings_translation_file.cpp
  3362. msgid "Tooltip delay"
  3363. msgstr ""
  3364. #: src/settings_translation_file.cpp
  3365. msgid "Trees noise"
  3366. msgstr ""
  3367. #: src/settings_translation_file.cpp
  3368. msgid "Trilinear filtering"
  3369. msgstr ""
  3370. #: src/settings_translation_file.cpp
  3371. msgid ""
  3372. "True = 256\n"
  3373. "False = 128\n"
  3374. "Useable to make minimap smoother on slower machines."
  3375. msgstr ""
  3376. #: src/settings_translation_file.cpp
  3377. msgid "Trusted mods"
  3378. msgstr ""
  3379. #: src/settings_translation_file.cpp
  3380. msgid ""
  3381. "Typical maximum height, above and below midpoint, of floatland mountain "
  3382. "terrain."
  3383. msgstr ""
  3384. #: src/settings_translation_file.cpp
  3385. msgid "URL to the server list displayed in the Multiplayer Tab."
  3386. msgstr ""
  3387. #: src/settings_translation_file.cpp
  3388. msgid "Undersampling"
  3389. msgstr ""
  3390. #: src/settings_translation_file.cpp
  3391. msgid ""
  3392. "Undersampling is similar to using lower screen resolution, but it applies\n"
  3393. "to the game world only, keeping the GUI intact.\n"
  3394. "It should give significant performance boost at the cost of less detailed "
  3395. "image."
  3396. msgstr ""
  3397. #: src/settings_translation_file.cpp
  3398. msgid "Unlimited player transfer distance"
  3399. msgstr ""
  3400. #: src/settings_translation_file.cpp
  3401. msgid "Unload unused server data"
  3402. msgstr ""
  3403. #: src/settings_translation_file.cpp
  3404. msgid "Use 3D cloud look instead of flat."
  3405. msgstr ""
  3406. #: src/settings_translation_file.cpp
  3407. msgid "Use a cloud animation for the main menu background."
  3408. msgstr ""
  3409. #: src/settings_translation_file.cpp
  3410. msgid "Use anisotropic filtering when viewing at textures from an angle."
  3411. msgstr ""
  3412. #: src/settings_translation_file.cpp
  3413. msgid "Use bilinear filtering when scaling textures."
  3414. msgstr ""
  3415. #: src/settings_translation_file.cpp
  3416. msgid "Use key"
  3417. msgstr ""
  3418. #: src/settings_translation_file.cpp
  3419. msgid "Use mip mapping to scale textures. May slightly increase performance."
  3420. msgstr ""
  3421. #: src/settings_translation_file.cpp
  3422. msgid "Use trilinear filtering when scaling textures."
  3423. msgstr ""
  3424. #: src/settings_translation_file.cpp
  3425. msgid "V-Sync"
  3426. msgstr ""
  3427. #: src/settings_translation_file.cpp
  3428. msgid "VBO"
  3429. msgstr ""
  3430. #: src/settings_translation_file.cpp
  3431. msgid "Valley Depth"
  3432. msgstr ""
  3433. #: src/settings_translation_file.cpp
  3434. msgid "Valley Fill"
  3435. msgstr ""
  3436. #: src/settings_translation_file.cpp
  3437. msgid "Valley Profile"
  3438. msgstr ""
  3439. #: src/settings_translation_file.cpp
  3440. msgid "Valley Slope"
  3441. msgstr ""
  3442. #: src/settings_translation_file.cpp
  3443. msgid "Valleys C Flags"
  3444. msgstr ""
  3445. #: src/settings_translation_file.cpp
  3446. msgid "Variation of biome filler depth."
  3447. msgstr ""
  3448. #: src/settings_translation_file.cpp
  3449. msgid "Variation of hill height and lake depth on floatland smooth terrain."
  3450. msgstr ""
  3451. #: src/settings_translation_file.cpp
  3452. msgid "Variation of maximum mountain height (in nodes)."
  3453. msgstr ""
  3454. #: src/settings_translation_file.cpp
  3455. msgid "Variation of number of caves."
  3456. msgstr ""
  3457. #: src/settings_translation_file.cpp
  3458. msgid ""
  3459. "Variation of terrain vertical scale.\n"
  3460. "When noise is < -0.55 terrain is near-flat."
  3461. msgstr ""
  3462. #: src/settings_translation_file.cpp
  3463. msgid "Varies depth of biome surface nodes."
  3464. msgstr ""
  3465. #: src/settings_translation_file.cpp
  3466. msgid ""
  3467. "Varies roughness of terrain.\n"
  3468. "Defines the 'persistence' value for terrain_base and terrain_alt noises."
  3469. msgstr ""
  3470. #: src/settings_translation_file.cpp
  3471. msgid "Varies steepness of cliffs."
  3472. msgstr ""
  3473. #: src/settings_translation_file.cpp
  3474. msgid "Vertical screen synchronization."
  3475. msgstr ""
  3476. #: src/settings_translation_file.cpp
  3477. msgid "Video driver"
  3478. msgstr ""
  3479. #: src/settings_translation_file.cpp
  3480. msgid "View bobbing factor"
  3481. msgstr ""
  3482. #: src/settings_translation_file.cpp
  3483. msgid "View distance in nodes."
  3484. msgstr ""
  3485. #: src/settings_translation_file.cpp
  3486. msgid "View range decrease key"
  3487. msgstr ""
  3488. #: src/settings_translation_file.cpp
  3489. msgid "View range increase key"
  3490. msgstr ""
  3491. #: src/settings_translation_file.cpp
  3492. msgid "View zoom key"
  3493. msgstr ""
  3494. #: src/settings_translation_file.cpp
  3495. msgid "Viewing range"
  3496. msgstr ""
  3497. #: src/settings_translation_file.cpp
  3498. msgid "Volume"
  3499. msgstr ""
  3500. #: src/settings_translation_file.cpp
  3501. msgid ""
  3502. "W co-ordinate of the generated 3D slice of a 4D fractal.\n"
  3503. "Determines which 3D slice of the 4D shape is generated.\n"
  3504. "Has no effect on 3D fractals.\n"
  3505. "Range roughly -2 to 2."
  3506. msgstr ""
  3507. #: src/settings_translation_file.cpp
  3508. msgid "Walking speed"
  3509. msgstr ""
  3510. #: src/settings_translation_file.cpp
  3511. msgid "Water Features"
  3512. msgstr ""
  3513. #: src/settings_translation_file.cpp
  3514. msgid "Water level"
  3515. msgstr ""
  3516. #: src/settings_translation_file.cpp
  3517. msgid "Water surface level of the world."
  3518. msgstr ""
  3519. #: src/settings_translation_file.cpp
  3520. msgid "Waving Nodes"
  3521. msgstr ""
  3522. #: src/settings_translation_file.cpp
  3523. msgid "Waving leaves"
  3524. msgstr ""
  3525. #: src/settings_translation_file.cpp
  3526. msgid "Waving plants"
  3527. msgstr ""
  3528. #: src/settings_translation_file.cpp
  3529. msgid "Waving water"
  3530. msgstr ""
  3531. #: src/settings_translation_file.cpp
  3532. msgid "Waving water height"
  3533. msgstr ""
  3534. #: src/settings_translation_file.cpp
  3535. msgid "Waving water length"
  3536. msgstr ""
  3537. #: src/settings_translation_file.cpp
  3538. msgid "Waving water speed"
  3539. msgstr ""
  3540. #: src/settings_translation_file.cpp
  3541. msgid ""
  3542. "When gui_scaling_filter is true, all GUI images need to be\n"
  3543. "filtered in software, but some images are generated directly\n"
  3544. "to hardware (e.g. render-to-texture for nodes in inventory)."
  3545. msgstr ""
  3546. #: src/settings_translation_file.cpp
  3547. msgid ""
  3548. "When gui_scaling_filter_txr2img is true, copy those images\n"
  3549. "from hardware to software for scaling. When false, fall back\n"
  3550. "to the old scaling method, for video drivers that don't\n"
  3551. "properly support downloading textures back from hardware."
  3552. msgstr ""
  3553. #: src/settings_translation_file.cpp
  3554. msgid ""
  3555. "When using bilinear/trilinear/anisotropic filters, low-resolution textures\n"
  3556. "can be blurred, so automatically upscale them with nearest-neighbor\n"
  3557. "interpolation to preserve crisp pixels. This sets the minimum texture size\n"
  3558. "for the upscaled textures; higher values look sharper, but require more\n"
  3559. "memory. Powers of 2 are recommended. Setting this higher than 1 may not\n"
  3560. "have a visible effect unless bilinear/trilinear/anisotropic filtering is\n"
  3561. "enabled."
  3562. msgstr ""
  3563. #: src/settings_translation_file.cpp
  3564. msgid ""
  3565. "Whether freetype fonts are used, requires freetype support to be compiled in."
  3566. msgstr ""
  3567. #: src/settings_translation_file.cpp
  3568. msgid "Whether node texture animations should be desynchronized per mapblock."
  3569. msgstr ""
  3570. #: src/settings_translation_file.cpp
  3571. msgid ""
  3572. "Whether players are shown to clients without any range limit.\n"
  3573. "Deprecated, use the setting player_transfer_distance instead."
  3574. msgstr ""
  3575. #: src/settings_translation_file.cpp
  3576. msgid "Whether to allow players to damage and kill each other."
  3577. msgstr ""
  3578. #: src/settings_translation_file.cpp
  3579. msgid ""
  3580. "Whether to ask clients to reconnect after a (Lua) crash.\n"
  3581. "Set this to true if your server is set up to restart automatically."
  3582. msgstr ""
  3583. #: src/settings_translation_file.cpp
  3584. msgid "Whether to fog out the end of the visible area."
  3585. msgstr ""
  3586. #: src/settings_translation_file.cpp
  3587. msgid ""
  3588. "Whether to show the client debug info (has the same effect as hitting F5)."
  3589. msgstr ""
  3590. #: src/settings_translation_file.cpp
  3591. msgid ""
  3592. "Whether to support older servers before protocol version 25.\n"
  3593. "Enable if you want to connect to 0.4.12 servers and before.\n"
  3594. "Servers starting with 0.4.13 will work, 0.4.12-dev servers may work.\n"
  3595. "Disabling this option will protect your password better."
  3596. msgstr ""
  3597. #: src/settings_translation_file.cpp
  3598. msgid "Width component of the initial window size."
  3599. msgstr ""
  3600. #: src/settings_translation_file.cpp
  3601. msgid "Width of the selectionbox's lines around nodes."
  3602. msgstr ""
  3603. #: src/settings_translation_file.cpp
  3604. msgid ""
  3605. "Windows systems only: Start Minetest with the command line window in the "
  3606. "background.\n"
  3607. "Contains the same information as the file debug.txt (default name)."
  3608. msgstr ""
  3609. #: src/settings_translation_file.cpp
  3610. msgid ""
  3611. "World directory (everything in the world is stored here).\n"
  3612. "Not needed if starting from the main menu."
  3613. msgstr ""
  3614. #: src/settings_translation_file.cpp
  3615. msgid "Y of flat ground."
  3616. msgstr ""
  3617. #: src/settings_translation_file.cpp
  3618. msgid "Y of upper limit of large pseudorandom caves."
  3619. msgstr ""
  3620. #: src/settings_translation_file.cpp
  3621. msgid "Y-distance over which caverns expand to full size."
  3622. msgstr ""
  3623. #: src/settings_translation_file.cpp
  3624. msgid "Y-level of average terrain surface."
  3625. msgstr ""
  3626. #: src/settings_translation_file.cpp
  3627. msgid "Y-level of cavern upper limit."
  3628. msgstr ""
  3629. #: src/settings_translation_file.cpp
  3630. msgid "Y-level of floatland midpoint and lake surface."
  3631. msgstr ""
  3632. #: src/settings_translation_file.cpp
  3633. msgid "Y-level of higher (cliff-top) terrain."
  3634. msgstr ""
  3635. #: src/settings_translation_file.cpp
  3636. msgid "Y-level of lower terrain and lakebeds."
  3637. msgstr ""
  3638. #: src/settings_translation_file.cpp
  3639. msgid "Y-level of seabed."
  3640. msgstr ""
  3641. #: src/settings_translation_file.cpp
  3642. msgid "Y-level to which floatland shadows extend."
  3643. msgstr ""
  3644. #: src/settings_translation_file.cpp
  3645. msgid "block send optimize distance"
  3646. msgstr ""
  3647. #: src/settings_translation_file.cpp
  3648. msgid "cURL file download timeout"
  3649. msgstr ""
  3650. #: src/settings_translation_file.cpp
  3651. msgid "cURL parallel limit"
  3652. msgstr ""
  3653. #: src/settings_translation_file.cpp
  3654. msgid "cURL timeout"
  3655. msgstr ""
  3656. #~ msgid "Page $1 of $2"
  3657. #~ msgstr "Stran $1 od $2"
  3658. #~ msgid "Close store"
  3659. #~ msgstr "Zapri trgovino"
  3660. #~ msgid "Install"
  3661. #~ msgstr "Inštalacija"
  3662. #~ msgid "re-Install"
  3663. #~ msgstr "re-inštalacija"
  3664. #~ msgid "Rating"
  3665. #~ msgstr "Ocena"
  3666. #~ msgid "Shortname:"
  3667. #~ msgstr "Kratkoime:"
  3668. #~ msgid "Successfully installed:"
  3669. #~ msgstr "Uspešna inštalacija:"
  3670. #~ msgid "Downloading $1, please wait..."
  3671. #~ msgstr "Prenašam $1, prosim počakaj..."
  3672. #~ msgid "Unsorted"
  3673. #~ msgstr "Nerazvrščeno"
  3674. #~ msgid "Select path"
  3675. #~ msgstr "Izberi pot"
  3676. #~ msgid "No worldname given or no game selected"
  3677. #~ msgstr "Igra in ime sveta nista izbrana"