diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index b4dfb29f7f..a573d1938c 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -186,6 +186,14 @@ When adding query parameters to ETAPI endpoints (`apps/server/src/etapi/`), main **Auth note**: ETAPI uses basic auth with tokens. Internal API endpoints trust the frontend. +### Adding New LLM Tools +Tools are defined using `defineTools()` in `apps/server/src/services/llm/tools/` and automatically registered for both the LLM chat and MCP server. + +1. Add the tool definition in the appropriate module (`note_tools.ts`, `attribute_tools.ts`, `hierarchy_tools.ts`) or create a new module +2. Each tool needs: `description`, `inputSchema` (Zod), `execute` function, and optionally `mutates: true` for write operations or `needsContext: true` for tools that need the current note context +3. If creating a new module, wrap tools in `defineTools({...})` and add the registry to `allToolRegistries` in `tools/index.ts` +4. Add a client-side friendly name in `apps/client/src/translations/en/translation.json` under `llm.tools.` — use **imperative tense** (e.g. "Search notes", "Create note", "Get attributes"), not present continuous + ### Database Migrations - Add scripts in `apps/server/src/migrations/YYMMDD_HHMM__description.sql` - Update schema in `apps/server/src/assets/db/schema.sql` @@ -213,6 +221,12 @@ When adding query parameters to ETAPI endpoints (`apps/server/src/etapi/`), main 10. **Attribute inheritance can be complex** - When checking for labels/relations, use `note.getOwnedAttribute()` for direct attributes or `note.getAttribute()` for inherited ones. Don't assume attributes are directly on the note. +## MCP Server +- Trilium exposes an MCP (Model Context Protocol) server at `http://localhost:8080/mcp`, configured in `.mcp.json` +- The MCP server is **only available when the Trilium server is running** (`pnpm run server:start`) +- It provides tools for reading, searching, and modifying notes directly from the AI assistant +- Use it to interact with actual note data when developing or debugging note-related features + ## TypeScript Configuration - **Project references**: Monorepo uses TypeScript project references (`tsconfig.json`) @@ -275,6 +289,12 @@ View types are configured via `#viewType` label (e.g., `#viewType=table`). Each - Register in `packages/ckeditor5/src/plugins.ts` - See `ckeditor5-admonition`, `ckeditor5-footnotes`, `ckeditor5-math`, `ckeditor5-mermaid` for examples +### Updating PDF.js +1. Update `pdfjs-dist` version in `packages/pdfjs-viewer/package.json` +2. Run `npx tsx scripts/update-viewer.ts` from that directory +3. Run `pnpm build` to verify success +4. Commit all changes including updated viewer files + ### Database Migrations - Add migration scripts in `apps/server/src/migrations/YYMMDD_HHMM__description.sql` - Update schema in `apps/server/src/assets/db/schema.sql` @@ -299,6 +319,7 @@ Trilium provides powerful user scripting capabilities: - Translation files in `apps/client/src/translations/` - Use translation system via `t()` function - Automatic pluralization: Add `_other` suffix to translation keys (e.g., `item` and `item_other` for singular/plural) +- When a translated string contains **interpolated components** (e.g. links, note references) whose order may vary across languages, use `` from `react-i18next` instead of `t()`. This lets translators reorder components freely (e.g. `" in "` vs `"in , "`) ## Testing Conventions diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000000..9fd17b8d67 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "trilium": { + "type": "http", + "url": "http://localhost:8080/mcp" + } + } +} diff --git a/.nvmrc b/.nvmrc index bd165d99d1..045200741c 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -24.14.0 \ No newline at end of file +24.14.1 \ No newline at end of file diff --git a/CLAUDE.md b/CLAUDE.md index 5e70898951..acec08b8ae 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -118,6 +118,9 @@ Trilium provides powerful user scripting capabilities: ### Internationalization - Translation files in `apps/client/src/translations/` - Supported languages: English, German, Spanish, French, Romanian, Chinese +- **Only add new translation keys to `en/translation.json`** — translations for other languages are managed via Weblate and will be contributed by the community +- Third-party components (e.g., mind-map context menu) should use i18next `t()` for their labels, with the English strings added to `en/translation.json` under a dedicated namespace (e.g., `"mind-map"`) +- When a translated string contains **interpolated components** (e.g. links, note references) whose order may vary across languages, use `` from `react-i18next` instead of `t()`. This lets translators reorder components freely (e.g. `" in "` vs `"in , "`) ### Security Considerations - Per-note encryption with granular protected sessions @@ -125,6 +128,15 @@ Trilium provides powerful user scripting capabilities: - OpenID and TOTP authentication support - Sanitization of user-generated content +### Client-Side API Restrictions +- **Do not use `crypto.randomUUID()`** or other Web Crypto APIs that require secure contexts - Trilium can run over HTTP, not just HTTPS +- Use `randomString()` from `apps/client/src/services/utils.ts` for generating IDs instead + +### Shared Types Policy +- Types shared between client and server belong in `@triliumnext/commons` (`packages/commons/src/lib/`) +- Import shared types directly from `@triliumnext/commons` - do not re-export them from app-specific modules +- Keep app-specific types (e.g., `LlmProvider` for server, `StreamCallbacks` for client) in their respective apps + ## Common Development Tasks ### Adding New Note Types @@ -140,10 +152,37 @@ Trilium provides powerful user scripting capabilities: - Create new package in `packages/` following existing plugin structure - Register in `packages/ckeditor5/src/plugins.ts` +### Adding New LLM Tools +Tools are defined using `defineTools()` in `apps/server/src/services/llm/tools/` and automatically registered for both the LLM chat and MCP server. + +1. Add the tool definition in the appropriate module (`note_tools.ts`, `attribute_tools.ts`, `attachment_tools.ts`, `hierarchy_tools.ts`) or create a new module +2. Each tool needs: `description`, `inputSchema` (Zod), `execute` function, and optionally `mutates: true` for write operations +3. If creating a new module, wrap tools in `defineTools({...})` and add the registry to `allToolRegistries` in `tools/index.ts` +4. Add a client-side friendly name in `apps/client/src/translations/en/translation.json` under `llm.tools.` — use **imperative tense** (e.g. "Search notes", "Create note", "Get attributes"), not present continuous +5. Use ETAPI (`apps/server/src/etapi/`) as inspiration for what fields to expose, but **do not import ETAPI mappers** — inline the field mappings directly in the tool so the LLM layer stays decoupled from the API layer + +### Updating PDF.js +1. Update `pdfjs-dist` version in `packages/pdfjs-viewer/package.json` +2. Run `npx tsx scripts/update-viewer.ts` from that directory +3. Run `pnpm build` to verify success +4. Commit all changes including updated viewer files + ### Database Migrations - Add migration scripts in `apps/server/src/migrations/` - Update schema in `apps/server/src/assets/db/schema.sql` +### Server-Side Static Assets +- Static assets (templates, SQL, translations, etc.) go in `apps/server/src/assets/` +- Access them at runtime via `RESOURCE_DIR` from `apps/server/src/services/resource_dir.ts` (e.g. `path.join(RESOURCE_DIR, "llm", "skills", "file.md")`) +- **Do not use `import.meta.url`/`fileURLToPath`** to resolve file paths — the server is bundled into CJS for production, so `import.meta.url` will not point to the source directory +- **Do not use `__dirname` with relative paths** from source files — after bundling, `__dirname` points to the bundle output, not the original source tree + +## MCP Server +- Trilium exposes an MCP (Model Context Protocol) server at `http://localhost:8080/mcp`, configured in `.mcp.json` +- The MCP server is **only available when the Trilium server is running** (`pnpm run server:start`) +- It provides tools for reading, searching, and modifying notes directly from the AI assistant +- Use it to interact with actual note data when developing or debugging note-related features + ## Build System Notes - Uses pnpm for monorepo management - Vite for fast development builds diff --git a/apps/build-docs/package.json b/apps/build-docs/package.json index dd53e3a85c..98a346e05f 100644 --- a/apps/build-docs/package.json +++ b/apps/build-docs/package.json @@ -14,15 +14,15 @@ "keywords": [], "author": "Elian Doran ", "license": "AGPL-3.0-only", - "packageManager": "pnpm@10.32.1", + "packageManager": "pnpm@10.33.0", "devDependencies": { - "@redocly/cli": "2.24.1", + "@redocly/cli": "2.25.3", "archiver": "7.0.1", "fs-extra": "11.3.4", "js-yaml": "4.1.1", "react": "19.2.4", "react-dom": "19.2.4", - "typedoc": "0.28.17", + "typedoc": "0.28.18", "typedoc-plugin-missing-exports": "4.1.2" } } diff --git a/apps/client/package.json b/apps/client/package.json index 45ee0bd6d2..4b48c04d14 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -28,48 +28,48 @@ "@mermaid-js/layout-elk": "0.2.1", "@mind-elixir/node-menu": "5.0.1", "@popperjs/core": "2.11.8", - "@preact/signals": "2.8.2", + "@preact/signals": "2.9.0", "@triliumnext/ckeditor5": "workspace:*", "@triliumnext/codemirror": "workspace:*", "@triliumnext/commons": "workspace:*", "@triliumnext/highlightjs": "workspace:*", "@triliumnext/share-theme": "workspace:*", "@triliumnext/split.js": "workspace:*", - "@univerjs/preset-sheets-conditional-formatting": "0.18.0", - "@univerjs/preset-sheets-core": "0.18.0", - "@univerjs/preset-sheets-data-validation": "0.18.0", - "@univerjs/preset-sheets-filter": "0.18.0", - "@univerjs/preset-sheets-find-replace": "0.18.0", - "@univerjs/preset-sheets-note": "0.18.0", - "@univerjs/preset-sheets-sort": "0.18.0", - "@univerjs/presets": "0.18.0", - "@zumer/snapdom": "2.5.0", + "@univerjs/preset-sheets-conditional-formatting": "0.19.0", + "@univerjs/preset-sheets-core": "0.19.0", + "@univerjs/preset-sheets-data-validation": "0.19.0", + "@univerjs/preset-sheets-filter": "0.19.0", + "@univerjs/preset-sheets-find-replace": "0.19.0", + "@univerjs/preset-sheets-note": "0.19.0", + "@univerjs/preset-sheets-sort": "0.19.0", + "@univerjs/presets": "0.19.0", + "@zumer/snapdom": "2.7.0", "autocomplete.js": "0.38.1", "bootstrap": "5.3.8", "boxicons": "2.1.4", "clsx": "2.1.1", "color": "5.0.3", "debounce": "3.0.0", - "dompurify": "3.2.5", + "dompurify": "3.3.3", "draggabilly": "3.0.0", "force-graph": "1.51.2", "globals": "17.4.0", - "i18next": "25.10.3", - "i18next-http-backend": "3.0.2", + "i18next": "26.0.3", + "i18next-http-backend": "3.0.4", "jquery": "4.0.0", "jquery.fancytree": "2.38.5", "jsplumb": "2.15.6", - "katex": "0.16.40", + "katex": "0.16.44", "leaflet": "1.9.4", "leaflet-gpx": "2.2.0", "mark.js": "8.11.1", "marked": "17.0.5", "mermaid": "11.13.0", - "mind-elixir": "5.9.3", + "mind-elixir": "5.10.0", "normalize.css": "8.0.1", - "panzoom": "9.4.3", + "panzoom": "9.4.4", "preact": "10.29.0", - "react-i18next": "16.6.0", + "react-i18next": "17.0.2", "react-window": "2.2.7", "reveal.js": "6.0.0", "rrule": "2.8.1", @@ -87,9 +87,9 @@ "@types/mark.js": "8.11.12", "@types/tabulator-tables": "6.3.1", "copy-webpack-plugin": "14.0.0", - "happy-dom": "20.8.4", + "happy-dom": "20.8.9", "lightningcss": "1.32.0", "script-loader": "0.7.2", - "vite-plugin-static-copy": "3.3.0" + "vite-plugin-static-copy": "4.0.0" } } diff --git a/apps/client/src/components/app_context.ts b/apps/client/src/components/app_context.ts index 1c1389810a..d731f03382 100644 --- a/apps/client/src/components/app_context.ts +++ b/apps/client/src/components/app_context.ts @@ -302,6 +302,7 @@ export type CommandMappings = { ninthTab: CommandData; lastTab: CommandData; showNoteSource: CommandData; + showNoteOCRText: CommandData; showSQLConsole: CommandData; showBackendLog: CommandData; showCheatsheet: CommandData; @@ -508,7 +509,7 @@ type EventMappings = { contentSafeMarginChanged: { top: number; noteContext: NoteContext; - } + }; }; export type EventListener = { diff --git a/apps/client/src/components/root_command_executor.ts b/apps/client/src/components/root_command_executor.ts index 2aa5b90499..4560eafce6 100644 --- a/apps/client/src/components/root_command_executor.ts +++ b/apps/client/src/components/root_command_executor.ts @@ -148,6 +148,19 @@ export default class RootCommandExecutor extends Component { } } + async showNoteOCRTextCommand() { + const notePath = appContext.tabManager.getActiveContextNotePath(); + + if (notePath) { + await appContext.tabManager.openTabWithNoteWithHoisting(notePath, { + activate: true, + viewScope: { + viewMode: "ocr" + } + }); + } + } + async showAttachmentsCommand() { const notePath = appContext.tabManager.getActiveContextNotePath(); diff --git a/apps/client/src/entities/fnote.ts b/apps/client/src/entities/fnote.ts index 4082671b87..12fd311bec 100644 --- a/apps/client/src/entities/fnote.ts +++ b/apps/client/src/entities/fnote.ts @@ -18,7 +18,7 @@ const RELATION = "relation"; * end user. Those types should be used only for checking against, they are * not for direct use. */ -export type NoteType = "file" | "image" | "search" | "noteMap" | "launcher" | "doc" | "contentWidget" | "text" | "relationMap" | "render" | "canvas" | "mermaid" | "book" | "webView" | "code" | "mindMap" | "spreadsheet"; +export type NoteType = "file" | "image" | "search" | "noteMap" | "launcher" | "doc" | "contentWidget" | "text" | "relationMap" | "render" | "canvas" | "mermaid" | "book" | "webView" | "code" | "mindMap" | "spreadsheet" | "llmChat"; export interface NotePathRecord { isArchived: boolean; diff --git a/apps/client/src/services/content_renderer.ts b/apps/client/src/services/content_renderer.ts index ec29f094b5..e037383a73 100644 --- a/apps/client/src/services/content_renderer.ts +++ b/apps/client/src/services/content_renderer.ts @@ -1,6 +1,6 @@ import "./content_renderer.css"; -import { normalizeMimeTypeForCKEditor } from "@triliumnext/commons"; +import { normalizeMimeTypeForCKEditor, type TextRepresentationResponse } from "@triliumnext/commons"; import { h, render } from "preact"; import WheelZoom from 'vanilla-js-wheel-zoom'; @@ -15,6 +15,7 @@ import openService from "./open.js"; import protectedSessionService from "./protected_session.js"; import protectedSessionHolder from "./protected_session_holder.js"; import renderService from "./render.js"; +import server from "./server.js"; import { applySingleBlockSyntaxHighlight } from "./syntax_highlight.js"; import utils, { getErrorMessage } from "./utils.js"; @@ -32,6 +33,7 @@ export interface RenderOptions { includeArchivedNotes?: boolean; /** Set of note IDs that have already been seen during rendering to prevent infinite recursion. */ seenNoteIds?: Set; + showTextRepresentation?: boolean; } const CODE_MIME_TYPES = new Set(["application/json"]); @@ -55,9 +57,9 @@ export async function getRenderedContent(this: {} | { ctx: string }, entity: FNo } else if (type === "code") { await renderCode(entity, $renderedContent); } else if (["image", "canvas", "mindMap", "spreadsheet"].includes(type)) { - renderImage(entity, $renderedContent, options); + await renderImage(entity, $renderedContent, options); } else if (!options.tooltip && ["file", "pdf", "audio", "video"].includes(type)) { - await renderFile(entity, type, $renderedContent); + await renderFile(entity, type, $renderedContent, options); } else if (type === "mermaid") { await renderMermaid(entity, $renderedContent); } else if (type === "render" && entity instanceof FNote) { @@ -138,7 +140,7 @@ async function renderCode(note: FNote | FAttachment, $renderedContent: JQuery, options: RenderOptions = {}) { +async function renderImage(entity: FNote | FAttachment, $renderedContent: JQuery, options: RenderOptions = {}) { const encodedTitle = encodeURIComponent(entity.title); let url; @@ -146,13 +148,14 @@ function renderImage(entity: FNote | FAttachment, $renderedContent: JQuery`; + url = `api/attachments/${entity.attachmentId}/image/${encodedTitle}?${entity.utcDateModified}`; } $renderedContent // styles needed for the zoom to work well .css("display", "flex") .css("align-items", "center") - .css("justify-content", "center"); + .css("justify-content", "center") + .css("flex-direction", "column"); // OCR text is displayed below the image. const $img = $("") .attr("src", url || "") @@ -178,9 +181,35 @@ function renderImage(entity: FNote | FAttachment, $renderedContent: JQuery) { +async function addOCRTextIfAvailable(note: FNote, $content: JQuery) { + try { + const data = await server.get(`ocr/notes/${note.noteId}/text`); + if (data.success && data.hasOcr && data.text) { + const $ocrSection = $(` +
+
+ ${t("ocr.extracted_text")} +
+
+
+ `); + + $ocrSection.find('.ocr-content').text(data.text); + $content.append($ocrSection); + } + } catch (error) { + // Silently fail if OCR API is not available + console.debug('Failed to fetch OCR text:', error); + } +} + +async function renderFile(entity: FNote | FAttachment, type: string, $renderedContent: JQuery, options: RenderOptions = {}) { let entityType, entityId; if (entity instanceof FNote) { @@ -220,6 +249,10 @@ async function renderFile(entity: FNote | FAttachment, type: string, $renderedCo $content.append($videoPreview); } + if (entity instanceof FNote && options.showTextRepresentation) { + await addOCRTextIfAvailable(entity, $content); + } + if (entityType === "notes" && "noteId" in entity) { // TODO: we should make this available also for attachments, but there's a problem with "Open externally" support // in attachment list diff --git a/apps/client/src/services/date_notes.ts b/apps/client/src/services/date_notes.ts index 21709b1bb0..f452e55dec 100644 --- a/apps/client/src/services/date_notes.ts +++ b/apps/client/src/services/date_notes.ts @@ -84,6 +84,55 @@ async function createSearchNote(opts = {}) { return await froca.getNote(note.noteId); } +async function createLlmChat() { + const note = await server.post("special-notes/llm-chat"); + + await ws.waitForMaxKnownEntityChangeId(); + + return await froca.getNote(note.noteId); +} + +/** + * Gets the most recently modified LLM chat. + * Returns null if no chat exists. + */ +async function getMostRecentLlmChat() { + const note = await server.get("special-notes/most-recent-llm-chat"); + + if (!note) { + return null; + } + + await ws.waitForMaxKnownEntityChangeId(); + + return await froca.getNote(note.noteId); +} + +/** + * Gets the most recent LLM chat, or creates a new one if none exists. + * Used by sidebar chat for persistent conversations across page refreshes. + */ +async function getOrCreateLlmChat() { + const note = await server.get("special-notes/get-or-create-llm-chat"); + + await ws.waitForMaxKnownEntityChangeId(); + + return await froca.getNote(note.noteId); +} + +export interface RecentLlmChat { + noteId: string; + title: string; + dateModified: string; +} + +/** + * Gets a list of recent LLM chats for the history popup. + */ +async function getRecentLlmChats(limit: number = 10): Promise { + return await server.get(`special-notes/recent-llm-chats?limit=${limit}`); +} + export default { getInboxNote, getTodayNote, @@ -94,5 +143,9 @@ export default { getMonthNote, getYearNote, createSqlConsole, - createSearchNote + createSearchNote, + createLlmChat, + getMostRecentLlmChat, + getOrCreateLlmChat, + getRecentLlmChats }; diff --git a/apps/client/src/services/experimental_features.ts b/apps/client/src/services/experimental_features.ts index 8cfbe126e8..d56836ef6b 100644 --- a/apps/client/src/services/experimental_features.ts +++ b/apps/client/src/services/experimental_features.ts @@ -13,6 +13,11 @@ export const experimentalFeatures = [ id: "new-layout", name: t("experimental_features.new_layout_name"), description: t("experimental_features.new_layout_description"), + }, + { + id: "llm", + name: t("experimental_features.llm_name"), + description: t("experimental_features.llm_description"), } ] as const satisfies ExperimentalFeature[]; diff --git a/apps/client/src/services/i18n.ts b/apps/client/src/services/i18n.ts index c8bb9097d7..5b5f38b762 100644 --- a/apps/client/src/services/i18n.ts +++ b/apps/client/src/services/i18n.ts @@ -24,8 +24,7 @@ export async function initLocale() { backend: { loadPath: `${window.glob.assetPath}/translations/{{lng}}/{{ns}}.json` }, - returnEmptyString: false, - showSupportNotice: false + returnEmptyString: false }); await setDayjsLocale(locale); diff --git a/apps/client/src/services/in_app_help.ts b/apps/client/src/services/in_app_help.ts index ce4c0cdd15..4db04f3c4b 100644 --- a/apps/client/src/services/in_app_help.ts +++ b/apps/client/src/services/in_app_help.ts @@ -19,7 +19,8 @@ export const byNoteType: Record, string | null> = { search: null, text: null, webView: null, - spreadsheet: null + spreadsheet: null, + llmChat: null }; export const byBookType: Record = { diff --git a/apps/client/src/services/link.ts b/apps/client/src/services/link.ts index b74dd5f7b1..bee2ec09b7 100644 --- a/apps/client/src/services/link.ts +++ b/apps/client/src/services/link.ts @@ -28,7 +28,7 @@ async function getLinkIcon(noteId: string, viewMode: ViewMode | undefined) { return icon; } -export type ViewMode = "default" | "source" | "attachments" | "contextual-help" | "note-map"; +export type ViewMode = "default" | "source" | "attachments" | "contextual-help" | "note-map" | "ocr"; export interface ViewScope { /** diff --git a/apps/client/src/services/llm_chat.ts b/apps/client/src/services/llm_chat.ts new file mode 100644 index 0000000000..fa0a0279d3 --- /dev/null +++ b/apps/client/src/services/llm_chat.ts @@ -0,0 +1,114 @@ +import type { LlmChatConfig, LlmCitation, LlmMessage, LlmModelInfo,LlmUsage } from "@triliumnext/commons"; + +import server from "./server.js"; + +/** + * Fetch available models from all configured providers. + */ +export async function getAvailableModels(): Promise { + const response = await server.get<{ models?: LlmModelInfo[] }>("llm-chat/models"); + return response.models ?? []; +} + +export interface StreamCallbacks { + onChunk: (text: string) => void; + onThinking?: (text: string) => void; + onToolUse?: (toolName: string, input: Record) => void; + onToolResult?: (toolName: string, result: string, isError?: boolean) => void; + onCitation?: (citation: LlmCitation) => void; + onUsage?: (usage: LlmUsage) => void; + onError: (error: string) => void; + onDone: () => void; +} + +/** + * Stream a chat completion from the LLM API using Server-Sent Events. + */ +export async function streamChatCompletion( + messages: LlmMessage[], + config: LlmChatConfig, + callbacks: StreamCallbacks +): Promise { + const headers = await server.getHeaders(); + + const response = await fetch(`${window.glob.baseApiUrl}llm-chat/stream`, { + method: "POST", + headers: { + ...headers, + "Content-Type": "application/json" + } as HeadersInit, + body: JSON.stringify({ messages, config }) + }); + + if (!response.ok) { + callbacks.onError(`HTTP ${response.status}: ${response.statusText}`); + return; + } + + const reader = response.body?.getReader(); + if (!reader) { + callbacks.onError("No response body"); + return; + } + + const decoder = new TextDecoder(); + let buffer = ""; + + try { + while (true) { + const { done, value } = await reader.read(); + if (done) break; + + buffer += decoder.decode(value, { stream: true }); + const lines = buffer.split("\n"); + buffer = lines.pop() || ""; + + for (const line of lines) { + if (line.startsWith("data: ")) { + try { + const data = JSON.parse(line.slice(6)); + + switch (data.type) { + case "text": + callbacks.onChunk(data.content); + break; + case "thinking": + callbacks.onThinking?.(data.content); + break; + case "tool_use": + callbacks.onToolUse?.(data.toolName, data.toolInput); + // Yield to force Preact to commit the pending tool call + // state before we process the result. + await new Promise((r) => setTimeout(r, 1)); + break; + case "tool_result": + callbacks.onToolResult?.(data.toolName, data.result, data.isError); + await new Promise((r) => setTimeout(r, 1)); + break; + case "citation": + if (data.citation) { + callbacks.onCitation?.(data.citation); + } + break; + case "usage": + if (data.usage) { + callbacks.onUsage?.(data.usage); + } + break; + case "error": + callbacks.onError(data.error); + break; + case "done": + callbacks.onDone(); + break; + } + } catch (e) { + console.error("Failed to parse SSE data line:", line, e); + } + } + } + } + } finally { + reader.releaseLock(); + } +} diff --git a/apps/client/src/services/note_types.ts b/apps/client/src/services/note_types.ts index 0047439c82..c99f04ae81 100644 --- a/apps/client/src/services/note_types.ts +++ b/apps/client/src/services/note_types.ts @@ -1,6 +1,7 @@ import type { NoteType } from "../entities/fnote.js"; import type { MenuCommandItem, MenuItem, MenuItemBadge, MenuSeparatorItem } from "../menus/context_menu.js"; import type { TreeCommandNames } from "../menus/tree_context_menu.js"; +import { isExperimentalFeatureEnabled } from "./experimental_features.js"; import froca from "./froca.js"; import { t } from "./i18n.js"; import server from "./server.js"; @@ -41,6 +42,7 @@ export const NOTE_TYPES: NoteTypeMapping[] = [ { type: "relationMap", mime: "application/json", title: t("note_types.relation-map"), icon: "bxs-network-chart" }, // Misc note types + { type: "llmChat", mime: "application/json", title: t("note_types.llm-chat"), icon: "bx-message-square-dots", isBeta: true }, { type: "render", mime: "", title: t("note_types.render-note"), icon: "bx-extension" }, { type: "search", title: t("note_types.saved-search"), icon: "bx-file-find", static: true }, { type: "webView", mime: "", title: t("note_types.web-view"), icon: "bx-globe-alt" }, @@ -92,6 +94,7 @@ async function getNoteTypeItems(command?: TreeCommandNames) { function getBlankNoteTypes(command?: TreeCommandNames): MenuItem[] { return NOTE_TYPES .filter((nt) => !nt.reserved && nt.type !== "book") + .filter((nt) => nt.type !== "llmChat" || isExperimentalFeatureEnabled("llm")) .map((nt) => { const menuItem: MenuCommandItem = { title: nt.title, diff --git a/apps/client/src/services/server.ts b/apps/client/src/services/server.ts index d9b776babc..010b57cae1 100644 --- a/apps/client/src/services/server.ts +++ b/apps/client/src/services/server.ts @@ -270,7 +270,11 @@ function ajax(url: string, method: string, data: unknown, headers: Headers, opts } else if (opts.silentInternalServerError && jqXhr.status === 500) { // report nothing } else { - await reportError(method, url, jqXhr.status, jqXhr.responseText); + try { + await reportError(method, url, jqXhr.status, jqXhr.responseText); + } catch { + // reportError may throw (e.g. ValidationError); ensure rej() is still called below. + } } rej(jqXhr.responseText); diff --git a/apps/client/src/services/utils.ts b/apps/client/src/services/utils.ts index bc35a0bd3f..30b5e4eaf7 100644 --- a/apps/client/src/services/utils.ts +++ b/apps/client/src/services/utils.ts @@ -922,6 +922,7 @@ export default { parseDate, formatDateISO, formatDateTime, + formatTime, formatTimeInterval, formatSize, localNowDateTime, diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index 5a462b9804..536db2d9b5 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -1750,10 +1750,13 @@ body:not(.mobile) #launcher-pane.horizontal .dropdown-submenu > .dropdown-menu { justify-content: space-between; align-items: baseline; font-weight: bold; - text-transform: uppercase; color: var(--muted-text-color) !important; } +#right-pane .card-header-title { + text-transform: uppercase; +} + #right-pane .card-header-buttons { display: flex; transform: scale(0.9); @@ -2638,3 +2641,26 @@ iframe.print-iframe { min-height: 50px; align-items: center; } + +.ocr-text-section { + padding: 10px; + background: var(--accented-background-color); + border-left: 3px solid var(--main-border-color); + text-align: left; + width: 100%; +} + +.ocr-header { + font-weight: bold; + margin-bottom: 8px; + font-size: 0.9em; + color: var(--muted-text-color); +} + +.ocr-content { + max-height: 150px; + overflow-y: auto; + font-size: 0.9em; + line-height: 1.4; + white-space: pre-wrap; +} diff --git a/apps/client/src/translations/ca/translation.json b/apps/client/src/translations/ca/translation.json index 6fbcf570e3..32de8b1615 100644 --- a/apps/client/src/translations/ca/translation.json +++ b/apps/client/src/translations/ca/translation.json @@ -93,7 +93,10 @@ "digits": "dígits", "inheritable": "Heretable", "delete": "Suprimeix", - "color_type": "Color" + "color_type": "Color", + "textarea": "Text multi linia", + "date_time": "Data i hora", + "precision_title": "Quants dígits han d'estar disponibles per a coma flotant a la interfície de configuració." }, "rename_label": { "to": "Per" diff --git a/apps/client/src/translations/cn/translation.json b/apps/client/src/translations/cn/translation.json index 73af593a43..5b57b0b279 100644 --- a/apps/client/src/translations/cn/translation.json +++ b/apps/client/src/translations/cn/translation.json @@ -446,7 +446,8 @@ "and_more": "... 以及另外 {{count}} 个。", "print_landscape": "导出为 PDF 时,将页面方向更改为横向而不是纵向。", "print_page_size": "导出为 PDF 时,更改页面大小。支持的值:A0A1A2A3A4A5A6LegalLetterTabloidLedger。", - "color_type": "颜色" + "color_type": "颜色", + "textarea": "多行文本" }, "attribute_editor": { "help_text_body1": "要添加标签,只需输入例如 #rock 或者如果您还想添加值,则例如 #year = 2020", @@ -708,7 +709,8 @@ "advanced": "高级", "export_as_image": "导出为图像", "export_as_image_png": "PNG(栅格)", - "export_as_image_svg": "SVG(矢量图)" + "export_as_image_svg": "SVG(矢量图)", + "view_ocr_text": "查看 OCR 文本" }, "onclick_button": { "no_click_handler": "按钮组件'{{componentId}}'没有定义点击处理程序" @@ -1196,12 +1198,28 @@ }, "images": { "images_section_title": "图片", - "download_images_automatically": "自动下载图片以供离线使用。", - "download_images_description": "粘贴的 HTML 可能包含在线图片的引用,Trilium 会找到这些引用并下载图片,以便它们可以离线使用。", - "enable_image_compression": "启用图片压缩", - "max_image_dimensions": "图片的最大宽度/高度(超过此限制的图像将会被缩放)。", - "jpeg_quality_description": "JPEG 质量(10 - 最差质量,100 最佳质量,建议为 50 - 85)", - "max_image_dimensions_unit": "像素" + "download_images_automatically": "自动下载图片", + "download_images_description": "从粘贴的 HTML 代码中下载引用的在线图片,以便离线使用。", + "enable_image_compression": "图片压缩", + "max_image_dimensions": "最大图像尺寸", + "jpeg_quality_description": "建议范围为 50–85。较低的值可以减小文件大小,较高的值可以保留细节。", + "max_image_dimensions_unit": "像素", + "enable_image_compression_description": "上传或粘贴图片时,对其进行压缩和调整大小。", + "max_image_dimensions_description": "超过此尺寸的图片将自动调整大小。", + "jpeg_quality": "JPEG质量", + "ocr_section_title": "文本提取(OCR)", + "ocr_related_content_languages": "内容语言(用于文本提取)", + "ocr_auto_process": "自动处理新文件", + "ocr_auto_process_description": "自动从新上传或粘贴的文件中提取文本。", + "ocr_min_confidence": "最低置信度", + "ocr_confidence_description": "仅提取置信度高于此阈值的文本。较低的置信度阈值会包含更多文本,但可能准确性较低。", + "batch_ocr_title": "处理现有文件", + "batch_ocr_description": "从笔记中的所有现有图像、PDF 和 Office 文档中提取文本。这可能需要一些时间,具体取决于文件数量。", + "batch_ocr_start": "开始批量处理", + "batch_ocr_starting": "开始批量处理...", + "batch_ocr_progress": "正在处理 {{processed}} 个文件,共 {{total}} 个文件...", + "batch_ocr_completed": "批量处理完成!已处理 {{processed}} 个文件。", + "batch_ocr_error": "批量处理过程中出错:{{error}}" }, "attachment_erasure_timeout": { "attachment_erasure_timeout": "附件清理超时", @@ -1534,8 +1552,9 @@ "new-feature": "新建", "collections": "集合", "book": "集合", - "ai-chat": "AI聊天", - "spreadsheet": "电子表格" + "ai-chat": "AI对话", + "spreadsheet": "电子表格", + "llm-chat": "AI对话" }, "protect_note": { "toggle-on": "保护笔记", @@ -2045,7 +2064,9 @@ "title": "实验选项", "disclaimer": "这些选项处于实验阶段,可能导致系统不稳定。请谨慎使用。", "new_layout_name": "新布局", - "new_layout_description": "尝试全新布局,呈现更现代的外观并提升易用性。后续版本将进行重大调整。" + "new_layout_description": "尝试全新布局,呈现更现代的外观并提升易用性。后续版本将进行重大调整。", + "llm_name": "AI/大语言模型对话", + "llm_description": "启用由大语言模型驱动的 AI对话侧边栏和大语言模型对话笔记。" }, "tab_history_navigation_buttons": { "go-back": "返回前一笔记", @@ -2167,5 +2188,124 @@ }, "setup_form": { "more_info": "了解更多" + }, + "media": { + "play": "播放(空格)", + "pause": "暂停(空格)", + "back-10s": "后退10秒(左箭头键)", + "forward-30s": "前进30秒", + "mute": "静音(M)", + "unmute": "取消静音(M)", + "playback-speed": "播放速度", + "loop": "循环播放", + "disable-loop": "禁用循环播放", + "rotate": "旋转", + "picture-in-picture": "画中画", + "exit-picture-in-picture": "退出画中画", + "fullscreen": "全屏(F)", + "exit-fullscreen": "退出全屏", + "unsupported-format": "此文件格式不支持媒体预览:\n{{mime}}", + "zoom-to-fit": "缩放以填充", + "zoom-reset": "重置缩放以填充" + }, + "mermaid": { + "sample_diagrams": "示例图:", + "sample_flowchart": "流程图", + "sample_class": "类图", + "sample_sequence": "时序图", + "sample_entity_relationship": "实体关系图", + "sample_state": "状态图", + "sample_mindmap": "思维导图", + "sample_architecture": "架构图", + "sample_block": "模块图", + "sample_c4": "C4 图", + "sample_gantt": "甘特图", + "sample_git": "Git 流程图", + "sample_kanban": "看板图", + "sample_packet": "数据包图", + "sample_pie": "饼图", + "sample_quadrant": "象限图", + "sample_radar": "雷达图", + "sample_requirement": "需求图", + "sample_sankey": "桑基图", + "sample_timeline": "时间轴图", + "sample_treemap": "树形图", + "sample_user_journey": "用户旅程图", + "sample_xy": "散点图", + "sample_venn": "韦恩图", + "sample_ishikawa": "鱼骨图", + "placeholder": "输入你的美人鱼图的内容,或者使用下面的示例图之一。" + }, + "llm_chat": { + "placeholder": "输入消息…", + "send": "发送", + "sending": "正在发送...", + "empty_state": "在下方输入消息,即可开始对话。", + "searching_web": "在网上搜索…", + "web_search": "联网搜索", + "sources": "来源", + "extended_thinking": "延伸思考", + "legacy_models": "传统模型", + "thinking": "正在思考...", + "thought_process": "思考过程", + "tool_calls": "{{count}} 次工具调用", + "input": "输入", + "result": "结果", + "error": "错误", + "tool_error": "失败", + "total_tokens": "{{total}} 个词元", + "tokens_detail": "{{prompt}} 提示词 + {{completion}} 补全", + "tokens_used": "{{prompt}} 提示词 + {{completion}} 补全 = {{total}} 个词元", + "tokens_used_with_cost": "{{prompt}} 提示词 + {{completion}} 补全 = {{total}} 个词元(约 ${{cost}})", + "tokens_used_with_model": "{{model}}: {{prompt}} 提示词 + {{completion}} 补全 = {{total}} 个词元", + "tokens_used_with_model_and_cost": "{{model}}: {{prompt}} 提示词 + {{completion}} 补全 = {{total}} 个词元(约 ${{cost}})", + "tokens": "词元", + "context_used": "{{percentage}}% 使用率", + "note_context_enabled": "点击即可禁用笔记上下文:{{title}}", + "note_context_disabled": "点击即可将当前注释添加到上下文中", + "no_provider_message": "未配置人工智能提供商。添加一个即可开始对话。", + "add_provider": "添加人工智能提供商", + "note_tools": "笔记访问" + }, + "sidebar_chat": { + "title": "AI对话", + "launcher_title": "打开AI对话", + "new_chat": "开始新对话", + "save_chat": "将对话保存到笔记", + "empty_state": "开始对话", + "history": "对话历史", + "recent_chats": "最近对话", + "no_chats": "无历史对话" + }, + "ocr": { + "extracted_text": "提取文本(OCR)", + "extracted_text_title": "提取文本(OCR)", + "loading_text": "正在加载OCR文本...", + "no_text_available": "暂无OCR文本", + "no_text_explanation": "该笔记未进行 OCR 文本提取处理,或未找到文本。", + "failed_to_load": "OCR文本加载失败", + "process_now": "处理 OCR", + "processing": "正在处理...", + "processing_started": "OCR识别已开始。请稍候片刻并刷新页面。", + "processing_failed": "OCR处理启动失败", + "view_extracted_text": "查看提取的文本(OCR)" + }, + "mind-map": { + "addChild": "添加子节点", + "addParent": "添加父节点", + "addSibling": "添加同级节点", + "removeNode": "删除节点", + "focus": "专注模式", + "cancelFocus": "退出专注模式", + "moveUp": "上移", + "moveDown": "下移", + "link": "链接", + "linkBidirectional": "双向链接", + "clickTips": "请点击目标节点", + "summary": "总结" + }, + "llm": { + "settings_description": "配置人工智能和大语言模型集成。", + "add_provider": "添加提供商" } } diff --git a/apps/client/src/translations/de/translation.json b/apps/client/src/translations/de/translation.json index 49a5a6c90d..1275af9825 100644 --- a/apps/client/src/translations/de/translation.json +++ b/apps/client/src/translations/de/translation.json @@ -446,7 +446,8 @@ "and_more": "... und {{count}} mehr.", "print_landscape": "Beim Export als PDF, wird die Seitenausrichtung Querformat anstatt Hochformat verwendet.", "print_page_size": "Beim Export als PDF, wird die Größe der Seite angepasst. Unterstützte Größen: A0, A1, A2, A3, A4, A5, A6, Legal, Letter, Tabloid, Ledger.", - "color_type": "Farbe" + "color_type": "Farbe", + "textarea": "Mehrzeilen-Text" }, "attribute_editor": { "help_text_body1": "Um ein Label hinzuzufügen, gebe einfach z.B. ein. #rock oder wenn du auch einen Wert hinzufügen möchten, dann z.B. #year = 2024", diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json index 27891a02ab..ce49038fb5 100644 --- a/apps/client/src/translations/en/translation.json +++ b/apps/client/src/translations/en/translation.json @@ -369,7 +369,7 @@ "calendar_root": "marks note which should be used as root for day notes. Only one should be marked as such.", "archived": "notes with this label won't be visible by default in search results (also in Jump To, Add Link dialogs etc).", "exclude_from_export": "notes (with their sub-tree) won't be included in any note export", - "run": "defines on which events script should run. Possible values are:\n
    \n
  • frontendStartup - when Trilium frontend starts up (or is refreshed), but not on mobile.
  • \n
  • mobileStartup - when Trilium frontend starts up (or is refreshed), on mobile.
  • \n
  • backendStartup - when Trilium backend starts up
  • \n
  • hourly - run once an hour. You can use additional label runAtHour to specify at which hour.
  • \n
  • daily - run once a day
  • \n
", + "run": "defines on which events script should run. Possible values are:\n
    \n
  • frontendStartup - when Trilium frontend starts up (or is refreshed), but not on mobile.
  • \n
  • mobileStartup - when Trilium frontend starts up (or is refreshed), on mobile.
  • \n
  • backendStartup - when Trilium backend starts up.
  • \n
  • hourly - run once an hour. You can use additional label runAtHour to specify at which hour.
  • \n
  • daily - run once a day.
  • \n
", "run_on_instance": "Define which trilium instance should run this on. Default to all instances.", "run_at_hour": "On which hour should this run. Should be used together with #run=hourly. Can be defined multiple times for more runs during the day.", "disable_inclusion": "scripts with this label won't be included into parent script execution.", @@ -691,6 +691,7 @@ "search_in_note": "Search in note", "note_source": "Note source", "note_attachments": "Note attachments", + "view_ocr_text": "View OCR text", "open_note_externally": "Open note externally", "open_note_externally_title": "File will be open in an external application and watched for changes. You'll then be able to upload the modified version back to Trilium.", "open_note_custom": "Open note custom", @@ -1157,7 +1158,9 @@ "title": "Experimental Options", "disclaimer": "These options are experimental and may cause instability. Use with caution.", "new_layout_name": "New Layout", - "new_layout_description": "Try out the new layout for a more modern look and improved usability. Subject to heavy change in the upcoming releases." + "new_layout_description": "Try out the new layout for a more modern look and improved usability. Subject to heavy change in the upcoming releases.", + "llm_name": "AI / LLM Chat", + "llm_description": "Enable the AI chat sidebar and LLM chat notes powered by large language models." }, "fonts": { "theme_defined": "Theme defined", @@ -1252,12 +1255,28 @@ }, "images": { "images_section_title": "Images", - "download_images_automatically": "Download images automatically for offline use.", - "download_images_description": "Pasted HTML can contain references to online images, Trilium will find those references and download the images so that they are available offline.", - "enable_image_compression": "Enable image compression", - "max_image_dimensions": "Max width / height of an image (image will be resized if it exceeds this setting).", + "download_images_automatically": "Download images automatically", + "download_images_description": "Download referenced online images from pasted HTML so they are available offline.", + "enable_image_compression": "Image compression", + "enable_image_compression_description": "Compress and resize images when they are uploaded or pasted.", + "max_image_dimensions": "Max image dimensions", + "max_image_dimensions_description": "Images exceeding this size will be resized automatically.", "max_image_dimensions_unit": "pixels", - "jpeg_quality_description": "JPEG quality (10 - worst quality, 100 - best quality, 50 - 85 is recommended)" + "jpeg_quality": "JPEG quality", + "jpeg_quality_description": "Recommended range is 50–85. Lower values reduce file size, higher values preserve detail.", + "ocr_section_title": "Text Extraction (OCR)", + "ocr_related_content_languages": "Content languages (used for text extraction)", + "ocr_auto_process": "Auto-process new files", + "ocr_auto_process_description": "Automatically extract text from newly uploaded or pasted files.", + "ocr_min_confidence": "Minimum confidence", + "ocr_confidence_description": "Only extract text above this confidence threshold. Lower values include more text but may be less accurate.", + "batch_ocr_title": "Process Existing Files", + "batch_ocr_description": "Extract text from all existing images, PDFs, and Office documents in your notes. This may take some time depending on the number of files.", + "batch_ocr_start": "Start Batch Processing", + "batch_ocr_starting": "Starting batch processing...", + "batch_ocr_progress": "Processing {{processed}} of {{total}} files...", + "batch_ocr_completed": "Batch processing completed! Processed {{processed}} files.", + "batch_ocr_error": "Error during batch processing: {{error}}" }, "attachment_erasure_timeout": { "attachment_erasure_timeout": "Attachment Erasure Timeout", @@ -1303,7 +1322,7 @@ "custom_name_label": "Custom search engine name", "custom_name_placeholder": "Customize search engine name", "custom_url_label": "Custom search engine URL should include {keyword} as a placeholder for the search term.", - "custom_url_placeholder": "Customize search engine url", + "custom_url_placeholder": "Customize search engine URL", "save_button": "Save" }, "tray": { @@ -1599,6 +1618,7 @@ "geo-map": "Geo Map", "beta-feature": "Beta", "ai-chat": "AI Chat", + "llm-chat": "AI Chat", "task-list": "Task List", "new-feature": "New", "collections": "Collections", @@ -1610,6 +1630,48 @@ "toggle-on-hint": "Note is not protected, click to make it protected", "toggle-off-hint": "Note is protected, click to make it unprotected" }, + "llm_chat": { + "placeholder": "Type a message...", + "send": "Send", + "sending": "Sending...", + "empty_state": "Start a conversation by typing a message below.", + "searching_web": "Searching the web...", + "web_search": "Web search", + "note_tools": "Note access", + "sources": "Sources", + "sources_summary": "{{count}} sources from {{sites}} sites", + "extended_thinking": "Extended thinking", + "legacy_models": "Legacy models", + "thinking": "Thinking...", + "thought_process": "Thought process", + "tool_calls": "{{count}} tool call(s)", + "input": "Input", + "result": "Result", + "error": "Error", + "tool_error": "failed", + "total_tokens": "{{total}} tokens", + "tokens_detail": "{{prompt}} prompt + {{completion}} completion", + "tokens_used": "{{prompt}} prompt + {{completion}} completion = {{total}} tokens", + "tokens_used_with_cost": "{{prompt}} prompt + {{completion}} completion = {{total}} tokens (~${{cost}})", + "tokens_used_with_model": "{{model}}: {{prompt}} prompt + {{completion}} completion = {{total}} tokens", + "tokens_used_with_model_and_cost": "{{model}}: {{prompt}} prompt + {{completion}} completion = {{total}} tokens (~${{cost}})", + "tokens": "tokens", + "context_used": "{{percentage}}% used", + "note_context_enabled": "Click to disable note context: {{title}}", + "note_context_disabled": "Click to include current note in context", + "no_provider_message": "No AI provider configured. Add one to start chatting.", + "add_provider": "Add AI Provider" + }, + "sidebar_chat": { + "title": "AI Chat", + "launcher_title": "Open AI Chat", + "new_chat": "Start new chat", + "save_chat": "Save chat to notes", + "empty_state": "Start a conversation", + "history": "Chat history", + "recent_chats": "Recent chats", + "no_chats": "No previous chats" + }, "shared_switch": { "shared": "Shared", "toggle-on-title": "Share the note", @@ -1921,7 +1983,7 @@ }, "content_language": { "title": "Content languages", - "description": "Select one or more languages that should appear in the language selection in the Basic Properties section of a read-only or editable text note. This will allow features such as spell-checking or right-to-left support." + "description": "Select one or more languages that should appear in the language selection in the Basic Properties section of a read-only or editable text note. This will allow features such as spell-checking, right-to-left support and text extraction (OCR)." }, "switch_layout_button": { "title_vertical": "Move editing pane to the bottom", @@ -2021,6 +2083,19 @@ "calendar_view": { "delete_note": "Delete note..." }, + "ocr": { + "extracted_text": "Extracted Text (OCR)", + "extracted_text_title": "Extracted Text (OCR)", + "loading_text": "Loading OCR text...", + "no_text_available": "No OCR text available", + "no_text_explanation": "This note has not been processed for OCR text extraction or no text was found.", + "failed_to_load": "Failed to load OCR text", + "process_now": "Process OCR", + "processing": "Processing...", + "processing_started": "OCR processing has been started. Please wait a moment and refresh.", + "processing_failed": "Failed to start OCR processing", + "view_extracted_text": "View extracted text (OCR)" + }, "command_palette": { "tree-action-name": "Tree: {{name}}", "export_note_title": "Export Note", @@ -2230,5 +2305,60 @@ "sample_xy": "XY", "sample_venn": "Venn", "sample_ishikawa": "Ishikawa" + }, + "mind-map": { + "addChild": "Add child", + "addParent": "Add parent", + "addSibling": "Add sibling", + "removeNode": "Remove node", + "focus": "Focus Mode", + "cancelFocus": "Cancel Focus Mode", + "moveUp": "Move up", + "moveDown": "Move down", + "link": "Link", + "linkBidirectional": "Bidirectional Link", + "clickTips": "Please click the target node", + "summary": "Summary" + }, + "llm": { + "settings_title": "AI / LLM", + "settings_description": "Configure AI and Large Language Model integrations.", + "feature_not_enabled": "Enable the LLM experimental feature in Settings → Advanced → Experimental features to use AI integrations.", + "add_provider": "Add Provider", + "add_provider_title": "Add AI Provider", + "configured_providers": "Configured Providers", + "no_providers_configured": "No providers configured yet.", + "provider_name": "Name", + "provider_type": "Provider", + "actions": "Actions", + "delete_provider": "Delete", + "delete_provider_confirmation": "Are you sure you want to delete the provider \"{{name}}\"?", + "api_key": "API Key", + "api_key_placeholder": "Enter your API key", + "cancel": "Cancel", + "mcp_title": "MCP (Model Context Protocol)", + "mcp_enabled": "MCP server", + "mcp_enabled_description": "Expose a Model Context Protocol (MCP) endpoint so that AI coding assistants (e.g. Claude Code, GitHub Copilot) can read and modify your notes. The endpoint is only accessible from localhost.", + "mcp_endpoint_title": "Endpoint URL", + "mcp_endpoint_description": "Add this URL to your AI assistant's MCP configuration", + "tools": { + "search_notes": "Search notes", + "get_note": "Get note", + "get_note_content": "Get note content", + "update_note_content": "Update note content", + "append_to_note": "Append to note", + "create_note": "Create note", + "get_attributes": "Get attributes", + "get_attribute": "Get attribute", + "set_attribute": "Set attribute", + "delete_attribute": "Delete attribute", + "get_child_notes": "Get child notes", + "get_subtree": "Get subtree", + "load_skill": "Load skill", + "web_search": "Web search", + "note_in_parent": " in ", + "get_attachment": "Get attachment", + "get_attachment_content": "Read attachment content" + } } } diff --git a/apps/client/src/translations/fr/translation.json b/apps/client/src/translations/fr/translation.json index be019eaa16..6cba618672 100644 --- a/apps/client/src/translations/fr/translation.json +++ b/apps/client/src/translations/fr/translation.json @@ -28,7 +28,10 @@ }, "widget-render-error": { "title": "Rendu impossible d'un widget React custom" - } + }, + "widget-missing-parent": "Le widget personnalisé ne comprend pas de propriété '{{property}}' définie\n\nSi ce script est prévu pour être exécuté sans fonctionnalité UI, utilisez '#run=frontendStartup' plutôt.", + "open-script-note": "Ouvrir une note script", + "scripting-error": "Échec du script personnalisé : {{title}}" }, "add_link": { "add_link": "Ajouter un lien", @@ -46,7 +49,7 @@ "prefix": "Préfixe : ", "save": "Sauvegarder", "branch_prefix_saved": "Le préfixe de la branche a été enregistré.", - "edit_branch_prefix_multiple": "Modifier le préfixe de branche pour {{count}} branches", + "edit_branch_prefix_multiple": "Modifier le préfixe pour {{count}} branches", "branch_prefix_saved_multiple": "Le préfixe de la branche a été sauvegardé pour {{count}} branches.", "affected_branches": "Branches impactées ({{count}}):" }, @@ -114,7 +117,7 @@ "export_in_progress": "Exportation en cours : {{progressCount}}", "export_finished_successfully": "L'exportation s'est terminée avec succès.", "format_pdf": "PDF - pour l'impression ou le partage de documents.", - "share-format": "HTML pour la publication Web - utilise le même thème que celui utilisé pour les notes partagées, mais peut être publié sous forme de site Web statique." + "share-format": "HTML pour la publication Web : utilise le même thème que celui utilisé pour les notes partagées, mais peut être publié sous forme de site Web statique." }, "help": { "noteNavigation": "Navigation dans les notes", @@ -443,7 +446,8 @@ "and_more": "... et {{count}} plus.", "print_landscape": "Lors de l'exportation en PDF, change l'orientation de la page en paysage au lieu de portrait.", "print_page_size": "Lors de l'exportation en PDF, change la taille de la page. Valeurs supportées : A0, A1, A2, A3, A4, A5, A6, Legal, Letter, Tabloid, Ledger.", - "color_type": "Couleur" + "color_type": "Couleur", + "textarea": "Texte multiligne" }, "attribute_editor": { "help_text_body1": "Pour ajouter un label, tapez simplement par ex. #rock, ou si vous souhaitez également ajouter une valeur, tapez par ex. #année = 2020", @@ -659,7 +663,8 @@ "show-cheatsheet": "Afficher l'aide rapide", "toggle-zen-mode": "Zen Mode", "new-version-available": "Nouvelle mise à jour disponible", - "download-update": "Obtenir la version {{latestVersion}}" + "download-update": "Obtenir la version {{latestVersion}}", + "search_notes": "Rechercher notes" }, "zen_mode": { "button_exit": "Sortir du Zen mode" @@ -703,7 +708,8 @@ "advanced": "Avancé", "export_as_image": "Exporter en tant qu'image", "export_as_image_png": "PNG", - "export_as_image_svg": "SVG (vectoriel)" + "export_as_image_svg": "SVG (vectoriel)", + "note_map": "Note Carte" }, "onclick_button": { "no_click_handler": "Le widget bouton '{{componentId}}' n'a pas de gestionnaire de clic défini" @@ -741,23 +747,25 @@ "button_title": "Exporter le diagramme au format SVG" }, "relation_map_buttons": { - "create_child_note_title": "Créer une nouvelle note enfant et l'ajouter à cette carte de relation", + "create_child_note_title": "Créer une note enfant et l'ajouter à la carte", "reset_pan_zoom_title": "Réinitialiser le panoramique et le zoom aux coordonnées et à la position initiales", "zoom_in_title": "Zoomer", "zoom_out_title": "Zoom arrière" }, "zpetne_odkazy": { "relation": "relation", - "backlink_one": "{{count}} Lien inverse", - "backlink_many": "", - "backlink_other": "{{count}} Liens inverses" + "backlink_one": "{{count}} Rétrolien", + "backlink_many": "{{count}} Rétroliens", + "backlink_other": "{{count}} Rétrolien" }, "mobile_detail_menu": { "insert_child_note": "Insérer une note enfant", "delete_this_note": "Supprimer cette note", "error_cannot_get_branch_id": "Impossible d'obtenir branchId pour notePath '{{notePath}}'", "error_unrecognized_command": "Commande non reconnue {{command}}", - "note_revisions": "Révision de la note" + "note_revisions": "Révision de la note", + "backlinks": "Rétro-liens", + "content_language_switcher": "Langue du contenu: {{language}}" }, "note_icon": { "change_note_icon": "Changer l'icône de note", @@ -766,7 +774,12 @@ "filter": "Filtre", "filter-none": "Toutes les icônes", "filter-default": "Icônes par défaut", - "icon_tooltip": "{{name}}\nPack d'icônes : {{iconPack}}" + "icon_tooltip": "{{name}}\nPack d'icônes : {{iconPack}}", + "no_results": "Aucune icône trouvée.", + "search_placeholder_one": "{{number}} icône recherchées parmi {{count}} packs.", + "search_placeholder_many": "{{number}} icônes recherchées parmi {{count}} packs.", + "search_placeholder_other": "{{number}} icônes recherchées parmi {{count}} packs.", + "search_placeholder_filtered": "Rechercher {{number}} icônes dans {{name}}" }, "basic_properties": { "note_type": "Type de note", @@ -782,7 +795,7 @@ "collapse_all_notes": "Réduire toutes les notes", "collapse": "Réduire", "expand": "Développer", - "invalid_view_type": "Type de vue non valide '{{type}}'", + "invalid_view_type": "Type de vue '{{type}}' non valide", "calendar": "Calendrier", "book_properties": "Propriétés de la collection", "table": "Tableau", @@ -793,7 +806,8 @@ "expand_tooltip": "Développe les éléments enfants directs de cette collection (à un niveau). Pour plus d'options, appuyez sur la flèche à droite.", "expand_first_level": "Développer les enfants directs", "expand_nth_level": "Développer sur {{depth}} niveaux", - "expand_all_levels": "Développer tous les niveaux" + "expand_all_levels": "Développer tous les niveaux", + "hide_child_notes": "Masquer les notes enfants dans l’arborescence" }, "edited_notes": { "no_edited_notes_found": "Aucune note modifiée ce jour-là...", @@ -806,7 +820,7 @@ "file_type": "Type de fichier", "file_size": "Taille du fichier", "download": "Télécharger", - "open": "Ouvrir", + "open": "Ouvrir dans une nouvelle fenêtre", "upload_new_revision": "Téléverser une nouvelle version", "upload_success": "Une nouvelle version de fichier a été téléversée.", "upload_failed": "Le téléversement d'une nouvelle version de fichier a échoué.", @@ -826,7 +840,8 @@ }, "inherited_attribute_list": { "title": "Attributs hérités", - "no_inherited_attributes": "Aucun attribut hérité." + "no_inherited_attributes": "Aucun attribut hérité.", + "none": "aucun" }, "note_info_widget": { "note_id": "Identifiant de la note", @@ -903,7 +918,8 @@ "unknown_search_option": "Option de recherche inconnue {{searchOptionName}}", "search_note_saved": "La note de recherche a été enregistrée dans {{- notePathTitle}}", "actions_executed": "Les actions ont été exécutées.", - "view_options": "Afficher les options:" + "view_options": "Afficher les options:", + "option": "option" }, "similar_notes": { "title": "Notes similaires", @@ -997,7 +1013,7 @@ "no_attachments": "Cette note ne contient aucune pièce jointe." }, "book": { - "no_children_help": "Cette note de type Livre n'a aucune note enfant, donc il n'y a rien à afficher. Consultez le wiki pour plus de détails.", + "no_children_help": "Cette collection ne contient pas de notes enfants, il n'y a donc rien à afficher.", "drag_locked_title": "Edition verrouillée", "drag_locked_message": "Le glisser-déposer n'est pas autorisé car l'édition de cette collection est verrouillé." }, @@ -1171,8 +1187,8 @@ }, "code_mime_types": { "title": "Types MIME disponibles dans la liste déroulante", - "tooltip_syntax_highlighting": "Souligner la syntaxe", - "tooltip_code_block_syntax": "Blocs de code dans les notes de texte", + "tooltip_syntax_highlighting": "Mise en évidence de la syntaxe", + "tooltip_code_block_syntax": "Blocs de code dans les notes textuelles", "tooltip_code_note_syntax": "Notes de code" }, "vim_key_bindings": { @@ -1367,7 +1383,8 @@ "description": "Description", "reload_app": "Recharger l'application pour appliquer les modifications", "set_all_to_default": "Réinitialiser aux valeurs par défaut", - "confirm_reset": "Voulez-vous vraiment réinitialiser tous les raccourcis clavier par défaut ?" + "confirm_reset": "Voulez-vous vraiment réinitialiser tous les raccourcis clavier par défaut ?", + "no_results": "Aucun raccourci correspondant à '{{filter}}'" }, "spellcheck": { "title": "Vérification orthographique", @@ -1402,7 +1419,7 @@ "will_be_deleted_in": "Cette pièce jointe sera automatiquement supprimée dans {{time}}", "will_be_deleted_soon": "Cette pièce jointe sera bientôt supprimée automatiquement", "deletion_reason": ", car la pièce jointe n'est pas liée dans le contenu de la note. Pour empêcher la suppression, ajoutez à nouveau le lien de la pièce jointe dans le contenu d'une note ou convertissez la pièce jointe en note.", - "role_and_size": "Rôle : {{role}}, Taille : {{size}}", + "role_and_size": "Rôle : {{role}}, Taille : {{size}}, MIME: {{- mimeType}}", "link_copied": "Lien de pièce jointe copié dans le presse-papiers.", "unrecognized_role": "Rôle de pièce jointe « {{role}} » non reconnu." }, @@ -1453,10 +1470,13 @@ "import-into-note": "Importer dans la note", "apply-bulk-actions": "Appliquer des Actions groupées", "converted-to-attachments": "Les notes {{count}} ont été converties en pièces jointes.", - "convert-to-attachment-confirm": "Êtes-vous sûr de vouloir convertir les notes sélectionnées en pièces jointes de leurs notes parentes ?", + "convert-to-attachment-confirm": "Êtes-vous sûr de vouloir convertir les notes sélectionnées en pièces jointes de leurs notes parentales ? Cette opération s'applique uniquement aux notes d'image, les autres notes seront ignorées.", "archive": "Archive", "unarchive": "Désarchiver", - "open-in-popup": "Modification rapide" + "open-in-popup": "Modification rapide", + "open-in-a-new-window": "Ouvrir dans une nouvelle fenêtre", + "hide-subtree": "Masquer le sous-arbre", + "show-subtree": "Afficher le sous-arbre" }, "shared_info": { "shared_publicly": "Cette note est partagée publiquement sur {{- link}}.", @@ -1485,7 +1505,10 @@ "task-list": "Liste de tâches", "book": "Collection", "new-feature": "Nouveau", - "collections": "Collections" + "collections": "Collections", + "ai-chat": "Chat IA", + "llm-chat": "Chat AI", + "spreadsheet": "Feuille de calcul" }, "protect_note": { "toggle-on": "Protéger la note", @@ -1516,7 +1539,13 @@ }, "highlights_list_2": { "title": "Accentuations", - "options": "Options" + "options": "Options", + "title_with_count_one": "{{count}} mise en évidence", + "title_with_count_many": "{{count}} mises en évidence", + "title_with_count_other": "{{count}} mises en évidence", + "modal_title": "Configurer les mises en évidence", + "menu_configure": "Configuration des mises en évidence...", + "no_highlights": "Aucune mise en évidence." }, "quick-search": { "placeholder": "Recherche rapide", @@ -1540,7 +1569,17 @@ "create-child-note": "Créer une note enfant", "unhoist": "Désactiver le focus", "toggle-sidebar": "Basculer la barre latérale", - "dropping-not-allowed": "Lâcher des notes à cet endroit n'est pas autorisé" + "dropping-not-allowed": "Déplacer des notes à cet emplacement n'est pas autorisé.", + "clone-indicator-tooltip": "Cette note a {{- count}} parents: {{- parents}}", + "clone-indicator-tooltip-single": "Cette note est clonée (1 parent supplémentaire: {{- parent}})", + "shared-indicator-tooltip": "Cette note est partagée publiquement", + "shared-indicator-tooltip-with-url": "Cette note est partagée publiquement sur: {{- url}}", + "subtree-hidden-tooltip_one": "{{count}} note enfant cachée de l'arbre", + "subtree-hidden-tooltip_many": "{{count}} notes enfants cachées de l'arbre", + "subtree-hidden-tooltip_other": "{{count}} notes enfants cachées de l'arbre", + "subtree-hidden-moved-title": "Ajouté à {{title}}", + "subtree-hidden-moved-description-collection": "Cette collection cache ses notes enfants dans l'arbre.", + "subtree-hidden-moved-description-other": "Les notes enfants sont cachées dans l'arbre pour cette note." }, "title_bar_buttons": { "window-on-top": "Épingler cette fenêtre au premier plan" @@ -1551,7 +1590,12 @@ "printing_pdf": "Export au format PDF en cours...", "print_report_title": "Imprimer le rapport", "print_report_collection_details_button": "Consulter les détails", - "print_report_collection_details_ignored_notes": "Notes ignorées" + "print_report_collection_details_ignored_notes": "Notes ignorées", + "print_report_error_title": "Échec de l'impression", + "print_report_stack_trace": "Trace de la pile", + "print_report_collection_content_one": "La {{count}} note de la collection n'a pas pu être imprimée car elle n'est pas prises en charge ou est protégée.", + "print_report_collection_content_many": "Les {{count}} notes de la collection n'ont pas pu être imprimées car elles ne sont pas prises en charge ou sont protégées.", + "print_report_collection_content_other": "Les {{count}} notes de la collection n'ont pas pu être imprimées car elles ne sont pas prises en charge ou sont protégées." }, "note_title": { "placeholder": "saisir le titre de la note ici...", @@ -1560,17 +1604,24 @@ "note_type_switcher_label": "Basculer de {{type}} à :", "note_type_switcher_others": "Autre type de note", "note_type_switcher_templates": "Modèle", - "note_type_switcher_collection": "Collection" + "note_type_switcher_collection": "Collection", + "edited_notes": "Notes éditées ce jour", + "promoted_attributes": "Attributs promus" }, "search_result": { "no_notes_found": "Aucune note n'a été trouvée pour les paramètres de recherche donnés.", - "search_not_executed": "La recherche n'a pas encore été exécutée. Cliquez sur le bouton \"Rechercher\" ci-dessus pour voir les résultats." + "search_not_executed": "La recherche n'a pas encore été exécutée.", + "search_now": "Recherche maintenant" }, "spacer": { "configure_launchbar": "Configurer la Barre de raccourcis" }, "sql_result": { - "no_rows": "Aucune ligne n'a été renvoyée pour cette requête" + "no_rows": "Aucune ligne n'a été renvoyée pour cette requête", + "not_executed": "La requête n'a pas encore été exécutée.", + "failed": "L'exécution de requêtes SQL a échoué", + "statement_result": "Résultat de la déclaration", + "execute_now": "Exécuter maintenant" }, "sql_table_schemas": { "tables": "Tableaux" @@ -1693,7 +1744,7 @@ "paste": "Coller", "paste-as-plain-text": "Coller comme texte brut", "search_online": "Rechercher «{{term}}» avec {{searchEngine}}", - "search_in_trilium": "Rechercher \"{{term}}\" dans Trilium" + "search_in_trilium": "Rechercher « {{term}} » dans Trilium" }, "image_context_menu": { "copy_reference_to_clipboard": "Copier la référence dans le presse-papiers", @@ -1703,14 +1754,15 @@ "open_note_in_new_tab": "Ouvrir la note dans un nouvel onglet", "open_note_in_new_split": "Ouvrir la note dans une nouvelle division", "open_note_in_new_window": "Ouvrir la note dans une nouvelle fenêtre", - "open_note_in_popup": "Édition rapide" + "open_note_in_popup": "Édition rapide", + "open_note_in_other_split": "Ouvrir la note dans l'autre volet" }, "electron_integration": { "desktop-application": "Application de bureau", "native-title-bar": "Barre de titre native", "native-title-bar-description": "Sous Windows et macOS, désactiver la barre de titre native rend l'application plus compacte. Sous Linux, le maintien de la barre de titre native permet une meilleure intégration avec le reste du système.", - "background-effects": "Activer les effets d'arrière-plan (Windows 11 uniquement)", - "background-effects-description": "L'effet Mica ajoute un fond flou et élégant aux fenêtres de l'application, créant une profondeur et un style moderne.", + "background-effects": "Activer les effets d'arrière-plan", + "background-effects-description": "Ajoute un arrière-plan flou et élégant aux fenêtres d'application, créant de la profondeur et un style moderne. La « barre de titre native » doit être désactivée.", "restart-app-button": "Redémarrez l'application pour afficher les modifications", "zoom-factor": "Facteur de zoom" }, @@ -1729,7 +1781,8 @@ "geo-map": { "create-child-note-title": "Créer une nouvelle note enfant et l'ajouter à la carte", "create-child-note-instruction": "Cliquez sur la carte pour créer une nouvelle note à cet endroit ou appuyez sur Échap pour la supprimer.", - "unable-to-load-map": "Impossible de charger la carte." + "unable-to-load-map": "Impossible de charger la carte.", + "create-child-note-text": "Ajouter le marqueur" }, "geo-map-context": { "open-location": "Ouvrir la position", @@ -1834,12 +1887,13 @@ "book_properties_config": { "hide-weekends": "Masquer les week-ends", "display-week-numbers": "Afficher les numéros de semaine", - "map-style": "Style de carte :", + "map-style": "Style de carte", "max-nesting-depth": "Profondeur d'imbrication maximale :", "raster": "Trame", "vector_light": "Vecteur (clair)", "vector_dark": "Vecteur (foncé)", - "show-scale": "Afficher l'échelle" + "show-scale": "Afficher l'échelle", + "show-labels": "Afficher les noms des marqueurs" }, "table_context_menu": { "delete_row": "Supprimer la ligne" @@ -1860,7 +1914,7 @@ "add-column-placeholder": "Entrez le nom de la colonne...", "edit-note-title": "Cliquez pour modifier le titre de la note", "edit-column-title": "Cliquez pour modifier le titre de la colonne", - "column-already-exists": "Cette colonne existe déjà dans le tableau." + "column-already-exists": "Cette colonne existe déjà sur le tableau." }, "presentation_view": { "edit-slide": "Modifier cette diapositive", @@ -1890,22 +1944,30 @@ "next_theme_message": "Vous utilisez actuellement le thème hérité de l'ancienne version, souhaitez-vous essayer le nouveau thème ?", "next_theme_button": "Essayez le nouveau thème", "background_effects_title": "Les effets d'arrière-plan sont désormais stables", - "background_effects_message": "Sur les appareils Windows, les effets d'arrière-plan sont désormais parfaitement stables. Ils ajoutent une touche de couleur à l'interface utilisateur en floutant l'arrière-plan. Cette technique est également utilisée dans d'autres applications comme l'Explorateur Windows.", + "background_effects_message": "Sur les appareils Windows et macOS les effets d'arrière-plan sont désormais stables. Ils ajoutent une touche de couleur à l'interface utilisateur en floutant l'arrière-plan.", "background_effects_button": "Activer les effets d'arrière-plan", - "dismiss": "Rejeter" + "dismiss": "Rejeter", + "new_layout_title": "Nouvelle mise en page", + "new_layout_message": "Nous avons introduit une mise en page modernisée pour Trilium. Le ruban a été supprimé et intégré de manière transparente dans l'interface principale, avec une nouvelle barre d'état et des sections extensibles (telles que les attributs promus) reprenant les fonctions clés.\n\nLa nouvelle mise en page est activée par défaut et peut être temporairement désactivée via Options → Apparence.", + "new_layout_button": "Plus d'infos" }, "settings": { "related_settings": "Paramètres associés" }, "settings_appearance": { "related_code_blocks": "Schéma de coloration syntaxique pour les blocs de code dans les notes de texte", - "related_code_notes": "Schéma de couleurs pour les notes de code" + "related_code_notes": "Schéma de couleurs pour les notes de code", + "ui": "Interface utilisateur", + "ui_old_layout": "Ancienne mise en page", + "ui_new_layout": "Nouvelle mise en page" }, "units": { "percentage": "%" }, "pagination": { - "total_notes": "{{count}} notes" + "total_notes": "{{count}} notes", + "prev_page": "Page précédente", + "next_page": "Page suivante" }, "collections": { "rendering_error": "Impossible d'afficher le contenu en raison d'une erreur." @@ -1924,8 +1986,9 @@ "unknown_widget": "Widget inconnu pour « {{id}} »." }, "note_language": { - "not_set": "Non défini", - "configure-languages": "Configurer les langues..." + "not_set": "Langage non défini", + "configure-languages": "Configurer les langues...", + "help-on-languages": "Aide sur les langues de contenu..." }, "content_language": { "title": "Contenu des langues", @@ -1973,14 +2036,288 @@ "title": "Options expérimentales", "disclaimer": "Ces options sont expérimentales et peuvent provoquer une instabilité. Utilisez avec prudence.", "new_layout_name": "Nouvelle mise en page", - "new_layout_description": "Essayez la nouvelle mise en page pour un look plus moderne et un usage améliorée. Sous réserve de changements importants dans les prochaines versions." + "new_layout_description": "Essayez la nouvelle mise en page pour un look plus moderne et un usage améliorée. Sous réserve de changements importants dans les prochaines versions.", + "llm_name": "AI / LLM Chat", + "llm_description": "Activer la barre de chat AI et les notes de chat LLM alimentées par de grands modèles de langage." }, "read-only-info": { "read-only-note": "Vous consultez actuellement une note en lecture seule.", "auto-read-only-note": "Cette note s'affiche en mode lecture seule pour un chargement plus rapide.", - "edit-note": "Editer la note" + "edit-note": "Modifier la note" }, "calendar_view": { - "delete_note": "Effacer la note..." + "delete_note": "Supprimer la note..." + }, + "media": { + "play": "Lire (Espace)", + "pause": "Pause (Espace)", + "back-10s": "Retour arrière 10s (flèche gauche)", + "forward-30s": "Avance 30s", + "mute": "Silence (M)", + "unmute": "Réactiver le son (M)", + "playback-speed": "Vitesse de lecture", + "loop": "Boucle", + "disable-loop": "Désactiver la boucle", + "rotate": "Rotation", + "picture-in-picture": "Image dans l'image", + "exit-picture-in-picture": "Sortir de Image dans l'image", + "fullscreen": "Plein-écran (F)", + "exit-fullscreen": "Sortir du mode plein-écran", + "unsupported-format": "L'aperçu multimédia n'est pas disponible pour ce format de fichier:\n{{mime}}", + "zoom-to-fit": "Zoom pour remplir", + "zoom-reset": "Annuler zoom pour remplir" + }, + "render": { + "setup_title": "Afficher du HTML personnalisé ou Preact JSX dans cette note", + "setup_create_sample_preact": "Créer un exemple de note avec Preact", + "setup_create_sample_html": "Créer un exemple de note avec HTML", + "setup_sample_created": "Un exemple de note a été créé en tant que note enfant.", + "disabled_description": "Ces notes de rendu proviennent d'une source externe. Pour vous protéger de contenu malveillant, elle n'est pas activée par défaut. Assurez-vous de faire confiance à la source avant de l’activer.", + "disabled_button_enable": "Activer la note de rendu" + }, + "web_view_setup": { + "title": "Créez la vue de la page Web directement dans Trilium", + "url_placeholder": "Entrez ou collez l'adresse du site Web, par exemple https://triliumnotes.org", + "create_button": "Créer une vue Web", + "invalid_url_title": "Adresse invalide", + "invalid_url_message": "Insérer une adresse Web valide, par exemple https://triliumnotes.org.", + "disabled_description": "Cette vue Web a été importée à partir d'une source externe. Pour vous protéger du phishing ou du contenu malveillant, elle ne se charge pas automatiquement. Vous pouvez l'activer si vous faites confiance à la source.", + "disabled_button_enable": "Activer la vue Web" + }, + "llm_chat": { + "placeholder": "Tapez un message...", + "send": "Envoyer", + "sending": "Envoi...", + "empty_state": "Démarrez une conversation en tapant un message ci-dessous.", + "searching_web": "Recherche sur le Web...", + "web_search": "Recherche sur le Web", + "note_tools": "Accès aux notes", + "sources": "Sources", + "extended_thinking": "Réflexion étendue", + "legacy_models": "Modèles hérités", + "thinking": "Réflexion...", + "thought_process": "Processus de réflexion", + "tool_calls": "{{count}} appel(s) d'outil", + "input": "Entrée", + "result": "Résultat", + "error": "Erreur", + "tool_error": "échoué", + "total_tokens": "{{total}} jetons", + "tokens_detail": "{{prompt}} prompt + {{completion}} achèvement", + "tokens_used": "{{prompt}} prompt + {{completion}} achèvement = {{total}} jetons", + "tokens_used_with_cost": "{{prompt}} prompt + {{completion}} achèvement = {{total}} jetons (~${{cost}})", + "tokens_used_with_model": "{{model}}: {{prompt}} prompt + {{completion}} achèvement = {{total}} jetons", + "tokens_used_with_model_and_cost": "{{model}}: {{prompt}} prompt + {{completion}} achèvement = {{total}} jetons (~${{cost}})", + "tokens": "jetons", + "context_used": "{{percentage}}% utilisé", + "note_context_enabled": "Cliquez pour désactiver le contexte de la note : {{title}}", + "note_context_disabled": "Cliquez pour inclure la note actuelle dans le contexte", + "no_provider_message": "Aucun fournisseur d'IA configuré. Ajoutez en un pour commencer à discuter.", + "add_provider": "Ajouter un fournisseur d'IA" + }, + "sidebar_chat": { + "title": "discussion IA", + "launcher_title": "Ouvrir la discussion IA", + "new_chat": "Démarrer une nouvelle discussion", + "save_chat": "Enregistrer la discussion dans les notes", + "empty_state": "Démarrer une conversation", + "history": "Historique des discussions", + "recent_chats": "Discussions récentes", + "no_chats": "Pas de discussions précédentes" + }, + "note-color": { + "clear-color": "Retirer la couleur de la note", + "set-color": "Définir la couleur de la note", + "set-custom-color": "Définir la couleur personnalisée de la note" + }, + "popup-editor": { + "maximize": "Basculer sur l'éditeur complet" + }, + "server": { + "unknown_http_error_title": "Erreur de communication avec le serveur", + "unknown_http_error_content": "Code de statut: {{statusCode}}\nURL: {{method}} {{url}}\nMessage: {{message}}", + "traefik_blocks_requests": "Si vous utilisez le reverse proxy Traefik, celui-ci a introduit un changement de rupture qui affecte la communication avec le serveur." + }, + "tab_history_navigation_buttons": { + "go-back": "Revenir à la note précédente", + "go-forward": "Aller vers la note suivante" + }, + "breadcrumb": { + "hoisted_badge": "Remonté", + "hoisted_badge_title": "Redescendu", + "workspace_badge": "Espace de travail", + "scroll_to_top_title": "Aller au début de la note", + "create_new_note": "Créer une nouvelle note enfant", + "empty_hide_archived_notes": "Cacher les notes archivées" + }, + "breadcrumb_badges": { + "read_only_explicit": "Lecture seule", + "read_only_explicit_description": "Cette note a été paramétrée manuellement en lecture seule.\nCliquer pour temporairement l'éditer.", + "read_only_auto": "Lecture seule automatique", + "read_only_auto_description": "Cette note a été réglée automatiquement en mode lecture seule pour des raisons de performances. Cette limite automatique est réglable à partir des paramètres.\n\nCliquez pour la modifier temporairement.", + "read_only_temporarily_disabled": "Temporairement modifiable", + "read_only_temporarily_disabled_description": "Cette note est actuellement modifiable, mais elle est normalement en lecture seule. La note redeviendra en lecture seule dès que vous accéderez à une autre note.\n\nCliquez pour réactiver le mode lecture seule.", + "shared_publicly": "Partagés publiquement", + "shared_locally": "Partagé localement", + "shared_copy_to_clipboard": "Copier le lien vers le presse-papier", + "shared_open_in_browser": "Ouvrir le lien dans le navigateur", + "shared_unshare": "Supprimer le partage", + "clipped_note": "Clip Web", + "clipped_note_description": "Cette note a été initialement construite depuis l'url {{url}}.\n\nCliquez pour accéder à la page Web source.", + "execute_script": "Exécuter le script", + "execute_script_description": "Cette note est une note de script. Cliquez pour exécuter le script.", + "execute_sql": "Exécuter la commande SQL", + "execute_sql_description": "Cette note est une note SQL. Cliquer pour exécuter la requête SQL.", + "save_status_saved": "Enregister", + "save_status_saving": "Enregistrement...", + "save_status_unsaved": "Non sauvée", + "save_status_error": "La sauvegarde a échoué", + "save_status_saving_tooltip": "Les modifications sont enregistrées.", + "save_status_unsaved_tooltip": "Il y a des changements non enregistrés. Ils seront enregistrés automatiquement dans un instant.", + "save_status_error_tooltip": "Une erreur s'est produite lors de l'enregistrement de la note. Si possible, essayez de copier le contenu de la note ailleurs et de recharger l'application." + }, + "right_pane": { + "toggle": "Basculer le panneau de droite", + "custom_widget_go_to_source": "Aller sur le code source", + "empty_message": "Rien à afficher pour cette note", + "empty_button": "Cacher le panneau" + }, + "pdf": { + "attachments_one": "{{count}} pièce jointe", + "attachments_many": "{{count}} pièces jointes", + "attachments_other": "{{count}} pièces jointes", + "layers_one": "{{count}} couche", + "layers_many": "{{count}} couches", + "layers_other": "{{count}} couches", + "pages_one": "{{count}} page", + "pages_many": "{{count}} pages", + "pages_other": "{{count}} pages", + "pages_alt": "Page {{pageNumber}}", + "pages_loading": "Chargement..." + }, + "platform_indicator": { + "available_on": "Disponible sur {{platform}}" + }, + "mobile_tab_switcher": { + "title_one": "{{count}} onglet", + "title_many": "{{count}} onglets", + "title_other": "{{count}} onglets", + "more_options": "Autres options" + }, + "bookmark_buttons": { + "bookmarks": "Signets" + }, + "active_content_badges": { + "type_icon_pack": "pack d'icônes", + "type_backend_script": "Script backend", + "type_frontend_script": "Script frontend", + "type_widget": "Widget", + "type_app_css": "CSS personnalisé", + "type_render_note": "Note de rendu", + "type_web_view": "Vue Web", + "type_app_theme": "Thème personnalisé", + "toggle_tooltip_enable_tooltip": "Cliquer pour activer {{type}}.", + "toggle_tooltip_disable_tooltip": "Cliquer pour désactiver ce {{type}}.", + "menu_docs": "Ouvrir la documentation", + "menu_execute_now": "Exécuter le script maintenant", + "menu_run": "Démarrer automatiquement", + "menu_run_disabled": "Manuellement", + "menu_run_backend_startup": "Lorsque le backend commence", + "menu_run_hourly": "Horaire", + "menu_run_daily": "Quotidien", + "menu_run_frontend_startup": "Lorsque le frontend du bureau démarre", + "menu_run_mobile_startup": "Lorsque le frontend mobile démarre", + "menu_change_to_widget": "Passer au widget", + "menu_change_to_frontend_script": "Passer au script frontend", + "menu_theme_base": "Thème de base" + }, + "setup_form": { + "more_info": "En savoir plus" + }, + "mermaid": { + "placeholder": "Tapez le contenu de votre diagramme Mermaid ou utilisez l'un des diagrammes de l'échantillon ci-dessous.", + "sample_diagrams": "Diagrammes d 'exemple:", + "sample_flowchart": "Organigramme", + "sample_class": "Classe", + "sample_sequence": "Séquence", + "sample_entity_relationship": "Entité relationnelle", + "sample_state": "État", + "sample_mindmap": "Carte mentale", + "sample_architecture": "Architecture", + "sample_block": "Bloc", + "sample_c4": "C4", + "sample_gantt": "Gantt", + "sample_git": "Git", + "sample_kanban": "Kanban", + "sample_packet": "Paquet", + "sample_pie": "Camembert", + "sample_quadrant": "Quadrant", + "sample_radar": "Radar", + "sample_requirement": "Exigence", + "sample_sankey": "Sankey", + "sample_timeline": "Chronologie", + "sample_treemap": "Arborescence", + "sample_user_journey": "Utilisateur Journey", + "sample_xy": "XY", + "sample_venn": "Venn", + "sample_ishikawa": "Ishikawa" + }, + "mind-map": { + "addChild": "Ajouter un enfant", + "addParent": "Ajouter parent", + "addSibling": "Ajouter un frère", + "removeNode": "Supprimer le nœud", + "focus": "Mode Focus", + "cancelFocus": "Annuler le mode Focus", + "moveUp": "Monter", + "moveDown": "Descendre", + "link": "Lien", + "linkBidirectional": "Lien bidirectionnel", + "clickTips": "Cliquer sur le nœud cible", + "summary": "Résumé" + }, + "llm": { + "settings_title": "AI / LLM", + "settings_description": "Configurer les intégrations AI et les LLM (Large Language Model).", + "add_provider": "Ajouter le fournisseur", + "add_provider_title": "Ajouter le fournisseur d'IA", + "configured_providers": "Fournisseurs configurés", + "no_providers_configured": "Aucun fournisseur n'est encore configuré.", + "provider_name": "Nom", + "provider_type": "Fournisseur", + "actions": "Actions", + "delete_provider": "Supprimer", + "delete_provider_confirmation": "Êtes-vous sûr de vouloir supprimer le fournisseur \"{{name}}\" ?", + "api_key": "Clé API", + "api_key_placeholder": "Entrer votre clé API", + "cancel": "Annuler" + }, + "status_bar": { + "language_title": "Changer de langue", + "note_info_title": "Afficher les informations sur les notes (par exemple, dates, taille des notes)", + "backlinks_one": "{{count}} rétrolien", + "backlinks_many": "{{count}} rétroliens", + "backlinks_other": "{{count}} rétroliens", + "backlinks_title_one": "voir le rétrolien", + "backlinks_title_many": "voir les rétroliens", + "backlinks_title_other": "voir les rétroliens", + "attachments_one": "{{count}} pièce-jointe", + "attachments_many": "{{count}} pièces-jointes", + "attachments_other": "{{count}} pièces-jointes", + "attachments_title_one": "Voir la pièce-jointe dans un nouvel onglet", + "attachments_title_many": "Voir les pièces-jointes dans un nouvel onglet", + "attachments_title_other": "Voir les pièces-jointes dans un nouvel onglet", + "attributes_one": "{{count}} attribut", + "attributes_many": "{{count}} attributs", + "attributes_other": "{{count}} attributs", + "attributes_title": "Attributs propres et attributs hérités", + "note_paths_one": "{{count}} chemin", + "note_paths_many": "{{count}} chemins", + "note_paths_other": "{{count}} chemins", + "note_paths_title": "Chemins de la note", + "code_note_switcher": "Changer de langue" + }, + "attributes_panel": { + "title": "Attributs de la note" } } diff --git a/apps/client/src/translations/ga/translation.json b/apps/client/src/translations/ga/translation.json index 0c2c66be12..b9be50e097 100644 --- a/apps/client/src/translations/ga/translation.json +++ b/apps/client/src/translations/ga/translation.json @@ -477,7 +477,8 @@ "and_more": "... agus {{count}} eile.", "print_landscape": "Agus é á onnmhairiú go PDF, athraítear treoshuíomh an leathanaigh go tírdhreach seachas portráid.", "print_page_size": "Agus é á easpórtáil go PDF, athraítear méid an leathanaigh. Luachanna tacaithe: A0, A1, A2, A3, A4, A5, A6, Legal, Letter, Tabloid, Ledger.", - "color_type": "Dath" + "color_type": "Dath", + "textarea": "Téacs Il-líne" }, "attribute_editor": { "help_text_body1": "Chun lipéad a chur leis, clóscríobh m.sh. #rock nó más mian leat luach a chur leis freisin ansin m.sh. #year = 2020", @@ -1126,7 +1127,9 @@ "title": "Roghanna Turgnamhacha", "disclaimer": "Is roghanna turgnamhacha iad seo agus d’fhéadfadh éagobhsaíocht a bheith mar thoradh orthu. Bain úsáid astu go cúramach.", "new_layout_name": "Leagan Amach Nua", - "new_layout_description": "Bain triail as an leagan amach nua le haghaidh cuma níos nua-aimseartha agus inúsáidteachta feabhsaithe. Tá sé faoi réir athruithe móra sna heisiúintí atá le teacht." + "new_layout_description": "Bain triail as an leagan amach nua le haghaidh cuma níos nua-aimseartha agus inúsáidteachta feabhsaithe. Tá sé faoi réir athruithe móra sna heisiúintí atá le teacht.", + "llm_name": "Comhrá AI / LLM", + "llm_description": "Cumasaigh an taobhbharra comhrá AI agus nótaí comhrá LLM faoi thiomáint ag samhlacha teanga móra." }, "fonts": { "theme_defined": "Téama sainmhínithe", @@ -1571,7 +1574,8 @@ "task-list": "Liosta Tascanna", "new-feature": "Nua", "collections": "Bailiúcháin", - "spreadsheet": "Scarbhileog" + "spreadsheet": "Scarbhileog", + "llm-chat": "Comhrá AI" }, "protect_note": { "toggle-on": "Cosain an nóta", @@ -2274,5 +2278,76 @@ "sample_xy": "XY", "sample_venn": "Venn", "sample_ishikawa": "Ishikawa" + }, + "llm_chat": { + "placeholder": "Clóscríobh teachtaireacht...", + "send": "Seol", + "sending": "Ag seoladh...", + "empty_state": "Tosaigh comhrá trí theachtaireacht a chlóscríobh thíos.", + "searching_web": "Ag cuardach an ghréasáin...", + "web_search": "Cuardach gréasáin", + "note_tools": "Rochtain nótaí", + "sources": "Foinsí", + "extended_thinking": "Smaointeoireacht leathnaithe", + "legacy_models": "Samhlacha oidhreachta", + "thinking": "Ag smaoineamh...", + "thought_process": "Próiseas smaointeoireachta", + "tool_calls": "{{count}} glao(í) uirlisí", + "input": "Ionchur", + "result": "Toradh", + "error": "Earráid", + "tool_error": "theip", + "total_tokens": "{{total}} comharthaí", + "tokens_detail": "leid {{prompt}} + críochnú {{completion}}", + "tokens_used": "{{prompt}} leid + {{completion}} críochnú = {{total}} comharthaí", + "tokens_used_with_cost": "{{prompt}} leid + {{completion}} críochnú = {{total}} comharthaí (~${{cost}})", + "tokens_used_with_model": "{{model}}: {{prompt}} leid + {{completion}} críochnú = {{total}} comharthaí", + "tokens_used_with_model_and_cost": "{{model}}: leid {{prompt}} + críochnú {{completion}} = {{total}} comharthaí (~${{cost}})", + "tokens": "comharthaí", + "context_used": "Úsáideadh {{percentage}}%", + "note_context_enabled": "Cliceáil chun comhthéacs nótaí a dhíchumasú: {{title}}", + "note_context_disabled": "Cliceáil chun an nóta reatha a chur san áireamh i gcomhthéacs", + "no_provider_message": "Níl aon soláthraí AI cumraithe. Cuir ceann leis chun comhrá a thosú.", + "add_provider": "Cuir Soláthraí AI leis" + }, + "sidebar_chat": { + "title": "Comhrá AI", + "launcher_title": "Oscail Comhrá AI", + "new_chat": "Tosaigh comhrá nua", + "save_chat": "Sábháil comhrá sna nótaí", + "empty_state": "Tosaigh comhrá", + "history": "Stair chomhrá", + "recent_chats": "Comhráite le déanaí", + "no_chats": "Gan aon chomhráite roimhe seo" + }, + "mind-map": { + "addChild": "Cuir páiste leis", + "addParent": "Cuir tuismitheoir leis", + "addSibling": "Cuir deartháir nó deirfiúr leis", + "removeNode": "Bain nód", + "focus": "Mód Fócais", + "cancelFocus": "Cealaigh Mód Fócais", + "moveUp": "Bog suas", + "moveDown": "Bog síos", + "link": "Nasc", + "linkBidirectional": "Nasc Déthreoch", + "clickTips": "Cliceáil ar an nód sprice le do thoil", + "summary": "Achoimre" + }, + "llm": { + "settings_title": "AI / LLM", + "settings_description": "Cumraigh comhtháthú idir Intleacht Shaorga agus Múnla Teanga Mór.", + "add_provider": "Cuir Soláthraí leis", + "add_provider_title": "Cuir Soláthraí AI leis", + "configured_providers": "Soláthraithe Cumraithe", + "no_providers_configured": "Níl aon soláthraithe cumraithe fós.", + "provider_name": "Ainm", + "provider_type": "Soláthraí", + "actions": "Gníomhartha", + "delete_provider": "Scrios", + "delete_provider_confirmation": "An bhfuil tú cinnte gur mian leat an soláthraí \"{{name}}\" a scriosadh?", + "api_key": "Eochair API", + "api_key_placeholder": "Cuir isteach d'eochair API", + "cancel": "Cealaigh" } } diff --git a/apps/client/src/translations/it/translation.json b/apps/client/src/translations/it/translation.json index 2ef5526c27..8776e64edd 100644 --- a/apps/client/src/translations/it/translation.json +++ b/apps/client/src/translations/it/translation.json @@ -520,7 +520,7 @@ "custom_name_label": "Nome del motore di ricerca personalizzato", "custom_name_placeholder": "Personalizza il nome del motore di ricerca", "custom_url_label": "L'URL del motore di ricerca personalizzato deve includere {keyword} come segnaposto per il termine di ricerca.", - "custom_url_placeholder": "Personalizza l'URL del motore di ricerca" + "custom_url_placeholder": "Personalizza indirizzo URL del motore di ricerca" }, "sql_table_schemas": { "tables": "Tabelle" @@ -917,7 +917,8 @@ "print_landscape": "Quando si esporta in PDF, cambia l'orientamento della pagina da verticale a orizzontale.", "print_page_size": "Quando si esporta in PDF, modifica le dimensioni della pagina. Valori supportati: A0, A1, A2, A3, A4, A5, A6, Legal, Letter, Tabloid, Ledger.", "color_type": "Colore", - "share_root": "segna la nota che viene servita su /share root." + "share_root": "segna la nota che viene servita su /share root.", + "textarea": "Testo su più righe" }, "attribute_editor": { "help_text_body1": "Per aggiungere un'etichetta, basta digitare ad esempio #rock oppure, se si desidera aggiungere anche un valore, ad esempio #year = 2020", @@ -1717,7 +1718,8 @@ "new-feature": "Nuovo", "collections": "Collezioni", "ai-chat": "Chat con IA", - "spreadsheet": "Foglio di calcolo" + "spreadsheet": "Foglio di calcolo", + "llm-chat": "Chat con IA" }, "protect_note": { "toggle-on": "Proteggi la nota", @@ -2050,7 +2052,9 @@ "title": "Opzioni sperimentali", "disclaimer": "Queste opzioni sono sperimentali e potrebbero causare instabilità. Usare con cautela.", "new_layout_name": "Nuovo layout", - "new_layout_description": "Prova il nuovo layout per un look più moderno e una maggiore usabilità. Soggetto a modifiche significative nelle prossime versioni." + "new_layout_description": "Prova il nuovo layout per un look più moderno e una maggiore usabilità. Soggetto a modifiche significative nelle prossime versioni.", + "llm_name": "Chat con IA / LLM", + "llm_description": "Attiva la barra laterale della chat con IA e le note della chat LLM basate su modelli linguistici di grandi dimensioni." }, "server": { "unknown_http_error_title": "Errore di comunicazione con il server", @@ -2197,5 +2201,109 @@ }, "setup_form": { "more_info": "Per saperne di più" + }, + "media": { + "play": "Gioca (Barra spaziatrice)", + "pause": "Pausa (Barra spaziatrice)", + "back-10s": "Indietro di 10 (tasto freccia sinistra)", + "forward-30s": "Avanti 30s", + "mute": "Muto (M)", + "unmute": "Riattiva audio (M)", + "playback-speed": "Velocità di riproduzione", + "loop": "Ciclo", + "disable-loop": "Disattiva il ciclo", + "rotate": "Ruota", + "picture-in-picture": "Immagine nell'immagine", + "exit-picture-in-picture": "Esci dalla modalità picture-in-picture", + "fullscreen": "Schermo intero (F)", + "exit-fullscreen": "Esci dalla modalità a schermo intero", + "unsupported-format": "Per questo formato di file non è disponibile l'anteprima multimediale:\n{{mime}}", + "zoom-to-fit": "Ingrandisci per riempire", + "zoom-reset": "Ripristina lo zoom a schermo intero" + }, + "mermaid": { + "placeholder": "Digita il contenuto del tuo diagramma Mermaid oppure utilizza uno dei diagrammi di esempio riportati di seguito.", + "sample_diagrams": "Esempi di diagrammi:", + "sample_flowchart": "Diagramma di flusso", + "sample_class": "Classe", + "sample_sequence": "Sequenza", + "sample_entity_relationship": "Relazioni tra entità", + "sample_state": "Stato", + "sample_mindmap": "Mappa mentale", + "sample_architecture": "Architettura", + "sample_block": "Blocco", + "sample_c4": "C4", + "sample_gantt": "Gantt", + "sample_git": "Git", + "sample_kanban": "Kanban", + "sample_packet": "Packet", + "sample_pie": "Torta", + "sample_quadrant": "Quadrante", + "sample_radar": "Radar", + "sample_requirement": "Requisito", + "sample_sankey": "Chiave", + "sample_timeline": "Cronologia", + "sample_treemap": "Treemap", + "sample_user_journey": "Percorso dell'utente", + "sample_xy": "XY", + "sample_venn": "Venn", + "sample_ishikawa": "Ishikawa" + }, + "llm_chat": { + "placeholder": "Scrivi un messaggio...", + "send": "Invia", + "sending": "Invio in corso...", + "empty_state": "Inizia una conversazione scrivendo un messaggio qui sotto.", + "searching_web": "Ricerca sul web...", + "web_search": "Ricerca sul web", + "note_tools": "Nota di accesso", + "sources": "Fonti", + "extended_thinking": "Riflessioni approfondite", + "legacy_models": "Modelli precedenti", + "thinking": "Sto riflettendo...", + "thought_process": "Processo mentale", + "tool_calls": "{{count}} chiamata/e di funzione", + "input": "Dati in ingresso", + "result": "Risultato", + "error": "Errore", + "tool_error": "fallito", + "total_tokens": "{{total}} gettoni", + "tokens_detail": "{{prompt}} prompt + {{completion}} completamento", + "tokens_used": "{{prompt}} prompt + {{completion}} completamento = {{total}} token", + "tokens_used_with_cost": "{{prompt}} prompt + {{completion}} completamento = {{total}} token (~${{cost}})", + "tokens_used_with_model": "{{model}}: {{prompt}} prompt + {{completion}} completamento = {{total}} token", + "tokens_used_with_model_and_cost": "{{model}}: {{prompt}} prompt + {{completion}} completamento = {{total}} token (~${{cost}})", + "tokens": "tokens", + "context_used": "{{percentage}}% utilizzato", + "note_context_enabled": "Clicca qui per disattivare il contesto della nota: {{title}}", + "note_context_disabled": "Clicca per includere la nota corrente nel contesto", + "no_provider_message": "Non è stato configurato alcun fornitore di IA. Aggiungine uno per iniziare a chattare.", + "add_provider": "Aggiungi un fornitore di IA" + }, + "sidebar_chat": { + "title": "Chat AI", + "launcher_title": "Apri Chat AI", + "new_chat": "Inizia una nuova chat", + "save_chat": "Salva la chat negli appunti", + "empty_state": "Avvia una conversazione", + "history": "Cronologia delle chat", + "recent_chats": "Conversazioni recenti", + "no_chats": "Nessuna conversazione precedente" + }, + "llm": { + "settings_title": "AI / LLM", + "settings_description": "Configurare le integrazioni con l'intelligenza artificiale e i modelli linguistici di grandi dimensioni.", + "add_provider": "Aggiungi fornitore", + "add_provider_title": "Aggiungi un fornitore di IA", + "configured_providers": "Fornitori configurati", + "no_providers_configured": "Non sono stati ancora configurati fornitori.", + "provider_name": "Nome", + "provider_type": "Fornitore", + "actions": "Azioni", + "delete_provider": "Elimina", + "delete_provider_confirmation": "Sei sicuro di voler eliminare il provider \"{{name}}\"?", + "api_key": "Chiave API", + "api_key_placeholder": "Inserisci la tua chiave API", + "cancel": "Annulla" } } diff --git a/apps/client/src/translations/ja/translation.json b/apps/client/src/translations/ja/translation.json index a7e959998b..7320a7ff10 100644 --- a/apps/client/src/translations/ja/translation.json +++ b/apps/client/src/translations/ja/translation.json @@ -486,7 +486,8 @@ "advanced": "高度", "export_as_image": "画像としてエクスポート", "export_as_image_png": "PNG (raster)", - "export_as_image_svg": "SVG (vector)" + "export_as_image_svg": "SVG (vector)", + "view_ocr_text": "OCR テキストを表示" }, "command_palette": { "export_note_title": "ノートをエクスポート", @@ -601,7 +602,8 @@ "new-feature": "New", "collections": "コレクション", "ai-chat": "AI チャット", - "spreadsheet": "スプレッドシート" + "spreadsheet": "スプレッドシート", + "llm-chat": "AI チャット" }, "edited_notes": { "no_edited_notes_found": "この日の編集されたノートはまだありません...", @@ -897,12 +899,28 @@ }, "images": { "images_section_title": "画像", - "download_images_automatically": "画像を自動的にダウンロードしてオフラインで使用可能にする。", - "download_images_description": "貼り付けられたHTMLにはオンライン画像への参照が含まれていることがありますが、Triliumはそれらの参照を見つけて画像をダウンロードし、オフラインで利用できるようにします。", - "enable_image_compression": "画像の圧縮を有効にする", - "max_image_dimensions": "画像の最大幅/高さ(この設定を超えると画像はリサイズされます)。", + "download_images_automatically": "画像を自動的にダウンロードする。", + "download_images_description": "貼り付けた HTML 内の参照画像をダウンロードし、オフラインでも利用できるようにする。", + "enable_image_compression": "画像の圧縮", + "max_image_dimensions": "画像の最大サイズ", "max_image_dimensions_unit": "ピクセル", - "jpeg_quality_description": "JPEGの品質(10 - 最低品質、100 - 最高品質、50 - 80を推奨)" + "jpeg_quality_description": "推奨範囲は50~85です。値が低いほどファイルサイズが小さくなり、値が高いほどディテールが保持されます。", + "enable_image_compression_description": "画像をアップロードまたは貼り付ける際に、画像を圧縮およびサイズ変更します。", + "max_image_dimensions_description": "このサイズを超える画像は自動的にサイズ変更されます", + "jpeg_quality": "JPEG 画質", + "ocr_section_title": "テキスト抽出(OCR)", + "ocr_related_content_languages": "コンテンツ言語(テキスト抽出に使用)", + "ocr_auto_process": "新しいファイルを自動処理", + "ocr_auto_process_description": "新しくアップロードまたは貼り付けられたファイルからテキストを自動的に抽出します。", + "ocr_min_confidence": "最低限の信頼度", + "ocr_confidence_description": "この信頼度閾値以上のテキストのみを抽出します。信頼度が低いほど抽出されるテキストの量は増えますが、精度が低下する可能性があります。", + "batch_ocr_title": "既存ファイルの処理", + "batch_ocr_description": "ノート内の既存の画像、PDF、Office 文書からテキストを抽出します。ファイル数によっては時間がかかる場合があります。", + "batch_ocr_start": "バッチ処理を開始します", + "batch_ocr_starting": "バッチ処理を開始しています...", + "batch_ocr_progress": "{{total}} ファイルのうち {{processed}} ファイルを処理中...", + "batch_ocr_completed": "バッチ処理が完了しました!{{processed}} ファイルを処理しました。", + "batch_ocr_error": "バッチ処理中にエラーが発生しました: {{error}}" }, "search_engine": { "title": "検索エンジン", @@ -915,7 +933,7 @@ "custom_name_label": "カスタム検索エンジンの名前", "custom_name_placeholder": "カスタム検索エンジンの名前", "custom_url_label": "カスタム検索エンジンのURLには、検索語句のプレースホルダーとして {keyword} を含める必要があります。", - "custom_url_placeholder": "カスタム検索エンジンのurl", + "custom_url_placeholder": "検索エンジンの URL をカスタマイズ", "save_button": "保存" }, "tray": { @@ -1102,7 +1120,7 @@ "calendar_root": "dayノートのルートとして使用するノートをマークします。このようにマークできるのは 1 つだけです。", "archived": "このラベルの付いたノートは、デフォルトでは検索結果に表示されません (ジャンプ先、リンクの追加ダイアログなどにも表示されません)。", "exclude_from_export": "ノート(サブツリーを含む)はノートのエクスポートには含まれません", - "run": "どのイベントでスクリプトを実行するかを定義します。可能な値は次の通り:\n
    \n
  • frontendStartup - Trilium フロントエンドが起動(または更新)されたとき。モバイルは除く
  • \n
  • mobileStartup - モバイルで Trilium フロントエンドが起動(または更新)されたとき。
  • \n
  • backendStartup - Trilium バックエンドが起動したとき
  • \n
  • hourly - 1時間に1回実行します。 runAtHour というラベルを追加して、実行時刻を指定できます。
  • \n
  • daily - 1日に1回実行
  • \n
", + "run": "スクリプトを実行するイベントを定義します。指定可能な値は以下の通りです:\n
    \n
  • frontendStartup - Trilium フロントエンドの起動時(または更新時)に実行されます。モバイルでは実行されません。
  • \n
  • mobileStartup - モバイルでの Trilium フロントエンドの起動時(または更新時)に実行されます。
  • \n
  • backendStartup - Trilium バックエンドの起動時。
  • \n
  • hourly - 1時間ごとに実行。 runAtHour というラベルを追加することで、実行時刻を指定できます。
  • \n
  • daily - 1日に1回実行。
  • \n
", "run_on_instance": "どの Trilium インスタンスでこれを実行するかを定義します。デフォルトはすべてのインスタンスです。", "run_at_hour": "何時に実行するかを指定します。 #run=hourly と併用してください。1日に複数回実行したい場合は、複数回定義できます。", "disable_inclusion": "このラベルが付いたスクリプトは親スクリプトの実行には含まれません。", @@ -1390,7 +1408,7 @@ }, "content_language": { "title": "コンテンツの言語", - "description": "読み取り専用または編集可能なテキストノートの基本プロパティセクションの言語選択に表示する言語を 1 つ以上選択します。これにより、スペルチェックや右から左へのサポートなどの機能が利用できるようになります。" + "description": "読み取り専用または編集可能なテキストノートの基本プロパティセクションの言語選択に表示する言語を 1 つ以上選択してください。これにより、スペルチェック、右から左へのサポート、テキスト抽出(OCR)などの機能が利用できるようになります。" }, "png_export_button": { "button_title": "図をPNG形式でエクスポート" @@ -2050,7 +2068,9 @@ "title": "実験オプション", "disclaimer": "これらのオプションは試験的なもので、動作が不安定になる可能性があります。注意してご使用ください。", "new_layout_name": "新しいレイアウト", - "new_layout_description": "よりモダンな外観と使いやすさが向上した新しいレイアウトをお試しください。今後のリリースで大幅な変更が加えられる可能性があります。" + "new_layout_description": "よりモダンな外観と使いやすさが向上した新しいレイアウトをお試しください。今後のリリースで大幅な変更が加えられる可能性があります。", + "llm_name": "AI / LLM チャット", + "llm_description": "大規模言語モデルを活用した AI チャットサイドバーと LLM チャットノートを有効にします。" }, "breadcrumb_badges": { "read_only_explicit": "読み取り専用", @@ -2215,5 +2235,89 @@ "sample_xy": "XY チャート", "sample_venn": "ベン図", "sample_ishikawa": "石川図" + }, + "llm_chat": { + "placeholder": "メッセージを入力してください…", + "send": "送信", + "sending": "送信中...", + "empty_state": "下記にメッセージを入力して会話を始めましょう。", + "searching_web": "ウェブ検索中…", + "web_search": "ウェブ検索", + "note_tools": "ノートへのアクセス", + "sources": "ソース", + "extended_thinking": "思考を拡張", + "legacy_models": "レガシーモデル", + "thinking": "思考中...", + "thought_process": "思考プロセス", + "tool_calls": "{{count}} 回のツール呼び出し", + "input": "入力", + "result": "結果", + "error": "エラー", + "tool_error": "失敗", + "total_tokens": "{{total}} トークン", + "tokens_detail": "{{prompt}} プロンプト + {{completion}} コンプリーション", + "tokens_used": "{{prompt}} プロンプト + {{completion}} コンプリーション = {{total}} トークン", + "tokens_used_with_cost": "{{prompt}} プロンプト + {{completion}} コンプリーション = {{total}} トークン (~${{cost}})", + "tokens_used_with_model": "{{model}}: {{prompt}} プロンプト + {{completion}} コンプリーション = {{total}} トークン", + "tokens_used_with_model_and_cost": "{{model}}: {{prompt}} プロンプト + {{completion}} コンプリーション = {{total}} トークン (~${{cost}})", + "tokens": "トークン", + "context_used": "{{percentage}} % 使用済み", + "note_context_enabled": "クリックしてノートのコンテキストを無効にする: {{title}}", + "note_context_disabled": "クリックして現在のノートをコンテキストに含める", + "no_provider_message": "AI プロバイダーが設定されていません。チャットを開始するには、プロバイダーを追加してください。", + "add_provider": "AI プロバイダーを追加" + }, + "sidebar_chat": { + "title": "AI チャット", + "launcher_title": "AI チャットを開く", + "new_chat": "新しいチャットを開始", + "save_chat": "チャットをノートに保存", + "empty_state": "会話を開始", + "history": "チャット履歴", + "recent_chats": "最近のチャット", + "no_chats": "過去のチャットはありません" + }, + "mind-map": { + "addChild": "子ノードを追加", + "addParent": "親ノードを追加", + "addSibling": "兄弟ノードを追加", + "removeNode": "ノードを削除", + "focus": "フォーカスモード", + "cancelFocus": "フォーカスモードを解除", + "moveUp": "上に移動", + "moveDown": "下に移動", + "link": "リンク", + "linkBidirectional": "双方向リンク", + "clickTips": "対象ノードをクリックしてください", + "summary": "概要" + }, + "llm": { + "settings_title": "AI / LLM", + "settings_description": "AI と大規模言語モデルの連携設定をします。", + "add_provider": "プロバイダーを追加", + "add_provider_title": "AI プロバイダーを追加", + "configured_providers": "設定済みプロバイダー", + "no_providers_configured": "まだプロバイダーが設定されていません。", + "provider_name": "名前", + "provider_type": "プロバイダー", + "actions": "アクション", + "delete_provider": "削除", + "delete_provider_confirmation": "プロバイダー \"{{name}}\" を削除してもよろしいですか?", + "api_key": "API キー", + "api_key_placeholder": "API キーを入力してください", + "cancel": "キャンセル" + }, + "ocr": { + "extracted_text": "抽出されたテキスト(OCR)", + "extracted_text_title": "抽出されたテキスト(OCR)", + "loading_text": "OCR テキストを読み込んでいます…", + "no_text_available": "OCR テキストが見つかりません", + "no_text_explanation": "このノートは OCR テキスト抽出処理が行われなかったか、テキストが見つかりませんでした。", + "failed_to_load": "OCR テキストの読み込みに失敗しました", + "process_now": "OCR 処理", + "processing": "処理中…", + "processing_started": "OCR 処理が開始されました。しばらくお待ちいただき、ページを更新してください。", + "processing_failed": "OCR 処理の開始に失敗しました", + "view_extracted_text": "抽出されたテキスト(OCR)を表示" } } diff --git a/apps/client/src/translations/pl/translation.json b/apps/client/src/translations/pl/translation.json index cf1bad2b9d..3cd2d35be3 100644 --- a/apps/client/src/translations/pl/translation.json +++ b/apps/client/src/translations/pl/translation.json @@ -117,7 +117,7 @@ "no_path_to_clone_to": "Brak ścieżki do sklonowania.", "note_cloned": "Notatka \"{{clonedTitle}}\" została sklonowana do \"{{targetTitle}}\"", "help_on_links": "Pomoc dotycząca linków", - "target_parent_note": "Docelowa notatka nadrzędna" + "target_parent_note": "Docelowa notatka pierwotna" }, "help": { "title": "Ściągawka", @@ -126,7 +126,7 @@ "collapseExpand": "zwiń/rozwiń węzeł", "notSet": "nie ustawiono", "goBackForwards": "idź wstecz / do przodu w historii", - "showJumpToNoteDialog": "pokaż okno \"Przejdź do\"", + "showJumpToNoteDialog": "pokaż \"Przejdź do\"", "scrollToActiveNote": "przewiń do aktywnej notatki", "jumpToParentNote": "przejdź do notatki nadrzędnej", "collapseWholeTree": "zwiń całe drzewo notatek", @@ -402,7 +402,8 @@ "and_more": "... i {{count}} więcej.", "print_landscape": "Podczas eksportowania do PDF zmienia orientację strony na poziomą zamiast pionowej.", "print_page_size": "Podczas eksportowania do PDF zmienia rozmiar strony. Obsługiwane wartości: A0, A1, A2, A3, A4, A5, A6, Legal, Letter, Tabloid, Ledger.", - "color_type": "Kolor" + "color_type": "Kolor", + "textarea": "Wiele linii tekstu" }, "import": { "importIntoNote": "Importuj do notatki", @@ -1613,7 +1614,7 @@ "password_changed_success": "Hasło zostało zmienione. Trilium zostanie przeładowane po naciśnięciu OK." }, "multi_factor_authentication": { - "title": "Uwierzytelnianie wieloskładnikowe (MFA)", + "title": "Uwierzytelnianie wieloskładnikowe", "description": "Uwierzytelnianie wieloskładnikowe (MFA) dodaje dodatkową warstwę zabezpieczeń do Twojego konta. Zamiast tylko wpisywać hasło do logowania, MFA wymaga podania jednego lub więcej dodatkowych dowodów tożsamości. W ten sposób, nawet jeśli ktoś zdobędzie Twoje hasło, nadal nie będzie mógł uzyskać dostępu do Twojego konta bez drugiej informacji. To jak dodanie dodatkowego zamka do drzwi, utrudniającego włamanie.

Proszę postępować zgodnie z poniższymi instrukcjami, aby włączyć MFA. Jeśli nie skonfigurujesz poprawnie, logowanie powróci do samego hasła.", "mfa_enabled": "Włącz uwierzytelnianie wieloskładnikowe", "mfa_method": "Metoda MFA", @@ -1628,7 +1629,7 @@ "totp_secret_generated": "Sekret TOTP wygenerowany", "totp_secret_warning": "Proszę zapisać wygenerowany sekret w bezpiecznym miejscu. Nie zostanie pokazany ponownie.", "totp_secret_regenerate_confirm": "Czy na pewno chcesz ponownie wygenerować sekret TOTP? To unieważni poprzedni sekret TOTP i wszystkie istniejące kody odzyskiwania.", - "recovery_keys_title": "Klucze odzyskiwania logowania jednokrotnego (SSO)", + "recovery_keys_title": "Klucze odzyskiwania logowania jednokrotnego", "recovery_keys_description": "Klucze odzyskiwania logowania jednokrotnego służą do logowania w przypadku braku dostępu do kodów Authenticator.", "recovery_keys_description_warning": "Klucze odzyskiwania nie zostaną pokazane ponownie po opuszczeniu strony, przechowuj je w bezpiecznym miejscu.
Po użyciu klucza odzyskiwania nie można go użyć ponownie.", "recovery_keys_error": "Błąd generowania kodów odzyskiwania", @@ -1766,7 +1767,7 @@ "book": "Kolekcja", "mermaid-diagram": "Diagram Mermaid", "canvas": "Płótno", - "web-view": "Widok WWW", + "web-view": "Widok strony web", "mind-map": "Mapa myśli", "file": "Plik", "image": "Obraz", @@ -1815,9 +1816,9 @@ "modal_title": "Konfiguracja listy wyróżnień", "menu_configure": "Konfiguracja listy wyróżnień...", "no_highlights": "Nie znaleziono wyróżnień.", - "title_with_count_one": "{{count}} podświetlenie", - "title_with_count_few": "{{count}} podświetlenia", - "title_with_count_many": "{{count}} podświetleń" + "title_with_count_one": "{{count}} wyróżnienie", + "title_with_count_few": "{{count}} wyróżnienia", + "title_with_count_many": "{{count}} wyróżnień" }, "quick-search": { "placeholder": "Szybkie wyszukiwanie", @@ -2070,7 +2071,7 @@ "read_only_temporarily_disabled_description": "Ta notatka jest obecnie edytowalna, ale normalnie jest tylko do odczytu. Notatka powróci do trybu tylko do odczytu, gdy tylko przejdziesz do innej notatki.\n\nKliknij, aby ponownie włączyć tryb tylko do odczytu.", "shared_publicly": "Udostępniona publicznie", "shared_locally": "Udostępniona lokalnie", - "clipped_note": "Wycinek WWW", + "clipped_note": "Wycinek z sieci", "clipped_note_description": "Ta notatka została pierwotnie pobrana z {{url}}.\n\nKliknij, aby przejść do źródłowej strony internetowej.", "execute_script": "Uruchom skrypt", "execute_script_description": "Ta notatka jest notatką skryptową. Kliknij, aby wykonać skrypt.", @@ -2236,7 +2237,7 @@ "sample_c4": "C4", "sample_gantt": "Wykres Gantta", "sample_git": "Diagram Git", - "sample_kanban": "Kanban", + "sample_kanban": "Tablica Kanban", "sample_packet": "Diagram pakietów", "sample_pie": "Wykres kołowy", "sample_quadrant": "Diagram kwadrantowy", diff --git a/apps/client/src/translations/ro/translation.json b/apps/client/src/translations/ro/translation.json index 9e12892d38..6e9d0e2e83 100644 --- a/apps/client/src/translations/ro/translation.json +++ b/apps/client/src/translations/ro/translation.json @@ -875,7 +875,7 @@ "print_note": "Imprimare notiță", "re_render_note": "Reinterpretare notiță", "save_revision": "Salvează o nouă revizie", - "advanced": "Advansat", + "advanced": "Avansat", "search_in_note": "Caută în notiță", "convert_into_attachment_failed": "Nu s-a putut converti notița „{{title}}”.", "convert_into_attachment_successful": "Notița „{{title}}” a fost convertită în atașament.", diff --git a/apps/client/src/translations/ru/translation.json b/apps/client/src/translations/ru/translation.json index 818297e172..1551ea0f00 100644 --- a/apps/client/src/translations/ru/translation.json +++ b/apps/client/src/translations/ru/translation.json @@ -194,7 +194,7 @@ "row-insert-child": "Создать дочернюю заметку", "row-insert-below": "Добавить строку ниже", "row-insert-above": "Добавить строку выше", - "new-column-relation": "Связь" + "new-column-relation": "Отношение" }, "add_label": { "add_label": "Добавить метку", @@ -465,13 +465,13 @@ "related_notes_title": "Другие заметки с этой меткой", "label": "Метка", "label_definition": "Определение метки", - "relation": "Отношение", + "relation": "Детали отношения", "relation_definition": "Определение отношения", "disable_versioning": "отключает автоматическое версионирование. Полезно, например, для больших, но неважных заметок, например, для больших JS-библиотек, используемых для написания скриптов", "calendar_root": "отмечает заметку, которая должна использоваться в качестве корневой для заметок дня. Только одна должна быть отмечена как таковая.", "archived": "заметки с этой меткой не будут отображаться в результатах поиска по умолчанию (а также в диалоговых окнах «Перейти к», «Добавить ссылку» и т. д.).", "exclude_from_export": "заметки (с их поддеревьями) не будут включены ни в один экспорт заметок", - "run": "определяет, при каких событиях должен запускаться скрипт. Возможные значения:
    \n
  • frontendStartup — при запуске (или обновлении) фронтенда Trilium, но не на мобильном устройстве.
  • \n
  • mobileStartup — при запуске (или обновлении) фронтенда Trilium на мобильном устройстве.
  • \n
  • backendStartup — при запуске бэкенда Trilium.
  • \n
  • hourly — запускать каждый час. Для указания времени можно использовать дополнительную метку runAtHour.
  • \n
  • daily — запускать раз в день.
", + "run": "определяет, при каких событиях должен запускаться скрипт. Возможные значения:\n
    \n
  • frontendStartup — при запуске (или обновлении) фронтенда Trilium, но не на мобильном устройстве.
  • \n
  • mobileStartup — при запуске (или обновлении) фронтенда Trilium на мобильном устройстве.
  • \n
  • backendStartup — при запуске бэкенда Trilium.
  • \n
  • hourly — запускать каждый час. Для указания времени можно использовать дополнительную метку runAtHour.
  • \n
  • daily — запускать раз в день.
  • \n
", "run_on_instance": "Определить, на каком экземпляре Trilium это должно выполняться. По умолчанию — для всех экземпляров.", "run_at_hour": "В какой час это должно выполняться? Следует использовать вместе с #run=hourly. Можно задать несколько раз для большего количества запусков в течение дня.", "disable_inclusion": "скрипты с этой меткой не будут включены в выполнение родительского скрипта.", @@ -495,7 +495,7 @@ "is_owned_by_note": "принадлежит заметке", "and_more": "... и ещё {{count}}.", "app_theme": "отмечает заметки CSS, которые являются полноценными темами Trilium и, таким образом, доступны в опциях Trilium.", - "title_template": "Заголовок по умолчанию для заметок, создаваемых как дочерние элементы данной заметки. Значение вычисляется как строка JavaScript\n и, таким образом, может быть дополнено динамическим контентом с помощью внедренных переменных now и parentNote. Примеры:\n \n
    \n
  • Литературные произведения ${parentNote.getLabelValue('authorName')}
  • \n
  • Лог для ${now.format('YYYY-MM-DD HH:mm:ss')}
  • \n
\n \n Подробности см. в вики, документации API для parentNote и now.", + "title_template": "заголовок по умолчанию для заметок, создаваемых как дочерние элементы текущей. Значение вычисляется как строка JavaScript \n и может быть дополнено динамическим контентом с помощью внедренных переменных now и parentNote. Например:\n \n
    \n
  • Литературные произведения ${parentNote.getLabelValue('authorName')}
  • \n
  • Лог для ${now.format('YYYY-MM-DD HH:mm:ss')}
  • \n
\n \n Подробности см. в вики, документации API для parentNote и now.", "icon_class": "значение этой метки добавляется в виде CSS-класса к значку в дереве, что помогает визуально различать заметки в дереве. Примером может служить bx bx-home — значки берутся из boxicons. Может использоваться в шаблонах заметок.", "share_favicon": "Заметка о фавиконе должна быть размещена на странице общего доступа. Обычно её назначают корневой папке общего доступа и делают наследуемой. Заметка о фавиконе также должна находиться в поддереве общего доступа. Рассмотрите возможность использования атрибута 'share_hidden_from_tree'.", "inbox": "расположение папки «Входящие» по умолчанию для новых заметок — при создании заметки с помощью кнопки «Новая заметка» на боковой панели заметки будут созданы как дочерние заметки в заметке, помеченной меткой #inbox.", @@ -548,7 +548,8 @@ "render_note": "заметки типа «Рендер HTML» будут отображаться с использованием кодовой заметки (HTML или скрипта), и необходимо указать с помощью этой связи, какую заметку следует отобразить", "widget_relation": "заметка, на которую ссылается отношение будет выполнена и отображена как виджет на боковой панели", "share_js": "JavaScript-заметка, которая будет добавлена на страницу общего доступа. JavaScript-заметка также должна находиться в общем поддереве. Рекомендуется использовать 'share_hidden_from_tree'.", - "other_notes_with_name": "Другие заметки с {{attributeType}} названием \"{{attributeName}}\"" + "other_notes_with_name": "Другие заметки с {{attributeType}} названием \"{{attributeName}}\"", + "textarea": "Многострочный текст" }, "command_palette": { "configure_launch_bar_description": "Откройте конфигурацию панели запуска, чтобы добавить или удалить элементы.", @@ -835,7 +836,8 @@ "task-list": "Список задач", "confirm-change": "Не рекомендуется менять тип заметки, если её содержимое не пустое. Вы всё равно хотите продолжить?", "ai-chat": "Чат с ИИ", - "spreadsheet": "Электронная таблица" + "spreadsheet": "Электронная таблица", + "llm-chat": "Чат с ИИ" }, "tree-context-menu": { "open-in-popup": "Быстрое редактирование", @@ -1015,7 +1017,7 @@ "open_sql_console_history": "Открыть историю консоли SQL", "show_shared_notes_subtree": "Поддерево общедоступных заметок", "switch_to_mobile_version": "Перейти на мобильную версию", - "switch_to_desktop_version": "Переключиться на версию для ПК", + "switch_to_desktop_version": "Переключиться на версию для компьютера", "new-version-available": "Доступно обновление", "download-update": "Обновить до {{latestVersion}}", "search_notes": "Поиск заметок" @@ -1637,11 +1639,11 @@ "start_dragging_relations": "Начните перетягивать отношения отсюда на другую заметку." }, "vacuum_database": { - "title": "Сжатие базы данных", - "description": "Это приведет к перестройке базы данных, что, как правило, приводит к уменьшению размера файла базы данных. Данные затронуты не будут.", - "button_text": "Сжать базу данных", - "vacuuming_database": "Сжатие БД...", - "database_vacuumed": "База данных была сжата" + "title": "Уменьшение размера файла базы данных", + "description": "Это приведет к перестройке базы данных, что, скорее всего, уменьшит размер её файла. Данные не будут изменены.", + "button_text": "Уменьшить размер файла базы данных", + "vacuuming_database": "Уменьшение размера файла базы данных...", + "database_vacuumed": "База данных была перестроена" }, "vim_key_bindings": { "use_vim_keybindings_in_code_notes": "Сочетания клавиш Vim", @@ -1763,8 +1765,8 @@ "database_integrity_check": { "title": "Проверка целостности базы данных", "description": "Это позволит проверить базу данных на предмет повреждений на уровне SQLite. Это может занять некоторое время в зависимости от размера базы данных.", - "check_button": "Проверить целостность БД", - "checking_integrity": "Проверка целостности БД...", + "check_button": "Проверить целостность базы данных", + "checking_integrity": "Проверка целостности базы данных...", "integrity_check_succeeded": "Проверка целостности прошла успешно - проблем не обнаружено.", "integrity_check_failed": "Проверка целостности завершена с ошибками: {{results}}" }, @@ -2115,7 +2117,9 @@ "new_layout_description": "Попробуйте новый современный и удобный дизайн. В будущих обновлениях возможны его существенные изменения.", "new_layout_name": "Новый дизайн", "title": "Экспериментальные параметры", - "disclaimer": "Эти параметры экспериментальные и могут повлиять на стабильность. Используйте с осторожностью." + "disclaimer": "Эти параметры экспериментальные и могут повлиять на стабильность. Используйте с осторожностью.", + "llm_name": "ИИ / LLM чат", + "llm_description": "Включить боковую панель чата с ИИ и заметки, созданные на основе больших языковых моделей (LLM)." }, "popup-editor": { "maximize": "Переключить на полный редактор" @@ -2197,5 +2201,123 @@ }, "setup_form": { "more_info": "Узнать больше" + }, + "media": { + "play": "Воспроизвести (пробел)", + "pause": "Пауза (пробел)", + "back-10s": "Назад на 10 секунд (стрелка влево)", + "forward-30s": "Вперёд на 30 секунд", + "mute": "Выключить звук (M)", + "unmute": "Включить звук (M)", + "playback-speed": "Скорость проигрывания", + "loop": "Зациклить", + "disable-loop": "Отключить зацикливание", + "rotate": "Повернуть", + "picture-in-picture": "Картинка в картинке", + "exit-picture-in-picture": "Выйти из режима \"картинка в картинке\"", + "fullscreen": "Режим полного экрана (F)", + "exit-fullscreen": "Выйти из режима полного экрана", + "unsupported-format": "Предпросмотр недоступен для данного формата файла:\n{{mime}}", + "zoom-to-fit": "Заполнить путём масштабирования", + "zoom-reset": "Сбросить заполнение путём масштабирования" + }, + "llm_chat": { + "placeholder": "Введите сообщение...", + "send": "Отправить", + "sending": "Отправка...", + "empty_state": "Начните общение, написав сообщение в поле ниже.", + "searching_web": "Поиск в сети...", + "web_search": "Поиск в сети", + "note_tools": "Доступ к заметке", + "sources": "Источники", + "extended_thinking": "Расширенное мышление", + "legacy_models": "Устаревшие модели", + "thinking": "Обработка...", + "thought_process": "Процесс обработки", + "tool_calls": "{{count}} вызов(а/ов) инструмента", + "input": "Ввод", + "result": "Результат", + "error": "Ошибка", + "tool_error": "ошибка", + "total_tokens": "{{total}} токен(а/ов)", + "tokens": "токены", + "context_used": "{{percentage}}% использовано", + "note_context_enabled": "Нажмите, чтобы отключить контекст заметки: {{title}}", + "note_context_disabled": "Нажмите, чтобы включить текущую заметку в контекст", + "no_provider_message": "Не выбран провайдер ИИ. Добавьте его для начала общения.", + "add_provider": "Добавить провайдера ИИ", + "tokens_detail": "{{prompt}} (промт) + {{completion}} (ответ)", + "tokens_used": "{{prompt}} (промт) + {{completion}} (ответ) = {{total}} токен(а/ов)", + "tokens_used_with_cost": "{{prompt}} (промт) + {{completion}} (ответ) = {{total}} токен(а/ов) (~${{cost}})", + "tokens_used_with_model": "{{model}}: {{prompt}} (промт) + {{completion}} (ответ) = {{total}} токен(а/ов)", + "tokens_used_with_model_and_cost": "{{model}}: {{prompt}} (промт) + {{completion}} (ответ) = {{total}} токен(а/ов) (~${{cost}})" + }, + "sidebar_chat": { + "title": "Чат с ИИ", + "launcher_title": "Чат с Open AI", + "new_chat": "Начать новый чат", + "save_chat": "Сохранить чат в заметках", + "empty_state": "Начать общение", + "history": "История чата", + "recent_chats": "Недавние чаты", + "no_chats": "Нет предыдущих чатов" + }, + "mermaid": { + "placeholder": "Введите содержимое вашей Mermaid диаграммы или используйте один из примеров ниже.", + "sample_diagrams": "Примеры диаграм:", + "sample_flowchart": "Блок-схема", + "sample_class": "Диаграмма классов", + "sample_sequence": "Диаграмма последовательностей", + "sample_entity_relationship": "Диаграмма \"Сущность — связь\"", + "sample_state": "Диаграмма состояний", + "sample_mindmap": "Ментальная карта", + "sample_architecture": "Архитектурная схема", + "sample_block": "Структурная схема", + "sample_gantt": "Диаграмма Ганта", + "sample_git": "Git", + "sample_kanban": "Канбан", + "sample_ishikawa": "Диаграмма Исикавы", + "sample_c4": "C4", + "sample_packet": "Диаграмма сетевых пакетов", + "sample_pie": "Круговая диаграмма", + "sample_quadrant": "Квадрантная диаграмма", + "sample_radar": "Радиолокационная схема", + "sample_requirement": "Диаграмма зависимостей", + "sample_sankey": "Диаграмма Сэнки", + "sample_timeline": "Временная диаграмма", + "sample_treemap": "Древовидная диаграмма", + "sample_user_journey": "Карта пользовательского пути", + "sample_xy": "XY", + "sample_venn": "Диаграмма Венна" + }, + "mind-map": { + "addChild": "Добавить дочерний элемент", + "addParent": "Добавить родительский элемент", + "addSibling": "Добавить элемент на том же уровне", + "removeNode": "Удалить узел", + "focus": "Режим фокусировки", + "cancelFocus": "Отключить режим фокусировки", + "moveUp": "Передвинуть выше", + "moveDown": "Передвинуть ниже", + "link": "Связь", + "linkBidirectional": "Двусторонняя связь", + "clickTips": "Пожалуйста, нажмите на целевой узел", + "summary": "Сводка" + }, + "llm": { + "settings_title": "ИИ / LLM", + "settings_description": "Настроить интеграции ИИ и больших языковых моделей.", + "add_provider": "Добавить провайдера", + "add_provider_title": "Добавить провайдера ИИ", + "configured_providers": "Настроенные провайдеры", + "no_providers_configured": "Ещё нет настроенных провайдеров.", + "provider_name": "Название", + "provider_type": "Провайдер", + "actions": "Действия", + "delete_provider": "Удалить", + "delete_provider_confirmation": "Вы уверены, что желаете удалить провайдера \"{{name}}\"?", + "api_key": "Ключ API", + "api_key_placeholder": "Введите ваш ключ API", + "cancel": "Отмена" } } diff --git a/apps/client/src/translations/tw/translation.json b/apps/client/src/translations/tw/translation.json index 7b837fcbfb..35c8dbff1b 100644 --- a/apps/client/src/translations/tw/translation.json +++ b/apps/client/src/translations/tw/translation.json @@ -2226,7 +2226,7 @@ "sample_sankey": "桑基圖", "sample_timeline": "時間軸", "sample_treemap": "樹狀圖", - "sample_user_journey": "用戶旅程", + "sample_user_journey": "使用者旅程", "sample_xy": "XY 圖表", "sample_venn": "韋恩圖", "sample_ishikawa": "魚骨圖" diff --git a/apps/client/src/widgets/NoteDetail.tsx b/apps/client/src/widgets/NoteDetail.tsx index ea43851359..40ae3e49e9 100644 --- a/apps/client/src/widgets/NoteDetail.tsx +++ b/apps/client/src/widgets/NoteDetail.tsx @@ -336,6 +336,8 @@ export async function getExtendedWidgetType(note: FNote | null | undefined, note if (noteContext?.viewScope?.viewMode === "source") { resultingType = "readOnlyCode"; + } else if (noteContext.viewScope?.viewMode === "ocr") { + resultingType = "readOnlyOCRText"; } else if (noteContext.viewScope?.viewMode === "attachments") { resultingType = noteContext.viewScope.attachmentId ? "attachmentDetail" : "attachmentList"; } else if (noteContext.viewScope?.viewMode === "note-map") { diff --git a/apps/client/src/widgets/collections/NoteList.tsx b/apps/client/src/widgets/collections/NoteList.tsx index 0b864ace25..0c37c4a08a 100644 --- a/apps/client/src/widgets/collections/NoteList.tsx +++ b/apps/client/src/widgets/collections/NoteList.tsx @@ -25,6 +25,7 @@ interface NoteListProps { viewType: ViewTypeOptions | undefined; onReady?: (data: PrintReport) => void; onProgressChanged?(progress: number): void; + showTextRepresentation?: boolean; } type LazyLoadedComponent = ((props: ViewModeProps) => VNode | undefined); @@ -67,7 +68,7 @@ export default function NoteList(props: Pick) { const viewType = useNoteViewType(props.note); - return ; + return ; } export function CustomNoteList({ note, viewType, isEnabled: shouldEnable, notePath, highlightedTokens, displayOnlyCollections, ntxId, onReady, onProgressChanged, ...restProps }: NoteListProps) { diff --git a/apps/client/src/widgets/collections/board/data.spec.ts b/apps/client/src/widgets/collections/board/data.spec.ts index 83a36ac0e6..b8f0f50341 100644 --- a/apps/client/src/widgets/collections/board/data.spec.ts +++ b/apps/client/src/widgets/collections/board/data.spec.ts @@ -1,8 +1,9 @@ -import { it, describe, expect } from "vitest"; -import { buildNote } from "../../../test/easy-froca"; -import { getBoardData } from "./data"; +import { describe, expect,it } from "vitest"; + import FBranch from "../../../entities/fbranch"; import froca from "../../../services/froca"; +import { buildNote } from "../../../test/easy-froca"; +import { getBoardData } from "./data"; describe("Board data", () => { it("deduplicates cloned notes", async () => { diff --git a/apps/client/src/widgets/collections/interface.ts b/apps/client/src/widgets/collections/interface.ts index 4a965588df..15acbfa8e2 100644 --- a/apps/client/src/widgets/collections/interface.ts +++ b/apps/client/src/widgets/collections/interface.ts @@ -21,4 +21,5 @@ export interface ViewModeProps { media: ViewModeMedia; onReady(data: PrintReport): void; onProgressChanged?: ProgressChangedFn; + showTextRepresentation?: boolean; } diff --git a/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx b/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx index 238817d978..0e3d7d5add 100644 --- a/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx +++ b/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx @@ -23,7 +23,7 @@ import { ComponentChildren, TargetedMouseEvent } from "preact"; const contentSizeObserver = new ResizeObserver(onContentResized); -export function ListView({ note, noteIds: unfilteredNoteIds, highlightedTokens }: ViewModeProps<{}>) { +export function ListView({ note, noteIds: unfilteredNoteIds, highlightedTokens, showTextRepresentation }: ViewModeProps<{}>) { const expandDepth = useExpansionDepth(note); const noteIds = useFilteredNoteIds(note, unfilteredNoteIds); const { pageNotes, ...pagination } = usePagination(note, noteIds); @@ -37,13 +37,14 @@ export function ListView({ note, noteIds: unfilteredNoteIds, highlightedTokens } key={childNote.noteId} note={childNote} parentNote={note} expandDepth={expandDepth} highlightedTokens={highlightedTokens} - currentLevel={1} includeArchived={includeArchived} /> + currentLevel={1} includeArchived={includeArchived} + showTextRepresentation={showTextRepresentation} /> ))} ; } -export function GridView({ note, noteIds: unfilteredNoteIds, highlightedTokens }: ViewModeProps<{}>) { +export function GridView({ note, noteIds: unfilteredNoteIds, highlightedTokens, showTextRepresentation }: ViewModeProps<{}>) { const noteIds = useFilteredNoteIds(note, unfilteredNoteIds); const { pageNotes, ...pagination } = usePagination(note, noteIds); const [ includeArchived ] = useNoteLabelBoolean(note, "includeArchived"); @@ -56,7 +57,8 @@ export function GridView({ note, noteIds: unfilteredNoteIds, highlightedTokens } note={childNote} parentNote={note} highlightedTokens={highlightedTokens} - includeArchived={includeArchived} /> + includeArchived={includeArchived} + showTextRepresentation={showTextRepresentation} /> ))} @@ -91,13 +93,14 @@ function NoteList(props: NoteListProps) { } -function ListNoteCard({ note, parentNote, highlightedTokens, currentLevel, expandDepth, includeArchived }: { +function ListNoteCard({ note, parentNote, highlightedTokens, currentLevel, expandDepth, includeArchived, showTextRepresentation }: { note: FNote, parentNote: FNote, currentLevel: number, expandDepth: number, highlightedTokens: string[] | null | undefined; includeArchived: boolean; + showTextRepresentation?: boolean; }) { const [ isExpanded, setExpanded ] = useState(currentLevel <= expandDepth); @@ -113,7 +116,8 @@ function ListNoteCard({ note, parentNote, highlightedTokens, currentLevel, expan + includeArchivedNotes={includeArchived} + showTextRepresentation={showTextRepresentation} /> ); @@ -201,12 +207,13 @@ function NoteAttributes({ note }: { note: FNote }) { return ; } -export function NoteContent({ note, trim, noChildrenList, highlightedTokens, includeArchivedNotes }: { +export function NoteContent({ note, trim, noChildrenList, highlightedTokens, includeArchivedNotes, showTextRepresentation }: { note: FNote; trim?: boolean; noChildrenList?: boolean; highlightedTokens: string[] | null | undefined; includeArchivedNotes: boolean; + showTextRepresentation?: boolean; }) { const contentRef = useRef(null); const highlightSearch = useImperativeSearchHighlighlighting(highlightedTokens); @@ -230,7 +237,8 @@ export function NoteContent({ note, trim, noChildrenList, highlightedTokens, inc trim, noChildrenList, noIncludedNotes: true, - includeArchivedNotes + includeArchivedNotes, + showTextRepresentation }) .then(({ $renderedContent, type }) => { if (!contentRef.current) return; diff --git a/apps/client/src/widgets/launch_bar/LauncherContainer.tsx b/apps/client/src/widgets/launch_bar/LauncherContainer.tsx index 79de559c98..d5d443084b 100644 --- a/apps/client/src/widgets/launch_bar/LauncherContainer.tsx +++ b/apps/client/src/widgets/launch_bar/LauncherContainer.tsx @@ -1,6 +1,7 @@ import { useCallback, useLayoutEffect, useState } from "preact/hooks"; import FNote from "../../entities/fnote"; +import { isExperimentalFeatureEnabled } from "../../services/experimental_features"; import froca from "../../services/froca"; import { isDesktop, isMobile } from "../../services/utils"; import TabSwitcher from "../mobile_widgets/TabSwitcher"; @@ -12,6 +13,7 @@ import HistoryNavigationButton from "./HistoryNavigation"; import { LaunchBarContext } from "./launch_bar_widgets"; import { CommandButton, CustomWidget, NoteLauncher, QuickSearchLauncherWidget, ScriptLauncher, TodayLauncher } from "./LauncherDefinitions"; import ProtectedSessionStatusWidget from "./ProtectedSessionStatusWidget"; +import SidebarChatButton from "./SidebarChatButton"; import SpacerWidget from "./SpacerWidget"; import SyncStatus from "./SyncStatus"; @@ -98,6 +100,8 @@ function initBuiltinWidget(note: FNote, isHorizontalLayout: boolean) { return ; case "mobileTabSwitcher": return ; + case "sidebarChat": + return isExperimentalFeatureEnabled("llm") ? : undefined; default: console.warn(`Unrecognized builtin widget ${builtinWidget} for launcher ${note.noteId} "${note.title}"`); } diff --git a/apps/client/src/widgets/launch_bar/SidebarChatButton.tsx b/apps/client/src/widgets/launch_bar/SidebarChatButton.tsx new file mode 100644 index 0000000000..15bcfbb525 --- /dev/null +++ b/apps/client/src/widgets/launch_bar/SidebarChatButton.tsx @@ -0,0 +1,24 @@ +import { useCallback } from "preact/hooks"; + +import appContext from "../../components/app_context"; +import { t } from "../../services/i18n"; +import { LaunchBarActionButton } from "./launch_bar_widgets"; + +/** + * Launcher button to open the sidebar (which contains the chat). + * The chat widget is always visible in the sidebar for non-chat notes. + */ +export default function SidebarChatButton() { + const handleClick = useCallback(() => { + // Open right pane if hidden, or toggle it if visible + appContext.triggerEvent("toggleRightPane", {}); + }, []); + + return ( + + ); +} diff --git a/apps/client/src/widgets/layout/NoteTypeSwitcher.tsx b/apps/client/src/widgets/layout/NoteTypeSwitcher.tsx index e345249add..cf685828aa 100644 --- a/apps/client/src/widgets/layout/NoteTypeSwitcher.tsx +++ b/apps/client/src/widgets/layout/NoteTypeSwitcher.tsx @@ -5,6 +5,7 @@ import { useEffect, useMemo, useState } from "preact/hooks"; import FNote from "../../entities/fnote"; import attributes from "../../services/attributes"; +import { isExperimentalFeatureEnabled } from "../../services/experimental_features"; import froca from "../../services/froca"; import { t } from "../../services/i18n"; import { NOTE_TYPES, NoteTypeMapping } from "../../services/note_types"; @@ -28,6 +29,7 @@ export default function NoteTypeSwitcher() { const restNoteTypes: NoteTypeMapping[] = []; for (const noteType of NOTE_TYPES) { if (noteType.reserved || noteType.static || noteType.type === "book") continue; + if (noteType.type === "llmChat" && !isExperimentalFeatureEnabled("llm")) continue; if (SWITCHER_PINNED_NOTE_TYPES.has(noteType.type)) { pinnedNoteTypes.push(noteType); } else { diff --git a/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx b/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx index ff92b6512e..32f21b94ab 100644 --- a/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx +++ b/apps/client/src/widgets/mobile_widgets/TabSwitcher.tsx @@ -27,6 +27,7 @@ const VIEW_MODE_ICON_MAPPINGS: Record, string> = { "contextual-help": "bx bx-help-circle", "note-map": "bx bxs-network-chart", attachments: "bx bx-paperclip", + ocr: "bx bx-text" }; export default function TabSwitcher() { diff --git a/apps/client/src/widgets/note_types.tsx b/apps/client/src/widgets/note_types.tsx index b80d4d545e..f2f17dd590 100644 --- a/apps/client/src/widgets/note_types.tsx +++ b/apps/client/src/widgets/note_types.tsx @@ -12,7 +12,7 @@ import { TypeWidgetProps } from "./type_widgets/type_widget"; * A `NoteType` altered by the note detail widget, taking into consideration whether the note is editable or not and adding special note types such as an empty one, * for protected session or attachment information. */ -export type ExtendedNoteType = Exclude | "empty" | "readOnlyCode" | "readOnlyText" | "editableText" | "editableCode" | "attachmentDetail" | "attachmentList" | "protectedSession" | "sqlConsole"; +export type ExtendedNoteType = Exclude | "empty" | "readOnlyCode" | "readOnlyText" | "readOnlyOCRText" | "editableText" | "editableCode" | "attachmentDetail" | "attachmentList" | "protectedSession" | "sqlConsole" | "llmChat"; export type TypeWidget = ((props: TypeWidgetProps) => VNode | JSX.Element | undefined); type NoteTypeView = () => (Promise<{ default: TypeWidget } | TypeWidget> | TypeWidget); @@ -78,6 +78,11 @@ export const TYPE_MAPPINGS: Record = { className: "note-detail-readonly-code", printable: true }, + readOnlyOCRText: { + view: () => import("./type_widgets/ReadOnlyTextRepresentation"), + className: "note-detail-ocr-text", + printable: true + }, editableCode: { view: async () => (await import("./type_widgets/code/Code")).EditableCode, className: "note-detail-code", @@ -147,5 +152,11 @@ export const TYPE_MAPPINGS: Record = { className: "note-detail-spreadsheet", printable: true, isFullHeight: true + }, + llmChat: { + view: () => import("./type_widgets/llm_chat/LlmChat"), + className: "note-detail-llm-chat", + printable: true, + isFullHeight: true } }; diff --git a/apps/client/src/widgets/react/FormDropdownList.tsx b/apps/client/src/widgets/react/FormDropdownList.tsx index 08d607a8c2..150fc4a724 100644 --- a/apps/client/src/widgets/react/FormDropdownList.tsx +++ b/apps/client/src/widgets/react/FormDropdownList.tsx @@ -5,16 +5,27 @@ interface FormDropdownList extends Omit { values: T[]; keyProperty: keyof T; titleProperty: keyof T; + /** Property to show as a small suffix next to the title */ + titleSuffixProperty?: keyof T; descriptionProperty?: keyof T; currentValue: string; onChange(newValue: string): void; } -export default function FormDropdownList({ values, keyProperty, titleProperty, descriptionProperty, currentValue, onChange, ...restProps }: FormDropdownList) { +export default function FormDropdownList({ values, keyProperty, titleProperty, titleSuffixProperty, descriptionProperty, currentValue, onChange, ...restProps }: FormDropdownList) { const currentValueData = values.find(value => value[keyProperty] === currentValue); + const renderTitle = (item: T) => { + const title = item[titleProperty] as string; + const suffix = titleSuffixProperty ? item[titleSuffixProperty] as string : null; + if (suffix) { + return <>{title} {suffix}; + } + return title; + }; + return ( - + {values.map(item => ( onChange(item[keyProperty] as string)} @@ -22,9 +33,9 @@ export default function FormDropdownList({ values, keyProperty, titleProperty description={descriptionProperty && item[descriptionProperty] as string} selected={currentValue === item[keyProperty]} > - {item[titleProperty] as string} + {renderTitle(item)} ))} ) -} \ No newline at end of file +} diff --git a/apps/client/src/widgets/react/RawHtml.tsx b/apps/client/src/widgets/react/RawHtml.tsx index bf2e2012b6..25a37ea93f 100644 --- a/apps/client/src/widgets/react/RawHtml.tsx +++ b/apps/client/src/widgets/react/RawHtml.tsx @@ -1,3 +1,4 @@ +import DOMPurify from "dompurify"; import type { CSSProperties, HTMLProps, RefObject } from "preact/compat"; import { sanitizeNoteContentHtml } from "../../services/sanitize_content.js"; @@ -16,16 +17,16 @@ export default function RawHtml({containerRef, ...props}: RawHtmlProps & { conta } export function RawHtmlBlock({containerRef, ...props}: RawHtmlProps & { containerRef?: RefObject}) { - return
+ return
; } function getProps({ className, html, style, onClick }: RawHtmlProps) { return { - className: className, + className, dangerouslySetInnerHTML: getHtml(html ?? ""), style, onClick - } + }; } export function getHtml(html: string | HTMLElement | JQuery) { @@ -41,3 +42,19 @@ export function getHtml(html: string | HTMLElement | JQuery) { __html: sanitizeNoteContentHtml(html as string) }; } + +/** + * Renders HTML content sanitized via DOMPurify to prevent XSS. + * Use this instead of {@link RawHtml} when the HTML originates from + * untrusted sources (e.g. LLM responses, user-generated markdown). + */ +export function SanitizedHtml({ className, html, style }: { className?: string; html: string; style?: CSSProperties }) { + return ( +
+ ); +} diff --git a/apps/client/src/widgets/react/Slider.tsx b/apps/client/src/widgets/react/Slider.tsx index 515362ea47..fd1ea0c23c 100644 --- a/apps/client/src/widgets/react/Slider.tsx +++ b/apps/client/src/widgets/react/Slider.tsx @@ -3,6 +3,7 @@ interface SliderProps { onChange(newValue: number); min?: number; max?: number; + step?: number; title?: string; } diff --git a/apps/client/src/widgets/react/hooks.tsx b/apps/client/src/widgets/react/hooks.tsx index 46d83a5614..6bae391f56 100644 --- a/apps/client/src/widgets/react/hooks.tsx +++ b/apps/client/src/widgets/react/hooks.tsx @@ -104,7 +104,7 @@ export interface SavedData { export function useEditorSpacedUpdate({ note, noteType, noteContext, getData, onContentChange, dataSaved, updateInterval }: { noteType: NoteType; - note: FNote, + note: FNote | null | undefined, noteContext: NoteContext | null | undefined, getData: () => Promise | SavedData | undefined, onContentChange: (newContent: string) => void, @@ -118,8 +118,8 @@ export function useEditorSpacedUpdate({ note, noteType, noteContext, getData, on return async () => { const data = await getData(); - // for read only notes - if (data === undefined || note.type !== noteType) return; + // for read only notes, or if note is not yet available (e.g. lazy creation) + if (data === undefined || !note || note.type !== noteType) return; protected_session_holder.touchProtectedSessionIfNecessary(note); @@ -138,7 +138,7 @@ export function useEditorSpacedUpdate({ note, noteType, noteContext, getData, on // React to note/blob changes. useEffect(() => { - if (!blob) return; + if (!blob || !note) return; noteSavedDataStore.set(note.noteId, blob.content); spacedUpdate.allowUpdateWithoutChange(() => onContentChange(blob.content)); }, [ blob ]); diff --git a/apps/client/src/widgets/ribbon/BasicPropertiesTab.tsx b/apps/client/src/widgets/ribbon/BasicPropertiesTab.tsx index 5dbd0d29cb..4fb2358d30 100644 --- a/apps/client/src/widgets/ribbon/BasicPropertiesTab.tsx +++ b/apps/client/src/widgets/ribbon/BasicPropertiesTab.tsx @@ -7,6 +7,7 @@ import branches from "../../services/branches"; import dialog from "../../services/dialog"; import { getAvailableLocales, t } from "../../services/i18n"; import mime_types from "../../services/mime_types"; +import { isExperimentalFeatureEnabled } from "../../services/experimental_features"; import { NOTE_TYPES } from "../../services/note_types"; import protected_session from "../../services/protected_session"; import server from "../../services/server"; @@ -72,7 +73,7 @@ export function NoteTypeDropdownContent({ currentNoteType, currentNoteMime, note noCodeNotes?: boolean; }) { const mimeTypes = useMimeTypes(); - const noteTypes = useMemo(() => NOTE_TYPES.filter((nt) => !nt.reserved && !nt.static), []); + const noteTypes = useMemo(() => NOTE_TYPES.filter((nt) => !nt.reserved && !nt.static && (nt.type !== "llmChat" || isExperimentalFeatureEnabled("llm"))), []); const changeNoteType = useCallback(async (type: NoteType, mime?: string) => { if (!note || (type === currentNoteType && mime === currentNoteMime)) { return; diff --git a/apps/client/src/widgets/ribbon/NoteActions.tsx b/apps/client/src/widgets/ribbon/NoteActions.tsx index 46a0d9d6b7..84c75619ee 100644 --- a/apps/client/src/widgets/ribbon/NoteActions.tsx +++ b/apps/client/src/widgets/ribbon/NoteActions.tsx @@ -85,7 +85,7 @@ export function NoteContextMenu({ note, noteContext, itemsAtStart, itemsNearNote ); const isElectron = getIsElectron(); const isMac = getIsMac(); - const hasSource = ["text", "code", "relationMap", "mermaid", "canvas", "mindMap", "spreadsheet"].includes(noteType); + const hasSource = ["text", "code", "relationMap", "mermaid", "canvas", "mindMap", "spreadsheet", "llmChat"].includes(noteType); const isSearchOrBook = ["search", "book"].includes(noteType); const isHelpPage = note.noteId.startsWith("_help"); const [syncServerHost] = useTriliumOption("syncServerHost"); @@ -162,6 +162,7 @@ export function NoteContextMenu({ note, noteContext, itemsAtStart, itemsNearNote + {(syncServerHost && isElectron) && } diff --git a/apps/client/src/widgets/sidebar/RightPanelContainer.tsx b/apps/client/src/widgets/sidebar/RightPanelContainer.tsx index 082b0a66f0..b758cea301 100644 --- a/apps/client/src/widgets/sidebar/RightPanelContainer.tsx +++ b/apps/client/src/widgets/sidebar/RightPanelContainer.tsx @@ -7,6 +7,7 @@ import { useCallback, useEffect, useRef, useState } from "preact/hooks"; import appContext from "../../components/app_context"; import { WidgetsByParent } from "../../services/bundle"; +import { isExperimentalFeatureEnabled } from "../../services/experimental_features"; import { t } from "../../services/i18n"; import options from "../../services/options"; import { DEFAULT_GUTTER_SIZE } from "../../services/resizer"; @@ -19,6 +20,7 @@ import PdfAttachments from "./pdf/PdfAttachments"; import PdfLayers from "./pdf/PdfLayers"; import PdfPages from "./pdf/PdfPages"; import RightPanelWidget from "./RightPanelWidget"; +import SidebarChat from "./SidebarChat"; import TableOfContents from "./TableOfContents"; const MIN_WIDTH_PERCENT = 5; @@ -91,6 +93,11 @@ function useItems(rightPaneVisible: boolean, widgetsByParent: WidgetsByParent) { el: , enabled: noteType === "text" && highlightsList.length > 0, }, + { + el: , + enabled: noteType !== "llmChat" && isExperimentalFeatureEnabled("llm"), + position: 1000 + }, ...widgetsByParent.getLegacyWidgets("right-pane").map((widget) => ({ el: , enabled: true, diff --git a/apps/client/src/widgets/sidebar/RightPanelWidget.tsx b/apps/client/src/widgets/sidebar/RightPanelWidget.tsx index 099a370899..604b39e7c4 100644 --- a/apps/client/src/widgets/sidebar/RightPanelWidget.tsx +++ b/apps/client/src/widgets/sidebar/RightPanelWidget.tsx @@ -51,7 +51,7 @@ export default function RightPanelWidget({ id, title, buttons, children, contain >
{title}
-
+
e.stopPropagation()}> {buttons} {contextMenuItems && (