add gatesideonly icon, make Redstone Output use localizations, update en_US.lang

This commit is contained in:
asiekierka 2014-10-26 17:58:59 +01:00
parent 9ddcb5cce4
commit f190377014
3 changed files with 12 additions and 1 deletions

View file

@ -47,6 +47,13 @@ color.red=Red
color.white=White
color.yellow=Yellow
direction.north=North
direction.west=West
direction.east=East
direction.south=South
direction.up=Top
direction.down=Bottom
fillerpattern.clear=Clear
fillerpattern.fill=Fill
fillerpattern.flatten=Flatten
@ -68,6 +75,7 @@ gate.action.machine.loop=Loop
gate.action.pulsar.constant=Energy Pulsar
gate.action.pulsar.single=Single Energy Pulse
gate.action.pipe.wire=%s Pipe Signal
gate.action.redstone.signal=Redstone Signal
gate.action.robot.goto_station=Goto Station
gate.action.pipe.valve.open=Open
gate.action.pipe.valve.input_only=Input Only
@ -101,6 +109,8 @@ gate.material.emerald=Emerald
gate.name=%s %s Gate
gate.name.basic=Basic Gate
gate.parameter.redstone.gateSideOnly=Gate Side Only
gate.trigger.engine.blue=Engine Blue
gate.trigger.engine.green=Engine Green
gate.trigger.engine.yellow=Engine Yellow

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 B

View file

@ -9,6 +9,7 @@
package buildcraft.core.statements;
import buildcraft.api.gates.IActionParameter;
import buildcraft.core.utils.StringUtils;
public class ActionRedstoneOutput extends BCActionPassive {
@ -18,7 +19,7 @@ public class ActionRedstoneOutput extends BCActionPassive {
@Override
public String getDescription() {
return "Redstone Signal";
return StringUtils.localize("gate.action.redstone.signal");
}
@Override