aboutsummaryrefslogtreecommitdiff
path: root/po/it
Commit message (Expand)AuthorAge
* Translated using Weblate (Italian)Emon Omen2016-05-30
* Translated using Weblate (Italian)Emon Omen2016-05-10
* Run updatepo.shest312016-05-05
* Translated using Weblate (Italian)Emon Omen2016-05-01
* Translated using Weblate (Italian)Elia Zammuto2016-03-25
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-27
* Translated using Weblate (Italian)Paolo DGZ2016-02-27
* Translated using Weblate (Italian)Paolo DGZ2016-01-25
* Translated using Weblate (Italian)Gianluca Luparini2015-12-22
* Translated using Weblate (Italian)Luca Argentieri2015-12-21
* Translated using Weblate (Italian)Andrea Di Pietro Ulla2015-12-21
* Translated using Weblate (Italian)LelixSuperHD2015-11-15
* Run util/updatepo.shest312015-11-08
* Translated using Weblate (Italian)Elia Argentieri2015-11-08
* Translated using Weblate (Italian)betacentury2015-11-08
* Translated using Weblate (Italian)Elia Argentieri2015-11-08
* Translated using Weblate (Italian)PilzAdam2015-11-08
* Run updatepo.shest312015-10-24
* Run updatepo.shest312015-09-12
* Translated using Weblate (Italian)betacentury2015-09-12
* Translated using Weblate (Italian)betacentury2015-09-12
* Run updatepo.shest312015-07-17
* Translated using Weblate (Italian)Michal Čihař2015-07-17
* Revert "Update Russian translation"Kahrl2014-12-13
* Update po filesShadowNinja2014-12-12
* Update Italian translationEnki2014-12-12
* Translated using Weblate (Italian)King Artur2014-02-16
* Run updatepo.shPilzAdam2013-11-23
* Run updatepo.shIlya Zhuravlev2013-09-08
* Run util/updatepo.shPilzAdam2013-08-25
* Fix i18n of some strings.arsdragonfly2013-07-02
* Update po filesPilzAdam2013-05-13
* Translated using Weblate (Italian)Fabio Luongo2013-03-31
* Update po filesPilzAdam2013-03-30
* Translated using Weblate (Italian)Fabio Luongo2013-03-30
* Translated using Weblate (Italian)Pilz Adam2013-02-10
* Translated using Weblate (Italian)pandoro almascarpone2013-02-09
* Merge remote branch 'origin/master'Weblate2013-02-02
|\
| * Translate key functions in key change menuPilzAdam2013-01-30
* | Translated using Weblate (Italian)Robert Arkenin2013-02-02
|/
* Update translation filesPerttu Ahola2013-01-23
* Some more Italian translationsGiuseppe Bilotta2011-08-05
* update op PO filesConstantin Wenger2011-08-05
* set some more text to gettext and updated po filesConstantin Wenger2011-07-30
* Italian translationsGiuseppe Bilotta2011-07-24
= {"pass", "dstand"}, doors={ open={ [-1]={frames={x=0, y=20}, time=1}, [1]={frames={x=40, y=60}, time=1}, sound = "advtrains_subway_dopen", }, close={ [-1]={frames={x=20, y=40}, time=1}, [1]={frames={x=60, y=80}, time=1}, sound = "advtrains_subway_dclose", } }, door_entry={-1, 1}, visual_size = {x=1, y=1}, wagon_span=2, --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, is_locomotive=true, drops={"default:steelblock 4"}, horn_sound = "advtrains_subway_horn", custom_on_step = function (self, dtime ) if self:train().velocity == 0 then return end local rpos = vector.round(round_down(self.object:getpos())) rpos.y = rpos.y -1 -- Find train tracks, if we find train tracks, we will only replace blocking nodes local tracks_below = false for y =-1,0 do for x = -2,2 do for z = -2,2 do local ps = {x=rpos.x+x, y=rpos.y+y, z=rpos.z+z} if minetest.get_item_group(minetest.get_node(ps).name, "advtrains_track") > 0 then tracks_below = true minetest.chat_send_all("Found a track!") break end end end end for x = -1,1 do for z = -1,1 do local ps = {x=rpos.x+x, y=rpos.y, z=rpos.z+z} local name = minetest.get_node(ps).name if (not tracks_below) or (minetest.get_item_group(name, "not_blocking_trains") == 0 and minetest.get_node(ps).walkable and name ~= "air" ) then minetest.set_node(ps, {name = "default:gravel"}) ps.y = ps.y-1 if not minetest.get_node(ps).walkable then minetest.set_node(ps, {name = "default:cobble"}) end end end end end, custom_on_velocity_change = function(self, velocity, old_velocity, dtime) if not velocity or not old_velocity then return end if old_velocity == 0 and velocity > 0 then minetest.sound_play("advtrains_subway_depart", {object = self.object}) end if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then self.sound_arrive_handle = minetest.sound_play("advtrains_subway_arrive", {object = self.object}) elseif (velocity > old_velocity) and self.sound_arrive_handle then minetest.sound_stop(self.sound_arrive_handle) self.sound_arrive_handle = nil end if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) self.sound_loop_tmr=3 elseif velocity>0 then self.sound_loop_tmr = self.sound_loop_tmr - dtime elseif velocity==0 then if self.sound_loop_handle then minetest.sound_stop(self.sound_loop_handle) self.sound_loop_handle = nil end self.sound_loop_tmr=0 end end, }, S("Construction train"), "advtrains_subway_wagon_inv.png")