From 8d6cfbead92429274e0e548463dfe2d4ac3c6fca Mon Sep 17 00:00:00 2001 From: EiSiMo Date: Wed, 15 Apr 2026 09:54:17 +0200 Subject: [PATCH] Rename events for faster readability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Einsatzbeginn → Beginn, Einsatzende → Ende, Beweismittel → Fund Fixes #7 Co-Authored-By: Claude Opus 4.6 (1M context) --- source/Config.mc | 6 +++--- source/GlanceView.mc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/Config.mc b/source/Config.mc index 5397c1c..57ffb68 100644 --- a/source/Config.mc +++ b/source/Config.mc @@ -57,12 +57,12 @@ module Config { return [ { :key => ACTION_HISTORY, :icon => Rez.Drawables.IconHistory, :lines => ["Verlauf"], :color => 0xF94144 }, { :key => EVENT_GENERAL, :icon => Rez.Drawables.IconEvent, :lines => ["Ereignis"], :color => 0xF3722C }, - { :key => EVENT_START, :icon => Rez.Drawables.IconStart, :lines => ["Einsatz", "beginn"], :color => 0xF8961E }, - { :key => EVENT_END, :icon => Rez.Drawables.IconEnd, :lines => ["Einsatz", "ende"], :color => 0xF9844A }, + { :key => EVENT_START, :icon => Rez.Drawables.IconStart, :lines => ["Beginn"], :color => 0xF8961E }, + { :key => EVENT_END, :icon => Rez.Drawables.IconEnd, :lines => ["Ende"], :color => 0xF9844A }, { :key => EVENT_ARRIVAL, :icon => Rez.Drawables.IconArrival, :lines => ["Eintreffen"], :color => 0xF9C74F }, { :key => EVENT_ARREST, :icon => Rez.Drawables.IconArrest, :lines => ["Festnahme"], :color => 0x90BE6D }, { :key => EVENT_FORCE, :icon => Rez.Drawables.IconForce, :lines => ["Zwang"], :color => 0x43AA8B }, - { :key => EVENT_EVIDENCE, :icon => Rez.Drawables.IconEvidence, :lines => ["Beweis", "mittel"], :color => 0x4D908E }, + { :key => EVENT_EVIDENCE, :icon => Rez.Drawables.IconEvidence, :lines => ["Fund"], :color => 0x4D908E }, { :key => EVENT_SIGHTING, :icon => Rez.Drawables.IconSighting, :lines => ["Sichtung"], :color => 0x577590 }, { :key => ACTION_DELETE, :icon => Rez.Drawables.IconDelete, :lines => ["Letzten", "löschen"], :color => 0xFF2222 } ]; diff --git a/source/GlanceView.mc b/source/GlanceView.mc index bcec52c..a50262f 100644 --- a/source/GlanceView.mc +++ b/source/GlanceView.mc @@ -59,12 +59,12 @@ class GlanceView extends WatchUi.GlanceView { private function _eventLabel(key as String) as String { if (key.equals(Config.EVENT_GENERAL)) { return "Ereignis"; } - if (key.equals(Config.EVENT_START)) { return "Einsatzbeginn"; } - if (key.equals(Config.EVENT_END)) { return "Einsatzende"; } + if (key.equals(Config.EVENT_START)) { return "Beginn"; } + if (key.equals(Config.EVENT_END)) { return "Ende"; } if (key.equals(Config.EVENT_ARRIVAL)) { return "Eintreffen"; } if (key.equals(Config.EVENT_ARREST)) { return "Festnahme"; } if (key.equals(Config.EVENT_FORCE)) { return "Zwang"; } - if (key.equals(Config.EVENT_EVIDENCE)) { return "Beweismittel"; } + if (key.equals(Config.EVENT_EVIDENCE)) { return "Fund"; } if (key.equals(Config.EVENT_SIGHTING)) { return "Sichtung"; } return key; }