fix(launcher): route dep-status glyphs through t() indirection

The status_glyph helper in detail.lua returned 'OK'/'WARN'/'ERR'/'?'
literals - user-visible UI text that the Mid-Gate-B grep missed
because the pattern required a lowercase suffix. Now lives in
strings.lua alongside the other UI keys, so v2 localization-lib will
pick it up without touching detail.lua.
This commit is contained in:
Calic
2026-06-11 07:54:53 +02:00
parent a19dd7f1dd
commit 29c6c409e0
2 changed files with 12 additions and 7 deletions

View File

@@ -3,6 +3,11 @@ return {
empty_hint = "Select a module to see details.",
-- Detail panel sections
dependencies = "Dependencies",
-- Dependency status glyphs
dep_glyph_ok = "OK",
dep_glyph_warn = "WARN",
dep_glyph_err = "ERR",
dep_glyph_unknown = "?",
-- Launch flow
launch_module = "Launch Module",
cancel = "Cancel",