chore: generate
parent
c4c489a5bc
commit
95b17bcf5e
|
|
@ -77,9 +77,7 @@ export const DialogSelectMcp: Component = () => {
|
||||||
<span class="text-11-regular text-text-weaker">{language.t("mcp.status.disabled")}</span>
|
<span class="text-11-regular text-text-weaker">{language.t("mcp.status.disabled")}</span>
|
||||||
</Show>
|
</Show>
|
||||||
<Show when={loading() === i.name}>
|
<Show when={loading() === i.name}>
|
||||||
<span class="text-11-regular text-text-weak">
|
<span class="text-11-regular text-text-weak">{language.t("common.loading.ellipsis")}</span>
|
||||||
{language.t("common.loading.ellipsis")}
|
|
||||||
</span>
|
|
||||||
</Show>
|
</Show>
|
||||||
</div>
|
</div>
|
||||||
<Show when={error()}>
|
<Show when={error()}>
|
||||||
|
|
|
||||||
|
|
@ -72,8 +72,7 @@ export const ModelTooltip: Component<{ model: ModelInfo; latest?: boolean; free?
|
||||||
? language.t("model.tooltip.reasoning.allowed")
|
? language.t("model.tooltip.reasoning.allowed")
|
||||||
: language.t("model.tooltip.reasoning.none")
|
: language.t("model.tooltip.reasoning.none")
|
||||||
}
|
}
|
||||||
const context = () =>
|
const context = () => language.t("model.tooltip.context", { limit: props.model.limit.context.toLocaleString() })
|
||||||
language.t("model.tooltip.context", { limit: props.model.limit.context.toLocaleString() })
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class="flex flex-col gap-1 py-1">
|
<div class="flex flex-col gap-1 py-1">
|
||||||
|
|
|
||||||
|
|
@ -1696,9 +1696,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
|
||||||
<Match when={working()}>
|
<Match when={working()}>
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
<span>{language.t("prompt.action.stop")}</span>
|
<span>{language.t("prompt.action.stop")}</span>
|
||||||
<span class="text-icon-base text-12-medium text-[10px]!">
|
<span class="text-icon-base text-12-medium text-[10px]!">{language.t("common.key.esc")}</span>
|
||||||
{language.t("common.key.esc")}
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</Match>
|
</Match>
|
||||||
<Match when={true}>
|
<Match when={true}>
|
||||||
|
|
|
||||||
|
|
@ -1573,12 +1573,12 @@ export default function Layout(props: ParentProps) {
|
||||||
keybind={command.keybind("session.archive")}
|
keybind={command.keybind("session.archive")}
|
||||||
gutter={8}
|
gutter={8}
|
||||||
>
|
>
|
||||||
<IconButton
|
<IconButton
|
||||||
icon="archive"
|
icon="archive"
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
onClick={() => archiveSession(props.session)}
|
onClick={() => archiveSession(props.session)}
|
||||||
aria-label={language.t("command.session.archive")}
|
aria-label={language.t("command.session.archive")}
|
||||||
/>
|
/>
|
||||||
</TooltipKeybind>
|
</TooltipKeybind>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -2017,9 +2017,7 @@ export default function Page() {
|
||||||
style={{ color: "rgba(239, 68, 68, 0.8)" }}
|
style={{ color: "rgba(239, 68, 68, 0.8)" }}
|
||||||
/>
|
/>
|
||||||
<div class="text-center" style={{ color: "rgba(255, 255, 255, 0.7)" }}>
|
<div class="text-center" style={{ color: "rgba(255, 255, 255, 0.7)" }}>
|
||||||
<div class="text-14-semibold mb-1">
|
<div class="text-14-semibold mb-1">{language.t("terminal.connectionLost.title")}</div>
|
||||||
{language.t("terminal.connectionLost.title")}
|
|
||||||
</div>
|
|
||||||
<div class="text-12-regular" style={{ color: "rgba(255, 255, 255, 0.5)" }}>
|
<div class="text-12-regular" style={{ color: "rgba(255, 255, 255, 0.5)" }}>
|
||||||
{language.t("terminal.connectionLost.description")}
|
{language.t("terminal.connectionLost.description")}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue