Final speed after breaking, before halting : Endgeschwindigkeit nach Bremsvorgang, vor dem Anhalten
FinishRoute : Route abschließen
first parked train : ersten abgestellten Zug wählen
Firing {} : starte {}
For each {} do : Mit jedem {}
forward : vorwärts
@ -192,6 +193,7 @@ Inverts the direction {} is heading to. : Kehrt die Richtung, in welche {} fähr
@@ -192,6 +193,7 @@ Inverts the direction {} is heading to. : Kehrt die Richtung, in welche {} fähr
{} is off : {} ist Aus
{} is on : {} ist Ein
{} is oriented {} : {} ist {} gerichtet
JSON code of {} : JSON-Code von {}
known cars : bekannte Waggons
known locomotives : bekannte Lokomotiven
known trains : bekannte Züge
@ -235,6 +237,7 @@ new locomotive : neue Lok
@@ -235,6 +237,7 @@ new locomotive : neue Lok
new tag : neue Markierung
new train : neuer Zug
No : keine
No direct route from {} to {} : keine direkte Verbindung von {} zu {}
No free routes from {} : keine Route von {} frei
NORTH : Norden
Not connected to other bridge part! : Nicht mit anderem Brücken-Teil verbunden!
@ -262,6 +265,7 @@ other train properties : andere Zug-Eigenschaften
@@ -262,6 +265,7 @@ other train properties : andere Zug-Eigenschaften
@ -435,6 +440,7 @@ Turns the train, as if it went through a loop. : Dreht den ZUg, als wenn er eine
@@ -435,6 +440,7 @@ Turns the train, as if it went through a loop. : Dreht den ZUg, als wenn er eine
Unknown action\: {} : Unbekannte Aktion: {}
Use negative number to count from end. : Nutze negative Nummern, um von Ende zu zählen.
@ -71,6 +72,8 @@ public class Locomotive extends Car implements Constants,Device{
@@ -71,6 +72,8 @@ public class Locomotive extends Car implements Constants,Device{
@ -98,42 +101,48 @@ public class Locomotive extends Car implements Constants,Device{
@@ -98,42 +101,48 @@ public class Locomotive extends Car implements Constants,Device{
@ -149,7 +158,7 @@ public class Locomotive extends Car implements Constants,Device{
@@ -149,7 +158,7 @@ public class Locomotive extends Car implements Constants,Device{
}
params.put(ACTION,ACTION_TURN);
newButton(t("Turn"),params).title(t("Inverts the direction {} is heading to.",locoOrTrain)).clazz(ACTION_TURN).addTo(direction);
newButton(t("Turn"),params).title(t("Inverts the direction {} is heading to.",locoOrTrain)).clazz(ACTION_TURN).addTo(par);
if(isSet(train)){
BlockcurrentBlock=train.currentBlock();
@ -192,7 +201,12 @@ public class Locomotive extends Car implements Constants,Device{
@@ -192,7 +201,12 @@ public class Locomotive extends Car implements Constants,Device{
@ -202,9 +216,8 @@ public class Locomotive extends Car implements Constants,Device{
@@ -202,9 +216,8 @@ public class Locomotive extends Car implements Constants,Device{
}
publicObjectfaster(intsteps){
setSpeed(speed+steps);
returnproperties();
publicTagfaster(intsteps){
returnsetSpeed(speed+steps);
}
privatevoidinit(){
@ -415,14 +428,16 @@ public class Locomotive extends Car implements Constants,Device{
@@ -415,14 +428,16 @@ public class Locomotive extends Car implements Constants,Device{