From 53b373ad26ff3f3c1900b9baa0d5366113884ef6 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 15 Apr 2025 00:25:46 +0300 Subject: some translations --- .../protocols/implementations/VSInternalTimeSyncProtocol.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sources/protocols/implementations/VSInternalTimeSyncProtocol.java') diff --git a/sources/protocols/implementations/VSInternalTimeSyncProtocol.java b/sources/protocols/implementations/VSInternalTimeSyncProtocol.java index e72c563..e3bd181 100644 --- a/sources/protocols/implementations/VSInternalTimeSyncProtocol.java +++ b/sources/protocols/implementations/VSInternalTimeSyncProtocol.java @@ -25,8 +25,8 @@ public class VSInternalTimeSyncProtocol extends VSAbstractProtocol { * @see events.VSAbstractProtocol#onClientInit() */ public void onClientInit() { - initLong("t_min", 2000, "Max. Übetragungszeit", "ms"); - initLong("t_max", 500, "Min. Übertragungszeit", "ms"); + initLong("t_min", 2000, "Max. transmission time", "ms"); + initLong("t_max", 500, "Min. transmission time", "ms"); } /* (non-Javadoc) @@ -66,9 +66,9 @@ public class VSInternalTimeSyncProtocol extends VSAbstractProtocol { long serverTime = recvMessage.getLong("time"); long newTime = serverTime + (long) ((tMax + tMin) / 2 ); - log("Server Zeit: " + serverTime + "; (t_min,t_max): (" + tMin + - "," + tMax + "); Alte Zeit: " + process.getTime() + - "; Neue Zeit: " + newTime + "; Offset: " + + log("Server time: " + serverTime + "; (t_min,t_max): (" + tMin + + "," + tMax + "); Old time: " + process.getTime() + + "; New time: " + newTime + "; Offset: " + (process.getTime() - newTime)); process.setTime(newTime); -- cgit v1.2.3