Rename all log tags to match English module names

[EBENEN] → [LAYERS], [EBENEN-BE] → [LAYERS-BE]
[ZEICHNUNGSEBENEN] → [DRAWING-LEVELS]
[GESTALTUNG] → [STYLES]
[OBERLEISTE] → [TOOLBAR]
[WERKZEUGE] → [TOOLS]
[DIMENSIONEN] → [DIMENSIONS]
[AUSSCHNITTE] → [VIEWPORTS]
[MASSSTAB] → [SCALE]
[SCHNITT] → [SECTION], [SCHNITT_GRIPS] → [SECTION-GRIPS]
[WAND_GRIPS] → [WALL-GRIPS], [TREPPE_GRIPS] → [STAIR-GRIPS]
[CURVE_DOTS] → [CURVE-DOTS]
[panel_base] → [CORE]
[ALIAS-LOADER] → [ALIASES]
[BEGIN-CMD] → [CMD-HOOK]
This commit is contained in:
2026-06-06 12:48:27 +02:00
parent 84ff943f92
commit b9a2124026
16 changed files with 471 additions and 471 deletions
+9 -9
View File
@@ -100,7 +100,7 @@ def _update_linePts(doc, schnitt_id, new_p1, new_p2):
doc.Strings.SetString("dossier_zeichnungsebenen",
json.dumps(z_list, ensure_ascii=False))
except Exception as ex:
print("[SCHNITT_GRIPS] persist linePts:", ex)
print("[SECTION-GRIPS] persist linePts:", ex)
return False
# Symbol regenerieren — Layer aus altem Symbol uebernehmen
@@ -133,7 +133,7 @@ def _update_linePts(doc, schnitt_id, new_p1, new_p2):
if i == 0 and gid and gid != System.Guid.Empty:
first_new_id = gid
except Exception as ex:
print("[SCHNITT_GRIPS] add new symbol curve:", ex)
print("[SECTION-GRIPS] add new symbol curve:", ex)
# Neue Hauptlinie selektieren — damit der Conduit die Marker
# gleich wieder zeigt (sonst muesste der User nochmal klicken).
@@ -150,7 +150,7 @@ def _update_linePts(doc, schnitt_id, new_p1, new_p2):
if active_id == schnitt_id:
schnitte.activate_schnitt(doc, target, skip_view=True)
except Exception as ex:
print("[SCHNITT_GRIPS] re-activate:", ex)
print("[SECTION-GRIPS] re-activate:", ex)
# Panel-Broadcast (linePts haben sich geaendert, Ebenen-Panel will
# ggf. mit-rendern)
@@ -162,7 +162,7 @@ def _update_linePts(doc, schnitt_id, new_p1, new_p2):
except Exception: pass
return True
except Exception as ex:
print("[SCHNITT_GRIPS] update endpoint:", ex)
print("[SECTION-GRIPS] update endpoint:", ex)
return False
@@ -236,7 +236,7 @@ class _SchnittEndpointConduit(rd.DisplayConduit):
e.Display.DrawLine(self.drag_preview, _MARKER_HOVER, 2)
except Exception: pass
except Exception as ex:
print("[SCHNITT_GRIPS] DrawForeground:", ex)
print("[SECTION-GRIPS] DrawForeground:", ex)
# --- MouseCallback --------------------------------------------------------
@@ -291,7 +291,7 @@ class _SchnittMouseHandler(Rhino.UI.MouseCallback):
sid, z, kind, anchor_pt = hit
self._start_drag(view.Document, sid, z, kind, anchor_pt)
except Exception as ex:
print("[SCHNITT_GRIPS] OnMouseDown:", ex)
print("[SECTION-GRIPS] OnMouseDown:", ex)
def _start_drag(self, doc, schnitt_id, z, kind, anchor_pt):
if doc is None: return
@@ -370,7 +370,7 @@ class _SchnittMouseHandler(Rhino.UI.MouseCallback):
confirmed = bool(_update_linePts(
doc, schnitt_id, new_p1, new_p2))
except Exception as ex:
print("[SCHNITT_GRIPS] _start_drag:", ex)
print("[SECTION-GRIPS] _start_drag:", ex)
finally:
if not confirmed:
for pid in hidden_clip_ids:
@@ -406,6 +406,6 @@ def install_handlers():
handler.Enabled = True
sc.sticky[_STICKY_CONDUIT] = conduit
sc.sticky[_STICKY_HANDLER] = handler
print("[SCHNITT_GRIPS] Endpoint conduit + mouse handler active")
print("[SECTION-GRIPS] Endpoint conduit + mouse handler active")
except Exception as ex:
print("[SCHNITT_GRIPS] install:", ex)
print("[SECTION-GRIPS] install:", ex)