aboutsummaryrefslogtreecommitdiff
path: root/po/cs
Commit message (Collapse)AuthorAge
* Revert "Update Russian translation"Kahrl2014-12-13
| | | | | | | | This reverts commit e4e4324a30d6bcac5cc06c74e955e4941b14bd38. Conflicts: po/minetest.pot po/*/minetest.po
* Update po filesShadowNinja2014-12-12
|
* Translated using Weblate (Czech)Jakub Vaněk2014-02-16
|
* Run updatepo.shPilzAdam2013-11-23
|
* Translated using Weblate (Czech)Jakub Vaněk2013-11-23
| | | | Myslím, že se jedná o IME Convert klávesu: http://msdn.microsoft.com/en-us/library/system.windows.input.key.aspx
* Translated using Weblate (Czech)Jakub Vaněk2013-11-23
| | | | Myslím, že se jedná o IME NonConvert klávesu: http://msdn.microsoft.com/en-us/library/system.windows.input.key.aspx
* Translated using Weblate (Czech)Frantisek Simorda2013-11-23
|
* Translated using Weblate (Czech)Heisenberg CZE2013-11-23
|
* Translated using Weblate (Czech)Petr Hála2013-11-23
|
* Translated using Weblate (Czech)Heisenberg CZE2013-11-23
|
* Translated using Weblate (Czech)Heisenberg CZE2013-11-23
|
* Translated using Weblate (Czech)Petr Hála2013-11-23
|
* Add Czech languageKahrl2013-10-08
ass="hl kwa">function(self, dtime) if exceptiondata.entity_step then core.cause_error(exceptiondata.tocause) end end, } local exception_entity_name = "errorhandler_test:error_entity" local function exception_chat_handler(playername, param) local parameters = param:split(" ") if #parameters ~= 2 then core.chat_send_player(playername, "Invalid argument count for exceptiontest") end core.log("error", "Causing error at:" .. parameters[1]) if parameters[1] == "mapgen" then exceptiondata.tocause = parameters[2] exceptiondata.mapgen = true elseif parameters[1] == "entity_step" then --spawn entity at player location local player = core.get_player_by_name(playername) if player:is_player() then local pos = player:getpos() core.add_entity(pos, exception_entity_name) end exceptiondata.tocause = parameters[2] exceptiondata.entity_step = true elseif parameters[1] == "globalstep" then exceptiondata.tocause = parameters[2] exceptiondata.globalstep = true elseif parameters[1] == "immediate" then core.cause_error(parameters[2]) else core.chat_send_player(playername, "Invalid error location: " .. dump(parameters[1])) end end core.register_chatcommand("exceptiontest", { params = "<location> <errortype>", description = "cause a given error to happen.\n" .. " location=(mapgen,entity_step,globalstep,immediate)\n" .. " errortype=(segv,zerodivision,exception)", func = exception_chat_handler, privs = { server=true } }) core.register_globalstep(function(dtime) if exceptiondata.globalstep then core.cause_error(exceptiondata.tocause) end end) core.register_on_generated(function(minp, maxp, blockseed) if exceptiondata.mapgen then core.cause_error(exceptiondata.tocause) end end) core.register_entity(exception_entity_name, exception_entity)