diff --git a/pom.xml b/pom.xml index aa3e436..86b1e3b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 de.srsoftware web4rail - 1.4.38 + 1.4.39 Web4Rail jar Java Model Railway Control diff --git a/resources/translations/Application.de.translation b/resources/translations/Application.de.translation index 5945b65..645f4ba 100644 --- a/resources/translations/Application.de.translation +++ b/resources/translations/Application.de.translation @@ -107,6 +107,7 @@ Counterpart : Gegenstück couple : kuppeln Couple first parked train : ersten geparkten Zug kuppeln Couple last parked train : letzten geparkten Zug kuppeln +Coupler : Kupplung CoupleTrain : Zug kuppeln Create action : Aktion erzeugen Current location : Aufenthaltsort @@ -190,6 +191,7 @@ Hold : an lassen if ({}) : falls ({}) If car of train\: inspect car number : Falls Fahrzeug aus Zug: Untersuche Fahrzeug Nummer If checked, tiles behind the train are freed according to the length of the train and the tiles. If it is unchecked, tiles will not get free before route is finished. : Falls aktiviert, wird die Strecke anhand von Zug- und Kachel-Länge hinter dem Zug freigegeben, Falls deaktiviert wird die Strecke hinter dem Zug erst bei Abschluss der Route freigegeben. +Interior light : Innenbeleuchtung internal contacts : interne Kontakte Interval : Intervall inverted : invertiert diff --git a/src/main/java/de/srsoftware/web4rail/moving/Locomotive.java b/src/main/java/de/srsoftware/web4rail/moving/Locomotive.java index eed1d92..42e39f0 100644 --- a/src/main/java/de/srsoftware/web4rail/moving/Locomotive.java +++ b/src/main/java/de/srsoftware/web4rail/moving/Locomotive.java @@ -259,7 +259,7 @@ public class Locomotive extends Car implements Constants{ } private static String functionName(int index,String key) { - return "function["+index+"]["+key+"]"; + return "functions/"+index+"/"+key; } @Override