From 1de68ec9edeafd1ecbab945480384028bab798b3 Mon Sep 17 00:00:00 2001 From: Edgar W Date: Sat, 3 Jan 2026 15:04:37 +0100 Subject: [PATCH] fix: change ZEHN VOR to ZWANZIG NACH in german version --- wordclockfunctions.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wordclockfunctions.ino b/wordclockfunctions.ino index ecbdc6e..5720b03 100644 --- a/wordclockfunctions.ino +++ b/wordclockfunctions.ino @@ -114,7 +114,7 @@ String timeToString(uint8_t hours,uint8_t minutes){ } else if(minutes >= 20 && minutes < 25) { - message += "ZEHN VOR HALB "; + message += "ZWANZIG NACH "; } else if(minutes >= 25 && minutes < 30) { @@ -130,7 +130,7 @@ String timeToString(uint8_t hours,uint8_t minutes){ } else if(minutes >= 40 && minutes < 45) { - message += "ZEHN NACH HALB "; + message += "ZWANZIG VOR "; } else if(minutes >= 45 && minutes < 50) { @@ -150,7 +150,7 @@ String timeToString(uint8_t hours,uint8_t minutes){ { hours -= 12; } - if(minutes >= 20) + if(minutes >= 25) { hours++; }