aboutsummaryrefslogtreecommitdiff
path: root/build/android
Commit message (Collapse)AuthorAge
* Android dependencies updates (#5755)Loïc Blot2017-05-13
| | | | | | * irrlicht ogles 5122 -> 5145 * openssl 1.0.2j -> 1.0.2k * curl 7.52 -> 7.54 * sqlite 3.15.2 -> 3.18.0
* Move KeyList & InputHandler from game.h to client/inputhandler.h (#5752)Loïc Blot2017-05-13
| | | | | | | | | | * Move KeyList & InputHandler from game.h to client/inputhandler.h We have a header for inputs, move inputhandler class & related keylist object to it Also introduce a cpp file for MyEventReceiver::OnEvent function in inputhandler.h because a so huge function doesn't needs to be inlined * Pass clang-format on inputhandler.{cpp,h} (compatible)
* Clean up numeric.h and split FacePositionCache from itShadowNinja2017-05-06
| | | | | I also optiized FacePositionCache a bit: I removed a map lookup and vector copy from both branches of getFacePosition.
* [CSM] Add camera API (#5609)bigfoot5472017-05-05
| | | | | | | * [CSM] Add camera API roper rebase & squash * Address nerzhul's review
* Fix Android build since 2818d3f2244d2146a5cdb61cd41f6561c514f97cLoic Blot2017-04-26
|
* Player data to Database (#5475)Loïc Blot2017-04-23
| | | | | | | | | | | | * Player data to Database Add player data into databases (SQLite3 & PG only) PostgreSQL & SQLite: better POO Design for databases Add --migrate-players argument to server + deprecation warning * Remove players directory if empty
* MeshUpdateQueue: Add a MapBlock cache that minimizes the amount of MapBlock ↵Perttu Ahola2017-04-17
| | | | | | | | | | | | | | | | | | | | | copying done in the main thread Cache size is configurable by the meshgen_block_cache_size (default 20 MB). New profiler stats: - MeshUpdateQueue MapBlock cache hit % - MeshUpdateQueue MapBlock cache size kB Removes one type of stutter that was seen on the client when received MapBlocks were being handled. (the "MeshMakeData::fill" stutter) Kind of related to at least #5239 Originally preceded by these commits, now includes them: - Move the mesh generator thread into src/mesh_generator_thread.{cpp,h} - mesh_generator_thread.cpp: Update code style - MeshUpdateThread: Modify interface to house a different implementation: Actual functionality will be changed by next commits. - MeshMakeData: Add fillBlockData() interface (so that caller can fill in stuff from eg. a MapBlock cache)
* Disable android leveldb by default (#5596)Nathanaël Courant2017-04-16
| | | | 1) Now leveldb is brick (thanks google) 2) By default, use SQLite3, this work perfectly and NOBODY not use LevelDB on Android :)
* Fix android buildLoic Blot2017-04-14
|
* Update embedded jsoncpp from unk version to 0.10.6 + move libs to lib/ ↵Loïc Blot2017-04-02
| | | | | | | | | | | | | | | | instead of src/ (#5473) * Update embedded jsoncpp from unk version to 0.10.6 0.10.6 is last release without c++11 * Make jsoncpp more compliant with its amalgamate Jsoncpp cpp file should be upper, make the library like it does in amalgamate * Reorganization: move minetest embedded libs outside of source tree to /lib * Fix a dead grep in LINT
* Add missing source to android build (#5496)Uwe Koloska2017-04-01
|
* Fix undefined references (#5400)Wayward One2017-03-15
|
* Fix android buildLoic Blot2017-02-08
| | | | This fixes #5190
* Add ItemStack key-value meta storagerubenwardy2017-02-04
|
* Derive NodeMetaRef from MetaDataRefrubenwardy2017-02-04
|
* Derive NodeMetadata from Metadatarubenwardy2017-02-04
|
* Environment & IGameDef code refactoring (#4985)Ner'zhul2017-01-09
| | | | | | | | | | | | | | | | | | | | | * Environment code refactoring * Cleanup includes & class declarations in client & server environment to improve build speed * ServerEnvironment::m_gamedef is now a pointer to Server instead of IGameDef, permitting to cleanup many casts. * Cleanup IGameDef * Move ITextureSource* IGameDef::getTextureSource() to Client only. * Also move ITextureSource *IGameDef::tsrc() helper * drop getShaderSource, getSceneManager, getSoundManager & getCamera abstract call * drop unused emerge() call * cleanup server unused functions (mentionned before) * Drop one unused parameter from ContentFeatures::updateTextures * move checkLocalPrivilege to Client * Remove some unnecessary casts * create_formspec_menu: remove IWritableTextureSource pointer, as client already knows it * Fix some comments * Change required IGameDef to Server/Client pointers * Previous change that game.cpp sometimes calls functions with Client + InventoryManager + IGameDef in same functions but it's the same objects * Remove duplicate Client pointer in GUIFormSpecMenu::GUIFormSpecMenu * drop ClientMap::sectorWasDrawn which is unused
* Add raycast.cpp and tileanimation.cpp to Android.mkWayward12017-01-05
|
* Add gradle wrapper (#4954)Ner'zhul2016-12-24
| | | Gradle wrapper permit to use multiple gradle versions across OS versions
* Update Android build tools to latest version (#4872)rubenwardy2016-12-24
|
* Bump version to 0.4.15sfan52016-12-22
|
* Android: Workarounds for Googles completely broken NDKsfan52016-12-22
|
* Android: update curl and libgmpest312016-12-21
|
* Fix sqlite databases being read-only on 64bit Android by patching sqlite (#4871)rubenwardy2016-12-09
| | | Fixes #4121
* Android: fix build and update depsest312016-12-07
|
* Add missing remoteplayer.cpp to Android buildNer'zhul2016-10-28
| | | this should fix #4683
* Fix for failure to find jsoncpp in android build (#4456)Rogier-52016-08-19
| | | Commit 4503b5 did not update the android build script.
* Increase android versionCode (#4350)Ner'zhul2016-07-28
| | | | This little update is due to a packaging problem when uploading on play store. They don't permit to re upload an APK with same version code. This case was a fail on openssl packaged version which was old and rejected by Google but they don't remove the APK then i should increase the version code to permit having it on play store
* Add MapSettingsManager and new mapgen setting script API functionskwolekr2016-07-03
| | | | | | | | | | | | | | | This commit refactors the majority of the Mapgen settings system. - MapgenParams is now owned by MapSettingsManager, itself a part of ServerMap, instead of the EmergeManager. - New Script API functions added: core.get_mapgen_setting core.get_mapgen_setting_noiseparams, core.set_mapgen_setting, and core.set_mapgen_setting_noiseparams. - minetest.get/set_mapgen_params are deprecated by the above new functions. - It is now possible to view and modify any arbitrary mapgen setting from a mod, rather than the base MapgenParams structure. - MapgenSpecificParams has been removed.
* Fix android buildest312016-06-11
| | | | | | Thanks to @Wayward1 for reporting the bug. Fixes #4212.
* Tell irrlicht if we handle a key or not.est312016-05-26
| | | | | | | | | We can remove the function in MtNativeActivity now as it serves precisely that purpose: to tell irrlicht that we handled the esc key. TODO for later: * Perhaps try to find a more performant container than KeyList
* Android: enable parallelism for main target tooest312016-05-16
| | | | | | | | | This adds to the changes that commit 98d16e0d9a945f5f48462c05f26ae4bde2db5731 "Android: Tell make about sub-makes to speed up build" did, and enables parallel builds for minetest itself as well.
* Bump version to 0.4.14sfan52016-05-15
|
* Fix android build by fixing patch line endingsest312016-05-14
|
* Fix locked hardware buttons on AndroidMaksim Gamarnik2016-05-14
| | | | | | | | | | | | | | | | | Fixes #2122 Fixes #1454 Addendum (est31) According from its docs in android_native_app_glue.h (from the NDK), the onInputEvent should "Return 1 if you have handled the event, 0 for any default dispatching". Before, we always returned 1, meaning we blocked all hardware keys to be given to the OS. This broke the volume keys and has caused #2122 and #1454. Although it bases on lots of guesswork, it can probably safely be said that CGUIEnvironment::postEventFromUser returns true if the event was handled, and false if not. Therefore, set the status variable depending on what postEventFromUser returned.
* Android: download deps using httpsest312016-05-12
| | | | Its more secure, and some pages even redirect to the https version.
* Android: update openssl to 1.0.2hest312016-05-12
|
* Upgrade Android build to Gradle build systemShadowNinja2016-04-28
| | | | | | The old Ant build system has been deprecated for a while and new development is focused on Gradle. I also removed a hardcoded string that lint caught and moved the patch files to a subdirectory. I left the JNI files in the root directory.
* Android: Update dependencies, GMP was required as a dependencyMaksim Gamarnik2016-04-26
|
* Move AreaStore to utilShadowNinja2016-03-07
|
* Update Android dependencies, -O3 optimization, remove old ARMv5 configMaksim Gamarnik2016-03-05
| | | | | | | * Update OpenSSL (thanks @sapier, i use his patch!), Curl and SQLite3. * Remove old arm config. Almost all phones that use ARMv5 have 1 core and 256-512 RAM, it's about 2-5 FPS. * Do -O3 optimization for libs and remove -fexpensive-optimizations for Minetest (-O3 includes this! Read gcc docs). * OpenSSL fix - thanks @sapier, again.
* Fix android buildest312016-02-23
| | | | | | | | Android had a linker error since commit: 31e0667a4a53a238d0321194b57b083bd74c0a5b "Add Lua interface to HTTPFetchRequest" Fixes #3766. Thanks to @MoNTE48 for reporting the bug.
* Android: hardcode leveldb revisionest312016-02-22
| | | | | | | | | | | Newest leveldb commit breaks build. With no fix in sight, there is no other way than to fall back to the last working leveldb revision, and hardcode it. Workaround for upstream bug https://github.com/google/leveldb/issues/340
* Fix compilation warning if compiling for android with c++11est312016-01-23
|
* Add Valleys mapgen.Duane Robertson2016-01-14
|
* Android: shorten initial progress bar text way more simpleSapier2015-12-23
|
* Android: Tell make about sub-makes to speed up buildest312015-12-23
| | | | | | | | | | | | | | | | | | | | | Before, sub-makes called by make were called without make knowing they were sub-makes. This however led make's jobserver not do its tasks, and the build process ended up with inefficient parralelisation. This commit fixes this by applying the two ways the make manual tells about: putting + to the start of the line (used when ndk-build is invoked), and exchanging "make" with "$(MAKE)". Before, make complained with messages like: make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. This complaint can now only been seen for openssl. openssl has issues if make gets exchanged with $(MAKE): if exchanged, above error message is multiplied for various subdirs of the openssl source tree. On a 4 core box, "make -j 4" build time from "make clean_all" cleaned source tree could be improved from 15:34 minutes to 10:45 minutes. This means a speedup of 45%.
* Android: Fix extra files being copied to the APKShadowNinja2015-12-20
| | | | | | | dcb91cf0c0c9a20622feeb4e5e8104ffbc9fa8ec hacked around the biggest issue this caused, but wasted a lot of CPU time and disk space It also still included a lot of other unwanted files. This removes all of `doc/` except the license, and also removes the server list.
* Android: Remove unused build target curl_binarySapier2015-12-17
|
* Android: Don't put html docs to apkSapier2015-12-17
|
#n1113'>1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: minetest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-12-13 15:24+0100\n"
"PO-Revision-Date: 2013-06-01 18:09+0200\n"
"Last-Translator: Chynggyz Jumaliev <translatorky@lavabit.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ky\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.4-dev\n"

#: builtin/fstk/ui.lua:67
msgid "Ok"
msgstr ""

#: builtin/mainmenu/dlg_config_world.lua:26
#, fuzzy
msgid "World:"
msgstr "Дүйнөнү тандаңыз:"

#: builtin/mainmenu/dlg_config_world.lua:30
#: builtin/mainmenu/dlg_config_world.lua:32
#, fuzzy
msgid "Hide Game"
msgstr "Оюн"

#: builtin/mainmenu/dlg_config_world.lua:36
#: builtin/mainmenu/dlg_config_world.lua:38
msgid "Hide mp content"
msgstr ""

#: builtin/mainmenu/dlg_config_world.lua:46
msgid "Mod:"
msgstr ""

#: builtin/mainmenu/dlg_config_world.lua:48
#, fuzzy
msgid "Depends:"
msgstr "көз карандылыктары:"

#: builtin/mainmenu/dlg_config_world.lua:51 src/guiKeyChangeMenu.cpp:191
msgid "Save"
msgstr "Сактоо"

#: builtin/mainmenu/dlg_config_world.lua:52
#: builtin/mainmenu/dlg_create_world.lua:64
#: builtin/mainmenu/dlg_rename_modpack.lua:33 src/guiKeyChangeMenu.cpp:199
#: src/keycode.cpp:224
msgid "Cancel"
msgstr "Жокко чыгаруу"

#: builtin/mainmenu/dlg_config_world.lua:68
#, fuzzy
msgid "Enable MP"
msgstr "Баарын күйгүзүү"

#: builtin/mainmenu/dlg_config_world.lua:70
#, fuzzy
msgid "Disable MP"
msgstr "Баарын өчүрүү"

#: builtin/mainmenu/dlg_config_world.lua:74
#: builtin/mainmenu/dlg_config_world.lua:76
msgid "enabled"
msgstr "күйгүзүлгөн"

#: builtin/mainmenu/dlg_config_world.lua:82
#, fuzzy
msgid "Enable all"
msgstr "Баарын күйгүзүү"

#: builtin/mainmenu/dlg_create_world.lua:50
msgid "World name"
msgstr "Дүйнө аты"

#: builtin/mainmenu/dlg_create_world.lua:53
msgid "Seed"
msgstr ""

#: builtin/mainmenu/dlg_create_world.lua:56
msgid "Mapgen"
msgstr ""

#: builtin/mainmenu/dlg_create_world.lua:59
msgid "Game"
msgstr "Оюн"

#: builtin/mainmenu/dlg_create_world.lua:63
msgid "Create"
msgstr "Жаратуу"

#: builtin/mainmenu/dlg_create_world.lua:68
msgid "You have no subgames installed."
msgstr ""

#: builtin/mainmenu/dlg_create_world.lua:69
msgid "Download one from minetest.net"
msgstr ""

#: builtin/mainmenu/dlg_create_world.lua:72
msgid "Warning: The minimal development test is meant for developers."
msgstr ""

#: builtin/mainmenu/dlg_create_world.lua:73
msgid "Download a subgame, such as minetest_game, from minetest.net"
msgstr ""

#: builtin/mainmenu/dlg_create_world.lua:97
msgid "A world named \"$1\" already exists"
msgstr ""

#: builtin/mainmenu/dlg_create_world.lua:116
msgid "No worldname given or no game selected"
msgstr ""

#: builtin/mainmenu/dlg_delete_mod.lua:26
msgid "Are you sure you want to delete \"$1\"?"
msgstr ""

#: builtin/mainmenu/dlg_delete_mod.lua:27
#: builtin/mainmenu/dlg_delete_world.lua:25
#: builtin/mainmenu/tab_settings.lua:25
msgid "Yes"
msgstr "Ооба"

#: builtin/mainmenu/dlg_delete_mod.lua:28
msgid "No of course not!"
msgstr ""

#: builtin/mainmenu/dlg_delete_mod.lua:41
msgid "Modmgr: failed to delete \"$1\""
msgstr ""

#: builtin/mainmenu/dlg_delete_mod.lua:45
msgid "Modmgr: invalid modpath \"$1\""
msgstr ""

#: builtin/mainmenu/dlg_delete_world.lua:24
#, fuzzy
msgid "Delete World \"$1\"?"
msgstr "Дүйнөнү өчүрүү"

#: builtin/mainmenu/dlg_delete_world.lua:26
msgid "No"
msgstr "Жок"

#: builtin/mainmenu/dlg_rename_modpack.lua:26
msgid "Rename Modpack:"
msgstr ""

#: builtin/mainmenu/dlg_rename_modpack.lua:31 src/keycode.cpp:228
msgid "Accept"
msgstr "Кабыл алуу"

#: builtin/mainmenu/modmgr.lua:342
msgid "Install Mod: file: \"$1\""
msgstr ""

#: builtin/mainmenu/modmgr.lua:343
msgid ""
"\n"
"Install Mod: unsupported filetype \"$1\" or broken archive"
msgstr ""

#: builtin/mainmenu/modmgr.lua:363
#, fuzzy
msgid "Failed to install $1 to $2"
msgstr "Дүйнөнү инициалдаштыруу катасы"

#: builtin/mainmenu/modmgr.lua:366
msgid "Install Mod: unable to find suitable foldername for modpack $1"
msgstr ""

#: builtin/mainmenu/modmgr.lua:386
msgid "Install Mod: unable to find real modname for: $1"
msgstr ""

#: builtin/mainmenu/store.lua:88
msgid "Unsorted"
msgstr ""

#: builtin/mainmenu/store.lua:99 builtin/mainmenu/store.lua:584
msgid "Search"
msgstr ""

#: builtin/mainmenu/store.lua:125
#, fuzzy
msgid "Downloading"
msgstr "Ылдый"

#: builtin/mainmenu/store.lua:127
msgid "please wait..."
msgstr ""

#: builtin/mainmenu/store.lua:159
msgid "Successfully installed:"
msgstr ""

#: builtin/mainmenu/store.lua:163
#, fuzzy
msgid "Shortname:"
msgstr "Дүйнө аты"

#: builtin/mainmenu/store.lua:167 src/guiFormSpecMenu.cpp:2866
msgid "ok"
msgstr ""

#: builtin/mainmenu/store.lua:476
msgid "Rating"
msgstr ""

#: builtin/mainmenu/store.lua:501
msgid "re-Install"
msgstr ""

#: builtin/mainmenu/store.lua:503
msgid "Install"
msgstr ""

#: builtin/mainmenu/store.lua:522
msgid "Close store"
msgstr ""

#: builtin/mainmenu/store.lua:530
msgid "Page $1 of $2"
msgstr ""

#: builtin/mainmenu/tab_credits.lua:22
msgid "Credits"
msgstr "Алкыштар"

#: builtin/mainmenu/tab_credits.lua:29
msgid "Core Developers"
msgstr ""

#: builtin/mainmenu/tab_credits.lua:43
msgid "Active Contributors"
msgstr ""

#: builtin/mainmenu/tab_credits.lua:48
msgid "Previous Contributors"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:30
msgid "Installed Mods:"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:39
msgid "Online mod repository"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:78
msgid "No mod description available"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:82
msgid "Mod information:"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:93
msgid "Rename"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:95
msgid "Uninstall selected modpack"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:106
msgid "Uninstall selected mod"
msgstr ""

#: builtin/mainmenu/tab_mods.lua:121
#, fuzzy
msgid "Select Mod File:"
msgstr "Дүйнөнү тандаңыз:"

#: builtin/mainmenu/tab_mods.lua:165
msgid "Mods"
msgstr ""

#: builtin/mainmenu/tab_multiplayer.lua:23
msgid "Address/Port"
msgstr "Дареги/порту"

#: builtin/mainmenu/tab_multiplayer.lua:24 builtin/mainmenu/tab_server.lua:37
#: builtin/mainmenu/tab_simple_main.lua:25
msgid "Name/Password"
msgstr "Аты/сырсөзү"

#: builtin/mainmenu/tab_multiplayer.lua:29
#: builtin/mainmenu/tab_simple_main.lua:30
#, fuzzy
msgid "Public Serverlist"
msgstr "Жалпылык серверлердин тизмеси:"

#: builtin/mainmenu/tab_multiplayer.lua:34 builtin/mainmenu/tab_server.lua:26
#: builtin/mainmenu/tab_singleplayer.lua:85 src/keycode.cpp:230
msgid "Delete"
msgstr "Өчүрүү"

#: builtin/mainmenu/tab_multiplayer.lua:38
#: builtin/mainmenu/tab_simple_main.lua:34
msgid "Connect"
msgstr "Туташуу"

#: builtin/mainmenu/tab_multiplayer.lua:252
msgid "Client"
msgstr ""

#: builtin/mainmenu/tab_server.lua:27 builtin/mainmenu/tab_singleplayer.lua:86
msgid "New"
msgstr "Жаңы"

#: builtin/mainmenu/tab_server.lua:28 builtin/mainmenu/tab_singleplayer.lua:87
msgid "Configure"
msgstr "Ырастоо"

#: builtin/mainmenu/tab_server.lua:29
#, fuzzy
msgid "Start Game"
msgstr "Оюнду баштоо/туташуу"

#: builtin/mainmenu/tab_server.lua:30 builtin/mainmenu/tab_singleplayer.lua:89
msgid "Select World:"
msgstr "Дүйнөнү тандаңыз:"

#: builtin/mainmenu/tab_server.lua:31 builtin/mainmenu/tab_simple_main.lua:63
#: builtin/mainmenu/tab_singleplayer.lua:90
msgid "Creative Mode"
msgstr "Жаратуу режими"

#: builtin/mainmenu/tab_server.lua:33 builtin/mainmenu/tab_simple_main.lua:65
#: builtin/mainmenu/tab_singleplayer.lua:92
msgid "Enable Damage"
msgstr "Убалды күйгүзүү"

#: builtin/mainmenu/tab_server.lua:35
msgid "Public"
msgstr "Жалпылык"

#: builtin/mainmenu/tab_server.lua:45
msgid "Bind Address"
msgstr ""

#: builtin/mainmenu/tab_server.lua:47
msgid "Port"
msgstr ""

#: builtin/mainmenu/tab_server.lua:51
msgid "Server Port"
msgstr ""

#: builtin/mainmenu/tab_server.lua:174
msgid "Server"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:23
msgid "Are you sure to reset your singleplayer world?"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:27
msgid "No!!!"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:134
msgid "Smooth Lighting"
msgstr "Тегиз жарык"

#: builtin/mainmenu/tab_settings.lua:136
msgid "Enable Particles"
msgstr "Бөлүкчөлөрдү күйгүзүү"

#: builtin/mainmenu/tab_settings.lua:138
msgid "3D Clouds"
msgstr "3D-булуттар"

#: builtin/mainmenu/tab_settings.lua:140
#, fuzzy
msgid "Fancy Trees"
msgstr "Кооз бактар"

#: builtin/mainmenu/tab_settings.lua:142
#, fuzzy
msgid "Opaque Water"
msgstr "Күңүрт суу"

#: builtin/mainmenu/tab_settings.lua:144
#, fuzzy
msgid "Connected Glass"
msgstr "Туташуу"

#: builtin/mainmenu/tab_settings.lua:149
msgid "Restart minetest for driver change to take effect"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:151
msgid "Mip-Mapping"
msgstr "Mip-текстуралоо"

#: builtin/mainmenu/tab_settings.lua:153
msgid "Anisotropic Filtering"
msgstr "Анизатропия чыпкалоосу"

#: builtin/mainmenu/tab_settings.lua:155
msgid "Bi-Linear Filtering"
msgstr "Экисызык чыпкалоосу"

#: builtin/mainmenu/tab_settings.lua:157
msgid "Tri-Linear Filtering"
msgstr "Үчсызык чыпкалоосу"

#: builtin/mainmenu/tab_settings.lua:160
msgid "Shaders"
msgstr "Көлөкөлөгүчтөр"

#: builtin/mainmenu/tab_settings.lua:164
msgid "Change keys"
msgstr "Баскычтарды өзгөртүү"

#: builtin/mainmenu/tab_settings.lua:167
#, fuzzy
msgid "Reset singleplayer world"
msgstr "Бир кишилик"

#: builtin/mainmenu/tab_settings.lua:171
msgid "GUI scale factor"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:175
msgid "Scaling factor applied to menu elements: "
msgstr ""

#: builtin/mainmenu/tab_settings.lua:181
msgid "Touch free target"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:187
msgid "Touchthreshold (px)"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:194 builtin/mainmenu/tab_settings.lua:208
#, fuzzy
msgid "Bumpmapping"
msgstr "Mip-текстуралоо"

#: builtin/mainmenu/tab_settings.lua:196 builtin/mainmenu/tab_settings.lua:209
msgid "Generate Normalmaps"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:198 builtin/mainmenu/tab_settings.lua:210
msgid "Parallax Occlusion"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:200 builtin/mainmenu/tab_settings.lua:211
msgid "Waving Water"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:202 builtin/mainmenu/tab_settings.lua:212
msgid "Waving Leaves"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:204 builtin/mainmenu/tab_settings.lua:213
msgid "Waving Plants"
msgstr ""

#: builtin/mainmenu/tab_settings.lua:255
msgid "To enable shaders the OpenGL driver needs to be used."
msgstr ""

#: builtin/mainmenu/tab_settings.lua:330
msgid "Settings"
msgstr "Ырастоолор"

#: builtin/mainmenu/tab_simple_main.lua:67
msgid "Fly mode"
msgstr ""

#: builtin/mainmenu/tab_simple_main.lua:71
#, fuzzy
msgid "Start Singleplayer"
msgstr "Бир кишилик"

#: builtin/mainmenu/tab_simple_main.lua:72
#, fuzzy
msgid "Config mods"
msgstr "Ырастоо"

#: builtin/mainmenu/tab_simple_main.lua:191
#, fuzzy
msgid "Main"
msgstr "Башкы меню"

#: builtin/mainmenu/tab_singleplayer.lua:88 src/keycode.cpp:249
msgid "Play"
msgstr "Ойноо"

#: builtin/mainmenu/tab_singleplayer.lua:224
msgid "Singleplayer"
msgstr "Бир кишилик"

#: builtin/mainmenu/tab_texturepacks.lua:49
msgid "Select texture pack:"
msgstr ""

#: builtin/mainmenu/tab_texturepacks.lua:69
msgid "No information available"
msgstr ""

#: builtin/mainmenu/tab_texturepacks.lua:114
msgid "Texturepacks"
msgstr ""

#: src/client.cpp:2726
msgid "Item textures..."
msgstr "Буюм текстуралары..."

#: src/fontengine.cpp:70 src/fontengine.cpp:226
msgid "needs_fallback_font"
msgstr ""

#: src/game.cpp:1063
msgid "Respawn"
msgstr "Кайтадан жаралуу"

#: src/game.cpp:2250
#, fuzzy
msgid "Item definitions..."
msgstr "Буюм текстуралары..."

#: src/game.cpp:2255
msgid "Node definitions..."
msgstr ""

#: src/game.cpp:2262
msgid "Media..."
msgstr ""

#: src/game.cpp:2267
msgid " KB/s"
msgstr ""

#: src/game.cpp:2271
msgid " MB/s"
msgstr ""

#: src/game.cpp:4220
msgid ""
"\n"
"Check debug.txt for details."
msgstr ""
"\n"
"Толугураак маалымат үчүн, debug.txt'ти текшериңиз."

#: src/guiFormSpecMenu.cpp:2055
msgid "Proceed"
msgstr "Улантуу"

#: src/guiFormSpecMenu.cpp:2846
msgid "Enter "
msgstr ""

#: src/guiKeyChangeMenu.cpp:125
msgid "Keybindings. (If this menu screws up, remove stuff from minetest.conf)"
msgstr ""

#: src/guiKeyChangeMenu.cpp:165
msgid "\"Use\" = climb down"
msgstr ""

#: src/guiKeyChangeMenu.cpp:180
msgid "Double tap \"jump\" to toggle fly"
msgstr ""

#: src/guiKeyChangeMenu.cpp:296
msgid "Key already in use"
msgstr ""

#: src/guiKeyChangeMenu.cpp:371
msgid "press key"
msgstr "баскычты басыңыз"

#: src/guiKeyChangeMenu.cpp:397
msgid "Forward"
msgstr "Алга"

#: src/guiKeyChangeMenu.cpp:398
msgid "Backward"
msgstr "Артка"

#: src/guiKeyChangeMenu.cpp:399 src/keycode.cpp:229
msgid "Left"
msgstr "Солго"

#: src/guiKeyChangeMenu.cpp:400 src/keycode.cpp:229
msgid "Right"
msgstr "Оңго"

#: src/guiKeyChangeMenu.cpp:401
msgid "Use"
msgstr "Колдонуу"

#: src/guiKeyChangeMenu.cpp:402
msgid "Jump"
msgstr "Секирүү"

#: src/guiKeyChangeMenu.cpp:403
msgid "Sneak"
msgstr "Уурданып басуу"

#: src/guiKeyChangeMenu.cpp:404
msgid "Drop"
msgstr "Ыргытуу"

#: src/guiKeyChangeMenu.cpp:405
msgid "Inventory"
msgstr "Мүлк-шайман"

#: src/guiKeyChangeMenu.cpp:406
msgid "Chat"
msgstr "Маек"

#: src/guiKeyChangeMenu.cpp:407
msgid "Command"
msgstr "Команда"

#: src/guiKeyChangeMenu.cpp:408
msgid "Console"
msgstr "Консоль"

#: src/guiKeyChangeMenu.cpp:409
msgid "Toggle fly"
msgstr "Учууга которуу"

#: src/guiKeyChangeMenu.cpp:410
msgid "Toggle fast"
msgstr "Тез басууга которуу"

#: src/guiKeyChangeMenu.cpp:411
msgid "Toggle noclip"
msgstr ""

#: src/guiKeyChangeMenu.cpp:412
msgid "Range select"
msgstr ""

#: src/guiKeyChangeMenu.cpp:413
msgid "Print stacks"
msgstr ""

#: src/guiPasswordChange.cpp:106
msgid "Old Password"
msgstr "Эски сырсөз"

#: src/guiPasswordChange.cpp:122
msgid "New Password"
msgstr "Жаңы сырсөз"

#: src/guiPasswordChange.cpp:137
msgid "Confirm Password"
msgstr "Сырсөздү аныктоо"

#: src/guiPasswordChange.cpp:153
msgid "Change"
msgstr "Өзгөртүү"

#: src/guiPasswordChange.cpp:162
msgid "Passwords do not match!"
msgstr "Сырсөздөр дал келген жок!"

#: src/guiVolumeChange.cpp:106
msgid "Sound Volume: "
msgstr "Үн көлөмү: "

#: src/guiVolumeChange.cpp:120
msgid "Exit"
msgstr "Чыгуу"

#: src/keycode.cpp:224
msgid "Left Button"
msgstr "Сол баскыч"

#: src/keycode.cpp:224
msgid "Middle Button"
msgstr "Ортоңку баскыч"

#: src/keycode.cpp:224
msgid "Right Button"
msgstr "Оң баскыч"

#: src/keycode.cpp:224
msgid "X Button 1"
msgstr ""

#: src/keycode.cpp:225
msgid "Back"
msgstr "Артка"

#: src/keycode.cpp:225
msgid "Clear"
msgstr "Тазалоо"

#: src/keycode.cpp:225
msgid "Return"
msgstr ""

#: src/keycode.cpp:225
msgid "Tab"
msgstr "Tab"

#: src/keycode.cpp:225
msgid "X Button 2"
msgstr ""

#: src/keycode.cpp:226
msgid "Capital"
msgstr "Caps Lock"

#: src/keycode.cpp:226
msgid "Control"
msgstr "Ctrl"

#: src/keycode.cpp:226
msgid "Kana"
msgstr "Кана"

#: src/keycode.cpp:226
msgid "Menu"
msgstr "Меню"

#: src/keycode.cpp:226
msgid "Pause"
msgstr "Пауза"

#: src/keycode.cpp:226
msgid "Shift"
msgstr "Shift"

#: src/keycode.cpp:227
msgid "Convert"
msgstr ""

#: src/keycode.cpp:227
msgid "Escape"
msgstr "Esc"

#: src/keycode.cpp:227
msgid "Final"
msgstr ""

#: src/keycode.cpp:227
msgid "Junja"
msgstr "Junja"

#: src/keycode.cpp:227
msgid "Kanji"
msgstr "Кандзи"

#: src/keycode.cpp:227
msgid "Nonconvert"
msgstr ""

#: src/keycode.cpp:228
msgid "End"
msgstr "End"

#: src/keycode.cpp:228
msgid "Home"
msgstr "Home"

#: src/keycode.cpp:228
msgid "Mode Change"
msgstr "Режимди өзгөртүү"

#: src/keycode.cpp:228
msgid "Next"
msgstr "Кийинки"

#: src/keycode.cpp:228
msgid "Prior"
msgstr ""

#: src/keycode.cpp:228
msgid "Space"
msgstr "Боштук"

#: src/keycode.cpp:229
msgid "Down"
msgstr "Ылдый"

#: src/keycode.cpp:229
msgid "Execute"
msgstr "Аткаруу"

#: src/keycode.cpp:229
msgid "Print"
msgstr "Басма"

#: src/keycode.cpp:229
msgid "Select"
msgstr "Тандоо"

#: src/keycode.cpp:229
msgid "Up"
msgstr "Өйдө"

#: src/keycode.cpp:230
msgid "Help"
msgstr "Жардам"

#: src/keycode.cpp:230
msgid "Insert"
msgstr "Insert"

#: src/keycode.cpp:230
msgid "Snapshot"
msgstr "Тез сүрөт"

#: src/keycode.cpp:233
msgid "Left Windows"
msgstr "Сол Windows"

#: src/keycode.cpp:234
msgid "Apps"
msgstr "Тиркемелер"

#: src/keycode.cpp:234
msgid "Numpad 0"
msgstr "Кош. клав. 0"

#: src/keycode.cpp:234
msgid "Numpad 1"
msgstr "Кош. клав. 1"

#: src/keycode.cpp:234
msgid "Right Windows"
msgstr "Оң Windows"

#: src/keycode.cpp:234
msgid "Sleep"
msgstr "Уйку"

#: src/keycode.cpp:235
msgid "Numpad 2"
msgstr "Кош. клав. 2"

#: src/keycode.cpp:235
msgid "Numpad 3"
msgstr "Кош. клав. 3"

#: src/keycode.cpp:235
msgid "Numpad 4"
msgstr "Кош. клав. 4"

#: src/keycode.cpp:235
msgid "Numpad 5"
msgstr "Кош. клав. 5"

#: src/keycode.cpp:235
msgid "Numpad 6"
msgstr "Кош. клав. 6"

#: src/keycode.cpp:235
msgid "Numpad 7"
msgstr "Кош. клав. 7"

#: src/keycode.cpp:236
msgid "Numpad *"
msgstr "Кош. клав. *"

#: src/keycode.cpp:236
msgid "Numpad +"
msgstr "Кош. клав. +"

#: src/keycode.cpp:236
msgid "Numpad -"
msgstr "Кош. клав. -"

#: src/keycode.cpp:236
msgid "Numpad /"
msgstr "Кош. клав. /"

#: src/keycode.cpp:236
msgid "Numpad 8"
msgstr "Кош. клав. 8"

#: src/keycode.cpp:236
msgid "Numpad 9"
msgstr "Кош. клав. 9"

#: src/keycode.cpp:240
msgid "Num Lock"
msgstr "Num Lock"

#: src/keycode.cpp:240
msgid "Scroll Lock"
msgstr "Scroll Lock"

#: src/keycode.cpp:241
msgid "Left Shift"
msgstr "Сол Shift"

#: src/keycode.cpp:241
msgid "Right Shift"
msgstr "Оң Shift"

#: src/keycode.cpp:242
msgid "Left Control"
msgstr "Сол Ctrl"

#: src/keycode.cpp:242
msgid "Left Menu"
msgstr "Сол меню"

#: src/keycode.cpp:242
msgid "Right Control"
msgstr "Оң Ctrl"

#: src/keycode.cpp:242
msgid "Right Menu"
msgstr "Оң меню"

#: src/keycode.cpp:244
msgid "Comma"
msgstr "Үтүр"

#: src/keycode.cpp:244
msgid "Minus"
msgstr "Кемитүү белгиси"

#: src/keycode.cpp:244
msgid "Period"
msgstr "Айланма сан"

#: src/keycode.cpp:244
msgid "Plus"
msgstr "Кошуу белгиси"

#: src/keycode.cpp:248
msgid "Attn"
msgstr ""

#: src/keycode.cpp:248
msgid "CrSel"
msgstr ""

#: src/keycode.cpp:249
msgid "Erase OEF"
msgstr ""

#: src/keycode.cpp:249
msgid "ExSel"
msgstr ""

#: src/keycode.cpp:249
msgid "OEM Clear"
msgstr ""

#: src/keycode.cpp:249
msgid "PA1"
msgstr ""

#: src/keycode.cpp:249
msgid "Zoom"
msgstr "Масштаб"

#: src/main.cpp:1681
msgid "Main Menu"
msgstr "Башкы меню"

#: src/main.cpp:1719
msgid "Player name too long."
msgstr ""

#: src/main.cpp:1757
msgid "Connection error (timed out?)"
msgstr "Туташтыруу катасы (убактыңыз өтүп кеттиби?)"

#: src/main.cpp:1919
msgid "No world selected and no address provided. Nothing to do."
msgstr "Дүйнө тандалган жок жана дареги киргизилген жок. Кылууга эч нерсе жок."

#: src/main.cpp:1926
msgid "Provided world path doesn't exist: "
msgstr ""

#: src/main.cpp:1935
msgid "Could not find or load game \""
msgstr "Оюнду табуу же жүктөө мүмкүн эмес \""

#: src/main.cpp:1953
msgid "Invalid gamespec."
msgstr ""

#~ msgid "Left click: Move all items, Right click: Move single item"
#~ msgstr "Сол баскычы: Бардык буюмдарды ташуу, Оң баскычы: Бир буюмду ташуу"

#~ msgid "is required by:"
#~ msgstr "талап кылынганы:"

#~ msgid "Configuration saved.  "
#~ msgstr "Конфигурация сакталды.  "

#~ msgid "Warning: Configuration not consistent.  "
#~ msgstr "Эскертүү: Туура эмес конфигурация.  "

#~ msgid "Multiplayer"
#~ msgstr "Көп кишилик"

#~ msgid "Advanced"
#~ msgstr "Кошумча"

#~ msgid "Show Public"
#~ msgstr "Жалпылыкты көрсөтүү"

#~ msgid "Show Favorites"
#~ msgstr "Тандалмаларды көрсөтүү"

#~ msgid "Leave address blank to start a local server."
#~ msgstr "Жергиликтүү серверди жүргүзүү үчүн даректи бош калтырыңыз."

#~ msgid "Create world"
#~ msgstr "Дүйнөнү жаратуу"

#~ msgid "Address required."
#~ msgstr "Дареги талап кылынат."

#~ msgid "Cannot delete world: Nothing selected"
#~ msgstr "Дүнөнү жаратуу мүмкүн эмес: Эч нерсе тандалган жок"

#~ msgid "Files to be deleted"
#~ msgstr "Өчүрүлө турган файлдар"

#~ msgid "Cannot create world: No games found"
#~ msgstr "Дүйнөнү жаратуу мүмкүн эмес: Оюндар табылган жок"

#~ msgid "Cannot configure world: Nothing selected"
#~ msgstr "Дүйнөнү ырастоо мүмкүн эмес: Эч нерсе тандалган жок"

#~ msgid "Failed to delete all world files"
#~ msgstr "Бардык дүйнө файлдарын өчүрүү оңунан чыккан жок"

#~ msgid ""
#~ "Default Controls:\n"
#~ "- WASD: Walk\n"
#~ "- Mouse left: dig/hit\n"
#~ "- Mouse right: place/use\n"
#~ "- Mouse wheel: select item\n"
#~ "- 0...9: select item\n"
#~ "- Shift: sneak\n"
#~ "- R: Toggle viewing all loaded chunks\n"
#~ "- I: Inventory menu\n"
#~ "- ESC: This menu\n"
#~ "- T: Chat\n"
#~ msgstr ""
#~ "Жарыяланбас башкаруу:\n"
#~ "- WASD: Басуу\n"
#~ "- Сол кнопкасы: казуу/согуу\n"
#~ "- Оң кнопкасы: коюу/колдонуу\n"
#~ "- Чычкан дөңгөлөгү: буюмду тандоо\n"
#~ "- 0...9: буюмду тандоо\n"
#~ "- Shift: уурданып басуу\n"
#~ "- R: алыс кароо\n"
#~ "- I: мүлк-шайман\n"
#~ "- ESC: бул меню\n"
#~ "- T: маек\n"

#~ msgid ""
#~ "Default Controls:\n"
#~ "- WASD: move\n"
#~ "- Space: jump/climb\n"
#~ "- Shift: sneak/go down\n"
#~ "- Q: drop item\n"
#~ "- I: inventory\n"
#~ "- Mouse: turn/look\n"
#~ "- Mouse left: dig/punch\n"
#~ "- Mouse right: place/use\n"
#~ "- Mouse wheel: select item\n"
#~ "- T: chat\n"
#~ msgstr ""
#~ "Жарыяланбас башкаруу:\n"
#~ "- WASD: басуу\n"
#~ "- Боштугу: секирүү/өйдө чыгуу\n"
#~ "- Shift: уурданып басуу/ылдый түшүү\n"
#~ "- Q: буюмду таштоо\n"
#~ "- I: мүлк-шайман\n"
#~ "- Чычканы: бурулуу/кароо\n"
#~ "- Сол чычкан баскычы: казуу/согуу\n"
#~ "- Оң чычкан баскычы: коюу/колдонуу\n"
#~ "- Чычкан дөңгөлөгү: буюмду тандоо\n"
#~ "- T: маек\n"

#~ msgid "Exit to OS"
#~ msgstr "Оюндан чыгуу"

#~ msgid "Exit to Menu"
#~ msgstr "Менюга чыгуу"

#~ msgid "Sound Volume"
#~ msgstr "Үн көлөмү"

#~ msgid "Change Password"
#~ msgstr "Сырсөздү өзгөртүү"

#~ msgid "Continue"
#~ msgstr "Улантуу"

#~ msgid "You died."
#~ msgstr "Сиз өлдүңүз."

#~ msgid "Shutting down stuff..."
#~ msgstr "Оюн өчүрүлүүдө..."

#~ msgid "Connecting to server..."
#~ msgstr "Серверге туташтырылууда..."

#~ msgid "Resolving address..."
#~ msgstr "Дареги чечилүүдө..."

#~ msgid "Creating client..."
#~ msgstr "Клиент жаратылууда..."

#~ msgid "Creating server...."
#~ msgstr "Сервер жаратылууда...."

#~ msgid "Loading..."
#~ msgstr "Жүктөлүүдө..."

#, fuzzy
#~ msgid "Finite Liquid"
#~ msgstr "Чектүү суюктук"

#, fuzzy
#~ msgid "Password"
#~ msgstr "Эски сырсөз"

#~ msgid "Favorites:"
#~ msgstr "Тандалмалар:"

#, fuzzy
#~ msgid "Games"
#~ msgstr "Оюн"

#, fuzzy
#~ msgid "Game Name"
#~ msgstr "Оюн"