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.
26 lines
927 B
Lua
26 lines
927 B
Lua
return {
|
|
-- Empty-state hint
|
|
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",
|
|
launch_anyway = "Launch anyway",
|
|
-- Conflict modal
|
|
conflict_title = "Dependency conflict",
|
|
conflict_body_line1 = "This module has unresolved dependencies.",
|
|
conflict_body_line2_fmt = "Missing libs: %d",
|
|
-- Quit modal (already in v0.2.0 but moves to strings now)
|
|
quit_prompt = "Quit Sporel?",
|
|
yes = "Yes",
|
|
no = "No",
|
|
-- News entry default title
|
|
news_default_title = "News",
|
|
}
|