aboutsummaryrefslogtreecommitdiff
path: root/po/lt (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-10-24Small logging refactor and additional optionsest312-57/+89
-> Get rid of Logger::logToSystem and use normal downstream output system for android instead -> Give the downstream output system more information: enrich the log function of ILogOutput with information and add ICombinedLogOutput for easier use. -> Make Logger::getLevelLabel() static and public so that it can be used by downstream log output. -> Add g_ and m_ prefixes where required
2015-10-24Improve Lua settings menuPilzAdam5-754/+1359
* Add key settings to setting table and ignore them later This way they are added to the auto-generated minetest.conf.example * Add flags type * Add input validation for int, float and flags * Break in-game graphic settings into multiple sections * Parse settingtpes.txt in mods and games * Improve description for a lot of settings * Fix typos and wording in settingtypes.txt * Convert language setting to an enum
2015-10-24Fix compilation under MSVC and remove unnecessary conditional function prototypekwolekr3-15/+2
Thanks to SmallJoker for pointing this out.
2015-10-24Fix on_rightclick() being called directly after placing nodeBlockMen1-5/+4
fixes https://github.com/minetest/minetest_game/issues/537
2015-10-24Improve rollback database indexingcheapie1-2/+1
Index more columns in the action table of the rollback DB to improve the performance of /rollback_check
2015-10-24Flush rollback log more oftenest311-0/+3
Flushes the buffer of rollback actions that wait to get saved in two more situations: 1. Flushes in the destructor of the rollback. This makes the server not forget the last < 500 rollback entries when it shuts down. 2. Flushes the rollback when /rollback_check is invoked. This is neccessary as otherwise it leads to confusion if users want to test the rollback functionality by placing a node and then executing the check on it, or if the actions were very recent out of other reasons.
2015-10-24Fix some threading things and add additional thread unittestskwolekr4-55/+137
- Fix thread name reset on start() - Fully reset thread state on kill() - Add unittests to check for correct object states under various circumstances
2015-10-23Decoration API: Add flag for placement on liquid surfaceparamat5-8/+38
Add findLiquidSurface() function to mapgen.cpp Update lua_api.txt
2015-10-22Add more ways to pass data to check_player_privsRobert Zenz2-7/+29
The callback can now be invoked with either the player object or name as the first parameter, and with either a table or a list of strings, like this: minetest.check_player_privs(player_name, { shout = true, fly = true }) minetest.check_player_privs(player_name, "shout", "fly") minetest.check_player_privs(player, { shout = true, fly = true }) minetest.check_player_privs(player, "shout", "fly")
2015-10-22Translated using Weblate (Portuguese (Brazil))Leonardo1-8/+8
Currently translated at 72.6% (202 of 278 strings)
2015-10-22Translated using Weblate (Japanese)Rui1-17/+14
Currently translated at 100.0% (278 of 278 strings)
2015-10-22Translated using Weblate (German)est311-3/+3
Currently translated at 100.0% (278 of 278 strings)
2015-10-19init_log_streams: check if log_filename is empty.Jun Zhang1-1/+1
Fixes #3262.
2015-10-18ABMs: Make catch-up behaviour optionalparamat5-14/+33
Default is true for backwards compatibility Update lua_api.txt
2015-10-18Settings tab: double click opens/closes treesKahrl1-0/+5
2015-10-18Settings tab: don't autoscroll when toggling "Show technical names"Kahrl1-2/+7
2015-10-18Remove wstrgettextest313-42/+34
Everywhere where wstrgettext was used, its output was converted back to utf8. As wstrgettext internally converts the return value from utf8 to wstring, it has been a waste. Remove the function, and use strgettext instead.
2015-10-18Display sane output for empty descriptionsest311-3/+11
According to its man page, the function gettext(3) "may return a nonempty string" when msgid is "". This commit fixes a bug where the comment "" for some settings caused gettext to return a "nonempty string", in this case header info of the po file.
2015-10-17Fix GUITable selection issues with treesKahrl1-9/+30
- setOpenedTrees(): this internal function was calling setSelected() to update m_selected. Since setSelected() calls autoScroll(), this caused the scrollbar to scroll back to the selected row in some cases when that shouldn't be done. For example, clicking the "+" to open a tree caused autoscroll. Fix this by making setOpenedTrees() modify m_selected directly. - setDynamicData(): set scrollbar position after calling setSelected(), not before. This avoids setSelected()'s autoscroll messing up the scrollbar position again. - setSelected(): If an invisible row is selected, open all parents of the selected row in order to make the selected row visible. This fixes the issue where all the trees are closed again whenever you return from the setting edit dialog to the settings tab.
2015-10-17Re-add "file" type for --add-location for xgettext callest311-1/+1
Passing line numbers in the comments is bad. References: * Commit 94961b3364f76d5861913af321e9be6200d080b3 * Previous commit
2015-10-17New settings tab contain all possible settingsPilzAdam5-970/+2539
Settings are automatically parsed from builtin/settingtypes.txt The edit dialog automatically adjust based on the type of setting
2015-10-17Fix == to =Rui1-1/+1
2015-10-17Fix missing include on AIXkwolekr1-1/+4
2015-10-16Refactor Thread class to improve readability and portabilitykwolekr3-205/+350
- Fix some incompatibilities with obscure platforms (AIX and WinCE) - Clean up Thread class interface - Add m_ prefix to private member variables - Simplify platform-dependent logic, reducing preprocessor conditional clauses and improving readibility - Add Thread class documentation
2015-10-16Refactor thread utility interfacekwolekr6-25/+85
- Add "thr_" prefix to thread utility functions - Compare threadid_ts in a portable manner, where possible
2015-10-17Fix crash regression when invsize formspec gets usedest311-4/+8
The invsize formspec element is outdated. Even though, it is still supported, only a deprecation warning is shown, introduced by commit [1]. The lua context passed to the log_deprecated method added by commit [1] is NULL for the invsize deprecation warning, as its run on the client and not the server. Commit [1] has removed checks for NULL inside the log_deprecated method, resulting in a crash when a formspec with an invsize element is parsed. This commit puts the check back. Fixes #3260. Referenced commits: [1]: b5acec0a3c5701c53854ff7afdf4008863e6e8df "Add proper lua api deprecated handling" [2]: 7b8d372947aae232ddf598155e972bb4dda157a "Use warningstream for deprecated field messages and refactor log_deprecated"
2015-10-15Fix enforcing of nametag hidingest311-0/+5
Commit d2ca662569427d36642660314668e416bf68f3c8 "Enforce hiding nametag" didn't fix the issue for "client" instances, where the nametag update was received before the object was added to the scene. This resulted in the grey shadow on the nametag that commit tried to fix. Thanks to @neoascetic for pointing out that there still is a shadow.
2015-10-15Compress textures and fontsMaksim Gamarnik63-0/+0
Used PNGOUT, OptiPNG and DeflOpt. Removes ~350 KB without any loss in quality.
2015-10-15Add BufReader and vector-based serialization methodskwolekr3-2/+573
2015-10-15Clean up gettext initializationShadowNinja2-67/+51
2015-10-15Use warningstream for deprecated field messages and refactor log_deprecatedShadowNinja2-40/+30
2015-10-15Remove explicit syslog printing for uncaught exceptions on AndroidShadowNinja1-18/+17
All log operations are now added to the syslog implicitly. Also, pass along mutable string to argument vector for main().
2015-10-14Rename macros with two leading underscoresShadowNinja20-113/+109
These names are reserved for the compiler/library implementations.
2015-10-14Always use errorstream for DEBUG_EXCEPTION_HANDLERShadowNinja7-13/+13
2015-10-14Lower log level for benign socket errorsShadowNinja1-3/+2
2015-10-14Use warningstream for log messages with WARNINGShadowNinja26-94/+92
Remove DTIME macro and its uses, too
2015-10-14Refactor loggingShadowNinja25-627/+574
- Add warning log level - Change debug_log_level setting to enumeration string - Map Irrlicht log events to MT log events - Encapsulate log_* functions and global variables into a class, Logger - Unify dstream with standard logging mechanism - Unify core.debug() with standard core.log() script API
2015-10-12Fix how address is logged when a wrong password is suppliedKahrl1-5/+6
- SRP: print the address only once, not twice - Legacy: previously the address was not printed at all - Make both messages structurally the same, to facilitate log analyzers
2015-10-12Localize digprop_err functionRui1-2/+1
2015-10-11Mgfractal: Independant offset and slice params for mandelbrot and juliaparamat2-51/+53
Player now spawns on julia set due to julia offset Add commented-out '#include profiler.h' for timetaker use Use v3fs to reduce number of parameters Tune tunnel width to match mgv7
2015-10-10Fractal mapgen: Fix mysterious bugparamat1-1/+6
2015-10-10Clear list rings when loading a new formspecest311-0/+1
Fixes a bug where the old list ring remained when a new formspec was displayed over the old one. This created the list-ring of the new formspec to be partly ignored. Thanks to @VanessaE to report the bug, and @DonBatman to produce the code that exposed it.
2015-10-09Mapgen: Use mapgen-specific names for constants in headersparamat8-26/+30
Update copyright years in all mapgens Add myself to copyright notices in mgv5 and mgv7
2015-10-07Fractal mapgen: Add seabed and large pseudorandom cavesparamat4-50/+371
2015-10-06Android/Mapgen: Add fractal mapgen file to android makefilesparamat1-0/+1
2015-10-06Correct SRP documentationest311-2/+3
Previous statements were wrong.
2015-10-06Add viewing range GUI settingkilbith1-4/+89
2015-10-06Mapgen: Add 4D fractal mapgenparamat4-0/+733
2015-10-05Mgv5: getGroundLevelAtPoint searches a larger rangeparamat1-9/+10
2015-10-05Translated using Weblate (Spanish)OdnetninI1-4/+5
Currently translated at 99.6% (277 of 278 strings)