0}
fallback={
- No MCP servers configured
+
+ {language.t("dialog.mcp.empty")}
+
}
>
@@ -351,7 +357,7 @@ export function StatusPopover() {
when={lspItems().length > 0}
fallback={
- LSPs auto-detected from file types
+ {language.t("dialog.lsp.empty")}
}
>
@@ -381,8 +387,19 @@ export function StatusPopover() {
when={plugins().length > 0}
fallback={
- Plugins configured in{" "}
- opencode.json
+ {(() => {
+ const value = language.t("dialog.plugins.empty")
+ const file = "opencode.json"
+ const parts = value.split(file)
+ if (parts.length === 1) return value
+ return (
+ <>
+ {parts[0]}
+ {file}
+ {parts.slice(1).join(file)}
+ >
+ )
+ })()}
}
>
--
cgit v1.2.3