# HG changeset patch # User Wuzzy # Date 1479945040 -3600 # Node ID 1442649482771c727992f4c2e0dac006c4165553 # Parent 05a968518a561308436bfeedf4edb6d8e454656b Change ammo display texts in Tumbler to avoid pluralization failures diff -r 05a968518a56 -r 144264948277 share/hedgewars/Data/Scripts/Multiplayer/Tumbler.lua --- a/share/hedgewars/Data/Scripts/Multiplayer/Tumbler.lua Thu Nov 24 00:42:27 2016 +0100 +++ b/share/hedgewars/Data/Scripts/Multiplayer/Tumbler.lua Thu Nov 24 00:50:40 2016 +0100 @@ -410,9 +410,9 @@ shotsMsg = loc("Out of ammo!") else if wepIndex == 2 then - shotsMsg = loc("%d fuel remaining") + shotsMsg = loc("Fuel: %d") else - shotsMsg = loc("%d shots remaining") + shotsMsg = loc("Ammo: %d") end end AddCaption(string.format(shotsMsg, wepAmmo[wepIndex]), wepCol[wepIndex],capgrpMessage2)