mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-04 00:18:36 +00:00
fix(webui): complete i18n audit
This commit is contained in:
parent
df11fd92a6
commit
2b63715282
@ -135,15 +135,15 @@
|
|||||||
},
|
},
|
||||||
"pt-BR": {
|
"pt-BR": {
|
||||||
boot: "Carregando nanobot…",
|
boot: "Carregando nanobot…",
|
||||||
description: "Interface web do nanobot — converse com o seu workspace do nanobot."
|
description: "Interface web do nanobot — converse com o seu espaço de trabalho do nanobot."
|
||||||
},
|
},
|
||||||
vi: {
|
vi: {
|
||||||
boot: "Đang tải nanobot…",
|
boot: "Đang tải nanobot…",
|
||||||
description: "Giao diện web nanobot — trò chuyện với workspace nanobot của bạn."
|
description: "Giao diện web nanobot — trò chuyện với không gian làm việc nanobot của bạn."
|
||||||
},
|
},
|
||||||
id: {
|
id: {
|
||||||
boot: "Memuat nanobot…",
|
boot: "Memuat nanobot…",
|
||||||
description: "UI web nanobot — ngobrol dengan workspace nanobot Anda."
|
description: "UI web nanobot — ngobrol dengan ruang kerja nanobot Anda."
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -116,12 +116,13 @@ const RenameChatDialog = lazy(async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function SurfaceLoadingFallback() {
|
function SurfaceLoadingFallback() {
|
||||||
|
const { t } = useTranslation();
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
aria-busy="true"
|
aria-busy="true"
|
||||||
className="flex h-full w-full flex-col gap-5 px-5 py-8 sm:px-8 lg:px-12"
|
className="flex h-full w-full flex-col gap-5 px-5 py-8 sm:px-8 lg:px-12"
|
||||||
>
|
>
|
||||||
<span className="sr-only">Loading</span>
|
<span className="sr-only">{t("settings.status.loading")}</span>
|
||||||
<div className="h-4 w-20 animate-pulse rounded bg-muted/70 motion-reduce:animate-none" />
|
<div className="h-4 w-20 animate-pulse rounded bg-muted/70 motion-reduce:animate-none" />
|
||||||
<div className="h-9 w-48 animate-pulse rounded bg-muted/70 motion-reduce:animate-none" />
|
<div className="h-9 w-48 animate-pulse rounded bg-muted/70 motion-reduce:animate-none" />
|
||||||
<div className="mt-4 h-12 w-full max-w-3xl animate-pulse rounded-md bg-muted/55 motion-reduce:animate-none" />
|
<div className="mt-4 h-12 w-full max-w-3xl animate-pulse rounded-md bg-muted/55 motion-reduce:animate-none" />
|
||||||
|
|||||||
@ -31,7 +31,9 @@ export function AttachmentTile({ attachment, className, inline = false, variant
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
className="block bg-muted/20"
|
className="block bg-muted/20"
|
||||||
aria-label={attachment.name ? `Open ${attachment.name}` : t("lightbox.open", { defaultValue: "Open image" })}
|
aria-label={attachment.name
|
||||||
|
? t("message.openAttachment", { name: attachment.name })
|
||||||
|
: t("lightbox.open", { defaultValue: "Open image" })}
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
src={attachment.url}
|
src={attachment.url}
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
import { useMemo } from "react";
|
import { useMemo } from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
INLINE_TOKEN_HIGHLIGHT_COLOR,
|
INLINE_TOKEN_HIGHLIGHT_COLOR,
|
||||||
@ -140,6 +141,7 @@ export function CliAppMentionToken({
|
|||||||
variant: "composer" | "message";
|
variant: "composer" | "message";
|
||||||
isHero?: boolean;
|
isHero?: boolean;
|
||||||
}) {
|
}) {
|
||||||
|
const { t } = useTranslation();
|
||||||
const color = app.brand_color || INLINE_TOKEN_HIGHLIGHT_COLOR;
|
const color = app.brand_color || INLINE_TOKEN_HIGHLIGHT_COLOR;
|
||||||
const mentionName = label.startsWith("@") ? label.slice(1) : label;
|
const mentionName = label.startsWith("@") ? label.slice(1) : label;
|
||||||
const logoUrls = useMemo(() => logoFallbackUrls(app.logo_url), [app.logo_url]);
|
const logoUrls = useMemo(() => logoFallbackUrls(app.logo_url), [app.logo_url]);
|
||||||
@ -150,7 +152,7 @@ export function CliAppMentionToken({
|
|||||||
return (
|
return (
|
||||||
<InlineTokenHighlight
|
<InlineTokenHighlight
|
||||||
testId={`${testIdPrefix}-cli-mention-${app.name}`}
|
testId={`${testIdPrefix}-cli-mention-${app.name}`}
|
||||||
title={`CLI app: ${app.display_name || app.name}`}
|
title={t("thread.composer.mentions.cliTitle", { name: app.display_name || app.name })}
|
||||||
color={color}
|
color={color}
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
@ -195,6 +197,7 @@ export function McpPresetMentionToken({
|
|||||||
variant: "composer" | "message";
|
variant: "composer" | "message";
|
||||||
isHero?: boolean;
|
isHero?: boolean;
|
||||||
}) {
|
}) {
|
||||||
|
const { t } = useTranslation();
|
||||||
const color = preset.brand_color || INLINE_TOKEN_HIGHLIGHT_COLOR;
|
const color = preset.brand_color || INLINE_TOKEN_HIGHLIGHT_COLOR;
|
||||||
const mentionName = label.startsWith("@") ? label.slice(1) : label;
|
const mentionName = label.startsWith("@") ? label.slice(1) : label;
|
||||||
const logoUrls = useMemo(() => logoFallbackUrls(preset.logo_url), [preset.logo_url]);
|
const logoUrls = useMemo(() => logoFallbackUrls(preset.logo_url), [preset.logo_url]);
|
||||||
@ -205,7 +208,7 @@ export function McpPresetMentionToken({
|
|||||||
return (
|
return (
|
||||||
<InlineTokenHighlight
|
<InlineTokenHighlight
|
||||||
testId={`${testIdPrefix}-mcp-mention-${preset.name}`}
|
testId={`${testIdPrefix}-mcp-mention-${preset.name}`}
|
||||||
title={`MCP server: ${preset.display_name || preset.name}`}
|
title={t("thread.composer.mentions.mcpTitle", { name: preset.display_name || preset.name })}
|
||||||
color={color}
|
color={color}
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
|
|||||||
@ -411,6 +411,7 @@ function inlineLinkPreviewFromChildren(children: ReactNode): InlineLinkPreview |
|
|||||||
}
|
}
|
||||||
|
|
||||||
function InlineLinkPreviewRow({ link }: { link: InlineLinkPreview }) {
|
function InlineLinkPreviewRow({ link }: { link: InlineLinkPreview }) {
|
||||||
|
const { t } = useTranslation();
|
||||||
const { favicon, onFaviconError, onFaviconLoad } = useFaviconFallback(link.host);
|
const { favicon, onFaviconError, onFaviconLoad } = useFaviconFallback(link.host);
|
||||||
const label = link.prefix
|
const label = link.prefix
|
||||||
? `${link.prefix} — ${link.title}`
|
? `${link.prefix} — ${link.title}`
|
||||||
@ -421,7 +422,7 @@ function InlineLinkPreviewRow({ link }: { link: InlineLinkPreview }) {
|
|||||||
href={link.href}
|
href={link.href}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
aria-label={`Open link: ${label}`}
|
aria-label={t("message.openLink", { label })}
|
||||||
className={cn(
|
className={cn(
|
||||||
"not-prose inline-flex max-w-full items-center gap-2 align-baseline",
|
"not-prose inline-flex max-w-full items-center gap-2 align-baseline",
|
||||||
"text-blue-500 no-underline underline-offset-2 hover:underline dark:text-blue-300",
|
"text-blue-500 no-underline underline-offset-2 hover:underline dark:text-blue-300",
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
CliAppMentionToken,
|
CliAppMentionToken,
|
||||||
@ -69,6 +70,7 @@ export function UserMessageText({
|
|||||||
cliApps: CliAppInfo[];
|
cliApps: CliAppInfo[];
|
||||||
mcpPresets: McpPresetInfo[];
|
mcpPresets: McpPresetInfo[];
|
||||||
}) {
|
}) {
|
||||||
|
const { t } = useTranslation();
|
||||||
const segments = splitUserMessageSegments(text, cliApps, mcpPresets);
|
const segments = splitUserMessageSegments(text, cliApps, mcpPresets);
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -80,7 +82,7 @@ export function UserMessageText({
|
|||||||
<InlineTokenHighlight
|
<InlineTokenHighlight
|
||||||
key={`skill-${segment.name}-${index}`}
|
key={`skill-${segment.name}-${index}`}
|
||||||
testId={`message-skill-reference-${segment.name.toLowerCase()}`}
|
testId={`message-skill-reference-${segment.name.toLowerCase()}`}
|
||||||
title={`Skill: ${segment.name}`}
|
title={t("message.skill", { name: segment.name })}
|
||||||
color={INLINE_TOKEN_HIGHLIGHT_COLOR}
|
color={INLINE_TOKEN_HIGHLIGHT_COLOR}
|
||||||
className="font-medium"
|
className="font-medium"
|
||||||
>
|
>
|
||||||
|
|||||||
@ -7678,7 +7678,7 @@ function McpAppsCatalogRow({
|
|||||||
onClick={() => setSetupOpen(false)}
|
onClick={() => setSetupOpen(false)}
|
||||||
className="h-7 rounded-full px-2.5 text-[11.5px] font-semibold text-muted-foreground"
|
className="h-7 rounded-full px-2.5 text-[11.5px] font-semibold text-muted-foreground"
|
||||||
>
|
>
|
||||||
{tx("actions.cancel", "Cancel")}
|
{tx("settings.actions.cancel", "Cancel")}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-3 grid gap-2">
|
<div className="mt-3 grid gap-2">
|
||||||
|
|||||||
@ -304,10 +304,13 @@ export function ChannelValidationDetails({ validation }: { validation: ChannelVa
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function ChannelValidationChecks({ validation }: { validation: ChannelValidationPayload }) {
|
export function ChannelValidationChecks({ validation }: { validation: ChannelValidationPayload }) {
|
||||||
|
const { t } = useTranslation();
|
||||||
if (!validation.checks.length) return null;
|
if (!validation.checks.length) return null;
|
||||||
return (
|
return (
|
||||||
<div className="border-t border-border/60 px-4 py-4">
|
<div className="border-t border-border/60 px-4 py-4">
|
||||||
<div className="mb-2 text-[12px] font-semibold text-foreground">Connection checks</div>
|
<div className="mb-2 text-[12px] font-semibold text-foreground">
|
||||||
|
{t("settings.channels.connectionChecks")}
|
||||||
|
</div>
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
{validation.checks.slice(0, 6).map((check) => (
|
{validation.checks.slice(0, 6).map((check) => (
|
||||||
<div key={check.id} className="flex gap-2 text-[12px] leading-5">
|
<div key={check.id} className="flex gap-2 text-[12px] leading-5">
|
||||||
@ -326,7 +329,7 @@ export function ChannelValidationChecks({ validation }: { validation: ChannelVal
|
|||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
className="inline-flex items-center gap-1 text-foreground underline decoration-border underline-offset-4"
|
className="inline-flex items-center gap-1 text-foreground underline decoration-border underline-offset-4"
|
||||||
>
|
>
|
||||||
Open
|
{t("settings.channels.open")}
|
||||||
<ExternalLink className="h-3 w-3" aria-hidden />
|
<ExternalLink className="h-3 w-3" aria-hidden />
|
||||||
</a>
|
</a>
|
||||||
) : null}
|
) : null}
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
import { type RefObject, useCallback, useEffect, useMemo, useRef, useState } from "react";
|
import { type RefObject, useCallback, useEffect, useMemo, useRef, useState } from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import type { UIMessage } from "@/lib/types";
|
import type { UIMessage } from "@/lib/types";
|
||||||
@ -49,6 +50,7 @@ export function PromptRail({
|
|||||||
onJumpToPrompt,
|
onJumpToPrompt,
|
||||||
scrollRef,
|
scrollRef,
|
||||||
}: PromptRailProps) {
|
}: PromptRailProps) {
|
||||||
|
const { t } = useTranslation();
|
||||||
const railRef = useRef<HTMLDivElement>(null);
|
const railRef = useRef<HTMLDivElement>(null);
|
||||||
const measuredPromptsRef = useRef<MeasuredPrompt[]>([]);
|
const measuredPromptsRef = useRef<MeasuredPrompt[]>([]);
|
||||||
const promptAnchors = useMemo(() => userPromptAnchors(messages), [messages]);
|
const promptAnchors = useMemo(() => userPromptAnchors(messages), [messages]);
|
||||||
@ -142,7 +144,7 @@ export function PromptRail({
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
ref={railRef}
|
ref={railRef}
|
||||||
aria-label="User prompt navigation"
|
aria-label={t("thread.promptNavigator.railAria")}
|
||||||
className={cn(
|
className={cn(
|
||||||
"thread-prompt-rail group pointer-events-auto absolute top-3 z-20 w-9 opacity-100",
|
"thread-prompt-rail group pointer-events-auto absolute top-3 z-20 w-9 opacity-100",
|
||||||
"transition-opacity duration-200",
|
"transition-opacity duration-200",
|
||||||
@ -159,7 +161,7 @@ export function PromptRail({
|
|||||||
<button
|
<button
|
||||||
key={marker.ids.join("|")}
|
key={marker.ids.join("|")}
|
||||||
type="button"
|
type="button"
|
||||||
aria-label={`Jump to prompt: ${marker.label}`}
|
aria-label={t("thread.promptNavigator.jumpTo", { label: marker.label })}
|
||||||
onClick={() => onJumpToPrompt(marker.ids[marker.ids.length - 1])}
|
onClick={() => onJumpToPrompt(marker.ids[marker.ids.length - 1])}
|
||||||
onBlur={() => setFocusedMarkerIndex(null)}
|
onBlur={() => setFocusedMarkerIndex(null)}
|
||||||
onFocus={() => setFocusedMarkerIndex(index)}
|
onFocus={() => setFocusedMarkerIndex(index)}
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
||||||
import { X } from "lucide-react";
|
import { X } from "lucide-react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
|
|
||||||
@ -30,29 +31,32 @@ interface DialogContentProps
|
|||||||
const DialogContent = React.forwardRef<
|
const DialogContent = React.forwardRef<
|
||||||
React.ElementRef<typeof DialogPrimitive.Content>,
|
React.ElementRef<typeof DialogPrimitive.Content>,
|
||||||
DialogContentProps
|
DialogContentProps
|
||||||
>(({ className, children, showCloseButton = true, ...props }, ref) => (
|
>(({ className, children, showCloseButton = true, ...props }, ref) => {
|
||||||
<DialogPortal>
|
const { t } = useTranslation();
|
||||||
<DialogOverlay />
|
return (
|
||||||
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
|
<DialogPortal>
|
||||||
<DialogPrimitive.Content
|
<DialogOverlay />
|
||||||
ref={ref}
|
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
|
||||||
className={cn(
|
<DialogPrimitive.Content
|
||||||
"grid w-full max-w-lg origin-center gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 sm:rounded-lg",
|
ref={ref}
|
||||||
className,
|
className={cn(
|
||||||
)}
|
"grid w-full max-w-lg origin-center gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 sm:rounded-lg",
|
||||||
{...props}
|
className,
|
||||||
>
|
)}
|
||||||
{children}
|
{...props}
|
||||||
{showCloseButton ? (
|
>
|
||||||
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none">
|
{children}
|
||||||
<X className="h-4 w-4" />
|
{showCloseButton ? (
|
||||||
<span className="sr-only">Close</span>
|
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none">
|
||||||
</DialogPrimitive.Close>
|
<X className="h-4 w-4" />
|
||||||
) : null}
|
<span className="sr-only">{t("common.close")}</span>
|
||||||
</DialogPrimitive.Content>
|
</DialogPrimitive.Close>
|
||||||
</div>
|
) : null}
|
||||||
</DialogPortal>
|
</DialogPrimitive.Content>
|
||||||
));
|
</div>
|
||||||
|
</DialogPortal>
|
||||||
|
);
|
||||||
|
});
|
||||||
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
||||||
|
|
||||||
const DialogHeader = ({
|
const DialogHeader = ({
|
||||||
|
|||||||
@ -2,6 +2,7 @@ import * as React from "react";
|
|||||||
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
||||||
import { X } from "lucide-react";
|
import { X } from "lucide-react";
|
||||||
import { cva, type VariantProps } from "class-variance-authority";
|
import { cva, type VariantProps } from "class-variance-authority";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
|
|
||||||
@ -74,36 +75,39 @@ const SheetContent = React.forwardRef<
|
|||||||
...props
|
...props
|
||||||
},
|
},
|
||||||
ref,
|
ref,
|
||||||
) => (
|
) => {
|
||||||
<SheetPortal>
|
const { t } = useTranslation();
|
||||||
<SheetOverlay />
|
return (
|
||||||
<DialogPrimitive.Content
|
<SheetPortal>
|
||||||
ref={ref}
|
<SheetOverlay />
|
||||||
className={cn(
|
<DialogPrimitive.Content
|
||||||
sheetVariants({ side }),
|
ref={ref}
|
||||||
"data-[state=open]:animate-in data-[state=closed]:animate-out",
|
className={cn(
|
||||||
"duration-300",
|
sheetVariants({ side }),
|
||||||
className,
|
"data-[state=open]:animate-in data-[state=closed]:animate-out",
|
||||||
)}
|
"duration-300",
|
||||||
{...props}
|
className,
|
||||||
>
|
)}
|
||||||
{children}
|
{...props}
|
||||||
{showCloseButton ? (
|
>
|
||||||
<DialogPrimitive.Close
|
{children}
|
||||||
className={cn(
|
{showCloseButton ? (
|
||||||
"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity",
|
<DialogPrimitive.Close
|
||||||
"hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
className={cn(
|
||||||
"disabled:pointer-events-none",
|
"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity",
|
||||||
closeButtonClassName,
|
"hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
||||||
)}
|
"disabled:pointer-events-none",
|
||||||
>
|
closeButtonClassName,
|
||||||
<X className="h-4 w-4" />
|
)}
|
||||||
<span className="sr-only">Close</span>
|
>
|
||||||
</DialogPrimitive.Close>
|
<X className="h-4 w-4" />
|
||||||
) : null}
|
<span className="sr-only">{t("common.close")}</span>
|
||||||
</DialogPrimitive.Content>
|
</DialogPrimitive.Close>
|
||||||
</SheetPortal>
|
) : null}
|
||||||
));
|
</DialogPrimitive.Content>
|
||||||
|
</SheetPortal>
|
||||||
|
);
|
||||||
|
});
|
||||||
SheetContent.displayName = DialogPrimitive.Content.displayName;
|
SheetContent.displayName = DialogPrimitive.Content.displayName;
|
||||||
|
|
||||||
const SheetTitle = React.forwardRef<
|
const SheetTitle = React.forwardRef<
|
||||||
|
|||||||
@ -38,6 +38,15 @@
|
|||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "nanobot web UI — chat with your nanobot workspace."
|
"description": "nanobot web UI — chat with your nanobot workspace."
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "Pair a chat user",
|
||||||
|
"description": "Enter the pairing code shown in the chat.",
|
||||||
|
"code": "Pairing code",
|
||||||
|
"matched": "Matched {{channel}}. Connecting...",
|
||||||
|
"expiresInline": "Code expires {{expires}}.",
|
||||||
|
"queueCount": "{{count}} pending",
|
||||||
|
"noMatch": "No pending request matches this code."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -340,6 +349,7 @@
|
|||||||
"statusMissingCredentials": "Needs key",
|
"statusMissingCredentials": "Needs key",
|
||||||
"statusMissingDependency": "Needs dependency",
|
"statusMissingDependency": "Needs dependency",
|
||||||
"statusComingSoon": "Coming soon",
|
"statusComingSoon": "Coming soon",
|
||||||
|
"comingSoon": "Coming soon",
|
||||||
"statusNotInstalled": "Not enabled",
|
"statusNotInstalled": "Not enabled",
|
||||||
"toolScope": "Tools",
|
"toolScope": "Tools",
|
||||||
"allTools": "All",
|
"allTools": "All",
|
||||||
@ -372,7 +382,10 @@
|
|||||||
"configured": "Configured",
|
"configured": "Configured",
|
||||||
"notConfigured": "Not configured",
|
"notConfigured": "Not configured",
|
||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"restartingEngine": "Restarting"
|
"restartingEngine": "Restarting",
|
||||||
|
"checking": "Checking",
|
||||||
|
"running": "Running",
|
||||||
|
"needsSetup": "Needs setup"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "Loading settings...",
|
"loading": "Loading settings...",
|
||||||
@ -400,6 +413,7 @@
|
|||||||
"delete": "Delete",
|
"delete": "Delete",
|
||||||
"deleting": "Deleting...",
|
"deleting": "Deleting...",
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
|
"dismiss": "Dismiss",
|
||||||
"open": "Open",
|
"open": "Open",
|
||||||
"export": "Export",
|
"export": "Export",
|
||||||
"opening": "Opening...",
|
"opening": "Opening...",
|
||||||
@ -509,9 +523,19 @@
|
|||||||
"selectProvider": "Select provider",
|
"selectProvider": "Select provider",
|
||||||
"selectAspect": "Select aspect",
|
"selectAspect": "Select aspect",
|
||||||
"selectSize": "Select size",
|
"selectSize": "Select size",
|
||||||
|
"selectModel": "Select image model",
|
||||||
|
"searchOrTypeModel": "Search or type model ID",
|
||||||
|
"typeModelId": "Type the model ID supported by this provider.",
|
||||||
"configureProvider": "Configure provider",
|
"configureProvider": "Configure provider",
|
||||||
"missingCredential": "Configure this provider before enabling image generation."
|
"missingCredential": "Configure this provider before enabling image generation."
|
||||||
},
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "Provider support",
|
||||||
|
"providerInstallOnSave": "Required support will be installed automatically when you save this provider.",
|
||||||
|
"searchSupport": "Search provider support",
|
||||||
|
"searchInstallOnSave": "Olostep support will be installed automatically when you save.",
|
||||||
|
"installing": "Installing support..."
|
||||||
|
},
|
||||||
"api": {
|
"api": {
|
||||||
"title": "API server",
|
"title": "API server",
|
||||||
"openaiCompatible": "OpenAI-compatible API",
|
"openaiCompatible": "OpenAI-compatible API",
|
||||||
@ -579,6 +603,8 @@
|
|||||||
"advanced": "Advanced",
|
"advanced": "Advanced",
|
||||||
"checkAndEnable": "Check and enable",
|
"checkAndEnable": "Check and enable",
|
||||||
"checkConnection": "Check connection",
|
"checkConnection": "Check connection",
|
||||||
|
"connectionChecks": "Connection checks",
|
||||||
|
"open": "Open",
|
||||||
"checkedAndEnabled": "Checked and enabled.",
|
"checkedAndEnabled": "Checked and enabled.",
|
||||||
"checking": "Checking...",
|
"checking": "Checking...",
|
||||||
"checkOnly": "Check only",
|
"checkOnly": "Check only",
|
||||||
@ -674,6 +700,8 @@
|
|||||||
"protected": "Protected",
|
"protected": "Protected",
|
||||||
"editTitle": "Edit automation",
|
"editTitle": "Edit automation",
|
||||||
"save": "Save",
|
"save": "Save",
|
||||||
|
"commandCopied": "Copied",
|
||||||
|
"copyCommand": "Copy",
|
||||||
"deleteTitle": "Delete automation",
|
"deleteTitle": "Delete automation",
|
||||||
"deleteDescription": "This removes {{name}} from the cron store. Past chat messages stay in the session.",
|
"deleteDescription": "This removes {{name}} from the cron store. Past chat messages stay in the session.",
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
@ -733,6 +761,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"message": "Message",
|
"message": "Message",
|
||||||
|
"command": "Command",
|
||||||
"scheduleType": "Schedule type",
|
"scheduleType": "Schedule type",
|
||||||
"every": "Every",
|
"every": "Every",
|
||||||
"unit": "Unit",
|
"unit": "Unit",
|
||||||
@ -1193,7 +1222,9 @@
|
|||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "Use @{{name}} as a local CLI app",
|
"cliDescription": "Use @{{name}} as a local CLI app",
|
||||||
"mcpDescription": "Use @{{name}} as an MCP server"
|
"mcpDescription": "Use @{{name}} as an MCP server",
|
||||||
|
"cliTitle": "CLI app: {{name}}",
|
||||||
|
"mcpTitle": "MCP server: {{name}}"
|
||||||
},
|
},
|
||||||
"encoding": "Encoding…",
|
"encoding": "Encoding…",
|
||||||
"remove": "Remove attachment",
|
"remove": "Remove attachment",
|
||||||
@ -1229,7 +1260,8 @@
|
|||||||
"title": "Prompts",
|
"title": "Prompts",
|
||||||
"search": "Search prompts",
|
"search": "Search prompts",
|
||||||
"noResults": "No matching prompts.",
|
"noResults": "No matching prompts.",
|
||||||
"jumpTo": "Jump to prompt: {{label}}"
|
"jumpTo": "Jump to prompt: {{label}}",
|
||||||
|
"railAria": "User prompt navigation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1268,6 +1300,14 @@
|
|||||||
"cliRunRan": "Used",
|
"cliRunRan": "Used",
|
||||||
"cliRunFailed": "Failed",
|
"cliRunFailed": "Failed",
|
||||||
"imageAttachment": "Image attachment",
|
"imageAttachment": "Image attachment",
|
||||||
|
"videoAttachment": "Video attachment",
|
||||||
|
"fileAttachment": "File attachment",
|
||||||
|
"attachmentUnavailable": "Attachment unavailable",
|
||||||
|
"dataTable": "Data table",
|
||||||
|
"fileEditPreparing": "Preparing file edit…",
|
||||||
|
"openLink": "Open link: {{label}}",
|
||||||
|
"openAttachment": "Open {{name}}",
|
||||||
|
"skill": "Skill: {{name}}",
|
||||||
"automationSourceFallback": "Automation",
|
"automationSourceFallback": "Automation",
|
||||||
"automationTriggered": "Triggered automatically",
|
"automationTriggered": "Triggered automatically",
|
||||||
"askAboutSelection": "Ask about this",
|
"askAboutSelection": "Ask about this",
|
||||||
@ -1293,6 +1333,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "File preview",
|
"aria": "File preview",
|
||||||
|
"breadcrumb": "File path",
|
||||||
"close": "Close file preview",
|
"close": "Close file preview",
|
||||||
"loading": "Loading preview...",
|
"loading": "Loading preview...",
|
||||||
"failed": "Could not preview this file.",
|
"failed": "Could not preview this file.",
|
||||||
@ -1307,7 +1348,10 @@
|
|||||||
"copied": "Copied"
|
"copied": "Copied"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "Dismiss"
|
"dismiss": "Dismiss",
|
||||||
|
"close": "Close",
|
||||||
|
"current": "Current",
|
||||||
|
"cancel": "Cancel"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
|
|||||||
@ -38,6 +38,15 @@
|
|||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "Interfaz web de nanobot: conversa con tu espacio de trabajo de nanobot."
|
"description": "Interfaz web de nanobot: conversa con tu espacio de trabajo de nanobot."
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "Vincular a un usuario del chat",
|
||||||
|
"description": "Introduce el código de vinculación que aparece en el chat.",
|
||||||
|
"code": "Código de vinculación",
|
||||||
|
"matched": "Coincidencia: {{channel}}. Conectando...",
|
||||||
|
"expiresInline": "El código caduca {{expires}}.",
|
||||||
|
"queueCount": "{{count}} pendientes",
|
||||||
|
"noMatch": "No hay ninguna solicitud pendiente que coincida con este código."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -54,7 +63,7 @@
|
|||||||
"label": "Idioma",
|
"label": "Idioma",
|
||||||
"ariaLabel": "Cambiar idioma"
|
"ariaLabel": "Cambiar idioma"
|
||||||
},
|
},
|
||||||
"apps": "Apps",
|
"apps": "Aplicaciones",
|
||||||
"automations": "Automatizaciones",
|
"automations": "Automatizaciones",
|
||||||
"skills": {
|
"skills": {
|
||||||
"title": "Habilidades"
|
"title": "Habilidades"
|
||||||
@ -79,7 +88,7 @@
|
|||||||
"channels": "Canales",
|
"channels": "Canales",
|
||||||
"runtime": "Sistema",
|
"runtime": "Sistema",
|
||||||
"advanced": "Seguridad",
|
"advanced": "Seguridad",
|
||||||
"cliApps": "Apps CLI",
|
"cliApps": "Aplicaciones CLI",
|
||||||
"mcp": "MCP",
|
"mcp": "MCP",
|
||||||
"apps": "Aplicaciones",
|
"apps": "Aplicaciones",
|
||||||
"automations": "Automatizaciones",
|
"automations": "Automatizaciones",
|
||||||
@ -137,7 +146,7 @@
|
|||||||
"maxImagesPerTurn": "Máx. imágenes por turno",
|
"maxImagesPerTurn": "Máx. imágenes por turno",
|
||||||
"imageSaveDir": "Directorio de guardado",
|
"imageSaveDir": "Directorio de guardado",
|
||||||
"timezone": "Zona horaria",
|
"timezone": "Zona horaria",
|
||||||
"workspacePath": "Workspace predeterminado",
|
"workspacePath": "Espacio de trabajo predeterminado",
|
||||||
"localServiceAccess": "Servicios locales",
|
"localServiceAccess": "Servicios locales",
|
||||||
"webuiDefaultAccess": "Acceso predeterminado",
|
"webuiDefaultAccess": "Acceso predeterminado",
|
||||||
"currentModel": "Configuración actual",
|
"currentModel": "Configuración actual",
|
||||||
@ -148,12 +157,12 @@
|
|||||||
"logs": "Registros",
|
"logs": "Registros",
|
||||||
"diagnostics": "Diagnóstico",
|
"diagnostics": "Diagnóstico",
|
||||||
"contextWindow": "Ventana de contexto",
|
"contextWindow": "Ventana de contexto",
|
||||||
"transcription": "Transcripcion",
|
"transcription": "Transcripción",
|
||||||
"transcriptionProvider": "Proveedor",
|
"transcriptionProvider": "Proveedor",
|
||||||
"transcriptionProviderStatus": "Estado del proveedor",
|
"transcriptionProviderStatus": "Estado del proveedor de transcripción",
|
||||||
"transcriptionModel": "Modelo",
|
"transcriptionModel": "Modelo",
|
||||||
"transcriptionLanguage": "Idioma",
|
"transcriptionLanguage": "Idioma",
|
||||||
"voiceLimits": "Limites"
|
"voiceLimits": "Límites"
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"theme": "Cambia entre apariencia clara y oscura.",
|
"theme": "Cambia entre apariencia clara y oscura.",
|
||||||
@ -162,40 +171,40 @@
|
|||||||
"model": "Elige el modelo que usa este preajuste.",
|
"model": "Elige el modelo que usa este preajuste.",
|
||||||
"configPath": "Archivo de configuración que usa actualmente el gateway.",
|
"configPath": "Archivo de configuración que usa actualmente el gateway.",
|
||||||
"selectedPreset": "Los preajustes con nombre son de solo lectura aquí; edítalos en config.json.",
|
"selectedPreset": "Los preajustes con nombre son de solo lectura aquí; edítalos en config.json.",
|
||||||
"presetModel": "Cambia a Default para editar modelo y proveedor desde WebUI.",
|
"presetModel": "Cambia a Predeterminado para editar el modelo y el proveedor desde WebUI.",
|
||||||
"density": "Solo se guarda en este navegador.",
|
"density": "Solo se guarda en este navegador.",
|
||||||
"activityMode": "Elige cuánto detalle de actividad del agente se muestra por defecto.",
|
"activityMode": "Elige cuánto detalle de actividad del agente se muestra por defecto.",
|
||||||
"fileEditDisplay": "Elige si la actividad de edición muestra recuentos de líneas o el diff.",
|
"fileEditDisplay": "Elige si la actividad de edición muestra recuentos de líneas o diferencias.",
|
||||||
"codeWrap": "Mantiene legibles las líneas largas de código en pantallas pequeñas.",
|
"codeWrap": "Mantiene legibles las líneas largas de código en pantallas pequeñas.",
|
||||||
"maxResults": "Resultados devueltos por cada llamada web_search.",
|
"maxResults": "Resultados devueltos por cada llamada web_search.",
|
||||||
"timeout": "Segundos antes de que una solicitud de búsqueda expire.",
|
"timeout": "Segundos antes de que una solicitud de búsqueda expire.",
|
||||||
"jinaReader": "Usa Jina Reader para web_fetch cuando esté disponible.",
|
"jinaReader": "Usa Jina Reader para web_fetch cuando esté disponible.",
|
||||||
"imageGeneration": "Expone generate_image en chats cuando hay un proveedor de imagen configurado.",
|
"imageGeneration": "Expone generate_image en chats cuando hay un proveedor de imagen configurado.",
|
||||||
"imageProvider": "Elige el proveedor registrado usado por generate_image.",
|
"imageProvider": "Elige el proveedor registrado usado por generate_image.",
|
||||||
"imageProviderStatus": "La generación de imágenes reutiliza credenciales de Proveedores.",
|
"imageProviderStatus": "La generación de imágenes reutiliza las credenciales de los proveedores.",
|
||||||
"imageModel": "Nombre del modelo enviado al proveedor de imágenes seleccionado.",
|
"imageModel": "Nombre del modelo enviado al proveedor de imágenes seleccionado.",
|
||||||
"defaultAspectRatio": "Se usa cuando el prompt no elige una proporción.",
|
"defaultAspectRatio": "Se usa cuando la instrucción no elige una proporción.",
|
||||||
"defaultImageSize": "Pista de tamaño enviada a proveedores compatibles.",
|
"defaultImageSize": "Pista de tamaño enviada a proveedores compatibles.",
|
||||||
"maxImagesPerTurn": "Límite superior para una solicitud generate_image.",
|
"maxImagesPerTurn": "Límite superior para una solicitud generate_image.",
|
||||||
"timezone": "Se usa para horarios y respuestas con conciencia temporal.",
|
"timezone": "Se usa para horarios y respuestas con conciencia temporal.",
|
||||||
"localServiceAccess": "Permite que comandos shell con Full Access alcancen servicios localhost.",
|
"localServiceAccess": "Permite que los comandos shell con acceso completo alcancen servicios locales.",
|
||||||
"webuiDefaultAccess": "Usado por chats web sin permiso específico de proyecto.",
|
"webuiDefaultAccess": "Usado por chats web sin permiso específico de proyecto.",
|
||||||
"securityManagedControls": "Las capturas web siempre protegen servicios locales, privados y metadata. La seguridad de canales core se gestiona en config.json.",
|
"securityManagedControls": "Las capturas web siempre protegen servicios locales, privados y metadata. La seguridad de canales core se gestiona en config.json.",
|
||||||
"currentModel": "Se usa para nuevas respuestas.",
|
"currentModel": "Se usa para nuevas respuestas.",
|
||||||
"selectedModelProvider": "Definido por el modelo seleccionado.",
|
"selectedModelProvider": "Definido por el modelo seleccionado.",
|
||||||
"selectedModelValue": "Definido por el modelo seleccionado.",
|
"selectedModelValue": "Definido por el modelo seleccionado.",
|
||||||
"brandLogos": "Muestra logos de proveedores de terceros y CLI en Ajustes.",
|
"brandLogos": "Muestra logos de proveedores de terceros y CLI en Ajustes.",
|
||||||
"cliAppsCatalog": "Instala solo adaptadores CLI de apps que nanobot puede ejecutar localmente; las apps nativas no se modifican.",
|
"cliAppsCatalog": "Instala solo adaptadores CLI de aplicaciones que nanobot puede ejecutar localmente; las aplicaciones nativas no se modifican.",
|
||||||
"cliAppsFilter": "Busca por app, categoría o capacidad.",
|
"cliAppsFilter": "Busca por aplicación, categoría o capacidad.",
|
||||||
"logs": "Abre la carpeta de registros del motor nativo.",
|
"logs": "Abre la carpeta de registros del motor nativo.",
|
||||||
"diagnostics": "Exporta un pequeño informe de runtime para soporte.",
|
"diagnostics": "Exporta un pequeño informe del tiempo de ejecución para soporte.",
|
||||||
"localServiceAccessNative": "Permite que comandos shell con Full Access alcancen servicios en este Mac.",
|
"localServiceAccessNative": "Permite que los comandos shell con acceso completo alcancen servicios en este Mac.",
|
||||||
"webuiDefaultAccessNative": "Usado por chats nativos sin permiso específico de proyecto.",
|
"webuiDefaultAccessNative": "Usado por chats nativos sin permiso específico de proyecto.",
|
||||||
"contextWindow": "Elige el presupuesto de contexto predeterminado para esta configuración de modelo.",
|
"contextWindow": "Elige el presupuesto de contexto predeterminado para esta configuración de modelo.",
|
||||||
"transcription": "Transcribe la entrada del microfono antes de enviarla. Los mensajes de voz de los canales usan la misma configuracion.",
|
"transcription": "Transcribe la entrada del micrófono antes de enviarla. Los mensajes de voz de los canales usan la misma configuración.",
|
||||||
"transcriptionProvider": "Usa las credenciales del proveedor correspondiente en Proveedores.",
|
"transcriptionProvider": "Usa las credenciales del proveedor correspondiente en la sección Proveedores.",
|
||||||
"transcriptionProviderStatus": "Las claves API permanecen en proveedores, no en la configuracion de transcripcion.",
|
"transcriptionProviderStatus": "Las claves API permanecen en los proveedores, no en la configuración de transcripción.",
|
||||||
"transcriptionModel": "Dejalo como el valor predeterminado resuelto salvo que el proveedor necesite un id de modelo personalizado.",
|
"transcriptionModel": "Déjalo como el valor predeterminado resuelto, salvo que el proveedor necesite un identificador de modelo personalizado.",
|
||||||
"transcriptionLanguage": "Pista ISO-639 opcional, como en, zh, ja o ko."
|
"transcriptionLanguage": "Pista ISO-639 opcional, como en, zh, ja o ko."
|
||||||
},
|
},
|
||||||
"values": {
|
"values": {
|
||||||
@ -215,7 +224,7 @@
|
|||||||
"expanded": "Expandido",
|
"expanded": "Expandido",
|
||||||
"default": "Predeterminado",
|
"default": "Predeterminado",
|
||||||
"summary": "Resumen",
|
"summary": "Resumen",
|
||||||
"diff": "Diff",
|
"diff": "Diferencias",
|
||||||
"collapsedDiff": "Diff contraído",
|
"collapsedDiff": "Diff contraído",
|
||||||
"on": "Activado",
|
"on": "Activado",
|
||||||
"off": "Desactivado",
|
"off": "Desactivado",
|
||||||
@ -224,7 +233,10 @@
|
|||||||
"configured": "Configurado",
|
"configured": "Configurado",
|
||||||
"notConfigured": "Sin configurar",
|
"notConfigured": "Sin configurar",
|
||||||
"pending": "Pendiente",
|
"pending": "Pendiente",
|
||||||
"restartingEngine": "Reiniciando"
|
"restartingEngine": "Reiniciando",
|
||||||
|
"checking": "Comprobando",
|
||||||
|
"running": "En ejecución",
|
||||||
|
"needsSetup": "Requiere configuración"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "Cargando ajustes...",
|
"loading": "Cargando ajustes...",
|
||||||
@ -252,6 +264,7 @@
|
|||||||
"deleting": "Eliminando...",
|
"deleting": "Eliminando...",
|
||||||
"edit": "Editar",
|
"edit": "Editar",
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
|
"dismiss": "Descartar",
|
||||||
"open": "Abrir",
|
"open": "Abrir",
|
||||||
"export": "Exportar",
|
"export": "Exportar",
|
||||||
"opening": "Abriendo...",
|
"opening": "Abriendo...",
|
||||||
@ -265,15 +278,15 @@
|
|||||||
"notConfiguredSection": "Sin configurar",
|
"notConfiguredSection": "Sin configurar",
|
||||||
"showMore": "Mostrar {{count}} más",
|
"showMore": "Mostrar {{count}} más",
|
||||||
"showLess": "Mostrar menos",
|
"showLess": "Mostrar menos",
|
||||||
"apiKey": "API key",
|
"apiKey": "Clave API",
|
||||||
"apiBase": "API base",
|
"apiBase": "Base de la API",
|
||||||
"apiKeyPlaceholder": "Introduce la API key",
|
"apiKeyPlaceholder": "Introduce la clave API",
|
||||||
"apiKeyConfiguredPlaceholder": "Deja vacío para conservar la key actual",
|
"apiKeyConfiguredPlaceholder": "Déjalo vacío para conservar la clave actual",
|
||||||
"configuredKeyHint": "Key configurada",
|
"configuredKeyHint": "Key configurada",
|
||||||
"apiBasePlaceholder": "Usar el valor predeterminado del proveedor",
|
"apiBasePlaceholder": "Usar el valor predeterminado del proveedor",
|
||||||
"apiKeyRequired": "Se requiere una API key para configurar este proveedor.",
|
"apiKeyRequired": "Se requiere una clave API para configurar este proveedor.",
|
||||||
"showApiKey": "Mostrar API key",
|
"showApiKey": "Mostrar clave API",
|
||||||
"hideApiKey": "Ocultar API key",
|
"hideApiKey": "Ocultar clave API",
|
||||||
"noConfiguredProviders": "No hay proveedores configurados",
|
"noConfiguredProviders": "No hay proveedores configurados",
|
||||||
"configureFirst": "Configura primero un proveedor en BYOK.",
|
"configureFirst": "Configura primero un proveedor en BYOK.",
|
||||||
"openByok": "Abrir BYOK",
|
"openByok": "Abrir BYOK",
|
||||||
@ -284,19 +297,19 @@
|
|||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "Proveedor de búsqueda",
|
"provider": "Proveedor de búsqueda",
|
||||||
"providerHelp": "Elige el backend que usará la herramienta web search.",
|
"providerHelp": "Elige el backend que usará la herramienta de búsqueda web.",
|
||||||
"selectProvider": "Seleccionar proveedor",
|
"selectProvider": "Seleccionar proveedor",
|
||||||
"credentials": "Credenciales",
|
"credentials": "Credenciales",
|
||||||
"noCredentialRequired": "No requiere key",
|
"noCredentialRequired": "No requiere clave",
|
||||||
"noCredentialHelp": "DuckDuckGo funciona sin guardar una API key.",
|
"noCredentialHelp": "DuckDuckGo funciona sin guardar una API key.",
|
||||||
"apiKeyHelp": "Se guarda en config y se muestra enmascarada después de guardar.",
|
"apiKeyHelp": "Se guarda en config y se muestra enmascarada después de guardar.",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "URL base",
|
||||||
"baseUrlHelp": "SearXNG necesita la URL de tu propia instancia.",
|
"baseUrlHelp": "SearXNG necesita la URL de tu propia instancia.",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "Este proveedor de búsqueda requiere una API key.",
|
"apiKeyRequired": "Este proveedor de búsqueda requiere una clave API.",
|
||||||
"baseUrlRequired": "SearXNG requiere una Base URL.",
|
"baseUrlRequired": "SearXNG requiere una URL base.",
|
||||||
"missingCredential": "Añade la credencial requerida antes de guardar.",
|
"missingCredential": "Añade la credencial requerida antes de guardar.",
|
||||||
"saveHint": "Los cambios se aplican a nuevas solicitudes de web search."
|
"saveHint": "Los cambios se aplican a nuevas solicitudes de búsqueda web."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -311,7 +324,7 @@
|
|||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Actividad de tokens",
|
"title": "Actividad de tokens",
|
||||||
"shortTitle": "Token Usage",
|
"shortTitle": "Uso de tokens",
|
||||||
"subtitle": "Uso reportado por el proveedor durante los últimos 12 meses.",
|
"subtitle": "Uso reportado por el proveedor durante los últimos 12 meses.",
|
||||||
"empty": "La actividad de tokens aparecerá después de nuevas respuestas del modelo.",
|
"empty": "La actividad de tokens aparecerá después de nuevas respuestas del modelo.",
|
||||||
"totalTokens": "Tokens totales",
|
"totalTokens": "Tokens totales",
|
||||||
@ -358,9 +371,19 @@
|
|||||||
"selectProvider": "Seleccionar proveedor",
|
"selectProvider": "Seleccionar proveedor",
|
||||||
"selectAspect": "Seleccionar proporción",
|
"selectAspect": "Seleccionar proporción",
|
||||||
"selectSize": "Seleccionar tamaño",
|
"selectSize": "Seleccionar tamaño",
|
||||||
|
"selectModel": "Seleccionar modelo de imagen",
|
||||||
|
"searchOrTypeModel": "Buscar o escribir ID del modelo",
|
||||||
|
"typeModelId": "Escribe el ID de modelo compatible con este proveedor.",
|
||||||
"configureProvider": "Configurar proveedor",
|
"configureProvider": "Configurar proveedor",
|
||||||
"missingCredential": "Configura este proveedor antes de activar la generación de imágenes."
|
"missingCredential": "Configura este proveedor antes de activar la generación de imágenes."
|
||||||
},
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "Compatibilidad del proveedor",
|
||||||
|
"providerInstallOnSave": "La compatibilidad necesaria se instalará automáticamente al guardar este proveedor.",
|
||||||
|
"searchSupport": "Compatibilidad del proveedor de búsqueda",
|
||||||
|
"searchInstallOnSave": "La compatibilidad con Olostep se instalará automáticamente al guardar.",
|
||||||
|
"installing": "Instalando compatibilidad..."
|
||||||
|
},
|
||||||
"models": {
|
"models": {
|
||||||
"selectModel": "Seleccionar modelo",
|
"selectModel": "Seleccionar modelo",
|
||||||
"addConfiguration": "Agregar configuración",
|
"addConfiguration": "Agregar configuración",
|
||||||
@ -433,8 +456,8 @@
|
|||||||
"statusUnsupported": "No compatible",
|
"statusUnsupported": "No compatible",
|
||||||
"statusNotInstalled": "No instalada",
|
"statusNotInstalled": "No instalada",
|
||||||
"unsupported": "No compatible",
|
"unsupported": "No compatible",
|
||||||
"loading": "Cargando apps CLI...",
|
"loading": "Cargando aplicaciones CLI...",
|
||||||
"empty": "Ninguna app CLI coincide con este filtro.",
|
"empty": "Ninguna aplicación CLI coincide con este filtro.",
|
||||||
"readyTitle": "@{{name}} está listo",
|
"readyTitle": "@{{name}} está listo",
|
||||||
"readyStatus": "Listo",
|
"readyStatus": "Listo",
|
||||||
"readyPrompt": "Usa @{{name}} para ver qué puede hacer este CLI.",
|
"readyPrompt": "Usa @{{name}} para ver qué puede hacer este CLI.",
|
||||||
@ -458,11 +481,11 @@
|
|||||||
},
|
},
|
||||||
"mcp": {
|
"mcp": {
|
||||||
"allCategories": "Todas las categorías",
|
"allCategories": "Todas las categorías",
|
||||||
"summary": "{{installed}} de {{total}} presets habilitados",
|
"summary": "{{installed}} de {{total}} preajustes habilitados",
|
||||||
"filterAll": "Todos",
|
"filterAll": "Todos",
|
||||||
"filterInstalled": "Habilitados",
|
"filterInstalled": "Habilitados",
|
||||||
"filterNotInstalled": "No habilitados",
|
"filterNotInstalled": "No habilitados",
|
||||||
"searchPlaceholder": "Buscar presets MCP",
|
"searchPlaceholder": "Buscar preajustes MCP",
|
||||||
"moreOptions": "Más opciones de MCP",
|
"moreOptions": "Más opciones de MCP",
|
||||||
"moreOptionsSubtitle": "Añade un servidor personalizado o importa mcp.json.",
|
"moreOptionsSubtitle": "Añade un servidor personalizado o importa mcp.json.",
|
||||||
"customTitle": "MCP personalizado",
|
"customTitle": "MCP personalizado",
|
||||||
@ -473,9 +496,9 @@
|
|||||||
"serverUrl": "URL",
|
"serverUrl": "URL",
|
||||||
"transport": "Transporte",
|
"transport": "Transporte",
|
||||||
"command": "Comando",
|
"command": "Comando",
|
||||||
"args": "Args JSON",
|
"args": "Argumentos JSON",
|
||||||
"headers": "Headers JSON",
|
"headers": "Encabezados JSON",
|
||||||
"env": "Env JSON",
|
"env": "Entorno JSON",
|
||||||
"timeout": "Tiempo límite de herramienta",
|
"timeout": "Tiempo límite de herramienta",
|
||||||
"advancedOptions": "Opciones avanzadas",
|
"advancedOptions": "Opciones avanzadas",
|
||||||
"hideAdvanced": "Ocultar avanzado",
|
"hideAdvanced": "Ocultar avanzado",
|
||||||
@ -484,8 +507,8 @@
|
|||||||
"importConfig": "Importar",
|
"importConfig": "Importar",
|
||||||
"restartRequired": "Reinicia nanobot para conectar las herramientas MCP actualizadas.",
|
"restartRequired": "Reinicia nanobot para conectar las herramientas MCP actualizadas.",
|
||||||
"toolsFound": "{{count}} herramientas",
|
"toolsFound": "{{count}} herramientas",
|
||||||
"loading": "Cargando presets MCP...",
|
"loading": "Cargando preajustes MCP...",
|
||||||
"empty": "Ningún preset MCP coincide con este filtro.",
|
"empty": "Ningún preajuste MCP coincide con este filtro.",
|
||||||
"openDocs": "Abrir docs",
|
"openDocs": "Abrir docs",
|
||||||
"test": "Probar",
|
"test": "Probar",
|
||||||
"remove": "Eliminar",
|
"remove": "Eliminar",
|
||||||
@ -503,6 +526,7 @@
|
|||||||
"statusMissingCredentials": "Necesita clave",
|
"statusMissingCredentials": "Necesita clave",
|
||||||
"statusMissingDependency": "Necesita dependencia",
|
"statusMissingDependency": "Necesita dependencia",
|
||||||
"statusComingSoon": "Próximamente",
|
"statusComingSoon": "Próximamente",
|
||||||
|
"comingSoon": "Próximamente",
|
||||||
"statusNotInstalled": "No habilitado",
|
"statusNotInstalled": "No habilitado",
|
||||||
"toolScope": "Herramientas",
|
"toolScope": "Herramientas",
|
||||||
"allTools": "Todas",
|
"allTools": "Todas",
|
||||||
@ -528,24 +552,24 @@
|
|||||||
},
|
},
|
||||||
"apps": {
|
"apps": {
|
||||||
"description": "Añade herramientas a nanobot y luego úsalas con @ en el chat.",
|
"description": "Añade herramientas a nanobot y luego úsalas con @ en el chat.",
|
||||||
"cliLabel": "App",
|
"cliLabel": "Aplicación",
|
||||||
"mcpLabel": "Integración",
|
"mcpLabel": "Integración",
|
||||||
"channelLabel": "Canal",
|
"channelLabel": "Canal",
|
||||||
"featureLabel": "Función",
|
"featureLabel": "Función",
|
||||||
"filterAll": "Listo",
|
"filterAll": "Listo",
|
||||||
"filterPlugins": "Complementos",
|
"filterPlugins": "Complementos",
|
||||||
"filterCli": "Apps",
|
"filterCli": "Aplicaciones",
|
||||||
"filterMcp": "Integraciones",
|
"filterMcp": "Integraciones",
|
||||||
"enabledSummary": "{{count}} listos",
|
"enabledSummary": "{{count}} listos",
|
||||||
"caption": "{{cli}} apps · {{mcp}} integraciones",
|
"caption": "{{cli}} aplicaciones · {{mcp}} integraciones",
|
||||||
"searchPlaceholder": "Buscar apps",
|
"searchPlaceholder": "Buscar aplicaciones",
|
||||||
"featured": "Herramientas",
|
"featured": "Herramientas",
|
||||||
"loading": "Cargando apps...",
|
"loading": "Cargando aplicaciones...",
|
||||||
"empty": "Ninguna herramienta coincide con esta vista.",
|
"empty": "Ninguna herramienta coincide con esta vista.",
|
||||||
"restartRequired": "Reinicia nanobot para aplicar apps y funciones actualizadas."
|
"restartRequired": "Reinicia nanobot para aplicar las aplicaciones y funciones actualizadas."
|
||||||
},
|
},
|
||||||
"channels": {
|
"channels": {
|
||||||
"description": "Conecta nanobot con apps de chat. Instalar soporte solo añade el paquete de integración; la mayoría de canales aún necesitan tokens o configuración del espacio de trabajo.",
|
"description": "Conecta nanobot con aplicaciones de chat. Instalar el soporte solo añade el paquete de integración; la mayoría de canales aún necesitan tokens o configuración del espacio de trabajo.",
|
||||||
"caption": "{{enabled}} activados · {{total}} canales",
|
"caption": "{{enabled}} activados · {{total}} canales",
|
||||||
"searchPlaceholder": "Buscar canales",
|
"searchPlaceholder": "Buscar canales",
|
||||||
"backToChannels": "Todos los canales",
|
"backToChannels": "Todos los canales",
|
||||||
@ -566,6 +590,8 @@
|
|||||||
"advanced": "Avanzado",
|
"advanced": "Avanzado",
|
||||||
"checkAndEnable": "Comprobar y activar",
|
"checkAndEnable": "Comprobar y activar",
|
||||||
"checkConnection": "Comprobar conexión",
|
"checkConnection": "Comprobar conexión",
|
||||||
|
"connectionChecks": "Comprobaciones de conexión",
|
||||||
|
"open": "Abrir",
|
||||||
"checkedAndEnabled": "Comprobado y activado.",
|
"checkedAndEnabled": "Comprobado y activado.",
|
||||||
"checking": "Comprobando...",
|
"checking": "Comprobando...",
|
||||||
"checkOnly": "Solo comprobar",
|
"checkOnly": "Solo comprobar",
|
||||||
@ -661,6 +687,8 @@
|
|||||||
"protected": "Protegida",
|
"protected": "Protegida",
|
||||||
"editTitle": "Editar automatización",
|
"editTitle": "Editar automatización",
|
||||||
"save": "Guardar",
|
"save": "Guardar",
|
||||||
|
"commandCopied": "Copiado",
|
||||||
|
"copyCommand": "Copiar",
|
||||||
"deleteTitle": "Eliminar automatización",
|
"deleteTitle": "Eliminar automatización",
|
||||||
"deleteDescription": "Esto elimina {{name}} del almacén cron. Los mensajes de chat anteriores permanecen en la sesión.",
|
"deleteDescription": "Esto elimina {{name}} del almacén cron. Los mensajes de chat anteriores permanecen en la sesión.",
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
@ -720,6 +748,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "Nombre",
|
"name": "Nombre",
|
||||||
"message": "Mensaje",
|
"message": "Mensaje",
|
||||||
|
"command": "Comando",
|
||||||
"scheduleType": "Tipo de programación",
|
"scheduleType": "Tipo de programación",
|
||||||
"every": "Cada",
|
"every": "Cada",
|
||||||
"unit": "Unidad",
|
"unit": "Unidad",
|
||||||
@ -785,48 +814,48 @@
|
|||||||
"customGroup": "Personalizadas",
|
"customGroup": "Personalizadas",
|
||||||
"builtinGroup": "Integradas",
|
"builtinGroup": "Integradas",
|
||||||
"otherGroup": "Otras",
|
"otherGroup": "Otras",
|
||||||
"searchInstalled": "Buscar skills instaladas",
|
"searchInstalled": "Buscar habilidades instaladas",
|
||||||
"filterAll": "Todas",
|
"filterAll": "Todas",
|
||||||
"filterEnabled": "Activadas",
|
"filterEnabled": "Activadas",
|
||||||
"filterDisabled": "Desactivadas",
|
"filterDisabled": "Desactivadas",
|
||||||
"noMatching": "No hay skills coincidentes.",
|
"noMatching": "No hay habilidades coincidentes.",
|
||||||
"statusDisabled": "Desactivada",
|
"statusDisabled": "Desactivada",
|
||||||
"statusEnabled": "Activada",
|
"statusEnabled": "Activada",
|
||||||
"statusNeedsSetup": "Requiere configuración",
|
"statusNeedsSetup": "Requiere configuración",
|
||||||
"showLess": "Mostrar menos",
|
"showLess": "Mostrar menos",
|
||||||
"showMore": "Mostrar más",
|
"showMore": "Mostrar más",
|
||||||
"enabledControl": "Usar esta skill",
|
"enabledControl": "Usar esta habilidad",
|
||||||
"enabledDescription": "Permite que el agente cargue esta skill cuando sus requisitos estén listos.",
|
"enabledDescription": "Permite que el agente cargue esta habilidad cuando sus requisitos estén listos.",
|
||||||
"enableSkill": "Activar {{name}}",
|
"enableSkill": "Activar {{name}}",
|
||||||
"disableSkill": "Desactivar {{name}}",
|
"disableSkill": "Desactivar {{name}}",
|
||||||
"updateFailed": "No se pudo actualizar esta skill.",
|
"updateFailed": "No se pudo actualizar esta habilidad.",
|
||||||
"deleteTitle": "Eliminar skill",
|
"deleteTitle": "Eliminar habilidad",
|
||||||
"deleteDescription": "Elimina esta skill del espacio de trabajo actual.",
|
"deleteDescription": "Elimina esta habilidad del espacio de trabajo actual.",
|
||||||
"deleteAction": "Eliminar",
|
"deleteAction": "Eliminar",
|
||||||
"deleteFailed": "No se pudo eliminar esta skill.",
|
"deleteFailed": "No se pudo eliminar esta habilidad.",
|
||||||
"deleteConfirmTitle": "¿Eliminar {{name}}?",
|
"deleteConfirmTitle": "¿Eliminar {{name}}?",
|
||||||
"deleteConfirmDescription": "Esto elimina los archivos de la skill del espacio de trabajo actual. Esta acción no se puede deshacer.",
|
"deleteConfirmDescription": "Esto elimina los archivos de la habilidad del espacio de trabajo actual. Esta acción no se puede deshacer.",
|
||||||
"deleteConfirmAction": "Eliminar skill",
|
"deleteConfirmAction": "Eliminar habilidad",
|
||||||
"instructionsTitle": "Instrucciones de la skill",
|
"instructionsTitle": "Instrucciones de la habilidad",
|
||||||
"setupRequired": "Requiere configuración",
|
"setupRequired": "Requiere configuración",
|
||||||
"setupDescription": "Instala la dependencia que falta en el equipo donde se ejecuta nanobot y vuelve a comprobarlo.",
|
"setupDescription": "Instala la dependencia que falta en el equipo donde se ejecuta nanobot y vuelve a comprobarlo.",
|
||||||
"copySetupCommand": "Copiar comando de configuración",
|
"copySetupCommand": "Copiar comando de configuración",
|
||||||
"checkAgain": "Comprobar de nuevo",
|
"checkAgain": "Comprobar de nuevo",
|
||||||
"marketplaceSearchFailed": "No se pudieron buscar los mercados de skills.",
|
"marketplaceSearchFailed": "No se pudieron buscar los mercados de habilidades.",
|
||||||
"marketplaceInstallFailed": "No se pudo instalar este skill.",
|
"marketplaceInstallFailed": "No se pudo instalar esta habilidad.",
|
||||||
"marketplaceSearchPlaceholder": "Buscar skills",
|
"marketplaceSearchPlaceholder": "Buscar habilidades",
|
||||||
"marketplaceSearchLabel": "Buscar skills",
|
"marketplaceSearchLabel": "Buscar habilidades",
|
||||||
"marketplaceSearching": "Buscando",
|
"marketplaceSearching": "Buscando",
|
||||||
"marketplaceProviderFilter": "Origen del skill",
|
"marketplaceProviderFilter": "Origen de la habilidad",
|
||||||
"marketplaceProviderAll": "Todos",
|
"marketplaceProviderAll": "Todos",
|
||||||
"marketplaceTrendingTitle": "Tendencias por mercado",
|
"marketplaceTrendingTitle": "Tendencias por mercado",
|
||||||
"marketplaceTrendingDescription": "Cada mercado conserva su propio ranking y métricas de instalación.",
|
"marketplaceTrendingDescription": "Cada mercado conserva su propio ranking y métricas de instalación.",
|
||||||
"marketplaceViewAll": "Ver todos",
|
"marketplaceViewAll": "Ver todos",
|
||||||
"marketplaceTrendingUnavailable": "Los skills populares no están disponibles temporalmente.",
|
"marketplaceTrendingUnavailable": "Las habilidades populares no están disponibles temporalmente.",
|
||||||
"marketplaceEmpty": "No se encontraron skills para “{{query}}”.",
|
"marketplaceEmpty": "No se encontraron habilidades para “{{query}}”.",
|
||||||
"marketplaceConfirmTitle": "¿Instalar {{name}}?",
|
"marketplaceConfirmTitle": "¿Instalar {{name}}?",
|
||||||
"marketplaceConfirmDescription": "Este skill de terceros procede de {{provider}} ({{source}}) y puede incluir instrucciones o scripts ejecutables.",
|
"marketplaceConfirmDescription": "Esta habilidad de terceros procede de {{provider}} ({{source}}) y puede incluir instrucciones o scripts ejecutables.",
|
||||||
"marketplaceConfirmInstall": "Instalar skill",
|
"marketplaceConfirmInstall": "Instalar habilidad",
|
||||||
"marketplaceOpen": "Abrir {{name}} en {{provider}}",
|
"marketplaceOpen": "Abrir {{name}} en {{provider}}",
|
||||||
"marketplaceOpenProvider": "Abrir {{provider}}",
|
"marketplaceOpenProvider": "Abrir {{provider}}",
|
||||||
"marketplaceInstalls24h": "{{formattedCount}} instalaciones / 24 h",
|
"marketplaceInstalls24h": "{{formattedCount}} instalaciones / 24 h",
|
||||||
@ -864,7 +893,7 @@
|
|||||||
"voice": {
|
"voice": {
|
||||||
"selectProvider": "Seleccionar proveedor",
|
"selectProvider": "Seleccionar proveedor",
|
||||||
"configureProvider": "Configurar proveedor",
|
"configureProvider": "Configurar proveedor",
|
||||||
"languageAuto": "Auto"
|
"languageAuto": "Automático"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
@ -878,34 +907,34 @@
|
|||||||
"actions": "Acciones del tema {{title}}",
|
"actions": "Acciones del tema {{title}}",
|
||||||
"newInProject": "Iniciar un tema nuevo en {{project}}",
|
"newInProject": "Iniciar un tema nuevo en {{project}}",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent running",
|
"running": "Agente en ejecución",
|
||||||
"complete": "Agent finished",
|
"complete": "Agente terminado",
|
||||||
"updated": "New activity"
|
"updated": "Nueva actividad"
|
||||||
},
|
},
|
||||||
"pin": "Pin",
|
"pin": "Fijar",
|
||||||
"unpin": "Unpin",
|
"unpin": "Desfijar",
|
||||||
"rename": "Rename",
|
"rename": "Renombrar",
|
||||||
"renameTitle": "Renombrar tema",
|
"renameTitle": "Renombrar tema",
|
||||||
"renameDescription": "Elige un nombre local de la barra lateral para este tema.",
|
"renameDescription": "Elige un nombre local de la barra lateral para este tema.",
|
||||||
"renamePlaceholder": "Nombre del tema",
|
"renamePlaceholder": "Nombre del tema",
|
||||||
"renameProjectTitle": "Rename project",
|
"renameProjectTitle": "Renombrar proyecto",
|
||||||
"renameProjectDescription": "Choose a local sidebar name for this project.",
|
"renameProjectDescription": "Elige un nombre local para este proyecto en la barra lateral.",
|
||||||
"renameProjectPlaceholder": "Project name",
|
"renameProjectPlaceholder": "Nombre del proyecto",
|
||||||
"renameSave": "Save",
|
"renameSave": "Guardar",
|
||||||
"archive": "Archive",
|
"archive": "Archivar",
|
||||||
"unarchive": "Unarchive",
|
"unarchive": "Desarchivar",
|
||||||
"showArchived": "Show archived",
|
"showArchived": "Mostrar archivados",
|
||||||
"hideArchived": "Hide archived",
|
"hideArchived": "Ocultar archivados",
|
||||||
"delete": "Eliminar",
|
"delete": "Eliminar",
|
||||||
"newChat": "Nuevo tema",
|
"newChat": "Nuevo tema",
|
||||||
"groups": {
|
"groups": {
|
||||||
"pinned": "Pinned",
|
"pinned": "Fijados",
|
||||||
"all": "Temas",
|
"all": "Temas",
|
||||||
"projects": "Projects",
|
"projects": "Proyectos",
|
||||||
"today": "Today",
|
"today": "Hoy",
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "Ayer",
|
||||||
"earlier": "Earlier",
|
"earlier": "Anteriores",
|
||||||
"archived": "Archived"
|
"archived": "Archivados"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deleteConfirm": {
|
"deleteConfirm": {
|
||||||
@ -971,25 +1000,25 @@
|
|||||||
},
|
},
|
||||||
"more": {
|
"more": {
|
||||||
"title": "Más",
|
"title": "Más",
|
||||||
"prompt": "Muéstrame algunas formas útiles en las que puedes ayudar en este workspace."
|
"prompt": "Muéstrame algunas formas útiles en las que puedes ayudar en este espacio de trabajo."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imageQuickActions": {
|
"imageQuickActions": {
|
||||||
"icon": {
|
"icon": {
|
||||||
"title": "Diseñar un icono de app",
|
"title": "Diseñar un icono de aplicación",
|
||||||
"prompt": "Genera un icono de app 1:1 limpio para nanobot: robot amigable, estilo vectorial simple, paleta suave azul y blanca, sin texto."
|
"prompt": "Genera un icono de aplicación 1:1 limpio para nanobot: robot amigable, estilo vectorial simple, paleta suave azul y blanca, sin texto."
|
||||||
},
|
},
|
||||||
"sticker": {
|
"sticker": {
|
||||||
"title": "Crear un sticker",
|
"title": "Crear una pegatina",
|
||||||
"prompt": "Genera una imagen estilo sticker de un pequeño asistente robot, con fondo de apariencia transparente, expresivo y divertido."
|
"prompt": "Genera una imagen estilo pegatina de un pequeño asistente robot, con fondo de apariencia transparente, expresivo y divertido."
|
||||||
},
|
},
|
||||||
"poster": {
|
"poster": {
|
||||||
"title": "Crear un póster",
|
"title": "Crear un póster",
|
||||||
"prompt": "Genera un concepto de póster pulido para un asistente personal de IA, composición moderna, jerarquía visual fuerte, apto para una landing page."
|
"prompt": "Genera un concepto de póster pulido para un asistente personal de IA, composición moderna, jerarquía visual fuerte, apto para una página de destino."
|
||||||
},
|
},
|
||||||
"product": {
|
"product": {
|
||||||
"title": "Mockup de producto",
|
"title": "Maqueta de producto",
|
||||||
"prompt": "Genera una imagen limpia de mockup de producto para una app web de IA conversacional, interfaz mínima, iluminación premium, marco de dispositivo realista."
|
"prompt": "Genera una imagen limpia de maqueta de producto para una aplicación web de IA conversacional, interfaz mínima, iluminación premium, marco de dispositivo realista."
|
||||||
},
|
},
|
||||||
"portrait": {
|
"portrait": {
|
||||||
"title": "Retrato estilizado",
|
"title": "Retrato estilizado",
|
||||||
@ -1067,7 +1096,7 @@
|
|||||||
"aspectAria": "Relación de aspecto de imagen",
|
"aspectAria": "Relación de aspecto de imagen",
|
||||||
"aspectLabel": "Formato de imagen",
|
"aspectLabel": "Formato de imagen",
|
||||||
"aspect": {
|
"aspect": {
|
||||||
"auto": "Auto",
|
"auto": "Automático",
|
||||||
"1_1": "Cuadrado 1:1",
|
"1_1": "Cuadrado 1:1",
|
||||||
"3_4": "Vertical 3:4",
|
"3_4": "Vertical 3:4",
|
||||||
"9_16": "Historia 9:16",
|
"9_16": "Historia 9:16",
|
||||||
@ -1110,7 +1139,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "Detener tarea actual",
|
"title": "Detener tarea actual",
|
||||||
"description": "Cancela el turno activo del agent en este chat."
|
"description": "Cancela el turno activo del agente en este chat."
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "Reiniciar nanobot",
|
"title": "Reiniciar nanobot",
|
||||||
@ -1118,11 +1147,11 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "Mostrar estado",
|
"title": "Mostrar estado",
|
||||||
"description": "Muestra el estado del runtime, provider y channels."
|
"description": "Muestra el estado del tiempo de ejecución, proveedor y canales."
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "Modelo",
|
"title": "Modelo",
|
||||||
"description": "Muestra o cambia el preset de modelo activo."
|
"description": "Muestra o cambia el preajuste de modelo activo."
|
||||||
},
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"title": "Mostrar historial",
|
"title": "Mostrar historial",
|
||||||
@ -1149,8 +1178,8 @@
|
|||||||
"description": "Indica al agente que trate esto como un objetivo sostenido en varios pasos."
|
"description": "Indica al agente que trate esto como un objetivo sostenido en varios pasos."
|
||||||
},
|
},
|
||||||
"trigger": {
|
"trigger": {
|
||||||
"title": "Crear trigger local",
|
"title": "Crear un activador local",
|
||||||
"description": "Crea un trigger de CLI vinculado a esta sesion de chat."
|
"description": "Crea un activador de CLI vinculado a esta sesión de chat."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"title": "Mostrar ayuda",
|
"title": "Mostrar ayuda",
|
||||||
@ -1174,7 +1203,7 @@
|
|||||||
},
|
},
|
||||||
"encoding": "Procesando…",
|
"encoding": "Procesando…",
|
||||||
"remove": "Quitar adjunto",
|
"remove": "Quitar adjunto",
|
||||||
"normalizedSizeHint": "{{orig}} → {{current}} (auto)",
|
"normalizedSizeHint": "{{orig}} → {{current}} (automático)",
|
||||||
"textTooLarge": "El texto del mensaje es demasiado grande (máximo {{max}})",
|
"textTooLarge": "El texto del mensaje es demasiado grande (máximo {{max}})",
|
||||||
"imageRejected": {
|
"imageRejected": {
|
||||||
"unsupported_type": "Tipo de archivo no compatible",
|
"unsupported_type": "Tipo de archivo no compatible",
|
||||||
@ -1189,14 +1218,16 @@
|
|||||||
"io": "No se pudo leer este archivo"
|
"io": "No se pudo leer este archivo"
|
||||||
},
|
},
|
||||||
"mentions": {
|
"mentions": {
|
||||||
"ariaLabel": "Apps",
|
"ariaLabel": "Aplicaciones",
|
||||||
"label": "Apps",
|
"label": "Aplicaciones",
|
||||||
"cliGroup": "Apps CLI",
|
"cliGroup": "Aplicaciones CLI",
|
||||||
"mcpGroup": "Servicios MCP",
|
"mcpGroup": "Servicios MCP",
|
||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "Usar @{{name}} como app CLI local",
|
"cliDescription": "Usar @{{name}} como aplicación CLI local",
|
||||||
"mcpDescription": "Usar @{{name}} como servidor MCP"
|
"mcpDescription": "Usar @{{name}} como servidor MCP",
|
||||||
|
"cliTitle": "Aplicación CLI: {{name}}",
|
||||||
|
"mcpTitle": "Servidor MCP: {{name}}"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "Modo de acceso al espacio de trabajo",
|
"accessAria": "Modo de acceso al espacio de trabajo",
|
||||||
@ -1212,11 +1243,12 @@
|
|||||||
"loadEarlier": "Cargar mensajes anteriores",
|
"loadEarlier": "Cargar mensajes anteriores",
|
||||||
"forkedFromHistory": "Bifurcado desde el historial",
|
"forkedFromHistory": "Bifurcado desde el historial",
|
||||||
"promptNavigator": {
|
"promptNavigator": {
|
||||||
"open": "Abrir navegador de prompts",
|
"open": "Abrir el navegador de instrucciones",
|
||||||
"title": "Prompts",
|
"title": "Instrucciones",
|
||||||
"search": "Buscar prompts",
|
"search": "Buscar instrucciones",
|
||||||
"noResults": "No hay prompts coincidentes.",
|
"noResults": "No hay instrucciones coincidentes.",
|
||||||
"jumpTo": "Ir al prompt: {{label}}"
|
"jumpTo": "Ir a la instrucción: {{label}}",
|
||||||
|
"railAria": "Navegación por instrucciones del usuario"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1240,19 +1272,27 @@
|
|||||||
"agentActivityLiveSummary": "En curso… · {{reasoning}} pasos · {{tools}} llamadas a herramientas",
|
"agentActivityLiveSummary": "En curso… · {{reasoning}} pasos · {{tools}} llamadas a herramientas",
|
||||||
"agentActivityLiveToolsOnly": "En curso… · {{tools}} llamadas a herramientas",
|
"agentActivityLiveToolsOnly": "En curso… · {{tools}} llamadas a herramientas",
|
||||||
"imageAttachment": "Imagen adjunta",
|
"imageAttachment": "Imagen adjunta",
|
||||||
|
"videoAttachment": "Archivo de vídeo",
|
||||||
|
"fileAttachment": "Archivo adjunto",
|
||||||
|
"attachmentUnavailable": "Adjunto no disponible",
|
||||||
|
"dataTable": "Tabla de datos",
|
||||||
|
"fileEditPreparing": "Preparando la edición del archivo…",
|
||||||
|
"openLink": "Abrir enlace: {{label}}",
|
||||||
|
"openAttachment": "Abrir {{name}}",
|
||||||
|
"skill": "Habilidad: {{name}}",
|
||||||
"askAboutSelection": "Preguntar sobre esto",
|
"askAboutSelection": "Preguntar sobre esto",
|
||||||
"forkFromHere": "Bifurcar",
|
"forkFromHere": "Bifurcar",
|
||||||
"copyReply": "Copiar",
|
"copyReply": "Copiar",
|
||||||
"copiedReply": "Copiado",
|
"copiedReply": "Copiado",
|
||||||
"turnLatencyTitle": "Tiempo de respuesta (extremo a extremo)",
|
"turnLatencyTitle": "Tiempo de respuesta (extremo a extremo)",
|
||||||
"fileEditViewDiff": "Ver diff",
|
"fileEditViewDiff": "Ver diferencias",
|
||||||
"fileEditViewLargeDiff": "Ver diff grande",
|
"fileEditViewLargeDiff": "Ver diferencias grandes",
|
||||||
"fileEditDiffLineCount": "{{count}} líneas",
|
"fileEditDiffLineCount": "{{count}} líneas",
|
||||||
"fileEditUnchangedLinesHidden": "{{count}} líneas sin cambios ocultas",
|
"fileEditUnchangedLinesHidden": "{{count}} líneas sin cambios ocultas",
|
||||||
"fileEditShowMoreLines": "Mostrar {{count}} líneas más",
|
"fileEditShowMoreLines": "Mostrar {{count}} líneas más",
|
||||||
"fileEditShowFewerLines": "Mostrar menos líneas",
|
"fileEditShowFewerLines": "Mostrar menos líneas",
|
||||||
"fileEditOpenFile": "Abrir archivo",
|
"fileEditOpenFile": "Abrir archivo",
|
||||||
"fileEditDiffTruncated": "Diff truncado. Abre el archivo para ver el cambio completo.",
|
"fileEditDiffTruncated": "Diferencias truncadas. Abre el archivo para ver el cambio completo.",
|
||||||
"activityThinkingFor": "Pensando durante {{duration}}",
|
"activityThinkingFor": "Pensando durante {{duration}}",
|
||||||
"activityThought": "Pensamiento completado",
|
"activityThought": "Pensamiento completado",
|
||||||
"activityThoughtFor": "Pensó durante {{duration}}",
|
"activityThoughtFor": "Pensó durante {{duration}}",
|
||||||
@ -1262,9 +1302,9 @@
|
|||||||
"cliActivityRunningOne": "Usando {{name}}",
|
"cliActivityRunningOne": "Usando {{name}}",
|
||||||
"cliActivityRanOne": "Usó {{name}}",
|
"cliActivityRanOne": "Usó {{name}}",
|
||||||
"cliActivityFailedOne": "Falló {{name}}",
|
"cliActivityFailedOne": "Falló {{name}}",
|
||||||
"cliActivityRunningMany": "Usando {{count}} apps CLI",
|
"cliActivityRunningMany": "Usando {{count}} aplicaciones CLI",
|
||||||
"cliActivityRanMany": "Usó {{count}} apps CLI",
|
"cliActivityRanMany": "Usó {{count}} aplicaciones CLI",
|
||||||
"cliActivityFailedMany": "Fallaron {{count}} apps CLI",
|
"cliActivityFailedMany": "Fallaron {{count}} aplicaciones CLI",
|
||||||
"cliRunRunning": "Usando",
|
"cliRunRunning": "Usando",
|
||||||
"cliRunRan": "Usado",
|
"cliRunRan": "Usado",
|
||||||
"cliRunFailed": "Falló",
|
"cliRunFailed": "Falló",
|
||||||
@ -1280,6 +1320,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "Vista previa de archivo",
|
"aria": "Vista previa de archivo",
|
||||||
|
"breadcrumb": "Ruta del archivo",
|
||||||
"close": "Cerrar vista previa de archivo",
|
"close": "Cerrar vista previa de archivo",
|
||||||
"loading": "Cargando vista previa...",
|
"loading": "Cargando vista previa...",
|
||||||
"failed": "No se pudo previsualizar este archivo.",
|
"failed": "No se pudo previsualizar este archivo.",
|
||||||
@ -1294,7 +1335,10 @@
|
|||||||
"copied": "Copiado"
|
"copied": "Copiado"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "Cerrar"
|
"dismiss": "Cerrar",
|
||||||
|
"close": "Cerrar",
|
||||||
|
"current": "Actual",
|
||||||
|
"cancel": "Cancelar"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
|
|||||||
@ -38,6 +38,15 @@
|
|||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "Interface web nanobot — discutez avec votre espace de travail nanobot."
|
"description": "Interface web nanobot — discutez avec votre espace de travail nanobot."
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "Associer un utilisateur du chat",
|
||||||
|
"description": "Saisissez le code d’association affiché dans le chat.",
|
||||||
|
"code": "Code d’association",
|
||||||
|
"matched": "Correspondance {{channel}}. Connexion...",
|
||||||
|
"expiresInline": "Le code expire {{expires}}.",
|
||||||
|
"queueCount": "{{count}} en attente",
|
||||||
|
"noMatch": "Aucune demande en attente ne correspond à ce code."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -54,7 +63,7 @@
|
|||||||
"label": "Langue",
|
"label": "Langue",
|
||||||
"ariaLabel": "Changer de langue"
|
"ariaLabel": "Changer de langue"
|
||||||
},
|
},
|
||||||
"apps": "Apps",
|
"apps": "Applications",
|
||||||
"automations": "Automatisations",
|
"automations": "Automatisations",
|
||||||
"skills": {
|
"skills": {
|
||||||
"title": "Compétences"
|
"title": "Compétences"
|
||||||
@ -79,7 +88,7 @@
|
|||||||
"channels": "Canaux",
|
"channels": "Canaux",
|
||||||
"runtime": "Système",
|
"runtime": "Système",
|
||||||
"advanced": "Sécurité",
|
"advanced": "Sécurité",
|
||||||
"cliApps": "Apps CLI",
|
"cliApps": "Applications CLI",
|
||||||
"mcp": "MCP",
|
"mcp": "MCP",
|
||||||
"apps": "Applications",
|
"apps": "Applications",
|
||||||
"automations": "Automatisations",
|
"automations": "Automatisations",
|
||||||
@ -150,8 +159,8 @@
|
|||||||
"contextWindow": "Fenêtre de contexte",
|
"contextWindow": "Fenêtre de contexte",
|
||||||
"transcription": "Transcription",
|
"transcription": "Transcription",
|
||||||
"transcriptionProvider": "Fournisseur",
|
"transcriptionProvider": "Fournisseur",
|
||||||
"transcriptionProviderStatus": "Etat du fournisseur",
|
"transcriptionProviderStatus": "État du fournisseur",
|
||||||
"transcriptionModel": "Modele",
|
"transcriptionModel": "Modèle",
|
||||||
"transcriptionLanguage": "Langue",
|
"transcriptionLanguage": "Langue",
|
||||||
"voiceLimits": "Limites"
|
"voiceLimits": "Limites"
|
||||||
},
|
},
|
||||||
@ -162,10 +171,10 @@
|
|||||||
"model": "Choisissez le modèle utilisé par ce préréglage.",
|
"model": "Choisissez le modèle utilisé par ce préréglage.",
|
||||||
"configPath": "Le fichier de configuration actuellement utilisé par la passerelle.",
|
"configPath": "Le fichier de configuration actuellement utilisé par la passerelle.",
|
||||||
"selectedPreset": "Les préréglages nommés sont en lecture seule ici ; modifiez-les dans config.json.",
|
"selectedPreset": "Les préréglages nommés sont en lecture seule ici ; modifiez-les dans config.json.",
|
||||||
"presetModel": "Passez à Default pour modifier le modèle et le fournisseur depuis WebUI.",
|
"presetModel": "Passez à la valeur par défaut pour modifier le modèle et le fournisseur depuis la WebUI.",
|
||||||
"density": "Enregistré seulement dans ce navigateur.",
|
"density": "Enregistré seulement dans ce navigateur.",
|
||||||
"activityMode": "Choisissez le niveau de détail d’activité agent affiché par défaut.",
|
"activityMode": "Choisissez le niveau de détail de l’activité de l’agent affiché par défaut.",
|
||||||
"fileEditDisplay": "Choisissez si l’activité de modification affiche le nombre de lignes ou le diff.",
|
"fileEditDisplay": "Choisissez si l’activité de modification affiche le nombre de lignes ou les différences.",
|
||||||
"codeWrap": "Garde les longues lignes de code lisibles sur les petits écrans.",
|
"codeWrap": "Garde les longues lignes de code lisibles sur les petits écrans.",
|
||||||
"maxResults": "Résultats renvoyés par chaque appel web_search.",
|
"maxResults": "Résultats renvoyés par chaque appel web_search.",
|
||||||
"timeout": "Nombre de secondes avant l’expiration d’une requête de recherche.",
|
"timeout": "Nombre de secondes avant l’expiration d’une requête de recherche.",
|
||||||
@ -174,28 +183,28 @@
|
|||||||
"imageProvider": "Choisissez le fournisseur inscrit utilisé par generate_image.",
|
"imageProvider": "Choisissez le fournisseur inscrit utilisé par generate_image.",
|
||||||
"imageProviderStatus": "La génération d’images réutilise les identifiants des fournisseurs.",
|
"imageProviderStatus": "La génération d’images réutilise les identifiants des fournisseurs.",
|
||||||
"imageModel": "Nom du modèle envoyé au fournisseur d’images sélectionné.",
|
"imageModel": "Nom du modèle envoyé au fournisseur d’images sélectionné.",
|
||||||
"defaultAspectRatio": "Utilisé lorsque le prompt ne choisit pas de ratio.",
|
"defaultAspectRatio": "Utilisé lorsque l’instruction ne choisit pas de ratio.",
|
||||||
"defaultImageSize": "Indication de taille envoyée aux fournisseurs compatibles.",
|
"defaultImageSize": "Indication de taille envoyée aux fournisseurs compatibles.",
|
||||||
"maxImagesPerTurn": "Limite supérieure pour une requête generate_image.",
|
"maxImagesPerTurn": "Limite supérieure pour une requête generate_image.",
|
||||||
"timezone": "Utilisé pour les horaires et les réponses tenant compte du temps.",
|
"timezone": "Utilisé pour les horaires et les réponses tenant compte du temps.",
|
||||||
"localServiceAccess": "Autorise les commandes shell Full Access à atteindre les services localhost.",
|
"localServiceAccess": "Autorise les commandes shell avec accès complet à atteindre les services localhost.",
|
||||||
"webuiDefaultAccess": "Utilisé par les chats web sans permission propre au projet.",
|
"webuiDefaultAccess": "Utilisé par les chats web sans permission propre au projet.",
|
||||||
"securityManagedControls": "Les récupérations web protègent toujours les services locaux, privés et de métadonnées. La sécurité des canaux principaux reste gérée dans config.json.",
|
"securityManagedControls": "Les récupérations web protègent toujours les services locaux, privés et de métadonnées. La sécurité des canaux principaux reste gérée dans config.json.",
|
||||||
"currentModel": "Utilisée pour les nouvelles réponses.",
|
"currentModel": "Utilisée pour les nouvelles réponses.",
|
||||||
"selectedModelProvider": "Défini par le modèle sélectionné.",
|
"selectedModelProvider": "Défini par le modèle sélectionné.",
|
||||||
"selectedModelValue": "Défini par le modèle sélectionné.",
|
"selectedModelValue": "Défini par le modèle sélectionné.",
|
||||||
"brandLogos": "Affiche les logos de fournisseurs tiers et CLI dans les Réglages.",
|
"brandLogos": "Affiche les logos de fournisseurs tiers et CLI dans les Réglages.",
|
||||||
"cliAppsCatalog": "Installe uniquement les adaptateurs CLI d’apps que nanobot peut exécuter localement ; les apps natives restent inchangées.",
|
"cliAppsCatalog": "Installe uniquement les adaptateurs CLI d’applications que nanobot peut exécuter localement ; les applications natives restent inchangées.",
|
||||||
"cliAppsFilter": "Recherchez par app, catégorie ou capacité.",
|
"cliAppsFilter": "Recherchez par application, catégorie ou capacité.",
|
||||||
"logs": "Ouvre le dossier des journaux du moteur natif.",
|
"logs": "Ouvre le dossier des journaux du moteur natif.",
|
||||||
"diagnostics": "Exporte un petit rapport d’exécution pour le support.",
|
"diagnostics": "Exporte un petit rapport d’exécution pour le support.",
|
||||||
"localServiceAccessNative": "Autorise les commandes shell Full Access à atteindre les services sur ce Mac.",
|
"localServiceAccessNative": "Autorise les commandes shell avec accès complet à atteindre les services sur ce Mac.",
|
||||||
"webuiDefaultAccessNative": "Utilisé par les chats natifs sans permission propre au projet.",
|
"webuiDefaultAccessNative": "Utilisé par les chats natifs sans permission propre au projet.",
|
||||||
"contextWindow": "Choisissez le budget de contexte par défaut pour cette configuration de modèle.",
|
"contextWindow": "Choisissez le budget de contexte par défaut pour cette configuration de modèle.",
|
||||||
"transcription": "Transcrit l'entree micro avant l'envoi. Les messages vocaux des canaux utilisent les memes reglages.",
|
"transcription": "Transcrit l’entrée du micro avant l’envoi. Les messages vocaux des canaux utilisent les mêmes réglages.",
|
||||||
"transcriptionProvider": "Utilise les identifiants du fournisseur correspondant dans Fournisseurs.",
|
"transcriptionProvider": "Utilise les identifiants du fournisseur correspondant dans la section Fournisseurs.",
|
||||||
"transcriptionProviderStatus": "Les cles API restent dans les fournisseurs, pas dans les reglages de transcription.",
|
"transcriptionProviderStatus": "Les clés API restent dans les fournisseurs, pas dans les réglages de transcription.",
|
||||||
"transcriptionModel": "Laissez le modele resolu par defaut sauf si votre fournisseur exige un id personnalise.",
|
"transcriptionModel": "Laissez le modèle résolu par défaut, sauf si votre fournisseur exige un identifiant personnalisé.",
|
||||||
"transcriptionLanguage": "Indice ISO-639 facultatif, comme en, zh, ja ou ko."
|
"transcriptionLanguage": "Indice ISO-639 facultatif, comme en, zh, ja ou ko."
|
||||||
},
|
},
|
||||||
"values": {
|
"values": {
|
||||||
@ -215,7 +224,7 @@
|
|||||||
"expanded": "Développé",
|
"expanded": "Développé",
|
||||||
"default": "Par défaut",
|
"default": "Par défaut",
|
||||||
"summary": "Résumé",
|
"summary": "Résumé",
|
||||||
"diff": "Diff",
|
"diff": "Différences",
|
||||||
"collapsedDiff": "Diff replié",
|
"collapsedDiff": "Diff replié",
|
||||||
"on": "Activé",
|
"on": "Activé",
|
||||||
"off": "Désactivé",
|
"off": "Désactivé",
|
||||||
@ -224,7 +233,10 @@
|
|||||||
"configured": "Configuré",
|
"configured": "Configuré",
|
||||||
"notConfigured": "Non configuré",
|
"notConfigured": "Non configuré",
|
||||||
"pending": "En attente",
|
"pending": "En attente",
|
||||||
"restartingEngine": "Redémarrage"
|
"restartingEngine": "Redémarrage",
|
||||||
|
"checking": "Vérification",
|
||||||
|
"running": "En cours",
|
||||||
|
"needsSetup": "Configuration requise"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "Chargement des réglages...",
|
"loading": "Chargement des réglages...",
|
||||||
@ -252,6 +264,7 @@
|
|||||||
"deleting": "Suppression...",
|
"deleting": "Suppression...",
|
||||||
"edit": "Modifier",
|
"edit": "Modifier",
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
|
"dismiss": "Ignorer",
|
||||||
"open": "Ouvrir",
|
"open": "Ouvrir",
|
||||||
"export": "Exporter",
|
"export": "Exporter",
|
||||||
"opening": "Ouverture...",
|
"opening": "Ouverture...",
|
||||||
@ -265,15 +278,15 @@
|
|||||||
"notConfiguredSection": "Non configurés",
|
"notConfiguredSection": "Non configurés",
|
||||||
"showMore": "Afficher {{count}} de plus",
|
"showMore": "Afficher {{count}} de plus",
|
||||||
"showLess": "Afficher moins",
|
"showLess": "Afficher moins",
|
||||||
"apiKey": "API key",
|
"apiKey": "Clé API",
|
||||||
"apiBase": "API base",
|
"apiBase": "URL de base de l’API",
|
||||||
"apiKeyPlaceholder": "Saisir l'API key",
|
"apiKeyPlaceholder": "Saisir la clé API",
|
||||||
"apiKeyConfiguredPlaceholder": "Laisser vide pour conserver la key actuelle",
|
"apiKeyConfiguredPlaceholder": "Laisser vide pour conserver la clé actuelle",
|
||||||
"configuredKeyHint": "Key configurée",
|
"configuredKeyHint": "Key configurée",
|
||||||
"apiBasePlaceholder": "Utiliser la valeur par défaut du fournisseur",
|
"apiBasePlaceholder": "Utiliser la valeur par défaut du fournisseur",
|
||||||
"apiKeyRequired": "Une API key est requise pour configurer ce fournisseur.",
|
"apiKeyRequired": "Une clé API est requise pour configurer ce fournisseur.",
|
||||||
"showApiKey": "Afficher l'API key",
|
"showApiKey": "Afficher la clé API",
|
||||||
"hideApiKey": "Masquer l'API key",
|
"hideApiKey": "Masquer la clé API",
|
||||||
"noConfiguredProviders": "Aucun fournisseur configuré",
|
"noConfiguredProviders": "Aucun fournisseur configuré",
|
||||||
"configureFirst": "Configurez d'abord un fournisseur dans BYOK.",
|
"configureFirst": "Configurez d'abord un fournisseur dans BYOK.",
|
||||||
"openByok": "Ouvrir BYOK",
|
"openByok": "Ouvrir BYOK",
|
||||||
@ -284,19 +297,19 @@
|
|||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "Fournisseur de recherche",
|
"provider": "Fournisseur de recherche",
|
||||||
"providerHelp": "Choisissez le backend utilisé par l'outil web search.",
|
"providerHelp": "Choisissez le service utilisé par l’outil de recherche web.",
|
||||||
"selectProvider": "Choisir un fournisseur",
|
"selectProvider": "Choisir un fournisseur",
|
||||||
"credentials": "Identifiants",
|
"credentials": "Identifiants",
|
||||||
"noCredentialRequired": "Aucune key requise",
|
"noCredentialRequired": "Aucune clé requise",
|
||||||
"noCredentialHelp": "DuckDuckGo fonctionne sans API key enregistrée.",
|
"noCredentialHelp": "DuckDuckGo fonctionne sans clé API enregistrée.",
|
||||||
"apiKeyHelp": "Enregistrée dans la config et masquée après l'enregistrement.",
|
"apiKeyHelp": "Enregistrée dans la config et masquée après l'enregistrement.",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "URL de base",
|
||||||
"baseUrlHelp": "SearXNG nécessite l'URL de votre propre instance.",
|
"baseUrlHelp": "SearXNG nécessite l'URL de votre propre instance.",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "Ce fournisseur de recherche nécessite une API key.",
|
"apiKeyRequired": "Ce fournisseur de recherche nécessite une clé API.",
|
||||||
"baseUrlRequired": "SearXNG nécessite une Base URL.",
|
"baseUrlRequired": "SearXNG nécessite une URL de base.",
|
||||||
"missingCredential": "Ajoutez l'identifiant requis avant d'enregistrer.",
|
"missingCredential": "Ajoutez l'identifiant requis avant d'enregistrer.",
|
||||||
"saveHint": "Les changements s'appliquent aux nouvelles requêtes web search."
|
"saveHint": "Les changements s’appliquent aux nouvelles requêtes de recherche web."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -311,7 +324,7 @@
|
|||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Activité des tokens",
|
"title": "Activité des tokens",
|
||||||
"shortTitle": "Token Usage",
|
"shortTitle": "Utilisation des tokens",
|
||||||
"subtitle": "Usage signalé par le fournisseur sur les 12 derniers mois.",
|
"subtitle": "Usage signalé par le fournisseur sur les 12 derniers mois.",
|
||||||
"empty": "L’activité des tokens apparaîtra après les nouvelles réponses du modèle.",
|
"empty": "L’activité des tokens apparaîtra après les nouvelles réponses du modèle.",
|
||||||
"totalTokens": "Tokens cumulés",
|
"totalTokens": "Tokens cumulés",
|
||||||
@ -358,8 +371,18 @@
|
|||||||
"selectProvider": "Choisir un fournisseur",
|
"selectProvider": "Choisir un fournisseur",
|
||||||
"selectAspect": "Choisir un ratio",
|
"selectAspect": "Choisir un ratio",
|
||||||
"selectSize": "Choisir une taille",
|
"selectSize": "Choisir une taille",
|
||||||
|
"selectModel": "Choisir un modèle d’image",
|
||||||
|
"searchOrTypeModel": "Rechercher ou saisir l’ID du modèle",
|
||||||
|
"typeModelId": "Saisissez l’ID de modèle pris en charge par ce fournisseur.",
|
||||||
"configureProvider": "Configurer le fournisseur",
|
"configureProvider": "Configurer le fournisseur",
|
||||||
"missingCredential": "Configura este proveedor antes de activar la generación de imágenes."
|
"missingCredential": "Configurez ce fournisseur avant d’activer la génération d’images."
|
||||||
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "Prise en charge du fournisseur",
|
||||||
|
"providerInstallOnSave": "La prise en charge requise sera installée automatiquement lors de l’enregistrement de ce fournisseur.",
|
||||||
|
"searchSupport": "Prise en charge du fournisseur de recherche",
|
||||||
|
"searchInstallOnSave": "La prise en charge d’Olostep sera installée automatiquement lors de l’enregistrement.",
|
||||||
|
"installing": "Installation de la prise en charge..."
|
||||||
},
|
},
|
||||||
"models": {
|
"models": {
|
||||||
"selectModel": "Choisir un modèle",
|
"selectModel": "Choisir un modèle",
|
||||||
@ -433,8 +456,8 @@
|
|||||||
"statusUnsupported": "Non compatible",
|
"statusUnsupported": "Non compatible",
|
||||||
"statusNotInstalled": "Non installée",
|
"statusNotInstalled": "Non installée",
|
||||||
"unsupported": "Non compatible",
|
"unsupported": "Non compatible",
|
||||||
"loading": "Chargement des apps CLI...",
|
"loading": "Chargement des applications CLI...",
|
||||||
"empty": "Aucune app CLI ne correspond à ce filtre.",
|
"empty": "Aucune application CLI ne correspond à ce filtre.",
|
||||||
"readyTitle": "@{{name}} est prêt",
|
"readyTitle": "@{{name}} est prêt",
|
||||||
"readyStatus": "Prêt",
|
"readyStatus": "Prêt",
|
||||||
"readyPrompt": "Utilisez @{{name}} pour voir ce que ce CLI peut faire.",
|
"readyPrompt": "Utilisez @{{name}} pour voir ce que ce CLI peut faire.",
|
||||||
@ -458,11 +481,11 @@
|
|||||||
},
|
},
|
||||||
"mcp": {
|
"mcp": {
|
||||||
"allCategories": "Toutes les catégories",
|
"allCategories": "Toutes les catégories",
|
||||||
"summary": "{{installed}} presets activés sur {{total}}",
|
"summary": "{{installed}} préréglages activés sur {{total}}",
|
||||||
"filterAll": "Tout",
|
"filterAll": "Tout",
|
||||||
"filterInstalled": "Activés",
|
"filterInstalled": "Activés",
|
||||||
"filterNotInstalled": "Non activés",
|
"filterNotInstalled": "Non activés",
|
||||||
"searchPlaceholder": "Rechercher des presets MCP",
|
"searchPlaceholder": "Rechercher des préréglages MCP",
|
||||||
"moreOptions": "Plus d'options MCP",
|
"moreOptions": "Plus d'options MCP",
|
||||||
"moreOptionsSubtitle": "Ajoutez un serveur personnalisé ou importez mcp.json.",
|
"moreOptionsSubtitle": "Ajoutez un serveur personnalisé ou importez mcp.json.",
|
||||||
"customTitle": "MCP personnalisé",
|
"customTitle": "MCP personnalisé",
|
||||||
@ -473,9 +496,9 @@
|
|||||||
"serverUrl": "URL",
|
"serverUrl": "URL",
|
||||||
"transport": "Transport",
|
"transport": "Transport",
|
||||||
"command": "Commande",
|
"command": "Commande",
|
||||||
"args": "Args JSON",
|
"args": "Arguments JSON",
|
||||||
"headers": "Headers JSON",
|
"headers": "En-têtes JSON",
|
||||||
"env": "Env JSON",
|
"env": "Environnement JSON",
|
||||||
"timeout": "Délai d'outil",
|
"timeout": "Délai d'outil",
|
||||||
"advancedOptions": "Options avancées",
|
"advancedOptions": "Options avancées",
|
||||||
"hideAdvanced": "Masquer les options avancées",
|
"hideAdvanced": "Masquer les options avancées",
|
||||||
@ -484,8 +507,8 @@
|
|||||||
"importConfig": "Importer",
|
"importConfig": "Importer",
|
||||||
"restartRequired": "Redémarrez nanobot pour connecter les outils MCP mis à jour.",
|
"restartRequired": "Redémarrez nanobot pour connecter les outils MCP mis à jour.",
|
||||||
"toolsFound": "{{count}} outils",
|
"toolsFound": "{{count}} outils",
|
||||||
"loading": "Chargement des presets MCP...",
|
"loading": "Chargement des préréglages MCP...",
|
||||||
"empty": "Aucun preset MCP ne correspond à ce filtre.",
|
"empty": "Aucun préréglage MCP ne correspond à ce filtre.",
|
||||||
"openDocs": "Ouvrir la doc",
|
"openDocs": "Ouvrir la doc",
|
||||||
"test": "Tester",
|
"test": "Tester",
|
||||||
"remove": "Supprimer",
|
"remove": "Supprimer",
|
||||||
@ -503,6 +526,7 @@
|
|||||||
"statusMissingCredentials": "Clé requise",
|
"statusMissingCredentials": "Clé requise",
|
||||||
"statusMissingDependency": "Dépendance requise",
|
"statusMissingDependency": "Dépendance requise",
|
||||||
"statusComingSoon": "Bientôt disponible",
|
"statusComingSoon": "Bientôt disponible",
|
||||||
|
"comingSoon": "Bientôt disponible",
|
||||||
"statusNotInstalled": "Non activé",
|
"statusNotInstalled": "Non activé",
|
||||||
"toolScope": "Outils",
|
"toolScope": "Outils",
|
||||||
"allTools": "Tous",
|
"allTools": "Tous",
|
||||||
@ -527,24 +551,24 @@
|
|||||||
},
|
},
|
||||||
"apps": {
|
"apps": {
|
||||||
"description": "Ajoutez des outils à nanobot, puis utilisez-les avec @ dans le chat.",
|
"description": "Ajoutez des outils à nanobot, puis utilisez-les avec @ dans le chat.",
|
||||||
"cliLabel": "App",
|
"cliLabel": "Application",
|
||||||
"mcpLabel": "Intégration",
|
"mcpLabel": "Intégration",
|
||||||
"channelLabel": "Canal",
|
"channelLabel": "Canal",
|
||||||
"featureLabel": "Fonction",
|
"featureLabel": "Fonction",
|
||||||
"filterAll": "Prêts",
|
"filterAll": "Prêts",
|
||||||
"filterPlugins": "Extensions",
|
"filterPlugins": "Extensions",
|
||||||
"filterCli": "Apps",
|
"filterCli": "Applications",
|
||||||
"filterMcp": "Intégrations",
|
"filterMcp": "Intégrations",
|
||||||
"enabledSummary": "{{count}} prêts",
|
"enabledSummary": "{{count}} prêts",
|
||||||
"caption": "{{cli}} apps · {{mcp}} intégrations",
|
"caption": "{{cli}} applications · {{mcp}} intégrations",
|
||||||
"searchPlaceholder": "Rechercher des apps",
|
"searchPlaceholder": "Rechercher des applications",
|
||||||
"featured": "Outils",
|
"featured": "Outils",
|
||||||
"loading": "Chargement des apps...",
|
"loading": "Chargement des applications...",
|
||||||
"empty": "Aucun outil ne correspond à cette vue.",
|
"empty": "Aucun outil ne correspond à cette vue.",
|
||||||
"restartRequired": "Redémarrez nanobot pour appliquer les apps et fonctions mises à jour."
|
"restartRequired": "Redémarrez nanobot pour appliquer les applications et fonctions mises à jour."
|
||||||
},
|
},
|
||||||
"channels": {
|
"channels": {
|
||||||
"description": "Connectez nanobot aux apps de discussion. L'installation du support ajoute seulement le paquet d'intégration ; la plupart des canaux nécessitent encore des tokens ou des réglages d'espace de travail.",
|
"description": "Connectez nanobot aux applications de discussion. L'installation du support ajoute seulement le paquet d'intégration ; la plupart des canaux nécessitent encore des jetons ou des réglages d'espace de travail.",
|
||||||
"caption": "{{enabled}} activés · {{total}} canaux",
|
"caption": "{{enabled}} activés · {{total}} canaux",
|
||||||
"searchPlaceholder": "Rechercher des canaux",
|
"searchPlaceholder": "Rechercher des canaux",
|
||||||
"backToChannels": "Tous les canaux",
|
"backToChannels": "Tous les canaux",
|
||||||
@ -565,6 +589,8 @@
|
|||||||
"advanced": "Avancé",
|
"advanced": "Avancé",
|
||||||
"checkAndEnable": "Vérifier et activer",
|
"checkAndEnable": "Vérifier et activer",
|
||||||
"checkConnection": "Vérifier la connexion",
|
"checkConnection": "Vérifier la connexion",
|
||||||
|
"connectionChecks": "Vérifications de connexion",
|
||||||
|
"open": "Ouvrir",
|
||||||
"checkedAndEnabled": "Vérifié et activé.",
|
"checkedAndEnabled": "Vérifié et activé.",
|
||||||
"checking": "Vérification...",
|
"checking": "Vérification...",
|
||||||
"checkOnly": "Vérifier uniquement",
|
"checkOnly": "Vérifier uniquement",
|
||||||
@ -660,6 +686,8 @@
|
|||||||
"protected": "Protégée",
|
"protected": "Protégée",
|
||||||
"editTitle": "Modifier l’automatisation",
|
"editTitle": "Modifier l’automatisation",
|
||||||
"save": "Enregistrer",
|
"save": "Enregistrer",
|
||||||
|
"commandCopied": "Copié",
|
||||||
|
"copyCommand": "Copier",
|
||||||
"deleteTitle": "Supprimer l’automatisation",
|
"deleteTitle": "Supprimer l’automatisation",
|
||||||
"deleteDescription": "Cela supprime {{name}} du stockage cron. Les anciens messages de chat restent dans la session.",
|
"deleteDescription": "Cela supprime {{name}} du stockage cron. Les anciens messages de chat restent dans la session.",
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
@ -719,6 +747,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "Nom",
|
"name": "Nom",
|
||||||
"message": "Message",
|
"message": "Message",
|
||||||
|
"command": "Commande",
|
||||||
"scheduleType": "Type de planning",
|
"scheduleType": "Type de planning",
|
||||||
"every": "Toutes les",
|
"every": "Toutes les",
|
||||||
"unit": "Unité",
|
"unit": "Unité",
|
||||||
@ -753,7 +782,7 @@
|
|||||||
"signInAgain": "Se reconnecter",
|
"signInAgain": "Se reconnecter",
|
||||||
"signOut": "Se déconnecter",
|
"signOut": "Se déconnecter",
|
||||||
"signedInAs": "Connecté en tant que {{account}}",
|
"signedInAs": "Connecté en tant que {{account}}",
|
||||||
"signInHelp": "Inicia sesión desde este dispositivo; no se guarda API key en config.",
|
"signInHelp": "Connectez-vous depuis cet appareil ; aucune clé API n’est enregistrée dans la configuration.",
|
||||||
"remoteSignInHelp": "Sélectionnez Se connecter pour ouvrir xAI sur votre ordinateur, puis collez le code d’autorisation affiché après la connexion.",
|
"remoteSignInHelp": "Sélectionnez Se connecter pour ouvrir xAI sur votre ordinateur, puis collez le code d’autorisation affiché après la connexion.",
|
||||||
"codexRemoteSignInHelp": "Connectez-vous dans ce navigateur, puis recollez dans nanobot l’URL complète de rappel localhost.",
|
"codexRemoteSignInHelp": "Connectez-vous dans ce navigateur, puis recollez dans nanobot l’URL complète de rappel localhost.",
|
||||||
"signInRequired": "Connexion requise",
|
"signInRequired": "Connexion requise",
|
||||||
@ -836,7 +865,7 @@
|
|||||||
"marketplaceInstall": "Installer",
|
"marketplaceInstall": "Installer",
|
||||||
"marketplaceNoTrend": "Pas encore de tendance",
|
"marketplaceNoTrend": "Pas encore de tendance",
|
||||||
"marketplaceTrendLabel": "Tendance des installations sur 8 semaines",
|
"marketplaceTrendLabel": "Tendance des installations sur 8 semaines",
|
||||||
"featured": "Compétences agent",
|
"featured": "Compétences de l’agent",
|
||||||
"empty": "Aucune compétence disponible.",
|
"empty": "Aucune compétence disponible.",
|
||||||
"sourceWorkspace": "Personnalisée",
|
"sourceWorkspace": "Personnalisée",
|
||||||
"sourceBuiltin": "Intégrée",
|
"sourceBuiltin": "Intégrée",
|
||||||
@ -863,7 +892,7 @@
|
|||||||
"voice": {
|
"voice": {
|
||||||
"selectProvider": "Choisir un fournisseur",
|
"selectProvider": "Choisir un fournisseur",
|
||||||
"configureProvider": "Configurer le fournisseur",
|
"configureProvider": "Configurer le fournisseur",
|
||||||
"languageAuto": "Auto"
|
"languageAuto": "Automatique"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
@ -877,34 +906,34 @@
|
|||||||
"actions": "Actions du sujet {{title}}",
|
"actions": "Actions du sujet {{title}}",
|
||||||
"newInProject": "Démarrer un nouveau sujet dans {{project}}",
|
"newInProject": "Démarrer un nouveau sujet dans {{project}}",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent running",
|
"running": "Agent en cours",
|
||||||
"complete": "Agent finished",
|
"complete": "Agent terminé",
|
||||||
"updated": "New activity"
|
"updated": "Nouvelle activité"
|
||||||
},
|
},
|
||||||
"pin": "Pin",
|
"pin": "Épingler",
|
||||||
"unpin": "Unpin",
|
"unpin": "Désépingler",
|
||||||
"rename": "Rename",
|
"rename": "Renommer",
|
||||||
"renameTitle": "Renommer le sujet",
|
"renameTitle": "Renommer le sujet",
|
||||||
"renameDescription": "Choisissez un nom local dans la barre latérale pour ce sujet.",
|
"renameDescription": "Choisissez un nom local dans la barre latérale pour ce sujet.",
|
||||||
"renamePlaceholder": "Nom du sujet",
|
"renamePlaceholder": "Nom du sujet",
|
||||||
"renameProjectTitle": "Rename project",
|
"renameProjectTitle": "Renommer le projet",
|
||||||
"renameProjectDescription": "Choose a local sidebar name for this project.",
|
"renameProjectDescription": "Choisissez un nom local dans la barre latérale pour ce projet.",
|
||||||
"renameProjectPlaceholder": "Project name",
|
"renameProjectPlaceholder": "Nom du projet",
|
||||||
"renameSave": "Save",
|
"renameSave": "Enregistrer",
|
||||||
"archive": "Archive",
|
"archive": "Archiver",
|
||||||
"unarchive": "Unarchive",
|
"unarchive": "Désarchiver",
|
||||||
"showArchived": "Show archived",
|
"showArchived": "Afficher les archives",
|
||||||
"hideArchived": "Hide archived",
|
"hideArchived": "Masquer les archives",
|
||||||
"delete": "Supprimer",
|
"delete": "Supprimer",
|
||||||
"newChat": "Nouveau sujet",
|
"newChat": "Nouveau sujet",
|
||||||
"groups": {
|
"groups": {
|
||||||
"pinned": "Pinned",
|
"pinned": "Épinglés",
|
||||||
"all": "Sujets",
|
"all": "Sujets",
|
||||||
"projects": "Projects",
|
"projects": "Projets",
|
||||||
"today": "Today",
|
"today": "Aujourd’hui",
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "Hier",
|
||||||
"earlier": "Earlier",
|
"earlier": "Plus anciens",
|
||||||
"archived": "Archived"
|
"archived": "Archivés"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deleteConfirm": {
|
"deleteConfirm": {
|
||||||
@ -980,11 +1009,11 @@
|
|||||||
},
|
},
|
||||||
"sticker": {
|
"sticker": {
|
||||||
"title": "Créer un sticker",
|
"title": "Créer un sticker",
|
||||||
"prompt": "Générez une image façon sticker d’un petit assistant robot, avec un fond d’apparence transparente, expressive et ludique."
|
"prompt": "Générez une image façon autocollant d’un petit assistant robot, avec un fond d’apparence transparente, expressive et ludique."
|
||||||
},
|
},
|
||||||
"poster": {
|
"poster": {
|
||||||
"title": "Créer une affiche",
|
"title": "Créer une affiche",
|
||||||
"prompt": "Générez un concept d’affiche soigné pour un assistant IA personnel, composition moderne, hiérarchie visuelle forte, adapté à une landing page."
|
"prompt": "Générez un concept d’affiche soigné pour un assistant IA personnel, composition moderne, hiérarchie visuelle forte, adapté à une page de destination."
|
||||||
},
|
},
|
||||||
"product": {
|
"product": {
|
||||||
"title": "Maquette produit",
|
"title": "Maquette produit",
|
||||||
@ -1066,7 +1095,7 @@
|
|||||||
"aspectAria": "Format de l’image",
|
"aspectAria": "Format de l’image",
|
||||||
"aspectLabel": "Format de l’image",
|
"aspectLabel": "Format de l’image",
|
||||||
"aspect": {
|
"aspect": {
|
||||||
"auto": "Auto",
|
"auto": "Automatique",
|
||||||
"1_1": "Carré 1:1",
|
"1_1": "Carré 1:1",
|
||||||
"3_4": "Portrait 3:4",
|
"3_4": "Portrait 3:4",
|
||||||
"9_16": "Story 9:16",
|
"9_16": "Story 9:16",
|
||||||
@ -1109,7 +1138,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "Arrêter la tâche en cours",
|
"title": "Arrêter la tâche en cours",
|
||||||
"description": "Annuler le tour agent actif pour cette discussion."
|
"description": "Annuler le tour actif de l’agent pour cette discussion."
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "Redémarrer nanobot",
|
"title": "Redémarrer nanobot",
|
||||||
@ -1117,7 +1146,7 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "Afficher l’état",
|
"title": "Afficher l’état",
|
||||||
"description": "Afficher l’état du runtime, du provider et des channels."
|
"description": "Afficher l’état du temps d’exécution, du fournisseur et des canaux."
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "Modèle",
|
"title": "Modèle",
|
||||||
@ -1148,8 +1177,8 @@
|
|||||||
"description": "Demandez à l’agent de traiter ceci comme un objectif multi‑étapes durable."
|
"description": "Demandez à l’agent de traiter ceci comme un objectif multi‑étapes durable."
|
||||||
},
|
},
|
||||||
"trigger": {
|
"trigger": {
|
||||||
"title": "Créer un trigger local",
|
"title": "Créer un déclencheur local",
|
||||||
"description": "Crée un trigger CLI lié à cette session de chat."
|
"description": "Crée un déclencheur CLI lié à cette session de chat."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"title": "Afficher l’aide",
|
"title": "Afficher l’aide",
|
||||||
@ -1173,7 +1202,7 @@
|
|||||||
},
|
},
|
||||||
"encoding": "Traitement…",
|
"encoding": "Traitement…",
|
||||||
"remove": "Retirer la pièce jointe",
|
"remove": "Retirer la pièce jointe",
|
||||||
"normalizedSizeHint": "{{orig}} → {{current}} (auto)",
|
"normalizedSizeHint": "{{orig}} → {{current}} (automatique)",
|
||||||
"textTooLarge": "Le texte du message est trop volumineux (maximum {{max}})",
|
"textTooLarge": "Le texte du message est trop volumineux (maximum {{max}})",
|
||||||
"imageRejected": {
|
"imageRejected": {
|
||||||
"unsupported_type": "Type de fichier non pris en charge",
|
"unsupported_type": "Type de fichier non pris en charge",
|
||||||
@ -1188,14 +1217,16 @@
|
|||||||
"io": "Impossible de lire ce fichier"
|
"io": "Impossible de lire ce fichier"
|
||||||
},
|
},
|
||||||
"mentions": {
|
"mentions": {
|
||||||
"ariaLabel": "Apps",
|
"ariaLabel": "Applications",
|
||||||
"label": "Apps",
|
"label": "Applications",
|
||||||
"cliGroup": "Apps CLI",
|
"cliGroup": "Applications CLI",
|
||||||
"mcpGroup": "Services MCP",
|
"mcpGroup": "Services MCP",
|
||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "Utiliser @{{name}} comme app CLI locale",
|
"cliDescription": "Utiliser @{{name}} comme application CLI locale",
|
||||||
"mcpDescription": "Utiliser @{{name}} comme serveur MCP"
|
"mcpDescription": "Utiliser @{{name}} comme serveur MCP",
|
||||||
|
"cliTitle": "Application CLI : {{name}}",
|
||||||
|
"mcpTitle": "Serveur MCP : {{name}}"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "Mode d’accès à l’espace de travail",
|
"accessAria": "Mode d’accès à l’espace de travail",
|
||||||
@ -1211,11 +1242,12 @@
|
|||||||
"loadEarlier": "Charger les messages précédents",
|
"loadEarlier": "Charger les messages précédents",
|
||||||
"forkedFromHistory": "Bifurqué depuis l'historique",
|
"forkedFromHistory": "Bifurqué depuis l'historique",
|
||||||
"promptNavigator": {
|
"promptNavigator": {
|
||||||
"open": "Ouvrir le navigateur de prompts",
|
"open": "Ouvrir le navigateur d’instructions",
|
||||||
"title": "Prompts",
|
"title": "Instructions",
|
||||||
"search": "Rechercher des prompts",
|
"search": "Rechercher des instructions",
|
||||||
"noResults": "Aucun prompt correspondant.",
|
"noResults": "Aucune instruction correspondante.",
|
||||||
"jumpTo": "Aller au prompt : {{label}}"
|
"jumpTo": "Aller à l’instruction : {{label}}",
|
||||||
|
"railAria": "Navigation dans les instructions utilisateur"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1239,19 +1271,27 @@
|
|||||||
"agentActivityLiveSummary": "En cours… · {{reasoning}} étapes · {{tools}} appels d’outils",
|
"agentActivityLiveSummary": "En cours… · {{reasoning}} étapes · {{tools}} appels d’outils",
|
||||||
"agentActivityLiveToolsOnly": "En cours… · {{tools}} appels d’outils",
|
"agentActivityLiveToolsOnly": "En cours… · {{tools}} appels d’outils",
|
||||||
"imageAttachment": "Pièce jointe image",
|
"imageAttachment": "Pièce jointe image",
|
||||||
|
"videoAttachment": "Pièce jointe vidéo",
|
||||||
|
"fileAttachment": "Pièce jointe",
|
||||||
|
"attachmentUnavailable": "Pièce jointe indisponible",
|
||||||
|
"dataTable": "Tableau de données",
|
||||||
|
"fileEditPreparing": "Préparation de la modification du fichier…",
|
||||||
|
"openLink": "Ouvrir le lien : {{label}}",
|
||||||
|
"openAttachment": "Ouvrir {{name}}",
|
||||||
|
"skill": "Compétence : {{name}}",
|
||||||
"askAboutSelection": "Poser une question à ce sujet",
|
"askAboutSelection": "Poser une question à ce sujet",
|
||||||
"forkFromHere": "Bifurquer",
|
"forkFromHere": "Bifurquer",
|
||||||
"copyReply": "Copier",
|
"copyReply": "Copier",
|
||||||
"copiedReply": "Copié",
|
"copiedReply": "Copié",
|
||||||
"turnLatencyTitle": "Temps de réponse (de bout en bout)",
|
"turnLatencyTitle": "Temps de réponse (de bout en bout)",
|
||||||
"fileEditViewDiff": "Voir le diff",
|
"fileEditViewDiff": "Voir les différences",
|
||||||
"fileEditViewLargeDiff": "Voir le grand diff",
|
"fileEditViewLargeDiff": "Voir les grandes différences",
|
||||||
"fileEditDiffLineCount": "{{count}} lignes",
|
"fileEditDiffLineCount": "{{count}} lignes",
|
||||||
"fileEditUnchangedLinesHidden": "{{count}} lignes inchangées masquées",
|
"fileEditUnchangedLinesHidden": "{{count}} lignes inchangées masquées",
|
||||||
"fileEditShowMoreLines": "Afficher {{count}} lignes de plus",
|
"fileEditShowMoreLines": "Afficher {{count}} lignes de plus",
|
||||||
"fileEditShowFewerLines": "Afficher moins de lignes",
|
"fileEditShowFewerLines": "Afficher moins de lignes",
|
||||||
"fileEditOpenFile": "Ouvrir le fichier",
|
"fileEditOpenFile": "Ouvrir le fichier",
|
||||||
"fileEditDiffTruncated": "Diff tronqué. Ouvrez le fichier pour voir la modification complète.",
|
"fileEditDiffTruncated": "Différences tronquées. Ouvrez le fichier pour voir la modification complète.",
|
||||||
"activityThinkingFor": "Réflexion pendant {{duration}}",
|
"activityThinkingFor": "Réflexion pendant {{duration}}",
|
||||||
"activityThought": "Réflexion terminée",
|
"activityThought": "Réflexion terminée",
|
||||||
"activityThoughtFor": "Réflexion terminée en {{duration}}",
|
"activityThoughtFor": "Réflexion terminée en {{duration}}",
|
||||||
@ -1261,9 +1301,9 @@
|
|||||||
"cliActivityRunningOne": "Utilisation de {{name}}",
|
"cliActivityRunningOne": "Utilisation de {{name}}",
|
||||||
"cliActivityRanOne": "{{name}} utilisé",
|
"cliActivityRanOne": "{{name}} utilisé",
|
||||||
"cliActivityFailedOne": "Échec de {{name}}",
|
"cliActivityFailedOne": "Échec de {{name}}",
|
||||||
"cliActivityRunningMany": "Utilisation de {{count}} apps CLI",
|
"cliActivityRunningMany": "Utilisation de {{count}} applications CLI",
|
||||||
"cliActivityRanMany": "{{count}} apps CLI utilisées",
|
"cliActivityRanMany": "{{count}} applications CLI utilisées",
|
||||||
"cliActivityFailedMany": "Échec de {{count}} apps CLI",
|
"cliActivityFailedMany": "Échec de {{count}} applications CLI",
|
||||||
"cliRunRunning": "Utilisation",
|
"cliRunRunning": "Utilisation",
|
||||||
"cliRunRan": "Utilisé",
|
"cliRunRan": "Utilisé",
|
||||||
"cliRunFailed": "Échec",
|
"cliRunFailed": "Échec",
|
||||||
@ -1279,6 +1319,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "Aperçu du fichier",
|
"aria": "Aperçu du fichier",
|
||||||
|
"breadcrumb": "Chemin du fichier",
|
||||||
"close": "Fermer l’aperçu du fichier",
|
"close": "Fermer l’aperçu du fichier",
|
||||||
"loading": "Chargement de l’aperçu...",
|
"loading": "Chargement de l’aperçu...",
|
||||||
"failed": "Impossible de prévisualiser ce fichier.",
|
"failed": "Impossible de prévisualiser ce fichier.",
|
||||||
@ -1293,7 +1334,10 @@
|
|||||||
"copied": "Copié"
|
"copied": "Copié"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "Fermer"
|
"dismiss": "Fermer",
|
||||||
|
"close": "Fermer",
|
||||||
|
"current": "Actuel",
|
||||||
|
"cancel": "Annuler"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
|
|||||||
@ -26,8 +26,8 @@
|
|||||||
"restartHint": "Mulai ulang nanobot untuk menerapkan perubahan runtime.",
|
"restartHint": "Mulai ulang nanobot untuk menerapkan perubahan runtime.",
|
||||||
"restart": "Mulai ulang nanobot",
|
"restart": "Mulai ulang nanobot",
|
||||||
"restarting": "Memulai ulang...",
|
"restarting": "Memulai ulang...",
|
||||||
"restartEngine": "Mulai ulang engine",
|
"restartEngine": "Mulai ulang mesin",
|
||||||
"restartingEngine": "Memulai ulang engine..."
|
"restartingEngine": "Memulai ulang mesin..."
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"completed": "Mulai ulang selesai dalam {{seconds}} dtk."
|
"completed": "Mulai ulang selesai dalam {{seconds}} dtk."
|
||||||
@ -37,7 +37,16 @@
|
|||||||
"chat": "{{title}} · nanobot"
|
"chat": "{{title}} · nanobot"
|
||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "UI web nanobot — ngobrol dengan workspace nanobot Anda."
|
"description": "UI web nanobot — ngobrol dengan ruang kerja nanobot Anda."
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "Hubungkan pengguna chat",
|
||||||
|
"description": "Masukkan kode pairing yang ditampilkan di chat.",
|
||||||
|
"code": "Kode pairing",
|
||||||
|
"matched": "Cocok dengan {{channel}}. Menghubungkan...",
|
||||||
|
"expiresInline": "Kode kedaluwarsa {{expires}}.",
|
||||||
|
"queueCount": "{{count}} menunggu",
|
||||||
|
"noMatch": "Tidak ada permintaan tertunda yang cocok dengan kode ini."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -57,7 +66,7 @@
|
|||||||
"apps": "Aplikasi",
|
"apps": "Aplikasi",
|
||||||
"automations": "Otomasi",
|
"automations": "Otomasi",
|
||||||
"skills": {
|
"skills": {
|
||||||
"title": "Skill"
|
"title": "Keterampilan"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@ -83,7 +92,7 @@
|
|||||||
"mcp": "MCP",
|
"mcp": "MCP",
|
||||||
"apps": "Aplikasi",
|
"apps": "Aplikasi",
|
||||||
"automations": "Otomasi",
|
"automations": "Otomasi",
|
||||||
"skills": "Skill"
|
"skills": "Keterampilan"
|
||||||
},
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"interface": "Antarmuka",
|
"interface": "Antarmuka",
|
||||||
@ -92,9 +101,9 @@
|
|||||||
"about": "Tentang",
|
"about": "Tentang",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
"localPreferences": "Preferensi lokal",
|
"localPreferences": "Preferensi lokal",
|
||||||
"presets": "Preset",
|
"presets": "Prasetel",
|
||||||
"imageGeneration": "Pembuatan gambar",
|
"imageGeneration": "Pembuatan gambar",
|
||||||
"imageDefaults": "Default",
|
"imageDefaults": "Bawaan",
|
||||||
"webSearch": "Pencarian web",
|
"webSearch": "Pencarian web",
|
||||||
"webBehavior": "Perilaku",
|
"webBehavior": "Perilaku",
|
||||||
"regional": "Regional",
|
"regional": "Regional",
|
||||||
@ -103,7 +112,7 @@
|
|||||||
"cliApps": "Aplikasi CLI",
|
"cliApps": "Aplikasi CLI",
|
||||||
"mcp": "Layanan MCP",
|
"mcp": "Layanan MCP",
|
||||||
"apps": "Aplikasi",
|
"apps": "Aplikasi",
|
||||||
"nativeHost": "Host native",
|
"nativeHost": "Host asli",
|
||||||
"hostSafety": "Keamanan aplikasi",
|
"hostSafety": "Keamanan aplikasi",
|
||||||
"voiceInput": "Input suara"
|
"voiceInput": "Input suara"
|
||||||
},
|
},
|
||||||
@ -114,15 +123,15 @@
|
|||||||
"model": "Model",
|
"model": "Model",
|
||||||
"restart": "Mulai ulang nanobot",
|
"restart": "Mulai ulang nanobot",
|
||||||
"configPath": "Path konfigurasi",
|
"configPath": "Path konfigurasi",
|
||||||
"activePreset": "Preset aktif",
|
"activePreset": "Prasetel aktif",
|
||||||
"gateway": "Gerbang",
|
"gateway": "Gerbang",
|
||||||
"restartState": "Status mulai ulang",
|
"restartState": "Status mulai ulang",
|
||||||
"pendingChanges": "Perubahan tertunda",
|
"pendingChanges": "Perubahan tertunda",
|
||||||
"selectedPreset": "Preset terpilih",
|
"selectedPreset": "Prasetel terpilih",
|
||||||
"presetModel": "Model preset",
|
"presetModel": "Model prasetel",
|
||||||
"density": "Kerapatan",
|
"density": "Kerapatan",
|
||||||
"activityMode": "Detail aktivitas",
|
"activityMode": "Detail aktivitas",
|
||||||
"fileEditDisplay": "Tampilan edit file",
|
"fileEditDisplay": "Tampilan perubahan file",
|
||||||
"codeWrap": "Bungkus kode",
|
"codeWrap": "Bungkus kode",
|
||||||
"maxResults": "Hasil maksimum",
|
"maxResults": "Hasil maksimum",
|
||||||
"timeout": "Batas waktu",
|
"timeout": "Batas waktu",
|
||||||
@ -132,14 +141,14 @@
|
|||||||
"imageProviderStatus": "Status penyedia",
|
"imageProviderStatus": "Status penyedia",
|
||||||
"imageProviderBase": "Basis penyedia",
|
"imageProviderBase": "Basis penyedia",
|
||||||
"imageModel": "Model gambar",
|
"imageModel": "Model gambar",
|
||||||
"defaultAspectRatio": "Rasio default",
|
"defaultAspectRatio": "Rasio bawaan",
|
||||||
"defaultImageSize": "Ukuran default",
|
"defaultImageSize": "Ukuran bawaan",
|
||||||
"maxImagesPerTurn": "Maks. gambar per giliran",
|
"maxImagesPerTurn": "Maks. gambar per giliran",
|
||||||
"imageSaveDir": "Direktori simpan",
|
"imageSaveDir": "Direktori simpan",
|
||||||
"timezone": "Zona waktu",
|
"timezone": "Zona waktu",
|
||||||
"workspacePath": "Workspace default",
|
"workspacePath": "Ruang kerja bawaan",
|
||||||
"localServiceAccess": "Layanan lokal",
|
"localServiceAccess": "Layanan lokal",
|
||||||
"webuiDefaultAccess": "Akses default",
|
"webuiDefaultAccess": "Akses bawaan",
|
||||||
"currentModel": "Konfigurasi saat ini",
|
"currentModel": "Konfigurasi saat ini",
|
||||||
"brandLogos": "Logo merek",
|
"brandLogos": "Logo merek",
|
||||||
"cliAppsCatalog": "Katalog",
|
"cliAppsCatalog": "Katalog",
|
||||||
@ -158,44 +167,44 @@
|
|||||||
"help": {
|
"help": {
|
||||||
"theme": "Beralih antara tampilan terang dan gelap.",
|
"theme": "Beralih antara tampilan terang dan gelap.",
|
||||||
"language": "Pilih bahasa yang digunakan WebUI.",
|
"language": "Pilih bahasa yang digunakan WebUI.",
|
||||||
"provider": "Selecciona el proveedor para nuevas solicitudes de modelo.",
|
"provider": "Pilih penyedia untuk permintaan model baru.",
|
||||||
"model": "Pilih model yang digunakan oleh preset ini.",
|
"model": "Pilih model yang digunakan oleh prasetel ini.",
|
||||||
"configPath": "Archivo de configuración que usa actualmente el gateway.",
|
"configPath": "File konfigurasi gateway yang sedang digunakan.",
|
||||||
"selectedPreset": "Los preajustes con nombre son de solo lectura aquí; edítalos en config.json.",
|
"selectedPreset": "Prasetel bernama hanya-baca di sini; ubah di config.json.",
|
||||||
"presetModel": "Beralih ke Default untuk mengedit model dan penyedia dari WebUI.",
|
"presetModel": "Beralih ke Bawaan untuk mengubah model dan penyedia dari WebUI.",
|
||||||
"density": "Hanya disimpan di browser ini.",
|
"density": "Hanya disimpan di browser ini.",
|
||||||
"activityMode": "Pilih seberapa banyak detail aktivitas agen yang ditampilkan secara default.",
|
"activityMode": "Pilih seberapa banyak detail aktivitas agen yang ditampilkan secara default.",
|
||||||
"fileEditDisplay": "Pilih aktivitas edit file dibuka sebagai jumlah baris atau diff.",
|
"fileEditDisplay": "Pilih apakah aktivitas perubahan file ditampilkan sebagai jumlah baris atau perbedaan.",
|
||||||
"codeWrap": "Menjaga baris kode panjang tetap terbaca di layar kecil.",
|
"codeWrap": "Menjaga baris kode panjang tetap terbaca di layar kecil.",
|
||||||
"maxResults": "Resultados devueltos por cada llamada web_search.",
|
"maxResults": "Hasil yang dikembalikan oleh setiap panggilan web_search.",
|
||||||
"timeout": "Segundos antes de que una solicitud de búsqueda expire.",
|
"timeout": "Detik sebelum permintaan penyedia pencarian mencapai batas waktu.",
|
||||||
"jinaReader": "Usa Jina Reader para web_fetch cuando esté disponible.",
|
"jinaReader": "Gunakan Jina Reader untuk web_fetch jika tersedia.",
|
||||||
"imageGeneration": "Expone generate_image en chats cuando hay un proveedor de imagen configurado.",
|
"imageGeneration": "Tampilkan generate_image di chat saat penyedia gambar yang dikonfigurasi tersedia.",
|
||||||
"imageProvider": "Elige el proveedor registrado usado por generate_image.",
|
"imageProvider": "Pilih penyedia registry yang digunakan oleh generate_image.",
|
||||||
"imageProviderStatus": "La generación de imágenes reutiliza credenciales de Proveedores.",
|
"imageProviderStatus": "Pembuatan gambar menggunakan kembali kredensial penyedia dari bagian Penyedia.",
|
||||||
"imageModel": "Nombre del modelo enviado al proveedor de imágenes seleccionado.",
|
"imageModel": "Nama model yang dikirim ke penyedia gambar yang dipilih.",
|
||||||
"defaultAspectRatio": "Se usa cuando el prompt no elige una proporción.",
|
"defaultAspectRatio": "Digunakan saat instruksi tidak memilih rasio aspek.",
|
||||||
"defaultImageSize": "Petunjuk ukuran yang dikirim ke penyedia yang mendukungnya.",
|
"defaultImageSize": "Petunjuk ukuran yang dikirim ke penyedia yang mendukungnya.",
|
||||||
"maxImagesPerTurn": "Batas atas untuk satu permintaan generate_image.",
|
"maxImagesPerTurn": "Batas atas untuk satu permintaan generate_image.",
|
||||||
"timezone": "Se usa para horarios y respuestas con conciencia temporal.",
|
"timezone": "Dipakai untuk jadwal dan balasan yang peka waktu.",
|
||||||
"localServiceAccess": "Izinkan perintah shell Full Access menjangkau layanan localhost.",
|
"localServiceAccess": "Izinkan perintah shell dengan akses penuh menjangkau layanan lokal.",
|
||||||
"webuiDefaultAccess": "Digunakan oleh chat web tanpa izin khusus proyek.",
|
"webuiDefaultAccess": "Digunakan oleh chat web tanpa izin khusus proyek.",
|
||||||
"securityManagedControls": "Las capturas web siempre protegen servicios locales, privados y metadata. La seguridad de canales core se gestiona en config.json.",
|
"securityManagedControls": "Pengambilan web selalu melindungi layanan lokal, privat, dan metadata. Keamanan kanal inti tetap dikelola di config.json.",
|
||||||
"currentModel": "Digunakan untuk balasan baru.",
|
"currentModel": "Digunakan untuk balasan baru.",
|
||||||
"selectedModelProvider": "Definido por el modelo seleccionado.",
|
"selectedModelProvider": "Ditentukan oleh model yang dipilih.",
|
||||||
"selectedModelValue": "Definido por el modelo seleccionado.",
|
"selectedModelValue": "Ditentukan oleh model yang dipilih.",
|
||||||
"brandLogos": "Tampilkan logo penyedia pihak ketiga dan CLI di Pengaturan.",
|
"brandLogos": "Tampilkan logo penyedia pihak ketiga dan CLI di Pengaturan.",
|
||||||
"cliAppsCatalog": "Instala solo adaptadores CLI de apps que nanobot puede ejecutar localmente; las apps nativas no se modifican.",
|
"cliAppsCatalog": "Instal hanya adaptor CLI aplikasi yang dapat dijalankan nanobot secara lokal; aplikasi asli tidak diubah.",
|
||||||
"cliAppsFilter": "Busca por app, categoría o capacidad.",
|
"cliAppsFilter": "Cari berdasarkan aplikasi, kategori, atau kemampuan.",
|
||||||
"logs": "Abre la carpeta de registros del motor nativo.",
|
"logs": "Buka folder log mesin asli.",
|
||||||
"diagnostics": "Exporta un pequeño informe de runtime para soporte.",
|
"diagnostics": "Ekspor laporan waktu proses singkat untuk dukungan.",
|
||||||
"localServiceAccessNative": "Permite que comandos shell con Full Access alcancen servicios en este Mac.",
|
"localServiceAccessNative": "Izinkan perintah shell dengan akses penuh mengakses layanan di Mac ini.",
|
||||||
"webuiDefaultAccessNative": "Usado por chats nativos sin permiso específico de proyecto.",
|
"webuiDefaultAccessNative": "Digunakan oleh chat bawaan tanpa izin khusus proyek.",
|
||||||
"contextWindow": "Pilih anggaran konteks default untuk konfigurasi model ini.",
|
"contextWindow": "Pilih anggaran konteks bawaan untuk konfigurasi model ini.",
|
||||||
"transcription": "Transkripsikan input mikrofon sebelum dikirim. Pesan suara channel memakai pengaturan yang sama.",
|
"transcription": "Transkripsikan input mikrofon sebelum dikirim. Pesan suara kanal memakai pengaturan yang sama.",
|
||||||
"transcriptionProvider": "Menggunakan kredensial penyedia yang sesuai dari Providers.",
|
"transcriptionProvider": "Menggunakan kredensial penyedia yang sesuai dari Penyedia.",
|
||||||
"transcriptionProviderStatus": "API key tetap berada di providers, bukan di pengaturan transkripsi.",
|
"transcriptionProviderStatus": "Kunci API tetap berada di bagian penyedia, bukan di pengaturan transkripsi.",
|
||||||
"transcriptionModel": "Biarkan memakai default yang teresolusi kecuali penyedia membutuhkan id model khusus.",
|
"transcriptionModel": "Biarkan memakai bawaan yang ter-resolve kecuali penyedia membutuhkan ID model khusus.",
|
||||||
"transcriptionLanguage": "Petunjuk ISO-639 opsional, seperti en, zh, ja, atau ko."
|
"transcriptionLanguage": "Petunjuk ISO-639 opsional, seperti en, zh, ja, atau ko."
|
||||||
},
|
},
|
||||||
"values": {
|
"values": {
|
||||||
@ -208,74 +217,78 @@
|
|||||||
"ready": "Siap",
|
"ready": "Siap",
|
||||||
"privateEngine": "Mesin privat",
|
"privateEngine": "Mesin privat",
|
||||||
"unixSocket": "Soket Unix",
|
"unixSocket": "Soket Unix",
|
||||||
"defaultWorkspace": "Workspace default",
|
"defaultWorkspace": "Ruang kerja bawaan",
|
||||||
"comfortable": "Nyaman",
|
"comfortable": "Nyaman",
|
||||||
"compact": "Ringkas",
|
"compact": "Ringkas",
|
||||||
"auto": "Otomatis",
|
"auto": "Otomatis",
|
||||||
"expanded": "Diperluas",
|
"expanded": "Diperluas",
|
||||||
"default": "Default",
|
"default": "Bawaan",
|
||||||
"summary": "Ringkasan",
|
"summary": "Ringkasan",
|
||||||
"diff": "Diff",
|
"diff": "Perbedaan",
|
||||||
"collapsedDiff": "Diff diciutkan",
|
"collapsedDiff": "Perbedaan diciutkan",
|
||||||
"on": "Aktif",
|
"on": "Aktif",
|
||||||
"off": "Nonaktif",
|
"off": "Nonaktif",
|
||||||
"defaultPermission": "Izin default",
|
"defaultPermission": "Izin bawaan",
|
||||||
"fullAccess": "Akses penuh",
|
"fullAccess": "Akses penuh",
|
||||||
"configured": "Terkonfigurasi",
|
"configured": "Terkonfigurasi",
|
||||||
"notConfigured": "Belum dikonfigurasi",
|
"notConfigured": "Belum dikonfigurasi",
|
||||||
"pending": "Tertunda",
|
"pending": "Tertunda",
|
||||||
"restartingEngine": "Memulai ulang"
|
"restartingEngine": "Memulai ulang",
|
||||||
|
"checking": "Memeriksa",
|
||||||
|
"running": "Berjalan",
|
||||||
|
"needsSetup": "Perlu penyiapan"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "Memuat pengaturan...",
|
"loading": "Memuat pengaturan...",
|
||||||
"loadError": "Tidak dapat memuat pengaturan",
|
"loadError": "Tidak dapat memuat pengaturan",
|
||||||
"unsaved": "Perubahan belum disimpan.",
|
"unsaved": "Perubahan belum disimpan.",
|
||||||
"upToDate": "Sudah terbaru.",
|
"upToDate": "Sudah terbaru.",
|
||||||
"savedRestart": "Guardado. Reinicia nanobot para aplicar.",
|
"savedRestart": "Tersimpan. Mulai ulang nanobot untuk menerapkan.",
|
||||||
"restartAfterSaving": "Guarda los cambios y reinicia cuando puedas.",
|
"restartAfterSaving": "Simpan perubahan, lalu mulai ulang saat siap.",
|
||||||
"savedRestartApply": "Guardado. Reinicia cuando puedas.",
|
"savedRestartApply": "Tersimpan. Mulai ulang saat siap.",
|
||||||
"imageProviderRestart": "Cambios del proveedor de imagen guardados. Reinicia cuando puedas.",
|
"imageProviderRestart": "Perubahan penyedia gambar tersimpan. Mulai ulang saat siap.",
|
||||||
"hostRestartAfterSaving": "Al guardar, nanobot reiniciará su motor.",
|
"hostRestartAfterSaving": "Saat disimpan, nanobot akan memulai ulang mesinnya.",
|
||||||
"hostRestartPending": "Guardado. El motor se reiniciará cuando esté listo.",
|
"hostRestartPending": "Tersimpan. Mesin akan dimulai ulang saat siap.",
|
||||||
"hostApiUnavailable": "Las acciones del host solo están disponibles en la app nativa.",
|
"hostApiUnavailable": "Tindakan host hanya tersedia di aplikasi asli.",
|
||||||
"logsOpened": "Carpeta de registros abierta.",
|
"logsOpened": "Folder log dibuka.",
|
||||||
"logsOpenFailed": "No se pudo abrir la carpeta de registros.",
|
"logsOpenFailed": "Tidak dapat membuka folder log.",
|
||||||
"diagnosticsExported": "Diagnóstico exportado a {{path}}.",
|
"diagnosticsExported": "Diagnostik diekspor ke {{path}}.",
|
||||||
"diagnosticsExportFailed": "No se pudo exportar el diagnóstico."
|
"diagnosticsExportFailed": "Tidak dapat mengekspor diagnostik."
|
||||||
},
|
},
|
||||||
"actions": {
|
"actions": {
|
||||||
"save": "Simpan",
|
"save": "Simpan",
|
||||||
"saving": "Menyimpan",
|
"saving": "Menyimpan",
|
||||||
"saveOrder": "Simpan urutan",
|
"saveOrder": "Simpan urutan",
|
||||||
"savePreset": "Simpan preset",
|
"savePreset": "Simpan prasetel",
|
||||||
"delete": "Hapus",
|
"delete": "Hapus",
|
||||||
"deleting": "Menghapus...",
|
"deleting": "Menghapus...",
|
||||||
"edit": "Edit",
|
"edit": "Ubah",
|
||||||
"cancel": "Batal",
|
"cancel": "Batal",
|
||||||
|
"dismiss": "Abaikan",
|
||||||
"open": "Buka",
|
"open": "Buka",
|
||||||
"export": "Ekspor",
|
"export": "Ekspor",
|
||||||
"opening": "Membuka...",
|
"opening": "Membuka...",
|
||||||
"exporting": "Mengekspor..."
|
"exporting": "Mengekspor..."
|
||||||
},
|
},
|
||||||
"byok": {
|
"byok": {
|
||||||
"description": "Gunakan kunci provider Anda sendiri. Nanobot membaca nilai ini dari config saat ini dan hanya provider yang sudah dikonfigurasi yang dapat digunakan dalam preset model.",
|
"description": "Gunakan kunci penyedia Anda sendiri. Nanobot membaca nilai ini dari konfigurasi saat ini dan hanya penyedia yang sudah dikonfigurasi yang dapat digunakan dalam prasetel model.",
|
||||||
"configured": "Terkonfigurasi",
|
"configured": "Terkonfigurasi",
|
||||||
"notConfigured": "Belum dikonfigurasi",
|
"notConfigured": "Belum dikonfigurasi",
|
||||||
"configuredSection": "Terkonfigurasi",
|
"configuredSection": "Terkonfigurasi",
|
||||||
"notConfiguredSection": "Belum dikonfigurasi",
|
"notConfiguredSection": "Belum dikonfigurasi",
|
||||||
"showMore": "Tampilkan {{count}} lagi",
|
"showMore": "Tampilkan {{count}} lagi",
|
||||||
"showLess": "Tampilkan lebih sedikit",
|
"showLess": "Tampilkan lebih sedikit",
|
||||||
"apiKey": "API key",
|
"apiKey": "Kunci API",
|
||||||
"apiBase": "API base",
|
"apiBase": "Basis API",
|
||||||
"apiKeyPlaceholder": "Masukkan API key",
|
"apiKeyPlaceholder": "Masukkan kunci API",
|
||||||
"apiKeyConfiguredPlaceholder": "Kosongkan untuk mempertahankan key saat ini",
|
"apiKeyConfiguredPlaceholder": "Kosongkan untuk mempertahankan kunci saat ini",
|
||||||
"configuredKeyHint": "Key terkonfigurasi",
|
"configuredKeyHint": "Kunci yang dikonfigurasi",
|
||||||
"apiBasePlaceholder": "Gunakan default provider",
|
"apiBasePlaceholder": "Gunakan nilai bawaan penyedia",
|
||||||
"apiKeyRequired": "API key diperlukan untuk mengonfigurasi provider ini.",
|
"apiKeyRequired": "Kunci API diperlukan untuk mengonfigurasi penyedia ini.",
|
||||||
"showApiKey": "Tampilkan API key",
|
"showApiKey": "Tampilkan kunci API",
|
||||||
"hideApiKey": "Sembunyikan API key",
|
"hideApiKey": "Sembunyikan kunci API",
|
||||||
"noConfiguredProviders": "Belum ada provider terkonfigurasi",
|
"noConfiguredProviders": "Belum ada penyedia yang dikonfigurasi",
|
||||||
"configureFirst": "Konfigurasikan provider di BYOK terlebih dahulu.",
|
"configureFirst": "Konfigurasikan penyedia di BYOK terlebih dahulu.",
|
||||||
"openByok": "Buka BYOK",
|
"openByok": "Buka BYOK",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"ariaLabel": "Jenis kredensial BYOK",
|
"ariaLabel": "Jenis kredensial BYOK",
|
||||||
@ -284,19 +297,19 @@
|
|||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "Penyedia pencarian",
|
"provider": "Penyedia pencarian",
|
||||||
"providerHelp": "Pilih backend yang digunakan alat web search.",
|
"providerHelp": "Pilih backend yang digunakan alat pencarian web.",
|
||||||
"selectProvider": "Pilih provider",
|
"selectProvider": "Pilih penyedia",
|
||||||
"credentials": "Kredensial",
|
"credentials": "Kredensial",
|
||||||
"noCredentialRequired": "Tidak perlu key",
|
"noCredentialRequired": "Tidak perlu kunci",
|
||||||
"noCredentialHelp": "DuckDuckGo berfungsi tanpa menyimpan API key.",
|
"noCredentialHelp": "DuckDuckGo berfungsi tanpa menyimpan kunci API.",
|
||||||
"apiKeyHelp": "Disimpan di config dan ditampilkan tersamarkan setelah disimpan.",
|
"apiKeyHelp": "Disimpan di config dan ditampilkan tersamarkan setelah disimpan.",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "URL dasar",
|
||||||
"baseUrlHelp": "SearXNG memerlukan URL instance Anda sendiri.",
|
"baseUrlHelp": "SearXNG memerlukan URL instance Anda sendiri.",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "Provider pencarian ini memerlukan API key.",
|
"apiKeyRequired": "Penyedia pencarian ini memerlukan kunci API.",
|
||||||
"baseUrlRequired": "SearXNG memerlukan Base URL.",
|
"baseUrlRequired": "SearXNG memerlukan URL dasar.",
|
||||||
"missingCredential": "Tambahkan kredensial yang diperlukan sebelum menyimpan.",
|
"missingCredential": "Tambahkan kredensial yang diperlukan sebelum menyimpan.",
|
||||||
"saveHint": "Perubahan berlaku untuk permintaan web search baru."
|
"saveHint": "Perubahan berlaku untuk permintaan pencarian web baru."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -311,7 +324,7 @@
|
|||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Aktivitas token",
|
"title": "Aktivitas token",
|
||||||
"shortTitle": "Token Usage",
|
"shortTitle": "Penggunaan token",
|
||||||
"subtitle": "Penggunaan yang dilaporkan penyedia selama 12 bulan terakhir.",
|
"subtitle": "Penggunaan yang dilaporkan penyedia selama 12 bulan terakhir.",
|
||||||
"empty": "Aktivitas token akan muncul setelah balasan model baru.",
|
"empty": "Aktivitas token akan muncul setelah balasan model baru.",
|
||||||
"totalTokens": "Total token",
|
"totalTokens": "Total token",
|
||||||
@ -358,8 +371,18 @@
|
|||||||
"selectProvider": "Pilih penyedia",
|
"selectProvider": "Pilih penyedia",
|
||||||
"selectAspect": "Pilih rasio",
|
"selectAspect": "Pilih rasio",
|
||||||
"selectSize": "Pilih ukuran",
|
"selectSize": "Pilih ukuran",
|
||||||
|
"selectModel": "Pilih model gambar",
|
||||||
|
"searchOrTypeModel": "Cari atau ketik ID model",
|
||||||
|
"typeModelId": "Ketik ID model yang didukung penyedia ini.",
|
||||||
"configureProvider": "Konfigurasi penyedia",
|
"configureProvider": "Konfigurasi penyedia",
|
||||||
"missingCredential": "Configura este proveedor antes de activar la generación de imágenes."
|
"missingCredential": "Konfigurasikan penyedia ini sebelum mengaktifkan pembuatan gambar."
|
||||||
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "Dukungan penyedia",
|
||||||
|
"providerInstallOnSave": "Dukungan yang diperlukan akan dipasang otomatis saat Anda menyimpan penyedia ini.",
|
||||||
|
"searchSupport": "Dukungan penyedia pencarian",
|
||||||
|
"searchInstallOnSave": "Dukungan Olostep akan dipasang otomatis saat Anda menyimpan.",
|
||||||
|
"installing": "Memasang dukungan..."
|
||||||
},
|
},
|
||||||
"models": {
|
"models": {
|
||||||
"selectModel": "Pilih model",
|
"selectModel": "Pilih model",
|
||||||
@ -372,12 +395,12 @@
|
|||||||
"callOrder": "Urutan pemanggilan model",
|
"callOrder": "Urutan pemanggilan model",
|
||||||
"primary": "Utama",
|
"primary": "Utama",
|
||||||
"fallbackNumber": "Cadangan {{number}}",
|
"fallbackNumber": "Cadangan {{number}}",
|
||||||
"addToOrder": "Aktifkan preset",
|
"addToOrder": "Aktifkan prasetel",
|
||||||
"newPreset": "Preset model baru",
|
"newPreset": "Prasetel model baru",
|
||||||
"newPresetHelp": "Simpan model yang dapat digunakan kembali beserta pengaturan generasinya.",
|
"newPresetHelp": "Simpan model yang dapat digunakan kembali beserta pengaturan generasinya.",
|
||||||
"presets": "Preset model",
|
"presets": "Prasetel model",
|
||||||
"editPreset": "Edit preset",
|
"editPreset": "Ubah prasetel",
|
||||||
"presetName": "Nama preset",
|
"presetName": "Nama prasetel",
|
||||||
"presetNameHelp": "Nama singkat yang digunakan di pengaturan model.",
|
"presetNameHelp": "Nama singkat yang digunakan di pengaturan model.",
|
||||||
"presetNamePlaceholder": "Menulis cepat",
|
"presetNamePlaceholder": "Menulis cepat",
|
||||||
"advancedOptions": "Opsi lanjutan",
|
"advancedOptions": "Opsi lanjutan",
|
||||||
@ -386,22 +409,22 @@
|
|||||||
"temperature": "Temperatur",
|
"temperature": "Temperatur",
|
||||||
"reasoningEffort": "Upaya penalaran",
|
"reasoningEffort": "Upaya penalaran",
|
||||||
"convertTitle": "Konversi pengaturan model saat ini",
|
"convertTitle": "Konversi pengaturan model saat ini",
|
||||||
"convertHelp": "Ubah model utama dan cadangan yang ada menjadi preset agar urutannya dapat dikelola di sini.",
|
"convertHelp": "Ubah model utama dan cadangan yang ada menjadi prasetel agar urutannya dapat dikelola di sini.",
|
||||||
"converting": "Mengonversi...",
|
"converting": "Mengonversi...",
|
||||||
"convertAction": "Konversi ke preset",
|
"convertAction": "Konversi ke prasetel",
|
||||||
"dragToReorder": "Seret untuk mengurutkan ulang",
|
"dragToReorder": "Seret untuk mengurutkan ulang",
|
||||||
"moveUp": "Naikkan",
|
"moveUp": "Naikkan",
|
||||||
"moveDown": "Turunkan",
|
"moveDown": "Turunkan",
|
||||||
"removeFromOrder": "Nonaktifkan preset",
|
"removeFromOrder": "Nonaktifkan prasetel",
|
||||||
"inCallOrder": "Dalam urutan pemanggilan",
|
"inCallOrder": "Dalam urutan pemanggilan",
|
||||||
"disabled": "Nonaktif",
|
"disabled": "Nonaktif",
|
||||||
"noPresets": "Belum ada preset model",
|
"noPresets": "Belum ada prasetel model",
|
||||||
"noPresetsHelp": "Buat preset, lalu tambahkan ke urutan pemanggilan.",
|
"noPresetsHelp": "Buat prasetel, lalu tambahkan ke urutan pemanggilan.",
|
||||||
"removeBeforeDelete": "Hapus preset ini dari urutan pemanggilan sebelum menghapusnya.",
|
"removeBeforeDelete": "Hapus prasetel ini dari urutan pemanggilan sebelum menghapusnya.",
|
||||||
"providerSetupRequired": "Penyedia perlu dikonfigurasi",
|
"providerSetupRequired": "Penyedia perlu dikonfigurasi",
|
||||||
"configureProviderBeforeSaving": "Konfigurasikan penyedia ini sebelum menyimpan preset.",
|
"configureProviderBeforeSaving": "Konfigurasikan penyedia ini sebelum menyimpan prasetel.",
|
||||||
"deletePresetTitle": "Hapus preset model?",
|
"deletePresetTitle": "Hapus prasetel model?",
|
||||||
"deletePresetHelp": "Preset “{{name}}” akan dihapus. Kredensial penyedia tidak terpengaruh.",
|
"deletePresetHelp": "Prasetel “{{name}}” akan dihapus. Kredensial penyedia tidak terpengaruh.",
|
||||||
"searchModels": "Cari atau ketik ID model",
|
"searchModels": "Cari atau ketik ID model",
|
||||||
"useCustomModel": "Gunakan",
|
"useCustomModel": "Gunakan",
|
||||||
"loadingModels": "Memuat model...",
|
"loadingModels": "Memuat model...",
|
||||||
@ -458,11 +481,11 @@
|
|||||||
},
|
},
|
||||||
"mcp": {
|
"mcp": {
|
||||||
"allCategories": "Semua kategori",
|
"allCategories": "Semua kategori",
|
||||||
"summary": "{{installed}} dari {{total}} preset diaktifkan",
|
"summary": "{{installed}} dari {{total}} prasetel diaktifkan",
|
||||||
"filterAll": "Semua",
|
"filterAll": "Semua",
|
||||||
"filterInstalled": "Aktif",
|
"filterInstalled": "Aktif",
|
||||||
"filterNotInstalled": "Tidak aktif",
|
"filterNotInstalled": "Tidak aktif",
|
||||||
"searchPlaceholder": "Cari preset MCP",
|
"searchPlaceholder": "Cari prasetel MCP",
|
||||||
"moreOptions": "Opsi MCP lainnya",
|
"moreOptions": "Opsi MCP lainnya",
|
||||||
"moreOptionsSubtitle": "Tambahkan server khusus atau impor mcp.json.",
|
"moreOptionsSubtitle": "Tambahkan server khusus atau impor mcp.json.",
|
||||||
"customTitle": "MCP khusus",
|
"customTitle": "MCP khusus",
|
||||||
@ -473,9 +496,9 @@
|
|||||||
"serverUrl": "URL",
|
"serverUrl": "URL",
|
||||||
"transport": "Transport",
|
"transport": "Transport",
|
||||||
"command": "Perintah",
|
"command": "Perintah",
|
||||||
"args": "Args JSON",
|
"args": "Argumen JSON",
|
||||||
"headers": "Headers JSON",
|
"headers": "Header JSON",
|
||||||
"env": "Env JSON",
|
"env": "Lingkungan JSON",
|
||||||
"timeout": "Batas waktu alat",
|
"timeout": "Batas waktu alat",
|
||||||
"advancedOptions": "Opsi lanjutan",
|
"advancedOptions": "Opsi lanjutan",
|
||||||
"hideAdvanced": "Sembunyikan lanjutan",
|
"hideAdvanced": "Sembunyikan lanjutan",
|
||||||
@ -484,8 +507,8 @@
|
|||||||
"importConfig": "Impor",
|
"importConfig": "Impor",
|
||||||
"restartRequired": "Mulai ulang nanobot untuk menyambungkan alat MCP yang diperbarui.",
|
"restartRequired": "Mulai ulang nanobot untuk menyambungkan alat MCP yang diperbarui.",
|
||||||
"toolsFound": "{{count}} alat",
|
"toolsFound": "{{count}} alat",
|
||||||
"loading": "Memuat preset MCP...",
|
"loading": "Memuat prasetel MCP...",
|
||||||
"empty": "Tidak ada preset MCP yang cocok dengan filter ini.",
|
"empty": "Tidak ada prasetel MCP yang cocok dengan filter ini.",
|
||||||
"openDocs": "Buka dokumentasi",
|
"openDocs": "Buka dokumentasi",
|
||||||
"test": "Uji",
|
"test": "Uji",
|
||||||
"remove": "Hapus",
|
"remove": "Hapus",
|
||||||
@ -503,6 +526,7 @@
|
|||||||
"statusMissingCredentials": "Butuh kunci",
|
"statusMissingCredentials": "Butuh kunci",
|
||||||
"statusMissingDependency": "Butuh dependensi",
|
"statusMissingDependency": "Butuh dependensi",
|
||||||
"statusComingSoon": "Segera hadir",
|
"statusComingSoon": "Segera hadir",
|
||||||
|
"comingSoon": "Segera hadir",
|
||||||
"statusNotInstalled": "Tidak aktif",
|
"statusNotInstalled": "Tidak aktif",
|
||||||
"toolScope": "Alat",
|
"toolScope": "Alat",
|
||||||
"allTools": "Semua",
|
"allTools": "Semua",
|
||||||
@ -544,7 +568,7 @@
|
|||||||
"restartRequired": "Mulai ulang nanobot untuk menerapkan aplikasi dan fitur yang diperbarui."
|
"restartRequired": "Mulai ulang nanobot untuk menerapkan aplikasi dan fitur yang diperbarui."
|
||||||
},
|
},
|
||||||
"channels": {
|
"channels": {
|
||||||
"description": "Hubungkan nanobot ke aplikasi chat. Memasang dukungan hanya menambahkan paket integrasi; sebagian besar kanal tetap memerlukan token atau pengaturan workspace.",
|
"description": "Hubungkan nanobot ke aplikasi chat. Memasang dukungan hanya menambahkan paket integrasi; sebagian besar kanal tetap memerlukan token atau pengaturan ruang kerja.",
|
||||||
"caption": "{{enabled}} aktif · {{total}} kanal",
|
"caption": "{{enabled}} aktif · {{total}} kanal",
|
||||||
"searchPlaceholder": "Cari kanal",
|
"searchPlaceholder": "Cari kanal",
|
||||||
"backToChannels": "Semua kanal",
|
"backToChannels": "Semua kanal",
|
||||||
@ -554,7 +578,7 @@
|
|||||||
"restartRequired": "Mulai ulang nanobot untuk menerapkan dukungan kanal yang diperbarui.",
|
"restartRequired": "Mulai ulang nanobot untuk menerapkan dukungan kanal yang diperbarui.",
|
||||||
"requires": "Memerlukan: {{requirements}}",
|
"requires": "Memerlukan: {{requirements}}",
|
||||||
"setUp": "Siapkan",
|
"setUp": "Siapkan",
|
||||||
"setupGuide": "Panduan setup",
|
"setupGuide": "Panduan penyiapan",
|
||||||
"setupSummary": "Mengaktifkan hanya menyalakan dukungan nanobot. Tambahkan kredensial platform, lalu mulai ulang nanobot.",
|
"setupSummary": "Mengaktifkan hanya menyalakan dukungan nanobot. Tambahkan kredensial platform, lalu mulai ulang nanobot.",
|
||||||
"configKeys": "Kunci konfigurasi",
|
"configKeys": "Kunci konfigurasi",
|
||||||
"enable": "Aktifkan kanal",
|
"enable": "Aktifkan kanal",
|
||||||
@ -565,6 +589,8 @@
|
|||||||
"advanced": "Lanjutan",
|
"advanced": "Lanjutan",
|
||||||
"checkAndEnable": "Periksa dan aktifkan",
|
"checkAndEnable": "Periksa dan aktifkan",
|
||||||
"checkConnection": "Periksa koneksi",
|
"checkConnection": "Periksa koneksi",
|
||||||
|
"connectionChecks": "Pemeriksaan koneksi",
|
||||||
|
"open": "Buka",
|
||||||
"checkedAndEnabled": "Sudah diperiksa dan diaktifkan.",
|
"checkedAndEnabled": "Sudah diperiksa dan diaktifkan.",
|
||||||
"checking": "Memeriksa...",
|
"checking": "Memeriksa...",
|
||||||
"checkOnly": "Periksa saja",
|
"checkOnly": "Periksa saja",
|
||||||
@ -655,11 +681,13 @@
|
|||||||
"runNow": "Jalankan sekarang",
|
"runNow": "Jalankan sekarang",
|
||||||
"pause": "Jeda",
|
"pause": "Jeda",
|
||||||
"resume": "Lanjutkan",
|
"resume": "Lanjutkan",
|
||||||
"edit": "Edit",
|
"edit": "Ubah",
|
||||||
"delete": "Hapus",
|
"delete": "Hapus",
|
||||||
"protected": "Terlindungi",
|
"protected": "Terlindungi",
|
||||||
"editTitle": "Edit otomasi",
|
"editTitle": "Ubah otomasi",
|
||||||
"save": "Simpan",
|
"save": "Simpan",
|
||||||
|
"commandCopied": "Disalin",
|
||||||
|
"copyCommand": "Salin",
|
||||||
"deleteTitle": "Hapus otomasi",
|
"deleteTitle": "Hapus otomasi",
|
||||||
"deleteDescription": "Ini menghapus {{name}} dari penyimpanan cron. Pesan chat sebelumnya tetap ada di sesi.",
|
"deleteDescription": "Ini menghapus {{name}} dari penyimpanan cron. Pesan chat sebelumnya tetap ada di sesi.",
|
||||||
"cancel": "Batal",
|
"cancel": "Batal",
|
||||||
@ -719,6 +747,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "Nama",
|
"name": "Nama",
|
||||||
"message": "Pesan",
|
"message": "Pesan",
|
||||||
|
"command": "Perintah",
|
||||||
"scheduleType": "Jenis jadwal",
|
"scheduleType": "Jenis jadwal",
|
||||||
"every": "Setiap",
|
"every": "Setiap",
|
||||||
"unit": "Unit",
|
"unit": "Unit",
|
||||||
@ -753,11 +782,11 @@
|
|||||||
"signInAgain": "Masuk lagi",
|
"signInAgain": "Masuk lagi",
|
||||||
"signOut": "Keluar",
|
"signOut": "Keluar",
|
||||||
"signedInAs": "Masuk sebagai {{account}}",
|
"signedInAs": "Masuk sebagai {{account}}",
|
||||||
"signInHelp": "Inicia sesión desde este dispositivo; no se guarda API key en config.",
|
"signInHelp": "Masuk dari perangkat ini; kunci API tidak disimpan di config.",
|
||||||
"remoteSignInHelp": "Pilih Masuk untuk membuka xAI di komputer Anda, lalu tempel kode otorisasi yang ditampilkan setelah masuk.",
|
"remoteSignInHelp": "Pilih Masuk untuk membuka xAI di komputer Anda, lalu tempel kode otorisasi yang ditampilkan setelah masuk.",
|
||||||
"codexRemoteSignInHelp": "Masuk melalui browser ini, lalu tempel URL callback localhost lengkap kembali ke nanobot.",
|
"codexRemoteSignInHelp": "Masuk melalui browser ini, lalu tempel URL callback localhost lengkap kembali ke nanobot.",
|
||||||
"signInRequired": "Perlu masuk",
|
"signInRequired": "Perlu masuk",
|
||||||
"signInBeforeSaving": "Masuk ke penyedia ini sebelum menyimpan preset.",
|
"signInBeforeSaving": "Masuk ke penyedia ini sebelum menyimpan prasetel.",
|
||||||
"signedIn": "Sudah masuk",
|
"signedIn": "Sudah masuk",
|
||||||
"notSignedIn": "Belum masuk",
|
"notSignedIn": "Belum masuk",
|
||||||
"proxyLabel": "Proksi jaringan",
|
"proxyLabel": "Proksi jaringan",
|
||||||
@ -776,56 +805,56 @@
|
|||||||
"finishSignIn": "Selesaikan masuk"
|
"finishSignIn": "Selesaikan masuk"
|
||||||
},
|
},
|
||||||
"skills": {
|
"skills": {
|
||||||
"description": "Tinjau skill instruksi yang dapat dimuat agent ini selama percakapan.",
|
"description": "Tinjau keterampilan instruksi yang dapat dimuat agen ini selama percakapan.",
|
||||||
"caption": "{{available}} tersedia · {{total}} total",
|
"caption": "{{available}} tersedia · {{total}} total",
|
||||||
"views": "Tampilan skill",
|
"views": "Tampilan keterampilan",
|
||||||
"installedTab": "Terpasang",
|
"installedTab": "Terpasang",
|
||||||
"discoverTab": "Temukan",
|
"discoverTab": "Temukan",
|
||||||
"customGroup": "Kustom",
|
"customGroup": "Kustom",
|
||||||
"builtinGroup": "Bawaan",
|
"builtinGroup": "Bawaan",
|
||||||
"otherGroup": "Lainnya",
|
"otherGroup": "Lainnya",
|
||||||
"searchInstalled": "Cari skill terpasang",
|
"searchInstalled": "Cari keterampilan terpasang",
|
||||||
"filterAll": "Semua",
|
"filterAll": "Semua",
|
||||||
"filterEnabled": "Aktif",
|
"filterEnabled": "Aktif",
|
||||||
"filterDisabled": "Nonaktif",
|
"filterDisabled": "Nonaktif",
|
||||||
"noMatching": "Tidak ada skill yang cocok.",
|
"noMatching": "Tidak ada keterampilan yang cocok.",
|
||||||
"statusDisabled": "Nonaktif",
|
"statusDisabled": "Nonaktif",
|
||||||
"statusEnabled": "Aktif",
|
"statusEnabled": "Aktif",
|
||||||
"statusNeedsSetup": "Perlu penyiapan",
|
"statusNeedsSetup": "Perlu penyiapan",
|
||||||
"showLess": "Tampilkan lebih sedikit",
|
"showLess": "Tampilkan lebih sedikit",
|
||||||
"showMore": "Tampilkan lebih banyak",
|
"showMore": "Tampilkan lebih banyak",
|
||||||
"enabledControl": "Gunakan skill ini",
|
"enabledControl": "Gunakan keterampilan ini",
|
||||||
"enabledDescription": "Izinkan agen memuat skill ini saat persyaratannya terpenuhi.",
|
"enabledDescription": "Izinkan agen memuat keterampilan ini saat persyaratannya terpenuhi.",
|
||||||
"enableSkill": "Aktifkan {{name}}",
|
"enableSkill": "Aktifkan {{name}}",
|
||||||
"disableSkill": "Nonaktifkan {{name}}",
|
"disableSkill": "Nonaktifkan {{name}}",
|
||||||
"updateFailed": "Skill ini tidak dapat diperbarui.",
|
"updateFailed": "Keterampilan ini tidak dapat diperbarui.",
|
||||||
"deleteTitle": "Hapus skill",
|
"deleteTitle": "Hapus keterampilan",
|
||||||
"deleteDescription": "Hapus skill ini dari workspace saat ini.",
|
"deleteDescription": "Hapus keterampilan ini dari ruang kerja saat ini.",
|
||||||
"deleteAction": "Hapus",
|
"deleteAction": "Hapus",
|
||||||
"deleteFailed": "Skill ini tidak dapat dihapus.",
|
"deleteFailed": "Keterampilan ini tidak dapat dihapus.",
|
||||||
"deleteConfirmTitle": "Hapus {{name}}?",
|
"deleteConfirmTitle": "Hapus {{name}}?",
|
||||||
"deleteConfirmDescription": "Tindakan ini menghapus file skill dari workspace saat ini dan tidak dapat dibatalkan.",
|
"deleteConfirmDescription": "Tindakan ini menghapus file keterampilan dari ruang kerja saat ini dan tidak dapat dibatalkan.",
|
||||||
"deleteConfirmAction": "Hapus skill",
|
"deleteConfirmAction": "Hapus keterampilan",
|
||||||
"instructionsTitle": "Petunjuk skill",
|
"instructionsTitle": "Petunjuk keterampilan",
|
||||||
"setupRequired": "Perlu penyiapan",
|
"setupRequired": "Perlu penyiapan",
|
||||||
"setupDescription": "Instal dependensi yang belum tersedia di mesin yang menjalankan nanobot, lalu periksa lagi.",
|
"setupDescription": "Instal dependensi yang belum tersedia di mesin yang menjalankan nanobot, lalu periksa lagi.",
|
||||||
"copySetupCommand": "Salin perintah penyiapan",
|
"copySetupCommand": "Salin perintah penyiapan",
|
||||||
"checkAgain": "Periksa lagi",
|
"checkAgain": "Periksa lagi",
|
||||||
"marketplaceSearchFailed": "Tidak dapat mencari marketplace skill.",
|
"marketplaceSearchFailed": "Tidak dapat mencari marketplace keterampilan.",
|
||||||
"marketplaceInstallFailed": "Tidak dapat memasang skill ini.",
|
"marketplaceInstallFailed": "Tidak dapat memasang keterampilan ini.",
|
||||||
"marketplaceSearchPlaceholder": "Cari skill",
|
"marketplaceSearchPlaceholder": "Cari keterampilan",
|
||||||
"marketplaceSearchLabel": "Cari skill",
|
"marketplaceSearchLabel": "Cari keterampilan",
|
||||||
"marketplaceSearching": "Mencari",
|
"marketplaceSearching": "Mencari",
|
||||||
"marketplaceProviderFilter": "Sumber skill",
|
"marketplaceProviderFilter": "Sumber keterampilan",
|
||||||
"marketplaceProviderAll": "Semua",
|
"marketplaceProviderAll": "Semua",
|
||||||
"marketplaceTrendingTitle": "Tren per marketplace",
|
"marketplaceTrendingTitle": "Tren per marketplace",
|
||||||
"marketplaceTrendingDescription": "Setiap marketplace mempertahankan peringkat dan metrik pemasangannya sendiri.",
|
"marketplaceTrendingDescription": "Setiap marketplace mempertahankan peringkat dan metrik pemasangannya sendiri.",
|
||||||
"marketplaceViewAll": "Lihat semua",
|
"marketplaceViewAll": "Lihat semua",
|
||||||
"marketplaceTrendingUnavailable": "Skill populer sementara tidak tersedia.",
|
"marketplaceTrendingUnavailable": "Keterampilan populer sementara tidak tersedia.",
|
||||||
"marketplaceEmpty": "Tidak ada skill yang ditemukan untuk “{{query}}”.",
|
"marketplaceEmpty": "Tidak ada keterampilan yang ditemukan untuk “{{query}}”.",
|
||||||
"marketplaceConfirmTitle": "Pasang {{name}}?",
|
"marketplaceConfirmTitle": "Pasang {{name}}?",
|
||||||
"marketplaceConfirmDescription": "Skill pihak ketiga ini berasal dari {{provider}} ({{source}}) dan mungkin berisi instruksi atau skrip yang dapat dijalankan.",
|
"marketplaceConfirmDescription": "Keterampilan pihak ketiga ini berasal dari {{provider}} ({{source}}) dan mungkin berisi instruksi atau skrip yang dapat dijalankan.",
|
||||||
"marketplaceConfirmInstall": "Pasang skill",
|
"marketplaceConfirmInstall": "Pasang keterampilan",
|
||||||
"marketplaceOpen": "Buka {{name}} di {{provider}}",
|
"marketplaceOpen": "Buka {{name}} di {{provider}}",
|
||||||
"marketplaceOpenProvider": "Buka {{provider}}",
|
"marketplaceOpenProvider": "Buka {{provider}}",
|
||||||
"marketplaceInstalls24h": "{{formattedCount}} pemasangan / 24 jam",
|
"marketplaceInstalls24h": "{{formattedCount}} pemasangan / 24 jam",
|
||||||
@ -836,16 +865,16 @@
|
|||||||
"marketplaceInstall": "Pasang",
|
"marketplaceInstall": "Pasang",
|
||||||
"marketplaceNoTrend": "Belum ada tren",
|
"marketplaceNoTrend": "Belum ada tren",
|
||||||
"marketplaceTrendLabel": "Tren pemasangan 8 minggu",
|
"marketplaceTrendLabel": "Tren pemasangan 8 minggu",
|
||||||
"featured": "Skill agent",
|
"featured": "Keterampilan agen",
|
||||||
"empty": "Tidak ada skill yang tersedia.",
|
"empty": "Tidak ada keterampilan yang tersedia.",
|
||||||
"sourceWorkspace": "Kustom",
|
"sourceWorkspace": "Kustom",
|
||||||
"sourceBuiltin": "Bawaan",
|
"sourceBuiltin": "Bawaan",
|
||||||
"statusAvailable": "Tersedia",
|
"statusAvailable": "Tersedia",
|
||||||
"statusUnavailable": "Tidak tersedia",
|
"statusUnavailable": "Tidak tersedia",
|
||||||
"unavailableReason": "Kurang: {{reason}}",
|
"unavailableReason": "Kurang: {{reason}}",
|
||||||
"openDetails": "Buka detail {{name}}",
|
"openDetails": "Buka detail {{name}}",
|
||||||
"loadingDetail": "Memuat detail skill...",
|
"loadingDetail": "Memuat detail keterampilan...",
|
||||||
"loadFailed": "Tidak dapat memuat detail skill.",
|
"loadFailed": "Tidak dapat memuat detail keterampilan.",
|
||||||
"descriptionTitle": "Deskripsi",
|
"descriptionTitle": "Deskripsi",
|
||||||
"source": "Sumber",
|
"source": "Sumber",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
@ -863,7 +892,7 @@
|
|||||||
"voice": {
|
"voice": {
|
||||||
"selectProvider": "Pilih penyedia",
|
"selectProvider": "Pilih penyedia",
|
||||||
"configureProvider": "Konfigurasi penyedia",
|
"configureProvider": "Konfigurasi penyedia",
|
||||||
"languageAuto": "Auto"
|
"languageAuto": "Otomatis"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
@ -877,34 +906,34 @@
|
|||||||
"actions": "Aksi topik untuk {{title}}",
|
"actions": "Aksi topik untuk {{title}}",
|
||||||
"newInProject": "Mulai topik baru di {{project}}",
|
"newInProject": "Mulai topik baru di {{project}}",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent running",
|
"running": "Agen sedang berjalan",
|
||||||
"complete": "Agent finished",
|
"complete": "Agen selesai",
|
||||||
"updated": "New activity"
|
"updated": "Aktivitas baru"
|
||||||
},
|
},
|
||||||
"pin": "Pin",
|
"pin": "Sematkan",
|
||||||
"unpin": "Unpin",
|
"unpin": "Lepas sematan",
|
||||||
"rename": "Rename",
|
"rename": "Ganti nama",
|
||||||
"renameTitle": "Ganti nama topik",
|
"renameTitle": "Ganti nama topik",
|
||||||
"renameDescription": "Pilih nama lokal di bilah sisi untuk topik ini.",
|
"renameDescription": "Pilih nama lokal di bilah sisi untuk topik ini.",
|
||||||
"renamePlaceholder": "Nama topik",
|
"renamePlaceholder": "Nama topik",
|
||||||
"renameProjectTitle": "Rename project",
|
"renameProjectTitle": "Ganti nama proyek",
|
||||||
"renameProjectDescription": "Choose a local sidebar name for this project.",
|
"renameProjectDescription": "Pilih nama lokal untuk proyek ini di bilah sisi.",
|
||||||
"renameProjectPlaceholder": "Project name",
|
"renameProjectPlaceholder": "Nama proyek",
|
||||||
"renameSave": "Save",
|
"renameSave": "Simpan",
|
||||||
"archive": "Archive",
|
"archive": "Arsipkan",
|
||||||
"unarchive": "Unarchive",
|
"unarchive": "Batalkan arsip",
|
||||||
"showArchived": "Show archived",
|
"showArchived": "Tampilkan yang diarsipkan",
|
||||||
"hideArchived": "Hide archived",
|
"hideArchived": "Sembunyikan yang diarsipkan",
|
||||||
"delete": "Hapus",
|
"delete": "Hapus",
|
||||||
"newChat": "Topik baru",
|
"newChat": "Topik baru",
|
||||||
"groups": {
|
"groups": {
|
||||||
"pinned": "Pinned",
|
"pinned": "Disematkan",
|
||||||
"all": "Topik",
|
"all": "Topik",
|
||||||
"projects": "Projects",
|
"projects": "Proyek",
|
||||||
"today": "Today",
|
"today": "Hari ini",
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "Kemarin",
|
||||||
"earlier": "Earlier",
|
"earlier": "Sebelumnya",
|
||||||
"archived": "Archived"
|
"archived": "Diarsipkan"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deleteConfirm": {
|
"deleteConfirm": {
|
||||||
@ -931,7 +960,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"connection": {
|
"connection": {
|
||||||
"idle": "Idle",
|
"idle": "Tidak aktif",
|
||||||
"connecting": "Menghubungkan…",
|
"connecting": "Menghubungkan…",
|
||||||
"open": "Terhubung",
|
"open": "Terhubung",
|
||||||
"reconnecting": "Menyambung ulang…",
|
"reconnecting": "Menyambung ulang…",
|
||||||
@ -957,8 +986,8 @@
|
|||||||
"prompt": "Bantu saya menganalisis data ini dan soroti pola yang paling penting."
|
"prompt": "Bantu saya menganalisis data ini dan soroti pola yang paling penting."
|
||||||
},
|
},
|
||||||
"brainstorm": {
|
"brainstorm": {
|
||||||
"title": "Brainstorm ide",
|
"title": "Curah gagasan",
|
||||||
"prompt": "Brainstorm beberapa ide praktis dan tradeoff untuk masalah ini."
|
"prompt": "Curahkan beberapa ide praktis dan pertimbangannya untuk masalah ini."
|
||||||
},
|
},
|
||||||
"code": {
|
"code": {
|
||||||
"title": "Tulis kode",
|
"title": "Tulis kode",
|
||||||
@ -970,7 +999,7 @@
|
|||||||
},
|
},
|
||||||
"more": {
|
"more": {
|
||||||
"title": "Lainnya",
|
"title": "Lainnya",
|
||||||
"prompt": "Tunjukkan beberapa cara berguna Anda dapat membantu di workspace ini."
|
"prompt": "Tunjukkan beberapa cara berguna Anda dapat membantu di ruang kerja ini."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imageQuickActions": {
|
"imageQuickActions": {
|
||||||
@ -984,19 +1013,19 @@
|
|||||||
},
|
},
|
||||||
"poster": {
|
"poster": {
|
||||||
"title": "Buat poster",
|
"title": "Buat poster",
|
||||||
"prompt": "Buat konsep poster yang rapi untuk asisten AI pribadi, komposisi modern, hierarki visual kuat, cocok untuk landing page."
|
"prompt": "Buat konsep poster yang rapi untuk asisten AI pribadi, komposisi modern, hierarki visual kuat, cocok untuk halaman arahan."
|
||||||
},
|
},
|
||||||
"product": {
|
"product": {
|
||||||
"title": "Mockup produk",
|
"title": "Maket produk",
|
||||||
"prompt": "Buat gambar mockup produk yang bersih untuk aplikasi web AI percakapan, antarmuka minimal, pencahayaan premium, bingkai perangkat realistis."
|
"prompt": "Buat gambar maket produk yang bersih untuk aplikasi web AI percakapan, antarmuka minimal, pencahayaan premium, bingkai perangkat realistis."
|
||||||
},
|
},
|
||||||
"portrait": {
|
"portrait": {
|
||||||
"title": "Potret bergaya",
|
"title": "Potret bergaya",
|
||||||
"prompt": "Buat potret bergaya dari pendamping AI yang ramah, pencahayaan lembut, detail tetapi tetap mudah didekati, gaya ilustrasi modern."
|
"prompt": "Buat potret bergaya dari pendamping AI yang ramah, pencahayaan lembut, detail tetapi tetap mudah didekati, gaya ilustrasi modern."
|
||||||
},
|
},
|
||||||
"edit": {
|
"edit": {
|
||||||
"title": "Edit gambar",
|
"title": "Ubah gambar",
|
||||||
"prompt": "Bantu saya mengedit gambar. Minta saya mengunggah atau menyebutkan gambar terlebih dahulu, lalu buat hasil editnya."
|
"prompt": "Bantu saya mengubah gambar. Minta saya mengunggah atau menyebutkan gambar terlebih dahulu, lalu buat hasil ubahannya."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1055,21 +1084,21 @@
|
|||||||
"label": "Panduan antrean",
|
"label": "Panduan antrean",
|
||||||
"guide": "Pandu",
|
"guide": "Pandu",
|
||||||
"delete": "Hapus panduan",
|
"delete": "Hapus panduan",
|
||||||
"edit": "Edit panduan",
|
"edit": "Ubah panduan",
|
||||||
"drag": "Seret untuk mengurutkan"
|
"drag": "Seret untuk mengurutkan"
|
||||||
},
|
},
|
||||||
"attachImage": "Lampirkan file",
|
"attachImage": "Lampirkan file",
|
||||||
"imageMode": {
|
"imageMode": {
|
||||||
"label": "Buat gambar",
|
"label": "Buat gambar",
|
||||||
"toggle": "Alihkan mode pembuatan gambar",
|
"toggle": "Alihkan mode pembuatan gambar",
|
||||||
"placeholder": "Deskripsikan atau edit gambar…",
|
"placeholder": "Deskripsikan atau ubah gambar…",
|
||||||
"aspectAria": "Rasio aspek gambar",
|
"aspectAria": "Rasio aspek gambar",
|
||||||
"aspectLabel": "Rasio gambar",
|
"aspectLabel": "Rasio gambar",
|
||||||
"aspect": {
|
"aspect": {
|
||||||
"auto": "Otomatis",
|
"auto": "Otomatis",
|
||||||
"1_1": "Persegi 1:1",
|
"1_1": "Persegi 1:1",
|
||||||
"3_4": "Potret 3:4",
|
"3_4": "Potret 3:4",
|
||||||
"9_16": "Story 9:16",
|
"9_16": "Cerita 9:16",
|
||||||
"4_3": "Lanskap 4:3",
|
"4_3": "Lanskap 4:3",
|
||||||
"16_9": "Lebar 16:9"
|
"16_9": "Lebar 16:9"
|
||||||
}
|
}
|
||||||
@ -1109,7 +1138,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "Hentikan tugas saat ini",
|
"title": "Hentikan tugas saat ini",
|
||||||
"description": "Batalkan giliran agent yang sedang aktif di chat ini."
|
"description": "Batalkan giliran agen yang sedang aktif di chat ini."
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "Mulai ulang nanobot",
|
"title": "Mulai ulang nanobot",
|
||||||
@ -1117,11 +1146,11 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "Tampilkan status",
|
"title": "Tampilkan status",
|
||||||
"description": "Tampilkan status runtime, provider, dan channel."
|
"description": "Tampilkan status waktu proses, penyedia, dan kanal."
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "Model",
|
"title": "Model",
|
||||||
"description": "Tampilkan atau ganti preset model aktif."
|
"description": "Tampilkan atau ganti prasetel model aktif."
|
||||||
},
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"title": "Tampilkan riwayat",
|
"title": "Tampilkan riwayat",
|
||||||
@ -1141,15 +1170,15 @@
|
|||||||
},
|
},
|
||||||
"dream_prompt": {
|
"dream_prompt": {
|
||||||
"title": "Memori Dream",
|
"title": "Memori Dream",
|
||||||
"description": "Atur cara Dream menyusun memori workspace ini."
|
"description": "Atur cara Dream menyusun memori ruang kerja ini."
|
||||||
},
|
},
|
||||||
"goal": {
|
"goal": {
|
||||||
"title": "Tujuan jangka panjang",
|
"title": "Tujuan jangka panjang",
|
||||||
"description": "Instruksikan agen memperlakukan ini sebagai tujuan multi-langkah yang berkelanjutan."
|
"description": "Instruksikan agen memperlakukan ini sebagai tujuan multi-langkah yang berkelanjutan."
|
||||||
},
|
},
|
||||||
"trigger": {
|
"trigger": {
|
||||||
"title": "Buat trigger lokal",
|
"title": "Buat pemicu lokal",
|
||||||
"description": "Buat trigger CLI yang terikat ke sesi chat ini."
|
"description": "Buat pemicu CLI yang terikat ke sesi chat ini."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"title": "Tampilkan bantuan",
|
"title": "Tampilkan bantuan",
|
||||||
@ -1173,7 +1202,7 @@
|
|||||||
},
|
},
|
||||||
"encoding": "Memproses…",
|
"encoding": "Memproses…",
|
||||||
"remove": "Hapus lampiran",
|
"remove": "Hapus lampiran",
|
||||||
"normalizedSizeHint": "{{orig}} → {{current}} (auto)",
|
"normalizedSizeHint": "{{orig}} → {{current}} (otomatis)",
|
||||||
"textTooLarge": "Teks pesan terlalu besar (maksimum {{max}})",
|
"textTooLarge": "Teks pesan terlalu besar (maksimum {{max}})",
|
||||||
"imageRejected": {
|
"imageRejected": {
|
||||||
"unsupported_type": "Tipe file tidak didukung",
|
"unsupported_type": "Tipe file tidak didukung",
|
||||||
@ -1190,32 +1219,35 @@
|
|||||||
"mentions": {
|
"mentions": {
|
||||||
"ariaLabel": "Aplikasi",
|
"ariaLabel": "Aplikasi",
|
||||||
"label": "Aplikasi",
|
"label": "Aplikasi",
|
||||||
"cliGroup": "App CLI",
|
"cliGroup": "Aplikasi CLI",
|
||||||
"mcpGroup": "Layanan MCP",
|
"mcpGroup": "Layanan MCP",
|
||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "Gunakan @{{name}} sebagai aplikasi CLI lokal",
|
"cliDescription": "Gunakan @{{name}} sebagai aplikasi CLI lokal",
|
||||||
"mcpDescription": "Gunakan @{{name}} sebagai server MCP"
|
"mcpDescription": "Gunakan @{{name}} sebagai server MCP",
|
||||||
|
"cliTitle": "Aplikasi CLI: {{name}}",
|
||||||
|
"mcpTitle": "Server MCP: {{name}}"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "Mode akses workspace",
|
"accessAria": "Mode akses ruang kerja",
|
||||||
"projectAria": "Pilih proyek",
|
"projectAria": "Pilih proyek",
|
||||||
"projectPlaceholder": "Pilih proyek",
|
"projectPlaceholder": "Pilih proyek",
|
||||||
"default": "Izin default",
|
"default": "Izin bawaan",
|
||||||
"defaultShort": "Default",
|
"defaultShort": "Bawaan",
|
||||||
"full": "Akses penuh",
|
"full": "Akses penuh",
|
||||||
"fullShort": "Penuh"
|
"fullShort": "Penuh"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scrollToBottom": "Gulir ke bawah",
|
"scrollToBottom": "Gulir ke bawah",
|
||||||
"loadEarlier": "Muat pesan sebelumnya",
|
"loadEarlier": "Muat pesan sebelumnya",
|
||||||
"forkedFromHistory": "Fork dari riwayat",
|
"forkedFromHistory": "Cabang dari riwayat",
|
||||||
"promptNavigator": {
|
"promptNavigator": {
|
||||||
"open": "Buka navigator prompt",
|
"open": "Buka navigasi instruksi",
|
||||||
"title": "Prompt",
|
"title": "Instruksi",
|
||||||
"search": "Cari prompt",
|
"search": "Cari instruksi",
|
||||||
"noResults": "Tidak ada prompt yang cocok.",
|
"noResults": "Tidak ada instruksi yang cocok.",
|
||||||
"jumpTo": "Lompat ke prompt: {{label}}"
|
"jumpTo": "Lompat ke instruksi: {{label}}",
|
||||||
|
"railAria": "Navigasi instruksi pengguna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1239,19 +1271,27 @@
|
|||||||
"agentActivityLiveSummary": "Berjalan… · {{reasoning}} langkah · {{tools}} panggilan alat",
|
"agentActivityLiveSummary": "Berjalan… · {{reasoning}} langkah · {{tools}} panggilan alat",
|
||||||
"agentActivityLiveToolsOnly": "Berjalan… · {{tools}} panggilan alat",
|
"agentActivityLiveToolsOnly": "Berjalan… · {{tools}} panggilan alat",
|
||||||
"imageAttachment": "Lampiran gambar",
|
"imageAttachment": "Lampiran gambar",
|
||||||
|
"videoAttachment": "Lampiran video",
|
||||||
|
"fileAttachment": "Lampiran file",
|
||||||
|
"attachmentUnavailable": "Lampiran tidak tersedia",
|
||||||
|
"dataTable": "Tabel data",
|
||||||
|
"fileEditPreparing": "Menyiapkan perubahan file…",
|
||||||
|
"openLink": "Buka tautan: {{label}}",
|
||||||
|
"openAttachment": "Buka {{name}}",
|
||||||
|
"skill": "Keterampilan: {{name}}",
|
||||||
"askAboutSelection": "Tanyakan tentang ini",
|
"askAboutSelection": "Tanyakan tentang ini",
|
||||||
"forkFromHere": "Fork",
|
"forkFromHere": "Buat cabang",
|
||||||
"copyReply": "Salin",
|
"copyReply": "Salin",
|
||||||
"copiedReply": "Disalin",
|
"copiedReply": "Disalin",
|
||||||
"turnLatencyTitle": "Waktu respons (ujung ke ujung)",
|
"turnLatencyTitle": "Waktu respons (ujung ke ujung)",
|
||||||
"fileEditViewDiff": "Lihat diff",
|
"fileEditViewDiff": "Lihat perbedaan",
|
||||||
"fileEditViewLargeDiff": "Lihat diff besar",
|
"fileEditViewLargeDiff": "Lihat perbedaan besar",
|
||||||
"fileEditDiffLineCount": "{{count}} baris",
|
"fileEditDiffLineCount": "{{count}} baris",
|
||||||
"fileEditUnchangedLinesHidden": "{{count}} baris tidak berubah disembunyikan",
|
"fileEditUnchangedLinesHidden": "{{count}} baris tidak berubah disembunyikan",
|
||||||
"fileEditShowMoreLines": "Tampilkan {{count}} baris lagi",
|
"fileEditShowMoreLines": "Tampilkan {{count}} baris lagi",
|
||||||
"fileEditShowFewerLines": "Tampilkan lebih sedikit baris",
|
"fileEditShowFewerLines": "Tampilkan lebih sedikit baris",
|
||||||
"fileEditOpenFile": "Buka file",
|
"fileEditOpenFile": "Buka file",
|
||||||
"fileEditDiffTruncated": "Diff dipotong. Buka file untuk melihat perubahan lengkap.",
|
"fileEditDiffTruncated": "Perbedaan dipotong. Buka file untuk melihat perubahan lengkap.",
|
||||||
"activityThinkingFor": "Berpikir selama {{duration}}",
|
"activityThinkingFor": "Berpikir selama {{duration}}",
|
||||||
"activityThought": "Selesai berpikir",
|
"activityThought": "Selesai berpikir",
|
||||||
"activityThoughtFor": "Selesai berpikir dalam {{duration}}",
|
"activityThoughtFor": "Selesai berpikir dalam {{duration}}",
|
||||||
@ -1279,6 +1319,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "Pratinjau file",
|
"aria": "Pratinjau file",
|
||||||
|
"breadcrumb": "Jalur file",
|
||||||
"close": "Tutup pratinjau file",
|
"close": "Tutup pratinjau file",
|
||||||
"loading": "Memuat pratinjau...",
|
"loading": "Memuat pratinjau...",
|
||||||
"failed": "Tidak dapat mempratinjau file ini.",
|
"failed": "Tidak dapat mempratinjau file ini.",
|
||||||
@ -1293,7 +1334,10 @@
|
|||||||
"copied": "Tersalin"
|
"copied": "Tersalin"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "Tutup"
|
"dismiss": "Tutup",
|
||||||
|
"close": "Tutup",
|
||||||
|
"current": "Saat ini",
|
||||||
|
"cancel": "Batal"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
@ -1301,8 +1345,8 @@
|
|||||||
"body": "Server menolak pesan terakhir karena melebihi batas ukuran. Hapus beberapa gambar atau gunakan berkas yang lebih kecil, lalu coba lagi."
|
"body": "Server menolak pesan terakhir karena melebihi batas ukuran. Hapus beberapa gambar atau gunakan berkas yang lebih kecil, lalu coba lagi."
|
||||||
},
|
},
|
||||||
"workspaceScopeRejected": {
|
"workspaceScopeRejected": {
|
||||||
"title": "Workspace tidak berubah",
|
"title": "Ruang kerja tidak berubah",
|
||||||
"body": "Gateway menolak proyek atau mode akses yang diminta, jadi Nanobot tetap memakai workspace sebelumnya."
|
"body": "Gateway menolak proyek atau mode akses yang diminta, jadi Nanobot tetap memakai ruang kerja sebelumnya."
|
||||||
},
|
},
|
||||||
"turnRejected": {
|
"turnRejected": {
|
||||||
"title": "Pesan tidak terkirim",
|
"title": "Pesan tidak terkirim",
|
||||||
@ -1311,7 +1355,7 @@
|
|||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"defaultProject": "Workspace default",
|
"defaultProject": "Ruang kerja bawaan",
|
||||||
"manual": "Tempel path",
|
"manual": "Tempel path",
|
||||||
"manualPlaceholder": "/Users/name/project",
|
"manualPlaceholder": "/Users/name/project",
|
||||||
"usePath": "Gunakan path",
|
"usePath": "Gunakan path",
|
||||||
|
|||||||
@ -38,6 +38,15 @@
|
|||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "nanobot Web UI — nanobot ワークスペースと会話します。"
|
"description": "nanobot Web UI — nanobot ワークスペースと会話します。"
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "チャットユーザーをペアリング",
|
||||||
|
"description": "チャットに表示されたペアリングコードを入力してください。",
|
||||||
|
"code": "ペアリングコード",
|
||||||
|
"matched": "{{channel}} と一致しました。接続中…",
|
||||||
|
"expiresInline": "コードの有効期限: {{expires}}。",
|
||||||
|
"queueCount": "{{count}} 件待機中",
|
||||||
|
"noMatch": "このコードに一致する保留中のリクエストはありません。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -162,9 +171,9 @@
|
|||||||
"model": "このプリセットで使用するモデルを選択します。",
|
"model": "このプリセットで使用するモデルを選択します。",
|
||||||
"configPath": "現在ゲートウェイが使用している設定ファイルです。",
|
"configPath": "現在ゲートウェイが使用している設定ファイルです。",
|
||||||
"selectedPreset": "名前付きプリセットはここでは読み取り専用です。編集するには config.json を変更してください。",
|
"selectedPreset": "名前付きプリセットはここでは読み取り専用です。編集するには config.json を変更してください。",
|
||||||
"presetModel": "Default に切り替えると、WebUI からモデルとプロバイダーを編集できます。",
|
"presetModel": "既定に切り替えると、WebUI からモデルとプロバイダーを編集できます。",
|
||||||
"density": "このブラウザーにのみ保存されます。",
|
"density": "このブラウザーにのみ保存されます。",
|
||||||
"activityMode": "既定で表示する agent アクティビティの詳細量を選択します。",
|
"activityMode": "既定で表示するエージェントアクティビティの詳細量を選択します。",
|
||||||
"fileEditDisplay": "ファイル編集アクティビティを行数または差分で表示します。",
|
"fileEditDisplay": "ファイル編集アクティビティを行数または差分で表示します。",
|
||||||
"codeWrap": "小さな画面でも長いコード行を読みやすくします。",
|
"codeWrap": "小さな画面でも長いコード行を読みやすくします。",
|
||||||
"maxResults": "各 web_search 呼び出しで返す結果数です。",
|
"maxResults": "各 web_search 呼び出しで返す結果数です。",
|
||||||
@ -172,13 +181,13 @@
|
|||||||
"jinaReader": "利用可能な場合、web_fetch に Jina Reader を使います。",
|
"jinaReader": "利用可能な場合、web_fetch に Jina Reader を使います。",
|
||||||
"imageGeneration": "画像プロバイダーが設定済みのとき、チャットで generate_image を有効にします。",
|
"imageGeneration": "画像プロバイダーが設定済みのとき、チャットで generate_image を有効にします。",
|
||||||
"imageProvider": "generate_image で使用する登録済みプロバイダーを選択します。",
|
"imageProvider": "generate_image で使用する登録済みプロバイダーを選択します。",
|
||||||
"imageProviderStatus": "画像生成は「プロバイダー」の認証情報を再利用します。",
|
"imageProviderStatus": "画像生成はプロバイダー設定の認証情報を再利用します。",
|
||||||
"imageModel": "選択した画像プロバイダーへ送信するモデル名です。",
|
"imageModel": "選択した画像プロバイダーへ送信するモデル名です。",
|
||||||
"defaultAspectRatio": "プロンプトで比率が指定されていない場合に使用します。",
|
"defaultAspectRatio": "プロンプトで比率が指定されていない場合に使用します。",
|
||||||
"defaultImageSize": "対応しているプロバイダーへ送信するサイズ指定です。",
|
"defaultImageSize": "対応しているプロバイダーへ送信するサイズ指定です。",
|
||||||
"maxImagesPerTurn": "1 回の generate_image リクエストで生成できる画像数の上限です。",
|
"maxImagesPerTurn": "1 回の generate_image リクエストで生成できる画像数の上限です。",
|
||||||
"timezone": "スケジュールと時刻を考慮する返信に使用します。",
|
"timezone": "スケジュールと時刻を考慮する返信に使用します。",
|
||||||
"localServiceAccess": "Full Access の shell コマンドが localhost サービスにアクセスできるようにします。",
|
"localServiceAccess": "フルアクセスの shell コマンドが localhost サービスにアクセスできるようにします。",
|
||||||
"webuiDefaultAccess": "プロジェクト固有の権限がない Web チャットで使用します。",
|
"webuiDefaultAccess": "プロジェクト固有の権限がない Web チャットで使用します。",
|
||||||
"securityManagedControls": "Web 取得は常にローカル、プライベート、メタデータサービスを保護します。コアチャネルの安全性は config.json で管理されます。",
|
"securityManagedControls": "Web 取得は常にローカル、プライベート、メタデータサービスを保護します。コアチャネルの安全性は config.json で管理されます。",
|
||||||
"currentModel": "新しい返信に使用します。",
|
"currentModel": "新しい返信に使用します。",
|
||||||
@ -189,7 +198,7 @@
|
|||||||
"cliAppsFilter": "アプリ、カテゴリ、機能で検索します。",
|
"cliAppsFilter": "アプリ、カテゴリ、機能で検索します。",
|
||||||
"logs": "ネイティブエンジンのログフォルダーを開きます。",
|
"logs": "ネイティブエンジンのログフォルダーを開きます。",
|
||||||
"diagnostics": "サポート用の小さなランタイムレポートを書き出します。",
|
"diagnostics": "サポート用の小さなランタイムレポートを書き出します。",
|
||||||
"localServiceAccessNative": "Full Access の shell コマンドがこの Mac 上のサービスにアクセスできるようにします。",
|
"localServiceAccessNative": "フルアクセスの shell コマンドがこの Mac 上のサービスにアクセスできるようにします。",
|
||||||
"webuiDefaultAccessNative": "プロジェクト固有の権限がないネイティブチャットで使用します。",
|
"webuiDefaultAccessNative": "プロジェクト固有の権限がないネイティブチャットで使用します。",
|
||||||
"contextWindow": "このモデル設定で使う既定のコンテキスト予算を選択します。",
|
"contextWindow": "このモデル設定で使う既定のコンテキスト予算を選択します。",
|
||||||
"transcription": "マイク入力を送信前に文字起こしします。チャネルの音声メッセージも同じ設定を使います。",
|
"transcription": "マイク入力を送信前に文字起こしします。チャネルの音声メッセージも同じ設定を使います。",
|
||||||
@ -208,12 +217,12 @@
|
|||||||
"ready": "準備完了",
|
"ready": "準備完了",
|
||||||
"privateEngine": "プライベートエンジン",
|
"privateEngine": "プライベートエンジン",
|
||||||
"unixSocket": "Unix ソケット",
|
"unixSocket": "Unix ソケット",
|
||||||
"defaultWorkspace": "デフォルトワークスペース",
|
"defaultWorkspace": "既定のワークスペース",
|
||||||
"comfortable": "標準",
|
"comfortable": "標準",
|
||||||
"compact": "コンパクト",
|
"compact": "コンパクト",
|
||||||
"auto": "自動",
|
"auto": "自動",
|
||||||
"expanded": "展開",
|
"expanded": "展開",
|
||||||
"default": "デフォルト",
|
"default": "既定",
|
||||||
"summary": "概要",
|
"summary": "概要",
|
||||||
"diff": "差分",
|
"diff": "差分",
|
||||||
"collapsedDiff": "折りたたみ差分",
|
"collapsedDiff": "折りたたみ差分",
|
||||||
@ -224,7 +233,10 @@
|
|||||||
"configured": "設定済み",
|
"configured": "設定済み",
|
||||||
"notConfigured": "未設定",
|
"notConfigured": "未設定",
|
||||||
"pending": "保留中",
|
"pending": "保留中",
|
||||||
"restartingEngine": "再起動中"
|
"restartingEngine": "再起動中",
|
||||||
|
"checking": "確認中",
|
||||||
|
"running": "実行中",
|
||||||
|
"needsSetup": "設定が必要"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "設定を読み込んでいます...",
|
"loading": "設定を読み込んでいます...",
|
||||||
@ -252,30 +264,31 @@
|
|||||||
"deleting": "削除中...",
|
"deleting": "削除中...",
|
||||||
"edit": "編集",
|
"edit": "編集",
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
|
"dismiss": "閉じる",
|
||||||
"open": "開く",
|
"open": "開く",
|
||||||
"export": "書き出す",
|
"export": "書き出す",
|
||||||
"opening": "開いています...",
|
"opening": "開いています...",
|
||||||
"exporting": "書き出しています..."
|
"exporting": "書き出しています..."
|
||||||
},
|
},
|
||||||
"byok": {
|
"byok": {
|
||||||
"description": "自分の provider キーを使います。Nanobot は現在の config から値を読み込み、設定済みの provider だけをモデルプリセットで使用できます。",
|
"description": "自分のプロバイダーキーを使います。Nanobot は現在の設定から値を読み込み、設定済みのプロバイダーだけをモデルプリセットで使用できます。",
|
||||||
"configured": "設定済み",
|
"configured": "設定済み",
|
||||||
"notConfigured": "未設定",
|
"notConfigured": "未設定",
|
||||||
"configuredSection": "設定済み",
|
"configuredSection": "設定済み",
|
||||||
"notConfiguredSection": "未設定",
|
"notConfiguredSection": "未設定",
|
||||||
"showMore": "さらに {{count}} 件表示",
|
"showMore": "さらに {{count}} 件表示",
|
||||||
"showLess": "折りたたむ",
|
"showLess": "折りたたむ",
|
||||||
"apiKey": "API key",
|
"apiKey": "API キー",
|
||||||
"apiBase": "API base",
|
"apiBase": "API ベース",
|
||||||
"apiKeyPlaceholder": "API key を入力",
|
"apiKeyPlaceholder": "API キーを入力",
|
||||||
"apiKeyConfiguredPlaceholder": "空欄のままなら現在の key を保持",
|
"apiKeyConfiguredPlaceholder": "空欄のままなら現在の key を保持",
|
||||||
"configuredKeyHint": "設定済み key",
|
"configuredKeyHint": "設定済み key",
|
||||||
"apiBasePlaceholder": "provider の既定値を使用",
|
"apiBasePlaceholder": "プロバイダーの既定値を使用",
|
||||||
"apiKeyRequired": "この provider を設定するには API key が必要です。",
|
"apiKeyRequired": "このプロバイダーを設定するには API キーが必要です。",
|
||||||
"showApiKey": "API key を表示",
|
"showApiKey": "API キーを表示",
|
||||||
"hideApiKey": "API key を隠す",
|
"hideApiKey": "API キーを隠す",
|
||||||
"noConfiguredProviders": "設定済み provider がありません",
|
"noConfiguredProviders": "設定済みプロバイダーがありません",
|
||||||
"configureFirst": "先に BYOK で provider を設定してください。",
|
"configureFirst": "先に BYOK でプロバイダーを設定してください。",
|
||||||
"openByok": "BYOK を開く",
|
"openByok": "BYOK を開く",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"ariaLabel": "BYOK 認証情報タイプ",
|
"ariaLabel": "BYOK 認証情報タイプ",
|
||||||
@ -283,20 +296,20 @@
|
|||||||
"webSearch": "ウェブ検索"
|
"webSearch": "ウェブ検索"
|
||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "検索 provider",
|
"provider": "検索プロバイダー",
|
||||||
"providerHelp": "web search ツールで使うバックエンドを選択します。",
|
"providerHelp": "Web 検索ツールで使うバックエンドを選択します。",
|
||||||
"selectProvider": "provider を選択",
|
"selectProvider": "プロバイダーを選択",
|
||||||
"credentials": "認証情報",
|
"credentials": "認証情報",
|
||||||
"noCredentialRequired": "key は不要",
|
"noCredentialRequired": "key は不要",
|
||||||
"noCredentialHelp": "DuckDuckGo は API key を保存せずに使えます。",
|
"noCredentialHelp": "DuckDuckGo は API キーを保存せずに使えます。",
|
||||||
"apiKeyHelp": "config に保存され、保存後はマスク表示されます。",
|
"apiKeyHelp": "config に保存され、保存後はマスク表示されます。",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "ベース URL",
|
||||||
"baseUrlHelp": "SearXNG には自分のインスタンス URL が必要です。",
|
"baseUrlHelp": "SearXNG には自分のインスタンス URL が必要です。",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "この検索 provider には API key が必要です。",
|
"apiKeyRequired": "この検索プロバイダーには API キーが必要です。",
|
||||||
"baseUrlRequired": "SearXNG には Base URL が必要です。",
|
"baseUrlRequired": "SearXNG にはベース URL が必要です。",
|
||||||
"missingCredential": "保存する前に必要な認証情報を入力してください。",
|
"missingCredential": "保存する前に必要な認証情報を入力してください。",
|
||||||
"saveHint": "変更は新しい web search リクエストに適用されます。"
|
"saveHint": "変更は新しい Web 検索リクエストに適用されます。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -310,13 +323,13 @@
|
|||||||
"workspace": "ワークスペース"
|
"workspace": "ワークスペース"
|
||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Token アクティビティ",
|
"title": "トークンアクティビティ",
|
||||||
"shortTitle": "Token Usage",
|
"shortTitle": "トークン使用量",
|
||||||
"subtitle": "直近 12 か月にプロバイダーが報告した使用量。",
|
"subtitle": "直近 12 か月にプロバイダーが報告したトークン使用量。",
|
||||||
"empty": "新しいモデル返信の後に token アクティビティが表示されます。",
|
"empty": "新しいモデル返信の後にトークンアクティビティが表示されます。",
|
||||||
"totalTokens": "累計 Token 数",
|
"totalTokens": "累計トークン数",
|
||||||
"peakTokens": "ピーク Token 数",
|
"peakTokens": "ピークトークン数",
|
||||||
"thirtyDayTokens": "30 日 Token 数",
|
"thirtyDayTokens": "30 日間のトークン数",
|
||||||
"currentStreak": "現在の連続日数",
|
"currentStreak": "現在の連続日数",
|
||||||
"longestStreak": "最長連続日数",
|
"longestStreak": "最長連続日数",
|
||||||
"daysValue": "{{count}} 日",
|
"daysValue": "{{count}} 日",
|
||||||
@ -325,7 +338,7 @@
|
|||||||
"requests": "リクエスト",
|
"requests": "リクエスト",
|
||||||
"estimated": "推定",
|
"estimated": "推定",
|
||||||
"includesEstimates": "推定を含む",
|
"includesEstimates": "推定を含む",
|
||||||
"cellTitle": "{{date}}: {{tokens}} tokens, {{requests}} 件のリクエスト",
|
"cellTitle": "{{date}}: {{tokens}} トークン、{{requests}} 件のリクエスト",
|
||||||
"sources": {
|
"sources": {
|
||||||
"user": "チャット",
|
"user": "チャット",
|
||||||
"api": "API",
|
"api": "API",
|
||||||
@ -358,9 +371,19 @@
|
|||||||
"selectProvider": "プロバイダーを選択",
|
"selectProvider": "プロバイダーを選択",
|
||||||
"selectAspect": "比率を選択",
|
"selectAspect": "比率を選択",
|
||||||
"selectSize": "サイズを選択",
|
"selectSize": "サイズを選択",
|
||||||
|
"selectModel": "画像モデルを選択",
|
||||||
|
"searchOrTypeModel": "モデル ID を検索または入力",
|
||||||
|
"typeModelId": "このプロバイダーが対応するモデル ID を入力してください。",
|
||||||
"configureProvider": "プロバイダーを設定",
|
"configureProvider": "プロバイダーを設定",
|
||||||
"missingCredential": "画像生成を有効にする前に、このプロバイダーを設定してください。"
|
"missingCredential": "画像生成を有効にする前に、このプロバイダーを設定してください。"
|
||||||
},
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "プロバイダーサポート",
|
||||||
|
"providerInstallOnSave": "このプロバイダーを保存すると、必要なサポートが自動的にインストールされます。",
|
||||||
|
"searchSupport": "検索プロバイダーサポート",
|
||||||
|
"searchInstallOnSave": "保存時に Olostep のサポートが自動的にインストールされます。",
|
||||||
|
"installing": "サポートをインストール中..."
|
||||||
|
},
|
||||||
"models": {
|
"models": {
|
||||||
"selectModel": "モデルを選択",
|
"selectModel": "モデルを選択",
|
||||||
"addConfiguration": "設定を追加",
|
"addConfiguration": "設定を追加",
|
||||||
@ -383,7 +406,7 @@
|
|||||||
"advancedOptions": "詳細オプション",
|
"advancedOptions": "詳細オプション",
|
||||||
"advancedSummary": "コンテキスト {{context}} · 最大 {{max}} トークン",
|
"advancedSummary": "コンテキスト {{context}} · 最大 {{max}} トークン",
|
||||||
"maxTokens": "最大出力トークン",
|
"maxTokens": "最大出力トークン",
|
||||||
"temperature": "Temperature",
|
"temperature": "温度",
|
||||||
"reasoningEffort": "推論の強度",
|
"reasoningEffort": "推論の強度",
|
||||||
"convertTitle": "現在のモデル設定を変換",
|
"convertTitle": "現在のモデル設定を変換",
|
||||||
"convertHelp": "既存のプライマリモデルとフォールバックモデルをプリセットに変換し、ここで順序を管理できるようにします。",
|
"convertHelp": "既存のプライマリモデルとフォールバックモデルをプリセットに変換し、ここで順序を管理できるようにします。",
|
||||||
@ -473,9 +496,9 @@
|
|||||||
"serverUrl": "URL",
|
"serverUrl": "URL",
|
||||||
"transport": "トランスポート",
|
"transport": "トランスポート",
|
||||||
"command": "コマンド",
|
"command": "コマンド",
|
||||||
"args": "Args JSON",
|
"args": "引数 JSON",
|
||||||
"headers": "Headers JSON",
|
"headers": "ヘッダー JSON",
|
||||||
"env": "Env JSON",
|
"env": "環境変数 JSON",
|
||||||
"timeout": "ツールのタイムアウト",
|
"timeout": "ツールのタイムアウト",
|
||||||
"advancedOptions": "詳細オプション",
|
"advancedOptions": "詳細オプション",
|
||||||
"hideAdvanced": "詳細を隠す",
|
"hideAdvanced": "詳細を隠す",
|
||||||
@ -503,6 +526,7 @@
|
|||||||
"statusMissingCredentials": "キーが必要",
|
"statusMissingCredentials": "キーが必要",
|
||||||
"statusMissingDependency": "依存関係が必要",
|
"statusMissingDependency": "依存関係が必要",
|
||||||
"statusComingSoon": "近日公開",
|
"statusComingSoon": "近日公開",
|
||||||
|
"comingSoon": "近日公開",
|
||||||
"statusNotInstalled": "未有効",
|
"statusNotInstalled": "未有効",
|
||||||
"toolScope": "ツール",
|
"toolScope": "ツール",
|
||||||
"allTools": "すべて",
|
"allTools": "すべて",
|
||||||
@ -565,6 +589,8 @@
|
|||||||
"advanced": "詳細設定",
|
"advanced": "詳細設定",
|
||||||
"checkAndEnable": "確認して有効化",
|
"checkAndEnable": "確認して有効化",
|
||||||
"checkConnection": "接続を確認",
|
"checkConnection": "接続を確認",
|
||||||
|
"connectionChecks": "接続チェック",
|
||||||
|
"open": "開く",
|
||||||
"checkedAndEnabled": "確認して有効化しました。",
|
"checkedAndEnabled": "確認して有効化しました。",
|
||||||
"checking": "確認中...",
|
"checking": "確認中...",
|
||||||
"checkOnly": "確認のみ",
|
"checkOnly": "確認のみ",
|
||||||
@ -660,6 +686,8 @@
|
|||||||
"protected": "保護済み",
|
"protected": "保護済み",
|
||||||
"editTitle": "自動タスクを編集",
|
"editTitle": "自動タスクを編集",
|
||||||
"save": "保存",
|
"save": "保存",
|
||||||
|
"commandCopied": "コピーしました",
|
||||||
|
"copyCommand": "コピー",
|
||||||
"deleteTitle": "自動タスクを削除",
|
"deleteTitle": "自動タスクを削除",
|
||||||
"deleteDescription": "{{name}} を cron ストアから削除します。過去のチャットメッセージはセッションに残ります。",
|
"deleteDescription": "{{name}} を cron ストアから削除します。過去のチャットメッセージはセッションに残ります。",
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
@ -719,6 +747,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "名前",
|
"name": "名前",
|
||||||
"message": "メッセージ",
|
"message": "メッセージ",
|
||||||
|
"command": "コマンド",
|
||||||
"scheduleType": "スケジュール種別",
|
"scheduleType": "スケジュール種別",
|
||||||
"every": "間隔",
|
"every": "間隔",
|
||||||
"unit": "単位",
|
"unit": "単位",
|
||||||
@ -753,7 +782,7 @@
|
|||||||
"signInAgain": "再度サインイン",
|
"signInAgain": "再度サインイン",
|
||||||
"signOut": "サインアウト",
|
"signOut": "サインアウト",
|
||||||
"signedInAs": "{{account}} としてサインイン済み",
|
"signedInAs": "{{account}} としてサインイン済み",
|
||||||
"signInHelp": "このデバイスからサインインします。API key は config に保存されません。",
|
"signInHelp": "このデバイスからサインインします。API キーは設定に保存されません。",
|
||||||
"remoteSignInHelp": "「サインイン」を選択して自分のコンピューターで xAI を開き、サインイン後に表示される認証コードを貼り付けてください。",
|
"remoteSignInHelp": "「サインイン」を選択して自分のコンピューターで xAI を開き、サインイン後に表示される認証コードを貼り付けてください。",
|
||||||
"codexRemoteSignInHelp": "このブラウザーでサインインし、localhost の完全なコールバック URL を nanobot に貼り付けてください。",
|
"codexRemoteSignInHelp": "このブラウザーでサインインし、localhost の完全なコールバック URL を nanobot に貼り付けてください。",
|
||||||
"signInRequired": "サインインが必要です",
|
"signInRequired": "サインインが必要です",
|
||||||
@ -877,34 +906,34 @@
|
|||||||
"actions": "「{{title}}」のトピック操作",
|
"actions": "「{{title}}」のトピック操作",
|
||||||
"newInProject": "「{{project}}」で新しいトピックを開始",
|
"newInProject": "「{{project}}」で新しいトピックを開始",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent running",
|
"running": "エージェント実行中",
|
||||||
"complete": "Agent finished",
|
"complete": "エージェント完了",
|
||||||
"updated": "New activity"
|
"updated": "新しいアクティビティ"
|
||||||
},
|
},
|
||||||
"pin": "Pin",
|
"pin": "ピン留め",
|
||||||
"unpin": "Unpin",
|
"unpin": "ピン留めを解除",
|
||||||
"rename": "Rename",
|
"rename": "名前を変更",
|
||||||
"renameTitle": "トピック名を変更",
|
"renameTitle": "トピック名を変更",
|
||||||
"renameDescription": "このトピックのサイドバー表示名を選択します。",
|
"renameDescription": "このトピックのサイドバー表示名を選択します。",
|
||||||
"renamePlaceholder": "トピック名",
|
"renamePlaceholder": "トピック名",
|
||||||
"renameProjectTitle": "Rename project",
|
"renameProjectTitle": "プロジェクト名を変更",
|
||||||
"renameProjectDescription": "Choose a local sidebar name for this project.",
|
"renameProjectDescription": "このプロジェクトのサイドバー表示名を選択します。",
|
||||||
"renameProjectPlaceholder": "Project name",
|
"renameProjectPlaceholder": "プロジェクト名",
|
||||||
"renameSave": "Save",
|
"renameSave": "保存",
|
||||||
"archive": "Archive",
|
"archive": "アーカイブ",
|
||||||
"unarchive": "Unarchive",
|
"unarchive": "アーカイブを解除",
|
||||||
"showArchived": "Show archived",
|
"showArchived": "アーカイブ済みを表示",
|
||||||
"hideArchived": "Hide archived",
|
"hideArchived": "アーカイブ済みを隠す",
|
||||||
"delete": "削除",
|
"delete": "削除",
|
||||||
"newChat": "新しいトピック",
|
"newChat": "新しいトピック",
|
||||||
"groups": {
|
"groups": {
|
||||||
"pinned": "Pinned",
|
"pinned": "ピン留め",
|
||||||
"all": "トピック",
|
"all": "トピック",
|
||||||
"projects": "Projects",
|
"projects": "プロジェクト",
|
||||||
"today": "Today",
|
"today": "今日",
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "昨日",
|
||||||
"earlier": "Earlier",
|
"earlier": "以前",
|
||||||
"archived": "Archived"
|
"archived": "アーカイブ済み"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deleteConfirm": {
|
"deleteConfirm": {
|
||||||
@ -1109,7 +1138,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "現在のタスクを停止",
|
"title": "現在のタスクを停止",
|
||||||
"description": "このチャットで実行中の agent ターンをキャンセルします。"
|
"description": "このチャットで実行中のエージェントのターンをキャンセルします。"
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "nanobot を再起動",
|
"title": "nanobot を再起動",
|
||||||
@ -1117,7 +1146,7 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "ステータスを表示",
|
"title": "ステータスを表示",
|
||||||
"description": "ランタイム、provider、channel の状態を表示します。"
|
"description": "ランタイム、プロバイダー、チャンネルの状態を表示します。"
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "モデル",
|
"title": "モデル",
|
||||||
@ -1195,7 +1224,9 @@
|
|||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "@{{name}} をローカル CLI アプリとして使用",
|
"cliDescription": "@{{name}} をローカル CLI アプリとして使用",
|
||||||
"mcpDescription": "@{{name}} を MCP サーバーとして使用"
|
"mcpDescription": "@{{name}} を MCP サーバーとして使用",
|
||||||
|
"cliTitle": "CLI アプリ: {{name}}",
|
||||||
|
"mcpTitle": "MCP サーバー: {{name}}"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "ワークスペースのアクセスモード",
|
"accessAria": "ワークスペースのアクセスモード",
|
||||||
@ -1215,7 +1246,8 @@
|
|||||||
"title": "プロンプト",
|
"title": "プロンプト",
|
||||||
"search": "プロンプトを検索",
|
"search": "プロンプトを検索",
|
||||||
"noResults": "一致するプロンプトがありません。",
|
"noResults": "一致するプロンプトがありません。",
|
||||||
"jumpTo": "プロンプトへ移動: {{label}}"
|
"jumpTo": "プロンプトへ移動: {{label}}",
|
||||||
|
"railAria": "ユーザープロンプトのナビゲーション"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1239,6 +1271,14 @@
|
|||||||
"agentActivityLiveSummary": "実行中… · {{reasoning}} ステップ · ツール呼び出し {{tools}} 回",
|
"agentActivityLiveSummary": "実行中… · {{reasoning}} ステップ · ツール呼び出し {{tools}} 回",
|
||||||
"agentActivityLiveToolsOnly": "実行中… · ツール呼び出し {{tools}} 回",
|
"agentActivityLiveToolsOnly": "実行中… · ツール呼び出し {{tools}} 回",
|
||||||
"imageAttachment": "画像の添付",
|
"imageAttachment": "画像の添付",
|
||||||
|
"videoAttachment": "動画の添付",
|
||||||
|
"fileAttachment": "ファイルの添付",
|
||||||
|
"attachmentUnavailable": "添付ファイルを利用できません",
|
||||||
|
"dataTable": "データテーブル",
|
||||||
|
"fileEditPreparing": "ファイル編集を準備中…",
|
||||||
|
"openLink": "リンクを開く: {{label}}",
|
||||||
|
"openAttachment": "開く: {{name}}",
|
||||||
|
"skill": "スキル: {{name}}",
|
||||||
"askAboutSelection": "この内容について質問",
|
"askAboutSelection": "この内容について質問",
|
||||||
"forkFromHere": "分岐",
|
"forkFromHere": "分岐",
|
||||||
"copyReply": "コピー",
|
"copyReply": "コピー",
|
||||||
@ -1279,6 +1319,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "ファイルプレビュー",
|
"aria": "ファイルプレビュー",
|
||||||
|
"breadcrumb": "ファイルパス",
|
||||||
"close": "ファイルプレビューを閉じる",
|
"close": "ファイルプレビューを閉じる",
|
||||||
"loading": "プレビューを読み込み中...",
|
"loading": "プレビューを読み込み中...",
|
||||||
"failed": "このファイルをプレビューできませんでした。",
|
"failed": "このファイルをプレビューできませんでした。",
|
||||||
@ -1293,7 +1334,10 @@
|
|||||||
"copied": "コピーしました"
|
"copied": "コピーしました"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "閉じる"
|
"dismiss": "閉じる",
|
||||||
|
"close": "閉じる",
|
||||||
|
"current": "現在",
|
||||||
|
"cancel": "キャンセル"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
|
|||||||
@ -38,6 +38,15 @@
|
|||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "nanobot 웹 UI — nanobot 작업공간과 대화하세요."
|
"description": "nanobot 웹 UI — nanobot 작업공간과 대화하세요."
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "채팅 사용자 연결",
|
||||||
|
"description": "채팅에 표시된 연결 코드를 입력하세요.",
|
||||||
|
"code": "연결 코드",
|
||||||
|
"matched": "{{channel}} 일치. 연결 중...",
|
||||||
|
"expiresInline": "코드 만료: {{expires}}.",
|
||||||
|
"queueCount": "{{count}}개 대기 중",
|
||||||
|
"noMatch": "이 코드와 일치하는 대기 중인 요청이 없습니다."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -162,10 +171,10 @@
|
|||||||
"model": "이 프리셋에서 사용할 모델을 선택하세요.",
|
"model": "이 프리셋에서 사용할 모델을 선택하세요.",
|
||||||
"configPath": "현재 게이트웨이가 사용하는 설정 파일입니다.",
|
"configPath": "현재 게이트웨이가 사용하는 설정 파일입니다.",
|
||||||
"selectedPreset": "이름 있는 프리셋은 여기서 읽기 전용입니다. config.json에서 편집하세요.",
|
"selectedPreset": "이름 있는 프리셋은 여기서 읽기 전용입니다. config.json에서 편집하세요.",
|
||||||
"presetModel": "Default로 전환하면 WebUI에서 모델과 제공자를 편집할 수 있습니다.",
|
"presetModel": "기본값으로 전환하면 WebUI에서 모델과 제공자를 편집할 수 있습니다.",
|
||||||
"density": "이 브라우저에만 저장됩니다.",
|
"density": "이 브라우저에만 저장됩니다.",
|
||||||
"activityMode": "기본으로 표시할 agent 활동 세부 수준을 선택합니다.",
|
"activityMode": "기본으로 표시할 에이전트 활동 세부 수준을 선택합니다.",
|
||||||
"fileEditDisplay": "파일 편집 활동을 줄 수 또는 diff로 표시할지 선택합니다.",
|
"fileEditDisplay": "파일 편집 활동을 줄 수 또는 변경 사항으로 표시할지 선택합니다.",
|
||||||
"codeWrap": "작은 화면에서도 긴 코드 줄을 읽기 쉽게 유지합니다.",
|
"codeWrap": "작은 화면에서도 긴 코드 줄을 읽기 쉽게 유지합니다.",
|
||||||
"maxResults": "각 web_search 호출에서 반환되는 결과 수입니다.",
|
"maxResults": "각 web_search 호출에서 반환되는 결과 수입니다.",
|
||||||
"timeout": "검색 제공자 요청이 타임아웃되기 전의 초입니다.",
|
"timeout": "검색 제공자 요청이 타임아웃되기 전의 초입니다.",
|
||||||
@ -178,8 +187,8 @@
|
|||||||
"defaultImageSize": "지원하는 제공자에 보낼 크기 힌트입니다.",
|
"defaultImageSize": "지원하는 제공자에 보낼 크기 힌트입니다.",
|
||||||
"maxImagesPerTurn": "한 번의 generate_image 요청에서 생성할 수 있는 이미지 상한입니다.",
|
"maxImagesPerTurn": "한 번의 generate_image 요청에서 생성할 수 있는 이미지 상한입니다.",
|
||||||
"timezone": "일정과 시간 인식 답변에 사용됩니다.",
|
"timezone": "일정과 시간 인식 답변에 사용됩니다.",
|
||||||
"localServiceAccess": "Full Access shell 명령이 localhost 서비스에 접근할 수 있게 합니다.",
|
"localServiceAccess": "전체 접근 권한 shell 명령이 localhost 서비스에 접근할 수 있게 합니다.",
|
||||||
"webuiDefaultAccess": "프로젝트별 권한이 없는 Web 채팅에 사용됩니다.",
|
"webuiDefaultAccess": "프로젝트별 권한이 없는 웹 채팅에 사용됩니다.",
|
||||||
"securityManagedControls": "웹 가져오기는 항상 로컬, 사설, 메타데이터 서비스를 보호합니다. 핵심 채널 보안은 config.json에서 관리됩니다.",
|
"securityManagedControls": "웹 가져오기는 항상 로컬, 사설, 메타데이터 서비스를 보호합니다. 핵심 채널 보안은 config.json에서 관리됩니다.",
|
||||||
"currentModel": "새 응답에 사용됩니다.",
|
"currentModel": "새 응답에 사용됩니다.",
|
||||||
"selectedModelProvider": "선택한 모델에 의해 설정됩니다.",
|
"selectedModelProvider": "선택한 모델에 의해 설정됩니다.",
|
||||||
@ -189,12 +198,12 @@
|
|||||||
"cliAppsFilter": "앱, 카테고리 또는 기능으로 검색합니다.",
|
"cliAppsFilter": "앱, 카테고리 또는 기능으로 검색합니다.",
|
||||||
"logs": "네이티브 엔진 로그 폴더를 엽니다.",
|
"logs": "네이티브 엔진 로그 폴더를 엽니다.",
|
||||||
"diagnostics": "지원용 작은 런타임 보고서를 내보냅니다.",
|
"diagnostics": "지원용 작은 런타임 보고서를 내보냅니다.",
|
||||||
"localServiceAccessNative": "Full Access shell 명령이 이 Mac의 서비스에 접근할 수 있게 합니다.",
|
"localServiceAccessNative": "전체 접근 권한 shell 명령이 이 Mac의 서비스에 접근할 수 있게 합니다.",
|
||||||
"webuiDefaultAccessNative": "프로젝트별 권한이 없는 네이티브 채팅에 사용됩니다.",
|
"webuiDefaultAccessNative": "프로젝트별 권한이 없는 네이티브 채팅에 사용됩니다.",
|
||||||
"contextWindow": "이 모델 구성의 기본 컨텍스트 예산을 선택합니다.",
|
"contextWindow": "이 모델 구성의 기본 컨텍스트 예산을 선택합니다.",
|
||||||
"transcription": "마이크 입력을 보내기 전에 텍스트로 변환합니다. 채널 음성 메시지도 같은 설정을 사용합니다.",
|
"transcription": "마이크 입력을 보내기 전에 텍스트로 변환합니다. 채널 음성 메시지도 같은 설정을 사용합니다.",
|
||||||
"transcriptionProvider": "Providers에 저장된 해당 제공자의 인증 정보를 사용합니다.",
|
"transcriptionProvider": "제공자 설정에 저장된 해당 제공자의 인증 정보를 사용합니다.",
|
||||||
"transcriptionProviderStatus": "API 키는 transcription 설정이 아니라 providers 아래에 유지됩니다.",
|
"transcriptionProviderStatus": "API 키는 음성 변환 설정이 아니라 제공자 설정에 유지됩니다.",
|
||||||
"transcriptionModel": "제공자가 사용자 지정 모델 ID를 요구하지 않으면 해석된 기본값을 사용하세요.",
|
"transcriptionModel": "제공자가 사용자 지정 모델 ID를 요구하지 않으면 해석된 기본값을 사용하세요.",
|
||||||
"transcriptionLanguage": "en, zh, ja, ko 같은 선택적 ISO-639 힌트입니다."
|
"transcriptionLanguage": "en, zh, ja, ko 같은 선택적 ISO-639 힌트입니다."
|
||||||
},
|
},
|
||||||
@ -215,8 +224,8 @@
|
|||||||
"expanded": "펼침",
|
"expanded": "펼침",
|
||||||
"default": "기본값",
|
"default": "기본값",
|
||||||
"summary": "요약",
|
"summary": "요약",
|
||||||
"diff": "Diff",
|
"diff": "변경 사항",
|
||||||
"collapsedDiff": "접힌 diff",
|
"collapsedDiff": "접힌 변경 사항",
|
||||||
"on": "켜짐",
|
"on": "켜짐",
|
||||||
"off": "꺼짐",
|
"off": "꺼짐",
|
||||||
"defaultPermission": "기본 권한",
|
"defaultPermission": "기본 권한",
|
||||||
@ -224,7 +233,10 @@
|
|||||||
"configured": "구성됨",
|
"configured": "구성됨",
|
||||||
"notConfigured": "미구성",
|
"notConfigured": "미구성",
|
||||||
"pending": "대기 중",
|
"pending": "대기 중",
|
||||||
"restartingEngine": "재시작 중"
|
"restartingEngine": "재시작 중",
|
||||||
|
"checking": "확인 중",
|
||||||
|
"running": "실행 중",
|
||||||
|
"needsSetup": "설정 필요"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "설정을 불러오는 중...",
|
"loading": "설정을 불러오는 중...",
|
||||||
@ -252,30 +264,31 @@
|
|||||||
"deleting": "삭제 중...",
|
"deleting": "삭제 중...",
|
||||||
"edit": "편집",
|
"edit": "편집",
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
|
"dismiss": "닫기",
|
||||||
"open": "열기",
|
"open": "열기",
|
||||||
"export": "내보내기",
|
"export": "내보내기",
|
||||||
"opening": "여는 중...",
|
"opening": "여는 중...",
|
||||||
"exporting": "내보내는 중..."
|
"exporting": "내보내는 중..."
|
||||||
},
|
},
|
||||||
"byok": {
|
"byok": {
|
||||||
"description": "직접 provider 키를 가져옵니다. Nanobot은 현재 config에서 값을 읽고, 설정된 provider만 모델 프리셋에서 사용할 수 있습니다.",
|
"description": "직접 제공자 키를 사용합니다. Nanobot은 현재 구성에서 값을 읽고, 설정된 제공자만 모델 프리셋에서 사용할 수 있습니다.",
|
||||||
"configured": "설정됨",
|
"configured": "설정됨",
|
||||||
"notConfigured": "설정 안 됨",
|
"notConfigured": "설정 안 됨",
|
||||||
"configuredSection": "설정됨",
|
"configuredSection": "설정됨",
|
||||||
"notConfiguredSection": "설정 안 됨",
|
"notConfiguredSection": "설정 안 됨",
|
||||||
"showMore": "{{count}}개 더 보기",
|
"showMore": "{{count}}개 더 보기",
|
||||||
"showLess": "접기",
|
"showLess": "접기",
|
||||||
"apiKey": "API key",
|
"apiKey": "API 키",
|
||||||
"apiBase": "API base",
|
"apiBase": "API 기본 주소",
|
||||||
"apiKeyPlaceholder": "API key 입력",
|
"apiKeyPlaceholder": "API 키 입력",
|
||||||
"apiKeyConfiguredPlaceholder": "비워 두면 현재 key 유지",
|
"apiKeyConfiguredPlaceholder": "비워 두면 현재 key 유지",
|
||||||
"configuredKeyHint": "설정된 key",
|
"configuredKeyHint": "설정된 key",
|
||||||
"apiBasePlaceholder": "provider 기본값 사용",
|
"apiBasePlaceholder": "제공자 기본값 사용",
|
||||||
"apiKeyRequired": "이 provider를 설정하려면 API key가 필요합니다.",
|
"apiKeyRequired": "이 제공자를 설정하려면 API 키가 필요합니다.",
|
||||||
"showApiKey": "API key 표시",
|
"showApiKey": "API 키 표시",
|
||||||
"hideApiKey": "API key 숨기기",
|
"hideApiKey": "API 키 숨기기",
|
||||||
"noConfiguredProviders": "설정된 provider가 없습니다",
|
"noConfiguredProviders": "설정된 제공자가 없습니다",
|
||||||
"configureFirst": "먼저 BYOK에서 provider를 설정하세요.",
|
"configureFirst": "먼저 BYOK에서 제공자를 설정하세요.",
|
||||||
"openByok": "BYOK 열기",
|
"openByok": "BYOK 열기",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"ariaLabel": "BYOK 자격 증명 유형",
|
"ariaLabel": "BYOK 자격 증명 유형",
|
||||||
@ -283,20 +296,20 @@
|
|||||||
"webSearch": "웹 검색"
|
"webSearch": "웹 검색"
|
||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "검색 provider",
|
"provider": "검색 제공자",
|
||||||
"providerHelp": "web search 도구가 사용할 백엔드를 선택합니다.",
|
"providerHelp": "웹 검색 도구가 사용할 백엔드를 선택합니다.",
|
||||||
"selectProvider": "provider 선택",
|
"selectProvider": "제공자 선택",
|
||||||
"credentials": "자격 증명",
|
"credentials": "자격 증명",
|
||||||
"noCredentialRequired": "key 필요 없음",
|
"noCredentialRequired": "key 필요 없음",
|
||||||
"noCredentialHelp": "DuckDuckGo는 API key를 저장하지 않고 사용할 수 있습니다.",
|
"noCredentialHelp": "DuckDuckGo는 API 키를 저장하지 않고 사용할 수 있습니다.",
|
||||||
"apiKeyHelp": "config에 저장되며 저장 후에는 마스킹되어 표시됩니다.",
|
"apiKeyHelp": "config에 저장되며 저장 후에는 마스킹되어 표시됩니다.",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "기본 URL",
|
||||||
"baseUrlHelp": "SearXNG에는 자체 인스턴스 URL이 필요합니다.",
|
"baseUrlHelp": "SearXNG에는 자체 인스턴스 URL이 필요합니다.",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "이 검색 provider에는 API key가 필요합니다.",
|
"apiKeyRequired": "이 검색 제공자에는 API 키가 필요합니다.",
|
||||||
"baseUrlRequired": "SearXNG에는 Base URL이 필요합니다.",
|
"baseUrlRequired": "SearXNG에는 기본 URL이 필요합니다.",
|
||||||
"missingCredential": "저장하기 전에 필요한 자격 증명을 입력하세요.",
|
"missingCredential": "저장하기 전에 필요한 자격 증명을 입력하세요.",
|
||||||
"saveHint": "변경 사항은 새 web search 요청에 적용됩니다."
|
"saveHint": "변경 사항은 새 웹 검색 요청에 적용됩니다."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -310,13 +323,13 @@
|
|||||||
"workspace": "작업공간"
|
"workspace": "작업공간"
|
||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Token 활동",
|
"title": "토큰 활동",
|
||||||
"shortTitle": "Token Usage",
|
"shortTitle": "토큰 사용량",
|
||||||
"subtitle": "최근 12개월 동안 제공자가 보고한 사용량입니다.",
|
"subtitle": "최근 12개월 동안 제공자가 보고한 사용량입니다.",
|
||||||
"empty": "새 모델 응답 이후 token 활동이 표시됩니다.",
|
"empty": "새 모델 응답 이후 토큰 활동이 표시됩니다.",
|
||||||
"totalTokens": "누적 Token 수",
|
"totalTokens": "누적 토큰 수",
|
||||||
"peakTokens": "최고 Token 수",
|
"peakTokens": "최고 토큰 수",
|
||||||
"thirtyDayTokens": "30일 Token 수",
|
"thirtyDayTokens": "30일 토큰 수",
|
||||||
"currentStreak": "현재 연속 일수",
|
"currentStreak": "현재 연속 일수",
|
||||||
"longestStreak": "최장 연속 일수",
|
"longestStreak": "최장 연속 일수",
|
||||||
"daysValue": "{{count}}일",
|
"daysValue": "{{count}}일",
|
||||||
@ -325,7 +338,7 @@
|
|||||||
"requests": "요청",
|
"requests": "요청",
|
||||||
"estimated": "추정",
|
"estimated": "추정",
|
||||||
"includesEstimates": "추정 포함",
|
"includesEstimates": "추정 포함",
|
||||||
"cellTitle": "{{date}}: {{tokens}} tokens, 요청 {{requests}}회",
|
"cellTitle": "{{date}}: {{tokens}} 토큰, 요청 {{requests}}회",
|
||||||
"sources": {
|
"sources": {
|
||||||
"user": "채팅",
|
"user": "채팅",
|
||||||
"api": "API",
|
"api": "API",
|
||||||
@ -358,9 +371,19 @@
|
|||||||
"selectProvider": "제공자 선택",
|
"selectProvider": "제공자 선택",
|
||||||
"selectAspect": "비율 선택",
|
"selectAspect": "비율 선택",
|
||||||
"selectSize": "크기 선택",
|
"selectSize": "크기 선택",
|
||||||
|
"selectModel": "이미지 모델 선택",
|
||||||
|
"searchOrTypeModel": "모델 ID 검색 또는 입력",
|
||||||
|
"typeModelId": "이 제공자가 지원하는 모델 ID를 입력하세요.",
|
||||||
"configureProvider": "제공자 구성",
|
"configureProvider": "제공자 구성",
|
||||||
"missingCredential": "이미지 생성을 활성화하기 전에 이 제공자를 구성하세요."
|
"missingCredential": "이미지 생성을 활성화하기 전에 이 제공자를 구성하세요."
|
||||||
},
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "제공자 지원",
|
||||||
|
"providerInstallOnSave": "이 제공자를 저장하면 필요한 지원이 자동으로 설치됩니다.",
|
||||||
|
"searchSupport": "검색 제공자 지원",
|
||||||
|
"searchInstallOnSave": "저장하면 Olostep 지원이 자동으로 설치됩니다.",
|
||||||
|
"installing": "지원 설치 중..."
|
||||||
|
},
|
||||||
"models": {
|
"models": {
|
||||||
"selectModel": "모델 선택",
|
"selectModel": "모델 선택",
|
||||||
"addConfiguration": "구성 추가",
|
"addConfiguration": "구성 추가",
|
||||||
@ -383,7 +406,7 @@
|
|||||||
"advancedOptions": "고급 옵션",
|
"advancedOptions": "고급 옵션",
|
||||||
"advancedSummary": "컨텍스트 {{context}} · 최대 {{max}} 토큰",
|
"advancedSummary": "컨텍스트 {{context}} · 최대 {{max}} 토큰",
|
||||||
"maxTokens": "최대 출력 토큰",
|
"maxTokens": "최대 출력 토큰",
|
||||||
"temperature": "Temperature",
|
"temperature": "온도",
|
||||||
"reasoningEffort": "추론 강도",
|
"reasoningEffort": "추론 강도",
|
||||||
"convertTitle": "현재 모델 설정 변환",
|
"convertTitle": "현재 모델 설정 변환",
|
||||||
"convertHelp": "기존 기본 및 대체 모델을 프리셋으로 변환하여 여기서 순서를 관리합니다.",
|
"convertHelp": "기존 기본 및 대체 모델을 프리셋으로 변환하여 여기서 순서를 관리합니다.",
|
||||||
@ -473,9 +496,9 @@
|
|||||||
"serverUrl": "URL",
|
"serverUrl": "URL",
|
||||||
"transport": "전송 방식",
|
"transport": "전송 방식",
|
||||||
"command": "명령",
|
"command": "명령",
|
||||||
"args": "Args JSON",
|
"args": "인자 JSON",
|
||||||
"headers": "Headers JSON",
|
"headers": "헤더 JSON",
|
||||||
"env": "Env JSON",
|
"env": "환경 변수 JSON",
|
||||||
"timeout": "도구 제한 시간",
|
"timeout": "도구 제한 시간",
|
||||||
"advancedOptions": "고급 옵션",
|
"advancedOptions": "고급 옵션",
|
||||||
"hideAdvanced": "고급 숨기기",
|
"hideAdvanced": "고급 숨기기",
|
||||||
@ -503,6 +526,7 @@
|
|||||||
"statusMissingCredentials": "키 필요",
|
"statusMissingCredentials": "키 필요",
|
||||||
"statusMissingDependency": "의존성 필요",
|
"statusMissingDependency": "의존성 필요",
|
||||||
"statusComingSoon": "곧 제공",
|
"statusComingSoon": "곧 제공",
|
||||||
|
"comingSoon": "곧 제공",
|
||||||
"statusNotInstalled": "비활성",
|
"statusNotInstalled": "비활성",
|
||||||
"toolScope": "도구",
|
"toolScope": "도구",
|
||||||
"allTools": "전체",
|
"allTools": "전체",
|
||||||
@ -565,6 +589,8 @@
|
|||||||
"advanced": "고급",
|
"advanced": "고급",
|
||||||
"checkAndEnable": "확인 후 활성화",
|
"checkAndEnable": "확인 후 활성화",
|
||||||
"checkConnection": "연결 확인",
|
"checkConnection": "연결 확인",
|
||||||
|
"connectionChecks": "연결 확인",
|
||||||
|
"open": "열기",
|
||||||
"checkedAndEnabled": "확인 후 활성화했습니다.",
|
"checkedAndEnabled": "확인 후 활성화했습니다.",
|
||||||
"checking": "확인 중...",
|
"checking": "확인 중...",
|
||||||
"checkOnly": "확인만",
|
"checkOnly": "확인만",
|
||||||
@ -660,6 +686,8 @@
|
|||||||
"protected": "보호됨",
|
"protected": "보호됨",
|
||||||
"editTitle": "자동화 편집",
|
"editTitle": "자동화 편집",
|
||||||
"save": "저장",
|
"save": "저장",
|
||||||
|
"commandCopied": "복사됨",
|
||||||
|
"copyCommand": "복사",
|
||||||
"deleteTitle": "자동화 삭제",
|
"deleteTitle": "자동화 삭제",
|
||||||
"deleteDescription": "{{name}}을 cron 저장소에서 삭제합니다. 이전 채팅 메시지는 세션에 남습니다.",
|
"deleteDescription": "{{name}}을 cron 저장소에서 삭제합니다. 이전 채팅 메시지는 세션에 남습니다.",
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
@ -719,6 +747,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "이름",
|
"name": "이름",
|
||||||
"message": "메시지",
|
"message": "메시지",
|
||||||
|
"command": "명령",
|
||||||
"scheduleType": "일정 유형",
|
"scheduleType": "일정 유형",
|
||||||
"every": "간격",
|
"every": "간격",
|
||||||
"unit": "단위",
|
"unit": "단위",
|
||||||
@ -753,7 +782,7 @@
|
|||||||
"signInAgain": "다시 로그인",
|
"signInAgain": "다시 로그인",
|
||||||
"signOut": "로그아웃",
|
"signOut": "로그아웃",
|
||||||
"signedInAs": "{{account}}로 로그인됨",
|
"signedInAs": "{{account}}로 로그인됨",
|
||||||
"signInHelp": "이 기기에서 로그인합니다. API key는 config에 저장되지 않습니다.",
|
"signInHelp": "이 기기에서 로그인합니다. API 키는 구성에 저장되지 않습니다.",
|
||||||
"remoteSignInHelp": "로그인을 선택하여 사용자 컴퓨터에서 xAI를 연 다음, 로그인 후 표시되는 인증 코드를 붙여 넣으세요.",
|
"remoteSignInHelp": "로그인을 선택하여 사용자 컴퓨터에서 xAI를 연 다음, 로그인 후 표시되는 인증 코드를 붙여 넣으세요.",
|
||||||
"codexRemoteSignInHelp": "이 브라우저에서 로그인한 다음 전체 localhost 콜백 URL을 nanobot에 붙여 넣으세요.",
|
"codexRemoteSignInHelp": "이 브라우저에서 로그인한 다음 전체 localhost 콜백 URL을 nanobot에 붙여 넣으세요.",
|
||||||
"signInRequired": "로그인이 필요합니다",
|
"signInRequired": "로그인이 필요합니다",
|
||||||
@ -877,34 +906,34 @@
|
|||||||
"actions": "{{title}} 주제 작업",
|
"actions": "{{title}} 주제 작업",
|
||||||
"newInProject": "{{project}}에서 새 주제 시작",
|
"newInProject": "{{project}}에서 새 주제 시작",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent running",
|
"running": "에이전트 실행 중",
|
||||||
"complete": "Agent finished",
|
"complete": "에이전트 완료",
|
||||||
"updated": "New activity"
|
"updated": "새 활동"
|
||||||
},
|
},
|
||||||
"pin": "Pin",
|
"pin": "고정",
|
||||||
"unpin": "Unpin",
|
"unpin": "고정 해제",
|
||||||
"rename": "Rename",
|
"rename": "이름 변경",
|
||||||
"renameTitle": "주제 이름 변경",
|
"renameTitle": "주제 이름 변경",
|
||||||
"renameDescription": "이 주제에 사용할 사이드바 이름을 선택하세요.",
|
"renameDescription": "이 주제에 사용할 사이드바 이름을 선택하세요.",
|
||||||
"renamePlaceholder": "주제 이름",
|
"renamePlaceholder": "주제 이름",
|
||||||
"renameProjectTitle": "Rename project",
|
"renameProjectTitle": "프로젝트 이름 변경",
|
||||||
"renameProjectDescription": "Choose a local sidebar name for this project.",
|
"renameProjectDescription": "이 프로젝트에 사용할 사이드바 이름을 선택하세요.",
|
||||||
"renameProjectPlaceholder": "Project name",
|
"renameProjectPlaceholder": "프로젝트 이름",
|
||||||
"renameSave": "Save",
|
"renameSave": "저장",
|
||||||
"archive": "Archive",
|
"archive": "보관",
|
||||||
"unarchive": "Unarchive",
|
"unarchive": "보관 해제",
|
||||||
"showArchived": "Show archived",
|
"showArchived": "보관된 항목 표시",
|
||||||
"hideArchived": "Hide archived",
|
"hideArchived": "보관된 항목 숨기기",
|
||||||
"delete": "삭제",
|
"delete": "삭제",
|
||||||
"newChat": "새 주제",
|
"newChat": "새 주제",
|
||||||
"groups": {
|
"groups": {
|
||||||
"pinned": "Pinned",
|
"pinned": "고정됨",
|
||||||
"all": "주제",
|
"all": "주제",
|
||||||
"projects": "Projects",
|
"projects": "프로젝트",
|
||||||
"today": "Today",
|
"today": "오늘",
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "어제",
|
||||||
"earlier": "Earlier",
|
"earlier": "이전",
|
||||||
"archived": "Archived"
|
"archived": "보관됨"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deleteConfirm": {
|
"deleteConfirm": {
|
||||||
@ -1109,7 +1138,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "현재 작업 중지",
|
"title": "현재 작업 중지",
|
||||||
"description": "이 채팅에서 실행 중인 agent 턴을 취소합니다."
|
"description": "이 채팅에서 실행 중인 에이전트 턴을 취소합니다."
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "nanobot 재시작",
|
"title": "nanobot 재시작",
|
||||||
@ -1117,7 +1146,7 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "상태 보기",
|
"title": "상태 보기",
|
||||||
"description": "런타임, provider, channel 상태를 표시합니다."
|
"description": "런타임, 제공자, 채널 상태를 표시합니다."
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "모델",
|
"title": "모델",
|
||||||
@ -1195,7 +1224,9 @@
|
|||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "@{{name}}을 로컬 CLI 앱으로 사용",
|
"cliDescription": "@{{name}}을 로컬 CLI 앱으로 사용",
|
||||||
"mcpDescription": "@{{name}}을 MCP 서버로 사용"
|
"mcpDescription": "@{{name}}을 MCP 서버로 사용",
|
||||||
|
"cliTitle": "CLI 앱: {{name}}",
|
||||||
|
"mcpTitle": "MCP 서버: {{name}}"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "작업공간 접근 모드",
|
"accessAria": "작업공간 접근 모드",
|
||||||
@ -1215,7 +1246,8 @@
|
|||||||
"title": "프롬프트",
|
"title": "프롬프트",
|
||||||
"search": "프롬프트 검색",
|
"search": "프롬프트 검색",
|
||||||
"noResults": "일치하는 프롬프트가 없습니다.",
|
"noResults": "일치하는 프롬프트가 없습니다.",
|
||||||
"jumpTo": "프롬프트로 이동: {{label}}"
|
"jumpTo": "프롬프트로 이동: {{label}}",
|
||||||
|
"railAria": "사용자 프롬프트 탐색"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1239,19 +1271,27 @@
|
|||||||
"agentActivityLiveSummary": "진행 중… · {{reasoning}}단계 · 도구 호출 {{tools}}회",
|
"agentActivityLiveSummary": "진행 중… · {{reasoning}}단계 · 도구 호출 {{tools}}회",
|
||||||
"agentActivityLiveToolsOnly": "진행 중… · 도구 호출 {{tools}}회",
|
"agentActivityLiveToolsOnly": "진행 중… · 도구 호출 {{tools}}회",
|
||||||
"imageAttachment": "이미지 첨부",
|
"imageAttachment": "이미지 첨부",
|
||||||
|
"videoAttachment": "동영상 첨부",
|
||||||
|
"fileAttachment": "파일 첨부",
|
||||||
|
"attachmentUnavailable": "첨부 파일을 사용할 수 없음",
|
||||||
|
"dataTable": "데이터 표",
|
||||||
|
"fileEditPreparing": "파일 편집 준비 중…",
|
||||||
|
"openLink": "링크 열기: {{label}}",
|
||||||
|
"openAttachment": "{{name}} 열기",
|
||||||
|
"skill": "스킬: {{name}}",
|
||||||
"askAboutSelection": "이 내용에 대해 질문하기",
|
"askAboutSelection": "이 내용에 대해 질문하기",
|
||||||
"forkFromHere": "분기",
|
"forkFromHere": "분기",
|
||||||
"copyReply": "복사",
|
"copyReply": "복사",
|
||||||
"copiedReply": "복사됨",
|
"copiedReply": "복사됨",
|
||||||
"turnLatencyTitle": "응답 시간(엔드투엔드)",
|
"turnLatencyTitle": "응답 시간(엔드투엔드)",
|
||||||
"fileEditViewDiff": "Diff 보기",
|
"fileEditViewDiff": "변경 사항 보기",
|
||||||
"fileEditViewLargeDiff": "큰 diff 보기",
|
"fileEditViewLargeDiff": "큰 변경 사항 보기",
|
||||||
"fileEditDiffLineCount": "{{count}}줄",
|
"fileEditDiffLineCount": "{{count}}줄",
|
||||||
"fileEditUnchangedLinesHidden": "변경되지 않은 {{count}}줄 숨김",
|
"fileEditUnchangedLinesHidden": "변경되지 않은 {{count}}줄 숨김",
|
||||||
"fileEditShowMoreLines": "{{count}}줄 더 보기",
|
"fileEditShowMoreLines": "{{count}}줄 더 보기",
|
||||||
"fileEditShowFewerLines": "줄 줄이기",
|
"fileEditShowFewerLines": "줄 줄이기",
|
||||||
"fileEditOpenFile": "파일 열기",
|
"fileEditOpenFile": "파일 열기",
|
||||||
"fileEditDiffTruncated": "Diff가 잘렸습니다. 전체 변경은 파일을 열어 확인하세요.",
|
"fileEditDiffTruncated": "변경 사항이 잘렸습니다. 전체 변경은 파일을 열어 확인하세요.",
|
||||||
"activityThinkingFor": "{{duration}} 동안 생각 중",
|
"activityThinkingFor": "{{duration}} 동안 생각 중",
|
||||||
"activityThought": "생각함",
|
"activityThought": "생각함",
|
||||||
"activityThoughtFor": "{{duration}} 동안 생각함",
|
"activityThoughtFor": "{{duration}} 동안 생각함",
|
||||||
@ -1279,6 +1319,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "파일 미리보기",
|
"aria": "파일 미리보기",
|
||||||
|
"breadcrumb": "파일 경로",
|
||||||
"close": "파일 미리보기 닫기",
|
"close": "파일 미리보기 닫기",
|
||||||
"loading": "미리보기 로딩 중...",
|
"loading": "미리보기 로딩 중...",
|
||||||
"failed": "이 파일을 미리 볼 수 없습니다.",
|
"failed": "이 파일을 미리 볼 수 없습니다.",
|
||||||
@ -1293,7 +1334,10 @@
|
|||||||
"copied": "복사됨"
|
"copied": "복사됨"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "닫기"
|
"dismiss": "닫기",
|
||||||
|
"close": "닫기",
|
||||||
|
"current": "현재",
|
||||||
|
"cancel": "취소"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
},
|
},
|
||||||
"system": {
|
"system": {
|
||||||
"section": "Sistema",
|
"section": "Sistema",
|
||||||
"restartHint": "Reinicie o nanobot para aplicar as alterações de runtime.",
|
"restartHint": "Reinicie o nanobot para aplicar as alterações de tempo de execução.",
|
||||||
"restart": "Reiniciar nanobot",
|
"restart": "Reiniciar nanobot",
|
||||||
"restarting": "Reiniciando nanobot...",
|
"restarting": "Reiniciando nanobot...",
|
||||||
"restartEngine": "Reiniciar motor",
|
"restartEngine": "Reiniciar motor",
|
||||||
@ -37,7 +37,16 @@
|
|||||||
"chat": "{{title}} · nanobot"
|
"chat": "{{title}} · nanobot"
|
||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "Interface web do nanobot — converse com o seu workspace do nanobot."
|
"description": "Interface web do nanobot — converse com o seu espaço de trabalho do nanobot."
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "Vincular usuário do chat",
|
||||||
|
"description": "Digite o código de vinculação exibido no chat.",
|
||||||
|
"code": "Código de vinculação",
|
||||||
|
"matched": "Correspondência com {{channel}}. Conectando...",
|
||||||
|
"expiresInline": "O código expira {{expires}}.",
|
||||||
|
"queueCount": "{{count}} pendentes",
|
||||||
|
"noMatch": "Nenhuma solicitação pendente corresponde a este código."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -54,10 +63,10 @@
|
|||||||
"label": "Idioma",
|
"label": "Idioma",
|
||||||
"ariaLabel": "Trocar idioma"
|
"ariaLabel": "Trocar idioma"
|
||||||
},
|
},
|
||||||
"apps": "Apps",
|
"apps": "Aplicativos",
|
||||||
"automations": "Automações",
|
"automations": "Automações",
|
||||||
"skills": {
|
"skills": {
|
||||||
"title": "Skills"
|
"title": "Habilidades"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@ -77,13 +86,13 @@
|
|||||||
"voice": "Voz",
|
"voice": "Voz",
|
||||||
"browser": "Web",
|
"browser": "Web",
|
||||||
"channels": "Canais",
|
"channels": "Canais",
|
||||||
"cliApps": "Apps CLI",
|
"cliApps": "Aplicativos CLI",
|
||||||
"mcp": "MCP",
|
"mcp": "MCP",
|
||||||
"runtime": "Sistema",
|
"runtime": "Sistema",
|
||||||
"advanced": "Segurança",
|
"advanced": "Segurança",
|
||||||
"apps": "Aplicativos",
|
"apps": "Aplicativos",
|
||||||
"automations": "Automações",
|
"automations": "Automações",
|
||||||
"skills": "Skills"
|
"skills": "Habilidades"
|
||||||
},
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"interface": "Interface do usuário",
|
"interface": "Interface do usuário",
|
||||||
@ -97,7 +106,7 @@
|
|||||||
"imageDefaults": "Padrões",
|
"imageDefaults": "Padrões",
|
||||||
"webSearch": "Busca na web",
|
"webSearch": "Busca na web",
|
||||||
"webBehavior": "Comportamento",
|
"webBehavior": "Comportamento",
|
||||||
"cliApps": "Apps CLI",
|
"cliApps": "Aplicativos CLI",
|
||||||
"mcp": "Servidores MCP",
|
"mcp": "Servidores MCP",
|
||||||
"regional": "Regional",
|
"regional": "Regional",
|
||||||
"webuiSafety": "Segurança da WebUI",
|
"webuiSafety": "Segurança da WebUI",
|
||||||
@ -191,7 +200,7 @@
|
|||||||
"maxImagesPerTurn": "Máx. de imagens por turno",
|
"maxImagesPerTurn": "Máx. de imagens por turno",
|
||||||
"imageSaveDir": "Diretório de salvamento",
|
"imageSaveDir": "Diretório de salvamento",
|
||||||
"timezone": "Fuso horário",
|
"timezone": "Fuso horário",
|
||||||
"workspacePath": "Workspace padrão",
|
"workspacePath": "Espaço de trabalho padrão",
|
||||||
"localServiceAccess": "Serviços locais",
|
"localServiceAccess": "Serviços locais",
|
||||||
"webuiDefaultAccess": "Acesso padrão",
|
"webuiDefaultAccess": "Acesso padrão",
|
||||||
"cliAppsCatalog": "Catálogo",
|
"cliAppsCatalog": "Catálogo",
|
||||||
@ -217,10 +226,10 @@
|
|||||||
"selectedModelProvider": "Definido pelo modelo selecionado.",
|
"selectedModelProvider": "Definido pelo modelo selecionado.",
|
||||||
"selectedModelValue": "Definido pelo modelo selecionado.",
|
"selectedModelValue": "Definido pelo modelo selecionado.",
|
||||||
"selectedPreset": "As predefinições nomeadas são somente leitura aqui; edite-as em config.json.",
|
"selectedPreset": "As predefinições nomeadas são somente leitura aqui; edite-as em config.json.",
|
||||||
"presetModel": "Mude para Default para editar modelo e provedor pela WebUI.",
|
"presetModel": "Mude para Padrão para editar o modelo e o provedor pela WebUI.",
|
||||||
"density": "Armazenado apenas neste navegador.",
|
"density": "Armazenado apenas neste navegador.",
|
||||||
"activityMode": "Escolha quanto detalhe de atividade do agente é exibido por padrão.",
|
"activityMode": "Escolha quanto detalhe de atividade do agente é exibido por padrão.",
|
||||||
"fileEditDisplay": "Escolha se a atividade de edição de arquivo é exibida como contagem de linhas ou como diff.",
|
"fileEditDisplay": "Escolha se a atividade de edição de arquivo é exibida como contagem de linhas ou como diferenças.",
|
||||||
"codeWrap": "Mantém linhas longas de código legíveis em telas menores.",
|
"codeWrap": "Mantém linhas longas de código legíveis em telas menores.",
|
||||||
"brandLogos": "Mostra logotipos de provedores terceiros e de CLIs em Configurações.",
|
"brandLogos": "Mostra logotipos de provedores terceiros e de CLIs em Configurações.",
|
||||||
"maxResults": "Resultados retornados por cada chamada de web_search.",
|
"maxResults": "Resultados retornados por cada chamada de web_search.",
|
||||||
@ -228,20 +237,20 @@
|
|||||||
"jinaReader": "Usa o Jina Reader para web_fetch quando disponível.",
|
"jinaReader": "Usa o Jina Reader para web_fetch quando disponível.",
|
||||||
"imageGeneration": "Expõe generate_image nas conversas quando há um provedor de imagem configurado.",
|
"imageGeneration": "Expõe generate_image nas conversas quando há um provedor de imagem configurado.",
|
||||||
"imageProvider": "Escolha o provedor do registro usado por generate_image.",
|
"imageProvider": "Escolha o provedor do registro usado por generate_image.",
|
||||||
"imageProviderStatus": "A geração de imagens reaproveita as credenciais de Provedores.",
|
"imageProviderStatus": "A geração de imagens reaproveita as credenciais dos provedores.",
|
||||||
"imageModel": "Nome do modelo enviado ao provedor de imagem selecionado.",
|
"imageModel": "Nome do modelo enviado ao provedor de imagem selecionado.",
|
||||||
"defaultAspectRatio": "Usado quando o prompt não escolhe uma proporção.",
|
"defaultAspectRatio": "Usado quando a instrução não escolhe uma proporção.",
|
||||||
"defaultImageSize": "Dica de tamanho enviada a provedores compatíveis.",
|
"defaultImageSize": "Dica de tamanho enviada a provedores compatíveis.",
|
||||||
"maxImagesPerTurn": "Limite superior para uma requisição de generate_image.",
|
"maxImagesPerTurn": "Limite superior para uma requisição de generate_image.",
|
||||||
"timezone": "Usado para agendamentos e respostas sensíveis ao horário.",
|
"timezone": "Usado para agendamentos e respostas sensíveis ao horário.",
|
||||||
"cliAppsCatalog": "Instale apenas os adaptadores CLI de apps que o nanobot pode executar localmente; apps nativos permanecem intactos.",
|
"cliAppsCatalog": "Instale apenas os adaptadores CLI de aplicativos que o nanobot pode executar localmente; aplicativos nativos permanecem intactos.",
|
||||||
"cliAppsFilter": "Busque por app, categoria ou capacidade.",
|
"cliAppsFilter": "Busque por aplicativo, categoria ou capacidade.",
|
||||||
"localServiceAccess": "Permite que comandos shell com Acesso Total alcancem serviços localhost.",
|
"localServiceAccess": "Permite que comandos shell com acesso completo alcancem serviços locais.",
|
||||||
"webuiDefaultAccess": "Usado por chats web sem permissão específica de projeto.",
|
"webuiDefaultAccess": "Usado por chats web sem permissão específica de projeto.",
|
||||||
"securityManagedControls": "As buscas na web sempre protegem serviços locais, privados e de metadados. A segurança essencial dos canais fica em config.json.",
|
"securityManagedControls": "As buscas na web sempre protegem serviços locais, privados e de metadados. A segurança essencial dos canais fica em config.json.",
|
||||||
"logs": "Abre a pasta de logs do motor nativo.",
|
"logs": "Abre a pasta de logs do motor nativo.",
|
||||||
"diagnostics": "Exporta um pequeno relatório de runtime para o suporte.",
|
"diagnostics": "Exporta um pequeno relatório de tempo de execução para o suporte.",
|
||||||
"localServiceAccessNative": "Permite que comandos shell com Acesso Total alcancem serviços neste Mac.",
|
"localServiceAccessNative": "Permite que comandos shell com acesso completo alcancem serviços neste Mac.",
|
||||||
"webuiDefaultAccessNative": "Usado por chats nativos sem permissão específica de projeto.",
|
"webuiDefaultAccessNative": "Usado por chats nativos sem permissão específica de projeto.",
|
||||||
"contextWindow": "Escolha o orçamento de contexto padrão para esta configuração de modelo.",
|
"contextWindow": "Escolha o orçamento de contexto padrão para esta configuração de modelo.",
|
||||||
"transcription": "Transcreve a entrada do microfone antes de enviá-la. Mensagens de voz dos canais de chat usam as mesmas configurações.",
|
"transcription": "Transcreve a entrada do microfone antes de enviá-la. Mensagens de voz dos canais de chat usam as mesmas configurações.",
|
||||||
@ -257,25 +266,25 @@
|
|||||||
},
|
},
|
||||||
"cliApps": {
|
"cliApps": {
|
||||||
"allCategories": "Todas as categorias",
|
"allCategories": "Todas as categorias",
|
||||||
"availableCount": "{{count}} apps",
|
"availableCount": "{{count}} aplicativos",
|
||||||
"installedCount": "{{count}} CLIs instaladas",
|
"installedCount": "{{count}} CLIs instaladas",
|
||||||
"summary": "{{installed}} de {{total}} CLIs instaladas",
|
"summary": "{{installed}} de {{total}} CLIs instaladas",
|
||||||
"filterAll": "Todos",
|
"filterAll": "Todos",
|
||||||
"filterInstalled": "CLIs instaladas",
|
"filterInstalled": "CLIs instaladas",
|
||||||
"filterNotInstalled": "Não instaladas",
|
"filterNotInstalled": "Não instaladas",
|
||||||
"searchPlaceholder": "Buscar CLIs",
|
"searchPlaceholder": "Buscar CLIs",
|
||||||
"loading": "Carregando Apps CLI...",
|
"loading": "Carregando aplicativos CLI...",
|
||||||
"empty": "Nenhum App CLI corresponde a este filtro.",
|
"empty": "Nenhum aplicativo CLI corresponde a este filtro.",
|
||||||
"statusInstalled": "App pronto",
|
"statusInstalled": "Aplicativo pronto",
|
||||||
"statusMissing": "Faltando",
|
"statusMissing": "Faltando",
|
||||||
"statusAvailable": "Disponível",
|
"statusAvailable": "Disponível",
|
||||||
"statusUnsupported": "Não compatível",
|
"statusUnsupported": "Não compatível",
|
||||||
"statusNotInstalled": "App não instalado",
|
"statusNotInstalled": "Aplicativo não instalado",
|
||||||
"requires": "Requer",
|
"requires": "Requer",
|
||||||
"test": "Testar app",
|
"test": "Testar aplicativo",
|
||||||
"update": "Atualizar app",
|
"update": "Atualizar aplicativo",
|
||||||
"uninstall": "Desinstalar app",
|
"uninstall": "Desinstalar aplicativo",
|
||||||
"install": "Instalar app",
|
"install": "Instalar aplicativo",
|
||||||
"readyTitle": "@{{name}} está pronto",
|
"readyTitle": "@{{name}} está pronto",
|
||||||
"readyStatus": "Pronto",
|
"readyStatus": "Pronto",
|
||||||
"readyTry": "Experimentar @{{name}}",
|
"readyTry": "Experimentar @{{name}}",
|
||||||
@ -310,9 +319,9 @@
|
|||||||
"serverUrl": "URL",
|
"serverUrl": "URL",
|
||||||
"transport": "Transporte",
|
"transport": "Transporte",
|
||||||
"command": "Comando",
|
"command": "Comando",
|
||||||
"args": "Args JSON",
|
"args": "Argumentos JSON",
|
||||||
"headers": "Headers JSON",
|
"headers": "Cabeçalhos JSON",
|
||||||
"env": "Env JSON",
|
"env": "Ambiente JSON",
|
||||||
"timeout": "Tempo limite da ferramenta",
|
"timeout": "Tempo limite da ferramenta",
|
||||||
"advancedOptions": "Opções avançadas",
|
"advancedOptions": "Opções avançadas",
|
||||||
"hideAdvanced": "Ocultar avançado",
|
"hideAdvanced": "Ocultar avançado",
|
||||||
@ -340,6 +349,7 @@
|
|||||||
"statusMissingCredentials": "Precisa de chave",
|
"statusMissingCredentials": "Precisa de chave",
|
||||||
"statusMissingDependency": "Precisa de dependência",
|
"statusMissingDependency": "Precisa de dependência",
|
||||||
"statusComingSoon": "Em breve",
|
"statusComingSoon": "Em breve",
|
||||||
|
"comingSoon": "Em breve",
|
||||||
"statusNotInstalled": "Não habilitado",
|
"statusNotInstalled": "Não habilitado",
|
||||||
"toolScope": "Ferramentas",
|
"toolScope": "Ferramentas",
|
||||||
"allTools": "Todas",
|
"allTools": "Todas",
|
||||||
@ -356,15 +366,15 @@
|
|||||||
"ready": "Pronto",
|
"ready": "Pronto",
|
||||||
"privateEngine": "Motor privado",
|
"privateEngine": "Motor privado",
|
||||||
"unixSocket": "Socket Unix",
|
"unixSocket": "Socket Unix",
|
||||||
"defaultWorkspace": "Workspace padrão",
|
"defaultWorkspace": "Espaço de trabalho padrão",
|
||||||
"comfortable": "Confortável",
|
"comfortable": "Confortável",
|
||||||
"compact": "Compacto",
|
"compact": "Compacto",
|
||||||
"auto": "Automático",
|
"auto": "Automático",
|
||||||
"expanded": "Expandido",
|
"expanded": "Expandido",
|
||||||
"default": "Padrão",
|
"default": "Padrão",
|
||||||
"summary": "Resumo",
|
"summary": "Resumo",
|
||||||
"diff": "Diff",
|
"diff": "Diferenças",
|
||||||
"collapsedDiff": "Diff recolhido",
|
"collapsedDiff": "Diferenças recolhidas",
|
||||||
"on": "Ligado",
|
"on": "Ligado",
|
||||||
"off": "Desligado",
|
"off": "Desligado",
|
||||||
"defaultPermission": "Permissão padrão",
|
"defaultPermission": "Permissão padrão",
|
||||||
@ -372,7 +382,10 @@
|
|||||||
"configured": "Configurado",
|
"configured": "Configurado",
|
||||||
"notConfigured": "Não configurado",
|
"notConfigured": "Não configurado",
|
||||||
"pending": "Pendente",
|
"pending": "Pendente",
|
||||||
"restartingEngine": "Reiniciando"
|
"restartingEngine": "Reiniciando",
|
||||||
|
"checking": "Verificando",
|
||||||
|
"running": "Em execução",
|
||||||
|
"needsSetup": "Requer configuração"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "Carregando configurações...",
|
"loading": "Carregando configurações...",
|
||||||
@ -400,6 +413,7 @@
|
|||||||
"deleting": "Excluindo...",
|
"deleting": "Excluindo...",
|
||||||
"edit": "Editar",
|
"edit": "Editar",
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
|
"dismiss": "Dispensar",
|
||||||
"open": "Abrir",
|
"open": "Abrir",
|
||||||
"export": "Exportar",
|
"export": "Exportar",
|
||||||
"opening": "Abrindo...",
|
"opening": "Abrindo...",
|
||||||
@ -455,7 +469,7 @@
|
|||||||
"webSearch": "Busca na web",
|
"webSearch": "Busca na web",
|
||||||
"imageGeneration": "Geração de imagens",
|
"imageGeneration": "Geração de imagens",
|
||||||
"voiceInput": "Entrada de voz",
|
"voiceInput": "Entrada de voz",
|
||||||
"workspace": "Workspace"
|
"workspace": "Espaço de trabalho"
|
||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Atividade de tokens",
|
"title": "Atividade de tokens",
|
||||||
@ -509,9 +523,19 @@
|
|||||||
"selectProvider": "Selecionar provedor",
|
"selectProvider": "Selecionar provedor",
|
||||||
"selectAspect": "Selecionar proporção",
|
"selectAspect": "Selecionar proporção",
|
||||||
"selectSize": "Selecionar tamanho",
|
"selectSize": "Selecionar tamanho",
|
||||||
|
"selectModel": "Selecionar modelo de imagem",
|
||||||
|
"searchOrTypeModel": "Pesquisar ou digitar ID do modelo",
|
||||||
|
"typeModelId": "Digite o ID de modelo compatível com este provedor.",
|
||||||
"configureProvider": "Configurar provedor",
|
"configureProvider": "Configurar provedor",
|
||||||
"missingCredential": "Configure o provedor antes de habilitar a geração de imagens."
|
"missingCredential": "Configure o provedor antes de habilitar a geração de imagens."
|
||||||
},
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "Suporte do provedor",
|
||||||
|
"providerInstallOnSave": "O suporte necessário será instalado automaticamente ao salvar este provedor.",
|
||||||
|
"searchSupport": "Suporte do provedor de pesquisa",
|
||||||
|
"searchInstallOnSave": "O suporte ao Olostep será instalado automaticamente ao salvar.",
|
||||||
|
"installing": "Instalando suporte..."
|
||||||
|
},
|
||||||
"api": {
|
"api": {
|
||||||
"title": "Servidor de API",
|
"title": "Servidor de API",
|
||||||
"openaiCompatible": "API compatível com OpenAI",
|
"openaiCompatible": "API compatível com OpenAI",
|
||||||
@ -541,29 +565,29 @@
|
|||||||
},
|
},
|
||||||
"apps": {
|
"apps": {
|
||||||
"description": "Adicione ferramentas ao nanobot e mencione-as com @ na conversa.",
|
"description": "Adicione ferramentas ao nanobot e mencione-as com @ na conversa.",
|
||||||
"cliLabel": "App",
|
"cliLabel": "Aplicativo",
|
||||||
"mcpLabel": "Integração",
|
"mcpLabel": "Integração",
|
||||||
"channelLabel": "Canal",
|
"channelLabel": "Canal",
|
||||||
"featureLabel": "Recurso",
|
"featureLabel": "Recurso",
|
||||||
"filterAll": "Prontos",
|
"filterAll": "Prontos",
|
||||||
"filterPlugins": "Complementos",
|
"filterPlugins": "Complementos",
|
||||||
"filterCli": "Apps",
|
"filterCli": "Aplicativos",
|
||||||
"filterMcp": "Integrações",
|
"filterMcp": "Integrações",
|
||||||
"enabledSummary": "{{count}} prontos",
|
"enabledSummary": "{{count}} prontos",
|
||||||
"caption": "{{cli}} apps · {{mcp}} integrações",
|
"caption": "{{cli}} aplicativos · {{mcp}} integrações",
|
||||||
"searchPlaceholder": "Buscar ferramentas",
|
"searchPlaceholder": "Buscar ferramentas",
|
||||||
"featured": "Ferramentas",
|
"featured": "Ferramentas",
|
||||||
"loading": "Carregando Apps...",
|
"loading": "Carregando aplicativos...",
|
||||||
"empty": "Nenhuma ferramenta corresponde a esta visualização.",
|
"empty": "Nenhuma ferramenta corresponde a esta visualização.",
|
||||||
"restartRequired": "Reinicie o nanobot para aplicar os apps e integrações atualizados."
|
"restartRequired": "Reinicie o nanobot para aplicar os aplicativos e integrações atualizados."
|
||||||
},
|
},
|
||||||
"channels": {
|
"channels": {
|
||||||
"description": "Conecte apps de chat, e-mail e WebUI ao nanobot.",
|
"description": "Conecte aplicativos de chat, e-mail e WebUI ao nanobot.",
|
||||||
"caption": "{{enabled}} habilitados · {{total}} canais",
|
"caption": "{{enabled}} habilitados · {{total}} canais",
|
||||||
"searchPlaceholder": "Buscar canais",
|
"searchPlaceholder": "Buscar canais",
|
||||||
"backToChannels": "Todos os canais",
|
"backToChannels": "Todos os canais",
|
||||||
"catalog": "Canais",
|
"catalog": "Canais",
|
||||||
"loading": "Carregando Canais...",
|
"loading": "Carregando canais...",
|
||||||
"empty": "Nenhum canal corresponde a este filtro.",
|
"empty": "Nenhum canal corresponde a este filtro.",
|
||||||
"restartRequired": "Reinicie o nanobot para aplicar o suporte de canais atualizado.",
|
"restartRequired": "Reinicie o nanobot para aplicar o suporte de canais atualizado.",
|
||||||
"requires": "Requer: {{requirements}}",
|
"requires": "Requer: {{requirements}}",
|
||||||
@ -579,6 +603,8 @@
|
|||||||
"advanced": "Avançado",
|
"advanced": "Avançado",
|
||||||
"checkAndEnable": "Verificar e ativar",
|
"checkAndEnable": "Verificar e ativar",
|
||||||
"checkConnection": "Verificar conexão",
|
"checkConnection": "Verificar conexão",
|
||||||
|
"connectionChecks": "Verificações de conexão",
|
||||||
|
"open": "Abrir",
|
||||||
"checkedAndEnabled": "Verificado e ativado.",
|
"checkedAndEnabled": "Verificado e ativado.",
|
||||||
"checking": "Verificando...",
|
"checking": "Verificando...",
|
||||||
"checkOnly": "Apenas verificar",
|
"checkOnly": "Apenas verificar",
|
||||||
@ -674,6 +700,8 @@
|
|||||||
"protected": "Protegida",
|
"protected": "Protegida",
|
||||||
"editTitle": "Editar automação",
|
"editTitle": "Editar automação",
|
||||||
"save": "Salvar",
|
"save": "Salvar",
|
||||||
|
"commandCopied": "Copiado",
|
||||||
|
"copyCommand": "Copiar",
|
||||||
"deleteTitle": "Excluir automação",
|
"deleteTitle": "Excluir automação",
|
||||||
"deleteDescription": "Isso remove {{name}} do armazenamento do cron. As mensagens anteriores da conversa permanecem na sessão.",
|
"deleteDescription": "Isso remove {{name}} do armazenamento do cron. As mensagens anteriores da conversa permanecem na sessão.",
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
@ -733,6 +761,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "Nome",
|
"name": "Nome",
|
||||||
"message": "Mensagem",
|
"message": "Mensagem",
|
||||||
|
"command": "Comando",
|
||||||
"scheduleType": "Tipo de agendamento",
|
"scheduleType": "Tipo de agendamento",
|
||||||
"every": "A cada",
|
"every": "A cada",
|
||||||
"unit": "Unidade",
|
"unit": "Unidade",
|
||||||
@ -790,56 +819,56 @@
|
|||||||
"finishSignIn": "Concluir login"
|
"finishSignIn": "Concluir login"
|
||||||
},
|
},
|
||||||
"skills": {
|
"skills": {
|
||||||
"description": "Revise as skills de instrução que este agente pode carregar durante uma conversa.",
|
"description": "Revise as habilidades de instrução que este agente pode carregar durante uma conversa.",
|
||||||
"caption": "{{available}} disponíveis · {{total}} no total",
|
"caption": "{{available}} disponíveis · {{total}} no total",
|
||||||
"views": "Visualizações de skills",
|
"views": "Visualizações de habilidades",
|
||||||
"installedTab": "Instaladas",
|
"installedTab": "Instaladas",
|
||||||
"discoverTab": "Descobrir",
|
"discoverTab": "Descobrir",
|
||||||
"customGroup": "Personalizadas",
|
"customGroup": "Personalizadas",
|
||||||
"builtinGroup": "Integradas",
|
"builtinGroup": "Integradas",
|
||||||
"otherGroup": "Outras",
|
"otherGroup": "Outras",
|
||||||
"searchInstalled": "Buscar skills instaladas",
|
"searchInstalled": "Buscar habilidades instaladas",
|
||||||
"filterAll": "Todas",
|
"filterAll": "Todas",
|
||||||
"filterEnabled": "Ativadas",
|
"filterEnabled": "Ativadas",
|
||||||
"filterDisabled": "Desativadas",
|
"filterDisabled": "Desativadas",
|
||||||
"noMatching": "Nenhuma skill correspondente.",
|
"noMatching": "Nenhuma habilidade correspondente.",
|
||||||
"statusDisabled": "Desativada",
|
"statusDisabled": "Desativada",
|
||||||
"statusEnabled": "Ativada",
|
"statusEnabled": "Ativada",
|
||||||
"statusNeedsSetup": "Requer configuração",
|
"statusNeedsSetup": "Requer configuração",
|
||||||
"showLess": "Mostrar menos",
|
"showLess": "Mostrar menos",
|
||||||
"showMore": "Mostrar mais",
|
"showMore": "Mostrar mais",
|
||||||
"enabledControl": "Usar esta skill",
|
"enabledControl": "Usar esta habilidade",
|
||||||
"enabledDescription": "Permite que o agente carregue esta skill quando os requisitos estiverem prontos.",
|
"enabledDescription": "Permite que o agente carregue esta habilidade quando os requisitos estiverem prontos.",
|
||||||
"enableSkill": "Ativar {{name}}",
|
"enableSkill": "Ativar {{name}}",
|
||||||
"disableSkill": "Desativar {{name}}",
|
"disableSkill": "Desativar {{name}}",
|
||||||
"updateFailed": "Não foi possível atualizar esta skill.",
|
"updateFailed": "Não foi possível atualizar esta habilidade.",
|
||||||
"deleteTitle": "Excluir skill",
|
"deleteTitle": "Excluir habilidade",
|
||||||
"deleteDescription": "Remove esta skill do workspace atual.",
|
"deleteDescription": "Remove esta habilidade do espaço de trabalho atual.",
|
||||||
"deleteAction": "Excluir",
|
"deleteAction": "Excluir",
|
||||||
"deleteFailed": "Não foi possível excluir esta skill.",
|
"deleteFailed": "Não foi possível excluir esta habilidade.",
|
||||||
"deleteConfirmTitle": "Excluir {{name}}?",
|
"deleteConfirmTitle": "Excluir {{name}}?",
|
||||||
"deleteConfirmDescription": "Isso remove os arquivos da skill do workspace atual. Esta ação não pode ser desfeita.",
|
"deleteConfirmDescription": "Isso remove os arquivos da habilidade do espaço de trabalho atual. Esta ação não pode ser desfeita.",
|
||||||
"deleteConfirmAction": "Excluir skill",
|
"deleteConfirmAction": "Excluir habilidade",
|
||||||
"instructionsTitle": "Instruções da skill",
|
"instructionsTitle": "Instruções da habilidade",
|
||||||
"setupRequired": "Requer configuração",
|
"setupRequired": "Requer configuração",
|
||||||
"setupDescription": "Instale a dependência ausente na máquina que executa o nanobot e verifique novamente.",
|
"setupDescription": "Instale a dependência ausente na máquina que executa o nanobot e verifique novamente.",
|
||||||
"copySetupCommand": "Copiar comando de configuração",
|
"copySetupCommand": "Copiar comando de configuração",
|
||||||
"checkAgain": "Verificar novamente",
|
"checkAgain": "Verificar novamente",
|
||||||
"marketplaceSearchFailed": "Não foi possível pesquisar nos mercados de skills.",
|
"marketplaceSearchFailed": "Não foi possível pesquisar nos mercados de habilidades.",
|
||||||
"marketplaceInstallFailed": "Não foi possível instalar esta skill.",
|
"marketplaceInstallFailed": "Não foi possível instalar esta habilidade.",
|
||||||
"marketplaceSearchPlaceholder": "Pesquisar skills",
|
"marketplaceSearchPlaceholder": "Pesquisar habilidades",
|
||||||
"marketplaceSearchLabel": "Pesquisar skills",
|
"marketplaceSearchLabel": "Pesquisar habilidades",
|
||||||
"marketplaceSearching": "Pesquisando",
|
"marketplaceSearching": "Pesquisando",
|
||||||
"marketplaceProviderFilter": "Origem da skill",
|
"marketplaceProviderFilter": "Origem da habilidade",
|
||||||
"marketplaceProviderAll": "Todas",
|
"marketplaceProviderAll": "Todas",
|
||||||
"marketplaceTrendingTitle": "Tendências por mercado",
|
"marketplaceTrendingTitle": "Tendências por mercado",
|
||||||
"marketplaceTrendingDescription": "Cada mercado mantém seu próprio ranking e métricas de instalação.",
|
"marketplaceTrendingDescription": "Cada mercado mantém seu próprio ranking e métricas de instalação.",
|
||||||
"marketplaceViewAll": "Ver todas",
|
"marketplaceViewAll": "Ver todas",
|
||||||
"marketplaceTrendingUnavailable": "As skills em alta estão temporariamente indisponíveis.",
|
"marketplaceTrendingUnavailable": "As habilidades em alta estão temporariamente indisponíveis.",
|
||||||
"marketplaceEmpty": "Nenhuma skill encontrada para “{{query}}”.",
|
"marketplaceEmpty": "Nenhuma habilidade encontrada para “{{query}}”.",
|
||||||
"marketplaceConfirmTitle": "Instalar {{name}}?",
|
"marketplaceConfirmTitle": "Instalar {{name}}?",
|
||||||
"marketplaceConfirmDescription": "Esta skill de terceiros vem de {{provider}} ({{source}}) e pode incluir instruções ou scripts executáveis.",
|
"marketplaceConfirmDescription": "Esta habilidade de terceiros vem de {{provider}} ({{source}}) e pode incluir instruções ou scripts executáveis.",
|
||||||
"marketplaceConfirmInstall": "Instalar skill",
|
"marketplaceConfirmInstall": "Instalar habilidade",
|
||||||
"marketplaceOpen": "Abrir {{name}} no {{provider}}",
|
"marketplaceOpen": "Abrir {{name}} no {{provider}}",
|
||||||
"marketplaceOpenProvider": "Abrir {{provider}}",
|
"marketplaceOpenProvider": "Abrir {{provider}}",
|
||||||
"marketplaceInstalls24h": "{{formattedCount}} instalações / 24 h",
|
"marketplaceInstalls24h": "{{formattedCount}} instalações / 24 h",
|
||||||
@ -850,16 +879,16 @@
|
|||||||
"marketplaceInstall": "Instalar",
|
"marketplaceInstall": "Instalar",
|
||||||
"marketplaceNoTrend": "Ainda sem tendência",
|
"marketplaceNoTrend": "Ainda sem tendência",
|
||||||
"marketplaceTrendLabel": "Tendência de instalações em 8 semanas",
|
"marketplaceTrendLabel": "Tendência de instalações em 8 semanas",
|
||||||
"featured": "Skills do agente",
|
"featured": "Habilidades do agente",
|
||||||
"empty": "Nenhuma skill disponível.",
|
"empty": "Nenhuma habilidade disponível.",
|
||||||
"sourceWorkspace": "Personalizada",
|
"sourceWorkspace": "Personalizada",
|
||||||
"sourceBuiltin": "Embutida",
|
"sourceBuiltin": "Embutida",
|
||||||
"statusAvailable": "Disponível",
|
"statusAvailable": "Disponível",
|
||||||
"statusUnavailable": "Indisponível",
|
"statusUnavailable": "Indisponível",
|
||||||
"unavailableReason": "Faltando: {{reason}}",
|
"unavailableReason": "Faltando: {{reason}}",
|
||||||
"openDetails": "Abrir detalhes de {{name}}",
|
"openDetails": "Abrir detalhes de {{name}}",
|
||||||
"loadingDetail": "Carregando detalhes da skill...",
|
"loadingDetail": "Carregando detalhes da habilidade...",
|
||||||
"loadFailed": "Não foi possível carregar os detalhes da skill.",
|
"loadFailed": "Não foi possível carregar os detalhes da habilidade.",
|
||||||
"descriptionTitle": "Descrição",
|
"descriptionTitle": "Descrição",
|
||||||
"source": "Origem",
|
"source": "Origem",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
@ -877,12 +906,12 @@
|
|||||||
"voice": {
|
"voice": {
|
||||||
"selectProvider": "Selecionar provedor",
|
"selectProvider": "Selecionar provedor",
|
||||||
"configureProvider": "Configurar provedor",
|
"configureProvider": "Configurar provedor",
|
||||||
"languageAuto": "Auto"
|
"languageAuto": "Automático"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"fallbackTitle": "Tópico {{id}}",
|
"fallbackTitle": "Tópico {{id}}",
|
||||||
"forkTitle": "Fork: {{title}}",
|
"forkTitle": "Bifurcação: {{title}}",
|
||||||
"loading": "Carregando…",
|
"loading": "Carregando…",
|
||||||
"noSessions": "Nenhuma sessão ainda.",
|
"noSessions": "Nenhuma sessão ainda.",
|
||||||
"showMore": "Mostrar mais {{count}}",
|
"showMore": "Mostrar mais {{count}}",
|
||||||
@ -972,7 +1001,7 @@
|
|||||||
},
|
},
|
||||||
"brainstorm": {
|
"brainstorm": {
|
||||||
"title": "Fazer um brainstorming",
|
"title": "Fazer um brainstorming",
|
||||||
"prompt": "Sugira algumas ideias práticas e tradeoffs para este problema."
|
"prompt": "Sugira algumas ideias práticas e seus compromissos para este problema."
|
||||||
},
|
},
|
||||||
"code": {
|
"code": {
|
||||||
"title": "Escrever código",
|
"title": "Escrever código",
|
||||||
@ -984,25 +1013,25 @@
|
|||||||
},
|
},
|
||||||
"more": {
|
"more": {
|
||||||
"title": "Mais",
|
"title": "Mais",
|
||||||
"prompt": "Mostre-me algumas formas úteis com as quais você pode ajudar neste workspace."
|
"prompt": "Mostre-me algumas formas úteis com as quais você pode ajudar neste espaço de trabalho."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imageQuickActions": {
|
"imageQuickActions": {
|
||||||
"icon": {
|
"icon": {
|
||||||
"title": "Desenhar um ícone de app",
|
"title": "Desenhar um ícone de aplicativo",
|
||||||
"prompt": "Gere um ícone de app 1:1 limpo para o nanobot: robô amigável, estilo vetorial simples, paleta suave em azul e branco, sem texto."
|
"prompt": "Gere um ícone de aplicativo 1:1 limpo para o nanobot: robô amigável, estilo vetorial simples, paleta suave em azul e branco, sem texto."
|
||||||
},
|
},
|
||||||
"sticker": {
|
"sticker": {
|
||||||
"title": "Criar um sticker",
|
"title": "Criar um sticker",
|
||||||
"prompt": "Gere uma imagem estilo sticker de um pequeno assistente robô, com fundo de aparência transparente, expressivo e divertido."
|
"prompt": "Gere uma imagem estilo adesivo de um pequeno assistente robô, com fundo de aparência transparente, expressivo e divertido."
|
||||||
},
|
},
|
||||||
"poster": {
|
"poster": {
|
||||||
"title": "Criar um pôster",
|
"title": "Criar um pôster",
|
||||||
"prompt": "Gere um conceito de pôster polido para um assistente pessoal de IA, composição moderna, hierarquia visual forte, adequado para uma landing page."
|
"prompt": "Gere um conceito de pôster polido para um assistente pessoal de IA, composição moderna, hierarquia visual forte, adequado para uma página de destino."
|
||||||
},
|
},
|
||||||
"product": {
|
"product": {
|
||||||
"title": "Mockup de produto",
|
"title": "Maquete de produto",
|
||||||
"prompt": "Gere uma imagem limpa de mockup de produto para um app web de IA conversacional, interface mínima, iluminação premium, moldura de dispositivo realista."
|
"prompt": "Gere uma imagem limpa de maquete de produto para um aplicativo web de IA conversacional, interface mínima, iluminação premium, moldura de dispositivo realista."
|
||||||
},
|
},
|
||||||
"portrait": {
|
"portrait": {
|
||||||
"title": "Retrato estilizado",
|
"title": "Retrato estilizado",
|
||||||
@ -1141,7 +1170,7 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "Mostrar status",
|
"title": "Mostrar status",
|
||||||
"description": "Exibe o status de runtime, provedor e canais."
|
"description": "Exibe o status de tempo de execução, provedor e canais."
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "Modelo",
|
"title": "Modelo",
|
||||||
@ -1165,7 +1194,7 @@
|
|||||||
},
|
},
|
||||||
"dream_prompt": {
|
"dream_prompt": {
|
||||||
"title": "Memória do Dream",
|
"title": "Memória do Dream",
|
||||||
"description": "Diz ao Dream como organizar a memória deste workspace."
|
"description": "Diz ao Dream como organizar a memória deste espaço de trabalho."
|
||||||
},
|
},
|
||||||
"goal": {
|
"goal": {
|
||||||
"title": "Objetivo de longa duração",
|
"title": "Objetivo de longa duração",
|
||||||
@ -1186,18 +1215,20 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mentions": {
|
"mentions": {
|
||||||
"ariaLabel": "Apps",
|
"ariaLabel": "Aplicativos",
|
||||||
"label": "Apps",
|
"label": "Aplicativos",
|
||||||
"cliGroup": "Apps CLI",
|
"cliGroup": "Aplicativos CLI",
|
||||||
"mcpGroup": "Serviços MCP",
|
"mcpGroup": "Serviços MCP",
|
||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "Usar @{{name}} como app CLI local",
|
"cliDescription": "Usar @{{name}} como aplicativo CLI local",
|
||||||
"mcpDescription": "Usar @{{name}} como servidor MCP"
|
"mcpDescription": "Usar @{{name}} como servidor MCP",
|
||||||
|
"cliTitle": "Aplicativo CLI: {{name}}",
|
||||||
|
"mcpTitle": "Servidor MCP: {{name}}"
|
||||||
},
|
},
|
||||||
"encoding": "Codificando…",
|
"encoding": "Codificando…",
|
||||||
"remove": "Remover anexo",
|
"remove": "Remover anexo",
|
||||||
"normalizedSizeHint": "{{orig}} → {{current}} (auto)",
|
"normalizedSizeHint": "{{orig}} → {{current}} (automático)",
|
||||||
"textTooLarge": "O texto da mensagem é grande demais (máximo de {{max}})",
|
"textTooLarge": "O texto da mensagem é grande demais (máximo de {{max}})",
|
||||||
"imageRejected": {
|
"imageRejected": {
|
||||||
"unsupported_type": "Tipo de arquivo não compatível",
|
"unsupported_type": "Tipo de arquivo não compatível",
|
||||||
@ -1212,7 +1243,7 @@
|
|||||||
"io": "Não foi possível ler este arquivo"
|
"io": "Não foi possível ler este arquivo"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "Modo de acesso ao workspace",
|
"accessAria": "Modo de acesso ao espaço de trabalho",
|
||||||
"projectAria": "Escolher projeto",
|
"projectAria": "Escolher projeto",
|
||||||
"projectPlaceholder": "Selecionar projeto",
|
"projectPlaceholder": "Selecionar projeto",
|
||||||
"default": "Permissão padrão",
|
"default": "Permissão padrão",
|
||||||
@ -1223,13 +1254,14 @@
|
|||||||
},
|
},
|
||||||
"scrollToBottom": "Rolar para o final",
|
"scrollToBottom": "Rolar para o final",
|
||||||
"loadEarlier": "Carregar mensagens anteriores",
|
"loadEarlier": "Carregar mensagens anteriores",
|
||||||
"forkedFromHistory": "Fork a partir do histórico",
|
"forkedFromHistory": "Bifurcado a partir do histórico",
|
||||||
"promptNavigator": {
|
"promptNavigator": {
|
||||||
"open": "Abrir navegador de prompts",
|
"open": "Abrir navegador de instruções",
|
||||||
"title": "Prompts",
|
"title": "Instruções",
|
||||||
"search": "Buscar prompts",
|
"search": "Buscar instruções",
|
||||||
"noResults": "Nenhum prompt correspondente.",
|
"noResults": "Nenhuma instrução correspondente.",
|
||||||
"jumpTo": "Ir para o prompt: {{label}}"
|
"jumpTo": "Ir para a instrução: {{label}}",
|
||||||
|
"railAria": "Navegação pelas instruções do usuário"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1261,13 +1293,21 @@
|
|||||||
"cliActivityRunningOne": "Usando {{name}}",
|
"cliActivityRunningOne": "Usando {{name}}",
|
||||||
"cliActivityRanOne": "Usou {{name}}",
|
"cliActivityRanOne": "Usou {{name}}",
|
||||||
"cliActivityFailedOne": "Falhou em {{name}}",
|
"cliActivityFailedOne": "Falhou em {{name}}",
|
||||||
"cliActivityRunningMany": "Usando {{count}} apps CLI",
|
"cliActivityRunningMany": "Usando {{count}} aplicativos CLI",
|
||||||
"cliActivityRanMany": "Usou {{count}} apps CLI",
|
"cliActivityRanMany": "Usou {{count}} aplicativos CLI",
|
||||||
"cliActivityFailedMany": "{{count}} apps CLI falharam",
|
"cliActivityFailedMany": "{{count}} aplicativos CLI falharam",
|
||||||
"cliRunRunning": "Usando",
|
"cliRunRunning": "Usando",
|
||||||
"cliRunRan": "Usou",
|
"cliRunRan": "Usou",
|
||||||
"cliRunFailed": "Falhou",
|
"cliRunFailed": "Falhou",
|
||||||
"imageAttachment": "Anexo de imagem",
|
"imageAttachment": "Anexo de imagem",
|
||||||
|
"videoAttachment": "Anexo de vídeo",
|
||||||
|
"fileAttachment": "Anexo de arquivo",
|
||||||
|
"attachmentUnavailable": "Anexo indisponível",
|
||||||
|
"dataTable": "Tabela de dados",
|
||||||
|
"fileEditPreparing": "Preparando a edição do arquivo…",
|
||||||
|
"openLink": "Abrir link: {{label}}",
|
||||||
|
"openAttachment": "Abrir {{name}}",
|
||||||
|
"skill": "Habilidade: {{name}}",
|
||||||
"automationSourceFallback": "Automação",
|
"automationSourceFallback": "Automação",
|
||||||
"automationTriggered": "Acionada automaticamente",
|
"automationTriggered": "Acionada automaticamente",
|
||||||
"askAboutSelection": "Perguntar sobre isto",
|
"askAboutSelection": "Perguntar sobre isto",
|
||||||
@ -1275,14 +1315,14 @@
|
|||||||
"copyReply": "Copiar",
|
"copyReply": "Copiar",
|
||||||
"copiedReply": "Copiado",
|
"copiedReply": "Copiado",
|
||||||
"turnLatencyTitle": "Tempo de resposta (ponta a ponta)",
|
"turnLatencyTitle": "Tempo de resposta (ponta a ponta)",
|
||||||
"fileEditViewDiff": "Ver diff",
|
"fileEditViewDiff": "Ver diferenças",
|
||||||
"fileEditViewLargeDiff": "Ver diff grande",
|
"fileEditViewLargeDiff": "Ver diferenças grandes",
|
||||||
"fileEditDiffLineCount": "{{count}} linhas",
|
"fileEditDiffLineCount": "{{count}} linhas",
|
||||||
"fileEditUnchangedLinesHidden": "{{count}} linhas inalteradas ocultas",
|
"fileEditUnchangedLinesHidden": "{{count}} linhas inalteradas ocultas",
|
||||||
"fileEditShowMoreLines": "Mostrar mais {{count}} linhas",
|
"fileEditShowMoreLines": "Mostrar mais {{count}} linhas",
|
||||||
"fileEditShowFewerLines": "Mostrar menos linhas",
|
"fileEditShowFewerLines": "Mostrar menos linhas",
|
||||||
"fileEditOpenFile": "Abrir arquivo",
|
"fileEditOpenFile": "Abrir arquivo",
|
||||||
"fileEditDiffTruncated": "Diff truncado. Abra o arquivo para ver a alteração completa."
|
"fileEditDiffTruncated": "Diferenças truncadas. Abra o arquivo para ver a alteração completa."
|
||||||
},
|
},
|
||||||
"lightbox": {
|
"lightbox": {
|
||||||
"title": "Pré-visualização de imagem",
|
"title": "Pré-visualização de imagem",
|
||||||
@ -1293,6 +1333,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "Pré-visualização de arquivo",
|
"aria": "Pré-visualização de arquivo",
|
||||||
|
"breadcrumb": "Caminho do arquivo",
|
||||||
"close": "Fechar pré-visualização de arquivo",
|
"close": "Fechar pré-visualização de arquivo",
|
||||||
"loading": "Carregando pré-visualização...",
|
"loading": "Carregando pré-visualização...",
|
||||||
"failed": "Não foi possível pré-visualizar este arquivo.",
|
"failed": "Não foi possível pré-visualizar este arquivo.",
|
||||||
@ -1307,7 +1348,10 @@
|
|||||||
"copied": "Copiado"
|
"copied": "Copiado"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "Descartar"
|
"dismiss": "Descartar",
|
||||||
|
"close": "Fechar",
|
||||||
|
"current": "Atual",
|
||||||
|
"cancel": "Cancelar"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
@ -1315,8 +1359,8 @@
|
|||||||
"body": "O servidor rejeitou sua última mensagem porque ela excedeu o limite de tamanho. Remova algumas imagens ou tente arquivos menores e envie novamente."
|
"body": "O servidor rejeitou sua última mensagem porque ela excedeu o limite de tamanho. Remova algumas imagens ou tente arquivos menores e envie novamente."
|
||||||
},
|
},
|
||||||
"workspaceScopeRejected": {
|
"workspaceScopeRejected": {
|
||||||
"title": "O workspace não foi alterado",
|
"title": "O espaço de trabalho não foi alterado",
|
||||||
"body": "O nanobot manteve o workspace anterior porque o projeto ou modo de acesso solicitado foi rejeitado pelo gateway."
|
"body": "O nanobot manteve o espaço de trabalho anterior porque o projeto ou modo de acesso solicitado foi rejeitado pelo gateway."
|
||||||
},
|
},
|
||||||
"turnRejected": {
|
"turnRejected": {
|
||||||
"title": "A mensagem não foi enviada",
|
"title": "A mensagem não foi enviada",
|
||||||
@ -1325,7 +1369,7 @@
|
|||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"defaultProject": "Workspace padrão",
|
"defaultProject": "Espaço de trabalho padrão",
|
||||||
"manual": "Colar caminho",
|
"manual": "Colar caminho",
|
||||||
"manualPlaceholder": "/Users/nome/projeto",
|
"manualPlaceholder": "/Users/nome/projeto",
|
||||||
"usePath": "Usar caminho",
|
"usePath": "Usar caminho",
|
||||||
|
|||||||
@ -23,11 +23,11 @@
|
|||||||
},
|
},
|
||||||
"system": {
|
"system": {
|
||||||
"section": "Hệ thống",
|
"section": "Hệ thống",
|
||||||
"restartHint": "Khởi động lại nanobot để áp dụng thay đổi runtime.",
|
"restartHint": "Khởi động lại nanobot để áp dụng thay đổi thời gian chạy.",
|
||||||
"restart": "Khởi động lại nanobot",
|
"restart": "Khởi động lại nanobot",
|
||||||
"restarting": "Đang khởi động lại...",
|
"restarting": "Đang khởi động lại...",
|
||||||
"restartEngine": "Khởi động lại engine",
|
"restartEngine": "Khởi động lại bộ máy",
|
||||||
"restartingEngine": "Đang khởi động lại engine..."
|
"restartingEngine": "Đang khởi động lại bộ máy..."
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"completed": "Khởi động lại hoàn tất sau {{seconds}} giây."
|
"completed": "Khởi động lại hoàn tất sau {{seconds}} giây."
|
||||||
@ -37,7 +37,16 @@
|
|||||||
"chat": "{{title}} · nanobot"
|
"chat": "{{title}} · nanobot"
|
||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "Giao diện web nanobot — trò chuyện với workspace nanobot của bạn."
|
"description": "Giao diện web nanobot — trò chuyện với không gian làm việc nanobot của bạn."
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "Liên kết người dùng chat",
|
||||||
|
"description": "Nhập mã liên kết hiển thị trong cuộc trò chuyện.",
|
||||||
|
"code": "Mã liên kết",
|
||||||
|
"matched": "Đã khớp với {{channel}}. Đang kết nối...",
|
||||||
|
"expiresInline": "Mã hết hạn {{expires}}.",
|
||||||
|
"queueCount": "{{count}} đang chờ",
|
||||||
|
"noMatch": "Không có yêu cầu đang chờ nào khớp với mã này."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -92,7 +101,7 @@
|
|||||||
"about": "Giới thiệu",
|
"about": "Giới thiệu",
|
||||||
"status": "Trạng thái",
|
"status": "Trạng thái",
|
||||||
"localPreferences": "Tùy chọn cục bộ",
|
"localPreferences": "Tùy chọn cục bộ",
|
||||||
"presets": "Preset",
|
"presets": "Cấu hình đặt trước",
|
||||||
"imageGeneration": "Tạo hình ảnh",
|
"imageGeneration": "Tạo hình ảnh",
|
||||||
"imageDefaults": "Mặc định",
|
"imageDefaults": "Mặc định",
|
||||||
"webSearch": "Tìm kiếm web",
|
"webSearch": "Tìm kiếm web",
|
||||||
@ -103,9 +112,9 @@
|
|||||||
"cliApps": "Ứng dụng CLI",
|
"cliApps": "Ứng dụng CLI",
|
||||||
"mcp": "Dịch vụ MCP",
|
"mcp": "Dịch vụ MCP",
|
||||||
"apps": "Ứng dụng",
|
"apps": "Ứng dụng",
|
||||||
"nativeHost": "Host gốc",
|
"nativeHost": "Máy chủ gốc",
|
||||||
"hostSafety": "An toàn ứng dụng",
|
"hostSafety": "An toàn ứng dụng",
|
||||||
"voiceInput": "Nhap giong noi"
|
"voiceInput": "Nhập bằng giọng nói"
|
||||||
},
|
},
|
||||||
"rows": {
|
"rows": {
|
||||||
"theme": "Chủ đề",
|
"theme": "Chủ đề",
|
||||||
@ -114,12 +123,12 @@
|
|||||||
"model": "Mô hình",
|
"model": "Mô hình",
|
||||||
"restart": "Khởi động lại nanobot",
|
"restart": "Khởi động lại nanobot",
|
||||||
"configPath": "Đường dẫn cấu hình",
|
"configPath": "Đường dẫn cấu hình",
|
||||||
"activePreset": "Preset đang dùng",
|
"activePreset": "Cấu hình đặt trước đang dùng",
|
||||||
"gateway": "Cổng",
|
"gateway": "Cổng",
|
||||||
"restartState": "Trạng thái khởi động lại",
|
"restartState": "Trạng thái khởi động lại",
|
||||||
"pendingChanges": "Thay đổi chờ áp dụng",
|
"pendingChanges": "Thay đổi chờ áp dụng",
|
||||||
"selectedPreset": "Preset đã chọn",
|
"selectedPreset": "Cấu hình đặt trước đã chọn",
|
||||||
"presetModel": "Mô hình preset",
|
"presetModel": "Mô hình cấu hình đặt trước",
|
||||||
"density": "Mật độ",
|
"density": "Mật độ",
|
||||||
"activityMode": "Chi tiết hoạt động",
|
"activityMode": "Chi tiết hoạt động",
|
||||||
"fileEditDisplay": "Hiển thị sửa tệp",
|
"fileEditDisplay": "Hiển thị sửa tệp",
|
||||||
@ -137,7 +146,7 @@
|
|||||||
"maxImagesPerTurn": "Ảnh tối đa mỗi lượt",
|
"maxImagesPerTurn": "Ảnh tối đa mỗi lượt",
|
||||||
"imageSaveDir": "Thư mục lưu",
|
"imageSaveDir": "Thư mục lưu",
|
||||||
"timezone": "Múi giờ",
|
"timezone": "Múi giờ",
|
||||||
"workspacePath": "Workspace mặc định",
|
"workspacePath": "Không gian làm việc mặc định",
|
||||||
"localServiceAccess": "Dịch vụ cục bộ",
|
"localServiceAccess": "Dịch vụ cục bộ",
|
||||||
"webuiDefaultAccess": "Quyền mặc định",
|
"webuiDefaultAccess": "Quyền mặc định",
|
||||||
"currentModel": "Cấu hình hiện tại",
|
"currentModel": "Cấu hình hiện tại",
|
||||||
@ -148,55 +157,55 @@
|
|||||||
"logs": "Nhật ký",
|
"logs": "Nhật ký",
|
||||||
"diagnostics": "Chẩn đoán",
|
"diagnostics": "Chẩn đoán",
|
||||||
"contextWindow": "Cửa sổ ngữ cảnh",
|
"contextWindow": "Cửa sổ ngữ cảnh",
|
||||||
"transcription": "Phien am",
|
"transcription": "Chuyển giọng nói thành văn bản",
|
||||||
"transcriptionProvider": "Nha cung cap",
|
"transcriptionProvider": "Nhà cung cấp chuyển giọng nói",
|
||||||
"transcriptionProviderStatus": "Trang thai nha cung cap",
|
"transcriptionProviderStatus": "Trạng thái nhà cung cấp chuyển giọng nói",
|
||||||
"transcriptionModel": "Mo hinh",
|
"transcriptionModel": "Mô hình chuyển giọng nói",
|
||||||
"transcriptionLanguage": "Ngon ngu",
|
"transcriptionLanguage": "Ngôn ngữ",
|
||||||
"voiceLimits": "Gioi han"
|
"voiceLimits": "Giới hạn"
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"theme": "Chuyển giữa giao diện sáng và tối.",
|
"theme": "Chuyển giữa giao diện sáng và tối.",
|
||||||
"language": "Chọn ngôn ngữ dùng trong WebUI.",
|
"language": "Chọn ngôn ngữ dùng trong WebUI.",
|
||||||
"provider": "Selecciona el proveedor para nuevas solicitudes de modelo.",
|
"provider": "Chọn nhà cung cấp cho các yêu cầu mô hình mới.",
|
||||||
"model": "Chọn mô hình mà cấu hình sẵn này sử dụng.",
|
"model": "Chọn mô hình mà cấu hình sẵn này sử dụng.",
|
||||||
"configPath": "Archivo de configuración que usa actualmente el gateway.",
|
"configPath": "Tệp cấu hình gateway hiện đang dùng.",
|
||||||
"selectedPreset": "Los preajustes con nombre son de solo lectura aquí; edítalos en config.json.",
|
"selectedPreset": "Cấu hình đặt trước có tên chỉ đọc tại đây; hãy chỉnh sửa trong config.json.",
|
||||||
"presetModel": "Chuyển sang Default để chỉnh sửa mô hình và nhà cung cấp từ WebUI.",
|
"presetModel": "Chuyển sang Mặc định để chỉnh sửa mô hình và nhà cung cấp trong WebUI.",
|
||||||
"density": "Chỉ lưu trong trình duyệt này.",
|
"density": "Chỉ lưu trong trình duyệt này.",
|
||||||
"activityMode": "Chọn mức chi tiết hoạt động agent hiển thị mặc định.",
|
"activityMode": "Chọn mức chi tiết hoạt động của tác nhân hiển thị mặc định.",
|
||||||
"fileEditDisplay": "Chọn hoạt động sửa tệp hiển thị số dòng hay diff.",
|
"fileEditDisplay": "Chọn hoạt động sửa tệp hiển thị số dòng hay khác biệt.",
|
||||||
"codeWrap": "Giữ các dòng mã dài dễ đọc trên màn hình nhỏ.",
|
"codeWrap": "Giữ các dòng mã dài dễ đọc trên màn hình nhỏ.",
|
||||||
"maxResults": "Resultados devueltos por cada llamada web_search.",
|
"maxResults": "Số kết quả được trả về sau mỗi lần gọi web_search.",
|
||||||
"timeout": "Segundos antes de que una solicitud de búsqueda expire.",
|
"timeout": "Số giây trước khi yêu cầu của nhà cung cấp tìm kiếm hết thời gian.",
|
||||||
"jinaReader": "Usa Jina Reader para web_fetch cuando esté disponible.",
|
"jinaReader": "Dùng Jina Reader cho web_fetch khi có thể.",
|
||||||
"imageGeneration": "Expone generate_image en chats cuando hay un proveedor de imagen configurado.",
|
"imageGeneration": "Hiển thị generate_image trong chat khi đã cấu hình nhà cung cấp hình ảnh.",
|
||||||
"imageProvider": "Elige el proveedor registrado usado por generate_image.",
|
"imageProvider": "Chọn nhà cung cấp registry được generate_image sử dụng.",
|
||||||
"imageProviderStatus": "La generación de imágenes reutiliza credenciales de Proveedores.",
|
"imageProviderStatus": "Tạo ảnh dùng lại thông tin xác thực từ mục Nhà cung cấp.",
|
||||||
"imageModel": "Nombre del modelo enviado al proveedor de imágenes seleccionado.",
|
"imageModel": "Tên mô hình gửi tới nhà cung cấp ảnh đã chọn.",
|
||||||
"defaultAspectRatio": "Se usa cuando el prompt no elige una proporción.",
|
"defaultAspectRatio": "Được dùng khi lời nhắc không chọn tỷ lệ khung hình.",
|
||||||
"defaultImageSize": "Gợi ý kích thước gửi tới nhà cung cấp hỗ trợ.",
|
"defaultImageSize": "Gợi ý kích thước gửi tới nhà cung cấp hỗ trợ.",
|
||||||
"maxImagesPerTurn": "Giới hạn trên cho một yêu cầu generate_image.",
|
"maxImagesPerTurn": "Giới hạn trên cho một yêu cầu generate_image.",
|
||||||
"timezone": "Se usa para horarios y respuestas con conciencia temporal.",
|
"timezone": "Dùng cho lịch và các câu trả lời có yếu tố thời gian.",
|
||||||
"localServiceAccess": "Cho phép lệnh shell Full Access truy cập dịch vụ localhost.",
|
"localServiceAccess": "Cho phép lệnh shell có quyền truy cập đầy đủ truy cập các dịch vụ cục bộ.",
|
||||||
"webuiDefaultAccess": "Dùng cho chat web không có quyền riêng theo dự án.",
|
"webuiDefaultAccess": "Dùng cho chat web không có quyền riêng theo dự án.",
|
||||||
"securityManagedControls": "Las capturas web siempre protegen servicios locales, privados y metadata. La seguridad de canales core se gestiona en config.json.",
|
"securityManagedControls": "Việc tải nội dung web luôn bảo vệ các dịch vụ cục bộ, riêng tư và siêu dữ liệu. Tính an toàn của các kênh cốt lõi vẫn do config.json quản lý.",
|
||||||
"currentModel": "Dùng cho các phản hồi mới.",
|
"currentModel": "Dùng cho các phản hồi mới.",
|
||||||
"selectedModelProvider": "Definido por el modelo seleccionado.",
|
"selectedModelProvider": "Được đặt bởi mô hình đã chọn.",
|
||||||
"selectedModelValue": "Definido por el modelo seleccionado.",
|
"selectedModelValue": "Được đặt bởi mô hình đã chọn.",
|
||||||
"brandLogos": "Hiển thị logo nhà cung cấp bên thứ ba và CLI trong Cài đặt.",
|
"brandLogos": "Hiển thị logo nhà cung cấp bên thứ ba và CLI trong Cài đặt.",
|
||||||
"cliAppsCatalog": "Instala solo adaptadores CLI de apps que nanobot puede ejecutar localmente; las apps nativas no se modifican.",
|
"cliAppsCatalog": "Chỉ cài đặt các bộ chuyển đổi CLI ứng dụng mà nanobot có thể chạy cục bộ; ứng dụng gốc không bị thay đổi.",
|
||||||
"cliAppsFilter": "Busca por app, categoría o capacidad.",
|
"cliAppsFilter": "Tìm theo ứng dụng, danh mục hoặc khả năng.",
|
||||||
"logs": "Abre la carpeta de registros del motor nativo.",
|
"logs": "Mở thư mục nhật ký của bộ máy gốc.",
|
||||||
"diagnostics": "Exporta un pequeño informe de runtime para soporte.",
|
"diagnostics": "Xuất báo cáo thời gian chạy ngắn để hỗ trợ.",
|
||||||
"localServiceAccessNative": "Permite que comandos shell con Full Access alcancen servicios en este Mac.",
|
"localServiceAccessNative": "Cho phép lệnh shell có quyền truy cập đầy đủ truy cập các dịch vụ trên máy Mac này.",
|
||||||
"webuiDefaultAccessNative": "Usado por chats nativos sin permiso específico de proyecto.",
|
"webuiDefaultAccessNative": "Dùng cho chat gốc không có quyền riêng theo dự án.",
|
||||||
"contextWindow": "Chọn ngân sách ngữ cảnh mặc định cho cấu hình mô hình này.",
|
"contextWindow": "Chọn ngân sách ngữ cảnh mặc định cho cấu hình mô hình này.",
|
||||||
"transcription": "Phien am dau vao micro truoc khi gui. Tin nhan giong noi tu kenh chat dung cung cai dat.",
|
"transcription": "Chuyển giọng nói từ micrô thành văn bản trước khi gửi. Tin nhắn thoại từ các kênh chat cũng dùng cùng cài đặt.",
|
||||||
"transcriptionProvider": "Dung thong tin xac thuc cua nha cung cap tu Providers.",
|
"transcriptionProvider": "Dùng thông tin xác thực của nhà cung cấp tương ứng trong mục Nhà cung cấp.",
|
||||||
"transcriptionProviderStatus": "API key nam trong providers, khong nam trong cai dat transcription.",
|
"transcriptionProviderStatus": "Khóa API nằm trong mục nhà cung cấp, không nằm trong cài đặt chuyển giọng nói.",
|
||||||
"transcriptionModel": "Giu mac dinh da resolve tru khi nha cung cap can id model tuy chinh.",
|
"transcriptionModel": "Giữ mô hình mặc định đã phân giải, trừ khi nhà cung cấp yêu cầu ID mô hình tùy chỉnh.",
|
||||||
"transcriptionLanguage": "Goi y ISO-639 tuy chon, nhu en, zh, ja hoac ko."
|
"transcriptionLanguage": "Gợi ý ISO-639 tùy chọn, chẳng hạn en, zh, ja hoặc ko."
|
||||||
},
|
},
|
||||||
"values": {
|
"values": {
|
||||||
"light": "Sáng",
|
"light": "Sáng",
|
||||||
@ -208,15 +217,15 @@
|
|||||||
"ready": "Sẵn sàng",
|
"ready": "Sẵn sàng",
|
||||||
"privateEngine": "Bộ máy riêng",
|
"privateEngine": "Bộ máy riêng",
|
||||||
"unixSocket": "Socket Unix",
|
"unixSocket": "Socket Unix",
|
||||||
"defaultWorkspace": "Workspace mặc định",
|
"defaultWorkspace": "Không gian làm việc mặc định",
|
||||||
"comfortable": "Thoải mái",
|
"comfortable": "Thoải mái",
|
||||||
"compact": "Gọn",
|
"compact": "Gọn",
|
||||||
"auto": "Tự động",
|
"auto": "Tự động",
|
||||||
"expanded": "Mở rộng",
|
"expanded": "Mở rộng",
|
||||||
"default": "Mặc định",
|
"default": "Mặc định",
|
||||||
"summary": "Tóm tắt",
|
"summary": "Tóm tắt",
|
||||||
"diff": "Diff",
|
"diff": "Khác biệt",
|
||||||
"collapsedDiff": "Diff thu gọn",
|
"collapsedDiff": "Khác biệt đã thu gọn",
|
||||||
"on": "Bật",
|
"on": "Bật",
|
||||||
"off": "Tắt",
|
"off": "Tắt",
|
||||||
"defaultPermission": "Quyền mặc định",
|
"defaultPermission": "Quyền mặc định",
|
||||||
@ -224,24 +233,27 @@
|
|||||||
"configured": "Đã cấu hình",
|
"configured": "Đã cấu hình",
|
||||||
"notConfigured": "Chưa cấu hình",
|
"notConfigured": "Chưa cấu hình",
|
||||||
"pending": "Đang chờ",
|
"pending": "Đang chờ",
|
||||||
"restartingEngine": "Đang khởi động lại"
|
"restartingEngine": "Đang khởi động lại",
|
||||||
|
"checking": "Đang kiểm tra",
|
||||||
|
"running": "Đang chạy",
|
||||||
|
"needsSetup": "Cần thiết lập"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "Đang tải cài đặt...",
|
"loading": "Đang tải cài đặt...",
|
||||||
"loadError": "Không thể tải cài đặt",
|
"loadError": "Không thể tải cài đặt",
|
||||||
"unsaved": "Có thay đổi chưa lưu.",
|
"unsaved": "Có thay đổi chưa lưu.",
|
||||||
"upToDate": "Đã cập nhật.",
|
"upToDate": "Đã cập nhật.",
|
||||||
"savedRestart": "Guardado. Reinicia nanobot para aplicar.",
|
"savedRestart": "Đã lưu. Khởi động lại nanobot để áp dụng.",
|
||||||
"restartAfterSaving": "Guarda los cambios y reinicia cuando puedas.",
|
"restartAfterSaving": "Lưu thay đổi, rồi khởi động lại khi sẵn sàng.",
|
||||||
"savedRestartApply": "Guardado. Reinicia cuando puedas.",
|
"savedRestartApply": "Đã lưu. Khởi động lại khi sẵn sàng.",
|
||||||
"imageProviderRestart": "Cambios del proveedor de imagen guardados. Reinicia cuando puedas.",
|
"imageProviderRestart": "Đã lưu thay đổi nhà cung cấp ảnh. Khởi động lại khi sẵn sàng.",
|
||||||
"hostRestartAfterSaving": "Al guardar, nanobot reiniciará su motor.",
|
"hostRestartAfterSaving": "Sau khi lưu, nanobot sẽ khởi động lại bộ máy.",
|
||||||
"hostRestartPending": "Guardado. El motor se reiniciará cuando esté listo.",
|
"hostRestartPending": "Đã lưu. Bộ máy sẽ khởi động lại khi sẵn sàng.",
|
||||||
"hostApiUnavailable": "Las acciones del host solo están disponibles en la app nativa.",
|
"hostApiUnavailable": "Các thao tác máy chủ chỉ khả dụng trong ứng dụng gốc.",
|
||||||
"logsOpened": "Carpeta de registros abierta.",
|
"logsOpened": "Đã mở thư mục nhật ký.",
|
||||||
"logsOpenFailed": "No se pudo abrir la carpeta de registros.",
|
"logsOpenFailed": "Không thể mở thư mục nhật ký.",
|
||||||
"diagnosticsExported": "Diagnóstico exportado a {{path}}.",
|
"diagnosticsExported": "Đã xuất chẩn đoán tới {{path}}.",
|
||||||
"diagnosticsExportFailed": "No se pudo exportar el diagnóstico."
|
"diagnosticsExportFailed": "Không thể xuất chẩn đoán."
|
||||||
},
|
},
|
||||||
"actions": {
|
"actions": {
|
||||||
"save": "Lưu",
|
"save": "Lưu",
|
||||||
@ -252,30 +264,31 @@
|
|||||||
"deleting": "Đang xóa...",
|
"deleting": "Đang xóa...",
|
||||||
"edit": "Sửa",
|
"edit": "Sửa",
|
||||||
"cancel": "Hủy",
|
"cancel": "Hủy",
|
||||||
|
"dismiss": "Bỏ qua",
|
||||||
"open": "Mở",
|
"open": "Mở",
|
||||||
"export": "Xuất",
|
"export": "Xuất",
|
||||||
"opening": "Đang mở...",
|
"opening": "Đang mở...",
|
||||||
"exporting": "Đang xuất..."
|
"exporting": "Đang xuất..."
|
||||||
},
|
},
|
||||||
"byok": {
|
"byok": {
|
||||||
"description": "Dùng key provider của riêng bạn. Nanobot đọc các giá trị này từ config hiện tại và chỉ provider đã cấu hình mới có thể dùng trong cấu hình mô hình đặt trước.",
|
"description": "Dùng khóa nhà cung cấp của riêng bạn. Nanobot đọc các giá trị này từ cấu hình hiện tại và chỉ nhà cung cấp đã cấu hình mới có thể dùng trong cấu hình mô hình đặt trước.",
|
||||||
"configured": "Đã cấu hình",
|
"configured": "Đã cấu hình",
|
||||||
"notConfigured": "Chưa cấu hình",
|
"notConfigured": "Chưa cấu hình",
|
||||||
"configuredSection": "Đã cấu hình",
|
"configuredSection": "Đã cấu hình",
|
||||||
"notConfiguredSection": "Chưa cấu hình",
|
"notConfiguredSection": "Chưa cấu hình",
|
||||||
"showMore": "Hiển thị thêm {{count}}",
|
"showMore": "Hiển thị thêm {{count}}",
|
||||||
"showLess": "Thu gọn",
|
"showLess": "Thu gọn",
|
||||||
"apiKey": "API key",
|
"apiKey": "Khóa API",
|
||||||
"apiBase": "API base",
|
"apiBase": "Cơ sở API",
|
||||||
"apiKeyPlaceholder": "Nhập API key",
|
"apiKeyPlaceholder": "Nhập khóa API",
|
||||||
"apiKeyConfiguredPlaceholder": "Để trống để giữ key hiện tại",
|
"apiKeyConfiguredPlaceholder": "Để trống để giữ khóa hiện tại",
|
||||||
"configuredKeyHint": "Key đã cấu hình",
|
"configuredKeyHint": "Khóa đã cấu hình",
|
||||||
"apiBasePlaceholder": "Dùng mặc định của provider",
|
"apiBasePlaceholder": "Dùng giá trị mặc định của nhà cung cấp",
|
||||||
"apiKeyRequired": "Cần API key để cấu hình provider này.",
|
"apiKeyRequired": "Cần khóa API để cấu hình nhà cung cấp này.",
|
||||||
"showApiKey": "Hiển thị API key",
|
"showApiKey": "Hiển thị khóa API",
|
||||||
"hideApiKey": "Ẩn API key",
|
"hideApiKey": "Ẩn khóa API",
|
||||||
"noConfiguredProviders": "Chưa có provider đã cấu hình",
|
"noConfiguredProviders": "Chưa có nhà cung cấp nào được cấu hình",
|
||||||
"configureFirst": "Hãy cấu hình provider trong BYOK trước.",
|
"configureFirst": "Hãy cấu hình nhà cung cấp trong BYOK trước.",
|
||||||
"openByok": "Mở BYOK",
|
"openByok": "Mở BYOK",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"ariaLabel": "Loại thông tin xác thực BYOK",
|
"ariaLabel": "Loại thông tin xác thực BYOK",
|
||||||
@ -284,19 +297,19 @@
|
|||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "Nhà cung cấp tìm kiếm",
|
"provider": "Nhà cung cấp tìm kiếm",
|
||||||
"providerHelp": "Chọn backend mà công cụ web search sẽ dùng.",
|
"providerHelp": "Chọn hệ thống phụ trợ mà công cụ tìm kiếm web sẽ dùng.",
|
||||||
"selectProvider": "Chọn provider",
|
"selectProvider": "Chọn nhà cung cấp",
|
||||||
"credentials": "Thông tin xác thực",
|
"credentials": "Thông tin xác thực",
|
||||||
"noCredentialRequired": "Không cần key",
|
"noCredentialRequired": "Không cần khóa",
|
||||||
"noCredentialHelp": "DuckDuckGo hoạt động mà không cần lưu API key.",
|
"noCredentialHelp": "DuckDuckGo hoạt động mà không cần lưu khóa API.",
|
||||||
"apiKeyHelp": "Được lưu trong config và chỉ hiện dạng che sau khi lưu.",
|
"apiKeyHelp": "Được lưu trong config và chỉ hiện dạng che sau khi lưu.",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "URL cơ sở",
|
||||||
"baseUrlHelp": "SearXNG cần URL instance của bạn.",
|
"baseUrlHelp": "SearXNG cần URL instance của bạn.",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "Provider tìm kiếm này cần API key.",
|
"apiKeyRequired": "Nhà cung cấp tìm kiếm này cần khóa API.",
|
||||||
"baseUrlRequired": "SearXNG cần Base URL.",
|
"baseUrlRequired": "SearXNG cần URL cơ sở.",
|
||||||
"missingCredential": "Thêm thông tin bắt buộc trước khi lưu.",
|
"missingCredential": "Thêm thông tin bắt buộc trước khi lưu.",
|
||||||
"saveHint": "Thay đổi áp dụng cho các yêu cầu web search mới."
|
"saveHint": "Thay đổi áp dụng cho các yêu cầu tìm kiếm trên web mới."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -311,7 +324,7 @@
|
|||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Hoạt động token",
|
"title": "Hoạt động token",
|
||||||
"shortTitle": "Token Usage",
|
"shortTitle": "Mức dùng token",
|
||||||
"subtitle": "Mức dùng do nhà cung cấp báo cáo trong 12 tháng gần nhất.",
|
"subtitle": "Mức dùng do nhà cung cấp báo cáo trong 12 tháng gần nhất.",
|
||||||
"empty": "Hoạt động token sẽ xuất hiện sau các phản hồi mô hình mới.",
|
"empty": "Hoạt động token sẽ xuất hiện sau các phản hồi mô hình mới.",
|
||||||
"totalTokens": "Tổng token",
|
"totalTokens": "Tổng token",
|
||||||
@ -358,8 +371,18 @@
|
|||||||
"selectProvider": "Chọn nhà cung cấp",
|
"selectProvider": "Chọn nhà cung cấp",
|
||||||
"selectAspect": "Chọn tỷ lệ",
|
"selectAspect": "Chọn tỷ lệ",
|
||||||
"selectSize": "Chọn kích thước",
|
"selectSize": "Chọn kích thước",
|
||||||
|
"selectModel": "Chọn mô hình ảnh",
|
||||||
|
"searchOrTypeModel": "Tìm kiếm hoặc nhập ID mô hình",
|
||||||
|
"typeModelId": "Nhập ID mô hình được nhà cung cấp này hỗ trợ.",
|
||||||
"configureProvider": "Cấu hình nhà cung cấp",
|
"configureProvider": "Cấu hình nhà cung cấp",
|
||||||
"missingCredential": "Configura este proveedor antes de activar la generación de imágenes."
|
"missingCredential": "Cấu hình nhà cung cấp này trước khi bật tạo ảnh."
|
||||||
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "Hỗ trợ nhà cung cấp",
|
||||||
|
"providerInstallOnSave": "Hỗ trợ cần thiết sẽ được cài đặt tự động khi bạn lưu nhà cung cấp này.",
|
||||||
|
"searchSupport": "Hỗ trợ nhà cung cấp tìm kiếm",
|
||||||
|
"searchInstallOnSave": "Hỗ trợ Olostep sẽ được cài đặt tự động khi bạn lưu.",
|
||||||
|
"installing": "Đang cài đặt hỗ trợ..."
|
||||||
},
|
},
|
||||||
"models": {
|
"models": {
|
||||||
"selectModel": "Chọn mô hình",
|
"selectModel": "Chọn mô hình",
|
||||||
@ -383,7 +406,7 @@
|
|||||||
"advancedOptions": "Tùy chọn nâng cao",
|
"advancedOptions": "Tùy chọn nâng cao",
|
||||||
"advancedSummary": "Ngữ cảnh {{context}} · Tối đa {{max}} token",
|
"advancedSummary": "Ngữ cảnh {{context}} · Tối đa {{max}} token",
|
||||||
"maxTokens": "Token đầu ra tối đa",
|
"maxTokens": "Token đầu ra tối đa",
|
||||||
"temperature": "Temperature",
|
"temperature": "Nhiệt độ",
|
||||||
"reasoningEffort": "Mức suy luận",
|
"reasoningEffort": "Mức suy luận",
|
||||||
"convertTitle": "Chuyển đổi thiết lập mô hình hiện tại",
|
"convertTitle": "Chuyển đổi thiết lập mô hình hiện tại",
|
||||||
"convertHelp": "Chuyển mô hình chính và các mô hình dự phòng hiện có thành cấu hình đặt trước để quản lý thứ tự tại đây.",
|
"convertHelp": "Chuyển mô hình chính và các mô hình dự phòng hiện có thành cấu hình đặt trước để quản lý thứ tự tại đây.",
|
||||||
@ -458,11 +481,11 @@
|
|||||||
},
|
},
|
||||||
"mcp": {
|
"mcp": {
|
||||||
"allCategories": "Tất cả danh mục",
|
"allCategories": "Tất cả danh mục",
|
||||||
"summary": "Đã bật {{installed}} / {{total}} preset",
|
"summary": "Đã bật {{installed}} / {{total}} cấu hình đặt trước",
|
||||||
"filterAll": "Tất cả",
|
"filterAll": "Tất cả",
|
||||||
"filterInstalled": "Đã bật",
|
"filterInstalled": "Đã bật",
|
||||||
"filterNotInstalled": "Chưa bật",
|
"filterNotInstalled": "Chưa bật",
|
||||||
"searchPlaceholder": "Tìm preset MCP",
|
"searchPlaceholder": "Tìm cấu hình đặt trước MCP",
|
||||||
"moreOptions": "Tùy chọn MCP khác",
|
"moreOptions": "Tùy chọn MCP khác",
|
||||||
"moreOptionsSubtitle": "Thêm máy chủ tùy chỉnh hoặc nhập mcp.json.",
|
"moreOptionsSubtitle": "Thêm máy chủ tùy chỉnh hoặc nhập mcp.json.",
|
||||||
"customTitle": "MCP tùy chỉnh",
|
"customTitle": "MCP tùy chỉnh",
|
||||||
@ -473,9 +496,9 @@
|
|||||||
"serverUrl": "URL",
|
"serverUrl": "URL",
|
||||||
"transport": "Giao thức truyền",
|
"transport": "Giao thức truyền",
|
||||||
"command": "Lệnh",
|
"command": "Lệnh",
|
||||||
"args": "Args JSON",
|
"args": "Đối số JSON",
|
||||||
"headers": "Headers JSON",
|
"headers": "Header JSON",
|
||||||
"env": "Env JSON",
|
"env": "Môi trường JSON",
|
||||||
"timeout": "Thời gian chờ công cụ",
|
"timeout": "Thời gian chờ công cụ",
|
||||||
"advancedOptions": "Tùy chọn nâng cao",
|
"advancedOptions": "Tùy chọn nâng cao",
|
||||||
"hideAdvanced": "Ẩn nâng cao",
|
"hideAdvanced": "Ẩn nâng cao",
|
||||||
@ -484,8 +507,8 @@
|
|||||||
"importConfig": "Nhập",
|
"importConfig": "Nhập",
|
||||||
"restartRequired": "Khởi động lại nanobot để kết nối các công cụ MCP đã cập nhật.",
|
"restartRequired": "Khởi động lại nanobot để kết nối các công cụ MCP đã cập nhật.",
|
||||||
"toolsFound": "{{count}} công cụ",
|
"toolsFound": "{{count}} công cụ",
|
||||||
"loading": "Đang tải preset MCP...",
|
"loading": "Đang tải cấu hình đặt trước MCP...",
|
||||||
"empty": "Không có preset MCP nào khớp bộ lọc này.",
|
"empty": "Không có cấu hình đặt trước MCP nào khớp bộ lọc này.",
|
||||||
"openDocs": "Mở tài liệu",
|
"openDocs": "Mở tài liệu",
|
||||||
"test": "Kiểm tra",
|
"test": "Kiểm tra",
|
||||||
"remove": "Xóa",
|
"remove": "Xóa",
|
||||||
@ -503,6 +526,7 @@
|
|||||||
"statusMissingCredentials": "Cần khóa",
|
"statusMissingCredentials": "Cần khóa",
|
||||||
"statusMissingDependency": "Cần phụ thuộc",
|
"statusMissingDependency": "Cần phụ thuộc",
|
||||||
"statusComingSoon": "Sắp ra mắt",
|
"statusComingSoon": "Sắp ra mắt",
|
||||||
|
"comingSoon": "Sắp ra mắt",
|
||||||
"statusNotInstalled": "Chưa bật",
|
"statusNotInstalled": "Chưa bật",
|
||||||
"toolScope": "Công cụ",
|
"toolScope": "Công cụ",
|
||||||
"allTools": "Tất cả",
|
"allTools": "Tất cả",
|
||||||
@ -510,7 +534,7 @@
|
|||||||
"testForTools": "Chạy Kiểm tra để xem và chọn từng công cụ."
|
"testForTools": "Chạy Kiểm tra để xem và chọn từng công cụ."
|
||||||
},
|
},
|
||||||
"api": {
|
"api": {
|
||||||
"title": "Máy chủ API", "openaiCompatible": "API tương thích OpenAI", "description": "Kết nối SDK và agent qua endpoint /v1 cục bộ.",
|
"title": "Máy chủ API", "openaiCompatible": "API tương thích OpenAI", "description": "Kết nối SDK và tác nhân qua điểm cuối /v1 cục bộ.",
|
||||||
"start": "Khởi động API", "starting": "Đang khởi động...", "stop": "Dừng", "stopping": "Đang dừng...",
|
"start": "Khởi động API", "starting": "Đang khởi động...", "stop": "Dừng", "stopping": "Đang dừng...",
|
||||||
"access": "Truy cập", "thisDevice": "Thiết bị này", "localNetwork": "Mạng nội bộ",
|
"access": "Truy cập", "thisDevice": "Thiết bị này", "localNetwork": "Mạng nội bộ",
|
||||||
"localHelp": "Chỉ thiết bị này có thể kết nối.", "networkHelp": "Thiết bị khác có thể kết nối; cần khóa API.",
|
"localHelp": "Chỉ thiết bị này có thể kết nối.", "networkHelp": "Thiết bị khác có thể kết nối; cần khóa API.",
|
||||||
@ -544,7 +568,7 @@
|
|||||||
"restartRequired": "Khởi động lại nanobot để áp dụng ứng dụng và tính năng đã cập nhật."
|
"restartRequired": "Khởi động lại nanobot để áp dụng ứng dụng và tính năng đã cập nhật."
|
||||||
},
|
},
|
||||||
"channels": {
|
"channels": {
|
||||||
"description": "Kết nối nanobot với các ứng dụng chat. Cài đặt hỗ trợ chỉ thêm gói tích hợp; hầu hết kênh vẫn cần token hoặc cấu hình workspace.",
|
"description": "Kết nối nanobot với các ứng dụng chat. Cài đặt hỗ trợ chỉ thêm gói tích hợp; hầu hết kênh vẫn cần token hoặc cấu hình không gian làm việc.",
|
||||||
"caption": "{{enabled}} đã bật · {{total}} kênh",
|
"caption": "{{enabled}} đã bật · {{total}} kênh",
|
||||||
"searchPlaceholder": "Tìm kênh",
|
"searchPlaceholder": "Tìm kênh",
|
||||||
"backToChannels": "Tất cả kênh",
|
"backToChannels": "Tất cả kênh",
|
||||||
@ -565,6 +589,8 @@
|
|||||||
"advanced": "Nâng cao",
|
"advanced": "Nâng cao",
|
||||||
"checkAndEnable": "Kiểm tra và bật",
|
"checkAndEnable": "Kiểm tra và bật",
|
||||||
"checkConnection": "Kiểm tra kết nối",
|
"checkConnection": "Kiểm tra kết nối",
|
||||||
|
"connectionChecks": "Kiểm tra kết nối",
|
||||||
|
"open": "Mở",
|
||||||
"checkedAndEnabled": "Đã kiểm tra và bật.",
|
"checkedAndEnabled": "Đã kiểm tra và bật.",
|
||||||
"checking": "Đang kiểm tra...",
|
"checking": "Đang kiểm tra...",
|
||||||
"checkOnly": "Chỉ kiểm tra",
|
"checkOnly": "Chỉ kiểm tra",
|
||||||
@ -660,6 +686,8 @@
|
|||||||
"protected": "Được bảo vệ",
|
"protected": "Được bảo vệ",
|
||||||
"editTitle": "Sửa tự động hóa",
|
"editTitle": "Sửa tự động hóa",
|
||||||
"save": "Lưu",
|
"save": "Lưu",
|
||||||
|
"commandCopied": "Đã sao chép",
|
||||||
|
"copyCommand": "Sao chép",
|
||||||
"deleteTitle": "Xóa tự động hóa",
|
"deleteTitle": "Xóa tự động hóa",
|
||||||
"deleteDescription": "Thao tác này xóa {{name}} khỏi kho cron. Tin nhắn chat trước đó vẫn ở trong phiên.",
|
"deleteDescription": "Thao tác này xóa {{name}} khỏi kho cron. Tin nhắn chat trước đó vẫn ở trong phiên.",
|
||||||
"cancel": "Hủy",
|
"cancel": "Hủy",
|
||||||
@ -719,6 +747,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "Tên",
|
"name": "Tên",
|
||||||
"message": "Tin nhắn",
|
"message": "Tin nhắn",
|
||||||
|
"command": "Lệnh",
|
||||||
"scheduleType": "Loại lịch",
|
"scheduleType": "Loại lịch",
|
||||||
"every": "Mỗi",
|
"every": "Mỗi",
|
||||||
"unit": "Đơn vị",
|
"unit": "Đơn vị",
|
||||||
@ -753,7 +782,7 @@
|
|||||||
"signInAgain": "Đăng nhập lại",
|
"signInAgain": "Đăng nhập lại",
|
||||||
"signOut": "Đăng xuất",
|
"signOut": "Đăng xuất",
|
||||||
"signedInAs": "Đã đăng nhập bằng {{account}}",
|
"signedInAs": "Đã đăng nhập bằng {{account}}",
|
||||||
"signInHelp": "Inicia sesión desde este dispositivo; no se guarda API key en config.",
|
"signInHelp": "Đăng nhập từ thiết bị này; khóa API không được lưu trong config.",
|
||||||
"remoteSignInHelp": "Chọn Đăng nhập để mở xAI trên máy tính của bạn, sau đó dán mã ủy quyền được hiển thị sau khi đăng nhập.",
|
"remoteSignInHelp": "Chọn Đăng nhập để mở xAI trên máy tính của bạn, sau đó dán mã ủy quyền được hiển thị sau khi đăng nhập.",
|
||||||
"codexRemoteSignInHelp": "Đăng nhập trong trình duyệt này, sau đó dán lại URL callback localhost đầy đủ vào nanobot.",
|
"codexRemoteSignInHelp": "Đăng nhập trong trình duyệt này, sau đó dán lại URL callback localhost đầy đủ vào nanobot.",
|
||||||
"signInRequired": "Cần đăng nhập",
|
"signInRequired": "Cần đăng nhập",
|
||||||
@ -776,7 +805,7 @@
|
|||||||
"finishSignIn": "Hoàn tất đăng nhập"
|
"finishSignIn": "Hoàn tất đăng nhập"
|
||||||
},
|
},
|
||||||
"skills": {
|
"skills": {
|
||||||
"description": "Xem các kỹ năng chỉ dẫn mà agent này có thể tải trong cuộc trò chuyện.",
|
"description": "Xem các kỹ năng chỉ dẫn mà tác nhân này có thể tải trong cuộc trò chuyện.",
|
||||||
"caption": "{{available}} khả dụng · tổng {{total}}",
|
"caption": "{{available}} khả dụng · tổng {{total}}",
|
||||||
"views": "Chế độ xem kỹ năng",
|
"views": "Chế độ xem kỹ năng",
|
||||||
"installedTab": "Đã cài đặt",
|
"installedTab": "Đã cài đặt",
|
||||||
@ -784,34 +813,34 @@
|
|||||||
"customGroup": "Tùy chỉnh",
|
"customGroup": "Tùy chỉnh",
|
||||||
"builtinGroup": "Tích hợp sẵn",
|
"builtinGroup": "Tích hợp sẵn",
|
||||||
"otherGroup": "Khác",
|
"otherGroup": "Khác",
|
||||||
"searchInstalled": "Tìm skill đã cài đặt",
|
"searchInstalled": "Tìm kỹ năng đã cài đặt",
|
||||||
"filterAll": "Tất cả",
|
"filterAll": "Tất cả",
|
||||||
"filterEnabled": "Đã bật",
|
"filterEnabled": "Đã bật",
|
||||||
"filterDisabled": "Đã tắt",
|
"filterDisabled": "Đã tắt",
|
||||||
"noMatching": "Không có skill phù hợp.",
|
"noMatching": "Không có kỹ năng phù hợp.",
|
||||||
"statusDisabled": "Đã tắt",
|
"statusDisabled": "Đã tắt",
|
||||||
"statusEnabled": "Đã bật",
|
"statusEnabled": "Đã bật",
|
||||||
"statusNeedsSetup": "Cần thiết lập",
|
"statusNeedsSetup": "Cần thiết lập",
|
||||||
"showLess": "Thu gọn",
|
"showLess": "Thu gọn",
|
||||||
"showMore": "Hiển thị thêm",
|
"showMore": "Hiển thị thêm",
|
||||||
"enabledControl": "Sử dụng skill này",
|
"enabledControl": "Sử dụng kỹ năng này",
|
||||||
"enabledDescription": "Cho phép agent tải skill này khi các yêu cầu đã sẵn sàng.",
|
"enabledDescription": "Cho phép tác nhân tải kỹ năng này khi các yêu cầu đã sẵn sàng.",
|
||||||
"enableSkill": "Bật {{name}}",
|
"enableSkill": "Bật {{name}}",
|
||||||
"disableSkill": "Tắt {{name}}",
|
"disableSkill": "Tắt {{name}}",
|
||||||
"updateFailed": "Không thể cập nhật skill này.",
|
"updateFailed": "Không thể cập nhật kỹ năng này.",
|
||||||
"deleteTitle": "Xóa skill",
|
"deleteTitle": "Xóa kỹ năng",
|
||||||
"deleteDescription": "Xóa skill này khỏi workspace hiện tại.",
|
"deleteDescription": "Xóa kỹ năng này khỏi không gian làm việc hiện tại.",
|
||||||
"deleteAction": "Xóa",
|
"deleteAction": "Xóa",
|
||||||
"deleteFailed": "Không thể xóa skill này.",
|
"deleteFailed": "Không thể xóa kỹ năng này.",
|
||||||
"deleteConfirmTitle": "Xóa {{name}}?",
|
"deleteConfirmTitle": "Xóa {{name}}?",
|
||||||
"deleteConfirmDescription": "Thao tác này xóa các tệp skill khỏi workspace hiện tại và không thể hoàn tác.",
|
"deleteConfirmDescription": "Thao tác này xóa các tệp kỹ năng khỏi không gian làm việc hiện tại và không thể hoàn tác.",
|
||||||
"deleteConfirmAction": "Xóa skill",
|
"deleteConfirmAction": "Xóa kỹ năng",
|
||||||
"instructionsTitle": "Hướng dẫn skill",
|
"instructionsTitle": "Hướng dẫn kỹ năng",
|
||||||
"setupRequired": "Cần thiết lập",
|
"setupRequired": "Cần thiết lập",
|
||||||
"setupDescription": "Cài đặt phần phụ thuộc còn thiếu trên máy chạy nanobot rồi kiểm tra lại.",
|
"setupDescription": "Cài đặt phần phụ thuộc còn thiếu trên máy chạy nanobot rồi kiểm tra lại.",
|
||||||
"copySetupCommand": "Sao chép lệnh thiết lập",
|
"copySetupCommand": "Sao chép lệnh thiết lập",
|
||||||
"checkAgain": "Kiểm tra lại",
|
"checkAgain": "Kiểm tra lại",
|
||||||
"marketplaceSearchFailed": "Không thể tìm kiếm các kho kỹ năng.",
|
"marketplaceSearchFailed": "Không thể tìm kiếm các chợ kỹ năng.",
|
||||||
"marketplaceInstallFailed": "Không thể cài đặt kỹ năng này.",
|
"marketplaceInstallFailed": "Không thể cài đặt kỹ năng này.",
|
||||||
"marketplaceSearchPlaceholder": "Tìm kiếm kỹ năng",
|
"marketplaceSearchPlaceholder": "Tìm kiếm kỹ năng",
|
||||||
"marketplaceSearchLabel": "Tìm kiếm kỹ năng",
|
"marketplaceSearchLabel": "Tìm kiếm kỹ năng",
|
||||||
@ -824,7 +853,7 @@
|
|||||||
"marketplaceTrendingUnavailable": "Các kỹ năng thịnh hành tạm thời không khả dụng.",
|
"marketplaceTrendingUnavailable": "Các kỹ năng thịnh hành tạm thời không khả dụng.",
|
||||||
"marketplaceEmpty": "Không tìm thấy kỹ năng cho “{{query}}”.",
|
"marketplaceEmpty": "Không tìm thấy kỹ năng cho “{{query}}”.",
|
||||||
"marketplaceConfirmTitle": "Cài đặt {{name}}?",
|
"marketplaceConfirmTitle": "Cài đặt {{name}}?",
|
||||||
"marketplaceConfirmDescription": "Kỹ năng bên thứ ba này đến từ {{provider}} ({{source}}) và có thể chứa hướng dẫn hoặc tập lệnh thực thi.",
|
"marketplaceConfirmDescription": "Kỹ năng của bên thứ ba này đến từ {{provider}} ({{source}}) và có thể chứa hướng dẫn hoặc tập lệnh thực thi.",
|
||||||
"marketplaceConfirmInstall": "Cài đặt kỹ năng",
|
"marketplaceConfirmInstall": "Cài đặt kỹ năng",
|
||||||
"marketplaceOpen": "Mở {{name}} trên {{provider}}",
|
"marketplaceOpen": "Mở {{name}} trên {{provider}}",
|
||||||
"marketplaceOpenProvider": "Mở {{provider}}",
|
"marketplaceOpenProvider": "Mở {{provider}}",
|
||||||
@ -836,7 +865,7 @@
|
|||||||
"marketplaceInstall": "Cài đặt",
|
"marketplaceInstall": "Cài đặt",
|
||||||
"marketplaceNoTrend": "Chưa có xu hướng",
|
"marketplaceNoTrend": "Chưa có xu hướng",
|
||||||
"marketplaceTrendLabel": "Xu hướng lượt cài đặt trong 8 tuần",
|
"marketplaceTrendLabel": "Xu hướng lượt cài đặt trong 8 tuần",
|
||||||
"featured": "Kỹ năng agent",
|
"featured": "Kỹ năng của tác nhân",
|
||||||
"empty": "Không có kỹ năng nào khả dụng.",
|
"empty": "Không có kỹ năng nào khả dụng.",
|
||||||
"sourceWorkspace": "Tùy chỉnh",
|
"sourceWorkspace": "Tùy chỉnh",
|
||||||
"sourceBuiltin": "Tích hợp",
|
"sourceBuiltin": "Tích hợp",
|
||||||
@ -861,9 +890,9 @@
|
|||||||
"detailDescription": "Chi tiết cho {{name}}."
|
"detailDescription": "Chi tiết cho {{name}}."
|
||||||
},
|
},
|
||||||
"voice": {
|
"voice": {
|
||||||
"selectProvider": "Chon nha cung cap",
|
"selectProvider": "Chọn nhà cung cấp",
|
||||||
"configureProvider": "Cau hinh nha cung cap",
|
"configureProvider": "Cấu hình nhà cung cấp",
|
||||||
"languageAuto": "Tu dong"
|
"languageAuto": "Tự động"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
@ -877,34 +906,34 @@
|
|||||||
"actions": "Tác vụ cho chủ đề {{title}}",
|
"actions": "Tác vụ cho chủ đề {{title}}",
|
||||||
"newInProject": "Bắt đầu chủ đề mới trong {{project}}",
|
"newInProject": "Bắt đầu chủ đề mới trong {{project}}",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent running",
|
"running": "Tác nhân đang chạy",
|
||||||
"complete": "Agent finished",
|
"complete": "Tác nhân đã hoàn tất",
|
||||||
"updated": "New activity"
|
"updated": "Hoạt động mới"
|
||||||
},
|
},
|
||||||
"pin": "Pin",
|
"pin": "Ghim",
|
||||||
"unpin": "Unpin",
|
"unpin": "Bỏ ghim",
|
||||||
"rename": "Rename",
|
"rename": "Đổi tên",
|
||||||
"renameTitle": "Đổi tên chủ đề",
|
"renameTitle": "Đổi tên chủ đề",
|
||||||
"renameDescription": "Chọn tên hiển thị trong thanh bên cho chủ đề này.",
|
"renameDescription": "Chọn tên hiển thị trong thanh bên cho chủ đề này.",
|
||||||
"renamePlaceholder": "Tên chủ đề",
|
"renamePlaceholder": "Tên chủ đề",
|
||||||
"renameProjectTitle": "Rename project",
|
"renameProjectTitle": "Đổi tên dự án",
|
||||||
"renameProjectDescription": "Choose a local sidebar name for this project.",
|
"renameProjectDescription": "Chọn tên hiển thị cục bộ cho dự án này trên thanh bên.",
|
||||||
"renameProjectPlaceholder": "Project name",
|
"renameProjectPlaceholder": "Tên dự án",
|
||||||
"renameSave": "Save",
|
"renameSave": "Lưu",
|
||||||
"archive": "Archive",
|
"archive": "Lưu trữ",
|
||||||
"unarchive": "Unarchive",
|
"unarchive": "Bỏ lưu trữ",
|
||||||
"showArchived": "Show archived",
|
"showArchived": "Hiện mục đã lưu trữ",
|
||||||
"hideArchived": "Hide archived",
|
"hideArchived": "Ẩn mục đã lưu trữ",
|
||||||
"delete": "Xóa",
|
"delete": "Xóa",
|
||||||
"newChat": "Chủ đề mới",
|
"newChat": "Chủ đề mới",
|
||||||
"groups": {
|
"groups": {
|
||||||
"pinned": "Pinned",
|
"pinned": "Đã ghim",
|
||||||
"all": "Chủ đề",
|
"all": "Chủ đề",
|
||||||
"projects": "Projects",
|
"projects": "Dự án",
|
||||||
"today": "Today",
|
"today": "Hôm nay",
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "Hôm qua",
|
||||||
"earlier": "Earlier",
|
"earlier": "Trước đó",
|
||||||
"archived": "Archived"
|
"archived": "Đã lưu trữ"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deleteConfirm": {
|
"deleteConfirm": {
|
||||||
@ -970,25 +999,25 @@
|
|||||||
},
|
},
|
||||||
"more": {
|
"more": {
|
||||||
"title": "Thêm",
|
"title": "Thêm",
|
||||||
"prompt": "Cho tôi xem vài cách hữu ích mà bạn có thể giúp trong workspace này."
|
"prompt": "Cho tôi xem vài cách hữu ích mà bạn có thể giúp trong không gian làm việc này."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imageQuickActions": {
|
"imageQuickActions": {
|
||||||
"icon": {
|
"icon": {
|
||||||
"title": "Thiết kế biểu tượng app",
|
"title": "Thiết kế biểu tượng ứng dụng",
|
||||||
"prompt": "Tạo một biểu tượng ứng dụng 1:1 gọn gàng cho nanobot: robot thân thiện, phong cách vector đơn giản, bảng màu xanh trắng dịu, không có chữ."
|
"prompt": "Tạo một biểu tượng ứng dụng 1:1 gọn gàng cho nanobot: robot thân thiện, phong cách vector đơn giản, bảng màu xanh trắng dịu, không có chữ."
|
||||||
},
|
},
|
||||||
"sticker": {
|
"sticker": {
|
||||||
"title": "Tạo sticker",
|
"title": "Tạo nhãn dán",
|
||||||
"prompt": "Tạo một hình kiểu sticker dễ thương của trợ lý robot nhỏ, nền trông như trong suốt, biểu cảm và vui nhộn."
|
"prompt": "Tạo một hình kiểu nhãn dán dễ thương của trợ lý robot nhỏ, nền trông như trong suốt, biểu cảm và vui nhộn."
|
||||||
},
|
},
|
||||||
"poster": {
|
"poster": {
|
||||||
"title": "Tạo poster",
|
"title": "Tạo poster",
|
||||||
"prompt": "Tạo một ý tưởng poster chỉn chu cho trợ lý AI cá nhân, bố cục hiện đại, phân cấp thị giác rõ, phù hợp cho landing page."
|
"prompt": "Tạo một ý tưởng poster chỉn chu cho trợ lý AI cá nhân, bố cục hiện đại, phân cấp thị giác rõ, phù hợp cho trang đích."
|
||||||
},
|
},
|
||||||
"product": {
|
"product": {
|
||||||
"title": "Mockup sản phẩm",
|
"title": "Mô hình mẫu sản phẩm",
|
||||||
"prompt": "Tạo một hình mockup sản phẩm gọn gàng cho ứng dụng web AI hội thoại, giao diện tối giản, ánh sáng cao cấp, khung thiết bị chân thực."
|
"prompt": "Tạo một hình mô hình mẫu sản phẩm gọn gàng cho ứng dụng web AI hội thoại, giao diện tối giản, ánh sáng cao cấp, khung thiết bị chân thực."
|
||||||
},
|
},
|
||||||
"portrait": {
|
"portrait": {
|
||||||
"title": "Chân dung cách điệu",
|
"title": "Chân dung cách điệu",
|
||||||
@ -1069,7 +1098,7 @@
|
|||||||
"auto": "Tự động",
|
"auto": "Tự động",
|
||||||
"1_1": "Vuông 1:1",
|
"1_1": "Vuông 1:1",
|
||||||
"3_4": "Dọc 3:4",
|
"3_4": "Dọc 3:4",
|
||||||
"9_16": "Story 9:16",
|
"9_16": "Tin 9:16",
|
||||||
"4_3": "Ngang 4:3",
|
"4_3": "Ngang 4:3",
|
||||||
"16_9": "Rộng 16:9"
|
"16_9": "Rộng 16:9"
|
||||||
}
|
}
|
||||||
@ -1109,7 +1138,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "Dừng tác vụ hiện tại",
|
"title": "Dừng tác vụ hiện tại",
|
||||||
"description": "Hủy lượt agent đang chạy trong cuộc trò chuyện này."
|
"description": "Hủy lượt của tác nhân đang chạy trong cuộc trò chuyện này."
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "Khởi động lại nanobot",
|
"title": "Khởi động lại nanobot",
|
||||||
@ -1117,11 +1146,11 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "Hiển thị trạng thái",
|
"title": "Hiển thị trạng thái",
|
||||||
"description": "Hiển thị trạng thái runtime, provider và channel."
|
"description": "Hiển thị trạng thái thời gian chạy, nhà cung cấp và kênh."
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "Mô hình",
|
"title": "Mô hình",
|
||||||
"description": "Hiển thị hoặc chuyển preset mô hình đang hoạt động."
|
"description": "Hiển thị hoặc chuyển cấu hình đặt trước của mô hình đang hoạt động."
|
||||||
},
|
},
|
||||||
"history": {
|
"history": {
|
||||||
"title": "Hiển thị lịch sử",
|
"title": "Hiển thị lịch sử",
|
||||||
@ -1137,19 +1166,19 @@
|
|||||||
},
|
},
|
||||||
"dream_restore": {
|
"dream_restore": {
|
||||||
"title": "Khôi phục bộ nhớ",
|
"title": "Khôi phục bộ nhớ",
|
||||||
"description": "Đưa bộ nhớ về một snapshot Dream trước đó."
|
"description": "Đưa bộ nhớ về một ảnh chụp Dream trước đó."
|
||||||
},
|
},
|
||||||
"dream_prompt": {
|
"dream_prompt": {
|
||||||
"title": "Bộ nhớ Dream",
|
"title": "Bộ nhớ Dream",
|
||||||
"description": "Cho Dream biết cách sắp xếp bộ nhớ của workspace này."
|
"description": "Cho Dream biết cách sắp xếp bộ nhớ của không gian làm việc này."
|
||||||
},
|
},
|
||||||
"goal": {
|
"goal": {
|
||||||
"title": "Mục tiêu dài hạn",
|
"title": "Mục tiêu dài hạn",
|
||||||
"description": "Yêu cầu agent xử lý đây là mục tiêu nhiều bước kéo dài."
|
"description": "Yêu cầu tác nhân xử lý đây là mục tiêu nhiều bước kéo dài."
|
||||||
},
|
},
|
||||||
"trigger": {
|
"trigger": {
|
||||||
"title": "Tạo trigger cục bộ",
|
"title": "Tạo trình kích hoạt cục bộ",
|
||||||
"description": "Tạo trigger CLI gắn với phiên chat này."
|
"description": "Tạo trình kích hoạt CLI gắn với phiên chat này."
|
||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"title": "Hiển thị trợ giúp",
|
"title": "Hiển thị trợ giúp",
|
||||||
@ -1195,10 +1224,12 @@
|
|||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "Dùng @{{name}} như ứng dụng CLI cục bộ",
|
"cliDescription": "Dùng @{{name}} như ứng dụng CLI cục bộ",
|
||||||
"mcpDescription": "Dùng @{{name}} như máy chủ MCP"
|
"mcpDescription": "Dùng @{{name}} như máy chủ MCP",
|
||||||
|
"cliTitle": "Ứng dụng CLI: {{name}}",
|
||||||
|
"mcpTitle": "Máy chủ MCP: {{name}}"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "Chế độ truy cập workspace",
|
"accessAria": "Chế độ truy cập không gian làm việc",
|
||||||
"projectAria": "Chọn dự án",
|
"projectAria": "Chọn dự án",
|
||||||
"projectPlaceholder": "Chọn dự án",
|
"projectPlaceholder": "Chọn dự án",
|
||||||
"default": "Quyền mặc định",
|
"default": "Quyền mặc định",
|
||||||
@ -1211,11 +1242,12 @@
|
|||||||
"loadEarlier": "Tải tin nhắn trước đó",
|
"loadEarlier": "Tải tin nhắn trước đó",
|
||||||
"forkedFromHistory": "Tách nhánh từ lịch sử",
|
"forkedFromHistory": "Tách nhánh từ lịch sử",
|
||||||
"promptNavigator": {
|
"promptNavigator": {
|
||||||
"open": "Mở trình điều hướng prompt",
|
"open": "Mở trình điều hướng lời nhắc",
|
||||||
"title": "Prompt",
|
"title": "Lời nhắc",
|
||||||
"search": "Tìm prompt",
|
"search": "Tìm lời nhắc",
|
||||||
"noResults": "Không có prompt phù hợp.",
|
"noResults": "Không có lời nhắc phù hợp.",
|
||||||
"jumpTo": "Nhảy tới prompt: {{label}}"
|
"jumpTo": "Nhảy tới lời nhắc: {{label}}",
|
||||||
|
"railAria": "Điều hướng lời nhắc của người dùng"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1239,19 +1271,27 @@
|
|||||||
"agentActivityLiveSummary": "Đang chạy… · {{reasoning}} bước · {{tools}} lần gọi công cụ",
|
"agentActivityLiveSummary": "Đang chạy… · {{reasoning}} bước · {{tools}} lần gọi công cụ",
|
||||||
"agentActivityLiveToolsOnly": "Đang chạy… · {{tools}} lần gọi công cụ",
|
"agentActivityLiveToolsOnly": "Đang chạy… · {{tools}} lần gọi công cụ",
|
||||||
"imageAttachment": "Tệp hình ảnh đính kèm",
|
"imageAttachment": "Tệp hình ảnh đính kèm",
|
||||||
|
"videoAttachment": "Tệp video đính kèm",
|
||||||
|
"fileAttachment": "Tệp đính kèm",
|
||||||
|
"attachmentUnavailable": "Tệp đính kèm không khả dụng",
|
||||||
|
"dataTable": "Bảng dữ liệu",
|
||||||
|
"fileEditPreparing": "Đang chuẩn bị sửa tệp…",
|
||||||
|
"openLink": "Mở liên kết: {{label}}",
|
||||||
|
"openAttachment": "Mở {{name}}",
|
||||||
|
"skill": "Kỹ năng: {{name}}",
|
||||||
"askAboutSelection": "Hỏi về nội dung này",
|
"askAboutSelection": "Hỏi về nội dung này",
|
||||||
"forkFromHere": "Tách nhánh",
|
"forkFromHere": "Tách nhánh",
|
||||||
"copyReply": "Sao chép",
|
"copyReply": "Sao chép",
|
||||||
"copiedReply": "Đã sao chép",
|
"copiedReply": "Đã sao chép",
|
||||||
"turnLatencyTitle": "Thời gian phản hồi (end-to-end)",
|
"turnLatencyTitle": "Thời gian phản hồi (end-to-end)",
|
||||||
"fileEditViewDiff": "Xem diff",
|
"fileEditViewDiff": "Xem khác biệt",
|
||||||
"fileEditViewLargeDiff": "Xem diff lớn",
|
"fileEditViewLargeDiff": "Xem khác biệt lớn",
|
||||||
"fileEditDiffLineCount": "{{count}} dòng",
|
"fileEditDiffLineCount": "{{count}} dòng",
|
||||||
"fileEditUnchangedLinesHidden": "Đã ẩn {{count}} dòng không đổi",
|
"fileEditUnchangedLinesHidden": "Đã ẩn {{count}} dòng không đổi",
|
||||||
"fileEditShowMoreLines": "Hiển thị thêm {{count}} dòng",
|
"fileEditShowMoreLines": "Hiển thị thêm {{count}} dòng",
|
||||||
"fileEditShowFewerLines": "Hiển thị ít dòng hơn",
|
"fileEditShowFewerLines": "Hiển thị ít dòng hơn",
|
||||||
"fileEditOpenFile": "Mở tệp",
|
"fileEditOpenFile": "Mở tệp",
|
||||||
"fileEditDiffTruncated": "Diff đã bị cắt bớt. Mở tệp để xem toàn bộ thay đổi.",
|
"fileEditDiffTruncated": "Khác biệt đã bị cắt bớt. Mở tệp để xem toàn bộ thay đổi.",
|
||||||
"activityThinkingFor": "Đang suy nghĩ trong {{duration}}",
|
"activityThinkingFor": "Đang suy nghĩ trong {{duration}}",
|
||||||
"activityThought": "Đã suy nghĩ",
|
"activityThought": "Đã suy nghĩ",
|
||||||
"activityThoughtFor": "Đã suy nghĩ trong {{duration}}",
|
"activityThoughtFor": "Đã suy nghĩ trong {{duration}}",
|
||||||
@ -1279,6 +1319,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "Xem trước tệp",
|
"aria": "Xem trước tệp",
|
||||||
|
"breadcrumb": "Đường dẫn tệp",
|
||||||
"close": "Đóng xem trước tệp",
|
"close": "Đóng xem trước tệp",
|
||||||
"loading": "Đang tải bản xem trước...",
|
"loading": "Đang tải bản xem trước...",
|
||||||
"failed": "Không thể xem trước tệp này.",
|
"failed": "Không thể xem trước tệp này.",
|
||||||
@ -1293,7 +1334,10 @@
|
|||||||
"copied": "Đã sao chép"
|
"copied": "Đã sao chép"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "Đóng"
|
"dismiss": "Đóng",
|
||||||
|
"close": "Đóng",
|
||||||
|
"current": "Hiện tại",
|
||||||
|
"cancel": "Hủy"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
@ -1301,8 +1345,8 @@
|
|||||||
"body": "Máy chủ đã từ chối tin nhắn trước vì vượt quá giới hạn kích thước. Hãy bớt ảnh hoặc chọn tệp nhỏ hơn rồi thử lại."
|
"body": "Máy chủ đã từ chối tin nhắn trước vì vượt quá giới hạn kích thước. Hãy bớt ảnh hoặc chọn tệp nhỏ hơn rồi thử lại."
|
||||||
},
|
},
|
||||||
"workspaceScopeRejected": {
|
"workspaceScopeRejected": {
|
||||||
"title": "Workspace không thay đổi",
|
"title": "Không gian làm việc không thay đổi",
|
||||||
"body": "Gateway đã từ chối dự án hoặc chế độ truy cập được yêu cầu, nên Nanobot giữ workspace trước đó."
|
"body": "Gateway đã từ chối dự án hoặc chế độ truy cập được yêu cầu, nên Nanobot giữ không gian làm việc trước đó."
|
||||||
},
|
},
|
||||||
"turnRejected": {
|
"turnRejected": {
|
||||||
"title": "Tin nhắn chưa được gửi",
|
"title": "Tin nhắn chưa được gửi",
|
||||||
@ -1311,7 +1355,7 @@
|
|||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"defaultProject": "Workspace mặc định",
|
"defaultProject": "Không gian làm việc mặc định",
|
||||||
"manual": "Dán đường dẫn",
|
"manual": "Dán đường dẫn",
|
||||||
"manualPlaceholder": "/Users/name/project",
|
"manualPlaceholder": "/Users/name/project",
|
||||||
"usePath": "Dùng đường dẫn",
|
"usePath": "Dùng đường dẫn",
|
||||||
|
|||||||
@ -7,18 +7,18 @@
|
|||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
"title": "无法连接到 nanobot",
|
"title": "无法连接到 nanobot",
|
||||||
"gatewayHint": "请确认 gateway 已启动(`nanobot gateway`),并且当前页面与 gateway 运行在同一台机器上。"
|
"gatewayHint": "请确认网关已启动(`nanobot gateway`),并且当前页面与网关运行在同一台机器上。"
|
||||||
},
|
},
|
||||||
"auth": {
|
"auth": {
|
||||||
"title": "需要验证",
|
"title": "需要验证",
|
||||||
"hint": "请输入 gateway 配置中的 tokenIssueSecret。",
|
"hint": "请输入网关配置中的 tokenIssueSecret。",
|
||||||
"placeholder": "密码",
|
"placeholder": "密码",
|
||||||
"submit": "连接",
|
"submit": "连接",
|
||||||
"invalid": "密码无效,请重试。"
|
"invalid": "密码无效,请重试。"
|
||||||
},
|
},
|
||||||
"account": {
|
"account": {
|
||||||
"section": "账户",
|
"section": "账户",
|
||||||
"logoutHint": "断开此浏览器与 gateway 的连接。",
|
"logoutHint": "断开此浏览器与网关的连接。",
|
||||||
"logout": "退出登录"
|
"logout": "退出登录"
|
||||||
},
|
},
|
||||||
"system": {
|
"system": {
|
||||||
@ -38,6 +38,15 @@
|
|||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "nanobot Web UI —— 与你的 nanobot 工作区对话。"
|
"description": "nanobot Web UI —— 与你的 nanobot 工作区对话。"
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "配对聊天用户",
|
||||||
|
"description": "输入聊天中显示的配对码。",
|
||||||
|
"code": "配对码",
|
||||||
|
"matched": "已匹配 {{channel}},正在连接…",
|
||||||
|
"expiresInline": "配对码将于 {{expires}} 过期。",
|
||||||
|
"queueCount": "{{count}} 个待处理",
|
||||||
|
"noMatch": "没有待处理请求与此配对码匹配。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -75,7 +84,7 @@
|
|||||||
"providers": "提供商",
|
"providers": "提供商",
|
||||||
"image": "图片",
|
"image": "图片",
|
||||||
"voice": "语音",
|
"voice": "语音",
|
||||||
"browser": "网页",
|
"browser": "网络",
|
||||||
"channels": "渠道",
|
"channels": "渠道",
|
||||||
"cliApps": "CLI 应用",
|
"cliApps": "CLI 应用",
|
||||||
"mcp": "MCP",
|
"mcp": "MCP",
|
||||||
@ -95,8 +104,8 @@
|
|||||||
"presets": "预设",
|
"presets": "预设",
|
||||||
"imageGeneration": "图片生成",
|
"imageGeneration": "图片生成",
|
||||||
"imageDefaults": "默认值",
|
"imageDefaults": "默认值",
|
||||||
"webSearch": "网页搜索",
|
"webSearch": "网络搜索",
|
||||||
"webBehavior": "行为",
|
"webBehavior": "网络行为",
|
||||||
"cliApps": "CLI 应用",
|
"cliApps": "CLI 应用",
|
||||||
"mcp": "MCP 服务",
|
"mcp": "MCP 服务",
|
||||||
"regional": "区域",
|
"regional": "区域",
|
||||||
@ -129,7 +138,7 @@
|
|||||||
"advancedOptions": "高级选项",
|
"advancedOptions": "高级选项",
|
||||||
"advancedSummary": "上下文 {{context}} · 最大输出 {{max}} tokens",
|
"advancedSummary": "上下文 {{context}} · 最大输出 {{max}} tokens",
|
||||||
"maxTokens": "最大输出 tokens",
|
"maxTokens": "最大输出 tokens",
|
||||||
"temperature": "Temperature",
|
"temperature": "温度",
|
||||||
"reasoningEffort": "推理强度",
|
"reasoningEffort": "推理强度",
|
||||||
"convertTitle": "转换现有模型设置",
|
"convertTitle": "转换现有模型设置",
|
||||||
"convertHelp": "把现有主模型和备用模型转换成预设,之后即可在这里管理调用顺序。",
|
"convertHelp": "把现有主模型和备用模型转换成预设,之后即可在这里管理调用顺序。",
|
||||||
@ -175,7 +184,7 @@
|
|||||||
"presetModel": "预设模型",
|
"presetModel": "预设模型",
|
||||||
"density": "密度",
|
"density": "密度",
|
||||||
"activityMode": "活动详情",
|
"activityMode": "活动详情",
|
||||||
"fileEditDisplay": "文件编辑展示",
|
"fileEditDisplay": "文件编辑显示",
|
||||||
"codeWrap": "代码换行",
|
"codeWrap": "代码换行",
|
||||||
"brandLogos": "品牌 Logo",
|
"brandLogos": "品牌 Logo",
|
||||||
"maxResults": "最大结果数",
|
"maxResults": "最大结果数",
|
||||||
@ -217,16 +226,16 @@
|
|||||||
"selectedModelProvider": "由选中的模型决定。",
|
"selectedModelProvider": "由选中的模型决定。",
|
||||||
"selectedModelValue": "由选中的模型决定。",
|
"selectedModelValue": "由选中的模型决定。",
|
||||||
"selectedPreset": "命名预设在这里只读;请在 config.json 中编辑。",
|
"selectedPreset": "命名预设在这里只读;请在 config.json 中编辑。",
|
||||||
"presetModel": "切回 Default 后可在 WebUI 中编辑模型和提供商。",
|
"presetModel": "切回默认预设后可在 WebUI 中编辑模型和提供商。",
|
||||||
"density": "只保存在此浏览器中。",
|
"density": "只保存在此浏览器中。",
|
||||||
"activityMode": "选择默认显示多少 agent 活动细节。",
|
"activityMode": "选择默认显示多少智能体活动详情。",
|
||||||
"fileEditDisplay": "选择文件编辑活动默认显示行数还是差异。",
|
"fileEditDisplay": "选择文件编辑活动默认显示行数还是差异。",
|
||||||
"codeWrap": "让长代码行在小屏幕上也易读。",
|
"codeWrap": "让长代码行在小屏幕上也易读。",
|
||||||
"brandLogos": "在设置中显示第三方提供商和 CLI 图标。",
|
"brandLogos": "在设置中显示第三方提供商和 CLI 图标。",
|
||||||
"maxResults": "每次 web_search 调用返回的结果数。",
|
"maxResults": "每次 web_search 调用返回的结果数。",
|
||||||
"timeout": "搜索提供商请求超时前的秒数。",
|
"timeout": "搜索提供商请求超时前等待的秒数。",
|
||||||
"jinaReader": "可用时为 web_fetch 使用 Jina Reader。",
|
"jinaReader": "可用时为 web_fetch 使用 Jina Reader。",
|
||||||
"imageGeneration": "配置图片提供商后,在聊天中开放 generate_image。",
|
"imageGeneration": "配置图片提供商后,即可在聊天中使用 generate_image。",
|
||||||
"imageProvider": "选择 generate_image 使用的注册提供商。",
|
"imageProvider": "选择 generate_image 使用的注册提供商。",
|
||||||
"imageProviderStatus": "图片生成会复用「提供商」里的凭据。",
|
"imageProviderStatus": "图片生成会复用「提供商」里的凭据。",
|
||||||
"imageModel": "选择当前图片提供商支持的模型。",
|
"imageModel": "选择当前图片提供商支持的模型。",
|
||||||
@ -246,7 +255,7 @@
|
|||||||
"contextWindow": "选择此模型配置的默认上下文预算。",
|
"contextWindow": "选择此模型配置的默认上下文预算。",
|
||||||
"transcription": "发送前先把麦克风输入转写到输入框。聊天渠道里的语音消息也使用同一套设置。",
|
"transcription": "发送前先把麦克风输入转写到输入框。聊天渠道里的语音消息也使用同一套设置。",
|
||||||
"transcriptionProvider": "使用「提供商」中对应提供商的凭据。",
|
"transcriptionProvider": "使用「提供商」中对应提供商的凭据。",
|
||||||
"transcriptionProviderStatus": "API Key 仍保存在 providers 里,不写进 transcription 设置。",
|
"transcriptionProviderStatus": "API 密钥仍保存在“提供商”配置中,不写入“语音转写”设置。",
|
||||||
"transcriptionModel": "除非提供商需要自定义模型 ID,否则保持解析后的默认值即可。",
|
"transcriptionModel": "除非提供商需要自定义模型 ID,否则保持解析后的默认值即可。",
|
||||||
"transcriptionLanguage": "可选 ISO-639 语言提示,例如 en、zh、ja 或 ko。"
|
"transcriptionLanguage": "可选 ISO-639 语言提示,例如 en、zh、ja 或 ko。"
|
||||||
},
|
},
|
||||||
@ -331,15 +340,16 @@
|
|||||||
"setup": "连接",
|
"setup": "连接",
|
||||||
"configure": "连接",
|
"configure": "连接",
|
||||||
"connectTitle": "连接 {{name}}",
|
"connectTitle": "连接 {{name}}",
|
||||||
"connectHint": "填入你账户里的 key。",
|
"connectHint": "填入账户中的密钥。",
|
||||||
"saveAndEnable": "保存并启用",
|
"saveAndEnable": "保存并启用",
|
||||||
"updateSetup": "更新配置",
|
"updateSetup": "更新配置",
|
||||||
"configured": "已配置",
|
"configured": "已配置",
|
||||||
"keepExisting": "留空则保留当前值",
|
"keepExisting": "留空则保留当前值",
|
||||||
"statusConfigured": "已配置",
|
"statusConfigured": "已配置",
|
||||||
"statusMissingCredentials": "需要 key",
|
"statusMissingCredentials": "需要密钥",
|
||||||
"statusMissingDependency": "缺少依赖",
|
"statusMissingDependency": "缺少依赖",
|
||||||
"statusComingSoon": "暂不支持",
|
"statusComingSoon": "暂不支持",
|
||||||
|
"comingSoon": "即将推出",
|
||||||
"statusNotInstalled": "未启用",
|
"statusNotInstalled": "未启用",
|
||||||
"toolScope": "工具",
|
"toolScope": "工具",
|
||||||
"allTools": "全部",
|
"allTools": "全部",
|
||||||
@ -355,7 +365,7 @@
|
|||||||
"restartPending": "等待重启",
|
"restartPending": "等待重启",
|
||||||
"ready": "就绪",
|
"ready": "就绪",
|
||||||
"privateEngine": "私有引擎",
|
"privateEngine": "私有引擎",
|
||||||
"unixSocket": "Unix socket",
|
"unixSocket": "Unix 套接字",
|
||||||
"defaultWorkspace": "默认工作区",
|
"defaultWorkspace": "默认工作区",
|
||||||
"comfortable": "舒适",
|
"comfortable": "舒适",
|
||||||
"compact": "紧凑",
|
"compact": "紧凑",
|
||||||
@ -372,7 +382,10 @@
|
|||||||
"configured": "已配置",
|
"configured": "已配置",
|
||||||
"notConfigured": "未配置",
|
"notConfigured": "未配置",
|
||||||
"pending": "等待中",
|
"pending": "等待中",
|
||||||
"restartingEngine": "正在重启"
|
"restartingEngine": "正在重启",
|
||||||
|
"checking": "检查中",
|
||||||
|
"running": "运行中",
|
||||||
|
"needsSetup": "需要设置"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "正在加载设置...",
|
"loading": "正在加载设置...",
|
||||||
@ -400,51 +413,52 @@
|
|||||||
"delete": "删除",
|
"delete": "删除",
|
||||||
"deleting": "正在删除...",
|
"deleting": "正在删除...",
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
|
"dismiss": "关闭",
|
||||||
"open": "打开",
|
"open": "打开",
|
||||||
"export": "导出",
|
"export": "导出",
|
||||||
"opening": "正在打开...",
|
"opening": "正在打开...",
|
||||||
"exporting": "正在导出..."
|
"exporting": "正在导出..."
|
||||||
},
|
},
|
||||||
"byok": {
|
"byok": {
|
||||||
"description": "自带服务商密钥。Nanobot 会从当前 config 读取这些值,只有已配置的服务商才能用于模型预设。",
|
"description": "使用自己的提供商密钥。nanobot 会从当前配置读取这些值,只有已配置的提供商才能用于模型预设。",
|
||||||
"configured": "已配置",
|
"configured": "已配置",
|
||||||
"notConfigured": "未配置",
|
"notConfigured": "未配置",
|
||||||
"configuredSection": "已配置",
|
"configuredSection": "已配置",
|
||||||
"notConfiguredSection": "未配置",
|
"notConfiguredSection": "未配置",
|
||||||
"showMore": "再显示 {{count}} 个",
|
"showMore": "再显示 {{count}} 个",
|
||||||
"showLess": "收起",
|
"showLess": "收起",
|
||||||
"apiKey": "API key",
|
"apiKey": "API 密钥",
|
||||||
"apiBase": "API base",
|
"apiBase": "API 基础地址",
|
||||||
"apiKeyPlaceholder": "输入 API key",
|
"apiKeyPlaceholder": "输入 API 密钥",
|
||||||
"apiKeyConfiguredPlaceholder": "留空则保留当前 key",
|
"apiKeyConfiguredPlaceholder": "留空则保留当前密钥",
|
||||||
"configuredKeyHint": "已配置的 key",
|
"configuredKeyHint": "已配置的密钥",
|
||||||
"apiBasePlaceholder": "使用服务商默认地址",
|
"apiBasePlaceholder": "使用提供商默认地址",
|
||||||
"apiKeyRequired": "需要 API key 才能配置此服务商。",
|
"apiKeyRequired": "需要 API 密钥才能配置此提供商。",
|
||||||
"showApiKey": "显示 API key",
|
"showApiKey": "显示 API 密钥",
|
||||||
"hideApiKey": "隐藏 API key",
|
"hideApiKey": "隐藏 API 密钥",
|
||||||
"noConfiguredProviders": "没有已配置的服务商",
|
"noConfiguredProviders": "没有已配置的提供商",
|
||||||
"configureFirst": "请先在 BYOK 里配置服务商。",
|
"configureFirst": "请先在 BYOK 中配置提供商。",
|
||||||
"openByok": "打开 BYOK",
|
"openByok": "打开 BYOK",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"ariaLabel": "BYOK 凭证类型",
|
"ariaLabel": "BYOK 凭证类型",
|
||||||
"llm": "LLM",
|
"llm": "LLM",
|
||||||
"webSearch": "网页搜索"
|
"webSearch": "网络搜索"
|
||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "搜索服务商",
|
"provider": "搜索提供商",
|
||||||
"providerHelp": "选择网页搜索工具使用的后端。",
|
"providerHelp": "选择网络搜索工具使用的后端。",
|
||||||
"selectProvider": "选择服务商",
|
"selectProvider": "选择提供商",
|
||||||
"credentials": "凭证",
|
"credentials": "凭证",
|
||||||
"noCredentialRequired": "无需 key",
|
"noCredentialRequired": "无需密钥",
|
||||||
"noCredentialHelp": "DuckDuckGo 不需要保存 API key。",
|
"noCredentialHelp": "DuckDuckGo 无需保存 API 密钥。",
|
||||||
"apiKeyHelp": "保存到 config 后只显示掩码提示。",
|
"apiKeyHelp": "保存到 config 后仅显示掩码。",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "基础 URL",
|
||||||
"baseUrlHelp": "SearXNG 需要你自己的实例地址。",
|
"baseUrlHelp": "SearXNG 需要你自己的实例地址。",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "这个搜索服务商需要 API key。",
|
"apiKeyRequired": "此搜索提供商需要 API 密钥。",
|
||||||
"baseUrlRequired": "SearXNG 需要 Base URL。",
|
"baseUrlRequired": "SearXNG 需要基础 URL。",
|
||||||
"missingCredential": "填写所需凭证后才能保存。",
|
"missingCredential": "填写所需凭证后才能保存。",
|
||||||
"saveHint": "改动会应用到新的网页搜索请求。"
|
"saveHint": "改动会应用到新的网络搜索请求。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -452,19 +466,19 @@
|
|||||||
"providers": "提供商",
|
"providers": "提供商",
|
||||||
"configuredCount": "已配置 {{count}} 个",
|
"configuredCount": "已配置 {{count}} 个",
|
||||||
"totalProviders": "共 {{count}} 个可用",
|
"totalProviders": "共 {{count}} 个可用",
|
||||||
"webSearch": "网页搜索",
|
"webSearch": "网络搜索",
|
||||||
"imageGeneration": "图片生成",
|
"imageGeneration": "图片生成",
|
||||||
"voiceInput": "语音识别",
|
"voiceInput": "语音识别",
|
||||||
"workspace": "工作区"
|
"workspace": "工作区"
|
||||||
},
|
},
|
||||||
"usage": {
|
"usage": {
|
||||||
"title": "Token 活动",
|
"title": "Token 用量",
|
||||||
"shortTitle": "Token Usage",
|
"shortTitle": "Token 用量",
|
||||||
"subtitle": "最近 12 个月由提供商上报的 token 用量。",
|
"subtitle": "最近 12 个月由提供商上报的 Token 用量。",
|
||||||
"empty": "新的模型回复产生后,这里会显示 token 活动。",
|
"empty": "模型产生新的回复后,这里会显示 Token 用量。",
|
||||||
"totalTokens": "累计 Token 数",
|
"totalTokens": "Token 总数",
|
||||||
"peakTokens": "峰值 Token 数",
|
"peakTokens": "Token 峰值",
|
||||||
"thirtyDayTokens": "30 天 Token 数",
|
"thirtyDayTokens": "30 天 Token 用量",
|
||||||
"currentStreak": "当前连续天数",
|
"currentStreak": "当前连续天数",
|
||||||
"longestStreak": "最长连续天数",
|
"longestStreak": "最长连续天数",
|
||||||
"daysValue": "{{count}} 天",
|
"daysValue": "{{count}} 天",
|
||||||
@ -509,13 +523,23 @@
|
|||||||
"selectProvider": "选择提供商",
|
"selectProvider": "选择提供商",
|
||||||
"selectAspect": "选择比例",
|
"selectAspect": "选择比例",
|
||||||
"selectSize": "选择尺寸",
|
"selectSize": "选择尺寸",
|
||||||
|
"selectModel": "选择图片模型",
|
||||||
|
"searchOrTypeModel": "搜索或输入模型 ID",
|
||||||
|
"typeModelId": "输入此提供商支持的模型 ID。",
|
||||||
"configureProvider": "配置提供商",
|
"configureProvider": "配置提供商",
|
||||||
"missingCredential": "启用图片生成前请先配置此提供商。"
|
"missingCredential": "启用图片生成前请先配置此提供商。"
|
||||||
},
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "提供商支持",
|
||||||
|
"providerInstallOnSave": "保存此提供商时会自动安装所需支持。",
|
||||||
|
"searchSupport": "搜索提供商支持",
|
||||||
|
"searchInstallOnSave": "保存时会自动安装 Olostep 支持。",
|
||||||
|
"installing": "正在安装支持…"
|
||||||
|
},
|
||||||
"api": {
|
"api": {
|
||||||
"title": "API 服务",
|
"title": "API 服务",
|
||||||
"openaiCompatible": "OpenAI 兼容 API",
|
"openaiCompatible": "OpenAI 兼容 API",
|
||||||
"description": "让 SDK 和其他 Agent 通过本地 /v1 接口连接 nanobot。",
|
"description": "让 SDK 和其他智能体通过本地 /v1 接口连接 nanobot。",
|
||||||
"start": "启动 API 服务",
|
"start": "启动 API 服务",
|
||||||
"starting": "正在启动...",
|
"starting": "正在启动...",
|
||||||
"stop": "停止",
|
"stop": "停止",
|
||||||
@ -524,13 +548,13 @@
|
|||||||
"thisDevice": "仅此设备",
|
"thisDevice": "仅此设备",
|
||||||
"localNetwork": "局域网",
|
"localNetwork": "局域网",
|
||||||
"localHelp": "只有当前设备可以连接。",
|
"localHelp": "只有当前设备可以连接。",
|
||||||
"networkHelp": "局域网内其他设备可以连接,因此必须设置 API Key。",
|
"networkHelp": "局域网内其他设备可以连接,因此必须设置 API 密钥。",
|
||||||
"port": "端口",
|
"port": "端口",
|
||||||
"portHelp": "API 服务使用的本地端口。",
|
"portHelp": "API 服务使用的本地端口。",
|
||||||
"apiKey": "API Key",
|
"apiKey": "API 密钥",
|
||||||
"apiKeyHelp": "客户端使用 Bearer Token 发送此密钥。",
|
"apiKeyHelp": "客户端使用 Bearer Token 发送此密钥。",
|
||||||
"apiKeyRequired": "向局域网开放 API 前必须设置密钥。",
|
"apiKeyRequired": "向局域网开放 API 前必须设置密钥。",
|
||||||
"apiKeyPlaceholder": "输入 API Key",
|
"apiKeyPlaceholder": "输入 API 密钥",
|
||||||
"autoInstall": "启动时会自动安装 API 支持。"
|
"autoInstall": "启动时会自动安装 API 支持。"
|
||||||
},
|
},
|
||||||
"observability": {
|
"observability": {
|
||||||
@ -540,7 +564,7 @@
|
|||||||
"enable": "启用追踪支持"
|
"enable": "启用追踪支持"
|
||||||
},
|
},
|
||||||
"apps": {
|
"apps": {
|
||||||
"description": "把工具连接到 nanobot,然后在对话中 @ 使用。",
|
"description": "将工具接入 nanobot,然后在对话中通过 @ 调用。",
|
||||||
"cliLabel": "应用",
|
"cliLabel": "应用",
|
||||||
"mcpLabel": "集成",
|
"mcpLabel": "集成",
|
||||||
"channelLabel": "渠道",
|
"channelLabel": "渠道",
|
||||||
@ -569,7 +593,7 @@
|
|||||||
"requires": "需要:{{requirements}}",
|
"requires": "需要:{{requirements}}",
|
||||||
"setUp": "设置",
|
"setUp": "设置",
|
||||||
"setupGuide": "配置指南",
|
"setupGuide": "配置指南",
|
||||||
"setupSummary": "启用只会打开 nanobot 的渠道支持。请补充平台凭据,然后重启 nanobot。",
|
"setupSummary": "启用只会开启 nanobot 对该渠道的支持。请补充平台凭据,然后重启 nanobot。",
|
||||||
"configKeys": "配置字段",
|
"configKeys": "配置字段",
|
||||||
"enable": "启用渠道",
|
"enable": "启用渠道",
|
||||||
"disable": "禁用渠道",
|
"disable": "禁用渠道",
|
||||||
@ -579,6 +603,8 @@
|
|||||||
"advanced": "高级",
|
"advanced": "高级",
|
||||||
"checkAndEnable": "检查并启用",
|
"checkAndEnable": "检查并启用",
|
||||||
"checkConnection": "检查连接",
|
"checkConnection": "检查连接",
|
||||||
|
"connectionChecks": "连接检查",
|
||||||
|
"open": "打开",
|
||||||
"checkedAndEnabled": "已检查并启用。",
|
"checkedAndEnabled": "已检查并启用。",
|
||||||
"checking": "正在检查...",
|
"checking": "正在检查...",
|
||||||
"checkOnly": "仅检查",
|
"checkOnly": "仅检查",
|
||||||
@ -601,7 +627,7 @@
|
|||||||
"managedByWebui": "由 WebUI 管理",
|
"managedByWebui": "由 WebUI 管理",
|
||||||
"officialGuide": "官方指南",
|
"officialGuide": "官方指南",
|
||||||
"optional": "可选",
|
"optional": "可选",
|
||||||
"providerPreset": "服务商",
|
"providerPreset": "提供商",
|
||||||
"requiredSetup": "必需配置",
|
"requiredSetup": "必需配置",
|
||||||
"savedSecret": "已保存",
|
"savedSecret": "已保存",
|
||||||
"savedSecretPlaceholder": "已保存的密钥",
|
"savedSecretPlaceholder": "已保存的密钥",
|
||||||
@ -674,6 +700,8 @@
|
|||||||
"protected": "受保护",
|
"protected": "受保护",
|
||||||
"editTitle": "编辑自动任务",
|
"editTitle": "编辑自动任务",
|
||||||
"save": "保存",
|
"save": "保存",
|
||||||
|
"commandCopied": "已复制",
|
||||||
|
"copyCommand": "复制",
|
||||||
"deleteTitle": "删除自动任务",
|
"deleteTitle": "删除自动任务",
|
||||||
"deleteDescription": "这会从 cron 存储中删除 {{name}},历史聊天消息会保留在会话中。",
|
"deleteDescription": "这会从 cron 存储中删除 {{name}},历史聊天消息会保留在会话中。",
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
@ -733,6 +761,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "名称",
|
"name": "名称",
|
||||||
"message": "消息",
|
"message": "消息",
|
||||||
|
"command": "命令",
|
||||||
"scheduleType": "计划类型",
|
"scheduleType": "计划类型",
|
||||||
"every": "每隔",
|
"every": "每隔",
|
||||||
"unit": "单位",
|
"unit": "单位",
|
||||||
@ -767,7 +796,7 @@
|
|||||||
"signInAgain": "重新登录",
|
"signInAgain": "重新登录",
|
||||||
"signOut": "退出登录",
|
"signOut": "退出登录",
|
||||||
"signedInAs": "已登录为 {{account}}",
|
"signedInAs": "已登录为 {{account}}",
|
||||||
"signInHelp": "从这台设备登录;不会在配置中保存 API key。",
|
"signInHelp": "从这台设备登录;不会在配置中保存 API 密钥。",
|
||||||
"remoteSignInHelp": "点击“登录”在你的电脑上打开 xAI,完成登录后粘贴页面显示的授权码。",
|
"remoteSignInHelp": "点击“登录”在你的电脑上打开 xAI,完成登录后粘贴页面显示的授权码。",
|
||||||
"codexRemoteSignInHelp": "在此浏览器中登录,然后将完整的 localhost 回调 URL 粘贴回 nanobot。",
|
"codexRemoteSignInHelp": "在此浏览器中登录,然后将完整的 localhost 回调 URL 粘贴回 nanobot。",
|
||||||
"signInRequired": "需要登录",
|
"signInRequired": "需要登录",
|
||||||
@ -790,7 +819,7 @@
|
|||||||
"finishSignIn": "完成登录"
|
"finishSignIn": "完成登录"
|
||||||
},
|
},
|
||||||
"skills": {
|
"skills": {
|
||||||
"description": "查看此 agent 在对话中可以加载的指令技能。",
|
"description": "查看此智能体在对话中可以加载的指令技能。",
|
||||||
"caption": "{{available}} 个可用 · 共 {{total}} 个",
|
"caption": "{{available}} 个可用 · 共 {{total}} 个",
|
||||||
"views": "技能视图",
|
"views": "技能视图",
|
||||||
"installedTab": "已安装",
|
"installedTab": "已安装",
|
||||||
@ -809,7 +838,7 @@
|
|||||||
"showLess": "收起",
|
"showLess": "收起",
|
||||||
"showMore": "展开",
|
"showMore": "展开",
|
||||||
"enabledControl": "使用此技能",
|
"enabledControl": "使用此技能",
|
||||||
"enabledDescription": "当技能需求满足时,允许 agent 加载并使用它。",
|
"enabledDescription": "当技能需求满足时,允许智能体加载并使用它。",
|
||||||
"enableSkill": "启用 {{name}}",
|
"enableSkill": "启用 {{name}}",
|
||||||
"disableSkill": "停用 {{name}}",
|
"disableSkill": "停用 {{name}}",
|
||||||
"updateFailed": "无法更新此技能。",
|
"updateFailed": "无法更新此技能。",
|
||||||
@ -850,7 +879,7 @@
|
|||||||
"marketplaceInstall": "安装",
|
"marketplaceInstall": "安装",
|
||||||
"marketplaceNoTrend": "暂无趋势",
|
"marketplaceNoTrend": "暂无趋势",
|
||||||
"marketplaceTrendLabel": "近 8 周安装趋势",
|
"marketplaceTrendLabel": "近 8 周安装趋势",
|
||||||
"featured": "Agent 技能",
|
"featured": "智能体技能",
|
||||||
"empty": "暂无可用技能。",
|
"empty": "暂无可用技能。",
|
||||||
"sourceWorkspace": "自定义",
|
"sourceWorkspace": "自定义",
|
||||||
"sourceBuiltin": "内置",
|
"sourceBuiltin": "内置",
|
||||||
@ -891,8 +920,8 @@
|
|||||||
"actions": "“{{title}}” 的话题操作",
|
"actions": "“{{title}}” 的话题操作",
|
||||||
"newInProject": "在 {{project}} 中开始新话题",
|
"newInProject": "在 {{project}} 中开始新话题",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent 正在运行",
|
"running": "智能体正在运行",
|
||||||
"complete": "Agent 已完成",
|
"complete": "智能体已完成",
|
||||||
"updated": "有新内容"
|
"updated": "有新内容"
|
||||||
},
|
},
|
||||||
"pin": "置顶",
|
"pin": "置顶",
|
||||||
@ -1065,7 +1094,7 @@
|
|||||||
"modelNotConfigured": "模型未配置",
|
"modelNotConfigured": "模型未配置",
|
||||||
"configureModel": "配置模型",
|
"configureModel": "配置模型",
|
||||||
"queued": {
|
"queued": {
|
||||||
"label": "待引导提示",
|
"label": "排队中的引导消息",
|
||||||
"guide": "引导",
|
"guide": "引导",
|
||||||
"delete": "删除引导",
|
"delete": "删除引导",
|
||||||
"edit": "编辑引导",
|
"edit": "编辑引导",
|
||||||
@ -1132,7 +1161,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "停止当前任务",
|
"title": "停止当前任务",
|
||||||
"description": "取消这个对话中正在运行的 agent 回合。"
|
"description": "取消这个对话中正在运行的智能体回合。"
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "重启 nanobot",
|
"title": "重启 nanobot",
|
||||||
@ -1140,7 +1169,7 @@
|
|||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"title": "查看状态",
|
"title": "查看状态",
|
||||||
"description": "显示运行时、服务商和通道状态。"
|
"description": "显示运行时、提供商和渠道状态。"
|
||||||
},
|
},
|
||||||
"model": {
|
"model": {
|
||||||
"title": "模型",
|
"title": "模型",
|
||||||
@ -1192,7 +1221,9 @@
|
|||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "使用 @{{name}} 调用本地 CLI",
|
"cliDescription": "使用 @{{name}} 调用本地 CLI",
|
||||||
"mcpDescription": "使用 @{{name}} 调用 MCP 服务"
|
"mcpDescription": "使用 @{{name}} 调用 MCP 服务",
|
||||||
|
"cliTitle": "CLI 应用:{{name}}",
|
||||||
|
"mcpTitle": "MCP 服务:{{name}}"
|
||||||
},
|
},
|
||||||
"encoding": "处理中…",
|
"encoding": "处理中…",
|
||||||
"remove": "移除附件",
|
"remove": "移除附件",
|
||||||
@ -1225,11 +1256,12 @@
|
|||||||
"loadEarlier": "加载更早消息",
|
"loadEarlier": "加载更早消息",
|
||||||
"forkedFromHistory": "从历史消息分叉",
|
"forkedFromHistory": "从历史消息分叉",
|
||||||
"promptNavigator": {
|
"promptNavigator": {
|
||||||
"open": "打开输入导航",
|
"open": "打开提示词导航",
|
||||||
"title": "输入列表",
|
"title": "提示词列表",
|
||||||
"search": "搜索输入",
|
"search": "搜索提示词",
|
||||||
"noResults": "没有匹配的输入。",
|
"noResults": "没有匹配的提示词。",
|
||||||
"jumpTo": "跳转到输入:{{label}}"
|
"jumpTo": "跳转到提示词:{{label}}",
|
||||||
|
"railAria": "用户提示词导航"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1268,10 +1300,18 @@
|
|||||||
"cliRunRan": "已使用",
|
"cliRunRan": "已使用",
|
||||||
"cliRunFailed": "失败",
|
"cliRunFailed": "失败",
|
||||||
"imageAttachment": "图片附件",
|
"imageAttachment": "图片附件",
|
||||||
|
"videoAttachment": "视频附件",
|
||||||
|
"fileAttachment": "文件附件",
|
||||||
|
"attachmentUnavailable": "附件不可用",
|
||||||
|
"dataTable": "数据表",
|
||||||
|
"fileEditPreparing": "正在准备文件编辑…",
|
||||||
|
"openLink": "打开链接:{{label}}",
|
||||||
|
"openAttachment": "打开 {{name}}",
|
||||||
|
"skill": "技能:{{name}}",
|
||||||
"automationSourceFallback": "自动化",
|
"automationSourceFallback": "自动化",
|
||||||
"automationTriggered": "自动触发",
|
"automationTriggered": "自动触发",
|
||||||
"askAboutSelection": "继续提问",
|
"askAboutSelection": "询问此内容",
|
||||||
"forkFromHere": "分叉",
|
"forkFromHere": "从此处分叉",
|
||||||
"copyReply": "复制",
|
"copyReply": "复制",
|
||||||
"copiedReply": "已复制",
|
"copiedReply": "已复制",
|
||||||
"turnLatencyTitle": "本轮耗时(端到端)",
|
"turnLatencyTitle": "本轮耗时(端到端)",
|
||||||
@ -1293,10 +1333,11 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "文件预览",
|
"aria": "文件预览",
|
||||||
|
"breadcrumb": "文件路径",
|
||||||
"close": "关闭文件预览",
|
"close": "关闭文件预览",
|
||||||
"loading": "正在加载预览...",
|
"loading": "正在加载预览...",
|
||||||
"failed": "无法预览这个文件。",
|
"failed": "无法预览这个文件。",
|
||||||
"routeMissing": "文件预览需要最新的 gateway。请重启 nanobot gateway 后再试。",
|
"routeMissing": "文件预览需要最新的网关。请重启 nanobot gateway 后再试。",
|
||||||
"resize": "调整文件预览宽度",
|
"resize": "调整文件预览宽度",
|
||||||
"truncated": "文件较大,当前只显示前半部分预览。"
|
"truncated": "文件较大,当前只显示前半部分预览。"
|
||||||
},
|
},
|
||||||
@ -1307,7 +1348,10 @@
|
|||||||
"copied": "已复制"
|
"copied": "已复制"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "关闭"
|
"dismiss": "关闭",
|
||||||
|
"close": "关闭",
|
||||||
|
"current": "当前",
|
||||||
|
"cancel": "取消"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
|
|||||||
@ -38,6 +38,15 @@
|
|||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"description": "nanobot Web UI —— 與你的 nanobot 工作區對話。"
|
"description": "nanobot Web UI —— 與你的 nanobot 工作區對話。"
|
||||||
|
},
|
||||||
|
"pairing": {
|
||||||
|
"title": "配對聊天使用者",
|
||||||
|
"description": "輸入聊天中顯示的配對碼。",
|
||||||
|
"code": "配對碼",
|
||||||
|
"matched": "已符合 {{channel}},正在連線…",
|
||||||
|
"expiresInline": "配對碼將於 {{expires}} 到期。",
|
||||||
|
"queueCount": "{{count}} 個待處理",
|
||||||
|
"noMatch": "沒有待處理請求符合此配對碼。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
@ -75,7 +84,7 @@
|
|||||||
"providers": "供應商",
|
"providers": "供應商",
|
||||||
"image": "圖片",
|
"image": "圖片",
|
||||||
"voice": "語音",
|
"voice": "語音",
|
||||||
"browser": "網頁",
|
"browser": "網路",
|
||||||
"channels": "通訊管道",
|
"channels": "通訊管道",
|
||||||
"runtime": "系統",
|
"runtime": "系統",
|
||||||
"advanced": "安全",
|
"advanced": "安全",
|
||||||
@ -95,8 +104,8 @@
|
|||||||
"presets": "預設",
|
"presets": "預設",
|
||||||
"imageGeneration": "圖片生成",
|
"imageGeneration": "圖片生成",
|
||||||
"imageDefaults": "預設值",
|
"imageDefaults": "預設值",
|
||||||
"webSearch": "網頁搜尋",
|
"webSearch": "網路搜尋",
|
||||||
"webBehavior": "行為",
|
"webBehavior": "網路行為",
|
||||||
"regional": "區域",
|
"regional": "區域",
|
||||||
"webuiSafety": "WebUI 安全",
|
"webuiSafety": "WebUI 安全",
|
||||||
"capabilities": "能力",
|
"capabilities": "能力",
|
||||||
@ -162,9 +171,9 @@
|
|||||||
"model": "選擇此預設使用的模型。",
|
"model": "選擇此預設使用的模型。",
|
||||||
"configPath": "目前閘道使用中的設定檔。",
|
"configPath": "目前閘道使用中的設定檔。",
|
||||||
"selectedPreset": "命名預設在此為唯讀;請在 config.json 中編輯。",
|
"selectedPreset": "命名預設在此為唯讀;請在 config.json 中編輯。",
|
||||||
"presetModel": "切回 Default 後可在 WebUI 中編輯模型與供應商。",
|
"presetModel": "切回預設後可在 WebUI 中編輯模型與供應商。",
|
||||||
"density": "只儲存在此瀏覽器中。",
|
"density": "只儲存在此瀏覽器中。",
|
||||||
"activityMode": "選擇預設顯示多少 Agent 活動細節。",
|
"activityMode": "選擇預設顯示多少智能體活動細節。",
|
||||||
"fileEditDisplay": "選擇檔案編輯活動預設顯示行數或差異。",
|
"fileEditDisplay": "選擇檔案編輯活動預設顯示行數或差異。",
|
||||||
"codeWrap": "讓長程式碼行在小螢幕上也易讀。",
|
"codeWrap": "讓長程式碼行在小螢幕上也易讀。",
|
||||||
"maxResults": "每次呼叫 web_search 所回傳的結果數。",
|
"maxResults": "每次呼叫 web_search 所回傳的結果數。",
|
||||||
@ -194,7 +203,7 @@
|
|||||||
"contextWindow": "選擇此模型設定的預設上下文預算。",
|
"contextWindow": "選擇此模型設定的預設上下文預算。",
|
||||||
"transcription": "送出前先將麥克風輸入轉寫至輸入框。聊天通訊管道的語音訊息也會使用同一組設定。",
|
"transcription": "送出前先將麥克風輸入轉寫至輸入框。聊天通訊管道的語音訊息也會使用同一組設定。",
|
||||||
"transcriptionProvider": "使用 [供應商] 中對應供應商的憑證。",
|
"transcriptionProvider": "使用 [供應商] 中對應供應商的憑證。",
|
||||||
"transcriptionProviderStatus": "API 金鑰仍儲存在 providers 中,不會寫入 transcription 設定。",
|
"transcriptionProviderStatus": "API 金鑰仍儲存在「供應商」中,不會寫入「語音轉寫」設定。",
|
||||||
"transcriptionModel": "除非供應商需要自訂模型 ID,否則保留解析後的預設值即可。",
|
"transcriptionModel": "除非供應商需要自訂模型 ID,否則保留解析後的預設值即可。",
|
||||||
"transcriptionLanguage": "選填的 ISO-639 語言提示,例如 en、zh、ja 或 ko。"
|
"transcriptionLanguage": "選填的 ISO-639 語言提示,例如 en、zh、ja 或 ko。"
|
||||||
},
|
},
|
||||||
@ -207,7 +216,7 @@
|
|||||||
"restartPending": "等待重新啟動",
|
"restartPending": "等待重新啟動",
|
||||||
"ready": "就緒",
|
"ready": "就緒",
|
||||||
"privateEngine": "私有引擎",
|
"privateEngine": "私有引擎",
|
||||||
"unixSocket": "Unix socket",
|
"unixSocket": "Unix 套接字",
|
||||||
"defaultWorkspace": "預設工作區",
|
"defaultWorkspace": "預設工作區",
|
||||||
"comfortable": "舒適",
|
"comfortable": "舒適",
|
||||||
"compact": "緊湊",
|
"compact": "緊湊",
|
||||||
@ -224,7 +233,10 @@
|
|||||||
"configured": "已設定",
|
"configured": "已設定",
|
||||||
"notConfigured": "未設定",
|
"notConfigured": "未設定",
|
||||||
"pending": "等待中",
|
"pending": "等待中",
|
||||||
"restartingEngine": "正在重新啟動"
|
"restartingEngine": "正在重新啟動",
|
||||||
|
"checking": "檢查中",
|
||||||
|
"running": "執行中",
|
||||||
|
"needsSetup": "需要設定"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"loading": "正在載入設定…",
|
"loading": "正在載入設定…",
|
||||||
@ -252,6 +264,7 @@
|
|||||||
"deleting": "正在刪除…",
|
"deleting": "正在刪除…",
|
||||||
"edit": "編輯",
|
"edit": "編輯",
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
|
"dismiss": "關閉",
|
||||||
"open": "開啟",
|
"open": "開啟",
|
||||||
"export": "匯出",
|
"export": "匯出",
|
||||||
"opening": "正在開啟…",
|
"opening": "正在開啟…",
|
||||||
@ -280,23 +293,23 @@
|
|||||||
"tabs": {
|
"tabs": {
|
||||||
"ariaLabel": "BYOK 憑證類型",
|
"ariaLabel": "BYOK 憑證類型",
|
||||||
"llm": "LLM",
|
"llm": "LLM",
|
||||||
"webSearch": "網頁搜尋"
|
"webSearch": "網路搜尋"
|
||||||
},
|
},
|
||||||
"webSearch": {
|
"webSearch": {
|
||||||
"provider": "搜尋供應商",
|
"provider": "搜尋供應商",
|
||||||
"providerHelp": "選擇網頁搜尋工具使用的後端。",
|
"providerHelp": "選擇網路搜尋工具使用的後端。",
|
||||||
"selectProvider": "選擇供應商",
|
"selectProvider": "選擇供應商",
|
||||||
"credentials": "憑證",
|
"credentials": "憑證",
|
||||||
"noCredentialRequired": "不需要金鑰",
|
"noCredentialRequired": "不需要金鑰",
|
||||||
"noCredentialHelp": "使用 DuckDuckGo 不需要儲存 API 金鑰。",
|
"noCredentialHelp": "使用 DuckDuckGo 不需要儲存 API 金鑰。",
|
||||||
"apiKeyHelp": "金鑰會儲存在設定檔中,儲存後以遮罩顯示。",
|
"apiKeyHelp": "金鑰會儲存在設定檔中,儲存後以遮罩顯示。",
|
||||||
"baseUrl": "Base URL",
|
"baseUrl": "基礎 URL",
|
||||||
"baseUrlHelp": "SearXNG 需要自行架設的執行個體網址。",
|
"baseUrlHelp": "SearXNG 需要自行架設的執行個體網址。",
|
||||||
"baseUrlPlaceholder": "https://search.example.com",
|
"baseUrlPlaceholder": "https://search.example.com",
|
||||||
"apiKeyRequired": "此搜尋供應商需要 API 金鑰。",
|
"apiKeyRequired": "此搜尋供應商需要 API 金鑰。",
|
||||||
"baseUrlRequired": "SearXNG 需要 Base URL。",
|
"baseUrlRequired": "SearXNG 需要基礎 URL。",
|
||||||
"missingCredential": "填寫必要憑證後才能儲存。",
|
"missingCredential": "填寫必要憑證後才能儲存。",
|
||||||
"saveHint": "變更會套用至新的網頁搜尋請求。"
|
"saveHint": "變更會套用至新的網路搜尋請求。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overview": {
|
"overview": {
|
||||||
@ -304,7 +317,7 @@
|
|||||||
"providers": "供應商",
|
"providers": "供應商",
|
||||||
"configuredCount": "已設定 {{count}} 個",
|
"configuredCount": "已設定 {{count}} 個",
|
||||||
"totalProviders": "共 {{count}} 個可用",
|
"totalProviders": "共 {{count}} 個可用",
|
||||||
"webSearch": "網頁搜尋",
|
"webSearch": "網路搜尋",
|
||||||
"imageGeneration": "圖片生成",
|
"imageGeneration": "圖片生成",
|
||||||
"voiceInput": "語音輸入",
|
"voiceInput": "語音輸入",
|
||||||
"workspace": "工作區"
|
"workspace": "工作區"
|
||||||
@ -358,9 +371,19 @@
|
|||||||
"selectProvider": "選擇供應商",
|
"selectProvider": "選擇供應商",
|
||||||
"selectAspect": "選擇比例",
|
"selectAspect": "選擇比例",
|
||||||
"selectSize": "選擇尺寸",
|
"selectSize": "選擇尺寸",
|
||||||
|
"selectModel": "選擇圖片模型",
|
||||||
|
"searchOrTypeModel": "搜尋或輸入模型 ID",
|
||||||
|
"typeModelId": "輸入此供應商支援的模型 ID。",
|
||||||
"configureProvider": "設定供應商",
|
"configureProvider": "設定供應商",
|
||||||
"missingCredential": "啟用圖片生成功能前,請先設定此供應商。"
|
"missingCredential": "啟用圖片生成功能前,請先設定此供應商。"
|
||||||
},
|
},
|
||||||
|
"capabilities": {
|
||||||
|
"providerSupport": "供應商支援",
|
||||||
|
"providerInstallOnSave": "儲存此供應商時會自動安裝所需支援。",
|
||||||
|
"searchSupport": "搜尋供應商支援",
|
||||||
|
"searchInstallOnSave": "儲存時會自動安裝 Olostep 支援。",
|
||||||
|
"installing": "正在安裝支援…"
|
||||||
|
},
|
||||||
"models": {
|
"models": {
|
||||||
"selectModel": "選擇模型",
|
"selectModel": "選擇模型",
|
||||||
"addConfiguration": "新增設定",
|
"addConfiguration": "新增設定",
|
||||||
@ -383,7 +406,7 @@
|
|||||||
"advancedOptions": "進階選項",
|
"advancedOptions": "進階選項",
|
||||||
"advancedSummary": "上下文 {{context}} · 最大輸出 {{max}} tokens",
|
"advancedSummary": "上下文 {{context}} · 最大輸出 {{max}} tokens",
|
||||||
"maxTokens": "最大輸出 tokens",
|
"maxTokens": "最大輸出 tokens",
|
||||||
"temperature": "Temperature",
|
"temperature": "溫度",
|
||||||
"reasoningEffort": "推理強度",
|
"reasoningEffort": "推理強度",
|
||||||
"convertTitle": "轉換現有模型設定",
|
"convertTitle": "轉換現有模型設定",
|
||||||
"convertHelp": "將現有主要模型和備用模型轉換為預設,之後即可在這裡管理呼叫順序。",
|
"convertHelp": "將現有主要模型和備用模型轉換為預設,之後即可在這裡管理呼叫順序。",
|
||||||
@ -503,6 +526,7 @@
|
|||||||
"statusMissingCredentials": "需要金鑰",
|
"statusMissingCredentials": "需要金鑰",
|
||||||
"statusMissingDependency": "需要相依項",
|
"statusMissingDependency": "需要相依項",
|
||||||
"statusComingSoon": "即將推出",
|
"statusComingSoon": "即將推出",
|
||||||
|
"comingSoon": "即將推出",
|
||||||
"statusNotInstalled": "未啟用",
|
"statusNotInstalled": "未啟用",
|
||||||
"toolScope": "工具",
|
"toolScope": "工具",
|
||||||
"allTools": "全部",
|
"allTools": "全部",
|
||||||
@ -510,7 +534,7 @@
|
|||||||
"testForTools": "執行 [測試] 以檢視並選擇個別工具。"
|
"testForTools": "執行 [測試] 以檢視並選擇個別工具。"
|
||||||
},
|
},
|
||||||
"api": {
|
"api": {
|
||||||
"title": "API 伺服器", "openaiCompatible": "OpenAI 相容 API", "description": "讓 SDK 與其他 Agent 透過本機 /v1 端點連線 nanobot。",
|
"title": "API 伺服器", "openaiCompatible": "OpenAI 相容 API", "description": "讓 SDK 與其他智能體透過本機 /v1 端點連線 nanobot。",
|
||||||
"start": "啟動 API 伺服器", "starting": "正在啟動…", "stop": "停止", "stopping": "正在停止…",
|
"start": "啟動 API 伺服器", "starting": "正在啟動…", "stop": "停止", "stopping": "正在停止…",
|
||||||
"access": "存取範圍", "thisDevice": "僅此裝置", "localNetwork": "區域網路",
|
"access": "存取範圍", "thisDevice": "僅此裝置", "localNetwork": "區域網路",
|
||||||
"localHelp": "只有目前裝置可以連線。", "networkHelp": "區域網路內其他裝置可以連線,因此必須設定 API 金鑰。",
|
"localHelp": "只有目前裝置可以連線。", "networkHelp": "區域網路內其他裝置可以連線,因此必須設定 API 金鑰。",
|
||||||
@ -565,6 +589,8 @@
|
|||||||
"advanced": "進階",
|
"advanced": "進階",
|
||||||
"checkAndEnable": "檢查並啟用",
|
"checkAndEnable": "檢查並啟用",
|
||||||
"checkConnection": "檢查連線",
|
"checkConnection": "檢查連線",
|
||||||
|
"connectionChecks": "連線檢查",
|
||||||
|
"open": "開啟",
|
||||||
"checkedAndEnabled": "已檢查並啟用。",
|
"checkedAndEnabled": "已檢查並啟用。",
|
||||||
"checking": "正在檢查...",
|
"checking": "正在檢查...",
|
||||||
"checkOnly": "僅檢查",
|
"checkOnly": "僅檢查",
|
||||||
@ -660,6 +686,8 @@
|
|||||||
"protected": "受保護",
|
"protected": "受保護",
|
||||||
"editTitle": "編輯自動任務",
|
"editTitle": "編輯自動任務",
|
||||||
"save": "儲存",
|
"save": "儲存",
|
||||||
|
"commandCopied": "已複製",
|
||||||
|
"copyCommand": "複製",
|
||||||
"deleteTitle": "刪除自動任務",
|
"deleteTitle": "刪除自動任務",
|
||||||
"deleteDescription": "這會從 cron 儲存區移除 {{name}},過往的聊天訊息仍會保留在該對話中。",
|
"deleteDescription": "這會從 cron 儲存區移除 {{name}},過往的聊天訊息仍會保留在該對話中。",
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
@ -719,6 +747,7 @@
|
|||||||
"fields": {
|
"fields": {
|
||||||
"name": "名稱",
|
"name": "名稱",
|
||||||
"message": "訊息",
|
"message": "訊息",
|
||||||
|
"command": "指令",
|
||||||
"scheduleType": "排程類型",
|
"scheduleType": "排程類型",
|
||||||
"every": "每隔",
|
"every": "每隔",
|
||||||
"unit": "單位",
|
"unit": "單位",
|
||||||
@ -776,7 +805,7 @@
|
|||||||
"finishSignIn": "完成登入"
|
"finishSignIn": "完成登入"
|
||||||
},
|
},
|
||||||
"skills": {
|
"skills": {
|
||||||
"description": "檢閱此 Agent 可在對話期間載入的指令技能。",
|
"description": "檢閱此智能體可在對話期間載入的指令技能。",
|
||||||
"caption": "{{available}} 個可用 · 共 {{total}} 個",
|
"caption": "{{available}} 個可用 · 共 {{total}} 個",
|
||||||
"views": "技能檢視",
|
"views": "技能檢視",
|
||||||
"installedTab": "已安裝",
|
"installedTab": "已安裝",
|
||||||
@ -795,7 +824,7 @@
|
|||||||
"showLess": "收合",
|
"showLess": "收合",
|
||||||
"showMore": "展開",
|
"showMore": "展開",
|
||||||
"enabledControl": "使用此技能",
|
"enabledControl": "使用此技能",
|
||||||
"enabledDescription": "當技能需求已滿足時,允許 agent 載入並使用它。",
|
"enabledDescription": "當技能需求已滿足時,允許智能體載入並使用它。",
|
||||||
"enableSkill": "啟用 {{name}}",
|
"enableSkill": "啟用 {{name}}",
|
||||||
"disableSkill": "停用 {{name}}",
|
"disableSkill": "停用 {{name}}",
|
||||||
"updateFailed": "無法更新此技能。",
|
"updateFailed": "無法更新此技能。",
|
||||||
@ -836,7 +865,7 @@
|
|||||||
"marketplaceInstall": "安裝",
|
"marketplaceInstall": "安裝",
|
||||||
"marketplaceNoTrend": "暫無趨勢",
|
"marketplaceNoTrend": "暫無趨勢",
|
||||||
"marketplaceTrendLabel": "近 8 週安裝趨勢",
|
"marketplaceTrendLabel": "近 8 週安裝趨勢",
|
||||||
"featured": "Agent 技能",
|
"featured": "智能體技能",
|
||||||
"empty": "目前沒有可用的技能。",
|
"empty": "目前沒有可用的技能。",
|
||||||
"sourceWorkspace": "自訂",
|
"sourceWorkspace": "自訂",
|
||||||
"sourceBuiltin": "內建",
|
"sourceBuiltin": "內建",
|
||||||
@ -877,8 +906,8 @@
|
|||||||
"actions": "「{{title}}」的話題操作",
|
"actions": "「{{title}}」的話題操作",
|
||||||
"newInProject": "在 {{project}} 中開始新話題",
|
"newInProject": "在 {{project}} 中開始新話題",
|
||||||
"activity": {
|
"activity": {
|
||||||
"running": "Agent 正在執行",
|
"running": "智能體正在執行",
|
||||||
"complete": "Agent 已完成",
|
"complete": "智能體已完成",
|
||||||
"updated": "有新內容"
|
"updated": "有新內容"
|
||||||
},
|
},
|
||||||
"pin": "置頂",
|
"pin": "置頂",
|
||||||
@ -1109,7 +1138,7 @@
|
|||||||
},
|
},
|
||||||
"stop": {
|
"stop": {
|
||||||
"title": "停止目前任務",
|
"title": "停止目前任務",
|
||||||
"description": "取消這個對話中正在執行的 Agent 回合。"
|
"description": "取消這個對話中正在執行的智能體回合。"
|
||||||
},
|
},
|
||||||
"restart": {
|
"restart": {
|
||||||
"title": "重新啟動 nanobot",
|
"title": "重新啟動 nanobot",
|
||||||
@ -1195,7 +1224,9 @@
|
|||||||
"cliBadge": "CLI",
|
"cliBadge": "CLI",
|
||||||
"mcpBadge": "MCP",
|
"mcpBadge": "MCP",
|
||||||
"cliDescription": "將 @{{name}} 作為本機 CLI 應用程式使用",
|
"cliDescription": "將 @{{name}} 作為本機 CLI 應用程式使用",
|
||||||
"mcpDescription": "將 @{{name}} 作為 MCP 伺服器使用"
|
"mcpDescription": "將 @{{name}} 作為 MCP 伺服器使用",
|
||||||
|
"cliTitle": "CLI 應用程式:{{name}}",
|
||||||
|
"mcpTitle": "MCP 伺服器:{{name}}"
|
||||||
},
|
},
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"accessAria": "工作區存取模式",
|
"accessAria": "工作區存取模式",
|
||||||
@ -1215,7 +1246,8 @@
|
|||||||
"title": "提示詞",
|
"title": "提示詞",
|
||||||
"search": "搜尋提示詞",
|
"search": "搜尋提示詞",
|
||||||
"noResults": "找不到符合的提示詞。",
|
"noResults": "找不到符合的提示詞。",
|
||||||
"jumpTo": "跳到提示詞:{{label}}"
|
"jumpTo": "跳到提示詞:{{label}}",
|
||||||
|
"railAria": "使用者提示詞導覽"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
@ -1239,6 +1271,14 @@
|
|||||||
"agentActivityLiveSummary": "進行中… · {{reasoning}} 步 · {{tools}} 次工具呼叫",
|
"agentActivityLiveSummary": "進行中… · {{reasoning}} 步 · {{tools}} 次工具呼叫",
|
||||||
"agentActivityLiveToolsOnly": "進行中… · {{tools}} 次工具呼叫",
|
"agentActivityLiveToolsOnly": "進行中… · {{tools}} 次工具呼叫",
|
||||||
"imageAttachment": "圖片附件",
|
"imageAttachment": "圖片附件",
|
||||||
|
"videoAttachment": "影片附件",
|
||||||
|
"fileAttachment": "檔案附件",
|
||||||
|
"attachmentUnavailable": "附件無法使用",
|
||||||
|
"dataTable": "資料表",
|
||||||
|
"fileEditPreparing": "正在準備檔案編輯…",
|
||||||
|
"openLink": "開啟連結:{{label}}",
|
||||||
|
"openAttachment": "開啟 {{name}}",
|
||||||
|
"skill": "技能:{{name}}",
|
||||||
"forkFromHere": "建立分支",
|
"forkFromHere": "建立分支",
|
||||||
"copyReply": "複製",
|
"copyReply": "複製",
|
||||||
"copiedReply": "已複製",
|
"copiedReply": "已複製",
|
||||||
@ -1279,6 +1319,7 @@
|
|||||||
},
|
},
|
||||||
"filePreview": {
|
"filePreview": {
|
||||||
"aria": "檔案預覽",
|
"aria": "檔案預覽",
|
||||||
|
"breadcrumb": "檔案路徑",
|
||||||
"close": "關閉檔案預覽",
|
"close": "關閉檔案預覽",
|
||||||
"loading": "正在載入預覽…",
|
"loading": "正在載入預覽…",
|
||||||
"failed": "無法預覽這個檔案。",
|
"failed": "無法預覽這個檔案。",
|
||||||
@ -1293,7 +1334,10 @@
|
|||||||
"copied": "已複製"
|
"copied": "已複製"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"dismiss": "關閉"
|
"dismiss": "關閉",
|
||||||
|
"close": "關閉",
|
||||||
|
"current": "目前",
|
||||||
|
"cancel": "取消"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"messageTooBig": {
|
"messageTooBig": {
|
||||||
|
|||||||
@ -236,6 +236,72 @@ const LOCALIZED_CHANNEL_SHELL_KEYS = [
|
|||||||
"settings.channels.validation.unsupported",
|
"settings.channels.validation.unsupported",
|
||||||
"settings.channels.validationFailed",
|
"settings.channels.validationFailed",
|
||||||
];
|
];
|
||||||
|
const LOCALIZED_NEW_SURFACE_KEYS = [
|
||||||
|
"chat.activity.running",
|
||||||
|
"chat.activity.complete",
|
||||||
|
"chat.activity.updated",
|
||||||
|
"chat.pin",
|
||||||
|
"chat.unpin",
|
||||||
|
"chat.rename",
|
||||||
|
"chat.renameProjectTitle",
|
||||||
|
"chat.renameProjectDescription",
|
||||||
|
"chat.renameProjectPlaceholder",
|
||||||
|
"chat.renameSave",
|
||||||
|
"chat.archive",
|
||||||
|
"chat.unarchive",
|
||||||
|
"chat.showArchived",
|
||||||
|
"chat.hideArchived",
|
||||||
|
"chat.groups.pinned",
|
||||||
|
"chat.groups.projects",
|
||||||
|
"chat.groups.today",
|
||||||
|
"chat.groups.yesterday",
|
||||||
|
"chat.groups.earlier",
|
||||||
|
"chat.groups.archived",
|
||||||
|
"thread.promptNavigator.railAria",
|
||||||
|
"thread.composer.mentions.cliTitle",
|
||||||
|
"thread.composer.mentions.mcpTitle",
|
||||||
|
"message.openLink",
|
||||||
|
"message.openAttachment",
|
||||||
|
"message.skill",
|
||||||
|
"settings.channels.connectionChecks",
|
||||||
|
"settings.channels.open",
|
||||||
|
];
|
||||||
|
const ACCIDENTALLY_SPANISH_SETTINGS_KEYS = [
|
||||||
|
"settings.help.provider",
|
||||||
|
"settings.help.configPath",
|
||||||
|
"settings.help.selectedPreset",
|
||||||
|
"settings.help.maxResults",
|
||||||
|
"settings.help.timeout",
|
||||||
|
"settings.help.jinaReader",
|
||||||
|
"settings.help.imageGeneration",
|
||||||
|
"settings.help.imageProvider",
|
||||||
|
"settings.help.imageProviderStatus",
|
||||||
|
"settings.help.imageModel",
|
||||||
|
"settings.help.defaultAspectRatio",
|
||||||
|
"settings.help.timezone",
|
||||||
|
"settings.help.securityManagedControls",
|
||||||
|
"settings.help.selectedModelProvider",
|
||||||
|
"settings.help.selectedModelValue",
|
||||||
|
"settings.help.cliAppsCatalog",
|
||||||
|
"settings.help.cliAppsFilter",
|
||||||
|
"settings.help.logs",
|
||||||
|
"settings.help.diagnostics",
|
||||||
|
"settings.help.localServiceAccessNative",
|
||||||
|
"settings.help.webuiDefaultAccessNative",
|
||||||
|
"settings.status.savedRestart",
|
||||||
|
"settings.status.restartAfterSaving",
|
||||||
|
"settings.status.savedRestartApply",
|
||||||
|
"settings.status.imageProviderRestart",
|
||||||
|
"settings.status.hostRestartAfterSaving",
|
||||||
|
"settings.status.hostRestartPending",
|
||||||
|
"settings.status.hostApiUnavailable",
|
||||||
|
"settings.status.logsOpened",
|
||||||
|
"settings.status.logsOpenFailed",
|
||||||
|
"settings.status.diagnosticsExported",
|
||||||
|
"settings.status.diagnosticsExportFailed",
|
||||||
|
"settings.image.missingCredential",
|
||||||
|
"settings.oauth.signInHelp",
|
||||||
|
];
|
||||||
const INDEX_HTML = readFileSync(resolve(process.cwd(), "index.html"), "utf8");
|
const INDEX_HTML = readFileSync(resolve(process.cwd(), "index.html"), "utf8");
|
||||||
const PREBOOT_SCRIPT = INDEX_HTML.match(
|
const PREBOOT_SCRIPT = INDEX_HTML.match(
|
||||||
/<script>\s*(\(function \(\) \{\s*var localeKey = "nanobot\.locale";[\s\S]*?\}\)\(\);)\s*<\/script>/,
|
/<script>\s*(\(function \(\) \{\s*var localeKey = "nanobot\.locale";[\s\S]*?\}\)\(\);)\s*<\/script>/,
|
||||||
@ -479,6 +545,7 @@ describe("webui i18n", () => {
|
|||||||
...LOCALIZED_SETTINGS_COPY_KEYS,
|
...LOCALIZED_SETTINGS_COPY_KEYS,
|
||||||
...LOCALIZED_WORKSPACE_COPY_KEYS,
|
...LOCALIZED_WORKSPACE_COPY_KEYS,
|
||||||
...LOCALIZED_CHANNEL_SHELL_KEYS,
|
...LOCALIZED_CHANNEL_SHELL_KEYS,
|
||||||
|
...LOCALIZED_NEW_SURFACE_KEYS,
|
||||||
].filter(
|
].filter(
|
||||||
(key) => current.get(key) === english.get(key),
|
(key) => current.get(key) === english.get(key),
|
||||||
);
|
);
|
||||||
@ -490,10 +557,10 @@ describe("webui i18n", () => {
|
|||||||
it("keeps Simplified Chinese settings overview copy localized", () => {
|
it("keeps Simplified Chinese settings overview copy localized", () => {
|
||||||
const settings = resources["zh-CN"].common.settings;
|
const settings = resources["zh-CN"].common.settings;
|
||||||
|
|
||||||
expect(settings.nav.browser).toBe("网页");
|
expect(settings.nav.browser).toBe("网络");
|
||||||
expect(settings.sections.webSearch).toBe("网页搜索");
|
expect(settings.sections.webSearch).toBe("网络搜索");
|
||||||
expect(settings.byok.tabs.webSearch).toBe("网页搜索");
|
expect(settings.byok.tabs.webSearch).toBe("网络搜索");
|
||||||
expect(settings.overview.webSearch).toBe("网页搜索");
|
expect(settings.overview.webSearch).toBe("网络搜索");
|
||||||
expect(settings.overview.workspace).toBe("工作区");
|
expect(settings.overview.workspace).toBe("工作区");
|
||||||
expect(settings.skills.installedTab).toBe("已安装");
|
expect(settings.skills.installedTab).toBe("已安装");
|
||||||
expect(settings.skills.discoverTab).toBe("发现");
|
expect(settings.skills.discoverTab).toBe("发现");
|
||||||
@ -503,6 +570,18 @@ describe("webui i18n", () => {
|
|||||||
expect(settings.skills.marketplaceTrendingTitle).toBe("各市场热门技能");
|
expect(settings.skills.marketplaceTrendingTitle).toBe("各市场热门技能");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("keeps Indonesian and Vietnamese settings free of copied Spanish help text", () => {
|
||||||
|
const spanish = flattenResource(resources.es.common);
|
||||||
|
|
||||||
|
for (const locale of ["id", "vi"] as const) {
|
||||||
|
const current = flattenResource(resources[locale].common);
|
||||||
|
const copied = ACCIDENTALLY_SPANISH_SETTINGS_KEYS.filter(
|
||||||
|
(key) => current.get(key) === spanish.get(key),
|
||||||
|
);
|
||||||
|
expect({ locale, copied }).toEqual({ locale, copied: [] });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
it("keeps Brazilian Portuguese settings overview copy localized", () => {
|
it("keeps Brazilian Portuguese settings overview copy localized", () => {
|
||||||
const settings = resources["pt-BR"].common.settings;
|
const settings = resources["pt-BR"].common.settings;
|
||||||
const sidebar = resources["pt-BR"].common.sidebar;
|
const sidebar = resources["pt-BR"].common.sidebar;
|
||||||
@ -514,6 +593,6 @@ describe("webui i18n", () => {
|
|||||||
expect(settings.sections.webSearch).toBe("Busca na web");
|
expect(settings.sections.webSearch).toBe("Busca na web");
|
||||||
expect(settings.byok.tabs.webSearch).toBe("Busca na web");
|
expect(settings.byok.tabs.webSearch).toBe("Busca na web");
|
||||||
expect(settings.overview.webSearch).toBe("Busca na web");
|
expect(settings.overview.webSearch).toBe("Busca na web");
|
||||||
expect(settings.overview.workspace).toBe("Workspace");
|
expect(settings.overview.workspace).toBe("Espaço de trabalho");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user