diff --git a/examples/date-diff.py b/examples/date-diff.py index 6a3ceb4..db6da0e 100644 --- a/examples/date-diff.py +++ b/examples/date-diff.py @@ -64,7 +64,7 @@ def init_monitor(): # Drawing on the Horizontal image logging.info("1.Drawing on the Horizontal image...") - drawblack.text((4, 0), 'Lieber Reinhold, auf dich warten noch: ' + str(duration.days) + " Tage", font = font12, fill = 0) + drawblack.text((4, 0), 'Lieber Reinhold, in nur noch: ' + str(duration.days) + " Tagen", font = font12, fill = 0) drawblack.text((4, 16), 'Oder ' + str(round(duration.days / 7,2)) + " Wochen", font = font16, fill = 0) drawblack.text((4, 32), 'Oder ' + str(round(duration.days / 30,2)) + " Monate", font = font16, fill = 0) drawblack.text((4, 48), 'Oder ' + str(duration.days * 24) + " Stunden", font = font16, fill = 0)